From 41537d1fe5aed09713d700e40d6bcd6e3e2c9535 Mon Sep 17 00:00:00 2001 From: ne-peer Date: Mon, 4 Dec 2017 17:37:35 +0900 Subject: [PATCH 01/19] [update] packages update 2017.12.04 --- package-lock.json | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index c24b345..0b6a6ff 100644 --- a/package-lock.json +++ b/package-lock.json @@ -311,9 +311,9 @@ } }, "@types/jasmine": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/@types/jasmine/-/jasmine-2.6.3.tgz", - "integrity": "sha512-2dJf9//QxTnFBXHsCqLbB55jlMreJQie9HhgsZrSgHveOKCWVmgcXgRyvIi22Ndk/dJ/e2srLOstk2NgVbb7XA==", + "version": "2.8.2", + "resolved": "https://registry.npmjs.org/@types/jasmine/-/jasmine-2.8.2.tgz", + "integrity": "sha512-RabEJPjYMpjWqW1qYj4k0rlgP5uzyguoc0yxedJdq7t5h19MYvqhjCR1evM3raZ/peHRxp1Qfl24iawvkibSug==", "dev": true }, "@types/node": { diff --git a/package.json b/package.json index 5876830..b60924a 100644 --- a/package.json +++ b/package.json @@ -38,7 +38,7 @@ }, "devDependencies": { "@angular/cli": "^1.4.3", - "@types/jasmine": "2.6.3", + "@types/jasmine": "2.8.2", "@types/node": "^8.0.31", "codelyzer": "~4.0.0", "jasmine-core": "2.8.0", From ed39611e31a729dbccddf31b6ab666200a992b84 Mon Sep 17 00:00:00 2001 From: ne-peer Date: Mon, 4 Dec 2017 18:11:33 +0900 Subject: [PATCH 02/19] =?UTF-8?q?[add]=20starlightdb=E7=94=A8=E3=81=AE?= =?UTF-8?q?=E3=82=AF=E3=83=A9=E3=82=A4=E3=82=A2=E3=83=B3=E3=83=88=EF=BC=86?= =?UTF-8?q?=E3=83=A2=E3=83=87=E3=83=AB=E3=82=92=E4=BD=9C=E6=88=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/models/api/starlightdb/card/card.ts | 58 +++++++++++++++++++ .../services/api/starlightdb.service.spec.ts | 15 +++++ src/app/services/api/starlightdb.service.ts | 8 +++ 3 files changed, 81 insertions(+) create mode 100644 src/app/models/api/starlightdb/card/card.ts create mode 100644 src/app/services/api/starlightdb.service.spec.ts create mode 100644 src/app/services/api/starlightdb.service.ts diff --git a/src/app/models/api/starlightdb/card/card.ts b/src/app/models/api/starlightdb/card/card.ts new file mode 100644 index 0000000..522ebff --- /dev/null +++ b/src/app/models/api/starlightdb/card/card.ts @@ -0,0 +1,58 @@ +import { Serializable } from '../../../base/serializable'; + +export class Card extends Serializable { + + constructor( + public id?: number, + public name?: string, + public charaId?: number, + public rarity?: object, + public attribute?: string, + public titleFlag?: number, + public evolutionId?: number, + public seriesId?: number, + public pose?: number, + public place?: number, + public evolutionType?: number, + public albumId?: number, + public openStoryId?: number, + public openDressId?: number, + public skillId?: number, + public leaderSkillId?: number, + public growType?: number, + public hpMin?: number, + public vocalMin?: number, + public danceMin?: number, + public visualMin?: number, + public hpMax?: number, + public vocalMax?: number, + public danceMax?: number, + public visualMax?: number, + public bonusHp?: number, + public bonusVocal?: number, + public bonusDance?: number, + public bonusVisual?: number, + public soloLive?: number, + public starLessonType?: number, + public chara?: object, + public hasSpread?: boolean, + public hasSign?: boolean, + public nameOnly?: string, + public title?: string, + public skill?: object, + public leadSkill?: object, + public overallMin?: number, + public overallMax?: number, + public overallBonus?: number, + public valist?: object, + public bestStat?: number, + public spreadImageRef?: string, + public cardImageRef?: string, + public spriteImageRef?: string, + public iconImageRef?: string + ) { + // 親コンストラクタの呼び出し + super(); + } + +} diff --git a/src/app/services/api/starlightdb.service.spec.ts b/src/app/services/api/starlightdb.service.spec.ts new file mode 100644 index 0000000..e64a466 --- /dev/null +++ b/src/app/services/api/starlightdb.service.spec.ts @@ -0,0 +1,15 @@ +import { TestBed, inject } from '@angular/core/testing'; + +import { StarlightdbService } from './starlightdb.service'; + +describe('StarlightdbService', () => { + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [StarlightdbService] + }); + }); + + it('should be created', inject([StarlightdbService], (service: StarlightdbService) => { + expect(service).toBeTruthy(); + })); +}); diff --git a/src/app/services/api/starlightdb.service.ts b/src/app/services/api/starlightdb.service.ts new file mode 100644 index 0000000..e5eab83 --- /dev/null +++ b/src/app/services/api/starlightdb.service.ts @@ -0,0 +1,8 @@ +import { Injectable } from '@angular/core'; + +@Injectable() +export class StarlightdbService { + + constructor() { } + +} From 50dcfab84c6658b02c7f9da73a5c55294d8f1a39 Mon Sep 17 00:00:00 2001 From: ne-peer Date: Mon, 4 Dec 2017 18:13:53 +0900 Subject: [PATCH 03/19] =?UTF-8?q?[update]=20starlightdb=E3=81=AE=E9=9A=8E?= =?UTF-8?q?=E5=B1=A4=E3=82=92=E7=A7=BB=E5=8B=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/services/api/starlightdb.service.spec.ts | 15 --------------- .../services/api/starlightdb/card.service.spec.ts | 15 +++++++++++++++ .../card.service.ts} | 2 +- 3 files changed, 16 insertions(+), 16 deletions(-) delete mode 100644 src/app/services/api/starlightdb.service.spec.ts create mode 100644 src/app/services/api/starlightdb/card.service.spec.ts rename src/app/services/api/{starlightdb.service.ts => starlightdb/card.service.ts} (70%) diff --git a/src/app/services/api/starlightdb.service.spec.ts b/src/app/services/api/starlightdb.service.spec.ts deleted file mode 100644 index e64a466..0000000 --- a/src/app/services/api/starlightdb.service.spec.ts +++ /dev/null @@ -1,15 +0,0 @@ -import { TestBed, inject } from '@angular/core/testing'; - -import { StarlightdbService } from './starlightdb.service'; - -describe('StarlightdbService', () => { - beforeEach(() => { - TestBed.configureTestingModule({ - providers: [StarlightdbService] - }); - }); - - it('should be created', inject([StarlightdbService], (service: StarlightdbService) => { - expect(service).toBeTruthy(); - })); -}); diff --git a/src/app/services/api/starlightdb/card.service.spec.ts b/src/app/services/api/starlightdb/card.service.spec.ts new file mode 100644 index 0000000..eaefaa4 --- /dev/null +++ b/src/app/services/api/starlightdb/card.service.spec.ts @@ -0,0 +1,15 @@ +import { TestBed, inject } from '@angular/core/testing'; + +import { CardService } from './card.service'; + +describe('CardService', () => { + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [CardService] + }); + }); + + it('should be created', inject([CardService], (service: CardService) => { + expect(service).toBeTruthy(); + })); +}); diff --git a/src/app/services/api/starlightdb.service.ts b/src/app/services/api/starlightdb/card.service.ts similarity index 70% rename from src/app/services/api/starlightdb.service.ts rename to src/app/services/api/starlightdb/card.service.ts index e5eab83..6af455f 100644 --- a/src/app/services/api/starlightdb.service.ts +++ b/src/app/services/api/starlightdb/card.service.ts @@ -1,7 +1,7 @@ import { Injectable } from '@angular/core'; @Injectable() -export class StarlightdbService { +export class CardService { constructor() { } From 789a3892025473542a00390af4e5dceca123af0a Mon Sep 17 00:00:00 2001 From: ne-peer Date: Mon, 4 Dec 2017 18:25:03 +0900 Subject: [PATCH 04/19] =?UTF-8?q?[update]=20starlightdb.card=E3=82=AF?= =?UTF-8?q?=E3=83=A9=E3=82=A4=E3=82=A2=E3=83=B3=E3=83=88=E3=82=92=E5=AE=9F?= =?UTF-8?q?=E8=A3=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/constants/api/hosts.ts | 6 +++ .../services/api/starlightdb/card.service.ts | 38 ++++++++++++++++++- 2 files changed, 43 insertions(+), 1 deletion(-) diff --git a/src/app/constants/api/hosts.ts b/src/app/constants/api/hosts.ts index 8162379..1e058e9 100644 --- a/src/app/constants/api/hosts.ts +++ b/src/app/constants/api/hosts.ts @@ -1,5 +1,11 @@ export class Hosts {} export namespace Hosts { + + // imasdb export const API_HOST_IMASDB = 'http://api.imas-db.jp'; + + // starlight db + export const API_HOST_STARLIGHTDB = 'https://starlight.kirara.ca'; + } diff --git a/src/app/services/api/starlightdb/card.service.ts b/src/app/services/api/starlightdb/card.service.ts index 6af455f..b0f30b5 100644 --- a/src/app/services/api/starlightdb/card.service.ts +++ b/src/app/services/api/starlightdb/card.service.ts @@ -1,8 +1,44 @@ import { Injectable } from '@angular/core'; +import { Jsonp } from '@angular/http'; + +import { Hosts } from '../../../constants/api/hosts'; +import { Card } from '../../../models/api/starlightdb/card/card'; @Injectable() export class CardService { - constructor() { } + public card: Card; + + constructor(private jsonp: Jsonp) { } + + /** + * カード取得 + * + * @param string name + * @param string incProfile + * @return void + */ + public findCharInfo(cardNo: number): void { + // request url + const requestUrl = Hosts.API_HOST_STARLIGHTDB + '/api/v1/card_t/' + cardNo; + + // connection + this.jsonp.get(requestUrl).subscribe(data => { + if (data.status !== 200) { + console.log(`Web api connection failure. url=[${requestUrl}]`); + return ''; + } + + const res = data.json()['result'][0]; + const ignoreFields = ['rarity', 'chara', 'skill', 'leadSkill', 'valist']; + + /** + * キャラクター情報をシリアライズ + */ + const card = new Card(); + card.fillFromJSON(res, true, ignoreFields); + this.card = card; + }); + } } From 674e81c20b1317c62cfb49b8f8594e388c5b7ee1 Mon Sep 17 00:00:00 2001 From: ne-peer Date: Mon, 4 Dec 2017 18:39:21 +0900 Subject: [PATCH 05/19] [fix] jsonp -> http modules --- src/app/services/api/starlightdb/card.service.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/services/api/starlightdb/card.service.ts b/src/app/services/api/starlightdb/card.service.ts index b0f30b5..c0744fe 100644 --- a/src/app/services/api/starlightdb/card.service.ts +++ b/src/app/services/api/starlightdb/card.service.ts @@ -1,5 +1,5 @@ import { Injectable } from '@angular/core'; -import { Jsonp } from '@angular/http'; +import { Http } from '@angular/http'; import { Hosts } from '../../../constants/api/hosts'; import { Card } from '../../../models/api/starlightdb/card/card'; @@ -9,7 +9,7 @@ export class CardService { public card: Card; - constructor(private jsonp: Jsonp) { } + constructor(private http: Http) { } /** * カード取得 @@ -18,12 +18,12 @@ export class CardService { * @param string incProfile * @return void */ - public findCharInfo(cardNo: number): void { + public findCard(cardNo: number): void { // request url const requestUrl = Hosts.API_HOST_STARLIGHTDB + '/api/v1/card_t/' + cardNo; // connection - this.jsonp.get(requestUrl).subscribe(data => { + this.http.get(requestUrl).subscribe(data => { if (data.status !== 200) { console.log(`Web api connection failure. url=[${requestUrl}]`); return ''; From dcf0e271f48188e977839851b2921b4b11be798c Mon Sep 17 00:00:00 2001 From: ne-peer Date: Tue, 5 Dec 2017 13:24:54 +0900 Subject: [PATCH 06/19] [update] mv maintenance tools --- resource/db/maintenance/{ => 01_data-fetch}/fetch_unit-list.js | 0 resource/db/maintenance/{ => 02_json-converter}/inject_to_dere.js | 0 .../inject_to_overview-latesthash.js} | 0 .../inject_unit_to_parson.js} | 0 .../{ => 02_json-converter}/unit_data-normalization.js | 0 5 files changed, 0 insertions(+), 0 deletions(-) rename resource/db/maintenance/{ => 01_data-fetch}/fetch_unit-list.js (100%) rename resource/db/maintenance/{ => 02_json-converter}/inject_to_dere.js (100%) rename resource/db/maintenance/{json_tool.js => 02_json-converter/inject_to_overview-latesthash.js} (100%) rename resource/db/maintenance/{person_in_unit.js => 02_json-converter/inject_unit_to_parson.js} (100%) rename resource/db/maintenance/{ => 02_json-converter}/unit_data-normalization.js (100%) diff --git a/resource/db/maintenance/fetch_unit-list.js b/resource/db/maintenance/01_data-fetch/fetch_unit-list.js similarity index 100% rename from resource/db/maintenance/fetch_unit-list.js rename to resource/db/maintenance/01_data-fetch/fetch_unit-list.js diff --git a/resource/db/maintenance/inject_to_dere.js b/resource/db/maintenance/02_json-converter/inject_to_dere.js similarity index 100% rename from resource/db/maintenance/inject_to_dere.js rename to resource/db/maintenance/02_json-converter/inject_to_dere.js diff --git a/resource/db/maintenance/json_tool.js b/resource/db/maintenance/02_json-converter/inject_to_overview-latesthash.js similarity index 100% rename from resource/db/maintenance/json_tool.js rename to resource/db/maintenance/02_json-converter/inject_to_overview-latesthash.js diff --git a/resource/db/maintenance/person_in_unit.js b/resource/db/maintenance/02_json-converter/inject_unit_to_parson.js similarity index 100% rename from resource/db/maintenance/person_in_unit.js rename to resource/db/maintenance/02_json-converter/inject_unit_to_parson.js diff --git a/resource/db/maintenance/unit_data-normalization.js b/resource/db/maintenance/02_json-converter/unit_data-normalization.js similarity index 100% rename from resource/db/maintenance/unit_data-normalization.js rename to resource/db/maintenance/02_json-converter/unit_data-normalization.js From cdc25a3995f93b65a961406e97e040f53b2d33df Mon Sep 17 00:00:00 2001 From: ne-peer Date: Tue, 5 Dec 2017 13:25:15 +0900 Subject: [PATCH 07/19] [add] sldb tool --- .../maintenance/02_json-converter/inject_sldb-list_to_overview.js | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 resource/db/maintenance/02_json-converter/inject_sldb-list_to_overview.js diff --git a/resource/db/maintenance/02_json-converter/inject_sldb-list_to_overview.js b/resource/db/maintenance/02_json-converter/inject_sldb-list_to_overview.js new file mode 100644 index 0000000..e69de29 From 092bbe20e3c3ebd5bb7ca92c6fe98f9a5ca02abf Mon Sep 17 00:00:00 2001 From: ne-peer Date: Tue, 5 Dec 2017 14:59:29 +0900 Subject: [PATCH 08/19] [update] sldb tool --- .../inject_sldb-list_to_overview.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/resource/db/maintenance/02_json-converter/inject_sldb-list_to_overview.js b/resource/db/maintenance/02_json-converter/inject_sldb-list_to_overview.js index e69de29..85c1e95 100644 --- a/resource/db/maintenance/02_json-converter/inject_sldb-list_to_overview.js +++ b/resource/db/maintenance/02_json-converter/inject_sldb-list_to_overview.js @@ -0,0 +1,18 @@ +const sldbJson = ``; +const sldb = JSON.parse(sldbJson)['result']; + +const overviewJson = ``; +const ov = JSON.parse(overviewJson); + +const fs = require("fs"); +// execute +for (let sldbKey in sldb) { + const cards = sldb[sldbKey]['cards']; + const name = sldb[sldbKey]['kanji_spaced']; + + ov[name]['sldb_cards'] = cards; +} +console.log(ov); + +// export +fs.writeFile('out.json', JSON.stringify(ov)); From c504a00263034f8a8890647a369daa2de0f6b574 Mon Sep 17 00:00:00 2001 From: ne-peer Date: Tue, 5 Dec 2017 15:00:25 +0900 Subject: [PATCH 09/19] [update] mv db master json --- resource/db/master/core/dere_list-export.json | 64749 ++++++++++++ .../db/master/core/dere_overview-export.json | 1220 + resource/db/master/core/unit_list-export.json | 865 + resource/db/master/dere_overview.json | 1220 - resource/db/master/person_in_units.json | 3216 - resource/db/master/unit_list.json | 2012 - resource/db/raw/firebase_db.json | 81057 ---------------- 7 files changed, 66834 insertions(+), 87505 deletions(-) create mode 100644 resource/db/master/core/dere_list-export.json create mode 100644 resource/db/master/core/dere_overview-export.json create mode 100644 resource/db/master/core/unit_list-export.json delete mode 100644 resource/db/master/dere_overview.json delete mode 100644 resource/db/master/person_in_units.json delete mode 100644 resource/db/master/unit_list.json delete mode 100644 resource/db/raw/firebase_db.json diff --git a/resource/db/master/core/dere_list-export.json b/resource/db/master/core/dere_list-export.json new file mode 100644 index 0000000..38b8678 --- /dev/null +++ b/resource/db/master/core/dere_list-export.json @@ -0,0 +1,64749 @@ +[ null, { + "aliases" : [ { + "hash" : "0dabb79ff64691111a0abae2ffed01ce", + "id" : "1000101", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "87", + "waist" : "59", + "weight" : "45" + } + }, { + "hash" : "798ed3093c682f20234934cef65c2106", + "id" : "1100102", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "87", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "2ndアニバーサリー", + "alias_name_display" : "2ndアニバーサリー", + "event" : [ { + "event_id" : 410, + "event_name" : "アイドルプロデュース the 2nd Anniversary" + } ], + "hash" : "250645af5bca76120314f21e69b0caca", + "id" : "1213201", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "87", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "2ndアニバーサリー", + "alias_name_display" : "2ndアニバーサリー", + "event" : [ { + "event_id" : 410, + "event_name" : "アイドルプロデュース the 2nd Anniversary" + } ], + "hash" : "5ebb3e7bbe7fd6a46a5bfc3eab50097f", + "id" : "1313202", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "87", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "2ndアニバーサリー・スマイル", + "alias_name_display" : "2ndアニバーサリー・スマイル", + "event" : [ { + "event_id" : 410, + "event_name" : "アイドルプロデュース the 2nd Anniversary" + } ], + "hash" : "61bde20d527ff4744e91729ffbd67058", + "id" : "1213301", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "87", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "2ndアニバーサリー・スマイル", + "alias_name_display" : "2ndアニバーサリー・スマイル", + "event" : [ { + "event_id" : 410, + "event_name" : "アイドルプロデュース the 2nd Anniversary" + } ], + "hash" : "421e19ae69094b30d5edd8fa97e4d7bf", + "id" : "1313302", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "87", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "2ndアニバーサリー・ネコミミ", + "alias_name_display" : "2ndアニバーサリー・ネコミミ", + "event" : [ { + "event_id" : 410, + "event_name" : "アイドルプロデュース the 2nd Anniversary" + } ], + "hash" : "7d7fa151dcc1e44e6aaeadb3fd14eab7", + "id" : "1213401", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "87", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "2ndアニバーサリー・ネコミミ", + "alias_name_display" : "2ndアニバーサリー・ネコミミ", + "event" : [ { + "event_id" : 410, + "event_name" : "アイドルプロデュース the 2nd Anniversary" + } ], + "hash" : "09b1b846d0f89dc251b0bcac4e497e14", + "id" : "1313402", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "87", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "ニュージェネレーション", + "alias_name_display" : "ニュージェネレーション", + "hash" : "00f4266728c5a057c338b3033a9aa17c", + "id" : "1401801", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "87", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "ニュージェネレーション", + "alias_name_display" : "ニュージェネレーション", + "hash" : "c33c2372ddc593434572ddc9265d64e4", + "id" : "1501802", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "87", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "f69c865e5d5e3ef35843e5900ffad3be", + "id" : "1402501", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "87", + "waist" : "59", + "weight" : "45" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "aa559b2b0e83b4b98c5372b171b2e9f7", + "id" : "1502502", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "87", + "waist" : "59", + "weight" : "45" + } + }, { + "alias_name" : "新春の華姫", + "alias_name_display" : "新春の華姫", + "hash" : "6628f9feaa319f6b228fb52b057388d0", + "id" : "1404501", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "87", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "新春の華姫", + "alias_name_display" : "新春の華姫", + "hash" : "eb58e141b268cd2c22134a8572fb14bc", + "id" : "1504502", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "87", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "はじけて♪サマー", + "alias_name_display" : "はじけて♪サマー", + "hash" : "a8ac3c44eb75cd9b5b3b359cab9f3f31", + "id" : "1411801", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "87", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "はじけて♪サマー", + "alias_name_display" : "はじけて♪サマー", + "hash" : "15159f0ac1f58bdd90ddd0532faaa4d1", + "id" : "1511802", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "87", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "ワンダフルマジック", + "alias_name_display" : "ワンダフルマジック", + "hash" : "00a10e6b8e178ce3976b1b0456af74ca", + "id" : "1413401", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "87", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "ワンダフルマジック", + "alias_name_display" : "ワンダフルマジック", + "hash" : "865bdc197f5ee49d902694d6ebfc9022", + "id" : "1513402", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "87", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "ウィーアーザフレンズ", + "alias_name_display" : "ウィーアーザフレンズ", + "hash" : "f781ef4c14e675083bc0068d34e09386", + "id" : "1517002", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "87", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "アニバーサリーフォーユー", + "alias_name_display" : "アニバーサリーフォーユー", + "hash" : "a9377e14d83aad99d635f52da5bdaaee", + "id" : "1420301", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "87", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "アニバーサリーフォーユー", + "alias_name_display" : "アニバーサリーフォーユー", + "hash" : "616664284f3ddf53a42d0b626133a9f4", + "id" : "1520302", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "87", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "ドリームストーリー", + "alias_name_display" : "ドリームストーリー", + "hash" : "34e7b232ee8887d3561285595ce8ce8b", + "id" : "1521402", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "87", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "G4U!", + "alias_name_display" : "G4U!", + "hash" : "f28077a23bfe9608f2ee0971655cd492", + "id" : "1523802", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "87", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "ワンダーメイド", + "alias_name_display" : "ワンダーメイド", + "hash" : "c7424c2f32ffb2348a2fe5f7bb9d70ba", + "id" : "1427201", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "87", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "ワンダーメイド", + "alias_name_display" : "ワンダーメイド", + "hash" : "700fb803afd6413117dcd8d4b499745b", + "id" : "1527202", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "87", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "笑顔の原点", + "alias_name_display" : "笑顔の原点", + "hash" : "ba0bdaa1002fbe32da508725212d1f92", + "id" : "1432701", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "87", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "笑顔の原点", + "alias_name_display" : "笑顔の原点", + "hash" : "a366ceb2fcfda4f30ada58439dfc80c1", + "id" : "1532702", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "87", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "シンデレラガール", + "alias_name_display" : "シンデレラガール", + "hash" : "d42b08b2d8bccbfaa9324bbda41de0d1", + "id" : "1434001", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "87", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "シンデレラガール", + "alias_name_display" : "シンデレラガール", + "hash" : "2e4a0459415d8d8b8600bb80a777d85b", + "id" : "1534002", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "87", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "アニバーサリープリンセス", + "alias_name_display" : "アニバーサリープリンセス", + "event" : [ { + "event_id" : 1708, + "event_name" : "アイドルプロデュース the 5th Anniversary" + } ], + "hash" : "8b1ad6b6bd53c893b9107819c9bd0495", + "id" : "1436601", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "87", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "アニバーサリープリンセス", + "alias_name_display" : "アニバーサリープリンセス", + "event" : [ { + "event_id" : 1708, + "event_name" : "アイドルプロデュース the 5th Anniversary" + } ], + "hash" : "1338de950f95214e111dad2943f191c8", + "id" : "1536602", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "87", + "waist" : "58", + "weight" : "44" + } + } ], + "idol_id" : 1, + "idol_name" : "島村卯月", + "idol_name_display" : "島村卯月", + "units" : [ { + "id" : "21", + "name" : "ジェネレーションオブサマー" + }, { + "id" : "109", + "name" : "new generations" + }, { + "id" : "135", + "name" : "ピンキーキュート" + }, { + "id" : "138", + "name" : "ピンクチェックスクール" + }, { + "id" : "195", + "name" : "C5" + }, { + "id" : "205", + "name" : "シンデレラガール" + }, { + "id" : "213", + "name" : "CINDERELLA PROJECT" + } ] +}, { + "aliases" : [ { + "hash" : "46c53f722dfaa05a4f4d36b7821a686a", + "id" : "1000201", + "profile" : { + "bust" : "77", + "height" : "149", + "hip" : "81", + "waist" : "57", + "weight" : "40" + } + }, { + "hash" : "929d8ba093d1be6624734173b6e5066a", + "id" : "1100202", + "profile" : { + "bust" : "77", + "height" : "149", + "hip" : "81", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "お花見", + "alias_name_display" : "お花見", + "event" : [ { + "event_id" : 104, + "event_name" : "桜舞う花見祭り" + } ], + "hash" : "22fd192e16f0ee5d1539b343a8f18925", + "id" : "1203701", + "profile" : { + "bust" : "77", + "height" : "149", + "hip" : "81", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "お花見", + "alias_name_display" : "お花見", + "event" : [ { + "event_id" : 104, + "event_name" : "桜舞う花見祭り" + } ], + "hash" : "2c97a783f38ff22d0a8a903358acf92a", + "id" : "1303702", + "profile" : { + "bust" : "77", + "height" : "149", + "hip" : "81", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "パワフル&スマイル", + "alias_name_display" : "パワフル&スマイル", + "hash" : "5f74fa33d7f4d70270d5de88b9607222", + "id" : "1205701", + "profile" : { + "bust" : "77", + "height" : "149", + "hip" : "81", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "パワフル&スマイル", + "alias_name_display" : "パワフル&スマイル", + "hash" : "e23e339b42039e29def1a1d3fb53f341", + "id" : "1305702", + "profile" : { + "bust" : "77", + "height" : "149", + "hip" : "81", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "ビキニチャレンジ", + "alias_name_display" : "ビキニチャレンジ", + "event" : [ { + "event_id" : 702, + "event_name" : "水着DEドリームLIVEフェスティバル" + } ], + "hash" : "2a44bb0f8a3f6056ee6ae93ce85d37e0", + "id" : "1211201", + "profile" : { + "bust" : "77", + "height" : "149", + "hip" : "81", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "ビキニチャレンジ", + "alias_name_display" : "ビキニチャレンジ", + "event" : [ { + "event_id" : 702, + "event_name" : "水着DEドリームLIVEフェスティバル" + } ], + "hash" : "5728168713d43f6166617778d5383d17", + "id" : "1311202", + "profile" : { + "bust" : "77", + "height" : "149", + "hip" : "81", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "ナデシコI.C", + "alias_name_display" : "ナデシコI.C", + "event" : [ { + "event_id" : 1207, + "event_name" : "目指せ大和撫子 アイドルチャレンジ" + } ], + "hash" : "c544cf8434aad3802004185664a27d82", + "id" : "1323702", + "profile" : { + "bust" : "77", + "height" : "149", + "hip" : "81", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "ウェディングセレモニー", + "alias_name_display" : "ウェディングセレモニー", + "hash" : "036055e8855d54d50bf860b2e8e886c0", + "id" : "1230301", + "profile" : { + "bust" : "77", + "height" : "149", + "hip" : "81", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "ウェディングセレモニー", + "alias_name_display" : "ウェディングセレモニー", + "hash" : "887f02780b02259ae8143b985b2d7510", + "id" : "1330302", + "profile" : { + "bust" : "77", + "height" : "149", + "hip" : "81", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "プリティパティシエ", + "alias_name_display" : "プリティパティシエ", + "event" : [ { + "event_id" : 405, + "event_name" : "アイドルプロデュース バレンタイン編" + } ], + "hash" : "f93a42096ba8aa95b7c3bc45aa0a3003", + "id" : "1405101", + "profile" : { + "bust" : "77", + "height" : "149", + "hip" : "81", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "プリティパティシエ", + "alias_name_display" : "プリティパティシエ", + "event" : [ { + "event_id" : 405, + "event_name" : "アイドルプロデュース バレンタイン編" + } ], + "hash" : "f4391f44173bd50a0c6dd83065936908", + "id" : "1505102", + "profile" : { + "bust" : "77", + "height" : "149", + "hip" : "81", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "スマイルパティシエ", + "alias_name_display" : "スマイルパティシエ", + "event" : [ { + "event_id" : 405, + "event_name" : "アイドルプロデュース バレンタイン編" + } ], + "hash" : "070e8c432c9dbd4fa1b2fa926d307839", + "id" : "1405201", + "profile" : { + "bust" : "77", + "height" : "149", + "hip" : "81", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "スマイルパティシエ", + "alias_name_display" : "スマイルパティシエ", + "event" : [ { + "event_id" : 405, + "event_name" : "アイドルプロデュース バレンタイン編" + } ], + "hash" : "3bcf46aeeb08f4688e1bcd7cc505be95", + "id" : "1505202", + "profile" : { + "bust" : "77", + "height" : "149", + "hip" : "81", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "ファイティングチアー", + "alias_name_display" : "ファイティングチアー", + "event" : [ { + "event_id" : 1101, + "event_name" : "プロダクション対抗トークバトルショー" + } ], + "hash" : "c9aed64496ffbddde3dfe139f5821d81", + "id" : "1412801", + "profile" : { + "bust" : "77", + "height" : "149", + "hip" : "81", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "ファイティングチアー", + "alias_name_display" : "ファイティングチアー", + "event" : [ { + "event_id" : 1101, + "event_name" : "プロダクション対抗トークバトルショー" + } ], + "hash" : "f1f5d41ea64dc5f21d2f22b17bf37972", + "id" : "1512802", + "profile" : { + "bust" : "77", + "height" : "149", + "hip" : "81", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "流麗武闘", + "alias_name_display" : "流麗武闘", + "event" : [ { + "event_id" : 514, + "event_name" : "功夫公演 香港大決戦" + } ], + "hash" : "aee2ad73ab0ea320d72882ee5d3c12b5", + "id" : "1418401", + "profile" : { + "bust" : "77", + "height" : "149", + "hip" : "81", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "流麗武闘", + "alias_name_display" : "流麗武闘", + "event" : [ { + "event_id" : 514, + "event_name" : "功夫公演 香港大決戦" + } ], + "hash" : "1a647c3d7de9bc4ca3b5ec62c7a3d4f5", + "id" : "1518402", + "profile" : { + "bust" : "77", + "height" : "149", + "hip" : "81", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "日々鍛錬", + "alias_name_display" : "日々鍛錬", + "hash" : "077286881073bf516cb65a8fa9aedaf2", + "id" : "1423301", + "profile" : { + "bust" : "77", + "height" : "149", + "hip" : "81", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "日々鍛錬", + "alias_name_display" : "日々鍛錬", + "hash" : "026f207848544f8ddba5ca6743dc56f4", + "id" : "1523302", + "profile" : { + "bust" : "77", + "height" : "149", + "hip" : "81", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "舞踊の大和撫子", + "alias_name_display" : "舞踊の大和撫子", + "event" : [ { + "event_id" : 1207, + "event_name" : "目指せ大和撫子 アイドルチャレンジ" + } ], + "hash" : "96c0809449a3a9c7eea157ffa9c586d7", + "id" : "1427601", + "profile" : { + "bust" : "77", + "height" : "149", + "hip" : "81", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "舞踊の大和撫子", + "alias_name_display" : "舞踊の大和撫子", + "event" : [ { + "event_id" : 1207, + "event_name" : "目指せ大和撫子 アイドルチャレンジ" + } ], + "hash" : "bf895736a930908d3f6ccd71065ee6d8", + "id" : "1527602", + "profile" : { + "bust" : "77", + "height" : "149", + "hip" : "81", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "舞踊の大和撫子・S", + "alias_name_display" : "舞踊の大和撫子・S", + "event" : [ { + "event_id" : 1207, + "event_name" : "目指せ大和撫子 アイドルチャレンジ" + } ], + "hash" : "742359412cdfd26e34574d29b931e81a", + "id" : "1427701", + "profile" : { + "bust" : "77", + "height" : "149", + "hip" : "81", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "舞踊の大和撫子・S", + "alias_name_display" : "舞踊の大和撫子・S", + "event" : [ { + "event_id" : 1207, + "event_name" : "目指せ大和撫子 アイドルチャレンジ" + } ], + "hash" : "cd2ea844567cc89df463cc94e87ede48", + "id" : "1527702", + "profile" : { + "bust" : "77", + "height" : "149", + "hip" : "81", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "2a73950f13b4fe7b694e9ecbdf8e9216", + "id" : "1431601", + "profile" : { + "bust" : "77", + "height" : "149", + "hip" : "81", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "0b8aba8c0d1c322588c7786f420d0717", + "id" : "1531602", + "profile" : { + "bust" : "77", + "height" : "149", + "hip" : "81", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "パワフルチャージ", + "alias_name_display" : "パワフルチャージ", + "hash" : "1e636fde2ac167157ac7a3110085f226", + "id" : "1432201", + "profile" : { + "bust" : "77", + "height" : "149", + "hip" : "81", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "パワフルチャージ", + "alias_name_display" : "パワフルチャージ", + "hash" : "7fe5882d01aa44bbd57c2a3e4bf8307d", + "id" : "1532202", + "profile" : { + "bust" : "77", + "height" : "149", + "hip" : "81", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "湯の花乙女", + "alias_name_display" : "湯の花乙女", + "hash" : "3822324e5238a535b49fd5be10e0f985", + "id" : "1439101", + "profile" : { + "bust" : "77", + "height" : "149", + "hip" : "81", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "湯の花乙女", + "alias_name_display" : "湯の花乙女", + "hash" : "b1976493a44373a42a7087ea012da84a", + "id" : "1539102", + "profile" : { + "bust" : "77", + "height" : "149", + "hip" : "81", + "waist" : "57", + "weight" : "40" + } + } ], + "idol_id" : 2, + "idol_name" : "中野有香", + "idol_name_display" : "中野有香", + "units" : [ { + "id" : "27", + "name" : "ストレートフルート" + }, { + "id" : "136", + "name" : "メロウ・イエロー" + }, { + "id" : "160", + "name" : "ハッピーバレンタイン" + }, { + "id" : "187", + "name" : "NEX-US" + }, { + "id" : "193", + "name" : "イエローリリー" + }, { + "id" : "196", + "name" : "la Roseraie" + } ] +}, { + "aliases" : [ { + "hash" : "5a32b53f2943c5c7b76b18c0e098f400", + "id" : "1000301", + "profile" : { + "bust" : "81", + "height" : "155", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "hash" : "4b39f05563a8175f27b8d893561976ee", + "id" : "1100302", + "profile" : { + "bust" : "81", + "height" : "155", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "純粋奏者", + "alias_name_display" : "純粋奏者", + "hash" : "57c3dca535e8b78bb9ba031c065690ed", + "id" : "1203501", + "profile" : { + "bust" : "81", + "height" : "155", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "純粋奏者", + "alias_name_display" : "純粋奏者", + "hash" : "e3ae28f9dae9077d49ff85eedf90d38d", + "id" : "1303502", + "profile" : { + "bust" : "81", + "height" : "155", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "ヴォヤージュ・ヒーラー", + "alias_name_display" : "ヴォヤージュ・ヒーラー", + "event" : [ { + "event_id" : 511, + "event_name" : "幻想公演 黒薔薇姫のヴォヤージュ" + } ], + "hash" : "12a16e06fe32d7bfec53eba8ca6f67de", + "id" : "1215401", + "profile" : { + "bust" : "81", + "height" : "155", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "ヴォヤージュ・ヒーラー", + "alias_name_display" : "ヴォヤージュ・ヒーラー", + "event" : [ { + "event_id" : 511, + "event_name" : "幻想公演 黒薔薇姫のヴォヤージュ" + } ], + "hash" : "ce97613529cae736a80ecd5a24ff0c05", + "id" : "1315402", + "profile" : { + "bust" : "81", + "height" : "155", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "自然なテンポ", + "alias_name_display" : "自然なテンポ", + "hash" : "99994fd85c91d0c29fe5531d99fcf38d", + "id" : "1220901", + "profile" : { + "bust" : "81", + "height" : "155", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "自然なテンポ", + "alias_name_display" : "自然なテンポ", + "hash" : "cdbe1c879b7bbb71c58e0d0b7d0161a1", + "id" : "1320902", + "profile" : { + "bust" : "81", + "height" : "155", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "ウェディングI.C", + "alias_name_display" : "ウェディングI.C", + "event" : [ { + "event_id" : 1206, + "event_name" : "目指せウェディングモデル アイドルチャレンジ" + } ], + "hash" : "7d5aa18aec3123ba1e95812ef0561f39", + "id" : "1322002", + "profile" : { + "bust" : "81", + "height" : "155", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "スクールメロディー", + "alias_name_display" : "スクールメロディー", + "hash" : "1068a0adedbd74a596f77200e983813f", + "id" : "1232101", + "profile" : { + "bust" : "81", + "height" : "155", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "スクールメロディー", + "alias_name_display" : "スクールメロディー", + "hash" : "801ae1b1b6aae6d32a62ae3f6e05f5f6", + "id" : "1332102", + "profile" : { + "bust" : "81", + "height" : "155", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "清純令嬢", + "alias_name_display" : "清純令嬢", + "hash" : "063b5513bbd62fb98cfab5b98edee7b6", + "id" : "1404401", + "profile" : { + "bust" : "81", + "height" : "155", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "清純令嬢", + "alias_name_display" : "清純令嬢", + "hash" : "39fcc8af5585b77a898d2b0a30ba7b9a", + "id" : "1504402", + "profile" : { + "bust" : "81", + "height" : "155", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "素顔のお嬢様", + "alias_name_display" : "素顔のお嬢様", + "event" : [ { + "event_id" : 801, + "event_name" : "アイドルLIVEロワイヤル" + } ], + "hash" : "3916b51a4d2993ae85d4315532fb635c", + "id" : "1409301", + "profile" : { + "bust" : "81", + "height" : "155", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "素顔のお嬢様", + "alias_name_display" : "素顔のお嬢様", + "event" : [ { + "event_id" : 801, + "event_name" : "アイドルLIVEロワイヤル" + } ], + "hash" : "65b1614f1d60f9654a0e57ed0e157409", + "id" : "1509302", + "profile" : { + "bust" : "81", + "height" : "155", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "誠実なる花嫁", + "alias_name_display" : "誠実なる花嫁", + "event" : [ { + "event_id" : 1206, + "event_name" : "目指せウェディングモデル アイドルチャレンジ" + } ], + "hash" : "36b04f9bf0aa3a07751364ba1660cddf", + "id" : "1424901", + "profile" : { + "bust" : "81", + "height" : "155", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "誠実なる花嫁", + "alias_name_display" : "誠実なる花嫁", + "event" : [ { + "event_id" : 1206, + "event_name" : "目指せウェディングモデル アイドルチャレンジ" + } ], + "hash" : "4eac93743268759f36147deee87e59e9", + "id" : "1524902", + "profile" : { + "bust" : "81", + "height" : "155", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "誠実なる花嫁・S", + "alias_name_display" : "誠実なる花嫁・S", + "event" : [ { + "event_id" : 1206, + "event_name" : "目指せウェディングモデル アイドルチャレンジ" + } ], + "hash" : "7fdbcc0917346497b8c7fbf9241e9ce1", + "id" : "1425001", + "profile" : { + "bust" : "81", + "height" : "155", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "誠実なる花嫁・S", + "alias_name_display" : "誠実なる花嫁・S", + "event" : [ { + "event_id" : 1206, + "event_name" : "目指せウェディングモデル アイドルチャレンジ" + } ], + "hash" : "722d3107b2c4c73e3ca66ad25ba67cfa", + "id" : "1525002", + "profile" : { + "bust" : "81", + "height" : "155", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "冬のハーモニー", + "alias_name_display" : "冬のハーモニー", + "event" : [ { + "event_id" : 1505, + "event_name" : "チーム対抗トークバトルショー ウィンターSP" + } ], + "hash" : "718d1b6bbb63606ba766256b8527b66c", + "id" : "1430701", + "profile" : { + "bust" : "81", + "height" : "155", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "冬のハーモニー", + "alias_name_display" : "冬のハーモニー", + "event" : [ { + "event_id" : 1505, + "event_name" : "チーム対抗トークバトルショー ウィンターSP" + } ], + "hash" : "19dca795d6ca96446f8949d9619c441d", + "id" : "1530702", + "profile" : { + "bust" : "81", + "height" : "155", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "エフォートブリランテ", + "alias_name_display" : "エフォートブリランテ", + "hash" : "4cb935f4cee9ad752573a9d41f34d024", + "id" : "1434701", + "profile" : { + "bust" : "81", + "height" : "155", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "エフォートブリランテ", + "alias_name_display" : "エフォートブリランテ", + "hash" : "0ae0b50138bbf05741509420d5324943", + "id" : "1534702", + "profile" : { + "bust" : "81", + "height" : "155", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + } ], + "idol_id" : 3, + "idol_name" : "水本ゆかり", + "idol_name_display" : "水本ゆかり", + "units" : [ { + "id" : "27", + "name" : "ストレートフルート" + }, { + "id" : "134", + "name" : "ノーブルセレブリティ" + }, { + "id" : "136", + "name" : "メロウ・イエロー" + }, { + "id" : "191", + "name" : "Love Yell" + }, { + "id" : "193", + "name" : "イエローリリー" + } ] +}, { + "aliases" : [ { + "hash" : "9e4c72332c4881ae0bdc40ed2ec88c89", + "id" : "1000401", + "profile" : { + "bust" : "64", + "height" : "132", + "hip" : "70", + "waist" : "56", + "weight" : "28" + } + }, { + "hash" : "4b7647610d30d56613fa83e5e9616afb", + "id" : "1100402", + "profile" : { + "bust" : "64", + "height" : "132", + "hip" : "70", + "waist" : "56", + "weight" : "28" + } + }, { + "alias_name" : "ひな祭り", + "alias_name_display" : "ひな祭り", + "event" : [ { + "event_id" : 202, + "event_name" : "アイドルサバイバルひな祭り編" + } ], + "hash" : "432ad39240f6444c7b5f475a40b94cdd", + "id" : "1203401", + "profile" : { + "bust" : "64", + "height" : "132", + "hip" : "70", + "waist" : "56", + "weight" : "28" + } + }, { + "alias_name" : "ひな祭り", + "alias_name_display" : "ひな祭り", + "event" : [ { + "event_id" : 202, + "event_name" : "アイドルサバイバルひな祭り編" + } ], + "hash" : "c7e09d78076a52fe3585aea1c6a8cd22", + "id" : "1303402", + "profile" : { + "bust" : "64", + "height" : "132", + "hip" : "70", + "waist" : "56", + "weight" : "28" + } + }, { + "alias_name" : "ビーチパラダイス", + "alias_name_display" : "ビーチパラダイス", + "hash" : "3bce49b8578a3244816aea3c4b946970", + "id" : "1211001", + "profile" : { + "bust" : "64", + "height" : "132", + "hip" : "70", + "waist" : "56", + "weight" : "28" + } + }, { + "alias_name" : "ビーチパラダイス", + "alias_name_display" : "ビーチパラダイス", + "hash" : "74fb1af8cf551785d0eb3c886169b29c", + "id" : "1311002", + "profile" : { + "bust" : "64", + "height" : "132", + "hip" : "70", + "waist" : "56", + "weight" : "28" + } + }, { + "alias_name" : "マーチングバンド", + "alias_name_display" : "マーチングバンド", + "hash" : "5f198336d9cb50f8ab727a22ec32aa97", + "id" : "1213101", + "profile" : { + "bust" : "64", + "height" : "132", + "hip" : "70", + "waist" : "56", + "weight" : "28" + } + }, { + "alias_name" : "マーチングバンド", + "alias_name_display" : "マーチングバンド", + "hash" : "12a280521ddf493e5f868b618494392a", + "id" : "1313102", + "profile" : { + "bust" : "64", + "height" : "132", + "hip" : "70", + "waist" : "56", + "weight" : "28" + } + }, { + "alias_name" : "魔女っ娘I.C", + "alias_name_display" : "魔女っ娘I.C", + "event" : [ { + "event_id" : 1201, + "event_name" : "目指せ魔女っ娘 アイドルチャレンジ" + } ], + "hash" : "7afc67a566bd72f23eedb3a19bb3a982", + "id" : "1316202", + "profile" : { + "bust" : "64", + "height" : "132", + "hip" : "70", + "waist" : "56", + "weight" : "28" + } + }, { + "alias_name" : "フレンドシップ", + "alias_name_display" : "フレンドシップ", + "event" : [ { + "event_id" : "020", + "event_name" : "第20回プロダクションマッチフェスティバル" + } ], + "hash" : "a626e8ea3402255c88c43fa7e35fb2ff", + "id" : "1220401", + "profile" : { + "bust" : "64", + "height" : "132", + "hip" : "70", + "waist" : "56", + "weight" : "28" + } + }, { + "alias_name" : "フレンドシップ", + "alias_name_display" : "フレンドシップ", + "event" : [ { + "event_id" : "020", + "event_name" : "第20回プロダクションマッチフェスティバル" + } ], + "hash" : "ba304a7ee476e2e6f34d1d1380710dcf", + "id" : "1320402", + "profile" : { + "bust" : "64", + "height" : "132", + "hip" : "70", + "waist" : "56", + "weight" : "28" + } + }, { + "alias_name" : "クリスマスナイト", + "alias_name_display" : "クリスマスナイト", + "hash" : "fd3ac0d9e8392a40fd5f88a0f8f4a135", + "id" : "1224901", + "profile" : { + "bust" : "64", + "height" : "132", + "hip" : "70", + "waist" : "56", + "weight" : "28" + } + }, { + "alias_name" : "クリスマスナイト", + "alias_name_display" : "クリスマスナイト", + "hash" : "ab388a028b0c06ac2b8ad7e5b87c14e9", + "id" : "1324902", + "profile" : { + "bust" : "64", + "height" : "132", + "hip" : "70", + "waist" : "56", + "weight" : "28" + } + }, { + "alias_name" : "コレクションスタイル", + "alias_name_display" : "コレクションスタイル", + "event" : [ { + "event_id" : 1406, + "event_name" : "第6回ぷちデレラコレクション" + } ], + "hash" : "b8f180aef3da364b62a7d9d94c49f790", + "id" : "1326902", + "profile" : { + "bust" : "64", + "height" : "132", + "hip" : "70", + "waist" : "56", + "weight" : "28" + } + }, { + "alias_name" : "ロワイヤルスタイルND", + "alias_name_display" : "ロワイヤルスタイルND", + "event" : [ { + "event_id" : 823, + "event_name" : "第23回アイドルLIVEロワイヤル" + } ], + "hash" : "88261973e6dc33c1efcf5f13fd5024ad", + "id" : "1233201", + "profile" : { + "bust" : "64", + "height" : "132", + "hip" : "70", + "waist" : "56", + "weight" : "28" + } + }, { + "alias_name" : "ロワイヤルスタイルND", + "alias_name_display" : "ロワイヤルスタイルND", + "event" : [ { + "event_id" : 823, + "event_name" : "第23回アイドルLIVEロワイヤル" + } ], + "hash" : "2ce3a5f3b4995d42f6e8e0687b189e11", + "id" : "1333202", + "profile" : { + "bust" : "64", + "height" : "132", + "hip" : "70", + "waist" : "56", + "weight" : "28" + } + }, { + "alias_name" : "リトルプリンセス", + "alias_name_display" : "リトルプリンセス", + "event" : [ { + "event_id" : 502, + "event_name" : "アイドルLIVEツアーinイギリス" + } ], + "hash" : "d59c444656b4257c797792a85ea7087b", + "id" : "1404701", + "profile" : { + "bust" : "64", + "height" : "132", + "hip" : "70", + "waist" : "56", + "weight" : "28" + } + }, { + "alias_name" : "リトルプリンセス", + "alias_name_display" : "リトルプリンセス", + "event" : [ { + "event_id" : 502, + "event_name" : "アイドルLIVEツアーinイギリス" + } ], + "hash" : "1795c63d5c362fe01f69b2ff03031d34", + "id" : "1504702", + "profile" : { + "bust" : "64", + "height" : "132", + "hip" : "70", + "waist" : "56", + "weight" : "28" + } + }, { + "alias_name" : "マジカルガール・アクア", + "alias_name_display" : "マジカルガール・アクア", + "event" : [ { + "event_id" : 1201, + "event_name" : "目指せ魔女っ娘 アイドルチャレンジ" + } ], + "hash" : "64ceb0a3aba19347f000e9ea2e320c3e", + "id" : "1414601", + "profile" : { + "bust" : "64", + "height" : "132", + "hip" : "70", + "waist" : "56", + "weight" : "28" + } + }, { + "alias_name" : "マジカルガール・アクア", + "alias_name_display" : "マジカルガール・アクア", + "event" : [ { + "event_id" : 1201, + "event_name" : "目指せ魔女っ娘 アイドルチャレンジ" + } ], + "hash" : "7bab85379544f5baa52a0c14e399b63a", + "id" : "1514602", + "profile" : { + "bust" : "64", + "height" : "132", + "hip" : "70", + "waist" : "56", + "weight" : "28" + } + }, { + "alias_name" : "マジカルガールS・アクア", + "alias_name_display" : "マジカルガールS・アクア", + "event" : [ { + "event_id" : 1201, + "event_name" : "目指せ魔女っ娘 アイドルチャレンジ" + } ], + "hash" : "f3a7e94a6dfa24bdaf63dde0c51184d6", + "id" : "1414701", + "profile" : { + "bust" : "64", + "height" : "132", + "hip" : "70", + "waist" : "56", + "weight" : "28" + } + }, { + "alias_name" : "マジカルガールS・アクア", + "alias_name_display" : "マジカルガールS・アクア", + "event" : [ { + "event_id" : 1201, + "event_name" : "目指せ魔女っ娘 アイドルチャレンジ" + } ], + "hash" : "186553b4e590e75736c7b2e3620abc8f", + "id" : "1514702", + "profile" : { + "bust" : "64", + "height" : "132", + "hip" : "70", + "waist" : "56", + "weight" : "28" + } + }, { + "alias_name" : "からふるタイム", + "alias_name_display" : "からふるタイム", + "hash" : "c141ec5c30df557ec8b4c70280222551", + "id" : "1425101", + "profile" : { + "bust" : "64", + "height" : "132", + "hip" : "70", + "waist" : "56", + "weight" : "28" + } + }, { + "alias_name" : "からふるタイム", + "alias_name_display" : "からふるタイム", + "hash" : "29b2e04c3b9aad43ab45f10697f24ee2", + "id" : "1525102", + "profile" : { + "bust" : "64", + "height" : "132", + "hip" : "70", + "waist" : "56", + "weight" : "28" + } + }, { + "alias_name" : "ちいさな秋", + "alias_name_display" : "ちいさな秋", + "event" : [ { + "event_id" : 724, + "event_name" : "第24回ドリームLIVEフェスティバル" + } ], + "hash" : "ebd6eb001f23da8db802a95ac4f0334f", + "id" : "1435701", + "profile" : { + "bust" : "64", + "height" : "132", + "hip" : "70", + "waist" : "56", + "weight" : "28" + } + }, { + "alias_name" : "ちいさな秋", + "alias_name_display" : "ちいさな秋", + "event" : [ { + "event_id" : 724, + "event_name" : "第24回ドリームLIVEフェスティバル" + } ], + "hash" : "02a5755a9e817844b01702bd71f8a68f", + "id" : "1535702", + "profile" : { + "bust" : "64", + "height" : "132", + "hip" : "70", + "waist" : "56", + "weight" : "28" + } + } ], + "idol_id" : 4, + "idol_name" : "福山舞", + "idol_name_display" : "福山舞", + "units" : [ { + "id" : "164", + "name" : "マジカルテット" + }, { + "id" : "177", + "name" : "桜舞隊" + }, { + "id" : "210", + "name" : "ロワイヤルスタイルND" + }, { + "id" : "214", + "name" : "L.M.B.G" + } ] +}, { + "aliases" : [ { + "hash" : "2c27422ff05ee7bb687d23d68b8e5437", + "id" : "1000501", + "profile" : { + "bust" : "76", + "height" : "147", + "hip" : "79", + "waist" : "55", + "weight" : "38" + } + }, { + "hash" : "9afc857da9d69bf96e603bf8837a66ce", + "id" : "1100502", + "profile" : { + "bust" : "76", + "height" : "147", + "hip" : "79", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "バレンタイン", + "alias_name_display" : "バレンタイン", + "event" : [ { + "event_id" : 103, + "event_name" : "バレンタインパーティー" + } ], + "hash" : "8d83c2c10b5dda3a24ab3fd2d2d5a65e", + "id" : "1001801", + "profile" : { + "bust" : "76", + "height" : "147", + "hip" : "79", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "バレンタイン", + "alias_name_display" : "バレンタイン", + "event" : [ { + "event_id" : 103, + "event_name" : "バレンタインパーティー" + } ], + "hash" : "93917a715e96a0ed275f0bc15236ce9d", + "id" : "1101802", + "profile" : { + "bust" : "76", + "height" : "147", + "hip" : "79", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "ハッピーバレンタイン", + "alias_name_display" : "ハッピーバレンタイン", + "event" : [ { + "event_id" : 405, + "event_name" : "アイドルプロデュース バレンタイン編" + } ], + "hash" : "6a3760f4ae142edb4fa79c55c0711f16", + "id" : "1207701", + "profile" : { + "bust" : "76", + "height" : "147", + "hip" : "79", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "ハッピーバレンタイン", + "alias_name_display" : "ハッピーバレンタイン", + "event" : [ { + "event_id" : 405, + "event_name" : "アイドルプロデュース バレンタイン編" + } ], + "hash" : "f662c0d2f39ebe7c9f6f2b5801a5637f", + "id" : "1307702", + "profile" : { + "bust" : "76", + "height" : "147", + "hip" : "79", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "スマイルバレンタイン", + "alias_name_display" : "スマイルバレンタイン", + "event" : [ { + "event_id" : 405, + "event_name" : "アイドルプロデュース バレンタイン編" + } ], + "hash" : "600d9532a365f51b484cde2e1968dbb0", + "id" : "1207801", + "profile" : { + "bust" : "76", + "height" : "147", + "hip" : "79", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "スマイルバレンタイン", + "alias_name_display" : "スマイルバレンタイン", + "event" : [ { + "event_id" : 405, + "event_name" : "アイドルプロデュース バレンタイン編" + } ], + "hash" : "ed5efe1f4f7f8fab7501b684faa673f5", + "id" : "1307802", + "profile" : { + "bust" : "76", + "height" : "147", + "hip" : "79", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "ロワイヤルスタイルNP", + "alias_name_display" : "ロワイヤルスタイルNP", + "event" : [ { + "event_id" : 804, + "event_name" : "第4回アイドルLIVEロワイヤル" + } ], + "hash" : "f342a9da146eba2799e8451dab7c0a22", + "id" : "1215201", + "profile" : { + "bust" : "76", + "height" : "147", + "hip" : "79", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "ロワイヤルスタイルNP", + "alias_name_display" : "ロワイヤルスタイルNP", + "event" : [ { + "event_id" : 804, + "event_name" : "第4回アイドルLIVEロワイヤル" + } ], + "hash" : "9ac4c4497893b1212e1a4b5fef670c74", + "id" : "1315202", + "profile" : { + "bust" : "76", + "height" : "147", + "hip" : "79", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "スクールガール", + "alias_name_display" : "スクールガール", + "hash" : "5f4163ebaa3db4ae6a40335feeab9d05", + "id" : "1218601", + "profile" : { + "bust" : "76", + "height" : "147", + "hip" : "79", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "スクールガール", + "alias_name_display" : "スクールガール", + "hash" : "5bd608ecda1c88289f543f740fa31798", + "id" : "1318602", + "profile" : { + "bust" : "76", + "height" : "147", + "hip" : "79", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "なかよし☆ドーナッツ", + "alias_name_display" : "なかよし☆ドーナッツ", + "hash" : "df0842fcb37dca93468e740e24134f38", + "id" : "1220801", + "profile" : { + "bust" : "76", + "height" : "147", + "hip" : "79", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "なかよし☆ドーナッツ", + "alias_name_display" : "なかよし☆ドーナッツ", + "hash" : "b830925d4da9a4ebb45aad7b456f68a6", + "id" : "1320802", + "profile" : { + "bust" : "76", + "height" : "147", + "hip" : "79", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "ハイカラガール", + "alias_name_display" : "ハイカラガール", + "hash" : "59774669f6fd1ce8779b3ad085780d99", + "id" : "1223001", + "profile" : { + "bust" : "76", + "height" : "147", + "hip" : "79", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "ハイカラガール", + "alias_name_display" : "ハイカラガール", + "hash" : "53aa3e20e3981711db5c1c9c00490217", + "id" : "1323002", + "profile" : { + "bust" : "76", + "height" : "147", + "hip" : "79", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "スイートサマー", + "alias_name_display" : "スイートサマー", + "event" : [ { + "event_id" : 205, + "event_name" : "アイドルサバイバルinサマーライブ" + } ], + "hash" : "75d17e59127cb32465dd5f4cf7a35f69", + "id" : "1402201", + "profile" : { + "bust" : "76", + "height" : "147", + "hip" : "79", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "スイートサマー", + "alias_name_display" : "スイートサマー", + "event" : [ { + "event_id" : 205, + "event_name" : "アイドルサバイバルinサマーライブ" + } ], + "hash" : "d4d7df4f74b6612da8f3b9256354039e", + "id" : "1502202", + "profile" : { + "bust" : "76", + "height" : "147", + "hip" : "79", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "ドーナッツ☆マーメイド", + "alias_name_display" : "ドーナッツ☆マーメイド", + "hash" : "6639dfcca711df063ea40a7e8e423a5d", + "id" : "1408301", + "profile" : { + "bust" : "76", + "height" : "147", + "hip" : "79", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "ドーナッツ☆マーメイド", + "alias_name_display" : "ドーナッツ☆マーメイド", + "hash" : "c5686d14889a1c7a421a38304dc8f88c", + "id" : "1508302", + "profile" : { + "bust" : "76", + "height" : "147", + "hip" : "79", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "目覚めし勇者", + "alias_name_display" : "目覚めし勇者", + "event" : [ { + "event_id" : 516, + "event_name" : "幻想公演栄光のシュヴァリエ" + } ], + "hash" : "7a53687160966f6fc639e8581c961d45", + "id" : "1420801", + "profile" : { + "bust" : "76", + "height" : "147", + "hip" : "79", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "目覚めし勇者", + "alias_name_display" : "目覚めし勇者", + "event" : [ { + "event_id" : 516, + "event_name" : "幻想公演栄光のシュヴァリエ" + } ], + "hash" : "6d3ed0a7f03b9b5fd51721010eaf81f1", + "id" : "1520802", + "profile" : { + "bust" : "76", + "height" : "147", + "hip" : "79", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "スウィートサークル", + "alias_name_display" : "スウィートサークル", + "event" : [ { + "event_id" : 720, + "event_name" : "第20回ドリームLIVEフェスティバル" + } ], + "hash" : "380c5bc88f6fc5c34164164c8b721e66", + "id" : "1432101", + "profile" : { + "bust" : "76", + "height" : "147", + "hip" : "79", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "スウィートサークル", + "alias_name_display" : "スウィートサークル", + "event" : [ { + "event_id" : 720, + "event_name" : "第20回ドリームLIVEフェスティバル" + } ], + "hash" : "4451be66b36f225beba93e12fa235f36", + "id" : "1532102", + "profile" : { + "bust" : "76", + "height" : "147", + "hip" : "79", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "あま~い★誘惑", + "alias_name_display" : "あま~い★誘惑", + "event" : [ { + "event_id" : 1213, + "event_name" : "目指せお菓子なハロウィン アイドルチャレンジ" + } ], + "hash" : "f2a2dfca90f836b1d98d889179daad59", + "id" : "1436001", + "profile" : { + "bust" : "76", + "height" : "147", + "hip" : "79", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "あま~い★誘惑", + "alias_name_display" : "あま~い★誘惑", + "event" : [ { + "event_id" : 1213, + "event_name" : "目指せお菓子なハロウィン アイドルチャレンジ" + } ], + "hash" : "06f18e9f5532d8fd04e01d1a64c16df4", + "id" : "1536002", + "profile" : { + "bust" : "76", + "height" : "147", + "hip" : "79", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "できたてシュガー", + "alias_name_display" : "できたてシュガー", + "hash" : "c6e0e9ac726d8b09a19f833255f8ca38", + "id" : "1440001", + "profile" : { + "bust" : "76", + "height" : "147", + "hip" : "79", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "できたてシュガー", + "alias_name_display" : "できたてシュガー", + "hash" : "6e42fd90357609b6d27c0afa237f117b", + "id" : "1540002", + "profile" : { + "bust" : "76", + "height" : "147", + "hip" : "79", + "waist" : "55", + "weight" : "38" + } + } ], + "idol_id" : 5, + "idol_name" : "椎名法子", + "idol_name_display" : "椎名法子", + "units" : [ { + "id" : "33", + "name" : "チーム・フラワー" + }, { + "id" : "136", + "name" : "メロウ・イエロー" + }, { + "id" : "160", + "name" : "ハッピーバレンタイン" + }, { + "id" : "188", + "name" : "Sweetches" + }, { + "id" : "193", + "name" : "イエローリリー" + }, { + "id" : "209", + "name" : "ロワイヤルスタイルNP" + } ] +}, { + "aliases" : [ { + "hash" : "ed6aeeec0997ee6943d1791c228c1ec7", + "id" : "1000601", + "profile" : { + "bust" : "81", + "height" : "153", + "hip" : "79", + "waist" : "56", + "weight" : "41" + } + }, { + "hash" : "f3f2597ca67e9fc3058a86fc5394c6ef", + "id" : "1100602", + "profile" : { + "bust" : "81", + "height" : "153", + "hip" : "79", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "スポーツ祭", + "alias_name_display" : "スポーツ祭", + "hash" : "ba32b49a158314a1fca1cc2183fccd4b", + "id" : "1204401", + "profile" : { + "bust" : "81", + "height" : "153", + "hip" : "79", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "スポーツ祭", + "alias_name_display" : "スポーツ祭", + "hash" : "086e26928b30bbc058eb89c453157284", + "id" : "1304402", + "profile" : { + "bust" : "81", + "height" : "153", + "hip" : "79", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "クリスマスパーティー", + "alias_name_display" : "クリスマスパーティー", + "hash" : "62618351b0bcde86f002c3bcec730148", + "id" : "1213601", + "profile" : { + "bust" : "81", + "height" : "153", + "hip" : "79", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "クリスマスパーティー", + "alias_name_display" : "クリスマスパーティー", + "hash" : "898a7b7cee8c3554b096fb44fbf1c6e5", + "id" : "1313602", + "profile" : { + "bust" : "81", + "height" : "153", + "hip" : "79", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "フラワーガーデン", + "alias_name_display" : "フラワーガーデン", + "event" : [ { + "event_id" : 213, + "event_name" : "アイドルサバイバルinフラワーガーデン" + } ], + "hash" : "78c348ee69a886457da80ac238317a5c", + "id" : "1215601", + "profile" : { + "bust" : "81", + "height" : "153", + "hip" : "79", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "フラワーガーデン", + "alias_name_display" : "フラワーガーデン", + "event" : [ { + "event_id" : 213, + "event_name" : "アイドルサバイバルinフラワーガーデン" + } ], + "hash" : "2f5762635183f75a5be435de3a0c58b4", + "id" : "1315602", + "profile" : { + "bust" : "81", + "height" : "153", + "hip" : "79", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "ファンシーガール", + "alias_name_display" : "ファンシーガール", + "hash" : "6b35883cb4c64cec7edbbbcffd5a3390", + "id" : "1406901", + "profile" : { + "bust" : "81", + "height" : "153", + "hip" : "79", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "ファンシーガール", + "alias_name_display" : "ファンシーガール", + "hash" : "5d1e7b399154bdf492febc326a51a8bb", + "id" : "1506902", + "profile" : { + "bust" : "81", + "height" : "153", + "hip" : "79", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "こぼれるスマイル", + "alias_name_display" : "こぼれるスマイル", + "event" : [ { + "event_id" : 709, + "event_name" : "第9回ドリームLIVEフェスティバル" + } ], + "hash" : "2c5a5b78471f6d6c40dbe61cd3e9900d", + "id" : "1419501", + "profile" : { + "bust" : "81", + "height" : "153", + "hip" : "79", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "こぼれるスマイル", + "alias_name_display" : "こぼれるスマイル", + "event" : [ { + "event_id" : 709, + "event_name" : "第9回ドリームLIVEフェスティバル" + } ], + "hash" : "a445a50c0d5fb02ff4f82c959384d750", + "id" : "1519502", + "profile" : { + "bust" : "81", + "height" : "153", + "hip" : "79", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "フレンドリーチアー", + "alias_name_display" : "フレンドリーチアー", + "event" : [ { + "event_id" : 1109, + "event_name" : "第9回プロダクション対抗トークバトルショー" + } ], + "hash" : "21aafbfb633a28a9bd5a24f0e75efe80", + "id" : "1423001", + "profile" : { + "bust" : "81", + "height" : "153", + "hip" : "79", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "フレンドリーチアー", + "alias_name_display" : "フレンドリーチアー", + "event" : [ { + "event_id" : 1109, + "event_name" : "第9回プロダクション対抗トークバトルショー" + } ], + "hash" : "e84038818af54434a5dade1f5e257738", + "id" : "1523002", + "profile" : { + "bust" : "81", + "height" : "153", + "hip" : "79", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "コーラスリーダー", + "alias_name_display" : "コーラスリーダー", + "event" : [ { + "event_id" : 520, + "event_name" : "青春公演 シング・ア・ソング" + } ], + "hash" : "436039c361c04185b59793ac385a5d82", + "id" : "1425601", + "profile" : { + "bust" : "81", + "height" : "153", + "hip" : "79", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "コーラスリーダー", + "alias_name_display" : "コーラスリーダー", + "event" : [ { + "event_id" : 520, + "event_name" : "青春公演 シング・ア・ソング" + } ], + "hash" : "6d640f84d12ca279bca2fe4f10d6e4ec", + "id" : "1525602", + "profile" : { + "bust" : "81", + "height" : "153", + "hip" : "79", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "南国バケーション", + "alias_name_display" : "南国バケーション", + "hash" : "9def754016201d226cdb8f58a13c294c", + "id" : "1428901", + "profile" : { + "bust" : "81", + "height" : "153", + "hip" : "79", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "南国バケーション", + "alias_name_display" : "南国バケーション", + "hash" : "9525aeca682cb5138adfad2b93165509", + "id" : "1528902", + "profile" : { + "bust" : "81", + "height" : "153", + "hip" : "79", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "ライクアバッドガール", + "alias_name_display" : "ライクアバッドガール", + "event" : [ { + "event_id" : 1407, + "event_name" : "第7回ぷちデレラコレクション" + } ], + "hash" : "0d75122abd7d6be852284b94fbedf2ea", + "id" : "1433401", + "profile" : { + "bust" : "81", + "height" : "153", + "hip" : "79", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "ライクアバッドガール", + "alias_name_display" : "ライクアバッドガール", + "event" : [ { + "event_id" : 1407, + "event_name" : "第7回ぷちデレラコレクション" + } ], + "hash" : "d4bee022093890359552c612a72b9b89", + "id" : "1533402", + "profile" : { + "bust" : "81", + "height" : "153", + "hip" : "79", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "ワンダーホーリーナイト", + "alias_name_display" : "ワンダーホーリーナイト", + "hash" : "db115e1ba38a17d275397d1b00513ddb", + "id" : "1437001", + "profile" : { + "bust" : "81", + "height" : "153", + "hip" : "79", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "ワンダーホーリーナイト", + "alias_name_display" : "ワンダーホーリーナイト", + "hash" : "2ed07d073761b8d9b26106a1bebea34a", + "id" : "1537002", + "profile" : { + "bust" : "81", + "height" : "153", + "hip" : "79", + "waist" : "56", + "weight" : "41" + } + } ], + "idol_id" : 6, + "idol_name" : "今井加奈", + "idol_name_display" : "今井加奈", + "units" : [ { + "id" : "11", + "name" : "かな☆かな☆ふぁんしー" + }, { + "id" : "103", + "name" : "ビビッドカラーエイジ" + }, { + "id" : "133", + "name" : "スケルツォ・プリマヴェーラ" + }, { + "id" : "181", + "name" : "フレッシュアスリーテス" + }, { + "id" : "193", + "name" : "イエローリリー" + } ] +}, { + "aliases" : [ { + "hash" : "bb74192d2815e42c51cbf484f0e7c57b", + "id" : "1000701", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "76", + "waist" : "54", + "weight" : "45" + } + }, { + "hash" : "590ea3d4692769eab56d96af4d5c6298", + "id" : "1100702", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "76", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "ウサコちゃんと", + "alias_name_display" : "ウサコちゃんと", + "event" : [ { + "event_id" : 203, + "event_name" : "アイドルサバイバルinテーマパーク" + } ], + "hash" : "bb1565b0cc877336f3c836abbf54aa7e", + "id" : "1204001", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "76", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "ウサコちゃんと", + "alias_name_display" : "ウサコちゃんと", + "event" : [ { + "event_id" : 203, + "event_name" : "アイドルサバイバルinテーマパーク" + } ], + "hash" : "2726872f85e9ca83e70c9897d833cbbe", + "id" : "1304002", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "76", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "浴衣祭り", + "alias_name_display" : "浴衣祭り", + "hash" : "c38e02af7867d399dc755701470f8fb6", + "id" : "1210401", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "76", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "浴衣祭り", + "alias_name_display" : "浴衣祭り", + "hash" : "393b6b1b2e28e60508ecfc9f13769c3c", + "id" : "1310402", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "76", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "パラダイスリゾート", + "alias_name_display" : "パラダイスリゾート", + "hash" : "28351f2aa36a19be5e71535a9da90df2", + "id" : "1217701", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "76", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "パラダイスリゾート", + "alias_name_display" : "パラダイスリゾート", + "hash" : "e62386d71c2fd0d5ad4dd47207df9b39", + "id" : "1317702", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "76", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "オータムコレクション", + "alias_name_display" : "オータムコレクション", + "hash" : "8e287b6e2675f27792f7c11ae46cdbcd", + "id" : "1223901", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "76", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "オータムコレクション", + "alias_name_display" : "オータムコレクション", + "hash" : "dfaef83aefde74600203a567895707b1", + "id" : "1323902", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "76", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "クライムI.C", + "alias_name_display" : "クライムI.C", + "event" : [ { + "event_id" : 1211, + "event_name" : "目指せ山頂! アイドルチャレンジ" + } ], + "hash" : "5284e8ed9804a5f52178ffad4654693c", + "id" : "1329002", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "76", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "ハロウィンクイーン", + "alias_name_display" : "ハロウィンクイーン", + "event" : [ { + "event_id" : 207, + "event_name" : "アイドルサバイバル ハロウィン編" + } ], + "hash" : "02e6e6ca1a87c6990997bd7e95004bf2", + "id" : "1403401", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "76", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "ハロウィンクイーン", + "alias_name_display" : "ハロウィンクイーン", + "event" : [ { + "event_id" : 207, + "event_name" : "アイドルサバイバル ハロウィン編" + } ], + "hash" : "b4ce1229bd3669f873535993c78119a4", + "id" : "1503402", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "76", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "うたのおねえさん", + "alias_name_display" : "うたのおねえさん", + "hash" : "5b22bf84b28a80e6bc9bba507cb475ca", + "id" : "1412001", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "76", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "うたのおねえさん", + "alias_name_display" : "うたのおねえさん", + "hash" : "7ff72968fd3f03a494d52e24b597be01", + "id" : "1512002", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "76", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "甲斐のウサトラ", + "alias_name_display" : "甲斐のウサトラ", + "event" : [ { + "event_id" : 515, + "event_name" : "戦国公演 天魔の乱" + } ], + "hash" : "3cc897e17eb9ec00935c3f09dd790b44", + "id" : "1419701", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "76", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "甲斐のウサトラ", + "alias_name_display" : "甲斐のウサトラ", + "event" : [ { + "event_id" : 515, + "event_name" : "戦国公演 天魔の乱" + } ], + "hash" : "545f910a45bcaf27bf287cf9ae8149e5", + "id" : "1519702", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "76", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "ウサコちゃんとチアー", + "alias_name_display" : "ウサコちゃんとチアー", + "event" : [ { + "event_id" : 1501, + "event_name" : "チーム対抗トークバトルショー" + } ], + "hash" : "1ca5b0c45103639cf0269381b7c00758", + "id" : "1423901", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "76", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "ウサコちゃんとチアー", + "alias_name_display" : "ウサコちゃんとチアー", + "event" : [ { + "event_id" : 1501, + "event_name" : "チーム対抗トークバトルショー" + } ], + "hash" : "a4b95d602f54ab58070cacc27508ccc0", + "id" : "1523902", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "76", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "たのしくクライマー", + "alias_name_display" : "たのしくクライマー", + "event" : [ { + "event_id" : 1211, + "event_name" : "目指せ山頂! アイドルチャレンジ" + } ], + "hash" : "125e81ee1827f6f200d28b40aa1be60c", + "id" : "1434201", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "76", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "たのしくクライマー", + "alias_name_display" : "たのしくクライマー", + "event" : [ { + "event_id" : 1211, + "event_name" : "目指せ山頂! アイドルチャレンジ" + } ], + "hash" : "ab230b11f6a1d816f09e09d220d47773", + "id" : "1534202", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "76", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "にこにこクライマー", + "alias_name_display" : "にこにこクライマー", + "event" : [ { + "event_id" : 1211, + "event_name" : "目指せ山頂! アイドルチャレンジ" + } ], + "hash" : "64effa640e159e91df4d2536e9fb2ef1", + "id" : "1434301", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "76", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "にこにこクライマー", + "alias_name_display" : "にこにこクライマー", + "event" : [ { + "event_id" : 1211, + "event_name" : "目指せ山頂! アイドルチャレンジ" + } ], + "hash" : "9d21319e84f61ca87cc24dfd1aa511dc", + "id" : "1534302", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "76", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "クラッシールージュ", + "alias_name_display" : "クラッシールージュ", + "event" : [ { + "event_id" : 1411, + "event_name" : "第11回ぷちデレラコレクション" + } ], + "hash" : "0bafd8a70b95838077ee10b32b1c12e6", + "id" : "1438401", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "76", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "クラッシールージュ", + "alias_name_display" : "クラッシールージュ", + "event" : [ { + "event_id" : 1411, + "event_name" : "第11回ぷちデレラコレクション" + } ], + "hash" : "baf115536838f243cc9a52df9853fb22", + "id" : "1538402", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "76", + "waist" : "54", + "weight" : "45" + } + } ], + "idol_id" : 7, + "idol_name" : "持田亜里沙", + "idol_name_display" : "持田亜里沙", + "units" : [ { + "id" : "173", + "name" : "ピンクドットバルーン" + } ] +}, { + "aliases" : [ { + "hash" : "9934868123e14bccac84dfb85f7ecd8a", + "id" : "1000801", + "profile" : { + "bust" : "90", + "height" : "153", + "hip" : "89", + "waist" : "65", + "weight" : "52" + } + }, { + "hash" : "4a82a002228540b7fb96ca744599f1b1", + "id" : "1100802", + "profile" : { + "bust" : "90", + "height" : "153", + "hip" : "89", + "waist" : "63", + "weight" : "51" + } + }, { + "alias_name" : "春風スポーツ", + "alias_name_display" : "春風スポーツ", + "hash" : "9c9fb21dc78b7642279e08ce560b9326", + "id" : "1227201", + "profile" : { + "bust" : "90", + "height" : "153", + "hip" : "89", + "waist" : "63", + "weight" : "51" + } + }, { + "alias_name" : "春風スポーツ", + "alias_name_display" : "春風スポーツ", + "hash" : "a4e16ebe27838b975e37bfe74c84ddc2", + "id" : "1327202", + "profile" : { + "bust" : "90", + "height" : "153", + "hip" : "89", + "waist" : "63", + "weight" : "51" + } + }, { + "alias_name" : "ワイルドフレンズ", + "alias_name_display" : "ワイルドフレンズ", + "hash" : "16d9293bf83ba6bf24a6852f8d34c0a7", + "id" : "1232601", + "profile" : { + "bust" : "90", + "height" : "153", + "hip" : "89", + "waist" : "63", + "weight" : "51" + } + }, { + "alias_name" : "ワイルドフレンズ", + "alias_name_display" : "ワイルドフレンズ", + "hash" : "82aa4935c95e87e5a62185d63a42dd2c", + "id" : "1332602", + "profile" : { + "bust" : "90", + "height" : "153", + "hip" : "89", + "waist" : "63", + "weight" : "51" + } + }, { + "alias_name" : "ふわふわスマイル", + "alias_name_display" : "ふわふわスマイル", + "hash" : "5bc1016a4121d230bcadb3e57ae9becc", + "id" : "1401301", + "profile" : { + "bust" : "90", + "height" : "153", + "hip" : "89", + "waist" : "64", + "weight" : "52" + } + }, { + "alias_name" : "ふわふわスマイル", + "alias_name_display" : "ふわふわスマイル", + "hash" : "a58abdbbc7258e54993ab40137c6cd78", + "id" : "1501302", + "profile" : { + "bust" : "91", + "height" : "153", + "hip" : "89", + "waist" : "63", + "weight" : "51" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "98d99f1382acbdcffbdf1f2c2b878c86", + "id" : "1401501", + "profile" : { + "bust" : "90", + "height" : "153", + "hip" : "89", + "waist" : "65", + "weight" : "52" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "207845571c37f60aa09865f7ad5684d4", + "id" : "1501502", + "profile" : { + "bust" : "90", + "height" : "153", + "hip" : "89", + "waist" : "63", + "weight" : "51" + } + }, { + "alias_name" : "LIVEゲスト", + "alias_name_display" : "LIVEゲスト", + "event" : [ { + "event_id" : 401, + "event_name" : "新人アイドルプロデュース" + } ], + "hash" : "5f3df9ce0891daba5ad5462315bc6542", + "id" : "1402601", + "profile" : { + "bust" : "90", + "height" : "153", + "hip" : "89", + "waist" : "63", + "weight" : "51" + } + }, { + "alias_name" : "LIVEゲスト", + "alias_name_display" : "LIVEゲスト", + "event" : [ { + "event_id" : 401, + "event_name" : "新人アイドルプロデュース" + } ], + "hash" : "f055efc23fbee62b7f35ff7957efaf19", + "id" : "1502602", + "profile" : { + "bust" : "90", + "height" : "153", + "hip" : "89", + "waist" : "63", + "weight" : "51" + } + }, { + "alias_name" : "メルティスイート", + "alias_name_display" : "メルティスイート", + "hash" : "1af7bfaac9ee148dd2e9046e761a5430", + "id" : "1405401", + "profile" : { + "bust" : "90", + "height" : "153", + "hip" : "89", + "waist" : "63", + "weight" : "51" + } + }, { + "alias_name" : "メルティスイート", + "alias_name_display" : "メルティスイート", + "hash" : "9d95cb4e0a29f5df3d19ce03bab584a5", + "id" : "1505402", + "profile" : { + "bust" : "90", + "height" : "153", + "hip" : "89", + "waist" : "63", + "weight" : "51" + } + }, { + "alias_name" : "シンデレラドリーム", + "alias_name_display" : "シンデレラドリーム", + "hash" : "9be2474eed1f4bb918def97edd402d7b", + "id" : "1409101", + "profile" : { + "bust" : "90", + "height" : "153", + "hip" : "89", + "waist" : "63", + "weight" : "51" + } + }, { + "alias_name" : "シンデレラドリーム", + "alias_name_display" : "シンデレラドリーム", + "hash" : "67f12e31fbef152f316ccab074033751", + "id" : "1509102", + "profile" : { + "bust" : "90", + "height" : "153", + "hip" : "89", + "waist" : "63", + "weight" : "51" + } + }, { + "alias_name" : "LIVEゲスト・スマイル", + "alias_name_display" : "LIVEゲスト・スマイル", + "event" : [ { + "event_id" : 401, + "event_name" : "新人アイドルプロデュース" + } ], + "hash" : "885560563387d31c9c3df18f4acf5b65", + "id" : "1410901", + "profile" : { + "bust" : "90", + "height" : "153", + "hip" : "89", + "waist" : "63", + "weight" : "51" + } + }, { + "alias_name" : "LIVEゲスト・スマイル", + "alias_name_display" : "LIVEゲスト・スマイル", + "event" : [ { + "event_id" : 401, + "event_name" : "新人アイドルプロデュース" + } ], + "hash" : "70626858ff6676ee4f1eafbf6d52706f", + "id" : "1510902", + "profile" : { + "bust" : "90", + "height" : "153", + "hip" : "89", + "waist" : "63", + "weight" : "51" + } + }, { + "alias_name" : "ワンダフルマジック", + "alias_name_display" : "ワンダフルマジック", + "hash" : "1690e6ca3699ea1491a93ac6ad33f835", + "id" : "1412901", + "profile" : { + "bust" : "90", + "height" : "153", + "hip" : "89", + "waist" : "63", + "weight" : "51" + } + }, { + "alias_name" : "ワンダフルマジック", + "alias_name_display" : "ワンダフルマジック", + "hash" : "29c61e62f922a8da71ff6782d757b18e", + "id" : "1512902", + "profile" : { + "bust" : "90", + "height" : "153", + "hip" : "89", + "waist" : "63", + "weight" : "51" + } + }, { + "alias_name" : "桜色の華姫", + "alias_name_display" : "桜色の華姫", + "hash" : "28bcf7054852b0cc022339a29fbab508", + "id" : "1419601", + "profile" : { + "bust" : "90", + "height" : "153", + "hip" : "89", + "waist" : "63", + "weight" : "51" + } + }, { + "alias_name" : "桜色の華姫", + "alias_name_display" : "桜色の華姫", + "hash" : "b3b00bc958af646c2c96a1c9235117ff", + "id" : "1519602", + "profile" : { + "bust" : "90", + "height" : "153", + "hip" : "89", + "waist" : "63", + "weight" : "51" + } + }, { + "alias_name" : "キャンディアイランド", + "alias_name_display" : "キャンディアイランド", + "hash" : "672ec165dd3a8a5cdfbf40fafafe20aa", + "id" : "1523202", + "profile" : { + "bust" : "90", + "height" : "153", + "hip" : "89", + "waist" : "63", + "weight" : "51" + } + }, { + "alias_name" : "クリーミィトライフル", + "alias_name_display" : "クリーミィトライフル", + "hash" : "a7c2006bb177f730e7b13d57fb1b5665", + "id" : "1425301", + "profile" : { + "bust" : "90", + "height" : "153", + "hip" : "89", + "waist" : "63", + "weight" : "51" + } + }, { + "alias_name" : "クリーミィトライフル", + "alias_name_display" : "クリーミィトライフル", + "hash" : "a96314dfbb8bddd68b73adaff44f5261", + "id" : "1525302", + "profile" : { + "bust" : "90", + "height" : "153", + "hip" : "89", + "waist" : "63", + "weight" : "51" + } + }, { + "alias_name" : "メルティスノー", + "alias_name_display" : "メルティスノー", + "hash" : "b0cc22595859cf3a35cb7fad726acf0c", + "id" : "1430101", + "profile" : { + "bust" : "90", + "height" : "153", + "hip" : "89", + "waist" : "63", + "weight" : "51" + } + }, { + "alias_name" : "メルティスノー", + "alias_name_display" : "メルティスノー", + "hash" : "de08ee30102b9de8473d24f8cab704d1", + "id" : "1530102", + "profile" : { + "bust" : "90", + "height" : "153", + "hip" : "89", + "waist" : "63", + "weight" : "51" + } + }, { + "alias_name" : "スイートサマータイム", + "alias_name_display" : "スイートサマータイム", + "hash" : "a971864b897eb298bf98410917dcff59", + "id" : "1434501", + "profile" : { + "bust" : "90", + "height" : "153", + "hip" : "89", + "waist" : "63", + "weight" : "51" + } + }, { + "alias_name" : "スイートサマータイム", + "alias_name_display" : "スイートサマータイム", + "hash" : "c8c44f8080c9c5fe57633092232f5dee", + "id" : "1534502", + "profile" : { + "bust" : "90", + "height" : "153", + "hip" : "89", + "waist" : "63", + "weight" : "51" + } + } ], + "idol_id" : 8, + "idol_name" : "三村かな子", + "idol_name_display" : "三村かな子", + "units" : [ { + "id" : "11", + "name" : "かな☆かな☆ふぁんしー" + }, { + "id" : "25", + "name" : "スウィートラヴァーズ" + }, { + "id" : "107", + "name" : "ロッキングガール" + }, { + "id" : "137", + "name" : "CANDY ISLAND" + }, { + "id" : "173", + "name" : "ピンクドットバルーン" + }, { + "id" : "188", + "name" : "Sweetches" + }, { + "id" : "194", + "name" : "サクヤヒメ" + }, { + "id" : "213", + "name" : "CINDERELLA PROJECT" + } ] +}, { + "aliases" : [ { + "hash" : "2bc8b92d3444429e10e29e7fd056aaab", + "id" : "1000901", + "profile" : { + "bust" : "83", + "height" : "156", + "hip" : "81", + "waist" : "57", + "weight" : "47" + } + }, { + "hash" : "8617333c94b6505b0e39c62dbbd7239b", + "id" : "1100902", + "profile" : { + "bust" : "83", + "height" : "156", + "hip" : "81", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "浴衣祭り", + "alias_name_display" : "浴衣祭り", + "hash" : "12a84ee0f8802a28922bea40d190b1d3", + "id" : "1204901", + "profile" : { + "bust" : "83", + "height" : "156", + "hip" : "81", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "浴衣祭り", + "alias_name_display" : "浴衣祭り", + "hash" : "fd16eb68d5aa1b68d4301ade853b1b82", + "id" : "1304902", + "profile" : { + "bust" : "83", + "height" : "156", + "hip" : "81", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "ライラックガーリー", + "alias_name_display" : "ライラックガーリー", + "event" : [ { + "event_id" : 701, + "event_name" : "ドリームLIVEフェスティバル" + } ], + "hash" : "80334ec678333541b423f0cfe2c6b8a4", + "id" : "1210201", + "profile" : { + "bust" : "83", + "height" : "156", + "hip" : "81", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "ライラックガーリー", + "alias_name_display" : "ライラックガーリー", + "event" : [ { + "event_id" : 701, + "event_name" : "ドリームLIVEフェスティバル" + } ], + "hash" : "6bcc7d82ba156c52ffefe1389c7aa795", + "id" : "1310202", + "profile" : { + "bust" : "83", + "height" : "156", + "hip" : "81", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "学園の生徒", + "alias_name_display" : "学園の生徒", + "event" : [ { + "event_id" : 412, + "event_name" : "聖靴学園の七不思議" + } ], + "hash" : "e2e9a35d29f0513a02423cb6d7655557", + "id" : "1215701", + "profile" : { + "bust" : "83", + "height" : "156", + "hip" : "81", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "学園の生徒", + "alias_name_display" : "学園の生徒", + "event" : [ { + "event_id" : 412, + "event_name" : "聖靴学園の七不思議" + } ], + "hash" : "0cc148d8ef200b2482c77d0b249d682f", + "id" : "1315702", + "profile" : { + "bust" : "83", + "height" : "156", + "hip" : "81", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "学園の生徒・H", + "alias_name_display" : "学園の生徒・H", + "event" : [ { + "event_id" : 412, + "event_name" : "聖靴学園の七不思議" + } ], + "hash" : "2d5c37db9e10793884e2649a98d18af1", + "id" : "1215801", + "profile" : { + "bust" : "83", + "height" : "156", + "hip" : "81", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "学園の生徒・H", + "alias_name_display" : "学園の生徒・H", + "event" : [ { + "event_id" : 412, + "event_name" : "聖靴学園の七不思議" + } ], + "hash" : "50127e06e323eda201d204a8ec4ae63d", + "id" : "1315802", + "profile" : { + "bust" : "83", + "height" : "156", + "hip" : "81", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "T.B.チアーズ", + "alias_name_display" : "T.B.チアーズ", + "event" : [ { + "event_id" : 1502, + "event_name" : "チーム対抗雨の日トークバトルショー" + } ], + "hash" : "b3ef5644d3ea4f71b6c07f4b6ced0142", + "id" : "1222301", + "profile" : { + "bust" : "83", + "height" : "156", + "hip" : "81", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "T.B.チアーズ", + "alias_name_display" : "T.B.チアーズ", + "event" : [ { + "event_id" : 1502, + "event_name" : "チーム対抗雨の日トークバトルショー" + } ], + "hash" : "9d0e515e9a0f87f9fbf510d5db8972a0", + "id" : "1322302", + "profile" : { + "bust" : "83", + "height" : "156", + "hip" : "81", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "純朴ネズミ", + "alias_name_display" : "純朴ネズミ", + "event" : [ { + "event_id" : 1901, + "event_name" : "童話公演 気まぐれアリスと不思議の国" + } ], + "hash" : "cb38626d995af7e002dd35bb675d9094", + "id" : "1327002", + "profile" : { + "bust" : "83", + "height" : "156", + "hip" : "81", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "ブルーローゼス", + "alias_name_display" : "ブルーローゼス", + "event" : [ { + "event_id" : "031", + "event_name" : "第31回プロダクションマッチフェスティバル" + } ], + "hash" : "1d00a1b541167b75e92acf127b30351a", + "id" : "1229901", + "profile" : { + "bust" : "83", + "height" : "156", + "hip" : "81", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "ブルーローゼス", + "alias_name_display" : "ブルーローゼス", + "event" : [ { + "event_id" : "031", + "event_name" : "第31回プロダクションマッチフェスティバル" + } ], + "hash" : "499bcaf9ec86b7f1ebda4f6aff7b7815", + "id" : "1329902", + "profile" : { + "bust" : "83", + "height" : "156", + "hip" : "81", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "ポップスクリーン", + "alias_name_display" : "ポップスクリーン", + "event" : [ { + "event_id" : 729, + "event_name" : "ドリームLIVEフェスティバル ゴールデンウィークSP" + } ], + "hash" : "968454d2d888cba54601af388d0bd810", + "id" : "1232901", + "profile" : { + "bust" : "83", + "height" : "156", + "hip" : "81", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "ポップスクリーン", + "alias_name_display" : "ポップスクリーン", + "event" : [ { + "event_id" : 729, + "event_name" : "ドリームLIVEフェスティバル ゴールデンウィークSP" + } ], + "hash" : "5b7e98ea91e703b48b6f44353c1933f8", + "id" : "1332902", + "profile" : { + "bust" : "83", + "height" : "156", + "hip" : "81", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "ピュアリーガール", + "alias_name_display" : "ピュアリーガール", + "hash" : "48f052c21de4a7b3f2414314364ccc40", + "id" : "1409701", + "profile" : { + "bust" : "83", + "height" : "156", + "hip" : "81", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "ピュアリーガール", + "alias_name_display" : "ピュアリーガール", + "hash" : "ce5c146a7f092ebd7b118ec5ad736c7d", + "id" : "1509702", + "profile" : { + "bust" : "83", + "height" : "156", + "hip" : "81", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "ピュアリー・ロワイヤル", + "alias_name_display" : "ピュアリー・ロワイヤル", + "event" : [ { + "event_id" : 807, + "event_name" : "第7回アイドルLIVEロワイヤル" + } ], + "hash" : "a6f51bce5e094052da09c95b382edbc8", + "id" : "1419101", + "profile" : { + "bust" : "83", + "height" : "156", + "hip" : "81", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "ピュアリー・ロワイヤル", + "alias_name_display" : "ピュアリー・ロワイヤル", + "event" : [ { + "event_id" : 807, + "event_name" : "第7回アイドルLIVEロワイヤル" + } ], + "hash" : "33c1f059acc1311a5f74820b875be8ba", + "id" : "1519102", + "profile" : { + "bust" : "83", + "height" : "156", + "hip" : "81", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "イノセントアミューズ", + "alias_name_display" : "イノセントアミューズ", + "event" : [ { + "event_id" : 717, + "event_name" : "第17回ドリームLIVEフェスティバル" + } ], + "hash" : "f8fecd863bd847cb1a36312f50bca69c", + "id" : "1428601", + "profile" : { + "bust" : "83", + "height" : "156", + "hip" : "81", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "イノセントアミューズ", + "alias_name_display" : "イノセントアミューズ", + "event" : [ { + "event_id" : 717, + "event_name" : "第17回ドリームLIVEフェスティバル" + } ], + "hash" : "d5524d87d135dae077956ca332579a7e", + "id" : "1528602", + "profile" : { + "bust" : "83", + "height" : "156", + "hip" : "81", + "waist" : "57", + "weight" : "47" + } + } ], + "idol_id" : 9, + "idol_name" : "奥山沙織", + "idol_name_display" : "奥山沙織", + "units" : [ { + "id" : "49", + "name" : "ピュアリーツイン" + } ] +}, { + "aliases" : [ { + "hash" : "729dbe34998bc4505ec54c4a91d6274c", + "id" : "1001001", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "hash" : "6655d43d8c1acde40cdc1740c3096403", + "id" : "1101002", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "パジャマパーティー", + "alias_name_display" : "パジャマパーティー", + "hash" : "2f69d0c03220e324a6ef7c3a6f3cddd0", + "id" : "1204201", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "パジャマパーティー", + "alias_name_display" : "パジャマパーティー", + "hash" : "e57b36e27f8f7a01204a79a4d8556424", + "id" : "1304202", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "デビリッシュゴシック", + "alias_name_display" : "デビリッシュゴシック", + "hash" : "da37673cb29940724a44320a4eb5b9c7", + "id" : "1212501", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "デビリッシュゴシック", + "alias_name_display" : "デビリッシュゴシック", + "hash" : "43257fa67c9e153c2342a7a9b3f68570", + "id" : "1312502", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "スクールガール", + "alias_name_display" : "スクールガール", + "hash" : "fb5049ce7e308b41e7b7ff194b4d4c8c", + "id" : "1218701", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "スクールガール", + "alias_name_display" : "スクールガール", + "hash" : "5070ff91ff6e35dfd983aaa23d49c4f8", + "id" : "1318702", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ブライダルセレクション", + "alias_name_display" : "ブライダルセレクション", + "hash" : "9f456971110744b4582cdc908daff847", + "id" : "1224101", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ブライダルセレクション", + "alias_name_display" : "ブライダルセレクション", + "hash" : "789d621e2350e2918f7de22eaa885ce5", + "id" : "1324102", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ロワイヤルスタイルNP", + "alias_name_display" : "ロワイヤルスタイルNP", + "event" : [ { + "event_id" : 817, + "event_name" : "アイドルLIVEロワイヤル お花見SP" + } ], + "hash" : "239a7383564dda0b8581c60fd9e91d19", + "id" : "1227401", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ロワイヤルスタイルNP", + "alias_name_display" : "ロワイヤルスタイルNP", + "event" : [ { + "event_id" : 817, + "event_name" : "アイドルLIVEロワイヤル お花見SP" + } ], + "hash" : "a008d980b8fa78799cba20ca9ca26ba1", + "id" : "1327402", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "プリティー助手", + "alias_name_display" : "プリティー助手", + "event" : [ { + "event_id" : 1904, + "event_name" : "魔界公演 妖艶魔女と消えたハロウィン" + } ], + "hash" : "5910b23711ad9fad1d4b0422bdcb6e34", + "id" : "1330202", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "プリマヴェーラビアッジョ", + "alias_name_display" : "プリマヴェーラビアッジョ", + "event" : [ { + "event_id" : 503, + "event_name" : "アイドルLIVEツアーinイタリア" + } ], + "hash" : "98b0ed321a6ffcbd43865235bcddfeaf", + "id" : "1406001", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "プリマヴェーラビアッジョ", + "alias_name_display" : "プリマヴェーラビアッジョ", + "event" : [ { + "event_id" : 503, + "event_name" : "アイドルLIVEツアーinイタリア" + } ], + "hash" : "5a92ba70490bbfcc2beb6da09a4bfe49", + "id" : "1506002", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ホワイトピクシー", + "alias_name_display" : "ホワイトピクシー", + "event" : [ { + "event_id" : 1303, + "event_name" : "第3回プロダクションマッチフェスティバルS" + } ], + "hash" : "4e23cc6a906719f5abd9c071f6a951f3", + "id" : "1421501", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ホワイトピクシー", + "alias_name_display" : "ホワイトピクシー", + "event" : [ { + "event_id" : 1303, + "event_name" : "第3回プロダクションマッチフェスティバルS" + } ], + "hash" : "bd77e3aa1b781fed0b474a070e939eab", + "id" : "1521502", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + } ], + "idol_id" : 10, + "idol_name" : "間中美里", + "idol_name_display" : "間中美里", + "units" : [ { + "id" : "159", + "name" : "パステル・カクテル" + }, { + "id" : "193", + "name" : "イエローリリー" + }, { + "id" : "206", + "name" : "セクシーボンデージ" + }, { + "id" : "207", + "name" : "ムーランルージュ" + }, { + "id" : "209", + "name" : "ロワイヤルスタイルNP" + } ] +}, { + "aliases" : [ { + "hash" : "bef9093335fbcbe9e92a41d2d68a206d", + "id" : "1001101", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "86", + "waist" : "59", + "weight" : "42" + } + }, { + "hash" : "d25ce47acff65352ce0a24e20ff15178", + "id" : "1101102", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "86", + "waist" : "58", + "weight" : "42" + } + }, { + "alias_name" : "聖夜", + "alias_name_display" : "聖夜", + "event" : [ { + "event_id" : 101, + "event_name" : "星降るクリスマス" + } ], + "hash" : "4907a5097709ffb270d71d19a4535cee", + "id" : "1202001", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "86", + "waist" : "59", + "weight" : "42" + } + }, { + "alias_name" : "聖夜", + "alias_name_display" : "聖夜", + "event" : [ { + "event_id" : 101, + "event_name" : "星降るクリスマス" + } ], + "hash" : "892b6b0c9aa3f3edbf2ea1b05e3c70ea", + "id" : "1302002", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "86", + "waist" : "58", + "weight" : "42" + } + }, { + "alias_name" : "戦国姫", + "alias_name_display" : "戦国姫", + "hash" : "2d5bc0c5df458224606809495dc1afcd", + "id" : "1500902", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "86", + "waist" : "58", + "weight" : "42" + } + }, { + "alias_name" : "はにかみ乙女", + "alias_name_display" : "はにかみ乙女", + "hash" : "4f6605f1390ff27296abf8072f06d1a7", + "id" : "1402301", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "86", + "waist" : "59", + "weight" : "42" + } + }, { + "alias_name" : "はにかみ乙女", + "alias_name_display" : "はにかみ乙女", + "hash" : "d6ddb3065b0006be872bc532d29297ec", + "id" : "1502302", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "86", + "waist" : "59", + "weight" : "42" + } + }, { + "alias_name" : "聖夜のプレゼント", + "alias_name_display" : "聖夜のプレゼント", + "hash" : "94d3ea2fc6d661ab277e492432568e22", + "id" : "1404301", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "86", + "waist" : "59", + "weight" : "42" + } + }, { + "alias_name" : "聖夜のプレゼント", + "alias_name_display" : "聖夜のプレゼント", + "hash" : "02fb1d61edfcf0ab6ea439807a8ad914", + "id" : "1504302", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "86", + "waist" : "59", + "weight" : "42" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "255795031bff51e2289b75d660d2d292", + "id" : "1404801", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "86", + "waist" : "59", + "weight" : "42" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "2a0ba73e0e08299a21d28ac6f7512b1d", + "id" : "1504802", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "86", + "waist" : "59", + "weight" : "42" + } + }, { + "alias_name" : "ハロウィンうぃっち", + "alias_name_display" : "ハロウィンうぃっち", + "hash" : "4666ad388b7ba759654a7299eb302356", + "id" : "1409501", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "86", + "waist" : "59", + "weight" : "42" + } + }, { + "alias_name" : "ハロウィンうぃっち", + "alias_name_display" : "ハロウィンうぃっち", + "hash" : "d8acf685442132547a1c399fd9d342bc", + "id" : "1509502", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "86", + "waist" : "59", + "weight" : "42" + } + }, { + "alias_name" : "ワンダフルマジック", + "alias_name_display" : "ワンダフルマジック", + "hash" : "dfc136bcf818e927b74615613332e737", + "id" : "1413001", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "86", + "waist" : "59", + "weight" : "42" + } + }, { + "alias_name" : "ワンダフルマジック", + "alias_name_display" : "ワンダフルマジック", + "hash" : "136657fa4a63321ec624a82fb10e97a4", + "id" : "1513002", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "86", + "waist" : "59", + "weight" : "42" + } + }, { + "alias_name" : "3rdアニバーサリー", + "alias_name_display" : "3rdアニバーサリー", + "event" : [ { + "event_id" : 415, + "event_name" : "アイドルプロデュース the 3rd Anniversary" + } ], + "hash" : "8a42faefd560fa7d67825f9922b0a5c9", + "id" : "1420101", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "86", + "waist" : "59", + "weight" : "42" + } + }, { + "alias_name" : "3rdアニバーサリー", + "alias_name_display" : "3rdアニバーサリー", + "event" : [ { + "event_id" : 415, + "event_name" : "アイドルプロデュース the 3rd Anniversary" + } ], + "hash" : "086525ca98f96b889095348482203f98", + "id" : "1520102", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "86", + "waist" : "59", + "weight" : "42" + } + }, { + "alias_name" : "3rdアニバーサリー・S", + "alias_name_display" : "3rdアニバーサリー・S", + "event" : [ { + "event_id" : 415, + "event_name" : "アイドルプロデュース the 3rd Anniversary" + } ], + "hash" : "7a9aeb6c91fce6a201f9249503875b6e", + "id" : "1420201", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "86", + "waist" : "59", + "weight" : "42" + } + }, { + "alias_name" : "3rdアニバーサリー・S", + "alias_name_display" : "3rdアニバーサリー・S", + "event" : [ { + "event_id" : 415, + "event_name" : "アイドルプロデュース the 3rd Anniversary" + } ], + "hash" : "aa66da9ab10d44dc6b422f12befbfbb8", + "id" : "1520202", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "86", + "waist" : "59", + "weight" : "42" + } + }, { + "alias_name" : "プレシャスエモーション", + "alias_name_display" : "プレシャスエモーション", + "hash" : "b6c6287c284349785258a66ddf5cc487", + "id" : "1424201", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "86", + "waist" : "59", + "weight" : "42" + } + }, { + "alias_name" : "プレシャスエモーション", + "alias_name_display" : "プレシャスエモーション", + "hash" : "3166f21cb4b0a33660bc162146a7d129", + "id" : "1524202", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "86", + "waist" : "59", + "weight" : "42" + } + }, { + "alias_name" : "ホワイトニューイヤー", + "alias_name_display" : "ホワイトニューイヤー", + "hash" : "658b39b8d4cebd6c30cfc5e2d7dd04c6", + "id" : "1430401", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "86", + "waist" : "59", + "weight" : "42" + } + }, { + "alias_name" : "ホワイトニューイヤー", + "alias_name_display" : "ホワイトニューイヤー", + "hash" : "4b4e748d60b9a1b78aec215fb49c2227", + "id" : "1530402", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "86", + "waist" : "59", + "weight" : "42" + } + }, { + "alias_name" : "シンデレラドリーム", + "alias_name_display" : "シンデレラドリーム", + "hash" : "4b123c9565147d559a1900bc29cc143e", + "id" : "1433101", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "86", + "waist" : "59", + "weight" : "42" + } + }, { + "alias_name" : "シンデレラドリーム", + "alias_name_display" : "シンデレラドリーム", + "hash" : "06634f09752a3c79a39c537123cd9f95", + "id" : "1533102", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "86", + "waist" : "59", + "weight" : "42" + } + }, { + "alias_name" : "キープオンゴーイング", + "alias_name_display" : "キープオンゴーイング", + "hash" : "ed3895ce9f0156ac1a737b5f52c229e3", + "id" : "1436901", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "86", + "waist" : "59", + "weight" : "42" + } + }, { + "alias_name" : "キープオンゴーイング", + "alias_name_display" : "キープオンゴーイング", + "hash" : "319223e824af7aed34094925be62c94c", + "id" : "1536902", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "86", + "waist" : "59", + "weight" : "42" + } + }, { + "alias_name" : "つなげてドロップス", + "alias_name_display" : "つなげてドロップス", + "hash" : "9b6f3d979994b95c68ec9a6057ff9681", + "id" : "1440201", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "86", + "waist" : "59", + "weight" : "42" + } + }, { + "alias_name" : "つなげてドロップス", + "alias_name_display" : "つなげてドロップス", + "hash" : "6c7bab6998ae7b616fc1598308ba201b", + "id" : "1540202", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "86", + "waist" : "59", + "weight" : "42" + } + } ], + "idol_id" : 11, + "idol_name" : "小日向美穂", + "idol_name_display" : "小日向美穂", + "units" : [ { + "id" : "43", + "name" : "春色姫君" + }, { + "id" : "135", + "name" : "ピンキーキュート" + }, { + "id" : "138", + "name" : "ピンクチェックスクール" + }, { + "id" : "192", + "name" : "Masque:Rade" + }, { + "id" : "195", + "name" : "C5" + }, { + "id" : "212", + "name" : "CINDERELLA GIRLS" + } ] +}, { + "aliases" : [ { + "hash" : "e0ac4f8b1faf39c137d2bef65559b5f5", + "id" : "1001201", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "hash" : "fa69e322ed10a34ef9b35030d5250e4c", + "id" : "1101202", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "バレンタイン", + "alias_name_display" : "バレンタイン", + "event" : [ { + "event_id" : 103, + "event_name" : "バレンタインパーティー" + } ], + "hash" : "4c51173ad96349b44354060477ee821d", + "id" : "1202901", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "バレンタイン", + "alias_name_display" : "バレンタイン", + "event" : [ { + "event_id" : 103, + "event_name" : "バレンタインパーティー" + } ], + "hash" : "a1efe353a69781c9b79c3755f2f39ed4", + "id" : "1302902", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "パジャマパーティー", + "alias_name_display" : "パジャマパーティー", + "hash" : "76d8828c447915a4dc60fff5907a58a7", + "id" : "1204101", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "パジャマパーティー", + "alias_name_display" : "パジャマパーティー", + "hash" : "f6a64a87bff96b4a2e0f53edb6779af6", + "id" : "1304102", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "京町乙女", + "alias_name_display" : "京町乙女", + "event" : [ { + "event_id" : 402, + "event_name" : "アイドルプロデュース京町編" + } ], + "hash" : "1c4243ff6b135d3a6ad27e1fa4bb3a2c", + "id" : "1205901", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "京町乙女", + "alias_name_display" : "京町乙女", + "event" : [ { + "event_id" : 402, + "event_name" : "アイドルプロデュース京町編" + } ], + "hash" : "7b98a6c56f9eeb63d49689d3afa516e8", + "id" : "1305902", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "バレンタインエンジェル", + "alias_name_display" : "バレンタインエンジェル", + "hash" : "41da088536def062d420ebad260e37c2", + "id" : "1405001", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "バレンタインエンジェル", + "alias_name_display" : "バレンタインエンジェル", + "hash" : "56e0f5e7c766e4719720b824f51e5a55", + "id" : "1505002", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "浴衣の華姫", + "alias_name_display" : "浴衣の華姫", + "hash" : "5440e9e9c4cfbc57188213c0aff1639e", + "id" : "1407601", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "浴衣の華姫", + "alias_name_display" : "浴衣の華姫", + "hash" : "56b9e10a10d166583011ef60a58a9c82", + "id" : "1507602", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "e0bc2a1ae04cb1a3e0045ece2eb6935f", + "id" : "1410301", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "da5e0614a354a5c21a1afc915a91ba97", + "id" : "1510302", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "冬のメロディー", + "alias_name_display" : "冬のメロディー", + "hash" : "80d79214f75af36736b7bd2e55a76cc2", + "id" : "1410701", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "冬のメロディー", + "alias_name_display" : "冬のメロディー", + "hash" : "f3a4a141eb2c9ec791d984c1655ed24d", + "id" : "1510702", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "クローバーエンジェル", + "alias_name_display" : "クローバーエンジェル", + "event" : [ { + "event_id" : 706, + "event_name" : "第6回ドリームLIVEフェスティバル" + } ], + "hash" : "f9c770b61a35768542faa7ef959070e6", + "id" : "1413301", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "クローバーエンジェル", + "alias_name_display" : "クローバーエンジェル", + "event" : [ { + "event_id" : 706, + "event_name" : "第6回ドリームLIVEフェスティバル" + } ], + "hash" : "265938c96a3a1d74ccbc5cc7577fa546", + "id" : "1513302", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ふわふわうさぎ", + "alias_name_display" : "ふわふわうさぎ", + "hash" : "cdf131bfe5c184dbc3decfc85773a8fa", + "id" : "1417901", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ふわふわうさぎ", + "alias_name_display" : "ふわふわうさぎ", + "hash" : "5bc43718ce56eb04476f0e60a08eca4f", + "id" : "1517902", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ブライダルエンジェル", + "alias_name_display" : "ブライダルエンジェル", + "hash" : "fbf203c786aef175dc76a2aa8227a5d9", + "id" : "1424801", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ブライダルエンジェル", + "alias_name_display" : "ブライダルエンジェル", + "hash" : "fc04f9389656bde489e65ae8d36e6a2e", + "id" : "1524802", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "キャンディアイランド", + "alias_name_display" : "キャンディアイランド", + "hash" : "93dfb2c011a794668c1653f097a4b464", + "id" : "1526002", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "はじめての太鼓", + "alias_name_display" : "はじめての太鼓", + "hash" : "61f90183b1e6c59133ec8c0ae4d3f2cd", + "id" : "1528002", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "G4U!", + "alias_name_display" : "G4U!", + "hash" : "f32aa981899a3e4f8367b6346e59e8c8", + "id" : "1530902", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ハピネスチューン", + "alias_name_display" : "ハピネスチューン", + "hash" : "7b2d41d513acc6f434bc29bacca28529", + "id" : "1431501", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ハピネスチューン", + "alias_name_display" : "ハピネスチューン", + "hash" : "7881ef1cb6cf776ed071272ca3dbf5e7", + "id" : "1531502", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "スクールデイズ", + "alias_name_display" : "スクールデイズ", + "hash" : "277f54caf12509c27e2a04db25fb43c1", + "id" : "1435801", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "スクールデイズ", + "alias_name_display" : "スクールデイズ", + "hash" : "89d14a4ef29eabee5f88b05e4c133846", + "id" : "1535802", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "シンデレラドリーム", + "alias_name_display" : "シンデレラドリーム", + "hash" : "986579406645926e00ee0cf4857fb25d", + "id" : "1439201", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "シンデレラドリーム", + "alias_name_display" : "シンデレラドリーム", + "hash" : "aab77d68d6c72c73efda675edbd387a8", + "id" : "1539202", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + } ], + "idol_id" : 12, + "idol_name" : "緒方智絵里", + "idol_name_display" : "緒方智絵里", + "units" : [ { + "id" : "91", + "name" : "京町乙女" + }, { + "id" : "94", + "name" : "シャイニングゴッドチェリー" + }, { + "id" : "135", + "name" : "ピンキーキュート" + }, { + "id" : "137", + "name" : "CANDY ISLAND" + }, { + "id" : "139", + "name" : "397cherry" + }, { + "id" : "173", + "name" : "ピンクドットバルーン" + }, { + "id" : "192", + "name" : "Masque:Rade" + }, { + "id" : "194", + "name" : "サクヤヒメ" + }, { + "id" : "213", + "name" : "CINDERELLA PROJECT" + } ] +}, { + "aliases" : [ { + "hash" : "fb3b173c49703071b4dbdd5ed424640c", + "id" : "1001301", + "profile" : { + "bust" : "81", + "height" : "154", + "hip" : "80", + "waist" : "58", + "weight" : "43" + } + }, { + "hash" : "9e15861e6115bffdcce4d7115522857b", + "id" : "1101302", + "profile" : { + "bust" : "81", + "height" : "154", + "hip" : "80", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "ジューンブライド", + "alias_name_display" : "ジューンブライド", + "event" : [ { + "event_id" : 105, + "event_name" : "きらめくブライダルショー" + } ], + "hash" : "fc3e9297dd790e8cf196c3aad44ac280", + "id" : "1002101", + "profile" : { + "bust" : "81", + "height" : "154", + "hip" : "80", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "ジューンブライド", + "alias_name_display" : "ジューンブライド", + "event" : [ { + "event_id" : 105, + "event_name" : "きらめくブライダルショー" + } ], + "hash" : "9f990b2be46d9594ff3fb547b07974de", + "id" : "1102102", + "profile" : { + "bust" : "81", + "height" : "154", + "hip" : "80", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "マーメイドパラダイス", + "alias_name_display" : "マーメイドパラダイス", + "hash" : "2e581f1e6d6efc823c7c50f727df3515", + "id" : "1205201", + "profile" : { + "bust" : "81", + "height" : "154", + "hip" : "80", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "マーメイドパラダイス", + "alias_name_display" : "マーメイドパラダイス", + "hash" : "d5667b3d3207d1cb3d7655fa13b969fd", + "id" : "1305202", + "profile" : { + "bust" : "81", + "height" : "154", + "hip" : "80", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "ラブリーデイズ", + "alias_name_display" : "ラブリーデイズ", + "hash" : "5f46af2a7cfc01c41a697f621c12a8fb", + "id" : "1221701", + "profile" : { + "bust" : "81", + "height" : "154", + "hip" : "80", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "ラブリーデイズ", + "alias_name_display" : "ラブリーデイズ", + "hash" : "a49399e42faba8f22952e1fbb066fdce", + "id" : "1321702", + "profile" : { + "bust" : "81", + "height" : "154", + "hip" : "80", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "タラン・サリュ", + "alias_name_display" : "タラン・サリュ", + "hash" : "804fbc1bb11314fb878793df312736c6", + "id" : "1229601", + "profile" : { + "bust" : "81", + "height" : "154", + "hip" : "80", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "タラン・サリュ", + "alias_name_display" : "タラン・サリュ", + "hash" : "49050a377ed2b834ec13a980739f1430", + "id" : "1329602", + "profile" : { + "bust" : "81", + "height" : "154", + "hip" : "80", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "スイートクリスマス", + "alias_name_display" : "スイートクリスマス", + "hash" : "93ac99834f1bd8a4900266cee4fe87a3", + "id" : "1404001", + "profile" : { + "bust" : "81", + "height" : "154", + "hip" : "80", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "スイートクリスマス", + "alias_name_display" : "スイートクリスマス", + "hash" : "3060e7a4d2ecc75ca60ec384e40eaa6f", + "id" : "1504002", + "profile" : { + "bust" : "81", + "height" : "154", + "hip" : "80", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "カラフルレインボー", + "alias_name_display" : "カラフルレインボー", + "event" : [ { + "event_id" : 407, + "event_name" : "アイドルプロデュース 鎌倉あじさい巡り" + } ], + "hash" : "aa88b658b8901cf3bb0af315c145248e", + "id" : "1407001", + "profile" : { + "bust" : "81", + "height" : "154", + "hip" : "80", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "カラフルレインボー", + "alias_name_display" : "カラフルレインボー", + "event" : [ { + "event_id" : 407, + "event_name" : "アイドルプロデュース 鎌倉あじさい巡り" + } ], + "hash" : "17159c03d3380ca6670329df4722b3e4", + "id" : "1507002", + "profile" : { + "bust" : "81", + "height" : "154", + "hip" : "80", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "ハートフルサービス", + "alias_name_display" : "ハートフルサービス", + "hash" : "82977bbfbadf655998e449ebaa3f6b35", + "id" : "1411101", + "profile" : { + "bust" : "81", + "height" : "154", + "hip" : "80", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "ハートフルサービス", + "alias_name_display" : "ハートフルサービス", + "hash" : "973864636042aaedda0574601c8f2915", + "id" : "1511102", + "profile" : { + "bust" : "81", + "height" : "154", + "hip" : "80", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "学園の秘密", + "alias_name_display" : "学園の秘密", + "event" : [ { + "event_id" : 412, + "event_name" : "聖靴学園の七不思議" + } ], + "hash" : "486dd74101ffb18ea9e915e62a56e5a4", + "id" : "1414201", + "profile" : { + "bust" : "81", + "height" : "154", + "hip" : "80", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "学園の秘密", + "alias_name_display" : "学園の秘密", + "event" : [ { + "event_id" : 412, + "event_name" : "聖靴学園の七不思議" + } ], + "hash" : "e1e37fcbbe67e706cb0bb336f9d972c5", + "id" : "1514202", + "profile" : { + "bust" : "81", + "height" : "154", + "hip" : "80", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "学園の秘密・S", + "alias_name_display" : "学園の秘密・S", + "event" : [ { + "event_id" : 412, + "event_name" : "聖靴学園の七不思議" + } ], + "hash" : "4aa2c8c878931a167d1a1d87a70442e4", + "id" : "1414301", + "profile" : { + "bust" : "81", + "height" : "154", + "hip" : "80", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "学園の秘密・S", + "alias_name_display" : "学園の秘密・S", + "event" : [ { + "event_id" : 412, + "event_name" : "聖靴学園の七不思議" + } ], + "hash" : "04fc73953bac772e2030c32bd86e66a2", + "id" : "1514302", + "profile" : { + "bust" : "81", + "height" : "154", + "hip" : "80", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "ホームメイドハッピー", + "alias_name_display" : "ホームメイドハッピー", + "event" : [ { + "event_id" : 708, + "event_name" : "第8回ドリームLIVEフェスティバル" + } ], + "hash" : "da958ba98f8b7ff456eabc29c82648a5", + "id" : "1417801", + "profile" : { + "bust" : "81", + "height" : "154", + "hip" : "80", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "ホームメイドハッピー", + "alias_name_display" : "ホームメイドハッピー", + "event" : [ { + "event_id" : 708, + "event_name" : "第8回ドリームLIVEフェスティバル" + } ], + "hash" : "2b63366b029c03f89a8d9d08ed27a091", + "id" : "1517802", + "profile" : { + "bust" : "81", + "height" : "154", + "hip" : "80", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "ウィンターホリデーリゾート", + "alias_name_display" : "ウィンターホリデーリゾート", + "hash" : "eea0ece9a3e1f4abc11b3c0314a1c3df", + "id" : "1421701", + "profile" : { + "bust" : "81", + "height" : "154", + "hip" : "80", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "ウィンターホリデーリゾート", + "alias_name_display" : "ウィンターホリデーリゾート", + "hash" : "a21cdf41a5909ce5afd832ee49a95cb5", + "id" : "1521702", + "profile" : { + "bust" : "81", + "height" : "154", + "hip" : "80", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "サマーメモリー", + "alias_name_display" : "サマーメモリー", + "event" : [ { + "event_id" : 1304, + "event_name" : "第4回プロダクションマッチフェスティバルS" + } ], + "hash" : "fe4522316252c03ecf070a4ce8006420", + "id" : "1426101", + "profile" : { + "bust" : "81", + "height" : "154", + "hip" : "80", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "サマーメモリー", + "alias_name_display" : "サマーメモリー", + "event" : [ { + "event_id" : 1304, + "event_name" : "第4回プロダクションマッチフェスティバルS" + } ], + "hash" : "a9e1539ebecc3f6a7bd92247238517cb", + "id" : "1526102", + "profile" : { + "bust" : "81", + "height" : "154", + "hip" : "80", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "ハートキャプチャー", + "alias_name_display" : "ハートキャプチャー", + "hash" : "182d6a7355ec611af924f02f27c3b5cf", + "id" : "1431301", + "profile" : { + "bust" : "81", + "height" : "154", + "hip" : "80", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "ハートキャプチャー", + "alias_name_display" : "ハートキャプチャー", + "hash" : "198beec37ee1f0cf59423f1f5e674ce4", + "id" : "1531302", + "profile" : { + "bust" : "81", + "height" : "154", + "hip" : "80", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "42207079abfb5d0aae516e2774f5683c", + "id" : "1431701", + "profile" : { + "bust" : "81", + "height" : "154", + "hip" : "80", + "waist" : "58", + "weight" : "43" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "deb87e553eab1a1d04036d340c632d0c", + "id" : "1531702", + "profile" : { + "bust" : "81", + "height" : "154", + "hip" : "80", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "ハートオブユニティ", + "alias_name_display" : "ハートオブユニティ", + "event" : [ { + "event_id" : 1905, + "event_name" : "ディアリースターナイト ~聖夜のキセキ~" + } ], + "hash" : "ef73d6963acf01c99f2b7e304c1f603c", + "id" : "1437101", + "profile" : { + "bust" : "81", + "height" : "154", + "hip" : "80", + "waist" : "58", + "weight" : "43" + } + }, { + "alias_name" : "ハートオブユニティ", + "alias_name_display" : "ハートオブユニティ", + "event" : [ { + "event_id" : 1905, + "event_name" : "ディアリースターナイト ~聖夜のキセキ~" + } ], + "hash" : "0bacaa88e323666ac8790a16a2ac46ee", + "id" : "1537102", + "profile" : { + "bust" : "81", + "height" : "154", + "hip" : "80", + "waist" : "57", + "weight" : "43" + } + } ], + "idol_id" : 13, + "idol_name" : "五十嵐響子", + "idol_name_display" : "五十嵐響子", + "units" : [ { + "id" : "40", + "name" : "ハートハーモナイズ" + }, { + "id" : "138", + "name" : "ピンクチェックスクール" + }, { + "id" : "182", + "name" : "マーメイドパラダイス" + }, { + "id" : "191", + "name" : "Love Yell" + }, { + "id" : "196", + "name" : "la Roseraie" + } ] +}, { + "aliases" : [ { + "hash" : "64b53f490afd702be31de96b5ae28e36", + "id" : "1001401", + "profile" : { + "bust" : "75", + "height" : "144", + "hip" : "77", + "waist" : "54", + "weight" : "33" + } + }, { + "hash" : "1b1970e02f5855b63072777bcbb52293", + "id" : "1101402", + "profile" : { + "bust" : "75", + "height" : "144", + "hip" : "77", + "waist" : "54", + "weight" : "33" + } + }, { + "alias_name" : "テーマパーク", + "alias_name_display" : "テーマパーク", + "event" : [ { + "event_id" : 203, + "event_name" : "アイドルサバイバルinテーマパーク" + } ], + "hash" : "9561157dddcfefb3edfcf2965e025edc", + "id" : "1203901", + "profile" : { + "bust" : "75", + "height" : "144", + "hip" : "77", + "waist" : "54", + "weight" : "33" + } + }, { + "alias_name" : "テーマパーク", + "alias_name_display" : "テーマパーク", + "event" : [ { + "event_id" : 203, + "event_name" : "アイドルサバイバルinテーマパーク" + } ], + "hash" : "b76617a1099b216004254eeeaee57846", + "id" : "1303902", + "profile" : { + "bust" : "75", + "height" : "144", + "hip" : "77", + "waist" : "54", + "weight" : "33" + } + }, { + "alias_name" : "プリティ☆ウィッチ", + "alias_name_display" : "プリティ☆ウィッチ", + "hash" : "6a7eca54ae5c7fa44e5a6af92f3ae135", + "id" : "1208701", + "profile" : { + "bust" : "75", + "height" : "144", + "hip" : "77", + "waist" : "54", + "weight" : "33" + } + }, { + "alias_name" : "プリティ☆ウィッチ", + "alias_name_display" : "プリティ☆ウィッチ", + "hash" : "727ec3b14e0bede0acfde0c345314419", + "id" : "1308702", + "profile" : { + "bust" : "75", + "height" : "144", + "hip" : "77", + "waist" : "54", + "weight" : "33" + } + }, { + "alias_name" : "ひな祭り", + "alias_name_display" : "ひな祭り", + "event" : [ { + "event_id" : 510, + "event_name" : "ひな祭りLIVEツアーカーニバル" + } ], + "hash" : "d85836d7aa213eeaa97637ced5f4c905", + "id" : "1214901", + "profile" : { + "bust" : "75", + "height" : "144", + "hip" : "77", + "waist" : "54", + "weight" : "33" + } + }, { + "alias_name" : "ひな祭り", + "alias_name_display" : "ひな祭り", + "event" : [ { + "event_id" : 510, + "event_name" : "ひな祭りLIVEツアーカーニバル" + } ], + "hash" : "3f10e5b72b8ec50b7d0661ed47518e05", + "id" : "1314902", + "profile" : { + "bust" : "75", + "height" : "144", + "hip" : "77", + "waist" : "54", + "weight" : "33" + } + }, { + "alias_name" : "カニ☆ピース", + "alias_name_display" : "カニ☆ピース", + "event" : [ { + "event_id" : 1302, + "event_name" : "第2回プロダクションマッチフェスティバルS" + } ], + "hash" : "bc8c093931062396a2f92c167729fe61", + "id" : "1218901", + "profile" : { + "bust" : "75", + "height" : "144", + "hip" : "77", + "waist" : "54", + "weight" : "33" + } + }, { + "alias_name" : "カニ☆ピース", + "alias_name_display" : "カニ☆ピース", + "event" : [ { + "event_id" : 1302, + "event_name" : "第2回プロダクションマッチフェスティバルS" + } ], + "hash" : "8cde5ff1e02d37e807792a6423c9537d", + "id" : "1318902", + "profile" : { + "bust" : "75", + "height" : "144", + "hip" : "77", + "waist" : "54", + "weight" : "33" + } + }, { + "alias_name" : "マーチングバンド", + "alias_name_display" : "マーチングバンド", + "hash" : "81dacc4c39b0dc0b7e01c2b8e7e04887", + "id" : "1223601", + "profile" : { + "bust" : "75", + "height" : "144", + "hip" : "77", + "waist" : "54", + "weight" : "33" + } + }, { + "alias_name" : "マーチングバンド", + "alias_name_display" : "マーチングバンド", + "hash" : "a2b97d98b0f9ce2deec5a0e7cd0b8bc6", + "id" : "1323602", + "profile" : { + "bust" : "75", + "height" : "144", + "hip" : "77", + "waist" : "54", + "weight" : "33" + } + }, { + "alias_name" : "ビターミルキー", + "alias_name_display" : "ビターミルキー", + "hash" : "9df9b80b17154f73174f72929415acdd", + "id" : "1228501", + "profile" : { + "bust" : "75", + "height" : "144", + "hip" : "77", + "waist" : "54", + "weight" : "33" + } + }, { + "alias_name" : "ビターミルキー", + "alias_name_display" : "ビターミルキー", + "hash" : "326c2f9e2f203f305f9436112b522034", + "id" : "1328502", + "profile" : { + "bust" : "75", + "height" : "144", + "hip" : "77", + "waist" : "54", + "weight" : "33" + } + }, { + "alias_name" : "ロワイヤルスタイルND", + "alias_name_display" : "ロワイヤルスタイルND", + "event" : [ { + "event_id" : 820, + "event_name" : "第20回アイドルLIVEロワイヤル" + } ], + "hash" : "8ec6cfce021cf00090bec4fca426fe41", + "id" : "1230801", + "profile" : { + "bust" : "75", + "height" : "144", + "hip" : "77", + "waist" : "54", + "weight" : "33" + } + }, { + "alias_name" : "ロワイヤルスタイルND", + "alias_name_display" : "ロワイヤルスタイルND", + "event" : [ { + "event_id" : 820, + "event_name" : "第20回アイドルLIVEロワイヤル" + } ], + "hash" : "a6c7fd38a0f375a571248af4be5f7302", + "id" : "1330802", + "profile" : { + "bust" : "75", + "height" : "144", + "hip" : "77", + "waist" : "54", + "weight" : "33" + } + }, { + "alias_name" : "キラキラリコメンド", + "alias_name_display" : "キラキラリコメンド", + "hash" : "a56a124013e06a0399fd43f5612bae90", + "id" : "1233401", + "profile" : { + "bust" : "75", + "height" : "144", + "hip" : "77", + "waist" : "54", + "weight" : "33" + } + }, { + "alias_name" : "キラキラリコメンド", + "alias_name_display" : "キラキラリコメンド", + "hash" : "face73d591e33ea649dfb00040334ed8", + "id" : "1333402", + "profile" : { + "bust" : "75", + "height" : "144", + "hip" : "77", + "waist" : "54", + "weight" : "33" + } + }, { + "alias_name" : "夏色ガール", + "alias_name_display" : "夏色ガール", + "event" : [ { + "event_id" : 702, + "event_name" : "水着DEドリームLIVEフェスティバル" + } ], + "hash" : "6a9e56a14c98a683a788a243c107c5be", + "id" : "1408401", + "profile" : { + "bust" : "75", + "height" : "144", + "hip" : "77", + "waist" : "54", + "weight" : "33" + } + }, { + "alias_name" : "夏色ガール", + "alias_name_display" : "夏色ガール", + "event" : [ { + "event_id" : 702, + "event_name" : "水着DEドリームLIVEフェスティバル" + } ], + "hash" : "58176ddb838cc778720e4e3a388815ef", + "id" : "1508402", + "profile" : { + "bust" : "75", + "height" : "144", + "hip" : "77", + "waist" : "54", + "weight" : "33" + } + }, { + "alias_name" : "かわいいコックさん", + "alias_name_display" : "かわいいコックさん", + "event" : [ { + "event_id" : 519, + "event_name" : "美食公演 女神に捧ぐ御馳走" + } ], + "hash" : "ae0a204566199c5837bebf8fdd6173e7", + "id" : "1424301", + "profile" : { + "bust" : "75", + "height" : "144", + "hip" : "77", + "waist" : "54", + "weight" : "33" + } + }, { + "alias_name" : "かわいいコックさん", + "alias_name_display" : "かわいいコックさん", + "event" : [ { + "event_id" : 519, + "event_name" : "美食公演 女神に捧ぐ御馳走" + } ], + "hash" : "12c2c842a331db791b909c0003a105ba", + "id" : "1524302", + "profile" : { + "bust" : "75", + "height" : "144", + "hip" : "77", + "waist" : "54", + "weight" : "33" + } + } ], + "idol_id" : 14, + "idol_name" : "柳瀬美由紀", + "idol_name_display" : "柳瀬美由紀", + "units" : [ { + "id" : "173", + "name" : "ピンクドットバルーン" + }, { + "id" : "178", + "name" : "からぱれ" + }, { + "id" : "210", + "name" : "ロワイヤルスタイルND" + }, { + "id" : "214", + "name" : "L.M.B.G" + } ] +}, { + "aliases" : [ { + "event" : [ { + "event_id" : 101, + "event_name" : "星降るクリスマス" + } ], + "hash" : "1cefdef7df7c14eca803910b67e61dfc", + "id" : "1001501", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "event" : [ { + "event_id" : 101, + "event_name" : "星降るクリスマス" + } ], + "hash" : "fe2f3ecbf682014be99d3f94512a48bd", + "id" : "1101502", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "メルヘン&ゴシック", + "alias_name_display" : "メルヘン&ゴシック", + "hash" : "2b676cf6e1bd042f04a6e8367ac47fdd", + "id" : "1208201", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "メルヘン&ゴシック", + "alias_name_display" : "メルヘン&ゴシック", + "hash" : "21d48ab7d98d5800c7a8db34c89842cd", + "id" : "1308202", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "迎春神楽", + "alias_name_display" : "迎春神楽", + "hash" : "eb1d6cdcf74fa0b5467bb4479fbcb819", + "id" : "1231401", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "迎春神楽", + "alias_name_display" : "迎春神楽", + "hash" : "68e199a73566867818bddc1cea19666e", + "id" : "1331402", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "薔薇色お姫様", + "alias_name_display" : "薔薇色お姫様", + "event" : [ { + "event_id" : "001", + "event_name" : "プロダクションマッチフェスティバル" + } ], + "hash" : "9e47b6134fcc68ce03f1e646032535f6", + "id" : "1401101", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "薔薇色お姫様", + "alias_name_display" : "薔薇色お姫様", + "event" : [ { + "event_id" : "001", + "event_name" : "プロダクションマッチフェスティバル" + } ], + "hash" : "188588430665ce152a5da1c7bef37766", + "id" : "1501102", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "絢爛紅葉", + "alias_name_display" : "絢爛紅葉", + "event" : [ { + "event_id" : 402, + "event_name" : "アイドルプロデュース京町編" + } ], + "hash" : "0f6309b3a564f81155784e21c8c92bfe", + "id" : "1403101", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "絢爛紅葉", + "alias_name_display" : "絢爛紅葉", + "event" : [ { + "event_id" : 402, + "event_name" : "アイドルプロデュース京町編" + } ], + "hash" : "eebd6e6b152f50a6c3bc18fabb54a0a0", + "id" : "1503102", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "薔薇色花嫁", + "alias_name_display" : "薔薇色花嫁", + "hash" : "fe8cd968bd4ee6c8beaa758e650eee5d", + "id" : "1407101", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "薔薇色花嫁", + "alias_name_display" : "薔薇色花嫁", + "hash" : "d31209b053eb49962fdea278ece7e26b", + "id" : "1507102", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "ロゼ・マドモアゼル", + "alias_name_display" : "ロゼ・マドモアゼル", + "hash" : "b7284bd572e970f7140cef7484d47e4e", + "id" : "1414801", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "ロゼ・マドモアゼル", + "alias_name_display" : "ロゼ・マドモアゼル", + "hash" : "fd5714748c23dee73f43176c8bd71f29", + "id" : "1514802", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "バレンタインスウィート", + "alias_name_display" : "バレンタインスウィート", + "hash" : "1db672f026cfc1e8a82037549477dccf", + "id" : "1421901", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "バレンタインスウィート", + "alias_name_display" : "バレンタインスウィート", + "hash" : "81fc62c6d3dc7b6dd9ae05f2c9df4d31", + "id" : "1521902", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "オープンハート", + "alias_name_display" : "オープンハート", + "event" : [ { + "event_id" : 715, + "event_name" : "第15回ドリームLIVEフェスティバル" + } ], + "hash" : "287d93a6b5dcebe0774cc8dead51c237", + "id" : "1427101", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "オープンハート", + "alias_name_display" : "オープンハート", + "event" : [ { + "event_id" : 715, + "event_name" : "第15回ドリームLIVEフェスティバル" + } ], + "hash" : "45e1c5533ba0e0a103511f58ee17f850", + "id" : "1527102", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "77155375be053699373b3e7271072d5b", + "id" : "1429201", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "ffc736f0dd52509c5bc4724e6829d693", + "id" : "1529202", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "4thアニバーサリー", + "alias_name_display" : "4thアニバーサリー", + "event" : [ { + "event_id" : 1704, + "event_name" : "アイドルプロデュース the 4th Anniversary" + } ], + "hash" : "7ec7a2ad5161e9618958f951fd4752e4", + "id" : "1429601", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "4thアニバーサリー", + "alias_name_display" : "4thアニバーサリー", + "event" : [ { + "event_id" : 1704, + "event_name" : "アイドルプロデュース the 4th Anniversary" + } ], + "hash" : "940e4561030b7cb18e6f6f1d612618b7", + "id" : "1529602", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "4thアニバーサリー・S", + "alias_name_display" : "4thアニバーサリー・S", + "event" : [ { + "event_id" : 1704, + "event_name" : "アイドルプロデュース the 4th Anniversary" + } ], + "hash" : "555df2682110f80cc57e2a745e812661", + "id" : "1429701", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "4thアニバーサリー・S", + "alias_name_display" : "4thアニバーサリー・S", + "event" : [ { + "event_id" : 1704, + "event_name" : "アイドルプロデュース the 4th Anniversary" + } ], + "hash" : "ee70a56e781ee96f461da009805f49a8", + "id" : "1529702", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "サマーマドモアゼル", + "alias_name_display" : "サマーマドモアゼル", + "hash" : "f78ca58df1e12f7fdbed9f567a9dfdc0", + "id" : "1433801", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "サマーマドモアゼル", + "alias_name_display" : "サマーマドモアゼル", + "hash" : "d32d219a3c0ad6dc84734d1fc3f9f94e", + "id" : "1533802", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + } ], + "idol_id" : 15, + "idol_name" : "櫻井桃華", + "idol_name_display" : "櫻井桃華", + "units" : [ { + "id" : "4", + "name" : "イカバラプリンセス" + }, { + "id" : "61", + "name" : "ももべりー" + }, { + "id" : "104", + "name" : "ももぺあべりー" + }, { + "id" : "105", + "name" : "リトルチェリーブロッサム" + }, { + "id" : "165", + "name" : "メルヘンゴシック" + }, { + "id" : "171", + "name" : "Black/White-Roses" + }, { + "id" : "196", + "name" : "la Roseraie" + }, { + "id" : "214", + "name" : "L.M.B.G" + } ] +}, { + "aliases" : [ { + "event" : [ { + "event_id" : 102, + "event_name" : "アイドルおもちつき大会" + } ], + "hash" : "1b52629f3463de549e9e776fb9be9c73", + "id" : "1001601", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "46" + } + }, { + "event" : [ { + "event_id" : 102, + "event_name" : "アイドルおもちつき大会" + } ], + "hash" : "209c74c920b04b6aa1c88f2ae810c0ab", + "id" : "1101602", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "新春コレクション", + "alias_name_display" : "新春コレクション", + "hash" : "ae6475b68a873a19cbf2008ac66d2c12", + "id" : "1207101", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "新春コレクション", + "alias_name_display" : "新春コレクション", + "hash" : "f172e8d5a8a50a8cecf29d9e939b015d", + "id" : "1307102", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ハッピーメモリアル", + "alias_name_display" : "ハッピーメモリアル", + "hash" : "40aa9ec43d952fd28e1cce41237b5622", + "id" : "1211501", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ハッピーメモリアル", + "alias_name_display" : "ハッピーメモリアル", + "hash" : "664c40149a8f2c88ea211c5e7ccc5857", + "id" : "1311502", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "秋色温泉", + "alias_name_display" : "秋色温泉", + "hash" : "5a01b67ab301b1c982c5fc6c2bb3bb01", + "id" : "1219101", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "秋色温泉", + "alias_name_display" : "秋色温泉", + "hash" : "b0bf971f90f59c9cfc79b6a166fe6aed", + "id" : "1319102", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "シャイニーカーマイン", + "alias_name_display" : "シャイニーカーマイン", + "event" : [ { + "event_id" : 716, + "event_name" : "第16回ドリームLIVEフェスティバル" + } ], + "hash" : "5d97a337e5c70a470e14a590a104ebed", + "id" : "1323802", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "リレイトストーリー", + "alias_name_display" : "リレイトストーリー", + "event" : [ { + "event_id" : "033", + "event_name" : "第33回プロダクションマッチフェスティバル" + } ], + "hash" : "0627d85acc8c4c074c16f85e2e638446", + "id" : "1231701", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "リレイトストーリー", + "alias_name_display" : "リレイトストーリー", + "event" : [ { + "event_id" : "033", + "event_name" : "第33回プロダクションマッチフェスティバル" + } ], + "hash" : "3875503a08289671c8354eed6119eff3", + "id" : "1331702", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ゆかしい花椿", + "alias_name_display" : "ゆかしい花椿", + "hash" : "b8f040ade84d43170ba0ef6b2cde9e5a", + "id" : "1412601", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ゆかしい花椿", + "alias_name_display" : "ゆかしい花椿", + "hash" : "92b7a6ffc4084d14ed6af4dc45b41c92", + "id" : "1512602", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "カメリア・ロワイヤル", + "alias_name_display" : "カメリア・ロワイヤル", + "event" : [ { + "event_id" : 812, + "event_name" : "第12回アイドルLIVEロワイヤル" + } ], + "hash" : "f42b82c8b55c8379eea9ebd9f6aea00d", + "id" : "1424601", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "カメリア・ロワイヤル", + "alias_name_display" : "カメリア・ロワイヤル", + "event" : [ { + "event_id" : 812, + "event_name" : "第12回アイドルLIVEロワイヤル" + } ], + "hash" : "457370553d93e1da4d39ad3c2b742c27", + "id" : "1524602", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "夏のゆらぎ", + "alias_name_display" : "夏のゆらぎ", + "event" : [ { + "event_id" : 722, + "event_name" : "夏祭りDEドリームLIVEフェスティバル" + } ], + "hash" : "f4d7801c6c3496ae294ad932267b26e6", + "id" : "1433701", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "夏のゆらぎ", + "alias_name_display" : "夏のゆらぎ", + "event" : [ { + "event_id" : 722, + "event_name" : "夏祭りDEドリームLIVEフェスティバル" + } ], + "hash" : "beba5121254d967e0be4895fbe2fac3c", + "id" : "1533702", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "46" + } + } ], + "idol_id" : 16, + "idol_name" : "江上椿", + "idol_name_display" : "江上椿", + "units" : [ { + "id" : "8", + "name" : "越後小町" + }, { + "id" : "154", + "name" : "秋色温泉" + }, { + "id" : "167", + "name" : "ロマンティックツアーズ" + } ] +}, { + "aliases" : [ { + "hash" : "4d2e995945e069c1c219d6c6b45edfce", + "id" : "1001701", + "profile" : { + "bust" : "83", + "height" : "161", + "hip" : "85", + "waist" : "56", + "weight" : "45" + } + }, { + "hash" : "2443422535f988e8e6a19e358b7232df", + "id" : "1101702", + "profile" : { + "bust" : "83", + "height" : "161", + "hip" : "85", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "湯けむり温泉", + "alias_name_display" : "湯けむり温泉", + "hash" : "5f9fdc0febde1ca6beb90cfdbb90f565", + "id" : "1206201", + "profile" : { + "bust" : "83", + "height" : "161", + "hip" : "85", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "湯けむり温泉", + "alias_name_display" : "湯けむり温泉", + "hash" : "8253386575ab1a9138e7d522620e42a4", + "id" : "1306202", + "profile" : { + "bust" : "83", + "height" : "161", + "hip" : "85", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "シャイニービーチ", + "alias_name_display" : "シャイニービーチ", + "hash" : "6ab4b420570dd2342cb8807d5adcf179", + "id" : "1210601", + "profile" : { + "bust" : "83", + "height" : "161", + "hip" : "85", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "シャイニービーチ", + "alias_name_display" : "シャイニービーチ", + "hash" : "7cf254cf32563bd2bba7b9b621085ca7", + "id" : "1310602", + "profile" : { + "bust" : "83", + "height" : "161", + "hip" : "85", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ロワイヤルスタイルNP", + "alias_name_display" : "ロワイヤルスタイルNP", + "event" : [ { + "event_id" : 807, + "event_name" : "第7回アイドルLIVEロワイヤル" + } ], + "hash" : "81fcd084769a29d996613f500af1f511", + "id" : "1218801", + "profile" : { + "bust" : "83", + "height" : "161", + "hip" : "85", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ロワイヤルスタイルNP", + "alias_name_display" : "ロワイヤルスタイルNP", + "event" : [ { + "event_id" : 807, + "event_name" : "第7回アイドルLIVEロワイヤル" + } ], + "hash" : "955aa295eb3a76e87605c67cc2042b9e", + "id" : "1318802", + "profile" : { + "bust" : "83", + "height" : "161", + "hip" : "85", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ウォーミングフラワー", + "alias_name_display" : "ウォーミングフラワー", + "event" : [ { + "event_id" : "026", + "event_name" : "第26回プロダクションマッチフェスティバル" + } ], + "hash" : "6455518732d768b065bbd827ec98b400", + "id" : "1226301", + "profile" : { + "bust" : "83", + "height" : "161", + "hip" : "85", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ウォーミングフラワー", + "alias_name_display" : "ウォーミングフラワー", + "event" : [ { + "event_id" : "026", + "event_name" : "第26回プロダクションマッチフェスティバル" + } ], + "hash" : "2c885ccae440c5c059ee8098121b620c", + "id" : "1326302", + "profile" : { + "bust" : "83", + "height" : "161", + "hip" : "85", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "フェリーチェ・チョコラータ", + "alias_name_display" : "フェリーチェ・チョコラータ", + "hash" : "9820c330da30a1f41d14f220a384af70", + "id" : "1231901", + "profile" : { + "bust" : "83", + "height" : "161", + "hip" : "85", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "フェリーチェ・チョコラータ", + "alias_name_display" : "フェリーチェ・チョコラータ", + "hash" : "49f0f052f1dae481fa53872899b098ed", + "id" : "1331902", + "profile" : { + "bust" : "83", + "height" : "161", + "hip" : "85", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "フィーチャースイートピー", + "alias_name_display" : "フィーチャースイートピー", + "event" : [ { + "event_id" : 803, + "event_name" : "第3回アイドルLIVEロワイヤル" + } ], + "hash" : "23e7989e812ce2c789242acd8b1d8472", + "id" : "1411901", + "profile" : { + "bust" : "83", + "height" : "161", + "hip" : "85", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "フィーチャースイートピー", + "alias_name_display" : "フィーチャースイートピー", + "event" : [ { + "event_id" : 803, + "event_name" : "第3回アイドルLIVEロワイヤル" + } ], + "hash" : "129dff6ad85473683b876ba9171588bc", + "id" : "1511902", + "profile" : { + "bust" : "83", + "height" : "161", + "hip" : "85", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "素肌のチアー", + "alias_name_display" : "素肌のチアー", + "event" : [ { + "event_id" : 1503, + "event_name" : "チーム対抗 夏だ!プールだ!トークバトルショー" + } ], + "hash" : "56070f7414e85b8412e83ccc0c78184a", + "id" : "1426701", + "profile" : { + "bust" : "83", + "height" : "161", + "hip" : "85", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "素肌のチアー", + "alias_name_display" : "素肌のチアー", + "event" : [ { + "event_id" : 1503, + "event_name" : "チーム対抗 夏だ!プールだ!トークバトルショー" + } ], + "hash" : "906f4fcae92953c83c522c36d5ff5fe9", + "id" : "1526702", + "profile" : { + "bust" : "83", + "height" : "161", + "hip" : "85", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "コール・ミー・メイビー", + "alias_name_display" : "コール・ミー・メイビー", + "hash" : "416e3e705b08bbf389a6f2f18f5c69d4", + "id" : "1433201", + "profile" : { + "bust" : "83", + "height" : "161", + "hip" : "85", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "コール・ミー・メイビー", + "alias_name_display" : "コール・ミー・メイビー", + "hash" : "cd8477548a634299e065cc223b70eb74", + "id" : "1533202", + "profile" : { + "bust" : "83", + "height" : "161", + "hip" : "85", + "waist" : "56", + "weight" : "45" + } + } ], + "idol_id" : 17, + "idol_name" : "長富蓮実", + "idol_name_display" : "長富蓮実", + "units" : [ { + "id" : "178", + "name" : "からぱれ" + }, { + "id" : "209", + "name" : "ロワイヤルスタイルNP" + } ] +}, { + "aliases" : [ { + "hash" : "33e0fe9d3980f8fcc0146acf93b1527c", + "id" : "1001901", + "profile" : { + "bust" : "60", + "height" : "127", + "hip" : "65", + "waist" : "55", + "weight" : "31" + } + }, { + "hash" : "a837b5db80a3b8a16ca290a20d18251d", + "id" : "1101902", + "profile" : { + "bust" : "60", + "height" : "127", + "hip" : "65", + "waist" : "55", + "weight" : "31" + } + }, { + "alias_name" : "マーメイドパラダイス", + "alias_name_display" : "マーメイドパラダイス", + "hash" : "0f9eefd5d70b48f20f8816530e6d7d73", + "id" : "1205101", + "profile" : { + "bust" : "60", + "height" : "127", + "hip" : "65", + "waist" : "55", + "weight" : "31" + } + }, { + "alias_name" : "マーメイドパラダイス", + "alias_name_display" : "マーメイドパラダイス", + "hash" : "d5afe53e9eb4629197f42e744720cfa8", + "id" : "1305102", + "profile" : { + "bust" : "60", + "height" : "127", + "hip" : "65", + "waist" : "55", + "weight" : "31" + } + }, { + "alias_name" : "ラブリー魔女っ娘", + "alias_name_display" : "ラブリー魔女っ娘", + "hash" : "0a55494fafe73df2035f17c70ed79af8", + "id" : "1206101", + "profile" : { + "bust" : "60", + "height" : "127", + "hip" : "65", + "waist" : "55", + "weight" : "31" + } + }, { + "alias_name" : "ラブリー魔女っ娘", + "alias_name_display" : "ラブリー魔女っ娘", + "hash" : "19e6e1f54b5b9fccc005269962b858d0", + "id" : "1306102", + "profile" : { + "bust" : "60", + "height" : "127", + "hip" : "65", + "waist" : "55", + "weight" : "31" + } + }, { + "alias_name" : "マーチングバンド", + "alias_name_display" : "マーチングバンド", + "hash" : "66e4c9f29760c0b9c779dae9cec7555b", + "id" : "1211901", + "profile" : { + "bust" : "60", + "height" : "127", + "hip" : "65", + "waist" : "55", + "weight" : "31" + } + }, { + "alias_name" : "マーチングバンド", + "alias_name_display" : "マーチングバンド", + "hash" : "a7e07a4479fdecf1f54fef8a23bf6bca", + "id" : "1311902", + "profile" : { + "bust" : "60", + "height" : "127", + "hip" : "65", + "waist" : "55", + "weight" : "31" + } + }, { + "alias_name" : "T.B.チアーズ", + "alias_name_display" : "T.B.チアーズ", + "event" : [ { + "event_id" : 1505, + "event_name" : "チーム対抗トークバトルショー ウィンターSP" + } ], + "hash" : "7df797b6cd664971b45bd3087277b078", + "id" : "1225801", + "profile" : { + "bust" : "60", + "height" : "127", + "hip" : "65", + "waist" : "55", + "weight" : "31" + } + }, { + "alias_name" : "T.B.チアーズ", + "alias_name_display" : "T.B.チアーズ", + "event" : [ { + "event_id" : 1505, + "event_name" : "チーム対抗トークバトルショー ウィンターSP" + } ], + "hash" : "784b0d08e971844537fafc49e94341f8", + "id" : "1325802", + "profile" : { + "bust" : "60", + "height" : "127", + "hip" : "65", + "waist" : "55", + "weight" : "31" + } + }, { + "alias_name" : "ホーリーコーラス", + "alias_name_display" : "ホーリーコーラス", + "hash" : "78c1db8e016621883e2b0dc239e8ebc0", + "id" : "1231001", + "profile" : { + "bust" : "60", + "height" : "127", + "hip" : "65", + "waist" : "55", + "weight" : "31" + } + }, { + "alias_name" : "ホーリーコーラス", + "alias_name_display" : "ホーリーコーラス", + "hash" : "911de1e40e95c58e35d00eff5fb783f0", + "id" : "1331002", + "profile" : { + "bust" : "60", + "height" : "127", + "hip" : "65", + "waist" : "55", + "weight" : "31" + } + }, { + "alias_name" : "小さなおひな様", + "alias_name_display" : "小さなおひな様", + "event" : [ { + "event_id" : 209, + "event_name" : "アイドルサバイバルひな祭り2013" + } ], + "hash" : "d3ae6c8c118597de7131a46a7a98e3b8", + "id" : "1405701", + "profile" : { + "bust" : "60", + "height" : "127", + "hip" : "65", + "waist" : "55", + "weight" : "31" + } + }, { + "alias_name" : "小さなおひな様", + "alias_name_display" : "小さなおひな様", + "event" : [ { + "event_id" : 209, + "event_name" : "アイドルサバイバルひな祭り2013" + } ], + "hash" : "e194a3fabb57c40d442a1922eb36d09a", + "id" : "1505702", + "profile" : { + "bust" : "60", + "height" : "127", + "hip" : "65", + "waist" : "55", + "weight" : "31" + } + }, { + "alias_name" : "マジカル☆プリティーハート", + "alias_name_display" : "マジカル☆プリティーハート", + "event" : [ { + "event_id" : 1201, + "event_name" : "目指せ魔女っ娘 アイドルチャレンジ" + } ], + "hash" : "8932419ffa9d909cd881aa9093b1e487", + "id" : "1414501", + "profile" : { + "bust" : "60", + "height" : "127", + "hip" : "65", + "waist" : "55", + "weight" : "31" + } + }, { + "alias_name" : "マジカル☆プリティーハート", + "alias_name_display" : "マジカル☆プリティーハート", + "event" : [ { + "event_id" : 1201, + "event_name" : "目指せ魔女っ娘 アイドルチャレンジ" + } ], + "hash" : "1a5c40592d5a168e785ff6ddb49ba6c3", + "id" : "1514502", + "profile" : { + "bust" : "60", + "height" : "127", + "hip" : "65", + "waist" : "55", + "weight" : "31" + } + }, { + "alias_name" : "朱きツワモノ", + "alias_name_display" : "朱きツワモノ", + "event" : [ { + "event_id" : 517, + "event_name" : "戦国公演 風来剣客伝" + } ], + "hash" : "c7e31c5643afd8ae07eca3b1ab6373a7", + "id" : "1422401", + "profile" : { + "bust" : "60", + "height" : "127", + "hip" : "65", + "waist" : "55", + "weight" : "31" + } + }, { + "alias_name" : "朱きツワモノ", + "alias_name_display" : "朱きツワモノ", + "event" : [ { + "event_id" : 517, + "event_name" : "戦国公演 風来剣客伝" + } ], + "hash" : "6d85b413db065fb9ecbcd80f348d53e6", + "id" : "1522402", + "profile" : { + "bust" : "60", + "height" : "127", + "hip" : "65", + "waist" : "55", + "weight" : "31" + } + }, { + "alias_name" : "雨のまほう", + "alias_name_display" : "雨のまほう", + "event" : [ { + "event_id" : 818, + "event_name" : "アイドルLIVEロワイヤル 雨の日SP" + } ], + "hash" : "f7024ca8bc11f488de049b9316cdae6b", + "id" : "1433501", + "profile" : { + "bust" : "60", + "height" : "127", + "hip" : "65", + "waist" : "55", + "weight" : "31" + } + }, { + "alias_name" : "雨のまほう", + "alias_name_display" : "雨のまほう", + "event" : [ { + "event_id" : 818, + "event_name" : "アイドルLIVEロワイヤル 雨の日SP" + } ], + "hash" : "d02199911575371c301fa3f8d1f937fe", + "id" : "1533502", + "profile" : { + "bust" : "60", + "height" : "127", + "hip" : "65", + "waist" : "55", + "weight" : "31" + } + } ], + "idol_id" : 18, + "idol_name" : "横山千佳", + "idol_name_display" : "横山千佳", + "units" : [ { + "id" : "64", + "name" : "リトルヒーロー" + }, { + "id" : "164", + "name" : "マジカルテット" + }, { + "id" : "182", + "name" : "マーメイドパラダイス" + }, { + "id" : "214", + "name" : "L.M.B.G" + } ] +}, { + "aliases" : [ { + "hash" : "a62ddac0bbdf7507192e5ed73698a4be", + "id" : "1002001", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "hash" : "c2f5b454d115252ca5b31db8454abd31", + "id" : "1102002", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ハロウィンヴァンパイア", + "alias_name_display" : "ハロウィンヴァンパイア", + "event" : [ { + "event_id" : 207, + "event_name" : "アイドルサバイバル ハロウィン編" + } ], + "hash" : "dc62bf6ee089d872b8e4701d8b0f536e", + "id" : "1206001", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ハロウィンヴァンパイア", + "alias_name_display" : "ハロウィンヴァンパイア", + "event" : [ { + "event_id" : 207, + "event_name" : "アイドルサバイバル ハロウィン編" + } ], + "hash" : "d4ebad4f68b4f6c1d3e14aedd0e1fb70", + "id" : "1306002", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ファンシースパイリーア", + "alias_name_display" : "ファンシースパイリーア", + "hash" : "b98d47d489c846fcbb6b94a8632231ee", + "id" : "1214201", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ファンシースパイリーア", + "alias_name_display" : "ファンシースパイリーア", + "hash" : "c2796e3d650b904810108ee398953baf", + "id" : "1314202", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "夏休み", + "alias_name_display" : "夏休み", + "event" : [ { + "event_id" : 413, + "event_name" : "みんなのなつやすみ" + } ], + "hash" : "fe7a70caed6fe7087a172ca4d1545f7c", + "id" : "1217201", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "夏休み", + "alias_name_display" : "夏休み", + "event" : [ { + "event_id" : 413, + "event_name" : "みんなのなつやすみ" + } ], + "hash" : "d85152d27e941ab28409e1ce28515aa0", + "id" : "1317202", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "笑顔の夏休み", + "alias_name_display" : "笑顔の夏休み", + "event" : [ { + "event_id" : 413, + "event_name" : "みんなのなつやすみ" + } ], + "hash" : "8555c01eca24269514623464e978ebd7", + "id" : "1217301", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "笑顔の夏休み", + "alias_name_display" : "笑顔の夏休み", + "event" : [ { + "event_id" : 413, + "event_name" : "みんなのなつやすみ" + } ], + "hash" : "cd6dbe35df150439d6641aefa0eae7a9", + "id" : "1317302", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ラブリーメイド", + "alias_name_display" : "ラブリーメイド", + "hash" : "37214f0d7ec9a461beda96125f9071cf", + "id" : "1223401", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ラブリーメイド", + "alias_name_display" : "ラブリーメイド", + "hash" : "5ca334dd65bac13411c63caa54f0227f", + "id" : "1323402", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "スパニッシュダンサー", + "alias_name_display" : "スパニッシュダンサー", + "event" : [ { + "event_id" : 504, + "event_name" : "アイドルLIVEツアーinスペイン" + } ], + "hash" : "eaaecb4e719c48f55b564a275f4eb705", + "id" : "1406301", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "スパニッシュダンサー", + "alias_name_display" : "スパニッシュダンサー", + "event" : [ { + "event_id" : 504, + "event_name" : "アイドルLIVEツアーinスペイン" + } ], + "hash" : "49ece644aa45d424edba7b9c1fdef6c5", + "id" : "1506302", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "フォーチュンバニー", + "alias_name_display" : "フォーチュンバニー", + "hash" : "8254b5bd71ea17452086dba763e4844f", + "id" : "1408801", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "フォーチュンバニー", + "alias_name_display" : "フォーチュンバニー", + "hash" : "e30940ae9dcda36d0d5b06baec45646d", + "id" : "1508802", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "イノセントブライド", + "alias_name_display" : "イノセントブライド", + "hash" : "312b2c5020efdf60d43ba04e2830e58c", + "id" : "1419001", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "イノセントブライド", + "alias_name_display" : "イノセントブライド", + "hash" : "ae708b4006b536e7c436f68dc046479b", + "id" : "1519002", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ハピネスプリズム", + "alias_name_display" : "ハピネスプリズム", + "event" : [ { + "event_id" : "021", + "event_name" : "第21回プロダクションマッチフェスティバル" + } ], + "hash" : "3656160c6a0de5035d0ce51801b17929", + "id" : "1423601", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ハピネスプリズム", + "alias_name_display" : "ハピネスプリズム", + "event" : [ { + "event_id" : "021", + "event_name" : "第21回プロダクションマッチフェスティバル" + } ], + "hash" : "5301aa1b9c5b7f0acdad5d280323b120", + "id" : "1523602", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "手のひらの宝物", + "alias_name_display" : "手のひらの宝物", + "hash" : "839f27df591c223de347c63503e44191", + "id" : "1430601", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "手のひらの宝物", + "alias_name_display" : "手のひらの宝物", + "hash" : "18e29d6f25535be40fa370323e9e899e", + "id" : "1530602", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "笑顔のガーディアン", + "alias_name_display" : "笑顔のガーディアン", + "hash" : "66b1b474a97ac4e1b17d8522254223ce", + "id" : "1435201", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "笑顔のガーディアン", + "alias_name_display" : "笑顔のガーディアン", + "hash" : "c34d484a61ea8f7be3cfc5ede01b11e3", + "id" : "1535202", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ショコラドゥエタメール", + "alias_name_display" : "ショコラドゥエタメール", + "event" : [ { + "event_id" : 1906, + "event_name" : "ディアリースターハート ~ラブキュンバレンタイン~" + } ], + "hash" : "7a16a01f4a544cba2168a69382f3de40", + "id" : "1438301", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ショコラドゥエタメール", + "alias_name_display" : "ショコラドゥエタメール", + "event" : [ { + "event_id" : 1906, + "event_name" : "ディアリースターハート ~ラブキュンバレンタイン~" + } ], + "hash" : "6f26798de79180c3bc5aad8a14b31b34", + "id" : "1538302", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + } ], + "idol_id" : 19, + "idol_name" : "関裕美", + "idol_name_display" : "関裕美", + "units" : [ { + "id" : "101", + "name" : "ハロウィンヴァンパイア" + }, { + "id" : "129", + "name" : "ワンステップス" + }, { + "id" : "130", + "name" : "GIRLS BE" + }, { + "id" : "172", + "name" : "GIRLS BE NEXT STEP" + } ] +}, { + "aliases" : [ { + "hash" : "54ae8e0c640c6a7b14cb72b9395ea0fd", + "id" : "1002301", + "profile" : { + "bust" : "89", + "height" : "159", + "hip" : "87", + "waist" : "57", + "weight" : "45" + } + }, { + "hash" : "753e3e1d55fec03ac0355d390ecab888", + "id" : "1102302", + "profile" : { + "bust" : "89", + "height" : "159", + "hip" : "87", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "スプリングスイートピー", + "alias_name_display" : "スプリングスイートピー", + "event" : [ { + "event_id" : 209, + "event_name" : "アイドルサバイバルひな祭り2013" + } ], + "hash" : "f4d6767aeb7dd02ac99f8e6f35f3fb17", + "id" : "1208401", + "profile" : { + "bust" : "89", + "height" : "159", + "hip" : "87", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "スプリングスイートピー", + "alias_name_display" : "スプリングスイートピー", + "event" : [ { + "event_id" : 209, + "event_name" : "アイドルサバイバルひな祭り2013" + } ], + "hash" : "c68e3249a192693c4f6b0f09eee97624", + "id" : "1308402", + "profile" : { + "bust" : "89", + "height" : "159", + "hip" : "87", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "バニーガール", + "alias_name_display" : "バニーガール", + "hash" : "5b400c51e77b1d23d6aa5b163c72356a", + "id" : "1211701", + "profile" : { + "bust" : "89", + "height" : "159", + "hip" : "87", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "バニーガール", + "alias_name_display" : "バニーガール", + "hash" : "4c47dddab9272c5836546473bce0bc56", + "id" : "1311702", + "profile" : { + "bust" : "89", + "height" : "159", + "hip" : "87", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "バレンタインデビル", + "alias_name_display" : "バレンタインデビル", + "hash" : "aac128fdb81a96c932708fd67bde9f9e", + "id" : "1220301", + "profile" : { + "bust" : "89", + "height" : "159", + "hip" : "87", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "バレンタインデビル", + "alias_name_display" : "バレンタインデビル", + "hash" : "4e34fc26b435f80d3bbba9f8bd0d7045", + "id" : "1320302", + "profile" : { + "bust" : "89", + "height" : "159", + "hip" : "87", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "アップトゥデイト", + "alias_name_display" : "アップトゥデイト", + "hash" : "3301ddcd3460f7d6e8525580ec595ec5", + "id" : "1224801", + "profile" : { + "bust" : "89", + "height" : "159", + "hip" : "87", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "アップトゥデイト", + "alias_name_display" : "アップトゥデイト", + "hash" : "f9a1ac1703ec5ddf5a2a55a5c94191c3", + "id" : "1324802", + "profile" : { + "bust" : "89", + "height" : "159", + "hip" : "87", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "レディダウト", + "alias_name_display" : "レディダウト", + "event" : [ { + "event_id" : 1902, + "event_name" : "御伽公演 おてんば姫とまぢヤバな魔法のランプ" + } ], + "hash" : "7e62b71f86c28b8b0d275eb1e3d2c6ac", + "id" : "1328802", + "profile" : { + "bust" : "89", + "height" : "159", + "hip" : "87", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "プリティーニューイヤー", + "alias_name_display" : "プリティーニューイヤー", + "event" : [ { + "event_id" : 509, + "event_name" : "新春LIVEツアーカーニバル" + } ], + "hash" : "da6a8f7bf3ca40bab81dd29416beeb29", + "id" : "1411501", + "profile" : { + "bust" : "89", + "height" : "159", + "hip" : "87", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "プリティーニューイヤー", + "alias_name_display" : "プリティーニューイヤー", + "event" : [ { + "event_id" : 509, + "event_name" : "新春LIVEツアーカーニバル" + } ], + "hash" : "4d9a24cc8b10be07a95dfaf48f9f3320", + "id" : "1511502", + "profile" : { + "bust" : "89", + "height" : "159", + "hip" : "87", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "わんダフルチアー", + "alias_name_display" : "わんダフルチアー", + "event" : [ { + "event_id" : 1102, + "event_name" : "第2回プロダクション対抗トークバトルショー" + } ], + "hash" : "bb0cd321a47256a75dbb32b021e9f0a4", + "id" : "1414401", + "profile" : { + "bust" : "89", + "height" : "159", + "hip" : "87", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "わんダフルチアー", + "alias_name_display" : "わんダフルチアー", + "event" : [ { + "event_id" : 1102, + "event_name" : "第2回プロダクション対抗トークバトルショー" + } ], + "hash" : "6f373139364ab88fb2546aa671e71ac2", + "id" : "1514402", + "profile" : { + "bust" : "89", + "height" : "159", + "hip" : "87", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ラブリーマイベイビー", + "alias_name_display" : "ラブリーマイベイビー", + "hash" : "7bb355ad1b34e66736bcf328c92dfa6b", + "id" : "1437301", + "profile" : { + "bust" : "89", + "height" : "159", + "hip" : "87", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ラブリーマイベイビー", + "alias_name_display" : "ラブリーマイベイビー", + "hash" : "2763a2afd43cf1d265c968e8a9711692", + "id" : "1537302", + "profile" : { + "bust" : "89", + "height" : "159", + "hip" : "87", + "waist" : "57", + "weight" : "45" + } + } ], + "idol_id" : 20, + "idol_name" : "太田優", + "idol_name_display" : "太田優", + "units" : [ { + "id" : "110", + "name" : "アップトゥデイト" + } ] +}, { + "aliases" : [ { + "hash" : "668df5f627110fb638fed98ab6f0efdb", + "id" : "1002401", + "profile" : { + "bust" : "73", + "height" : "151", + "hip" : "75", + "waist" : "56", + "weight" : "41" + } + }, { + "hash" : "dffba4af62e6c806706ae927d6aa3a63", + "id" : "1102402", + "profile" : { + "bust" : "73", + "height" : "151", + "hip" : "75", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "デビリッシュゴシック", + "alias_name_display" : "デビリッシュゴシック", + "hash" : "73728f37f018acb8ac26efd204e3ebd1", + "id" : "1209301", + "profile" : { + "bust" : "73", + "height" : "151", + "hip" : "75", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "デビリッシュゴシック", + "alias_name_display" : "デビリッシュゴシック", + "hash" : "e3a357bb24fc6171859cc7d79ff8ebb1", + "id" : "1309302", + "profile" : { + "bust" : "73", + "height" : "151", + "hip" : "75", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "ハワイアンスタイル", + "alias_name_display" : "ハワイアンスタイル", + "event" : [ { + "event_id" : 506, + "event_name" : "アイドルLIVEツアーinハワイ" + } ], + "hash" : "6705b0f6fa31815de3a3a9a24186c172", + "id" : "1210901", + "profile" : { + "bust" : "73", + "height" : "151", + "hip" : "75", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "ハワイアンスタイル", + "alias_name_display" : "ハワイアンスタイル", + "event" : [ { + "event_id" : 506, + "event_name" : "アイドルLIVEツアーinハワイ" + } ], + "hash" : "21ae6f0acb669b55fe9470adf2d7781d", + "id" : "1310902", + "profile" : { + "bust" : "73", + "height" : "151", + "hip" : "75", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "ワーキング・おさわり", + "alias_name_display" : "ワーキング・おさわり", + "hash" : "c5859dbe3018a61d6edafe6d4adff04d", + "id" : "1215901", + "profile" : { + "bust" : "73", + "height" : "151", + "hip" : "75", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "ワーキング・おさわり", + "alias_name_display" : "ワーキング・おさわり", + "hash" : "428e1ebab8c7e5ebec444ddd9c702208", + "id" : "1315902", + "profile" : { + "bust" : "73", + "height" : "151", + "hip" : "75", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "イケナイオオカミ", + "alias_name_display" : "イケナイオオカミ", + "event" : [ { + "event_id" : 518, + "event_name" : "御伽公演 ふれあい狼と小さな赤ずきんちゃん" + } ], + "hash" : "6e82ddd934172c1ddfd40da18b541538", + "id" : "1221201", + "profile" : { + "bust" : "73", + "height" : "151", + "hip" : "75", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "イケナイオオカミ", + "alias_name_display" : "イケナイオオカミ", + "event" : [ { + "event_id" : 518, + "event_name" : "御伽公演 ふれあい狼と小さな赤ずきんちゃん" + } ], + "hash" : "24c92596b0ec15c3144510f5a0e1a931", + "id" : "1321202", + "profile" : { + "bust" : "73", + "height" : "151", + "hip" : "75", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "あなたのエンジェル", + "alias_name_display" : "あなたのエンジェル", + "hash" : "ac6cb9ba823f5c86e410d6b1982c5a91", + "id" : "1223101", + "profile" : { + "bust" : "73", + "height" : "151", + "hip" : "75", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "あなたのエンジェル", + "alias_name_display" : "あなたのエンジェル", + "hash" : "0657fcbc084dbe53351150271defb5a4", + "id" : "1323102", + "profile" : { + "bust" : "73", + "height" : "151", + "hip" : "75", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "サンタI.C", + "alias_name_display" : "サンタI.C", + "event" : [ { + "event_id" : 1208, + "event_name" : "目指せサンタクロース アイドルチャレンジ" + } ], + "hash" : "4278a96f12fa7a381b660192cd958f3f", + "id" : "1325102", + "profile" : { + "bust" : "73", + "height" : "151", + "hip" : "75", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "わきわきハンター", + "alias_name_display" : "わきわきハンター", + "event" : [ { + "event_id" : 704, + "event_name" : "第4回ドリームLIVEフェスティバル" + } ], + "hash" : "d3ee0211663368dab63f46d1a466ff68", + "id" : "1410401", + "profile" : { + "bust" : "73", + "height" : "151", + "hip" : "75", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "わきわきハンター", + "alias_name_display" : "わきわきハンター", + "event" : [ { + "event_id" : 704, + "event_name" : "第4回ドリームLIVEフェスティバル" + } ], + "hash" : "74f8f1da4f14be396b8e97914b4394d5", + "id" : "1510402", + "profile" : { + "bust" : "73", + "height" : "151", + "hip" : "75", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "愛の手", + "alias_name_display" : "愛の手", + "event" : [ { + "event_id" : "019", + "event_name" : "第19回プロダクションマッチフェスティバル" + } ], + "hash" : "45a7902898278b46aeb15740845d9471", + "id" : "1419801", + "profile" : { + "bust" : "73", + "height" : "151", + "hip" : "75", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "愛の手", + "alias_name_display" : "愛の手", + "event" : [ { + "event_id" : "019", + "event_name" : "第19回プロダクションマッチフェスティバル" + } ], + "hash" : "69fe9277fb8bad6c807c0fcb58ec7f4c", + "id" : "1519802", + "profile" : { + "bust" : "73", + "height" : "151", + "hip" : "75", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "わきわきクリスマス", + "alias_name_display" : "わきわきクリスマス", + "event" : [ { + "event_id" : 1208, + "event_name" : "目指せサンタクロース アイドルチャレンジ" + } ], + "hash" : "23924fe986972d26ed597b7116b81d70", + "id" : "1429901", + "profile" : { + "bust" : "73", + "height" : "151", + "hip" : "75", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "わきわきクリスマス", + "alias_name_display" : "わきわきクリスマス", + "event" : [ { + "event_id" : 1208, + "event_name" : "目指せサンタクロース アイドルチャレンジ" + } ], + "hash" : "8428e141a0f19853238dd295ba9c8122", + "id" : "1529902", + "profile" : { + "bust" : "73", + "height" : "151", + "hip" : "75", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "わきわきクリスマス・S", + "alias_name_display" : "わきわきクリスマス・S", + "event" : [ { + "event_id" : 1208, + "event_name" : "目指せサンタクロース アイドルチャレンジ" + } ], + "hash" : "297cab43151aa6dacc6873fb79fe7c25", + "id" : "1430001", + "profile" : { + "bust" : "73", + "height" : "151", + "hip" : "75", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "わきわきクリスマス・S", + "alias_name_display" : "わきわきクリスマス・S", + "event" : [ { + "event_id" : 1208, + "event_name" : "目指せサンタクロース アイドルチャレンジ" + } ], + "hash" : "e46d59be9f46daa789cb0fac05660407", + "id" : "1530002", + "profile" : { + "bust" : "73", + "height" : "151", + "hip" : "75", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "やわらかな夢", + "alias_name_display" : "やわらかな夢", + "event" : [ { + "event_id" : 721, + "event_name" : "第21回ドリームLIVEフェスティバル" + } ], + "hash" : "3a0dc8a0ffb83f0e7d739b9b38dacd2b", + "id" : "1432601", + "profile" : { + "bust" : "73", + "height" : "151", + "hip" : "75", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "やわらかな夢", + "alias_name_display" : "やわらかな夢", + "event" : [ { + "event_id" : 721, + "event_name" : "第21回ドリームLIVEフェスティバル" + } ], + "hash" : "00a24b06c95da5f54b0b000c9eed1c7c", + "id" : "1532602", + "profile" : { + "bust" : "73", + "height" : "151", + "hip" : "75", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "おさわりチアー", + "alias_name_display" : "おさわりチアー", + "event" : [ { + "event_id" : 1509, + "event_name" : "第9回チーム対抗トークバトルショー" + } ], + "hash" : "7eed576c2e8dbd09f8240ec36f8bd6d7", + "id" : "1436401", + "profile" : { + "bust" : "73", + "height" : "151", + "hip" : "75", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "おさわりチアー", + "alias_name_display" : "おさわりチアー", + "event" : [ { + "event_id" : 1509, + "event_name" : "第9回チーム対抗トークバトルショー" + } ], + "hash" : "6266ac4f14b93b3859953ec5f6e94cb4", + "id" : "1536402", + "profile" : { + "bust" : "73", + "height" : "151", + "hip" : "75", + "waist" : "56", + "weight" : "41" + } + } ], + "idol_id" : 21, + "idol_name" : "棟方愛海", + "idol_name_display" : "棟方愛海", + "units" : [ { + "id" : "44", + "name" : "ハワイアンツイン" + }, { + "id" : "48", + "name" : "日菜子と愛海の妄想ワールド" + }, { + "id" : "128", + "name" : "ラビュー☆アイス☆マウンテン" + }, { + "id" : "157", + "name" : "デビリッシュゴシック" + } ] +}, { + "aliases" : [ { + "hash" : "d2e5c0c476cfc344fce7fe03c8c9a4fb", + "id" : "1002501", + "profile" : { + "bust" : "77", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "hash" : "c896423b38ed849a1ef973c5c7f369de", + "id" : "1102502", + "profile" : { + "bust" : "77", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ラヴリーギャル", + "alias_name_display" : "ラヴリーギャル", + "event" : [ { + "event_id" : "010", + "event_name" : "第10回プロダクションマッチフェスティバル" + } ], + "hash" : "673b753d25d3f34cc74f4e66ff70a5ef", + "id" : "1209701", + "profile" : { + "bust" : "77", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ラヴリーギャル", + "alias_name_display" : "ラヴリーギャル", + "event" : [ { + "event_id" : "010", + "event_name" : "第10回プロダクションマッチフェスティバル" + } ], + "hash" : "ab24ce09e254e16c0644ea40dc1382f9", + "id" : "1309702", + "profile" : { + "bust" : "77", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ビーチパラダイス", + "alias_name_display" : "ビーチパラダイス", + "hash" : "1099c469420259169802a9a27d79ff58", + "id" : "1211101", + "profile" : { + "bust" : "77", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ビーチパラダイス", + "alias_name_display" : "ビーチパラダイス", + "hash" : "550797c200a26c62d2a2d27fbfff83fa", + "id" : "1311102", + "profile" : { + "bust" : "77", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "クリスマスプレゼント", + "alias_name_display" : "クリスマスプレゼント", + "hash" : "25d34e8c4e8e6db5267c90e5d66ff8c8", + "id" : "1219301", + "profile" : { + "bust" : "77", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "クリスマスプレゼント", + "alias_name_display" : "クリスマスプレゼント", + "hash" : "f23d11db5595c69dfba4380215f437b3", + "id" : "1319302", + "profile" : { + "bust" : "77", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "夏フェス☆ギャル", + "alias_name_display" : "夏フェス☆ギャル", + "hash" : "ef7004b6df4b22ebdd71f04a4f820b83", + "id" : "1222801", + "profile" : { + "bust" : "77", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "夏フェス☆ギャル", + "alias_name_display" : "夏フェス☆ギャル", + "hash" : "c89cbf65ba71e62e7dcde1ad925c3c28", + "id" : "1322802", + "profile" : { + "bust" : "77", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ちーぷり☆テイスト", + "alias_name_display" : "ちーぷり☆テイスト", + "hash" : "f0b132cb5b9924dd4b152fb7be41e15d", + "id" : "1231601", + "profile" : { + "bust" : "77", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ちーぷり☆テイスト", + "alias_name_display" : "ちーぷり☆テイスト", + "hash" : "5ae401df521201e18964635c8e00ce27", + "id" : "1331602", + "profile" : { + "bust" : "77", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ラヴリー☆ハート", + "alias_name_display" : "ラヴリー☆ハート", + "event" : [ { + "event_id" : 803, + "event_name" : "第3回アイドルLIVEロワイヤル" + } ], + "hash" : "2319725cfcde4156036a3da376d0e304", + "id" : "1411701", + "profile" : { + "bust" : "77", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ラヴリー☆ハート", + "alias_name_display" : "ラヴリー☆ハート", + "event" : [ { + "event_id" : 803, + "event_name" : "第3回アイドルLIVEロワイヤル" + } ], + "hash" : "a98cd69ad87bc017b0b7a5ab1719bbb7", + "id" : "1511702", + "profile" : { + "bust" : "77", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ラヴリー☆ライダー", + "alias_name_display" : "ラヴリー☆ライダー", + "hash" : "560a5de9054af39652fb3b48a1c22bc1", + "id" : "1415101", + "profile" : { + "bust" : "77", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ラヴリー☆ライダー", + "alias_name_display" : "ラヴリー☆ライダー", + "hash" : "7fd49e81f5b5d24cc99f84316ae4b149", + "id" : "1515102", + "profile" : { + "bust" : "77", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ラヴリー・ロワイヤル", + "alias_name_display" : "ラヴリー・ロワイヤル", + "event" : [ { + "event_id" : 811, + "event_name" : "第11回アイドルLIVEロワイヤル" + } ], + "hash" : "807e430846171e03e0490d4519e44b8c", + "id" : "1423101", + "profile" : { + "bust" : "77", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ラヴリー・ロワイヤル", + "alias_name_display" : "ラヴリー・ロワイヤル", + "event" : [ { + "event_id" : 811, + "event_name" : "第11回アイドルLIVEロワイヤル" + } ], + "hash" : "f4988f022dff8ff4dedfec2e679c0407", + "id" : "1523102", + "profile" : { + "bust" : "77", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "4thアニバーサリー", + "alias_name_display" : "4thアニバーサリー", + "event" : [ { + "event_id" : 1704, + "event_name" : "アイドルプロデュース the 4th Anniversary" + } ], + "hash" : "1f1da81fa810a213dc4f0ed50aed6119", + "id" : "1429301", + "profile" : { + "bust" : "77", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "4thアニバーサリー", + "alias_name_display" : "4thアニバーサリー", + "event" : [ { + "event_id" : 1704, + "event_name" : "アイドルプロデュース the 4th Anniversary" + } ], + "hash" : "9e83c80d3589ef5b8f21452a1d5288cd", + "id" : "1529302", + "profile" : { + "bust" : "77", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "4thアニバーサリー・S", + "alias_name_display" : "4thアニバーサリー・S", + "event" : [ { + "event_id" : 1704, + "event_name" : "アイドルプロデュース the 4th Anniversary" + } ], + "hash" : "ab7bfa84426b3b43094252eb65d41ab8", + "id" : "1429401", + "profile" : { + "bust" : "77", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "4thアニバーサリー・S", + "alias_name_display" : "4thアニバーサリー・S", + "event" : [ { + "event_id" : 1704, + "event_name" : "アイドルプロデュース the 4th Anniversary" + } ], + "hash" : "e4a4576044b3998542c3e03cba2b5ce0", + "id" : "1529402", + "profile" : { + "bust" : "77", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "砂漠のプリンセス", + "alias_name_display" : "砂漠のプリンセス", + "event" : [ { + "event_id" : 1902, + "event_name" : "御伽公演 おてんば姫とまぢヤバな魔法のランプ" + } ], + "hash" : "2fbab4bbe8033bf12ae330ad3013e932", + "id" : "1433901", + "profile" : { + "bust" : "77", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "砂漠のプリンセス", + "alias_name_display" : "砂漠のプリンセス", + "event" : [ { + "event_id" : 1902, + "event_name" : "御伽公演 おてんば姫とまぢヤバな魔法のランプ" + } ], + "hash" : "746f35295f4f371ec9b71219fb1224ce", + "id" : "1533902", + "profile" : { + "bust" : "77", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "41" + } + } ], + "idol_id" : 22, + "idol_name" : "藤本里奈", + "idol_name_display" : "藤本里奈", + "units" : [ { + "id" : "39", + "name" : "ノーティギャルズ" + }, { + "id" : "83", + "name" : "Shock'in Pink!" + }, { + "id" : "112", + "name" : "ギャルズパーティー" + }, { + "id" : "113", + "name" : "セクシーギャルズ" + }, { + "id" : "123", + "name" : "マッシブライダース" + }, { + "id" : "176", + "name" : "炎陣" + } ] +}, { + "aliases" : [ { + "hash" : "6b068f0f0e900fe2dd9026fc45e69c73", + "id" : "1002601", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "40" + } + }, { + "hash" : "dfa5a36128104882b3a46258220c6701", + "id" : "1102602", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "ドイツスタイル", + "alias_name_display" : "ドイツスタイル", + "event" : [ { + "event_id" : 507, + "event_name" : "LIVEツアーカーニバルinドイツ" + } ], + "hash" : "60af5036a77f2f8269fb6e88d920497f", + "id" : "1211601", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "ドイツスタイル", + "alias_name_display" : "ドイツスタイル", + "event" : [ { + "event_id" : 507, + "event_name" : "LIVEツアーカーニバルinドイツ" + } ], + "hash" : "d51d5eadd272f1b876ba341d6382868f", + "id" : "1311602", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "ロワイヤルスタイルNP", + "alias_name_display" : "ロワイヤルスタイルNP", + "event" : [ { + "event_id" : 805, + "event_name" : "第5回アイドルLIVEロワイヤル" + } ], + "hash" : "15eb02199aecce5e6f44cc03aedc29ac", + "id" : "1216801", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "ロワイヤルスタイルNP", + "alias_name_display" : "ロワイヤルスタイルNP", + "event" : [ { + "event_id" : 805, + "event_name" : "第5回アイドルLIVEロワイヤル" + } ], + "hash" : "286e0026f19374de60af40a8a7e0d06a", + "id" : "1316802", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "サマーシーズン", + "alias_name_display" : "サマーシーズン", + "hash" : "7edc3a0dfceed19ff46f0ebda96b8ee0", + "id" : "1222601", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "サマーシーズン", + "alias_name_display" : "サマーシーズン", + "hash" : "46961adee0f631616278501c02e47d1b", + "id" : "1322602", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "ノルウェー紀行", + "alias_name_display" : "ノルウェー紀行", + "event" : [ { + "event_id" : 1705, + "event_name" : "アイドルプロデュース きらめくオーロラ紀行" + } ], + "hash" : "be964026db56c2a6d7451db1085a5c15", + "id" : "1226401", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "ノルウェー紀行", + "alias_name_display" : "ノルウェー紀行", + "event" : [ { + "event_id" : 1705, + "event_name" : "アイドルプロデュース きらめくオーロラ紀行" + } ], + "hash" : "dfa5c5f04a0c8af6c6df3838046c8c31", + "id" : "1326402", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "ノルウェー紀行・S", + "alias_name_display" : "ノルウェー紀行・S", + "event" : [ { + "event_id" : 1705, + "event_name" : "アイドルプロデュース きらめくオーロラ紀行" + } ], + "hash" : "1268aaec4763af5b7c453126ee0877ce", + "id" : "1226501", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "ノルウェー紀行・S", + "alias_name_display" : "ノルウェー紀行・S", + "event" : [ { + "event_id" : 1705, + "event_name" : "アイドルプロデュース きらめくオーロラ紀行" + } ], + "hash" : "158f8d12822a0557a7a615e28bc434ea", + "id" : "1326502", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "ウェディングセレモニー", + "alias_name_display" : "ウェディングセレモニー", + "hash" : "c023db21214e7ae05e530ff7c55c58d5", + "id" : "1228301", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "ウェディングセレモニー", + "alias_name_display" : "ウェディングセレモニー", + "hash" : "b46221f37a06227726085fb255739bc4", + "id" : "1328302", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "ノーブレッドノーライフ", + "alias_name_display" : "ノーブレッドノーライフ", + "event" : [ { + "event_id" : "032", + "event_name" : "第32回プロダクションマッチフェスティバル" + } ], + "hash" : "0d022f6519fd7b401d70de6a2f8251c1", + "id" : "1230701", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "ノーブレッドノーライフ", + "alias_name_display" : "ノーブレッドノーライフ", + "event" : [ { + "event_id" : "032", + "event_name" : "第32回プロダクションマッチフェスティバル" + } ], + "hash" : "d24d7d1c13fa222394adeb1b8143c884", + "id" : "1330702", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "モグモグバレンタイン", + "alias_name_display" : "モグモグバレンタイン", + "hash" : "8166a4e7c07c118ab7202278f32bf89a", + "id" : "1412201", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "モグモグバレンタイン", + "alias_name_display" : "モグモグバレンタイン", + "hash" : "a154707291de46fdc9e9ec2c9d10055b", + "id" : "1512202", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "パンプキンチアー", + "alias_name_display" : "パンプキンチアー", + "event" : [ { + "event_id" : 1106, + "event_name" : "プロダクション対抗トークバトルショー ハロウィンSP" + } ], + "hash" : "d87837c56b1403c8047a7194db02a869", + "id" : "1419401", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "パンプキンチアー", + "alias_name_display" : "パンプキンチアー", + "event" : [ { + "event_id" : 1106, + "event_name" : "プロダクション対抗トークバトルショー ハロウィンSP" + } ], + "hash" : "32a2e1707518845648d1684210fce934", + "id" : "1519402", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "モグモグオータム", + "alias_name_display" : "モグモグオータム", + "event" : [ { + "event_id" : 814, + "event_name" : "第14回アイドルLIVEロワイヤル" + } ], + "hash" : "65844372377e2a3527d49cf506b2f6fc", + "id" : "1428801", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "モグモグオータム", + "alias_name_display" : "モグモグオータム", + "event" : [ { + "event_id" : 814, + "event_name" : "第14回アイドルLIVEロワイヤル" + } ], + "hash" : "77af3dbc70020d39d0731237345f44cf", + "id" : "1528802", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "焼きたてハピネス", + "alias_name_display" : "焼きたてハピネス", + "event" : [ { + "event_id" : 1216, + "event_name" : "先生と一緒に♪目指せおいしいパン作り アイドルチャレンジ" + } ], + "hash" : "ebf9935d9b73a4244db58227f97d8d2b", + "id" : "1440101", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "焼きたてハピネス", + "alias_name_display" : "焼きたてハピネス", + "event" : [ { + "event_id" : 1216, + "event_name" : "先生と一緒に♪目指せおいしいパン作り アイドルチャレンジ" + } ], + "hash" : "6982bf46c7bfa21df65e8b12044e9555", + "id" : "1540102", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "40" + } + } ], + "idol_id" : 23, + "idol_name" : "大原みちる", + "idol_name_display" : "大原みちる", + "units" : [ { + "id" : "33", + "name" : "チーム・フラワー" + }, { + "id" : "97", + "name" : "ドイツスタイル" + }, { + "id" : "133", + "name" : "スケルツォ・プリマヴェーラ" + }, { + "id" : "209", + "name" : "ロワイヤルスタイルNP" + } ] +}, { + "aliases" : [ { + "hash" : "45e99d9c3367c228d33f71058dd2f738", + "id" : "1002701", + "profile" : { + "bust" : "62", + "height" : "130", + "hip" : "65", + "waist" : "50", + "weight" : "28" + } + }, { + "hash" : "3144d1c17608aeeee8313c6cd507f9fb", + "id" : "1102702", + "profile" : { + "bust" : "62", + "height" : "130", + "hip" : "65", + "waist" : "50", + "weight" : "28" + } + }, { + "alias_name" : "スペーススタイル", + "alias_name_display" : "スペーススタイル", + "event" : [ { + "event_id" : 508, + "event_name" : "LIVEツアーカーニバルinスペースワールド" + } ], + "hash" : "d9f37d6cf95addd1b3965a4f0ce9b614", + "id" : "1212801", + "profile" : { + "bust" : "62", + "height" : "130", + "hip" : "65", + "waist" : "50", + "weight" : "28" + } + }, { + "alias_name" : "スペーススタイル", + "alias_name_display" : "スペーススタイル", + "event" : [ { + "event_id" : 508, + "event_name" : "LIVEツアーカーニバルinスペースワールド" + } ], + "hash" : "9d26767ec2bee81a2d044b4dfbf1d047", + "id" : "1312802", + "profile" : { + "bust" : "62", + "height" : "130", + "hip" : "65", + "waist" : "50", + "weight" : "28" + } + }, { + "alias_name" : "紅葉温泉", + "alias_name_display" : "紅葉温泉", + "hash" : "3c51dba58851ac10b8c11fed3d7c089f", + "id" : "1224401", + "profile" : { + "bust" : "62", + "height" : "130", + "hip" : "65", + "waist" : "50", + "weight" : "28" + } + }, { + "alias_name" : "紅葉温泉", + "alias_name_display" : "紅葉温泉", + "hash" : "aa2469f1804965e38a2a14d945c62b2a", + "id" : "1324402", + "profile" : { + "bust" : "62", + "height" : "130", + "hip" : "65", + "waist" : "50", + "weight" : "28" + } + }, { + "alias_name" : "ふしぎなちから", + "alias_name_display" : "ふしぎなちから", + "hash" : "3432d1de0c9fbb642ed0d612ea5525bc", + "id" : "1229501", + "profile" : { + "bust" : "62", + "height" : "130", + "hip" : "65", + "waist" : "50", + "weight" : "28" + } + }, { + "alias_name" : "ふしぎなちから", + "alias_name_display" : "ふしぎなちから", + "hash" : "16c97cfaf2b0ed17ac59a0c545c80286", + "id" : "1329502", + "profile" : { + "bust" : "62", + "height" : "130", + "hip" : "65", + "waist" : "50", + "weight" : "28" + } + }, { + "alias_name" : "マジカルエンジェル", + "alias_name_display" : "マジカルエンジェル", + "event" : [ { + "event_id" : "015", + "event_name" : "第15回プロダクションマッチフェスティバル" + } ], + "hash" : "efe818609edadb7a799cd5318a803c06", + "id" : "1412501", + "profile" : { + "bust" : "62", + "height" : "130", + "hip" : "65", + "waist" : "50", + "weight" : "28" + } + }, { + "alias_name" : "マジカルエンジェル", + "alias_name_display" : "マジカルエンジェル", + "event" : [ { + "event_id" : "015", + "event_name" : "第15回プロダクションマッチフェスティバル" + } ], + "hash" : "113a747db67955abdf42f480d82bfd0c", + "id" : "1512502", + "profile" : { + "bust" : "62", + "height" : "130", + "hip" : "65", + "waist" : "50", + "weight" : "28" + } + }, { + "alias_name" : "スウィートフェアリー", + "alias_name_display" : "スウィートフェアリー", + "hash" : "692f101a35f8d44b5cfdab20db41d07c", + "id" : "1416001", + "profile" : { + "bust" : "62", + "height" : "130", + "hip" : "65", + "waist" : "50", + "weight" : "28" + } + }, { + "alias_name" : "スウィートフェアリー", + "alias_name_display" : "スウィートフェアリー", + "hash" : "8d6a51322763437b0285d0014de453e1", + "id" : "1516002", + "profile" : { + "bust" : "62", + "height" : "130", + "hip" : "65", + "waist" : "50", + "weight" : "28" + } + }, { + "alias_name" : "はじめていっぱい", + "alias_name_display" : "はじめていっぱい", + "event" : [ { + "event_id" : 1701, + "event_name" : "アイドルプロデュース はじめてのキャンプ" + } ], + "hash" : "48ad4413bb8682b45c9dba484b79127d", + "id" : "1424101", + "profile" : { + "bust" : "62", + "height" : "130", + "hip" : "65", + "waist" : "50", + "weight" : "28" + } + }, { + "alias_name" : "はじめていっぱい", + "alias_name_display" : "はじめていっぱい", + "event" : [ { + "event_id" : 1701, + "event_name" : "アイドルプロデュース はじめてのキャンプ" + } ], + "hash" : "da45338f44ff37ffe855b752bf0abbd3", + "id" : "1524102", + "profile" : { + "bust" : "62", + "height" : "130", + "hip" : "65", + "waist" : "50", + "weight" : "28" + } + }, { + "alias_name" : "ホワイトテイル", + "alias_name_display" : "ホワイトテイル", + "hash" : "f54882d2d097483a70a35a82c42d40be", + "id" : "1430801", + "profile" : { + "bust" : "62", + "height" : "130", + "hip" : "65", + "waist" : "50", + "weight" : "28" + } + }, { + "alias_name" : "ホワイトテイル", + "alias_name_display" : "ホワイトテイル", + "hash" : "c50e292d766463d6113e97ee03cc6a38", + "id" : "1530802", + "profile" : { + "bust" : "62", + "height" : "130", + "hip" : "65", + "waist" : "50", + "weight" : "28" + } + }, { + "alias_name" : "無垢なる魔王", + "alias_name_display" : "無垢なる魔王", + "hash" : "51d28dcc1cffaf374a73ed53f77e9476", + "id" : "1437801", + "profile" : { + "bust" : "62", + "height" : "130", + "hip" : "65", + "waist" : "50", + "weight" : "28" + } + }, { + "alias_name" : "無垢なる魔王", + "alias_name_display" : "無垢なる魔王", + "hash" : "687b4206d88a37c16864b8f4d507f2cb", + "id" : "1537802", + "profile" : { + "bust" : "62", + "height" : "130", + "hip" : "65", + "waist" : "50", + "weight" : "28" + } + } ], + "idol_id" : 24, + "idol_name" : "遊佐こずえ", + "idol_name_display" : "遊佐こずえ", + "units" : [ { + "id" : "62", + "name" : "ようせいさんとおねえさん" + }, { + "id" : "95", + "name" : "スペーススタイル" + } ] +}, { + "aliases" : [ { + "hash" : "28789186bef61a4dcdd8eff8ef59fe7f", + "id" : "1002801", + "profile" : { + "bust" : "おっきい", + "height" : "145", + "hip" : "まぁまぁ", + "waist" : "ふつう", + "weight" : "40" + } + }, { + "hash" : "98e729ca168828acbf2ba02d89feda8b", + "id" : "1102802", + "profile" : { + "bust" : "おっきい", + "height" : "145", + "hip" : "まぁまぁ", + "waist" : "ふつう", + "weight" : "40" + } + }, { + "alias_name" : "トークLIVEチアガール", + "alias_name_display" : "トークLIVEチアガール", + "event" : [ { + "event_id" : 1101, + "event_name" : "プロダクション対抗トークバトルショー" + } ], + "hash" : "4d1ca7f4ecb2d1c02e68551e9bba2ab3", + "id" : "1215101", + "profile" : { + "bust" : "おっきい", + "height" : "145", + "hip" : "まぁまぁ", + "waist" : "ふつう", + "weight" : "40" + } + }, { + "alias_name" : "トークLIVEチアガール", + "alias_name_display" : "トークLIVEチアガール", + "event" : [ { + "event_id" : 1101, + "event_name" : "プロダクション対抗トークバトルショー" + } ], + "hash" : "d37d6a4498910c156f63189e2d40d6ed", + "id" : "1315102", + "profile" : { + "bust" : "おっきい", + "height" : "145", + "hip" : "まぁまぁ", + "waist" : "ふつう", + "weight" : "40" + } + }, { + "alias_name" : "大粒のドロップ", + "alias_name_display" : "大粒のドロップ", + "event" : [ { + "event_id" : "018", + "event_name" : "第18回プロダクションマッチフェスティバル" + } ], + "hash" : "66f135ec677fc6141ada012bbfcd01d7", + "id" : "1218001", + "profile" : { + "bust" : "おっきい", + "height" : "145", + "hip" : "まぁまぁ", + "waist" : "ふつう", + "weight" : "40" + } + }, { + "alias_name" : "大粒のドロップ", + "alias_name_display" : "大粒のドロップ", + "event" : [ { + "event_id" : "018", + "event_name" : "第18回プロダクションマッチフェスティバル" + } ], + "hash" : "6131913e660db86e1a50099c16bc325d", + "id" : "1318002", + "profile" : { + "bust" : "おっきい", + "height" : "145", + "hip" : "まぁまぁ", + "waist" : "ふつう", + "weight" : "40" + } + }, { + "alias_name" : "マーチングバンド", + "alias_name_display" : "マーチングバンド", + "hash" : "e0e1f48b20530c999a6b5a9559d6af6a", + "id" : "1226001", + "profile" : { + "bust" : "おっきい", + "height" : "145", + "hip" : "まぁまぁ", + "waist" : "ふつう", + "weight" : "40" + } + }, { + "alias_name" : "マーチングバンド", + "alias_name_display" : "マーチングバンド", + "hash" : "2ad0b3283dc5a010db5f158eb287e9fc", + "id" : "1326002", + "profile" : { + "bust" : "おっきい", + "height" : "145", + "hip" : "まぁまぁ", + "waist" : "ふつう", + "weight" : "40" + } + }, { + "alias_name" : "まごころメイド", + "alias_name_display" : "まごころメイド", + "hash" : "239499574a3170f40fa617e5e007ad72", + "id" : "1233101", + "profile" : { + "bust" : "おっきい", + "height" : "145", + "hip" : "まぁまぁ", + "waist" : "ふつう", + "weight" : "40" + } + }, { + "alias_name" : "まごころメイド", + "alias_name_display" : "まごころメイド", + "hash" : "9e651b1f7f469561931f12fc9a3b3e01", + "id" : "1333102", + "profile" : { + "bust" : "おっきい", + "height" : "145", + "hip" : "まぁまぁ", + "waist" : "ふつう", + "weight" : "40" + } + }, { + "alias_name" : "だだもれエモーション", + "alias_name_display" : "だだもれエモーション", + "event" : [ { + "event_id" : 807, + "event_name" : "第7回アイドルLIVEロワイヤル" + } ], + "hash" : "a4bbadf9252089f4d2d9ebd59b48ce7d", + "id" : "1418901", + "profile" : { + "bust" : "おっきい", + "height" : "145", + "hip" : "まぁまぁ", + "waist" : "ふつう", + "weight" : "40" + } + }, { + "alias_name" : "だだもれエモーション", + "alias_name_display" : "だだもれエモーション", + "event" : [ { + "event_id" : 807, + "event_name" : "第7回アイドルLIVEロワイヤル" + } ], + "hash" : "ceb069e649a43f33fcd76f03df331740", + "id" : "1518902", + "profile" : { + "bust" : "おっきい", + "height" : "145", + "hip" : "まぁまぁ", + "waist" : "ふつう", + "weight" : "40" + } + }, { + "alias_name" : "ぷるんぷるんB.B", + "alias_name_display" : "ぷるんぷるんB.B", + "hash" : "0b09d531c78b583e59cf03cef7673ea8", + "id" : "1422201", + "profile" : { + "bust" : "おっきい", + "height" : "145", + "hip" : "まぁまぁ", + "waist" : "ふつう", + "weight" : "40" + } + }, { + "alias_name" : "ぷるんぷるんB.B", + "alias_name_display" : "ぷるんぷるんB.B", + "hash" : "38bcfcacb8cd201a38eda17602d517df", + "id" : "1522202", + "profile" : { + "bust" : "おっきい", + "height" : "145", + "hip" : "まぁまぁ", + "waist" : "ふつう", + "weight" : "40" + } + }, { + "alias_name" : "もぎたてビーチガール", + "alias_name_display" : "もぎたてビーチガール", + "event" : [ { + "event_id" : 1703, + "event_name" : "アイドルプロデュース おいでよ!海の家" + } ], + "hash" : "3e40fa8beb3a767790257137865215b1", + "id" : "1426301", + "profile" : { + "bust" : "おっきい", + "height" : "145", + "hip" : "まぁまぁ", + "waist" : "ふつう", + "weight" : "40" + } + }, { + "alias_name" : "もぎたてビーチガール", + "alias_name_display" : "もぎたてビーチガール", + "event" : [ { + "event_id" : 1703, + "event_name" : "アイドルプロデュース おいでよ!海の家" + } ], + "hash" : "16bcdd3845d6e3e7329a87b63e487adb", + "id" : "1526302", + "profile" : { + "bust" : "おっきい", + "height" : "145", + "hip" : "まぁまぁ", + "waist" : "ふつう", + "weight" : "40" + } + }, { + "alias_name" : "きらきらビーチガール", + "alias_name_display" : "きらきらビーチガール", + "event" : [ { + "event_id" : 1703, + "event_name" : "アイドルプロデュース おいでよ!海の家" + } ], + "hash" : "1d9706dbe3ab49249cc85a75865ce80e", + "id" : "1426401", + "profile" : { + "bust" : "おっきい", + "height" : "145", + "hip" : "まぁまぁ", + "waist" : "ふつう", + "weight" : "40" + } + }, { + "alias_name" : "きらきらビーチガール", + "alias_name_display" : "きらきらビーチガール", + "event" : [ { + "event_id" : 1703, + "event_name" : "アイドルプロデュース おいでよ!海の家" + } ], + "hash" : "2c56ab3ad72b1f245847fcc4e0bc94c8", + "id" : "1526402", + "profile" : { + "bust" : "おっきい", + "height" : "145", + "hip" : "まぁまぁ", + "waist" : "ふつう", + "weight" : "40" + } + }, { + "alias_name" : "大輪の華", + "alias_name_display" : "大輪の華", + "event" : [ { + "event_id" : 1408, + "event_name" : "第8回ぷちデレラコレクション" + } ], + "hash" : "a80b7a3dce6c300c9bf3d0f0dd7d415e", + "id" : "1434801", + "profile" : { + "bust" : "おっきい", + "height" : "145", + "hip" : "まぁまぁ", + "waist" : "ふつう", + "weight" : "40" + } + }, { + "alias_name" : "大輪の華", + "alias_name_display" : "大輪の華", + "event" : [ { + "event_id" : 1408, + "event_name" : "第8回ぷちデレラコレクション" + } ], + "hash" : "d76492cb5a1cc1202e993013da0e48cd", + "id" : "1534802", + "profile" : { + "bust" : "おっきい", + "height" : "145", + "hip" : "まぁまぁ", + "waist" : "ふつう", + "weight" : "40" + } + } ], + "idol_id" : 25, + "idol_name" : "大沼くるみ", + "idol_name_display" : "大沼くるみ", + "units" : [ { + "id" : "71", + "name" : "B.B" + }, { + "id" : "214", + "name" : "L.M.B.G" + } ] +}, { + "aliases" : [ { + "hash" : "dad249d2193e48fede1efb6b86ce152f", + "id" : "1002901", + "profile" : { + "bust" : "83", + "height" : "161", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "hash" : "b9e2f6db7e3b84a0319b31c875323c03", + "id" : "1102902", + "profile" : { + "bust" : "83", + "height" : "161", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "ガンスリンガー", + "alias_name_display" : "ガンスリンガー", + "event" : [ { + "event_id" : 512, + "event_name" : "西部公演 ガンスリンガージャーニー" + } ], + "hash" : "749918764164a20ffd9548b6e3329cb7", + "id" : "1216501", + "profile" : { + "bust" : "83", + "height" : "161", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "ガンスリンガー", + "alias_name_display" : "ガンスリンガー", + "event" : [ { + "event_id" : 512, + "event_name" : "西部公演 ガンスリンガージャーニー" + } ], + "hash" : "06e634647cb9db3a1ae3cd4f0f8c1fdc", + "id" : "1316502", + "profile" : { + "bust" : "83", + "height" : "161", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "ダンシングガール", + "alias_name_display" : "ダンシングガール", + "event" : [ { + "event_id" : 1706, + "event_name" : "アイドルプロデュース 北の大地と夜さりの祭" + } ], + "hash" : "87b9ce294ee324ef107117cd775e3e41", + "id" : "1228101", + "profile" : { + "bust" : "83", + "height" : "161", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "ダンシングガール", + "alias_name_display" : "ダンシングガール", + "event" : [ { + "event_id" : 1706, + "event_name" : "アイドルプロデュース 北の大地と夜さりの祭" + } ], + "hash" : "8bd62d14e7ae5a19612cb4f63e7bc910", + "id" : "1328102", + "profile" : { + "bust" : "83", + "height" : "161", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "ダンシングガール・S", + "alias_name_display" : "ダンシングガール・S", + "event" : [ { + "event_id" : 1706, + "event_name" : "アイドルプロデュース 北の大地と夜さりの祭" + } ], + "hash" : "46b8c7e64644fefca3f9c7836f2c8f40", + "id" : "1228201", + "profile" : { + "bust" : "83", + "height" : "161", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "ダンシングガール・S", + "alias_name_display" : "ダンシングガール・S", + "event" : [ { + "event_id" : 1706, + "event_name" : "アイドルプロデュース 北の大地と夜さりの祭" + } ], + "hash" : "ae2a65d68ad26995c036e4a212c15f18", + "id" : "1328202", + "profile" : { + "bust" : "83", + "height" : "161", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "セブンスヘブン", + "alias_name_display" : "セブンスヘブン", + "hash" : "3055dffe2520e6a28427482ae61582e9", + "id" : "1417301", + "profile" : { + "bust" : "83", + "height" : "161", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "セブンスヘブン", + "alias_name_display" : "セブンスヘブン", + "hash" : "5f3a262bdcb15fd59261d1d67eed56e3", + "id" : "1517302", + "profile" : { + "bust" : "83", + "height" : "161", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "パフュームトリッパー", + "alias_name_display" : "パフュームトリッパー", + "hash" : "403297028737ce2c944bfc812dba6c94", + "id" : "1419901", + "profile" : { + "bust" : "83", + "height" : "161", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "パフュームトリッパー", + "alias_name_display" : "パフュームトリッパー", + "hash" : "be20e1ce2d5b116f0b9fecbecf298a48", + "id" : "1519902", + "profile" : { + "bust" : "83", + "height" : "161", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "文明開花", + "alias_name_display" : "文明開花", + "hash" : "af0f233de4c2dfbac1e5a8bf1768dcf6", + "id" : "1423501", + "profile" : { + "bust" : "83", + "height" : "161", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "文明開花", + "alias_name_display" : "文明開花", + "hash" : "c827cb0a7ab82a4395250ab254d6fbcf", + "id" : "1523502", + "profile" : { + "bust" : "83", + "height" : "161", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "fdf5b5e967d72bb2b7acf1b43953dbd2", + "id" : "1429101", + "profile" : { + "bust" : "83", + "height" : "161", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "aa3d9312403ed3e40e7f92b771676ea9", + "id" : "1529102", + "profile" : { + "bust" : "83", + "height" : "161", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "夜の匂い", + "alias_name_display" : "夜の匂い", + "event" : [ { + "event_id" : 815, + "event_name" : "アイドルLIVEロワイヤル クリスマスSP" + } ], + "hash" : "f4add4b54fc6ff462caf154441e049cf", + "id" : "1429801", + "profile" : { + "bust" : "83", + "height" : "161", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "夜の匂い", + "alias_name_display" : "夜の匂い", + "event" : [ { + "event_id" : 815, + "event_name" : "アイドルLIVEロワイヤル クリスマスSP" + } ], + "hash" : "abe06fbcf68900a285b0f2244403214e", + "id" : "1529802", + "profile" : { + "bust" : "83", + "height" : "161", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "新春パルファム", + "alias_name_display" : "新春パルファム", + "hash" : "44b0359478c5fbc5a8dcb0d7d91a3776", + "id" : "1437601", + "profile" : { + "bust" : "83", + "height" : "161", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "新春パルファム", + "alias_name_display" : "新春パルファム", + "hash" : "bb156a253fc247462a87b20eee8770f5", + "id" : "1537602", + "profile" : { + "bust" : "83", + "height" : "161", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + } ], + "idol_id" : 26, + "idol_name" : "一ノ瀬志希", + "idol_name_display" : "一ノ瀬志希", + "units" : [ { + "id" : "65", + "name" : "レイジー・レイジー" + }, { + "id" : "72", + "name" : "Dimension-3" + }, { + "id" : "126", + "name" : "誘惑イビル" + }, { + "id" : "185", + "name" : "LiPPS" + }, { + "id" : "196", + "name" : "la Roseraie" + } ] +}, { + "aliases" : [ { + "hash" : "eb2571c3f125aa3fcadb1468b6a4dbee", + "id" : "1200101", + "profile" : { + "bust" : "85", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "hash" : "b22b6d458e6da02da4717fee2cbb5095", + "id" : "1300102", + "profile" : { + "bust" : "85", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "ハイカラサクラ", + "alias_name_display" : "ハイカラサクラ", + "hash" : "4355a0e400d64478e92262d218a2c1bf", + "id" : "1221101", + "profile" : { + "bust" : "85", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "ハイカラサクラ", + "alias_name_display" : "ハイカラサクラ", + "hash" : "521d08134bd68c69fb0393e8c264af7a", + "id" : "1321102", + "profile" : { + "bust" : "85", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "ブラックキャット", + "alias_name_display" : "ブラックキャット", + "hash" : "b47ef631aaaa60b10106b8f2d9b53481", + "id" : "1232801", + "profile" : { + "bust" : "85", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "ブラックキャット", + "alias_name_display" : "ブラックキャット", + "hash" : "d4756fbf7ff04813ee44a35a24c776f2", + "id" : "1332802", + "profile" : { + "bust" : "85", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "セクシーキャット", + "alias_name_display" : "セクシーキャット", + "hash" : "ccebb088023a6049836772db68a1d7f6", + "id" : "1400401", + "profile" : { + "bust" : "85", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "セクシーキャット", + "alias_name_display" : "セクシーキャット", + "hash" : "fe6e6f03157fbdd74ec000f057c601cb", + "id" : "1500402", + "profile" : { + "bust" : "85", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "069cfeda079f531b4a0d33f4c9e226ba", + "id" : "1402401", + "profile" : { + "bust" : "85", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "c6de2d6bb237d224734e0448ae6f153a", + "id" : "1502402", + "profile" : { + "bust" : "85", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "チャーミングキャット", + "alias_name_display" : "チャーミングキャット", + "hash" : "c9f7539dc29fc32ea84e5d86153ec745", + "id" : "1403901", + "profile" : { + "bust" : "85", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "チャーミングキャット", + "alias_name_display" : "チャーミングキャット", + "hash" : "6866eec24a7825980b3325dfc6297b33", + "id" : "1503902", + "profile" : { + "bust" : "85", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "シーサイドキャット", + "alias_name_display" : "シーサイドキャット", + "hash" : "f369a4d2863096f6482270bf86392140", + "id" : "1408101", + "profile" : { + "bust" : "85", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "シーサイドキャット", + "alias_name_display" : "シーサイドキャット", + "hash" : "583d7a939c2f8d984fd5a45328019764", + "id" : "1508102", + "profile" : { + "bust" : "85", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "アニバーサリーキャット", + "alias_name_display" : "アニバーサリーキャット", + "event" : [ { + "event_id" : 410, + "event_name" : "アイドルプロデュース the 2nd Anniversary" + } ], + "hash" : "3e410534ed3ae72de2a38d8f0c8caa13", + "id" : "1410501", + "profile" : { + "bust" : "85", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "アニバーサリーキャット", + "alias_name_display" : "アニバーサリーキャット", + "event" : [ { + "event_id" : 410, + "event_name" : "アイドルプロデュース the 2nd Anniversary" + } ], + "hash" : "6c41f4d6efea96e2fb3f34e6fea1de77", + "id" : "1510502", + "profile" : { + "bust" : "85", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "アニバーサリーキャット・S", + "alias_name_display" : "アニバーサリーキャット・S", + "event" : [ { + "event_id" : 410, + "event_name" : "アイドルプロデュース the 2nd Anniversary" + } ], + "hash" : "fa0ecd35b0feef83d385a13de23d7234", + "id" : "1410601", + "profile" : { + "bust" : "85", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "アニバーサリーキャット・S", + "alias_name_display" : "アニバーサリーキャット・S", + "event" : [ { + "event_id" : 410, + "event_name" : "アイドルプロデュース the 2nd Anniversary" + } ], + "hash" : "4aa6cbe5d08e58debf0adfd32f3c5dcd", + "id" : "1510602", + "profile" : { + "bust" : "85", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "シンデレラドリーム", + "alias_name_display" : "シンデレラドリーム", + "hash" : "665a9ad6cf25489e7e4a11429abed954", + "id" : "1413801", + "profile" : { + "bust" : "85", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "シンデレラドリーム", + "alias_name_display" : "シンデレラドリーム", + "hash" : "0fb854d9551451b3f1cd518348c520f4", + "id" : "1513802", + "profile" : { + "bust" : "85", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "マジメ/ネコチャン", + "alias_name_display" : "マジメ/ネコチャン", + "hash" : "bb2eb7f4b69f14c0cf2e438079234201", + "id" : "1418701", + "profile" : { + "bust" : "85", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "マジメ/ネコチャン", + "alias_name_display" : "マジメ/ネコチャン", + "hash" : "14e6c94e4cc163ffedd84a8ebba62e90", + "id" : "1518702", + "profile" : { + "bust" : "85", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "ムーンナイトキャット", + "alias_name_display" : "ムーンナイトキャット", + "hash" : "cbf6c6a6ba50576f7be5b9f273d0484d", + "id" : "1425801", + "profile" : { + "bust" : "85", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "ムーンナイトキャット", + "alias_name_display" : "ムーンナイトキャット", + "hash" : "34a453e835e1cf2f197a43cdc18c0c65", + "id" : "1525802", + "profile" : { + "bust" : "85", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "アスタリスク", + "alias_name_display" : "アスタリスク", + "hash" : "f0f2405e8f2bbf462ed96d2a47eac58b", + "id" : "1526602", + "profile" : { + "bust" : "85", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "まちぶせキャット", + "alias_name_display" : "まちぶせキャット", + "hash" : "f78629c8772962a9690611d3b3363906", + "id" : "1431101", + "profile" : { + "bust" : "85", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "まちぶせキャット", + "alias_name_display" : "まちぶせキャット", + "hash" : "8a73c424553e716484886472e9ef92f9", + "id" : "1531102", + "profile" : { + "bust" : "85", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "フマジメ/ネコチャン", + "alias_name_display" : "フマジメ/ネコチャン", + "hash" : "92e0e3e2f3feede92f76570968a1b2b4", + "id" : "1435601", + "profile" : { + "bust" : "85", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "フマジメ/ネコチャン", + "alias_name_display" : "フマジメ/ネコチャン", + "hash" : "e863deaf923d0239d7d118503386c7c4", + "id" : "1535602", + "profile" : { + "bust" : "85", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + } ], + "idol_id" : 27, + "idol_name" : "前川みく", + "idol_name_display" : "前川みく", + "units" : [ { + "id" : "3", + "name" : "あーにゃんみくにゃん" + }, { + "id" : "70", + "name" : "*(Asterisk)" + }, { + "id" : "116", + "name" : "にゃん・にゃん・にゃん" + }, { + "id" : "139", + "name" : "397cherry" + }, { + "id" : "158", + "name" : "ハイカラサクラ" + }, { + "id" : "168", + "name" : "*(Asterisk) with なつなな" + }, { + "id" : "187", + "name" : "NEX-US" + }, { + "id" : "195", + "name" : "C5" + }, { + "id" : "213", + "name" : "CINDERELLA PROJECT" + } ] +}, { + "aliases" : [ { + "hash" : "2cd48b54401ff3ef8a81a753318705a9", + "id" : "1200201", + "profile" : { + "bust" : "92", + "height" : "154", + "hip" : "88", + "waist" : "59", + "weight" : "55" + } + }, { + "hash" : "d3f5730a559b84333df073acc29d094d", + "id" : "1300202", + "profile" : { + "bust" : "92", + "height" : "154", + "hip" : "88", + "waist" : "57", + "weight" : "53" + } + }, { + "alias_name" : "ラブリー☆バラドル", + "alias_name_display" : "ラブリー☆バラドル", + "event" : [ { + "event_id" : 505, + "event_name" : "アイドルLIVEツアーinバリ島" + } ], + "hash" : "13e6f261e13f120522d4a4675d3f38a9", + "id" : "1209401", + "profile" : { + "bust" : "92", + "height" : "154", + "hip" : "88", + "waist" : "57", + "weight" : "53" + } + }, { + "alias_name" : "ラブリー☆バラドル", + "alias_name_display" : "ラブリー☆バラドル", + "event" : [ { + "event_id" : 505, + "event_name" : "アイドルLIVEツアーinバリ島" + } ], + "hash" : "d85e306970e5cfe01adfe4f222014191", + "id" : "1309402", + "profile" : { + "bust" : "92", + "height" : "154", + "hip" : "88", + "waist" : "57", + "weight" : "53" + } + }, { + "alias_name" : "おひろめポーズ", + "alias_name_display" : "おひろめポーズ", + "hash" : "c488c3d6c04ad92b2bd5cc54b24855c9", + "id" : "1217901", + "profile" : { + "bust" : "92", + "height" : "154", + "hip" : "88", + "waist" : "57", + "weight" : "53" + } + }, { + "alias_name" : "おひろめポーズ", + "alias_name_display" : "おひろめポーズ", + "hash" : "9629738a808b833c3c0d28938bf132e0", + "id" : "1317902", + "profile" : { + "bust" : "92", + "height" : "154", + "hip" : "88", + "waist" : "57", + "weight" : "53" + } + }, { + "alias_name" : "T.B.サーカス", + "alias_name_display" : "T.B.サーカス", + "event" : [ { + "event_id" : 1108, + "event_name" : "第8回プロダクション対抗トークバトルショー" + } ], + "hash" : "6d515e6022088598ee53e452e64eadfd", + "id" : "1220201", + "profile" : { + "bust" : "92", + "height" : "154", + "hip" : "88", + "waist" : "57", + "weight" : "53" + } + }, { + "alias_name" : "T.B.サーカス", + "alias_name_display" : "T.B.サーカス", + "event" : [ { + "event_id" : 1108, + "event_name" : "第8回プロダクション対抗トークバトルショー" + } ], + "hash" : "0522d77ea44cb013c8debaf5b042e606", + "id" : "1320202", + "profile" : { + "bust" : "92", + "height" : "154", + "hip" : "88", + "waist" : "57", + "weight" : "53" + } + }, { + "alias_name" : "フライトバラエティ", + "alias_name_display" : "フライトバラエティ", + "event" : [ { + "event_id" : 1803, + "event_name" : "アイドルバラエティ 大空への挑戦 ~Fly me to the Sky~" + } ], + "hash" : "0855654e3e72cb7a3920e2e064e8d204", + "id" : "1327902", + "profile" : { + "bust" : "92", + "height" : "154", + "hip" : "88", + "waist" : "57", + "weight" : "53" + } + }, { + "alias_name" : "PROのオシゴト☆", + "alias_name_display" : "PROのオシゴト☆", + "hash" : "646d02993ce1aa9172a63d9e1fd68e0b", + "id" : "1231201", + "profile" : { + "bust" : "92", + "height" : "154", + "hip" : "88", + "waist" : "57", + "weight" : "53" + } + }, { + "alias_name" : "PROのオシゴト☆", + "alias_name_display" : "PROのオシゴト☆", + "hash" : "c2d987590968cc303bc14c008db97d75", + "id" : "1331202", + "profile" : { + "bust" : "92", + "height" : "154", + "hip" : "88", + "waist" : "57", + "weight" : "53" + } + }, { + "alias_name" : "ぷるるんスポーティ", + "alias_name_display" : "ぷるるんスポーティ", + "event" : [ { + "event_id" : 212, + "event_name" : "アイドルサバイバル 秋の大運動会" + } ], + "hash" : "54e1a4a8f49210862d05524ef607b0f0", + "id" : "1409801", + "profile" : { + "bust" : "92", + "height" : "154", + "hip" : "88", + "waist" : "57", + "weight" : "53" + } + }, { + "alias_name" : "ぷるるんスポーティ", + "alias_name_display" : "ぷるるんスポーティ", + "event" : [ { + "event_id" : 212, + "event_name" : "アイドルサバイバル 秋の大運動会" + } ], + "hash" : "488ac97d9598d5f6b5ff26028d4a9fc8", + "id" : "1509802", + "profile" : { + "bust" : "92", + "height" : "154", + "hip" : "88", + "waist" : "57", + "weight" : "53" + } + }, { + "alias_name" : "吸血貴族", + "alias_name_display" : "吸血貴族", + "event" : [ { + "event_id" : 522, + "event_name" : "魔界公演 幽鬱女王とハロウィンの祝祭" + } ], + "hash" : "70053db7dd59312f3f5f2af3bd8fcbf5", + "id" : "1428501", + "profile" : { + "bust" : "92", + "height" : "154", + "hip" : "88", + "waist" : "57", + "weight" : "53" + } + }, { + "alias_name" : "吸血貴族", + "alias_name_display" : "吸血貴族", + "event" : [ { + "event_id" : 522, + "event_name" : "魔界公演 幽鬱女王とハロウィンの祝祭" + } ], + "hash" : "2fc28fdf3ff00656454cd265ac6ff260", + "id" : "1528502", + "profile" : { + "bust" : "92", + "height" : "154", + "hip" : "88", + "waist" : "57", + "weight" : "53" + } + } ], + "idol_id" : 28, + "idol_name" : "赤西瑛梨華", + "idol_name_display" : "赤西瑛梨華", + "units" : [ { + "id" : "73", + "name" : "ERICATHY" + } ] +}, { + "aliases" : [ { + "hash" : "510b48227148c9164ac281f46083d2c5", + "id" : "1200301", + "profile" : { + "bust" : "83", + "height" : "156", + "hip" : "86", + "waist" : "58", + "weight" : "43" + } + }, { + "hash" : "7e2a4f08a73c0bd5bf11ff7e387fc149", + "id" : "1300302", + "profile" : { + "bust" : "83", + "height" : "156", + "hip" : "86", + "waist" : "58", + "weight" : "43" + } + }, { + "alias_name" : "スウィートドリーマー", + "alias_name_display" : "スウィートドリーマー", + "hash" : "9bff0a176fb7cc6ec70aa1851267c223", + "id" : "1210101", + "profile" : { + "bust" : "83", + "height" : "156", + "hip" : "86", + "waist" : "58", + "weight" : "43" + } + }, { + "alias_name" : "スウィートドリーマー", + "alias_name_display" : "スウィートドリーマー", + "hash" : "eab228023c103ead474b39feec6f2a62", + "id" : "1310102", + "profile" : { + "bust" : "83", + "height" : "156", + "hip" : "86", + "waist" : "58", + "weight" : "43" + } + }, { + "alias_name" : "自慢のボディ", + "alias_name_display" : "自慢のボディ", + "event" : [ { + "event_id" : "017", + "event_name" : "第17回プロダクションマッチフェスティバル" + } ], + "hash" : "a31c4b789e163d6300b58fe77258e56a", + "id" : "1216701", + "profile" : { + "bust" : "83", + "height" : "156", + "hip" : "86", + "waist" : "58", + "weight" : "43" + } + }, { + "alias_name" : "自慢のボディ", + "alias_name_display" : "自慢のボディ", + "event" : [ { + "event_id" : "017", + "event_name" : "第17回プロダクションマッチフェスティバル" + } ], + "hash" : "d11715682b54f3741316f3bc52ae3435", + "id" : "1316702", + "profile" : { + "bust" : "83", + "height" : "156", + "hip" : "86", + "waist" : "58", + "weight" : "43" + } + }, { + "alias_name" : "おねだりガール", + "alias_name_display" : "おねだりガール", + "hash" : "aae1c18ddab7a1cb39d017984294b8bc", + "id" : "1220501", + "profile" : { + "bust" : "83", + "height" : "156", + "hip" : "86", + "waist" : "58", + "weight" : "43" + } + }, { + "alias_name" : "おねだりガール", + "alias_name_display" : "おねだりガール", + "hash" : "a031a837934a23cd130171507ec1f055", + "id" : "1320502", + "profile" : { + "bust" : "83", + "height" : "156", + "hip" : "86", + "waist" : "58", + "weight" : "43" + } + }, { + "alias_name" : "LIVEバラエティ", + "alias_name_display" : "LIVEバラエティ", + "event" : [ { + "event_id" : 1802, + "event_name" : "アイドルバラエティ 手作りライブプロジェクト!" + } ], + "hash" : "31deca7910d4feaa0b6cfc3af4c9e231", + "id" : "1324702", + "profile" : { + "bust" : "83", + "height" : "156", + "hip" : "86", + "waist" : "58", + "weight" : "43" + } + }, { + "alias_name" : "かんぺきプラン", + "alias_name_display" : "かんぺきプラン", + "event" : [ { + "event_id" : 725, + "event_name" : "第25回ドリームLIVEフェスティバル" + } ], + "hash" : "be69d241fbd6bc8e3c465ce10a4f903d", + "id" : "1230501", + "profile" : { + "bust" : "83", + "height" : "156", + "hip" : "86", + "waist" : "58", + "weight" : "43" + } + }, { + "alias_name" : "かんぺきプラン", + "alias_name_display" : "かんぺきプラン", + "event" : [ { + "event_id" : 725, + "event_name" : "第25回ドリームLIVEフェスティバル" + } ], + "hash" : "c73c7d84c4ec2b59495f658ee6e9f4fa", + "id" : "1330502", + "profile" : { + "bust" : "83", + "height" : "156", + "hip" : "86", + "waist" : "58", + "weight" : "43" + } + }, { + "alias_name" : "カラフルリフレッシュ", + "alias_name_display" : "カラフルリフレッシュ", + "hash" : "25ed69d5934054eb837213ce9373c0c3", + "id" : "1233301", + "profile" : { + "bust" : "83", + "height" : "156", + "hip" : "86", + "waist" : "58", + "weight" : "43" + } + }, { + "alias_name" : "カラフルリフレッシュ", + "alias_name_display" : "カラフルリフレッシュ", + "hash" : "d5ee7f424c9e5017b44623633cf2a1a1", + "id" : "1333302", + "profile" : { + "bust" : "83", + "height" : "156", + "hip" : "86", + "waist" : "58", + "weight" : "43" + } + }, { + "alias_name" : "ロワイヤルハート", + "alias_name_display" : "ロワイヤルハート", + "event" : [ { + "event_id" : 802, + "event_name" : "第2回アイドルLIVEロワイヤル" + } ], + "hash" : "8cfe9ef767466eb45c547062a317718b", + "id" : "1411001", + "profile" : { + "bust" : "83", + "height" : "156", + "hip" : "86", + "waist" : "58", + "weight" : "43" + } + }, { + "alias_name" : "ロワイヤルハート", + "alias_name_display" : "ロワイヤルハート", + "event" : [ { + "event_id" : 802, + "event_name" : "第2回アイドルLIVEロワイヤル" + } ], + "hash" : "a7cc8e895c42ead2442b9492e36223d5", + "id" : "1511002", + "profile" : { + "bust" : "83", + "height" : "156", + "hip" : "86", + "waist" : "58", + "weight" : "43" + } + }, { + "alias_name" : "キューティーチアー", + "alias_name_display" : "キューティーチアー", + "event" : [ { + "event_id" : 1506, + "event_name" : "第6回チーム対抗トークバトルショー" + } ], + "hash" : "f4138dc94327dbcd4649e994dfa8cad0", + "id" : "1431801", + "profile" : { + "bust" : "83", + "height" : "156", + "hip" : "86", + "waist" : "58", + "weight" : "43" + } + }, { + "alias_name" : "キューティーチアー", + "alias_name_display" : "キューティーチアー", + "event" : [ { + "event_id" : 1506, + "event_name" : "第6回チーム対抗トークバトルショー" + } ], + "hash" : "eab519121d4491eb02a6ba19010da935", + "id" : "1531802", + "profile" : { + "bust" : "83", + "height" : "156", + "hip" : "86", + "waist" : "58", + "weight" : "43" + } + } ], + "idol_id" : 29, + "idol_name" : "松原早耶", + "idol_name_display" : "松原早耶" +}, { + "aliases" : [ { + "hash" : "fe1ec011929547cd07d17bfa91432bd3", + "id" : "1200401", + "profile" : { + "bust" : "92", + "height" : "160", + "hip" : "90", + "waist" : "58", + "weight" : "51" + } + }, { + "hash" : "da2577c3c6e142e7d0e4de14bee28538", + "id" : "1300402", + "profile" : { + "bust" : "92", + "height" : "160", + "hip" : "90", + "waist" : "58", + "weight" : "51" + } + }, { + "alias_name" : "ゴスペルドレス", + "alias_name_display" : "ゴスペルドレス", + "event" : [ { + "event_id" : 208, + "event_name" : "アイドルサバイバル聖歌響くクリスマス" + } ], + "hash" : "8feac8e96c99be975a2dcedd499734d3", + "id" : "1206801", + "profile" : { + "bust" : "92", + "height" : "160", + "hip" : "90", + "waist" : "58", + "weight" : "51" + } + }, { + "alias_name" : "ゴスペルドレス", + "alias_name_display" : "ゴスペルドレス", + "event" : [ { + "event_id" : 208, + "event_name" : "アイドルサバイバル聖歌響くクリスマス" + } ], + "hash" : "8bf6d88f7be269f26ecc0a82120d6c0d", + "id" : "1306802", + "profile" : { + "bust" : "92", + "height" : "160", + "hip" : "90", + "waist" : "58", + "weight" : "51" + } + }, { + "alias_name" : "スウィートスノー", + "alias_name_display" : "スウィートスノー", + "hash" : "13c9b6c8cc387ff80d3dd1197d827093", + "id" : "1213801", + "profile" : { + "bust" : "92", + "height" : "160", + "hip" : "90", + "waist" : "58", + "weight" : "51" + } + }, { + "alias_name" : "スウィートスノー", + "alias_name_display" : "スウィートスノー", + "hash" : "68945ac1a86d518a4ba0d7d3b6cf4242", + "id" : "1313802", + "profile" : { + "bust" : "92", + "height" : "160", + "hip" : "90", + "waist" : "58", + "weight" : "51" + } + }, { + "alias_name" : "チャーミングメイト", + "alias_name_display" : "チャーミングメイト", + "event" : [ { + "event_id" : 520, + "event_name" : "青春公演 シング・ア・ソング" + } ], + "hash" : "3ea19a7a283d7ccf8d67ebcecb3e9b03", + "id" : "1322702", + "profile" : { + "bust" : "92", + "height" : "160", + "hip" : "90", + "waist" : "58", + "weight" : "51" + } + }, { + "alias_name" : "タラン・アフェール", + "alias_name_display" : "タラン・アフェール", + "hash" : "cf38d99062a9637022571c1f26584083", + "id" : "1229701", + "profile" : { + "bust" : "92", + "height" : "160", + "hip" : "90", + "waist" : "58", + "weight" : "51" + } + }, { + "alias_name" : "タラン・アフェール", + "alias_name_display" : "タラン・アフェール", + "hash" : "110c4dcacd7c8645e9dd950465d5c451", + "id" : "1329702", + "profile" : { + "bust" : "92", + "height" : "160", + "hip" : "90", + "waist" : "58", + "weight" : "51" + } + }, { + "alias_name" : "フリルドウェスタン", + "alias_name_display" : "フリルドウェスタン", + "event" : [ { + "event_id" : 512, + "event_name" : "西部公演 ガンスリンガージャーニー" + } ], + "hash" : "379f16f5b227b81c72e2ccc4994bc538", + "id" : "1414901", + "profile" : { + "bust" : "92", + "height" : "160", + "hip" : "90", + "waist" : "58", + "weight" : "51" + } + }, { + "alias_name" : "フリルドウェスタン", + "alias_name_display" : "フリルドウェスタン", + "event" : [ { + "event_id" : 512, + "event_name" : "西部公演 ガンスリンガージャーニー" + } ], + "hash" : "b948b75ab52fd655f62eae3a3556e5ac", + "id" : "1514902", + "profile" : { + "bust" : "92", + "height" : "160", + "hip" : "90", + "waist" : "58", + "weight" : "51" + } + }, { + "alias_name" : "エレガント・ロワイヤル", + "alias_name_display" : "エレガント・ロワイヤル", + "event" : [ { + "event_id" : 810, + "event_name" : "アイドルLIVEロワイヤル バレンタインSP" + } ], + "hash" : "2e42528040b5fad260f931b71e04f0f4", + "id" : "1422101", + "profile" : { + "bust" : "92", + "height" : "160", + "hip" : "90", + "waist" : "58", + "weight" : "51" + } + }, { + "alias_name" : "エレガント・ロワイヤル", + "alias_name_display" : "エレガント・ロワイヤル", + "event" : [ { + "event_id" : 810, + "event_name" : "アイドルLIVEロワイヤル バレンタインSP" + } ], + "hash" : "58a0923135a9fcd5da1cedc3ccace8ba", + "id" : "1522102", + "profile" : { + "bust" : "92", + "height" : "160", + "hip" : "90", + "waist" : "58", + "weight" : "51" + } + }, { + "alias_name" : "笑門福来", + "alias_name_display" : "笑門福来", + "event" : [ { + "event_id" : 719, + "event_name" : "ドリームLIVEフェスティバル 節分SP" + } ], + "hash" : "b19bd4403fc12200e4ebb45a72a949bf", + "id" : "1431001", + "profile" : { + "bust" : "92", + "height" : "160", + "hip" : "90", + "waist" : "58", + "weight" : "51" + } + }, { + "alias_name" : "笑門福来", + "alias_name_display" : "笑門福来", + "event" : [ { + "event_id" : 719, + "event_name" : "ドリームLIVEフェスティバル 節分SP" + } ], + "hash" : "d6058e099d434e6a55b6c7db8011f43e", + "id" : "1531002", + "profile" : { + "bust" : "92", + "height" : "160", + "hip" : "90", + "waist" : "58", + "weight" : "51" + } + }, { + "alias_name" : "エレガントチアー", + "alias_name_display" : "エレガントチアー", + "event" : [ { + "event_id" : 1511, + "event_name" : "第11回チーム対抗トークバトルショー" + } ], + "hash" : "4dca0c21e5859981c0e9c239dc90f1ab", + "id" : "1438601", + "profile" : { + "bust" : "92", + "height" : "160", + "hip" : "90", + "waist" : "58", + "weight" : "51" + } + }, { + "alias_name" : "エレガントチアー", + "alias_name_display" : "エレガントチアー", + "event" : [ { + "event_id" : 1511, + "event_name" : "第11回チーム対抗トークバトルショー" + } ], + "hash" : "cfc329e650e8c8f39600ad33229d97db", + "id" : "1538602", + "profile" : { + "bust" : "92", + "height" : "160", + "hip" : "90", + "waist" : "58", + "weight" : "51" + } + } ], + "idol_id" : 30, + "idol_name" : "相原雪乃", + "idol_name_display" : "相原雪乃" +}, { + "aliases" : [ { + "hash" : "1593bfefaa649ce28d0b586bbcee2c81", + "id" : "1200501", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "hash" : "f80b6b94319b514fc4da98bd63edf140", + "id" : "1300502", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "湯けむり月夜", + "alias_name_display" : "湯けむり月夜", + "hash" : "653b56a1fafbb180fe1bc54e289e6168", + "id" : "1212901", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "湯けむり月夜", + "alias_name_display" : "湯けむり月夜", + "hash" : "8e14eb789abc0919c31084da84df7dfd", + "id" : "1312902", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "新春ガール", + "alias_name_display" : "新春ガール", + "hash" : "8b2b95f91390863d0aefcce275216963", + "id" : "1225401", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "新春ガール", + "alias_name_display" : "新春ガール", + "hash" : "f34fc01bea3aa407c5ce2a6d3f9bd90d", + "id" : "1325402", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "小悪魔メイド", + "alias_name_display" : "小悪魔メイド", + "hash" : "98ba7be0650ef8626d67e2402aa665eb", + "id" : "1402801", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "小悪魔メイド", + "alias_name_display" : "小悪魔メイド", + "hash" : "85c3f8d385513b9044698c7bd20056de", + "id" : "1502802", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ショコラバレンタイン", + "alias_name_display" : "ショコラバレンタイン", + "event" : [ { + "event_id" : 411, + "event_name" : "アイドルプロデュース チョコレートフォーユー!" + } ], + "hash" : "731660756ad8c37fca4639324f94cd3e", + "id" : "1412301", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ショコラバレンタイン", + "alias_name_display" : "ショコラバレンタイン", + "event" : [ { + "event_id" : 411, + "event_name" : "アイドルプロデュース チョコレートフォーユー!" + } ], + "hash" : "f8a00b18927c827e005cb9e6f6dd68a4", + "id" : "1512302", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ショコラ・スマイル", + "alias_name_display" : "ショコラ・スマイル", + "event" : [ { + "event_id" : 411, + "event_name" : "アイドルプロデュース チョコレートフォーユー!" + } ], + "hash" : "d05bfa40e5b0eea86f7dc67e65d3b5cd", + "id" : "1412401", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ショコラ・スマイル", + "alias_name_display" : "ショコラ・スマイル", + "event" : [ { + "event_id" : 411, + "event_name" : "アイドルプロデュース チョコレートフォーユー!" + } ], + "hash" : "c2e4546518d66324acc7e20c0296ea51", + "id" : "1512402", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "リーブル・ミニヨン", + "alias_name_display" : "リーブル・ミニヨン", + "hash" : "e137e975aa7d8f98998afd46715f9a04", + "id" : "1413601", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "リーブル・ミニヨン", + "alias_name_display" : "リーブル・ミニヨン", + "hash" : "2302f78e3b6c45755ac806fcda036bf7", + "id" : "1513602", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "渚のマドモワゼル", + "alias_name_display" : "渚のマドモワゼル", + "event" : [ { + "event_id" : 1104, + "event_name" : "プロダクション対抗トークバトルショーinSUMMER" + } ], + "hash" : "3c65d08696e1a10087ad8c9f7c8460ce", + "id" : "1417401", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "渚のマドモワゼル", + "alias_name_display" : "渚のマドモワゼル", + "event" : [ { + "event_id" : 1104, + "event_name" : "プロダクション対抗トークバトルショーinSUMMER" + } ], + "hash" : "5196bf41a2d9d73524e78bd6164559e5", + "id" : "1517402", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "カドー・ド・ノエル", + "alias_name_display" : "カドー・ド・ノエル", + "hash" : "cf269d80bd21af84f56b57b48d21388d", + "id" : "1420701", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "カドー・ド・ノエル", + "alias_name_display" : "カドー・ド・ノエル", + "hash" : "5c4c3e1c99e854f47febc5ef5ae40d74", + "id" : "1520702", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "a86180b82411166bce9e0ee90f02b578", + "id" : "1422001", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "1570d7a1a0edd19717633e5df8c19842", + "id" : "1522002", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "レーブル・カプリシュー", + "alias_name_display" : "レーブル・カプリシュー", + "hash" : "1a58043805ce26870464007a4c92eb3d", + "id" : "1424401", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "レーブル・カプリシュー", + "alias_name_display" : "レーブル・カプリシュー", + "hash" : "9115963613f19ebcacb3378f581f8246", + "id" : "1524402", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "気まぐれアリス", + "alias_name_display" : "気まぐれアリス", + "event" : [ { + "event_id" : 1901, + "event_name" : "童話公演 気まぐれアリスと不思議の国" + } ], + "hash" : "3815832491e393399209a0b9ae0e56ef", + "id" : "1431901", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "気まぐれアリス", + "alias_name_display" : "気まぐれアリス", + "event" : [ { + "event_id" : 1901, + "event_name" : "童話公演 気まぐれアリスと不思議の国" + } ], + "hash" : "235d561428433ff56c4f2debd8316d7d", + "id" : "1531902", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "シンデレラドリーム", + "alias_name_display" : "シンデレラドリーム", + "hash" : "1189876e0b701fb5f80f8f4a36a19c87", + "id" : "1435401", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "シンデレラドリーム", + "alias_name_display" : "シンデレラドリーム", + "hash" : "ab148b33c781fb0345cd41403adb0424", + "id" : "1535402", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "マジードゥラネージュ", + "alias_name_display" : "マジードゥラネージュ", + "event" : [ { + "event_id" : 727, + "event_name" : "第27回ドリームLIVEフェスティバル" + } ], + "hash" : "610702181bdfb81ec803df4813886aee", + "id" : "1438101", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "マジードゥラネージュ", + "alias_name_display" : "マジードゥラネージュ", + "event" : [ { + "event_id" : 727, + "event_name" : "第27回ドリームLIVEフェスティバル" + } ], + "hash" : "09346bd07794d16a01ebdf62ea8fd570", + "id" : "1538102", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + } ], + "idol_id" : 31, + "idol_name" : "宮本フレデリカ", + "idol_name_display" : "宮本フレデリカ", + "units" : [ { + "id" : "36", + "name" : "テンプテーション・アイズ" + }, { + "id" : "65", + "name" : "レイジー・レイジー" + }, { + "id" : "74", + "name" : "FrenchKisS" + }, { + "id" : "126", + "name" : "誘惑イビル" + }, { + "id" : "155", + "name" : "セレクテッド" + }, { + "id" : "185", + "name" : "LiPPS" + }, { + "id" : "196", + "name" : "la Roseraie" + }, { + "id" : "215", + "name" : "Project:Krone" + } ] +}, { + "aliases" : [ { + "hash" : "3d5441d51a3d93214ed9798cdb5b0fe1", + "id" : "1200601", + "profile" : { + "bust" : "78", + "height" : "148", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "hash" : "00855389a2e307b18ddc7a716c4cd7ec", + "id" : "1300602", + "profile" : { + "bust" : "78", + "height" : "148", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "花火祭り", + "alias_name_display" : "花火祭り", + "event" : [ { + "event_id" : 408, + "event_name" : "アイドルプロデュース 夜空に咲く花火編" + } ], + "hash" : "b75a1f1e9000341b7e348532de188052", + "id" : "1210701", + "profile" : { + "bust" : "78", + "height" : "148", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "花火祭り", + "alias_name_display" : "花火祭り", + "event" : [ { + "event_id" : 408, + "event_name" : "アイドルプロデュース 夜空に咲く花火編" + } ], + "hash" : "16a850adb0df8850bb39fa591a3b8a87", + "id" : "1310702", + "profile" : { + "bust" : "78", + "height" : "148", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "花火祭りスマイル", + "alias_name_display" : "花火祭りスマイル", + "event" : [ { + "event_id" : 408, + "event_name" : "アイドルプロデュース 夜空に咲く花火編" + } ], + "hash" : "5eb012ecd9dbc691372a60f46636dd34", + "id" : "1210801", + "profile" : { + "bust" : "78", + "height" : "148", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "花火祭りスマイル", + "alias_name_display" : "花火祭りスマイル", + "event" : [ { + "event_id" : 408, + "event_name" : "アイドルプロデュース 夜空に咲く花火編" + } ], + "hash" : "a979654b88d8c984848c4da8bf8e27c4", + "id" : "1310802", + "profile" : { + "bust" : "78", + "height" : "148", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "夏の夜の天女", + "alias_name_display" : "夏の夜の天女", + "hash" : "ecf899616d8c2e0975790388263ef67e", + "id" : "1402001", + "profile" : { + "bust" : "78", + "height" : "148", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "夏の夜の天女", + "alias_name_display" : "夏の夜の天女", + "hash" : "ff5c24d7d8bf90932a79915818e7472c", + "id" : "1502002", + "profile" : { + "bust" : "78", + "height" : "148", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "はんなり京娘", + "alias_name_display" : "はんなり京娘", + "hash" : "519e953aad9d655e2d34f86a8d0ec5b8", + "id" : "1409201", + "profile" : { + "bust" : "78", + "height" : "148", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "はんなり京娘", + "alias_name_display" : "はんなり京娘", + "hash" : "418d73386126d2687fb901deddea1ef8", + "id" : "1509202", + "profile" : { + "bust" : "78", + "height" : "148", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "はんなりメイド", + "alias_name_display" : "はんなりメイド", + "hash" : "fe9fbbd7f57c090d38e2188a25300ebf", + "id" : "1412701", + "profile" : { + "bust" : "78", + "height" : "148", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "はんなりメイド", + "alias_name_display" : "はんなりメイド", + "hash" : "7f76cdc6826e9972671f90f9cad737ac", + "id" : "1512702", + "profile" : { + "bust" : "78", + "height" : "148", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "ff87a7aa4b5d9bf8401f1ae6e4e256fb", + "id" : "1414001", + "profile" : { + "bust" : "78", + "height" : "148", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "e601a27731e9218244b7171b8350314b", + "id" : "1514002", + "profile" : { + "bust" : "78", + "height" : "148", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "天衣の織姫", + "alias_name_display" : "天衣の織姫", + "event" : [ { + "event_id" : 707, + "event_name" : "第7回ドリームLIVEフェスティバル" + } ], + "hash" : "5734c19bfc0b30b167ec301ed3c8644b", + "id" : "1415401", + "profile" : { + "bust" : "78", + "height" : "148", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "天衣の織姫", + "alias_name_display" : "天衣の織姫", + "event" : [ { + "event_id" : 707, + "event_name" : "第7回ドリームLIVEフェスティバル" + } ], + "hash" : "8fcf2d3d5fb4cb79e4a95f1b24027258", + "id" : "1515402", + "profile" : { + "bust" : "78", + "height" : "148", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "シンデレラドリーム", + "alias_name_display" : "シンデレラドリーム", + "hash" : "1eaaea63a6986091fd536f7fc5aa13ae", + "id" : "1419301", + "profile" : { + "bust" : "78", + "height" : "148", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "シンデレラドリーム", + "alias_name_display" : "シンデレラドリーム", + "hash" : "4e99233eb7bec767f87545c9b24b84c9", + "id" : "1519302", + "profile" : { + "bust" : "78", + "height" : "148", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "白妙の絢姫", + "alias_name_display" : "白妙の絢姫", + "hash" : "d5790f3f26a34f04e6dca27719fa49b6", + "id" : "1423701", + "profile" : { + "bust" : "78", + "height" : "148", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "白妙の絢姫", + "alias_name_display" : "白妙の絢姫", + "hash" : "bcfc346a8bebc8b91b6c2a4db68af955", + "id" : "1523702", + "profile" : { + "bust" : "78", + "height" : "148", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "大和のこころ", + "alias_name_display" : "大和のこころ", + "event" : [ { + "event_id" : 1207, + "event_name" : "目指せ大和撫子 アイドルチャレンジ" + } ], + "hash" : "c8543757f2537f22c13e39998c652da4", + "id" : "1427501", + "profile" : { + "bust" : "78", + "height" : "148", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "大和のこころ", + "alias_name_display" : "大和のこころ", + "event" : [ { + "event_id" : 1207, + "event_name" : "目指せ大和撫子 アイドルチャレンジ" + } ], + "hash" : "ffe272a5090faa227b489ea020f69a00", + "id" : "1527502", + "profile" : { + "bust" : "78", + "height" : "148", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "銀幕の綺羅星", + "alias_name_display" : "銀幕の綺羅星", + "event" : [ { + "event_id" : "028", + "event_name" : "第28回プロダクションマッチフェスティバル" + } ], + "hash" : "943bd10489f8c2681b5cfc48f9168190", + "id" : "1433001", + "profile" : { + "bust" : "78", + "height" : "148", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "銀幕の綺羅星", + "alias_name_display" : "銀幕の綺羅星", + "event" : [ { + "event_id" : "028", + "event_name" : "第28回プロダクションマッチフェスティバル" + } ], + "hash" : "183e353992ea4ae9795f5951b56cbd14", + "id" : "1533002", + "profile" : { + "bust" : "78", + "height" : "148", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "風光る乙姫", + "alias_name_display" : "風光る乙姫", + "hash" : "748375361f27cc443ffefeb77ed71053", + "id" : "1436501", + "profile" : { + "bust" : "78", + "height" : "148", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "風光る乙姫", + "alias_name_display" : "風光る乙姫", + "hash" : "d5e657f5ec28629effc2da211cd79455", + "id" : "1536502", + "profile" : { + "bust" : "78", + "height" : "148", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "万代の藤波", + "alias_name_display" : "万代の藤波", + "event" : [ { + "event_id" : 729, + "event_name" : "ドリームLIVEフェスティバル ゴールデンウィークSP" + } ], + "hash" : "13f68f7a37bdcbf6eb4292f0f1473ef3", + "id" : "1439901", + "profile" : { + "bust" : "78", + "height" : "148", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "万代の藤波", + "alias_name_display" : "万代の藤波", + "event" : [ { + "event_id" : 729, + "event_name" : "ドリームLIVEフェスティバル ゴールデンウィークSP" + } ], + "hash" : "76301262a0d6d164f8d35b6148bc96cb", + "id" : "1539902", + "profile" : { + "bust" : "78", + "height" : "148", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + } ], + "idol_id" : 32, + "idol_name" : "小早川紗枝", + "idol_name_display" : "小早川紗枝", + "units" : [ { + "id" : "41", + "name" : "羽衣小町" + }, { + "id" : "43", + "name" : "春色姫君" + }, { + "id" : "131", + "name" : "KBYD" + }, { + "id" : "179", + "name" : "春霞" + }, { + "id" : "194", + "name" : "サクヤヒメ" + } ] +}, { + "aliases" : [ { + "hash" : "20867159bc2a902527f5dc0efa76d68b", + "id" : "1200701", + "profile" : { + "bust" : "87", + "height" : "156", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "hash" : "68d5be6e1422d20d4577bfd9fb25929d", + "id" : "1300702", + "profile" : { + "bust" : "87", + "height" : "156", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "クッキングチャレンジ", + "alias_name_display" : "クッキングチャレンジ", + "event" : [ { + "event_id" : 409, + "event_name" : "アイドルプロデュース チャレンジクッキング イタリアン編" + } ], + "hash" : "88337a408516e2ea72ba8a25b69d3739", + "id" : "1212101", + "profile" : { + "bust" : "87", + "height" : "156", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "クッキングチャレンジ", + "alias_name_display" : "クッキングチャレンジ", + "event" : [ { + "event_id" : 409, + "event_name" : "アイドルプロデュース チャレンジクッキング イタリアン編" + } ], + "hash" : "b0fc0a3b34f1dc4d7015ff992748d787", + "id" : "1312102", + "profile" : { + "bust" : "87", + "height" : "156", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "クッキング・スマイル", + "alias_name_display" : "クッキング・スマイル", + "event" : [ { + "event_id" : 409, + "event_name" : "アイドルプロデュース チャレンジクッキング イタリアン編" + } ], + "hash" : "0e9052e6674c415cf96e05e2c47d87ae", + "id" : "1212201", + "profile" : { + "bust" : "87", + "height" : "156", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "クッキング・スマイル", + "alias_name_display" : "クッキング・スマイル", + "event" : [ { + "event_id" : 409, + "event_name" : "アイドルプロデュース チャレンジクッキング イタリアン編" + } ], + "hash" : "50f91b233f108e33aca3854c2131ce91", + "id" : "1312202", + "profile" : { + "bust" : "87", + "height" : "156", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "トキメキバレンタイン", + "alias_name_display" : "トキメキバレンタイン", + "hash" : "891d3b2a397131fe10041331ec76579f", + "id" : "1214501", + "profile" : { + "bust" : "87", + "height" : "156", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "トキメキバレンタイン", + "alias_name_display" : "トキメキバレンタイン", + "hash" : "02b77809766989d951dbd71427bc8b4e", + "id" : "1314502", + "profile" : { + "bust" : "87", + "height" : "156", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "サマーシーズン", + "alias_name_display" : "サマーシーズン", + "hash" : "2ca808c34dd608a715ca7dc12abd7e61", + "id" : "1222501", + "profile" : { + "bust" : "87", + "height" : "156", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "サマーシーズン", + "alias_name_display" : "サマーシーズン", + "hash" : "5a3472d22bd7713b226d50f93fd35010", + "id" : "1322502", + "profile" : { + "bust" : "87", + "height" : "156", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "スウィートフィール", + "alias_name_display" : "スウィートフィール", + "event" : [ { + "event_id" : 717, + "event_name" : "第17回ドリームLIVEフェスティバル" + } ], + "hash" : "99baa4962244767d412e5585b86a318c", + "id" : "1324302", + "profile" : { + "bust" : "87", + "height" : "156", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "はりきりお嬢様", + "alias_name_display" : "はりきりお嬢様", + "hash" : "a12d2df2bf89c7eb4c9c79c85589d4bf", + "id" : "1403801", + "profile" : { + "bust" : "87", + "height" : "156", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "はりきりお嬢様", + "alias_name_display" : "はりきりお嬢様", + "hash" : "916bedb06316876a193675b005b9e65d", + "id" : "1503802", + "profile" : { + "bust" : "87", + "height" : "156", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "花園の春風", + "alias_name_display" : "花園の春風", + "event" : [ { + "event_id" : 213, + "event_name" : "アイドルサバイバルinフラワーガーデン" + } ], + "hash" : "a3bb548475ded39750363881d0d9e565", + "id" : "1413901", + "profile" : { + "bust" : "87", + "height" : "156", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "花園の春風", + "alias_name_display" : "花園の春風", + "event" : [ { + "event_id" : 213, + "event_name" : "アイドルサバイバルinフラワーガーデン" + } ], + "hash" : "46a013ca127d7f819c23d119e7a7edda", + "id" : "1513902", + "profile" : { + "bust" : "87", + "height" : "156", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ココロ晴れ模様", + "alias_name_display" : "ココロ晴れ模様", + "hash" : "67aeacd0ecebf79e4dff4b81b17933ea", + "id" : "1419201", + "profile" : { + "bust" : "87", + "height" : "156", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ココロ晴れ模様", + "alias_name_display" : "ココロ晴れ模様", + "hash" : "6a0ab809266438988129412e3b3c0a2f", + "id" : "1519202", + "profile" : { + "bust" : "87", + "height" : "156", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "絢爛華麗", + "alias_name_display" : "絢爛華麗", + "event" : [ { + "event_id" : 1205, + "event_name" : "目指せ優雅なお嬢様 アイドルチャレンジ" + } ], + "hash" : "f8e37de970056cb819e9b634f5ed3b50", + "id" : "1422501", + "profile" : { + "bust" : "87", + "height" : "156", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "絢爛華麗", + "alias_name_display" : "絢爛華麗", + "event" : [ { + "event_id" : 1205, + "event_name" : "目指せ優雅なお嬢様 アイドルチャレンジ" + } ], + "hash" : "b94d27f8bf6ebca0baf1ddc7f0b58cd1", + "id" : "1522502", + "profile" : { + "bust" : "87", + "height" : "156", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "トロピカルサマー", + "alias_name_display" : "トロピカルサマー", + "event" : [ { + "event_id" : 723, + "event_name" : "水着DEドリームLIVEフェスティバル" + } ], + "hash" : "0732aa4adbd00581535c13bcaf43b50c", + "id" : "1434401", + "profile" : { + "bust" : "87", + "height" : "156", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "トロピカルサマー", + "alias_name_display" : "トロピカルサマー", + "event" : [ { + "event_id" : 723, + "event_name" : "水着DEドリームLIVEフェスティバル" + } ], + "hash" : "85a78a16c15d828a821e3be821b3793c", + "id" : "1534402", + "profile" : { + "bust" : "87", + "height" : "156", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "セレブリティロード", + "alias_name_display" : "セレブリティロード", + "event" : [ { + "event_id" : 822, + "event_name" : "第22回アイドルLIVEロワイヤル" + } ], + "hash" : "4432b1bb442fe24e22c44557b583eab5", + "id" : "1439001", + "profile" : { + "bust" : "87", + "height" : "156", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "セレブリティロード", + "alias_name_display" : "セレブリティロード", + "event" : [ { + "event_id" : 822, + "event_name" : "第22回アイドルLIVEロワイヤル" + } ], + "hash" : "37f641a6738f8d5735db957a37b781ae", + "id" : "1539002", + "profile" : { + "bust" : "87", + "height" : "156", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + } ], + "idol_id" : 33, + "idol_name" : "西園寺琴歌", + "idol_name_display" : "西園寺琴歌", + "units" : [ { + "id" : "51", + "name" : "フィオレンティナ" + }, { + "id" : "96", + "name" : "チャレンジクッキング" + }, { + "id" : "134", + "name" : "ノーブルセレブリティ" + } ] +}, { + "aliases" : [ { + "hash" : "f6db9a4a1e364bf7da838ed3dce77f97", + "id" : "1200801", + "profile" : { + "bust" : "?", + "height" : "139", + "hip" : "?", + "waist" : "?", + "weight" : "30" + } + }, { + "hash" : "28407ac006ec510467814e7b512f0a06", + "id" : "1300802", + "profile" : { + "bust" : "?", + "height" : "139", + "hip" : "?", + "waist" : "?", + "weight" : "30" + } + }, { + "alias_name" : "夏休み", + "alias_name_display" : "夏休み", + "event" : [ { + "event_id" : 413, + "event_name" : "みんなのなつやすみ" + } ], + "hash" : "4708ed7e50952392ecc752f78a2fc494", + "id" : "1317402", + "profile" : { + "bust" : "?", + "height" : "139", + "hip" : "?", + "waist" : "?", + "weight" : "30" + } + }, { + "alias_name" : "笑顔の夏休み", + "alias_name_display" : "笑顔の夏休み", + "event" : [ { + "event_id" : 413, + "event_name" : "みんなのなつやすみ" + } ], + "hash" : "8c4a37be2aaa7ad189f5de329a9fd45b", + "id" : "1317502", + "profile" : { + "bust" : "?", + "height" : "139", + "hip" : "?", + "waist" : "?", + "weight" : "30" + } + }, { + "alias_name" : "ハイカラサクラ", + "alias_name_display" : "ハイカラサクラ", + "hash" : "be6b498b2324fa909e6ad58fa03e875e", + "id" : "1221001", + "profile" : { + "bust" : "?", + "height" : "139", + "hip" : "?", + "waist" : "?", + "weight" : "30" + } + }, { + "alias_name" : "ハイカラサクラ", + "alias_name_display" : "ハイカラサクラ", + "hash" : "bcc92a7d693443ae50353418e9f01e87", + "id" : "1321002", + "profile" : { + "bust" : "?", + "height" : "139", + "hip" : "?", + "waist" : "?", + "weight" : "30" + } + }, { + "alias_name" : "だらだら妖精", + "alias_name_display" : "だらだら妖精", + "hash" : "fa5391c4ffc5f3aaaab8f4be52e4ede2", + "id" : "1400801", + "profile" : { + "bust" : "?", + "height" : "139", + "hip" : "?", + "waist" : "?", + "weight" : "30" + } + }, { + "alias_name" : "だらだら妖精", + "alias_name_display" : "だらだら妖精", + "hash" : "06bf3b4fc27d472d11c5735d4bf1008c", + "id" : "1500802", + "profile" : { + "bust" : "?", + "height" : "139", + "hip" : "?", + "waist" : "?", + "weight" : "30" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "f67ab6bb27463ff30c1bf3eb9e30c205", + "id" : "1401601", + "profile" : { + "bust" : "?", + "height" : "139", + "hip" : "?", + "waist" : "?", + "weight" : "30" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "0749a5f548083353b1c06f7a71ea2796", + "id" : "1501602", + "profile" : { + "bust" : "?", + "height" : "139", + "hip" : "?", + "waist" : "?", + "weight" : "30" + } + }, { + "alias_name" : "ハロウィンぷちデビル", + "alias_name_display" : "ハロウィンぷちデビル", + "hash" : "d48d11a6d14755a40c497076b2010f6e", + "id" : "1403001", + "profile" : { + "bust" : "?", + "height" : "139", + "hip" : "?", + "waist" : "?", + "weight" : "30" + } + }, { + "alias_name" : "ハロウィンぷちデビル", + "alias_name_display" : "ハロウィンぷちデビル", + "hash" : "68be112533136c5b5838059c76802622", + "id" : "1503002", + "profile" : { + "bust" : "?", + "height" : "139", + "hip" : "?", + "waist" : "?", + "weight" : "30" + } + }, { + "alias_name" : "だだっ子お姫さま", + "alias_name_display" : "だだっ子お姫さま", + "hash" : "9e3d3bf199e1b48a4f973abcd484d078", + "id" : "1405901", + "profile" : { + "bust" : "?", + "height" : "139", + "hip" : "?", + "waist" : "?", + "weight" : "30" + } + }, { + "alias_name" : "だだっ子お姫さま", + "alias_name_display" : "だだっ子お姫さま", + "hash" : "2519a9de93e6cf2e5fee9e4cb9776afe", + "id" : "1505902", + "profile" : { + "bust" : "?", + "height" : "139", + "hip" : "?", + "waist" : "?", + "weight" : "30" + } + }, { + "alias_name" : "新春の甘姫", + "alias_name_display" : "新春の甘姫", + "hash" : "fda6831b48d56bb489de02a54b6e5c1e", + "id" : "1411401", + "profile" : { + "bust" : "?", + "height" : "139", + "hip" : "?", + "waist" : "?", + "weight" : "30" + } + }, { + "alias_name" : "新春の甘姫", + "alias_name_display" : "新春の甘姫", + "hash" : "bc7ab362d3fa9c3bbb60bad0f61efded", + "id" : "1511402", + "profile" : { + "bust" : "?", + "height" : "139", + "hip" : "?", + "waist" : "?", + "weight" : "30" + } + }, { + "alias_name" : "ワンダフルマジック", + "alias_name_display" : "ワンダフルマジック", + "hash" : "451734e83549281289ac3b275f16855c", + "id" : "1413201", + "profile" : { + "bust" : "?", + "height" : "139", + "hip" : "?", + "waist" : "?", + "weight" : "30" + } + }, { + "alias_name" : "ワンダフルマジック", + "alias_name_display" : "ワンダフルマジック", + "hash" : "f86d864ff653884e26e6f2c63457bb11", + "id" : "1513202", + "profile" : { + "bust" : "?", + "height" : "139", + "hip" : "?", + "waist" : "?", + "weight" : "30" + } + }, { + "alias_name" : "杏の夏休み", + "alias_name_display" : "杏の夏休み", + "event" : [ { + "event_id" : 413, + "event_name" : "みんなのなつやすみ" + } ], + "hash" : "2141fdb8ac6c65306f07450a0b6e4690", + "id" : "1415901", + "profile" : { + "bust" : "?", + "height" : "139", + "hip" : "?", + "waist" : "?", + "weight" : "30" + } + }, { + "alias_name" : "杏の夏休み", + "alias_name_display" : "杏の夏休み", + "event" : [ { + "event_id" : 413, + "event_name" : "みんなのなつやすみ" + } ], + "hash" : "8239f7fd13b7716ec6bce3eff0de15cf", + "id" : "1515902", + "profile" : { + "bust" : "?", + "height" : "139", + "hip" : "?", + "waist" : "?", + "weight" : "30" + } + }, { + "alias_name" : "ノーアイドル・ノーライフ", + "alias_name_display" : "ノーアイドル・ノーライフ", + "hash" : "fb27330f9cd9285f01e38151db642b5b", + "id" : "1518802", + "profile" : { + "bust" : "?", + "height" : "139", + "hip" : "?", + "waist" : "?", + "weight" : "30" + } + }, { + "alias_name" : "G4U!", + "alias_name_display" : "G4U!", + "hash" : "c49fa50c14b052775646fe00e1bf7faf", + "id" : "1525902", + "profile" : { + "bust" : "?", + "height" : "139", + "hip" : "?", + "waist" : "?", + "weight" : "30" + } + }, { + "alias_name" : "キャンディアイランド", + "alias_name_display" : "キャンディアイランド", + "hash" : "f3b18751e845843846fc93062cc3409a", + "id" : "1526802", + "profile" : { + "bust" : "?", + "height" : "139", + "hip" : "?", + "waist" : "?", + "weight" : "30" + } + }, { + "alias_name" : "わがままサンタ", + "alias_name_display" : "わがままサンタ", + "hash" : "b565fc1857e5773d5aa49d06a90fa4d2", + "id" : "1429501", + "profile" : { + "bust" : "?", + "height" : "139", + "hip" : "?", + "waist" : "?", + "weight" : "30" + } + }, { + "alias_name" : "わがままサンタ", + "alias_name_display" : "わがままサンタ", + "hash" : "333da524bde405e4ce1612183eb8971b", + "id" : "1529502", + "profile" : { + "bust" : "?", + "height" : "139", + "hip" : "?", + "waist" : "?", + "weight" : "30" + } + }, { + "alias_name" : "ハッピーライフワーク", + "alias_name_display" : "ハッピーライフワーク", + "hash" : "7363848059cb366197a23423e4b50718", + "id" : "1432901", + "profile" : { + "bust" : "?", + "height" : "139", + "hip" : "?", + "waist" : "?", + "weight" : "30" + } + }, { + "alias_name" : "ハッピーライフワーク", + "alias_name_display" : "ハッピーライフワーク", + "hash" : "f3146fec776d68a022b7424198d733df", + "id" : "1532902", + "profile" : { + "bust" : "?", + "height" : "139", + "hip" : "?", + "waist" : "?", + "weight" : "30" + } + }, { + "alias_name" : "あんずのきもち", + "alias_name_display" : "あんずのきもち", + "hash" : "29daabf3b7a002ea14915a6655fd080b", + "id" : "1438201", + "profile" : { + "bust" : "?", + "height" : "139", + "hip" : "?", + "waist" : "?", + "weight" : "30" + } + }, { + "alias_name" : "あんずのきもち", + "alias_name_display" : "あんずのきもち", + "hash" : "458454502049072b7c4f264362088614", + "id" : "1538202", + "profile" : { + "bust" : "?", + "height" : "139", + "hip" : "?", + "waist" : "?", + "weight" : "30" + } + } ], + "idol_id" : 34, + "idol_name" : "双葉杏", + "idol_name_display" : "双葉杏", + "units" : [ { + "id" : "76", + "name" : "HappyHappyTwin" + }, { + "id" : "137", + "name" : "CANDY ISLAND" + }, { + "id" : "158", + "name" : "ハイカラサクラ" + }, { + "id" : "186", + "name" : "LittlePOPS" + }, { + "id" : "195", + "name" : "C5" + }, { + "id" : "213", + "name" : "CINDERELLA PROJECT" + } ] +}, { + "aliases" : [ { + "hash" : "0b9a4389717199d57e7001d411c67791", + "id" : "1200901", + "profile" : { + "bust" : "82", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "41" + } + }, { + "hash" : "07c7b962d538e859602c9c6859faf8fe", + "id" : "1300902", + "profile" : { + "bust" : "82", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "41" + } + }, { + "alias_name" : "制服コレクション", + "alias_name_display" : "制服コレクション", + "hash" : "84be1e67e057d843bd0eb46f1540d18c", + "id" : "1203801", + "profile" : { + "bust" : "82", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "41" + } + }, { + "alias_name" : "制服コレクション", + "alias_name_display" : "制服コレクション", + "hash" : "753750c2b678c8617ce06d6ca935b48c", + "id" : "1303802", + "profile" : { + "bust" : "82", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "41" + } + }, { + "alias_name" : "トキメキバレンタイン", + "alias_name_display" : "トキメキバレンタイン", + "hash" : "5c830b15548cf9f8c0b706feb765dc48", + "id" : "1214601", + "profile" : { + "bust" : "82", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "41" + } + }, { + "alias_name" : "トキメキバレンタイン", + "alias_name_display" : "トキメキバレンタイン", + "hash" : "314b709e14f033b561333be1667c2a88", + "id" : "1314602", + "profile" : { + "bust" : "82", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "41" + } + }, { + "alias_name" : "ブシドーナデシコ", + "alias_name_display" : "ブシドーナデシコ", + "hash" : "258c7d9292272921ae3731d3ffe239d9", + "id" : "1218201", + "profile" : { + "bust" : "82", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "41" + } + }, { + "alias_name" : "ブシドーナデシコ", + "alias_name_display" : "ブシドーナデシコ", + "hash" : "e8fda8efaad9a349b6a7071d0e10e0b4", + "id" : "1318202", + "profile" : { + "bust" : "82", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "41" + } + }, { + "alias_name" : "ガーリースタイル", + "alias_name_display" : "ガーリースタイル", + "hash" : "c388718bcf729ef026da145417f86ac3", + "id" : "1224601", + "profile" : { + "bust" : "82", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "41" + } + }, { + "alias_name" : "ガーリースタイル", + "alias_name_display" : "ガーリースタイル", + "hash" : "f7a27f37ed56823171d7ec434280b94a", + "id" : "1324602", + "profile" : { + "bust" : "82", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "41" + } + }, { + "alias_name" : "ウェディングセレモニー", + "alias_name_display" : "ウェディングセレモニー", + "hash" : "70371c6e3790ad4e7a6aa6a3d835313a", + "id" : "1228401", + "profile" : { + "bust" : "82", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "41" + } + }, { + "alias_name" : "ウェディングセレモニー", + "alias_name_display" : "ウェディングセレモニー", + "hash" : "645f9c84d5e3470979cb9ae80078cfba", + "id" : "1328402", + "profile" : { + "bust" : "82", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "41" + } + }, { + "alias_name" : "繚乱の舞姫", + "alias_name_display" : "繚乱の舞姫", + "event" : [ { + "event_id" : 501, + "event_name" : "アイドルLIVEツアーinUSA" + } ], + "hash" : "0d69d20741d3e2ded57afe1265e01c1b", + "id" : "1403701", + "profile" : { + "bust" : "82", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "41" + } + }, { + "alias_name" : "繚乱の舞姫", + "alias_name_display" : "繚乱の舞姫", + "event" : [ { + "event_id" : 501, + "event_name" : "アイドルLIVEツアーinUSA" + } ], + "hash" : "658f3b5d8a57402d73f6f5b8fbf98179", + "id" : "1503702", + "profile" : { + "bust" : "82", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "41" + } + }, { + "alias_name" : "ハートフェルトパーティー", + "alias_name_display" : "ハートフェルトパーティー", + "event" : [ { + "event_id" : "011", + "event_name" : "第11回プロダクションマッチフェスティバル" + } ], + "hash" : "3e2f37c00261808dcbf8415535d34084", + "id" : "1407701", + "profile" : { + "bust" : "82", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "41" + } + }, { + "alias_name" : "ハートフェルトパーティー", + "alias_name_display" : "ハートフェルトパーティー", + "event" : [ { + "event_id" : "011", + "event_name" : "第11回プロダクションマッチフェスティバル" + } ], + "hash" : "25757551fc8ff326f8b928b50228303c", + "id" : "1507702", + "profile" : { + "bust" : "82", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "41" + } + }, { + "alias_name" : "幸福娘々", + "alias_name_display" : "幸福娘々", + "event" : [ { + "event_id" : 711, + "event_name" : "福は内DEドリームLIVEフェスティバル" + } ], + "hash" : "bdccb733796bcc6f371daf922723613a", + "id" : "1421801", + "profile" : { + "bust" : "82", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "41" + } + }, { + "alias_name" : "幸福娘々", + "alias_name_display" : "幸福娘々", + "event" : [ { + "event_id" : 711, + "event_name" : "福は内DEドリームLIVEフェスティバル" + } ], + "hash" : "3540dfd706534f58264d1b479f3e8344", + "id" : "1521802", + "profile" : { + "bust" : "82", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "41" + } + }, { + "alias_name" : "玲瓏水晶", + "alias_name_display" : "玲瓏水晶", + "event" : [ { + "event_id" : 812, + "event_name" : "第12回アイドルLIVEロワイヤル" + } ], + "hash" : "4f20573d3dff91b7701a154fc841e1cc", + "id" : "1424501", + "profile" : { + "bust" : "82", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "41" + } + }, { + "alias_name" : "玲瓏水晶", + "alias_name_display" : "玲瓏水晶", + "event" : [ { + "event_id" : 812, + "event_name" : "第12回アイドルLIVEロワイヤル" + } ], + "hash" : "c46b6174a69648b148c8856a9991ee3b", + "id" : "1524502", + "profile" : { + "bust" : "82", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "41" + } + }, { + "alias_name" : "加油チアー", + "alias_name_display" : "加油チアー", + "event" : [ { + "event_id" : 1510, + "event_name" : "チーム対抗トークバトルショー オールスターSP" + } ], + "hash" : "ec67c8c8a52a99a464d17895c38bacb0", + "id" : "1437401", + "profile" : { + "bust" : "82", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "41" + } + }, { + "alias_name" : "加油チアー", + "alias_name_display" : "加油チアー", + "event" : [ { + "event_id" : 1510, + "event_name" : "チーム対抗トークバトルショー オールスターSP" + } ], + "hash" : "6f2cef2655f476d2f3f6ea80d8f481ec", + "id" : "1537402", + "profile" : { + "bust" : "82", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "41" + } + } ], + "idol_id" : 35, + "idol_name" : "楊菲菲", + "idol_name_display" : "楊菲菲", + "units" : [ { + "id" : "26", + "name" : "スクールガールフレンズ" + }, { + "id" : "178", + "name" : "からぱれ" + } ] +}, { + "aliases" : [ { + "hash" : "4efc876705241a31f7ecf57ae3dc8ef4", + "id" : "1201001", + "profile" : { + "bust" : "80", + "height" : "145", + "hip" : "78", + "waist" : "55", + "weight" : "40" + } + }, { + "hash" : "fa6d973aa7f7b480fa96338ffecc9ed9", + "id" : "1301002", + "profile" : { + "bust" : "80", + "height" : "145", + "hip" : "78", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "桜祭り", + "alias_name_display" : "桜祭り", + "event" : [ { + "event_id" : 406, + "event_name" : "アイドルプロデュース 春の桜祭り編" + } ], + "hash" : "963b05e86daf038003b417060a1646ed", + "id" : "1208801", + "profile" : { + "bust" : "80", + "height" : "145", + "hip" : "78", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "桜祭り", + "alias_name_display" : "桜祭り", + "event" : [ { + "event_id" : 406, + "event_name" : "アイドルプロデュース 春の桜祭り編" + } ], + "hash" : "72e2b4dade433fec680531a9839da725", + "id" : "1308802", + "profile" : { + "bust" : "80", + "height" : "145", + "hip" : "78", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "桜祭りスマイル", + "alias_name_display" : "桜祭りスマイル", + "event" : [ { + "event_id" : 406, + "event_name" : "アイドルプロデュース 春の桜祭り編" + } ], + "hash" : "55689885ba0c5749221b56330494a77a", + "id" : "1208901", + "profile" : { + "bust" : "80", + "height" : "145", + "hip" : "78", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "桜祭りスマイル", + "alias_name_display" : "桜祭りスマイル", + "event" : [ { + "event_id" : 406, + "event_name" : "アイドルプロデュース 春の桜祭り編" + } ], + "hash" : "f0514789e4b35f9e8d4086e85bfa43ed", + "id" : "1308902", + "profile" : { + "bust" : "80", + "height" : "145", + "hip" : "78", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "フレンズ大作戦", + "alias_name_display" : "フレンズ大作戦", + "hash" : "096928f93993001378e0a9dfa0e84d77", + "id" : "1216901", + "profile" : { + "bust" : "80", + "height" : "145", + "hip" : "78", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "フレンズ大作戦", + "alias_name_display" : "フレンズ大作戦", + "hash" : "0574e12bd0b603f118f7961ba4c3e72c", + "id" : "1316902", + "profile" : { + "bust" : "80", + "height" : "145", + "hip" : "78", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "サマーバケーション", + "alias_name_display" : "サマーバケーション", + "hash" : "5972a0d0eacd1baf011aaead666663fa", + "id" : "1222901", + "profile" : { + "bust" : "80", + "height" : "145", + "hip" : "78", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "サマーバケーション", + "alias_name_display" : "サマーバケーション", + "hash" : "fd84cd6a9120f8ffcafa17c834e6d421", + "id" : "1322902", + "profile" : { + "bust" : "80", + "height" : "145", + "hip" : "78", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "秋の学園祭", + "alias_name_display" : "秋の学園祭", + "hash" : "72271817bbcfa730bf3454c26f94eaff", + "id" : "1230101", + "profile" : { + "bust" : "80", + "height" : "145", + "hip" : "78", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "秋の学園祭", + "alias_name_display" : "秋の学園祭", + "hash" : "ea55478abc68ac42807e04ff2164cabe", + "id" : "1330102", + "profile" : { + "bust" : "80", + "height" : "145", + "hip" : "78", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "まごころメイド", + "alias_name_display" : "まごころメイド", + "hash" : "24bcddb9bcf4f50c23e64b2657329db3", + "id" : "1233001", + "profile" : { + "bust" : "80", + "height" : "145", + "hip" : "78", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "まごころメイド", + "alias_name_display" : "まごころメイド", + "hash" : "4dd815b7097a2487a982d3d071b570ab", + "id" : "1333002", + "profile" : { + "bust" : "80", + "height" : "145", + "hip" : "78", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "艶娘大作戦", + "alias_name_display" : "艶娘大作戦", + "event" : [ { + "event_id" : 201, + "event_name" : "アイドルサバイバル" + } ], + "hash" : "46378cb4d0fffad00600ba63d8a2d183", + "id" : "1400701", + "profile" : { + "bust" : "80", + "height" : "145", + "hip" : "78", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "艶娘大作戦", + "alias_name_display" : "艶娘大作戦", + "event" : [ { + "event_id" : 201, + "event_name" : "アイドルサバイバル" + } ], + "hash" : "7e6f804d5a9f4f886b637c99669b2ee0", + "id" : "1500702", + "profile" : { + "bust" : "80", + "height" : "145", + "hip" : "78", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "湯けむり大作戦", + "alias_name_display" : "湯けむり大作戦", + "hash" : "0e28275081099ed145f74b056ec0e813", + "id" : "1403501", + "profile" : { + "bust" : "80", + "height" : "145", + "hip" : "78", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "湯けむり大作戦", + "alias_name_display" : "湯けむり大作戦", + "hash" : "2b2ccaa519a19a25d519eb2b35aac5a1", + "id" : "1503502", + "profile" : { + "bust" : "80", + "height" : "145", + "hip" : "78", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "メルヘン大作戦", + "alias_name_display" : "メルヘン大作戦", + "hash" : "cebea77bf64e2434c3ecafd915d2d8d2", + "id" : "1408501", + "profile" : { + "bust" : "80", + "height" : "145", + "hip" : "78", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "メルヘン大作戦", + "alias_name_display" : "メルヘン大作戦", + "hash" : "e0d8ee3ba65f7a1db58ab820537d8665", + "id" : "1508502", + "profile" : { + "bust" : "80", + "height" : "145", + "hip" : "78", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "ロワイヤル・スクエア", + "alias_name_display" : "ロワイヤル・スクエア", + "event" : [ { + "event_id" : 809, + "event_name" : "第9回アイドルLIVEロワイヤル" + } ], + "hash" : "dbea89c47dd5b612f5c1d0a802c77d19", + "id" : "1421301", + "profile" : { + "bust" : "80", + "height" : "145", + "hip" : "78", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "ロワイヤル・スクエア", + "alias_name_display" : "ロワイヤル・スクエア", + "event" : [ { + "event_id" : 809, + "event_name" : "第9回アイドルLIVEロワイヤル" + } ], + "hash" : "5c926c00a2911519dcdaec1349c4297f", + "id" : "1521302", + "profile" : { + "bust" : "80", + "height" : "145", + "hip" : "78", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "チャイナ大作戦", + "alias_name_display" : "チャイナ大作戦", + "hash" : "f7a21d6187b06fa18ed0bf215310a7cb", + "id" : "1432501", + "profile" : { + "bust" : "80", + "height" : "145", + "hip" : "78", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "チャイナ大作戦", + "alias_name_display" : "チャイナ大作戦", + "hash" : "cf166d5c57c0446980b7393d66318f22", + "id" : "1532502", + "profile" : { + "bust" : "80", + "height" : "145", + "hip" : "78", + "waist" : "55", + "weight" : "40" + } + } ], + "idol_id" : 36, + "idol_name" : "桃井あずき", + "idol_name_display" : "桃井あずき", + "units" : [ { + "id" : "88", + "name" : "桜花小町" + }, { + "id" : "163", + "name" : "フリルドスクエア" + } ] +}, { + "aliases" : [ { + "hash" : "e25bfc4f11de8a6ae9c2039c90c21348", + "id" : "1201101", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "hash" : "fe2ffdada9697df45b8967e875f05fac", + "id" : "1301102", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "UKスタイル", + "alias_name_display" : "UKスタイル", + "event" : [ { + "event_id" : 502, + "event_name" : "アイドルLIVEツアーinイギリス" + } ], + "hash" : "52d8710dc5cde4cdcef8c3191012e6d6", + "id" : "1207501", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "UKスタイル", + "alias_name_display" : "UKスタイル", + "event" : [ { + "event_id" : 502, + "event_name" : "アイドルLIVEツアーinイギリス" + } ], + "hash" : "c9660e96a053c8c20baf961e2b8c3987", + "id" : "1307502", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "優しい旋律", + "alias_name_display" : "優しい旋律", + "event" : [ { + "event_id" : 507, + "event_name" : "LIVEツアーカーニバルinドイツ" + } ], + "hash" : "3ba4b6c440bc9865e3ae92e6e698008e", + "id" : "1211801", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "優しい旋律", + "alias_name_display" : "優しい旋律", + "event" : [ { + "event_id" : 507, + "event_name" : "LIVEツアーカーニバルinドイツ" + } ], + "hash" : "bc953b2f0ec510c22eac406cf9bf3443", + "id" : "1311802", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ロックI.C", + "alias_name_display" : "ロックI.C", + "event" : [ { + "event_id" : 1202, + "event_name" : "目指せロックスター アイドルチャレンジ" + } ], + "hash" : "6522c3fb23ccf563aad50deebcab512b", + "id" : "1317602", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "さわやかスポーツ", + "alias_name_display" : "さわやかスポーツ", + "hash" : "30ac0cfd82daa33c8a661016a0009c90", + "id" : "1221601", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "さわやかスポーツ", + "alias_name_display" : "さわやかスポーツ", + "hash" : "118b941b346b356e9a0dddd100b73dcb", + "id" : "1321602", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ヘルシーリフレッシュ", + "alias_name_display" : "ヘルシーリフレッシュ", + "hash" : "291302f8800040930835be5be87a247e", + "id" : "1228601", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ヘルシーリフレッシュ", + "alias_name_display" : "ヘルシーリフレッシュ", + "hash" : "f8a4150602d2e7ae3ee4e94e40d99383", + "id" : "1328602", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ウィンターリゾートビーチ", + "alias_name_display" : "ウィンターリゾートビーチ", + "hash" : "af63524aed4f0e699b1de4eb7eba4b62", + "id" : "1231301", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ウィンターリゾートビーチ", + "alias_name_display" : "ウィンターリゾートビーチ", + "hash" : "9ff0c7e86bb6701f7bc022dccc35a9a1", + "id" : "1331302", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "小悪魔お嬢様", + "alias_name_display" : "小悪魔お嬢様", + "hash" : "ee49eaecc77b2a1dfaeacd791c5aa02e", + "id" : "1406501", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "小悪魔お嬢様", + "alias_name_display" : "小悪魔お嬢様", + "hash" : "f065a7f51f813216fa98deb02e1b6558", + "id" : "1506502", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "お嬢様の一幕", + "alias_name_display" : "お嬢様の一幕", + "event" : [ { + "event_id" : 705, + "event_name" : "第5回ドリームLIVEフェスティバル" + } ], + "hash" : "cc0bc0563db4d31f94553bec36f3ca30", + "id" : "1412101", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "お嬢様の一幕", + "alias_name_display" : "お嬢様の一幕", + "event" : [ { + "event_id" : 705, + "event_name" : "第5回ドリームLIVEフェスティバル" + } ], + "hash" : "b5c0174f4edd5af240e21e6da73fefa8", + "id" : "1512102", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ガールズロッカー", + "alias_name_display" : "ガールズロッカー", + "event" : [ { + "event_id" : 1202, + "event_name" : "目指せロックスター アイドルチャレンジ" + } ], + "hash" : "8f572e0b5bd2cde69ae199dfffb951d4", + "id" : "1417101", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ガールズロッカー", + "alias_name_display" : "ガールズロッカー", + "event" : [ { + "event_id" : 1202, + "event_name" : "目指せロックスター アイドルチャレンジ" + } ], + "hash" : "7be787dc8fe32a61130cfa876ac1c6e9", + "id" : "1517102", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ガールズロッカー・S", + "alias_name_display" : "ガールズロッカー・S", + "event" : [ { + "event_id" : 1202, + "event_name" : "目指せロックスター アイドルチャレンジ" + } ], + "hash" : "47d6db9899b8a6573a7c81e8db4fec3a", + "id" : "1417201", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ガールズロッカー・S", + "alias_name_display" : "ガールズロッカー・S", + "event" : [ { + "event_id" : 1202, + "event_name" : "目指せロックスター アイドルチャレンジ" + } ], + "hash" : "9a5fd2fbdb9c27b091d92a84cef6463c", + "id" : "1517202", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "リズムアップ", + "alias_name_display" : "リズムアップ", + "event" : [ { + "event_id" : 1404, + "event_name" : "第4回ぷちデレラコレクション" + } ], + "hash" : "8a224c1fb1faaf77041d8087dbd76710", + "id" : "1429001", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "リズムアップ", + "alias_name_display" : "リズムアップ", + "event" : [ { + "event_id" : 1404, + "event_name" : "第4回ぷちデレラコレクション" + } ], + "hash" : "a27419ca801cfd72eb2a724f82cdaf55", + "id" : "1529002", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + } ], + "idol_id" : 37, + "idol_name" : "涼宮星花", + "idol_name_display" : "涼宮星花", + "units" : [ { + "id" : "121", + "name" : "ヘルシーサバイブ" + }, { + "id" : "134", + "name" : "ノーブルセレブリティ" + }, { + "id" : "169", + "name" : "FOUR PIECE" + }, { + "id" : "170", + "name" : "UKスタイル" + } ] +}, { + "aliases" : [ { + "hash" : "7c175ee387814c3af476068126e9a693", + "id" : "1201201", + "profile" : { + "bust" : "86", + "height" : "153", + "hip" : "82", + "waist" : "56", + "weight" : "44" + } + }, { + "hash" : "8063038338477f74dbd692f75dadb42b", + "id" : "1301202", + "profile" : { + "bust" : "86", + "height" : "153", + "hip" : "82", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "エレガントレッド", + "alias_name_display" : "エレガントレッド", + "hash" : "caed99715be00834924660ef829d1828", + "id" : "1206901", + "profile" : { + "bust" : "86", + "height" : "153", + "hip" : "82", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "エレガントレッド", + "alias_name_display" : "エレガントレッド", + "hash" : "c0ff3b5b0c1a27a9c588a523004f6289", + "id" : "1306902", + "profile" : { + "bust" : "86", + "height" : "153", + "hip" : "82", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "ピンキービキニ", + "alias_name_display" : "ピンキービキニ", + "hash" : "9753b636f0ca1066fd101e5b4df7c022", + "id" : "1211301", + "profile" : { + "bust" : "86", + "height" : "153", + "hip" : "82", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "ピンキービキニ", + "alias_name_display" : "ピンキービキニ", + "hash" : "6b0b2de1e6e4ef2116b183803d25c17d", + "id" : "1311302", + "profile" : { + "bust" : "86", + "height" : "153", + "hip" : "82", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "セレクトメイド", + "alias_name_display" : "セレクトメイド", + "hash" : "bd4c00d4b8ad3eed06511322b751bce0", + "id" : "1215001", + "profile" : { + "bust" : "86", + "height" : "153", + "hip" : "82", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "セレクトメイド", + "alias_name_display" : "セレクトメイド", + "hash" : "de9f7f33793a7dd6c3165d79d5551938", + "id" : "1315002", + "profile" : { + "bust" : "86", + "height" : "153", + "hip" : "82", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "スウィートガール", + "alias_name_display" : "スウィートガール", + "event" : [ { + "event_id" : 715, + "event_name" : "第15回ドリームLIVEフェスティバル" + } ], + "hash" : "1ce85a1d9321855918cc353ccb64be18", + "id" : "1323302", + "profile" : { + "bust" : "86", + "height" : "153", + "hip" : "82", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "思い出の形", + "alias_name_display" : "思い出の形", + "hash" : "5f676b1eb5a5860c9286bb12f923a309", + "id" : "1227601", + "profile" : { + "bust" : "86", + "height" : "153", + "hip" : "82", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "思い出の形", + "alias_name_display" : "思い出の形", + "hash" : "d57de9624ff48a962e3a773d2886b8c0", + "id" : "1327602", + "profile" : { + "bust" : "86", + "height" : "153", + "hip" : "82", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "桜ガール", + "alias_name_display" : "桜ガール", + "event" : [ { + "event_id" : 104, + "event_name" : "桜舞う花見祭り" + } ], + "hash" : "a541e1700026bd6b0383659bd92c006b", + "id" : "1401201", + "profile" : { + "bust" : "86", + "height" : "153", + "hip" : "82", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "桜ガール", + "alias_name_display" : "桜ガール", + "event" : [ { + "event_id" : 104, + "event_name" : "桜舞う花見祭り" + } ], + "hash" : "afb1d70598ac915ff4ca6b31bc6073ab", + "id" : "1501202", + "profile" : { + "bust" : "86", + "height" : "153", + "hip" : "82", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "華・美・雅", + "alias_name_display" : "華・美・雅", + "event" : [ { + "event_id" : 1301, + "event_name" : "プロダクションマッチフェスティバルS" + } ], + "hash" : "1f1542c72d0aef515d3d40838783572a", + "id" : "1415801", + "profile" : { + "bust" : "86", + "height" : "153", + "hip" : "82", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "華・美・雅", + "alias_name_display" : "華・美・雅", + "event" : [ { + "event_id" : 1301, + "event_name" : "プロダクションマッチフェスティバルS" + } ], + "hash" : "7d15fa5eb270efe4d371bbb6f17dfde2", + "id" : "1515802", + "profile" : { + "bust" : "86", + "height" : "153", + "hip" : "82", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "スウィート・ロワイヤル", + "alias_name_display" : "スウィート・ロワイヤル", + "event" : [ { + "event_id" : 810, + "event_name" : "アイドルLIVEロワイヤル バレンタインSP" + } ], + "hash" : "0e32a0dafd89eb55cc8a31b0fcc6ef0b", + "id" : "1422301", + "profile" : { + "bust" : "86", + "height" : "153", + "hip" : "82", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "スウィート・ロワイヤル", + "alias_name_display" : "スウィート・ロワイヤル", + "event" : [ { + "event_id" : 810, + "event_name" : "アイドルLIVEロワイヤル バレンタインSP" + } ], + "hash" : "4ff3d0f9b5375da499d0d0f26c960500", + "id" : "1522302", + "profile" : { + "bust" : "86", + "height" : "153", + "hip" : "82", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "ミルキーミント", + "alias_name_display" : "ミルキーミント", + "event" : [ { + "event_id" : 1409, + "event_name" : "第9回ぷちデレラコレクション" + } ], + "hash" : "1ac01a720d642c8679ee7aaa60c5ef7d", + "id" : "1436101", + "profile" : { + "bust" : "86", + "height" : "153", + "hip" : "82", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "ミルキーミント", + "alias_name_display" : "ミルキーミント", + "event" : [ { + "event_id" : 1409, + "event_name" : "第9回ぷちデレラコレクション" + } ], + "hash" : "919e170503dee2d9ca5697d7903dcf56", + "id" : "1536102", + "profile" : { + "bust" : "86", + "height" : "153", + "hip" : "82", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "ルックアットミー", + "alias_name_display" : "ルックアットミー", + "hash" : "27d9297f2fa9b6bee8a4e1ecdf8f0a49", + "id" : "1439701", + "profile" : { + "bust" : "86", + "height" : "153", + "hip" : "82", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "ルックアットミー", + "alias_name_display" : "ルックアットミー", + "hash" : "ea6ea7bc7bb994ee3f40bf04f6126ec8", + "id" : "1539702", + "profile" : { + "bust" : "86", + "height" : "153", + "hip" : "82", + "waist" : "56", + "weight" : "44" + } + } ], + "idol_id" : 38, + "idol_name" : "月宮雅", + "idol_name_display" : "月宮雅", + "units" : [ { + "id" : "89", + "name" : "ガールズ・パワー" + } ] +}, { + "aliases" : [ { + "hash" : "fc97ba28d3a4f9ba0863b15761df3403", + "id" : "1201301", + "profile" : { + "bust" : "92", + "height" : "167", + "hip" : "84", + "waist" : "56", + "weight" : "48" + } + }, { + "hash" : "1a44a4f1c5ab36cbd0371578241348d7", + "id" : "1301302", + "profile" : { + "bust" : "92", + "height" : "167", + "hip" : "84", + "waist" : "56", + "weight" : "48" + } + }, { + "alias_name" : "ディーラーズハート", + "alias_name_display" : "ディーラーズハート", + "event" : [ { + "event_id" : "003", + "event_name" : "第3回プロダクションマッチフェスティバル" + } ], + "hash" : "9a344a0f7eacff98f66992e81351ccf4", + "id" : "1204801", + "profile" : { + "bust" : "92", + "height" : "167", + "hip" : "84", + "waist" : "56", + "weight" : "48" + } + }, { + "alias_name" : "ディーラーズハート", + "alias_name_display" : "ディーラーズハート", + "event" : [ { + "event_id" : "003", + "event_name" : "第3回プロダクションマッチフェスティバル" + } ], + "hash" : "28274ccdbc9075fbccd18ce5bb4e606c", + "id" : "1304802", + "profile" : { + "bust" : "92", + "height" : "167", + "hip" : "84", + "waist" : "56", + "weight" : "48" + } + }, { + "alias_name" : "湯けむり温泉", + "alias_name_display" : "湯けむり温泉", + "hash" : "1f613d36bd64b334cab8051894158168", + "id" : "1206301", + "profile" : { + "bust" : "92", + "height" : "167", + "hip" : "84", + "waist" : "56", + "weight" : "48" + } + }, { + "alias_name" : "湯けむり温泉", + "alias_name_display" : "湯けむり温泉", + "hash" : "30480e1245cdbe88f88165b669321b8a", + "id" : "1306302", + "profile" : { + "bust" : "92", + "height" : "167", + "hip" : "84", + "waist" : "56", + "weight" : "48" + } + }, { + "alias_name" : "ロワイヤルスタイル", + "alias_name_display" : "ロワイヤルスタイル", + "event" : [ { + "event_id" : 801, + "event_name" : "アイドルLIVEロワイヤル" + } ], + "hash" : "86fcf85ec26cd3626931ab92afdaad94", + "id" : "1212401", + "profile" : { + "bust" : "92", + "height" : "167", + "hip" : "84", + "waist" : "56", + "weight" : "48" + } + }, { + "alias_name" : "ロワイヤルスタイル", + "alias_name_display" : "ロワイヤルスタイル", + "event" : [ { + "event_id" : 801, + "event_name" : "アイドルLIVEロワイヤル" + } ], + "hash" : "a0e2019b4854b20b56dd58cd920c30f5", + "id" : "1312402", + "profile" : { + "bust" : "92", + "height" : "167", + "hip" : "84", + "waist" : "56", + "weight" : "48" + } + }, { + "alias_name" : "ビーチサイド", + "alias_name_display" : "ビーチサイド", + "hash" : "03496a2fbc355b045e66bab5430514bb", + "id" : "1217001", + "profile" : { + "bust" : "92", + "height" : "167", + "hip" : "84", + "waist" : "56", + "weight" : "48" + } + }, { + "alias_name" : "ビーチサイド", + "alias_name_display" : "ビーチサイド", + "hash" : "241884f39b4e56dcad17bc712b028f4b", + "id" : "1317002", + "profile" : { + "bust" : "92", + "height" : "167", + "hip" : "84", + "waist" : "56", + "weight" : "48" + } + }, { + "alias_name" : "ビター&スウィート", + "alias_name_display" : "ビター&スウィート", + "hash" : "dd939d75521e408a4185069f3168145e", + "id" : "1226101", + "profile" : { + "bust" : "92", + "height" : "167", + "hip" : "84", + "waist" : "56", + "weight" : "48" + } + }, { + "alias_name" : "ビター&スウィート", + "alias_name_display" : "ビター&スウィート", + "hash" : "4067febaae2008b50c289fbff62d0187", + "id" : "1326102", + "profile" : { + "bust" : "92", + "height" : "167", + "hip" : "84", + "waist" : "56", + "weight" : "48" + } + }, { + "alias_name" : "カインドスチーム", + "alias_name_display" : "カインドスチーム", + "event" : [ { + "event_id" : 727, + "event_name" : "第27回ドリームLIVEフェスティバル" + } ], + "hash" : "6dbeaec9fbbebd69811dc606b638cfb1", + "id" : "1231801", + "profile" : { + "bust" : "92", + "height" : "167", + "hip" : "84", + "waist" : "56", + "weight" : "48" + } + }, { + "alias_name" : "カインドスチーム", + "alias_name_display" : "カインドスチーム", + "event" : [ { + "event_id" : 727, + "event_name" : "第27回ドリームLIVEフェスティバル" + } ], + "hash" : "2a1eafa5944c41d04572380e89ea37c7", + "id" : "1331802", + "profile" : { + "bust" : "92", + "height" : "167", + "hip" : "84", + "waist" : "56", + "weight" : "48" + } + }, { + "alias_name" : "セクシーバニー", + "alias_name_display" : "セクシーバニー", + "event" : [ { + "event_id" : "008", + "event_name" : "第8回プロダクションマッチフェスティバル" + } ], + "hash" : "2cb9de945cba44c89e83966070671d50", + "id" : "1405601", + "profile" : { + "bust" : "92", + "height" : "167", + "hip" : "84", + "waist" : "56", + "weight" : "48" + } + }, { + "alias_name" : "セクシーバニー", + "alias_name_display" : "セクシーバニー", + "event" : [ { + "event_id" : "008", + "event_name" : "第8回プロダクションマッチフェスティバル" + } ], + "hash" : "472819ff358f1aca7a0521c1034b354b", + "id" : "1505602", + "profile" : { + "bust" : "92", + "height" : "167", + "hip" : "84", + "waist" : "56", + "weight" : "48" + } + }, { + "alias_name" : "ビューティーウィッチ", + "alias_name_display" : "ビューティーウィッチ", + "hash" : "232036d7ff6b8e1b9e458b312616f7a2", + "id" : "1420901", + "profile" : { + "bust" : "92", + "height" : "167", + "hip" : "84", + "waist" : "56", + "weight" : "48" + } + }, { + "alias_name" : "ビューティーウィッチ", + "alias_name_display" : "ビューティーウィッチ", + "hash" : "e71a7133899c8ed597bd85cabe1bec47", + "id" : "1520902", + "profile" : { + "bust" : "92", + "height" : "167", + "hip" : "84", + "waist" : "56", + "weight" : "48" + } + }, { + "alias_name" : "美しき挑発", + "alias_name_display" : "美しき挑発", + "event" : [ { + "event_id" : "023", + "event_name" : "第23回プロダクションマッチフェスティバル" + } ], + "hash" : "0c00b6d2d0c71c6582423064334de122", + "id" : "1427301", + "profile" : { + "bust" : "92", + "height" : "167", + "hip" : "84", + "waist" : "56", + "weight" : "48" + } + }, { + "alias_name" : "美しき挑発", + "alias_name_display" : "美しき挑発", + "event" : [ { + "event_id" : "023", + "event_name" : "第23回プロダクションマッチフェスティバル" + } ], + "hash" : "db3da083a2e7e999fad7983cd49e5127", + "id" : "1527302", + "profile" : { + "bust" : "92", + "height" : "167", + "hip" : "84", + "waist" : "56", + "weight" : "48" + } + }, { + "alias_name" : "牡丹に蝶", + "alias_name_display" : "牡丹に蝶", + "hash" : "864bcc62abdfd8c798e906bcd25c0e93", + "id" : "1434101", + "profile" : { + "bust" : "92", + "height" : "167", + "hip" : "84", + "waist" : "56", + "weight" : "48" + } + }, { + "alias_name" : "牡丹に蝶", + "alias_name_display" : "牡丹に蝶", + "hash" : "9cf74ba99862e8a7d52677bca5e48c3b", + "id" : "1534102", + "profile" : { + "bust" : "92", + "height" : "167", + "hip" : "84", + "waist" : "56", + "weight" : "48" + } + } ], + "idol_id" : 39, + "idol_name" : "兵藤レナ", + "idol_name_display" : "兵藤レナ", + "units" : [ { + "id" : "206", + "name" : "セクシーボンデージ" + }, { + "id" : "208", + "name" : "ロワイヤルスタイル" + } ] +}, { + "aliases" : [ { + "hash" : "3fed05567d232be4af746b2de681d024", + "id" : "1206401", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "79", + "waist" : "55", + "weight" : "43" + } + }, { + "hash" : "61a25ac7330f9ee3a9031a4d25655401", + "id" : "1306402", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "79", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "制服コレクション", + "alias_name_display" : "制服コレクション", + "hash" : "179872194da3a40845ce4bcd78966a52", + "id" : "1209001", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "79", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "制服コレクション", + "alias_name_display" : "制服コレクション", + "hash" : "8fd90fc1c4189e56096f2e69153854ec", + "id" : "1309002", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "79", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ハロウィンナイト", + "alias_name_display" : "ハロウィンナイト", + "hash" : "6caef3a534d1f4625f1d90b6f56e12d0", + "id" : "1212301", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "79", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ハロウィンナイト", + "alias_name_display" : "ハロウィンナイト", + "hash" : "83cf1238cba1adca0254e84311ea5e46", + "id" : "1312302", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "79", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ネイビーガール", + "alias_name_display" : "ネイビーガール", + "hash" : "43a8feff01bdd2d27e6a9b38ece36051", + "id" : "1217101", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "79", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ネイビーガール", + "alias_name_display" : "ネイビーガール", + "hash" : "9a15f28281366f1b094466f327122014", + "id" : "1317102", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "79", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ロワイヤルスタイルND", + "alias_name_display" : "ロワイヤルスタイルND", + "event" : [ { + "event_id" : 815, + "event_name" : "アイドルLIVEロワイヤル クリスマスSP" + } ], + "hash" : "17b23dc00a5f6df6c0a65406ba29b982", + "id" : "1225001", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "79", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ロワイヤルスタイルND", + "alias_name_display" : "ロワイヤルスタイルND", + "event" : [ { + "event_id" : 815, + "event_name" : "アイドルLIVEロワイヤル クリスマスSP" + } ], + "hash" : "01f0b8b40b28f7acc96f23d0fae17d0c", + "id" : "1325002", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "79", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "スクールプール", + "alias_name_display" : "スクールプール", + "hash" : "7bee54eb6e1aa1151ea8ebb7f5c2491b", + "id" : "1228701", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "79", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "スクールプール", + "alias_name_display" : "スクールプール", + "hash" : "a55fc181f4a8d7c2a8555a18b04ebbd4", + "id" : "1328702", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "79", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "洒落者レディ", + "alias_name_display" : "洒落者レディ", + "hash" : "0df2c7da9b7eee56871f4683852d63b8", + "id" : "1230901", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "79", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "洒落者レディ", + "alias_name_display" : "洒落者レディ", + "hash" : "e35375c6c987105d2a6235df452dc0c4", + "id" : "1330902", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "79", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "大傾奇娘", + "alias_name_display" : "大傾奇娘", + "event" : [ { + "event_id" : "014", + "event_name" : "第14回プロダクションマッチフェスティバル" + } ], + "hash" : "26b2a0c90723a9b074e65e4ecb2c937e", + "id" : "1411601", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "79", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "大傾奇娘", + "alias_name_display" : "大傾奇娘", + "event" : [ { + "event_id" : "014", + "event_name" : "第14回プロダクションマッチフェスティバル" + } ], + "hash" : "f04628745ca35b5896d03126fcdbed8d", + "id" : "1511602", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "79", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "天下御免☆ガール", + "alias_name_display" : "天下御免☆ガール", + "hash" : "1e02e3b87da7a70d8aa11609c3bbd95d", + "id" : "1424001", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "79", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "天下御免☆ガール", + "alias_name_display" : "天下御免☆ガール", + "hash" : "9392cd6501637b7e2d621e7459fc742f", + "id" : "1524002", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "79", + "waist" : "55", + "weight" : "43" + } + } ], + "idol_id" : 40, + "idol_name" : "丹羽仁美", + "idol_name_display" : "丹羽仁美", + "units" : [ { + "id" : "30", + "name" : "センゴク☆ランブ" + }, { + "id" : "156", + "name" : "センゴク☆華☆ランブ" + }, { + "id" : "161", + "name" : "ハロウィンナイト" + }, { + "id" : "210", + "name" : "ロワイヤルスタイルND" + } ] +}, { + "aliases" : [ { + "hash" : "6c298af445eea9e1b73482704eec4924", + "id" : "1201401", + "profile" : { + "bust" : "80", + "height" : "155", + "hip" : "83", + "waist" : "55", + "weight" : "43" + } + }, { + "hash" : "d312f7f0f9c305d7a15f822bf8d44705", + "id" : "1301402", + "profile" : { + "bust" : "80", + "height" : "155", + "hip" : "82", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "新春", + "alias_name_display" : "新春", + "event" : [ { + "event_id" : 102, + "event_name" : "アイドルおもちつき大会" + } ], + "hash" : "e280aa01f99069f3253b0c406eeaa233", + "id" : "1202201", + "profile" : { + "bust" : "80", + "height" : "155", + "hip" : "83", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "新春", + "alias_name_display" : "新春", + "event" : [ { + "event_id" : 102, + "event_name" : "アイドルおもちつき大会" + } ], + "hash" : "9fd5148925ca5f8523c6187a584da80c", + "id" : "1302202", + "profile" : { + "bust" : "80", + "height" : "155", + "hip" : "83", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "アニバーサリーピンク", + "alias_name_display" : "アニバーサリーピンク", + "event" : [ { + "event_id" : 403, + "event_name" : "アイドルプロデュース the 1st Anniversary" + } ], + "hash" : "e7c21fde6b9e0665f541deadd30cee5b", + "id" : "1206601", + "profile" : { + "bust" : "80", + "height" : "155", + "hip" : "82", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "アニバーサリーピンク", + "alias_name_display" : "アニバーサリーピンク", + "event" : [ { + "event_id" : 403, + "event_name" : "アイドルプロデュース the 1st Anniversary" + } ], + "hash" : "080b3fa1b8895f20a4462cba7ca55d44", + "id" : "1306602", + "profile" : { + "bust" : "80", + "height" : "155", + "hip" : "82", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "新春コレクション", + "alias_name_display" : "新春コレクション", + "hash" : "9602cd56a0d2dd6fb7c3aa2d911fb95c", + "id" : "1214001", + "profile" : { + "bust" : "80", + "height" : "155", + "hip" : "82", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "新春コレクション", + "alias_name_display" : "新春コレクション", + "hash" : "43c772ecc9cc0ac50c0cf5b8705da38a", + "id" : "1314002", + "profile" : { + "bust" : "80", + "height" : "155", + "hip" : "82", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "勇壮の槍騎士", + "alias_name_display" : "勇壮の槍騎士", + "event" : [ { + "event_id" : 516, + "event_name" : "幻想公演栄光のシュヴァリエ" + } ], + "hash" : "89745565c1ee9c10ebaa7adfbadde425", + "id" : "1219501", + "profile" : { + "bust" : "80", + "height" : "155", + "hip" : "82", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "勇壮の槍騎士", + "alias_name_display" : "勇壮の槍騎士", + "event" : [ { + "event_id" : 516, + "event_name" : "幻想公演栄光のシュヴァリエ" + } ], + "hash" : "6c2726aaf43a56940326e08fe6d8b098", + "id" : "1319502", + "profile" : { + "bust" : "80", + "height" : "155", + "hip" : "82", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "コレクションスタイル", + "alias_name_display" : "コレクションスタイル", + "event" : [ { + "event_id" : 1405, + "event_name" : "第5回ぷちデレラコレクション" + } ], + "hash" : "79a9a786007e9b69d544fcf709131652", + "id" : "1325902", + "profile" : { + "bust" : "80", + "height" : "155", + "hip" : "82", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "ニンジュツI.C", + "alias_name_display" : "ニンジュツI.C", + "event" : [ { + "event_id" : 1214, + "event_name" : "目指せくのいち アイドルチャレンジ" + } ], + "hash" : "b9d96c9cab89a83641b722cc05cc5559", + "id" : "1331502", + "profile" : { + "bust" : "80", + "height" : "155", + "hip" : "82", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "大器晩成", + "alias_name_display" : "大器晩成", + "event" : [ { + "event_id" : "002", + "event_name" : "第2回プロダクションマッチフェスティバル" + } ], + "hash" : "fb17067100ef5228c4de359c66c27336", + "id" : "1401701", + "profile" : { + "bust" : "80", + "height" : "155", + "hip" : "83", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "大器晩成", + "alias_name_display" : "大器晩成", + "event" : [ { + "event_id" : "002", + "event_name" : "第2回プロダクションマッチフェスティバル" + } ], + "hash" : "e276c868cb46d0753eb4162eb078acf1", + "id" : "1501702", + "profile" : { + "bust" : "80", + "height" : "155", + "hip" : "82", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "サンシャインビーチ", + "alias_name_display" : "サンシャインビーチ", + "event" : [ { + "event_id" : 506, + "event_name" : "アイドルLIVEツアーinハワイ" + } ], + "hash" : "0312fa19f6f938e7fe0f6125c9703e04", + "id" : "1408201", + "profile" : { + "bust" : "80", + "height" : "155", + "hip" : "82", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "サンシャインビーチ", + "alias_name_display" : "サンシャインビーチ", + "event" : [ { + "event_id" : 506, + "event_name" : "アイドルLIVEツアーinハワイ" + } ], + "hash" : "4c8ea91dd2c68daeb6caa2ef85d01325", + "id" : "1508202", + "profile" : { + "bust" : "80", + "height" : "155", + "hip" : "82", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "おてんば神楽", + "alias_name_display" : "おてんば神楽", + "hash" : "3188ae6a90fb6b6517c9a2a177c19be7", + "id" : "1415701", + "profile" : { + "bust" : "80", + "height" : "155", + "hip" : "82", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "おてんば神楽", + "alias_name_display" : "おてんば神楽", + "hash" : "e542dd24695b0c9853ff72cb182bd32a", + "id" : "1515702", + "profile" : { + "bust" : "80", + "height" : "155", + "hip" : "82", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "ぴかぴかガール", + "alias_name_display" : "ぴかぴかガール", + "hash" : "d0d75973eab499695ccec3682febd599", + "id" : "1426201", + "profile" : { + "bust" : "80", + "height" : "155", + "hip" : "82", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "ぴかぴかガール", + "alias_name_display" : "ぴかぴかガール", + "hash" : "74120ffd2553011dabfc8baa1c07cb54", + "id" : "1526202", + "profile" : { + "bust" : "80", + "height" : "155", + "hip" : "82", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "古都の花嫁", + "alias_name_display" : "古都の花嫁", + "hash" : "41f86f41f533b5dfd2c406298fd4bbd1", + "id" : "1433301", + "profile" : { + "bust" : "80", + "height" : "155", + "hip" : "82", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "古都の花嫁", + "alias_name_display" : "古都の花嫁", + "hash" : "2fe37f02176fe6b24e4ecec33318811d", + "id" : "1533302", + "profile" : { + "bust" : "80", + "height" : "155", + "hip" : "82", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "不屈のくのいち", + "alias_name_display" : "不屈のくのいち", + "event" : [ { + "event_id" : 1214, + "event_name" : "目指せくのいち アイドルチャレンジ" + } ], + "hash" : "eb61ed2c8f8e22bbd115f50600da6c6c", + "id" : "1437901", + "profile" : { + "bust" : "80", + "height" : "155", + "hip" : "82", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "不屈のくのいち", + "alias_name_display" : "不屈のくのいち", + "event" : [ { + "event_id" : 1214, + "event_name" : "目指せくのいち アイドルチャレンジ" + } ], + "hash" : "679389de74afb22434d01fce5723c3cb", + "id" : "1537902", + "profile" : { + "bust" : "80", + "height" : "155", + "hip" : "82", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "朗笑のくのいち", + "alias_name_display" : "朗笑のくのいち", + "event" : [ { + "event_id" : 1214, + "event_name" : "目指せくのいち アイドルチャレンジ" + } ], + "hash" : "aa1f7b77aac0449d2c04b32f6b2d72b6", + "id" : "1438001", + "profile" : { + "bust" : "80", + "height" : "155", + "hip" : "82", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "朗笑のくのいち", + "alias_name_display" : "朗笑のくのいち", + "event" : [ { + "event_id" : 1214, + "event_name" : "目指せくのいち アイドルチャレンジ" + } ], + "hash" : "d9be7d1d689f9e143ff27dd1063a0040", + "id" : "1538002", + "profile" : { + "bust" : "80", + "height" : "155", + "hip" : "82", + "waist" : "55", + "weight" : "42" + } + } ], + "idol_id" : 41, + "idol_name" : "道明寺歌鈴", + "idol_name_display" : "道明寺歌鈴", + "units" : [ { + "id" : "5", + "name" : "インディゴ・ベル" + }, { + "id" : "179", + "name" : "春霞" + } ] +}, { + "aliases" : [ { + "hash" : "73221b45dc3a76f73b08bb8854191273", + "id" : "1201501", + "profile" : { + "bust" : "74", + "height" : "145", + "hip" : "78", + "waist" : "54", + "weight" : "37" + } + }, { + "hash" : "a1dbdfc71c12beaaed6508a7569442ab", + "id" : "1301502", + "profile" : { + "bust" : "74", + "height" : "145", + "hip" : "78", + "waist" : "54", + "weight" : "37" + } + }, { + "alias_name" : "制服グリーン", + "alias_name_display" : "制服グリーン", + "hash" : "155ed2dec00ed07a45f8c784540cb149", + "id" : "1203101", + "profile" : { + "bust" : "74", + "height" : "145", + "hip" : "78", + "waist" : "54", + "weight" : "37" + } + }, { + "alias_name" : "制服ブラウン", + "alias_name_display" : "制服ブラウン", + "hash" : "d157ad4390a55281f9462b8b46ed45ef", + "id" : "1203102", + "profile" : { + "bust" : "74", + "height" : "145", + "hip" : "78", + "waist" : "54", + "weight" : "37" + } + }, { + "alias_name" : "制服ブラック", + "alias_name_display" : "制服ブラック", + "hash" : "35d33f8fd00c39daeef8513a854e44bf", + "id" : "1203103", + "profile" : { + "bust" : "74", + "height" : "145", + "hip" : "78", + "waist" : "54", + "weight" : "37" + } + }, { + "alias_name" : "制服ネイビー", + "alias_name_display" : "制服ネイビー", + "hash" : "167a430223c78828914bedf21a062497", + "id" : "1203104", + "profile" : { + "bust" : "74", + "height" : "145", + "hip" : "78", + "waist" : "54", + "weight" : "37" + } + }, { + "alias_name" : "ピンクダイヤモンド765", + "alias_name_display" : "ピンクダイヤモンド765", + "hash" : "32d74cb0a88ebc1f09461f43f3f96572", + "id" : "1303105", + "profile" : { + "bust" : "74", + "height" : "145", + "hip" : "78", + "waist" : "54", + "weight" : "37" + } + }, { + "alias_name" : "エバーグリーンリーブス", + "alias_name_display" : "エバーグリーンリーブス", + "hash" : "5087a9aa0d84d7a8f29201e635567523", + "id" : "1303106", + "profile" : { + "bust" : "74", + "height" : "145", + "hip" : "78", + "waist" : "54", + "weight" : "37" + } + }, { + "alias_name" : "ギルデッドマドモアゼル", + "alias_name_display" : "ギルデッドマドモアゼル", + "hash" : "a36bba235ac6ac42a80b30fa4bda8119", + "id" : "1303107", + "profile" : { + "bust" : "74", + "height" : "145", + "hip" : "78", + "waist" : "54", + "weight" : "37" + } + }, { + "alias_name" : "スカーレットスプライト", + "alias_name_display" : "スカーレットスプライト", + "hash" : "02405f18ba16f3b333f4de1c9d4860a7", + "id" : "1303108", + "profile" : { + "bust" : "74", + "height" : "145", + "hip" : "78", + "waist" : "54", + "weight" : "37" + } + }, { + "alias_name" : "スタイリッシュデニム", + "alias_name_display" : "スタイリッシュデニム", + "hash" : "732c5c98cdfdb6e0619317091537bc8f", + "id" : "1303109", + "profile" : { + "bust" : "74", + "height" : "145", + "hip" : "78", + "waist" : "54", + "weight" : "37" + } + }, { + "alias_name" : "元気120%", + "alias_name_display" : "元気120%", + "hash" : "d63c76c319fc691da462ea3644e08fac", + "id" : "1401010", + "profile" : { + "bust" : "74", + "height" : "145", + "hip" : "78", + "waist" : "54", + "weight" : "37" + } + }, { + "alias_name" : "元気120%", + "alias_name_display" : "元気120%", + "hash" : "0c964265c9e630ed4e9750660191acea", + "id" : "1501011", + "profile" : { + "bust" : "74", + "height" : "145", + "hip" : "78", + "waist" : "54", + "weight" : "37" + } + }, { + "alias_name" : "小さなお姉さん", + "alias_name_display" : "小さなお姉さん", + "hash" : "64c325a7f50f059665e36c3cc67d33ae", + "id" : "1403201", + "profile" : { + "bust" : "74", + "height" : "145", + "hip" : "78", + "waist" : "54", + "weight" : "37" + } + }, { + "alias_name" : "小さなお姉さん", + "alias_name_display" : "小さなお姉さん", + "hash" : "d0ea18fc5575dd86bc9e9657f0d720c3", + "id" : "1503202", + "profile" : { + "bust" : "74", + "height" : "145", + "hip" : "78", + "waist" : "54", + "weight" : "37" + } + }, { + "alias_name" : "オオカミガール", + "alias_name_display" : "オオカミガール", + "hash" : "404957c126156e54750231e4e58221ad", + "id" : "1505302", + "profile" : { + "bust" : "74", + "height" : "145", + "hip" : "78", + "waist" : "54", + "weight" : "37" + } + } ], + "idol_id" : 42, + "idol_name" : "高槻やよい", + "idol_name_display" : "高槻やよい" +}, { + "aliases" : [ { + "hash" : "7c3cc9c1c697ecc6b62dc2d5a835f534", + "id" : "1201601", + "profile" : { + "bust" : "75", + "height" : "159", + "hip" : "78", + "waist" : "57", + "weight" : "44" + } + }, { + "hash" : "ccf8b0fa90c6686cf061bc155458c771", + "id" : "1301602", + "profile" : { + "bust" : "75", + "height" : "159", + "hip" : "78", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "制服ベージュ", + "alias_name_display" : "制服ベージュ", + "hash" : "66f955d622985f1bd2d2dfeec8676619", + "id" : "1205401", + "profile" : { + "bust" : "75", + "height" : "159", + "hip" : "78", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "制服ブルー", + "alias_name_display" : "制服ブルー", + "hash" : "daa75ed58a88e9a32500dec7290798b0", + "id" : "1205402", + "profile" : { + "bust" : "75", + "height" : "159", + "hip" : "78", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "制服ブラック", + "alias_name_display" : "制服ブラック", + "hash" : "e9e704ca90a1625b045a6ee36fddb9c6", + "id" : "1205403", + "profile" : { + "bust" : "75", + "height" : "159", + "hip" : "78", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "制服ホワイト", + "alias_name_display" : "制服ホワイト", + "hash" : "77854d40d4d4fb3562a3fe90562fa361", + "id" : "1205404", + "profile" : { + "bust" : "75", + "height" : "159", + "hip" : "78", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "ピンクダイヤモンド765", + "alias_name_display" : "ピンクダイヤモンド765", + "hash" : "c7a3954ec5559612549fc074eef50514", + "id" : "1305405", + "profile" : { + "bust" : "75", + "height" : "159", + "hip" : "78", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "スカーレットスプライト", + "alias_name_display" : "スカーレットスプライト", + "hash" : "c4edddba0e55fd7db3c62f2adf327c3d", + "id" : "1305406", + "profile" : { + "bust" : "75", + "height" : "159", + "hip" : "78", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "パウダースノーホワイティ", + "alias_name_display" : "パウダースノーホワイティ", + "hash" : "aaba42a5b3189a77d67a4fc3c2c01744", + "id" : "1305407", + "profile" : { + "bust" : "75", + "height" : "159", + "hip" : "78", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "ギルデッドマドモアゼル", + "alias_name_display" : "ギルデッドマドモアゼル", + "hash" : "ce60d87b5d013cd6f4c2f1cbb330b402", + "id" : "1305408", + "profile" : { + "bust" : "75", + "height" : "159", + "hip" : "78", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "メイデンインブラック", + "alias_name_display" : "メイデンインブラック", + "hash" : "16ad0ffc22898e08cca59ba3dba7274b", + "id" : "1305409", + "profile" : { + "bust" : "75", + "height" : "159", + "hip" : "78", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "王子様な女子", + "alias_name_display" : "王子様な女子", + "hash" : "d13b3a791d8be0063fb81ab21724aaef", + "id" : "1400301", + "profile" : { + "bust" : "75", + "height" : "159", + "hip" : "78", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "王子様な女子", + "alias_name_display" : "王子様な女子", + "hash" : "b50b95609ded8046828f33f9cba3c875", + "id" : "1500302", + "profile" : { + "bust" : "75", + "height" : "159", + "hip" : "78", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "キューティープリンセス", + "alias_name_display" : "キューティープリンセス", + "hash" : "20c2b7d34506df953c0adfae8b0073d7", + "id" : "1402710", + "profile" : { + "bust" : "75", + "height" : "159", + "hip" : "78", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "キューティープリンセス", + "alias_name_display" : "キューティープリンセス", + "hash" : "d7496c4167acfdfd916f526a3a01f114", + "id" : "1502711", + "profile" : { + "bust" : "75", + "height" : "159", + "hip" : "78", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "チーム765エンジェルス", + "alias_name_display" : "チーム765エンジェルス", + "hash" : "2838e5d36d4e11a09fac86270dcf63a4", + "id" : "1508902", + "profile" : { + "bust" : "75", + "height" : "159", + "hip" : "78", + "waist" : "57", + "weight" : "44" + } + } ], + "idol_id" : 43, + "idol_name" : "菊地真", + "idol_name_display" : "菊地真" +}, { + "aliases" : [ { + "hash" : "f8f4c3be1b401f47318d440f2bcf9bec", + "id" : "1201701", + "profile" : { + "bust" : "83", + "height" : "152", + "hip" : "80", + "waist" : "56", + "weight" : "41" + } + }, { + "hash" : "bd13be7dd4e65b4b5aa07234c6e80c87", + "id" : "1301702", + "profile" : { + "bust" : "83", + "height" : "152", + "hip" : "80", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "沖縄元気っ娘", + "alias_name_display" : "沖縄元気っ娘", + "hash" : "c5e454cbcc691c9e7863eac4fe359e5d", + "id" : "1400201", + "profile" : { + "bust" : "83", + "height" : "152", + "hip" : "80", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "沖縄元気っ娘", + "alias_name_display" : "沖縄元気っ娘", + "hash" : "a23658ae02efa72867661794bccf1d28", + "id" : "1500202", + "profile" : { + "bust" : "83", + "height" : "152", + "hip" : "80", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "1stメモリアル", + "alias_name_display" : "1stメモリアル", + "hash" : "c5e1fe7ef2b387eb27a9adbb9d9dfa6c", + "id" : "1504202", + "profile" : { + "bust" : "83", + "height" : "152", + "hip" : "80", + "waist" : "56", + "weight" : "41" + } + } ], + "idol_id" : 44, + "idol_name" : "我那覇響", + "idol_name_display" : "我那覇響" +}, { + "aliases" : [ { + "hash" : "0b94e4097c16bce2c2579da0914234c5", + "id" : "1201801", + "profile" : { + "bust" : "85", + "height" : "158", + "hip" : "86", + "waist" : "58", + "weight" : "47" + } + }, { + "hash" : "dcd3b9f7c582181235d47dde3b4a0fb5", + "id" : "1301802", + "profile" : { + "bust" : "85", + "height" : "158", + "hip" : "86", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "デビリッシュゴシック", + "alias_name_display" : "デビリッシュゴシック", + "hash" : "94c8abcfe804ad7d1ffba83136b21276", + "id" : "1209201", + "profile" : { + "bust" : "85", + "height" : "158", + "hip" : "86", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "デビリッシュゴシック", + "alias_name_display" : "デビリッシュゴシック", + "hash" : "02bb974e8ed0f1bcece903d42d309c0f", + "id" : "1309202", + "profile" : { + "bust" : "85", + "height" : "158", + "hip" : "86", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ウィンタースタイル", + "alias_name_display" : "ウィンタースタイル", + "hash" : "5a2704f747a6d29b004f47f0ed95a83b", + "id" : "1214701", + "profile" : { + "bust" : "85", + "height" : "158", + "hip" : "86", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ウィンタースタイル", + "alias_name_display" : "ウィンタースタイル", + "hash" : "dbae7ad87fe85eafc52397784ba763ed", + "id" : "1314702", + "profile" : { + "bust" : "85", + "height" : "158", + "hip" : "86", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "黒白微笑", + "alias_name_display" : "黒白微笑", + "event" : [ { + "event_id" : 514, + "event_name" : "功夫公演 香港大決戦" + } ], + "hash" : "a0e2153bde26babe6152d492ec24e1a9", + "id" : "1218401", + "profile" : { + "bust" : "85", + "height" : "158", + "hip" : "86", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "黒白微笑", + "alias_name_display" : "黒白微笑", + "event" : [ { + "event_id" : 514, + "event_name" : "功夫公演 香港大決戦" + } ], + "hash" : "e12ff3a3ff2743eabeda9478f2a94cc1", + "id" : "1318402", + "profile" : { + "bust" : "85", + "height" : "158", + "hip" : "86", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "アダルトスタイル", + "alias_name_display" : "アダルトスタイル", + "hash" : "19b317324b93b4c203f1aa474c8b6143", + "id" : "1220001", + "profile" : { + "bust" : "85", + "height" : "158", + "hip" : "86", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "アダルトスタイル", + "alias_name_display" : "アダルトスタイル", + "hash" : "118543d91139af711399d7bb6b029375", + "id" : "1320002", + "profile" : { + "bust" : "85", + "height" : "158", + "hip" : "86", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "新春レディ", + "alias_name_display" : "新春レディ", + "event" : [ { + "event_id" : 718, + "event_name" : "ドリームLIVEフェスティバル 新春SP" + } ], + "hash" : "71fa9fd263816362735276ee3d1dfc04", + "id" : "1225301", + "profile" : { + "bust" : "85", + "height" : "158", + "hip" : "86", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "新春レディ", + "alias_name_display" : "新春レディ", + "event" : [ { + "event_id" : 718, + "event_name" : "ドリームLIVEフェスティバル 新春SP" + } ], + "hash" : "ec807ef1db97e4c15ef318f9a6596941", + "id" : "1325302", + "profile" : { + "bust" : "85", + "height" : "158", + "hip" : "86", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "サバゲーI.C", + "alias_name_display" : "サバゲーI.C", + "event" : [ { + "event_id" : 1210, + "event_name" : "アイドルチャレンジ サバイバルゲーム編" + } ], + "hash" : "15fdd1bf43a64e0bfe2a9f7dc5360e3b", + "id" : "1327502", + "profile" : { + "bust" : "85", + "height" : "158", + "hip" : "86", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ホーリーコーラス", + "alias_name_display" : "ホーリーコーラス", + "hash" : "2dc06c7605dee3eafbb4619312238f83", + "id" : "1231101", + "profile" : { + "bust" : "85", + "height" : "158", + "hip" : "86", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ホーリーコーラス", + "alias_name_display" : "ホーリーコーラス", + "hash" : "25172c5667ad6f1d3d5989e5aa1fd94e", + "id" : "1331102", + "profile" : { + "bust" : "85", + "height" : "158", + "hip" : "86", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "二面性の天使", + "alias_name_display" : "二面性の天使", + "event" : [ { + "event_id" : 703, + "event_name" : "第3回ドリームLIVEフェスティバル" + } ], + "hash" : "6d84be33bafbe45f651c50fd5114c4d0", + "id" : "1409601", + "profile" : { + "bust" : "85", + "height" : "158", + "hip" : "86", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "二面性の天使", + "alias_name_display" : "二面性の天使", + "event" : [ { + "event_id" : 703, + "event_name" : "第3回ドリームLIVEフェスティバル" + } ], + "hash" : "ce10dbc0aa9373a75ec4f514d644f62a", + "id" : "1509602", + "profile" : { + "bust" : "85", + "height" : "158", + "hip" : "86", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "グラマラス・ロワイヤル", + "alias_name_display" : "グラマラス・ロワイヤル", + "event" : [ { + "event_id" : 813, + "event_name" : "第13回アイドルLIVEロワイヤル" + } ], + "hash" : "de191e77ede324ba840d36ca006d90f1", + "id" : "1425701", + "profile" : { + "bust" : "85", + "height" : "158", + "hip" : "86", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "グラマラス・ロワイヤル", + "alias_name_display" : "グラマラス・ロワイヤル", + "event" : [ { + "event_id" : 813, + "event_name" : "第13回アイドルLIVEロワイヤル" + } ], + "hash" : "519d323f0a2f06e97bd6af40e79fcb98", + "id" : "1525702", + "profile" : { + "bust" : "85", + "height" : "158", + "hip" : "86", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "デモニックソルジャー", + "alias_name_display" : "デモニックソルジャー", + "event" : [ { + "event_id" : 1210, + "event_name" : "アイドルチャレンジ サバイバルゲーム編" + } ], + "hash" : "f4de77473b4f78559dc3f8500deee18f", + "id" : "1432301", + "profile" : { + "bust" : "85", + "height" : "158", + "hip" : "86", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "デモニックソルジャー", + "alias_name_display" : "デモニックソルジャー", + "event" : [ { + "event_id" : 1210, + "event_name" : "アイドルチャレンジ サバイバルゲーム編" + } ], + "hash" : "ae9a28ada0457cda1ba5a199023587d3", + "id" : "1532302", + "profile" : { + "bust" : "85", + "height" : "158", + "hip" : "86", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "デモニックソルジャー・S", + "alias_name_display" : "デモニックソルジャー・S", + "event" : [ { + "event_id" : 1210, + "event_name" : "アイドルチャレンジ サバイバルゲーム編" + } ], + "hash" : "647923bb59ff1a909f0f52938608227e", + "id" : "1432401", + "profile" : { + "bust" : "85", + "height" : "158", + "hip" : "86", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "デモニックソルジャー・S", + "alias_name_display" : "デモニックソルジャー・S", + "event" : [ { + "event_id" : 1210, + "event_name" : "アイドルチャレンジ サバイバルゲーム編" + } ], + "hash" : "5889d8f072f2fac046d4e3b55e2ac4ce", + "id" : "1532402", + "profile" : { + "bust" : "85", + "height" : "158", + "hip" : "86", + "waist" : "57", + "weight" : "46" + } + } ], + "idol_id" : 45, + "idol_name" : "柳清良", + "idol_name_display" : "柳清良", + "units" : [ { + "id" : "157", + "name" : "デビリッシュゴシック" + }, { + "id" : "207", + "name" : "ムーランルージュ" + } ] +}, { + "aliases" : [ { + "alias_name" : "制服ベージュ", + "alias_name_display" : "制服ベージュ", + "hash" : "85d13609464513894fdecb0baad54c2a", + "id" : "1201901", + "profile" : { + "bust" : "83", + "height" : "158", + "hip" : "82", + "waist" : "56", + "weight" : "46" + } + }, { + "alias_name" : "制服グレー", + "alias_name_display" : "制服グレー", + "hash" : "e5b85211de1d55c40d370545a8d61d7f", + "id" : "1201902", + "profile" : { + "bust" : "83", + "height" : "158", + "hip" : "82", + "waist" : "56", + "weight" : "46" + } + }, { + "alias_name" : "制服ピンク", + "alias_name_display" : "制服ピンク", + "hash" : "8281a506b62578a43608d55490ef4b9d", + "id" : "1201903", + "profile" : { + "bust" : "83", + "height" : "158", + "hip" : "82", + "waist" : "56", + "weight" : "46" + } + }, { + "alias_name" : "制服ブラック", + "alias_name_display" : "制服ブラック", + "hash" : "57c6cb85e692ea03a15052bb1c3bc7d6", + "id" : "1201904", + "profile" : { + "bust" : "83", + "height" : "158", + "hip" : "82", + "waist" : "56", + "weight" : "46" + } + }, { + "alias_name" : "ザ☆ワイルドストロベリー", + "alias_name_display" : "ザ☆ワイルドストロベリー", + "hash" : "5152c6a98ac868d03a15f55534c5a32d", + "id" : "1301905", + "profile" : { + "bust" : "83", + "height" : "158", + "hip" : "82", + "waist" : "56", + "weight" : "46" + } + }, { + "alias_name" : "ダリアノワール", + "alias_name_display" : "ダリアノワール", + "hash" : "e24cfc29ae88b186122cc858d94fe1a7", + "id" : "1301906", + "profile" : { + "bust" : "83", + "height" : "158", + "hip" : "82", + "waist" : "56", + "weight" : "46" + } + }, { + "alias_name" : "レイクサイドパンジー", + "alias_name_display" : "レイクサイドパンジー", + "hash" : "29907bc26188d3171fa0eab89f44b9b7", + "id" : "1301907", + "profile" : { + "bust" : "83", + "height" : "158", + "hip" : "82", + "waist" : "56", + "weight" : "46" + } + }, { + "alias_name" : "フォーチューンクローバー", + "alias_name_display" : "フォーチューンクローバー", + "hash" : "fe2fe78b29c7d4bdc824d820fd130c45", + "id" : "1301908", + "profile" : { + "bust" : "83", + "height" : "158", + "hip" : "82", + "waist" : "56", + "weight" : "46" + } + }, { + "alias_name" : "ホットサマーシトラス", + "alias_name_display" : "ホットサマーシトラス", + "hash" : "75c1d9166fbf0b09e1cbb867000a2556", + "id" : "1301909", + "profile" : { + "bust" : "83", + "height" : "158", + "hip" : "82", + "waist" : "56", + "weight" : "46" + } + }, { + "alias_name" : "普通の女の子", + "alias_name_display" : "普通の女の子", + "hash" : "894f904e12ca1fcf4891b47839c97ab7", + "id" : "1400110", + "profile" : { + "bust" : "83", + "height" : "158", + "hip" : "82", + "waist" : "56", + "weight" : "46" + } + }, { + "alias_name" : "普通の女の子", + "alias_name_display" : "普通の女の子", + "hash" : "e7fe451b0e7483323d10d1c8b038bf94", + "id" : "1500111", + "profile" : { + "bust" : "83", + "height" : "158", + "hip" : "82", + "waist" : "56", + "weight" : "46" + } + }, { + "alias_name" : "王道アイドル", + "alias_name_display" : "王道アイドル", + "hash" : "cbd4d17190b8b2715f502211ec0ededb", + "id" : "1401401", + "profile" : { + "bust" : "83", + "height" : "158", + "hip" : "82", + "waist" : "56", + "weight" : "46" + } + }, { + "alias_name" : "王道アイドル", + "alias_name_display" : "王道アイドル", + "hash" : "fbbab084cf4eee36bb4a708a6d7be8d0", + "id" : "1501402", + "profile" : { + "bust" : "83", + "height" : "158", + "hip" : "82", + "waist" : "56", + "weight" : "46" + } + }, { + "alias_name" : "シャイニーフェスタ", + "alias_name_display" : "シャイニーフェスタ", + "hash" : "3d10639a24d9fb8457ee6352be6922bf", + "id" : "1403301", + "profile" : { + "bust" : "83", + "height" : "158", + "hip" : "82", + "waist" : "56", + "weight" : "46" + } + }, { + "alias_name" : "シャイニーフェスタ", + "alias_name_display" : "シャイニーフェスタ", + "hash" : "3e312f0be1822c45a9f64013e879f7c6", + "id" : "1503302", + "profile" : { + "bust" : "83", + "height" : "158", + "hip" : "82", + "waist" : "56", + "weight" : "46" + } + }, { + "alias_name" : "ユカタメイド", + "alias_name_display" : "ユカタメイド", + "hash" : "e3053b178bab9f6dca92afea00011551", + "id" : "1504902", + "profile" : { + "bust" : "83", + "height" : "158", + "hip" : "82", + "waist" : "56", + "weight" : "46" + } + }, { + "alias_name" : "アーリーサマーバカンス", + "alias_name_display" : "アーリーサマーバカンス", + "hash" : "eb10c4da293f3f132f146989bd997f64", + "id" : "1507402", + "profile" : { + "bust" : "83", + "height" : "158", + "hip" : "82", + "waist" : "56", + "weight" : "46" + } + } ], + "idol_id" : 46, + "idol_name" : "天海春香", + "idol_name_display" : "天海春香" +}, { + "aliases" : [ { + "event" : [ { + "event_id" : 101, + "event_name" : "星降るクリスマス" + } ], + "hash" : "e45c0c3027d05bf557aae92dadc353b8", + "id" : "1202101", + "profile" : { + "bust" : "85", + "height" : "163", + "hip" : "88", + "waist" : "60", + "weight" : "48" + } + }, { + "event" : [ { + "event_id" : 101, + "event_name" : "星降るクリスマス" + } ], + "hash" : "1300313f0ac00ac625a3ab3b05e784f8", + "id" : "1302102", + "profile" : { + "bust" : "85", + "height" : "163", + "hip" : "88", + "waist" : "60", + "weight" : "48" + } + }, { + "alias_name" : "コスメティックガール", + "alias_name_display" : "コスメティックガール", + "event" : [ { + "event_id" : "007", + "event_name" : "第7回プロダクションマッチフェスティバル" + } ], + "hash" : "a7c5c0dadc49e8461079d832e96fda8d", + "id" : "1207201", + "profile" : { + "bust" : "85", + "height" : "163", + "hip" : "88", + "waist" : "60", + "weight" : "48" + } + }, { + "alias_name" : "コスメティックガール", + "alias_name_display" : "コスメティックガール", + "event" : [ { + "event_id" : "007", + "event_name" : "第7回プロダクションマッチフェスティバル" + } ], + "hash" : "49a867483c6dc78f68b39dd6d12da52c", + "id" : "1307202", + "profile" : { + "bust" : "85", + "height" : "163", + "hip" : "88", + "waist" : "60", + "weight" : "48" + } + }, { + "alias_name" : "びっくりウィンク", + "alias_name_display" : "びっくりウィンク", + "hash" : "baa18ddffaa449e63527a4d6c1103b69", + "id" : "1219001", + "profile" : { + "bust" : "85", + "height" : "163", + "hip" : "88", + "waist" : "60", + "weight" : "48" + } + }, { + "alias_name" : "びっくりウィンク", + "alias_name_display" : "びっくりウィンク", + "hash" : "42572e4f6dd0a720da70c1fe78cc39bf", + "id" : "1319002", + "profile" : { + "bust" : "85", + "height" : "163", + "hip" : "88", + "waist" : "60", + "weight" : "48" + } + }, { + "alias_name" : "オータムコレクション", + "alias_name_display" : "オータムコレクション", + "hash" : "72905292c809034429f21d1ca7a03213", + "id" : "1224001", + "profile" : { + "bust" : "85", + "height" : "163", + "hip" : "88", + "waist" : "60", + "weight" : "48" + } + }, { + "alias_name" : "オータムコレクション", + "alias_name_display" : "オータムコレクション", + "hash" : "ba1e7aa823e2f486bd0b7f8dfa9f92c5", + "id" : "1324002", + "profile" : { + "bust" : "85", + "height" : "163", + "hip" : "88", + "waist" : "60", + "weight" : "48" + } + }, { + "alias_name" : "サマービーチ", + "alias_name_display" : "サマービーチ", + "hash" : "a8af8761f80d9f7e4631228ebc66c583", + "id" : "1229301", + "profile" : { + "bust" : "85", + "height" : "163", + "hip" : "88", + "waist" : "60", + "weight" : "48" + } + }, { + "alias_name" : "サマービーチ", + "alias_name_display" : "サマービーチ", + "hash" : "a584d77ce572744ffc8eeae90e0f7a0b", + "id" : "1329302", + "profile" : { + "bust" : "85", + "height" : "163", + "hip" : "88", + "waist" : "60", + "weight" : "48" + } + }, { + "alias_name" : "ロマンチックナイト", + "alias_name_display" : "ロマンチックナイト", + "event" : [ { + "event_id" : 508, + "event_name" : "LIVEツアーカーニバルinスペースワールド" + } ], + "hash" : "9c24447ef9d6a10a524b9de555ecd05a", + "id" : "1409901", + "profile" : { + "bust" : "85", + "height" : "163", + "hip" : "88", + "waist" : "60", + "weight" : "48" + } + }, { + "alias_name" : "ロマンチックナイト", + "alias_name_display" : "ロマンチックナイト", + "event" : [ { + "event_id" : 508, + "event_name" : "LIVEツアーカーニバルinスペースワールド" + } ], + "hash" : "1edf266e99871ff9d48d791d03376b23", + "id" : "1509902", + "profile" : { + "bust" : "85", + "height" : "163", + "hip" : "88", + "waist" : "60", + "weight" : "48" + } + }, { + "alias_name" : "ビューティーヒール", + "alias_name_display" : "ビューティーヒール", + "event" : [ { + "event_id" : 523, + "event_name" : "鋼鉄公演 きらりんロボ -襲来!コスメティア帝国-" + } ], + "hash" : "7cf80f4e1d6137d41dcb35a1228b2c4f", + "id" : "1430501", + "profile" : { + "bust" : "85", + "height" : "163", + "hip" : "88", + "waist" : "60", + "weight" : "48" + } + }, { + "alias_name" : "ビューティーヒール", + "alias_name_display" : "ビューティーヒール", + "event" : [ { + "event_id" : 523, + "event_name" : "鋼鉄公演 きらりんロボ -襲来!コスメティア帝国-" + } ], + "hash" : "33f32d395742c24944d95fdef61b71b3", + "id" : "1530502", + "profile" : { + "bust" : "85", + "height" : "163", + "hip" : "88", + "waist" : "60", + "weight" : "48" + } + }, { + "alias_name" : "花畑マキアージュ", + "alias_name_display" : "花畑マキアージュ", + "event" : [ { + "event_id" : 728, + "event_name" : "ドリームLIVEフェスティバル スプリングSP" + } ], + "hash" : "1ded8bab3016b38dff6df60ebf3e2f3c", + "id" : "1439401", + "profile" : { + "bust" : "85", + "height" : "163", + "hip" : "88", + "waist" : "60", + "weight" : "48" + } + }, { + "alias_name" : "花畑マキアージュ", + "alias_name_display" : "花畑マキアージュ", + "event" : [ { + "event_id" : 728, + "event_name" : "ドリームLIVEフェスティバル スプリングSP" + } ], + "hash" : "9394a74e8344967cbf42eb20eae12ab5", + "id" : "1539402", + "profile" : { + "bust" : "85", + "height" : "163", + "hip" : "88", + "waist" : "60", + "weight" : "48" + } + } ], + "idol_id" : 47, + "idol_name" : "井村雪菜", + "idol_name_display" : "井村雪菜", + "units" : [ { + "id" : "100", + "name" : "ハートウォーマー" + } ] +}, { + "aliases" : [ { + "hash" : "98daacfc83511eb95974e557aaf84caf", + "id" : "1202301", + "profile" : { + "bust" : "77", + "height" : "148", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + }, { + "hash" : "a54ca3ed50318224a01b666b99687d1b", + "id" : "1302302", + "profile" : { + "bust" : "77", + "height" : "148", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "アニマルパーク", + "alias_name_display" : "アニマルパーク", + "event" : [ { + "event_id" : 204, + "event_name" : "アイドルサバイバルin動物園" + } ], + "hash" : "93e14d9a6e04065bba6cb30745bbedcf", + "id" : "1204501", + "profile" : { + "bust" : "77", + "height" : "148", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "アニマルパーク", + "alias_name_display" : "アニマルパーク", + "event" : [ { + "event_id" : 204, + "event_name" : "アイドルサバイバルin動物園" + } ], + "hash" : "060a14c59bc2e2373140cdf2a502b689", + "id" : "1304502", + "profile" : { + "bust" : "77", + "height" : "148", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "サマーバケーション", + "alias_name_display" : "サマーバケーション", + "event" : [ { + "event_id" : 211, + "event_name" : "アイドルサバイバルinサマーバケーション" + } ], + "hash" : "64ce41dc523eb087c5a4d02a52fbc5d8", + "id" : "1211401", + "profile" : { + "bust" : "77", + "height" : "148", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "サマーバケーション", + "alias_name_display" : "サマーバケーション", + "event" : [ { + "event_id" : 211, + "event_name" : "アイドルサバイバルinサマーバケーション" + } ], + "hash" : "a08838a564ba9bc6bfb9d76e91ab6ce9", + "id" : "1311402", + "profile" : { + "bust" : "77", + "height" : "148", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "マーチングバンド", + "alias_name_display" : "マーチングバンド", + "hash" : "41773d24499b3d8e05743752ccd92a1d", + "id" : "1219401", + "profile" : { + "bust" : "77", + "height" : "148", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "マーチングバンド", + "alias_name_display" : "マーチングバンド", + "hash" : "295b3b0ae7a4d4af95fff7bea9d5726e", + "id" : "1319402", + "profile" : { + "bust" : "77", + "height" : "148", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "スマートレディ", + "alias_name_display" : "スマートレディ", + "hash" : "dcd7d12d16749e4c24cbee10026b28bf", + "id" : "1227101", + "profile" : { + "bust" : "77", + "height" : "148", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "スマートレディ", + "alias_name_display" : "スマートレディ", + "hash" : "498690a47ff548be70cddb845339649a", + "id" : "1327102", + "profile" : { + "bust" : "77", + "height" : "148", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "湯けむり紀行", + "alias_name_display" : "湯けむり紀行", + "hash" : "e7b4ce48a14dfda28f3a1a116a8ea397", + "id" : "1230601", + "profile" : { + "bust" : "77", + "height" : "148", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "湯けむり紀行", + "alias_name_display" : "湯けむり紀行", + "hash" : "a71c410c5dd3fba39e1b1e8c34cf66b7", + "id" : "1330602", + "profile" : { + "bust" : "77", + "height" : "148", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "ローゼスゴシック", + "alias_name_display" : "ローゼスゴシック", + "hash" : "7cf6b998042d60ec860faf5e486261dc", + "id" : "1405801", + "profile" : { + "bust" : "77", + "height" : "148", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "ローゼスゴシック", + "alias_name_display" : "ローゼスゴシック", + "hash" : "ba8d96eebf33c4e6f9104a6bcb6c5ada", + "id" : "1505802", + "profile" : { + "bust" : "77", + "height" : "148", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "ロワイヤルリトル", + "alias_name_display" : "ロワイヤルリトル", + "event" : [ { + "event_id" : 805, + "event_name" : "第5回アイドルLIVEロワイヤル" + } ], + "hash" : "9ce8db57726c12bb4d03b7187efd119b", + "id" : "1415201", + "profile" : { + "bust" : "77", + "height" : "148", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "ロワイヤルリトル", + "alias_name_display" : "ロワイヤルリトル", + "event" : [ { + "event_id" : 805, + "event_name" : "第5回アイドルLIVEロワイヤル" + } ], + "hash" : "53393350148a36019963248cb5fbc2be", + "id" : "1515202", + "profile" : { + "bust" : "77", + "height" : "148", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "セクシー刑事", + "alias_name_display" : "セクシー刑事", + "event" : [ { + "event_id" : 521, + "event_name" : "怪盗公演 美しき追跡者" + } ], + "hash" : "01cc6f010fdbaf4f9c132a9b17454c8a", + "id" : "1427001", + "profile" : { + "bust" : "77", + "height" : "148", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "セクシー刑事", + "alias_name_display" : "セクシー刑事", + "event" : [ { + "event_id" : 521, + "event_name" : "怪盗公演 美しき追跡者" + } ], + "hash" : "16b3f7c98071fcc566c63e350f6d6755", + "id" : "1527002", + "profile" : { + "bust" : "77", + "height" : "148", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + } ], + "idol_id" : 48, + "idol_name" : "日下部若葉", + "idol_name_display" : "日下部若葉", + "units" : [ { + "id" : "84", + "name" : "アニマルパーク" + }, { + "id" : "214", + "name" : "L.M.B.G" + } ] +}, { + "aliases" : [ { + "hash" : "0a2cb7263e4bab320935782c987b0ed1", + "id" : "1202401", + "profile" : { + "bust" : "91", + "height" : "162", + "hip" : "86", + "waist" : "56", + "weight" : "46" + } + }, { + "hash" : "3971354d7c145d26b9e76bcf7ff85203", + "id" : "1302402", + "profile" : { + "bust" : "91", + "height" : "162", + "hip" : "86", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "イタリアンスタイル", + "alias_name_display" : "イタリアンスタイル", + "event" : [ { + "event_id" : 503, + "event_name" : "アイドルLIVEツアーinイタリア" + } ], + "hash" : "2744cd367edb50ffe7959ba47f5f6afe", + "id" : "1208601", + "profile" : { + "bust" : "91", + "height" : "162", + "hip" : "86", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "イタリアンスタイル", + "alias_name_display" : "イタリアンスタイル", + "event" : [ { + "event_id" : 503, + "event_name" : "アイドルLIVEツアーinイタリア" + } ], + "hash" : "1a71cce509dbda3f4d3a9d8a7a83b5a8", + "id" : "1308602", + "profile" : { + "bust" : "91", + "height" : "162", + "hip" : "86", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "メロメロキャンディ", + "alias_name_display" : "メロメロキャンディ", + "hash" : "43d1d4fc514cdece1a5ae65bc99d480f", + "id" : "1210501", + "profile" : { + "bust" : "91", + "height" : "162", + "hip" : "86", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "メロメロキャンディ", + "alias_name_display" : "メロメロキャンディ", + "hash" : "868ad09a014294cd1f31276948b65141", + "id" : "1310502", + "profile" : { + "bust" : "91", + "height" : "162", + "hip" : "86", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ワーキング・マフィア", + "alias_name_display" : "ワーキング・マフィア", + "hash" : "6f0e256632a44047e538f5c99fe4fa31", + "id" : "1216001", + "profile" : { + "bust" : "91", + "height" : "162", + "hip" : "86", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ワーキング・マフィア", + "alias_name_display" : "ワーキング・マフィア", + "hash" : "c04bfe60da8022fa3fc6561134749b65", + "id" : "1316002", + "profile" : { + "bust" : "91", + "height" : "162", + "hip" : "86", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "夏祭り", + "alias_name_display" : "夏祭り", + "event" : [ { + "event_id" : 714, + "event_name" : "夏祭りDEドリームLIVEフェスティバル" + } ], + "hash" : "656a5b69d3f81ed6c3f1afc6a294cb71", + "id" : "1322402", + "profile" : { + "bust" : "91", + "height" : "162", + "hip" : "86", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ラブリーメイド", + "alias_name_display" : "ラブリーメイド", + "hash" : "08be8e4dcff4f7384656fca3062ccaba", + "id" : "1225701", + "profile" : { + "bust" : "91", + "height" : "162", + "hip" : "86", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ラブリーメイド", + "alias_name_display" : "ラブリーメイド", + "hash" : "6993c3919d9955689694fab691b877a4", + "id" : "1325702", + "profile" : { + "bust" : "91", + "height" : "162", + "hip" : "86", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ふんわりパピヨン", + "alias_name_display" : "ふんわりパピヨン", + "hash" : "c5f8a51fd468b2d67fbee35744959e59", + "id" : "1232501", + "profile" : { + "bust" : "91", + "height" : "162", + "hip" : "86", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ふんわりパピヨン", + "alias_name_display" : "ふんわりパピヨン", + "hash" : "9948c2cc9042b6db538973772ffd6bee", + "id" : "1332502", + "profile" : { + "bust" : "91", + "height" : "162", + "hip" : "86", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "スプラッシュボディ", + "alias_name_display" : "スプラッシュボディ", + "event" : [ { + "event_id" : 106, + "event_name" : "アイドル水泳大会 水着のシンデレラ" + } ], + "hash" : "665f8311dc5ac353dbab012bdc91f241", + "id" : "1402101", + "profile" : { + "bust" : "91", + "height" : "162", + "hip" : "86", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "スプラッシュボディ", + "alias_name_display" : "スプラッシュボディ", + "event" : [ { + "event_id" : 106, + "event_name" : "アイドル水泳大会 水着のシンデレラ" + } ], + "hash" : "b188872f23583254256ebb336480a02a", + "id" : "1502102", + "profile" : { + "bust" : "91", + "height" : "162", + "hip" : "86", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "シュガーリーボディ", + "alias_name_display" : "シュガーリーボディ", + "hash" : "dfdaeee13d94f788e2301b207dd20c03", + "id" : "1410101", + "profile" : { + "bust" : "91", + "height" : "162", + "hip" : "86", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "シュガーリーボディ", + "alias_name_display" : "シュガーリーボディ", + "hash" : "f556daf2e4618d563405a10d77c33a91", + "id" : "1510102", + "profile" : { + "bust" : "91", + "height" : "162", + "hip" : "86", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "スウィート・ロワイヤル", + "alias_name_display" : "スウィート・ロワイヤル", + "event" : [ { + "event_id" : 808, + "event_name" : "第8回アイドルLIVEロワイヤル" + } ], + "hash" : "d36af7a953650e82735fa3de1fe95bbb", + "id" : "1420001", + "profile" : { + "bust" : "91", + "height" : "162", + "hip" : "86", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "スウィート・ロワイヤル", + "alias_name_display" : "スウィート・ロワイヤル", + "event" : [ { + "event_id" : 808, + "event_name" : "第8回アイドルLIVEロワイヤル" + } ], + "hash" : "a2014a0c6b69ec002f9f8795e01be8fc", + "id" : "1520002", + "profile" : { + "bust" : "91", + "height" : "162", + "hip" : "86", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ゆるあまチアー", + "alias_name_display" : "ゆるあまチアー", + "event" : [ { + "event_id" : 1508, + "event_name" : "チーム対抗トークバトルショー in SUMMER" + } ], + "hash" : "190de0bebd3334545f163e7279d80e28", + "id" : "1434601", + "profile" : { + "bust" : "91", + "height" : "162", + "hip" : "86", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ゆるあまチアー", + "alias_name_display" : "ゆるあまチアー", + "event" : [ { + "event_id" : 1508, + "event_name" : "チーム対抗トークバトルショー in SUMMER" + } ], + "hash" : "f5513ccc6e9fbd159a8a1c770341ca42", + "id" : "1534602", + "profile" : { + "bust" : "91", + "height" : "162", + "hip" : "86", + "waist" : "56", + "weight" : "45" + } + } ], + "idol_id" : 49, + "idol_name" : "榊原里美", + "idol_name_display" : "榊原里美", + "units" : [ { + "id" : "86", + "name" : "イタリアンスタイル" + }, { + "id" : "128", + "name" : "ラビュー☆アイス☆マウンテン" + } ] +}, { + "aliases" : [ { + "hash" : "c3100ee880e230589036b29a80d7dce3", + "id" : "1202501", + "profile" : { + "bust" : "74", + "height" : "142", + "hip" : "75", + "waist" : "52", + "weight" : "37" + } + }, { + "hash" : "44b8189f9d8c3f8c0d03a6759dba6b24", + "id" : "1302502", + "profile" : { + "bust" : "74", + "height" : "142", + "hip" : "75", + "waist" : "52", + "weight" : "37" + } + }, { + "alias_name" : "自称・セクシーギャル", + "alias_name_display" : "自称・セクシーギャル", + "hash" : "119e0da77db1a7a1da32fe66dbb953fc", + "id" : "1222101", + "profile" : { + "bust" : "74", + "height" : "142", + "hip" : "75", + "waist" : "52", + "weight" : "37" + } + }, { + "alias_name" : "自称・セクシーギャル", + "alias_name_display" : "自称・セクシーギャル", + "hash" : "6babab0e7bbff9fbf117cca8a8e30f5f", + "id" : "1322102", + "profile" : { + "bust" : "74", + "height" : "142", + "hip" : "75", + "waist" : "52", + "weight" : "37" + } + }, { + "alias_name" : "自称・雪の妖精", + "alias_name_display" : "自称・雪の妖精", + "hash" : "add3aebe0ee8669d88a68ace3ea9b339", + "id" : "1326702", + "profile" : { + "bust" : "74", + "height" : "142", + "hip" : "75", + "waist" : "52", + "weight" : "37" + } + }, { + "alias_name" : "自称・カワイイ雪の妖精", + "alias_name_display" : "自称・カワイイ雪の妖精", + "hash" : "41d032b770fa6bb15e85a2fd0371035f", + "id" : "1326802", + "profile" : { + "bust" : "74", + "height" : "142", + "hip" : "75", + "waist" : "52", + "weight" : "37" + } + }, { + "alias_name" : "自称・カワイイ", + "alias_name_display" : "自称・カワイイ", + "hash" : "7d90d532451521e9f70c48914eae6de5", + "id" : "1401901", + "profile" : { + "bust" : "74", + "height" : "142", + "hip" : "75", + "waist" : "52", + "weight" : "37" + } + }, { + "alias_name" : "自称・カワイイ", + "alias_name_display" : "自称・カワイイ", + "hash" : "4a02ad7e0335413adce0fdd7724e967c", + "id" : "1501902", + "profile" : { + "bust" : "74", + "height" : "142", + "hip" : "75", + "waist" : "52", + "weight" : "37" + } + }, { + "alias_name" : "自称・天使", + "alias_name_display" : "自称・天使", + "event" : [ { + "event_id" : "006", + "event_name" : "第6回プロダクションマッチフェスティバル" + } ], + "hash" : "b7041e1f27f77e00bcb6750a7efe307f", + "id" : "1403601", + "profile" : { + "bust" : "74", + "height" : "142", + "hip" : "75", + "waist" : "52", + "weight" : "37" + } + }, { + "alias_name" : "自称・天使", + "alias_name_display" : "自称・天使", + "event" : [ { + "event_id" : "006", + "event_name" : "第6回プロダクションマッチフェスティバル" + } ], + "hash" : "2a35fe0b79df5b24ac0c79bd61a9f05f", + "id" : "1503602", + "profile" : { + "bust" : "74", + "height" : "142", + "hip" : "75", + "waist" : "52", + "weight" : "37" + } + }, { + "alias_name" : "自称・セクシー", + "alias_name_display" : "自称・セクシー", + "hash" : "af9eacda4fd4b4fbc2aaa65014c95ac8", + "id" : "1406601", + "profile" : { + "bust" : "74", + "height" : "142", + "hip" : "75", + "waist" : "52", + "weight" : "37" + } + }, { + "alias_name" : "自称・セクシー", + "alias_name_display" : "自称・セクシー", + "hash" : "550ebee14289128b0ee7750ce580a9ae", + "id" : "1506602", + "profile" : { + "bust" : "74", + "height" : "142", + "hip" : "75", + "waist" : "52", + "weight" : "37" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "4cac6cb206bb9a778ec1a0d242185a6e", + "id" : "1406801", + "profile" : { + "bust" : "74", + "height" : "142", + "hip" : "75", + "waist" : "52", + "weight" : "37" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "405ead20308c43365ea6b73a1090c23f", + "id" : "1506802", + "profile" : { + "bust" : "74", + "height" : "142", + "hip" : "75", + "waist" : "52", + "weight" : "37" + } + }, { + "alias_name" : "自称・プレゼント", + "alias_name_display" : "自称・プレゼント", + "hash" : "6e5d07375e8d1daf25b6e1138e4c6706", + "id" : "1410801", + "profile" : { + "bust" : "74", + "height" : "142", + "hip" : "75", + "waist" : "52", + "weight" : "37" + } + }, { + "alias_name" : "自称・プレゼント", + "alias_name_display" : "自称・プレゼント", + "hash" : "8c67de4368ba3d1782b67e689190a5a0", + "id" : "1510802", + "profile" : { + "bust" : "74", + "height" : "142", + "hip" : "75", + "waist" : "52", + "weight" : "37" + } + }, { + "alias_name" : "自称・マーメイド", + "alias_name_display" : "自称・マーメイド", + "hash" : "73a87ae220035842c13b47336b8135c2", + "id" : "1415501", + "profile" : { + "bust" : "74", + "height" : "142", + "hip" : "75", + "waist" : "52", + "weight" : "37" + } + }, { + "alias_name" : "自称・マーメイド", + "alias_name_display" : "自称・マーメイド", + "hash" : "4637ded9f824e31f9033e488d3ca4257", + "id" : "1515502", + "profile" : { + "bust" : "74", + "height" : "142", + "hip" : "75", + "waist" : "52", + "weight" : "37" + } + }, { + "alias_name" : "自称・幸運", + "alias_name_display" : "自称・幸運", + "hash" : "052ff3c640cc92727f8bfbc105db54eb", + "id" : "1421201", + "profile" : { + "bust" : "74", + "height" : "142", + "hip" : "75", + "waist" : "52", + "weight" : "37" + } + }, { + "alias_name" : "自称・幸運", + "alias_name_display" : "自称・幸運", + "hash" : "2defe6d72fe38c3d48cb53926d7e9c77", + "id" : "1521202", + "profile" : { + "bust" : "74", + "height" : "142", + "hip" : "75", + "waist" : "52", + "weight" : "37" + } + }, { + "alias_name" : "自称・美人の湯", + "alias_name_display" : "自称・美人の湯", + "hash" : "2756f820564442331dbf44db7f3c3c0f", + "id" : "1428701", + "profile" : { + "bust" : "74", + "height" : "142", + "hip" : "75", + "waist" : "52", + "weight" : "37" + } + }, { + "alias_name" : "自称・美人の湯", + "alias_name_display" : "自称・美人の湯", + "hash" : "9d45a4277d932e0cb08d98d4a2a2b9d1", + "id" : "1528702", + "profile" : { + "bust" : "74", + "height" : "142", + "hip" : "75", + "waist" : "52", + "weight" : "37" + } + }, { + "alias_name" : "自称・雪の女王", + "alias_name_display" : "自称・雪の女王", + "event" : [ { + "event_id" : 1705, + "event_name" : "アイドルプロデュース きらめくオーロラ紀行" + } ], + "hash" : "c154615d96a3941b49e103e799e9e6ae", + "id" : "1431401", + "profile" : { + "bust" : "74", + "height" : "142", + "hip" : "75", + "waist" : "52", + "weight" : "37" + } + }, { + "alias_name" : "自称・雪の女王", + "alias_name_display" : "自称・雪の女王", + "event" : [ { + "event_id" : 1705, + "event_name" : "アイドルプロデュース きらめくオーロラ紀行" + } ], + "hash" : "933d6fd9a91faf9bd200d9454032857b", + "id" : "1531402", + "profile" : { + "bust" : "74", + "height" : "142", + "hip" : "75", + "waist" : "52", + "weight" : "37" + } + }, { + "alias_name" : "自称・愛され系", + "alias_name_display" : "自称・愛され系", + "hash" : "0a91c9d32bc4dc8c10e2ec537e6403b4", + "id" : "1439501", + "profile" : { + "bust" : "74", + "height" : "142", + "hip" : "75", + "waist" : "52", + "weight" : "37" + } + }, { + "alias_name" : "自称・愛され系", + "alias_name_display" : "自称・愛され系", + "hash" : "6510a11da53b691ab9031a461560116d", + "id" : "1539502", + "profile" : { + "bust" : "74", + "height" : "142", + "hip" : "75", + "waist" : "52", + "weight" : "37" + } + } ], + "idol_id" : 50, + "idol_name" : "輿水幸子", + "idol_name_display" : "輿水幸子", + "units" : [ { + "id" : "13", + "name" : "カワスウィーティーなボクはぁと(仮)" + }, { + "id" : "90", + "name" : "カワイイボクと142's" + }, { + "id" : "131", + "name" : "KBYD" + }, { + "id" : "194", + "name" : "サクヤヒメ" + }, { + "id" : "212", + "name" : "CINDERELLA GIRLS" + } ] +}, { + "aliases" : [ { + "event" : [ { + "event_id" : 201, + "event_name" : "アイドルサバイバル" + } ], + "hash" : "a5a7e280731764ee1d3df5391bd87d43", + "id" : "1202601", + "profile" : { + "bust" : "78", + "height" : "156", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + }, { + "event" : [ { + "event_id" : 201, + "event_name" : "アイドルサバイバル" + } ], + "hash" : "4ee4d08e6743566a2417831a32247d1e", + "id" : "1302602", + "profile" : { + "bust" : "78", + "height" : "156", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "探偵メイドル", + "alias_name_display" : "探偵メイドル", + "hash" : "a9fd5baeb72c7d476b3e3e506ed7c2ca", + "id" : "1208001", + "profile" : { + "bust" : "78", + "height" : "156", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "探偵メイドル", + "alias_name_display" : "探偵メイドル", + "hash" : "c68534fca3fee1974ab2176c0d6f8cd0", + "id" : "1308002", + "profile" : { + "bust" : "78", + "height" : "156", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "張り込みスタイル", + "alias_name_display" : "張り込みスタイル", + "event" : [ { + "event_id" : "013", + "event_name" : "第13回プロダクションマッチフェスティバル" + } ], + "hash" : "ae20bae6e55d325307f62cdbbcec2290", + "id" : "1213001", + "profile" : { + "bust" : "78", + "height" : "156", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "張り込みスタイル", + "alias_name_display" : "張り込みスタイル", + "event" : [ { + "event_id" : "013", + "event_name" : "第13回プロダクションマッチフェスティバル" + } ], + "hash" : "ce38afed06051e2c10c439862d774bed", + "id" : "1313002", + "profile" : { + "bust" : "78", + "height" : "156", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "スクールスタイル", + "alias_name_display" : "スクールスタイル", + "hash" : "a853b8f786d001834e443816ba4b6d12", + "id" : "1215501", + "profile" : { + "bust" : "78", + "height" : "156", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "スクールスタイル", + "alias_name_display" : "スクールスタイル", + "hash" : "09a61fba9005db95a9befb741cbfe896", + "id" : "1315502", + "profile" : { + "bust" : "78", + "height" : "156", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "カジュアルルック", + "alias_name_display" : "カジュアルルック", + "event" : [ { + "event_id" : "022", + "event_name" : "第22回プロダクションマッチフェスティバル" + } ], + "hash" : "e649afb6962e805a8762e062358a49d8", + "id" : "1222201", + "profile" : { + "bust" : "78", + "height" : "156", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "カジュアルルック", + "alias_name_display" : "カジュアルルック", + "event" : [ { + "event_id" : "022", + "event_name" : "第22回プロダクションマッチフェスティバル" + } ], + "hash" : "bd5d8e86ac6245cb67e163d806c20cf3", + "id" : "1322202", + "profile" : { + "bust" : "78", + "height" : "156", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ウィンターコレクション", + "alias_name_display" : "ウィンターコレクション", + "hash" : "7563f63f96be801e208b41b831e3fb37", + "id" : "1226201", + "profile" : { + "bust" : "78", + "height" : "156", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ウィンターコレクション", + "alias_name_display" : "ウィンターコレクション", + "hash" : "d9734c1b775934b22c1bed99f087daab", + "id" : "1326202", + "profile" : { + "bust" : "78", + "height" : "156", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ゴーフォーヴィクトリー", + "alias_name_display" : "ゴーフォーヴィクトリー", + "hash" : "1a145e40e005d9c026e00055b86e98fe", + "id" : "1232301", + "profile" : { + "bust" : "78", + "height" : "156", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ゴーフォーヴィクトリー", + "alias_name_display" : "ゴーフォーヴィクトリー", + "hash" : "c068a0b85d95161ba617b3169c55918e", + "id" : "1332302", + "profile" : { + "bust" : "78", + "height" : "156", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "小さな名探偵", + "alias_name_display" : "小さな名探偵", + "event" : [ { + "event_id" : 701, + "event_name" : "ドリームLIVEフェスティバル" + } ], + "hash" : "57a6b520d0c3ca4327c98d306c6ea914", + "id" : "1407301", + "profile" : { + "bust" : "78", + "height" : "156", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "小さな名探偵", + "alias_name_display" : "小さな名探偵", + "event" : [ { + "event_id" : 701, + "event_name" : "ドリームLIVEフェスティバル" + } ], + "hash" : "63661d287588dd672a4a790c584ac3cc", + "id" : "1507302", + "profile" : { + "bust" : "78", + "height" : "156", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "聖夜のミステリー", + "alias_name_display" : "聖夜のミステリー", + "event" : [ { + "event_id" : 710, + "event_name" : "サンタDEドリームLIVEフェスティバル" + } ], + "hash" : "6dddae01de63befe4d2aa03275925f12", + "id" : "1420501", + "profile" : { + "bust" : "78", + "height" : "156", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "聖夜のミステリー", + "alias_name_display" : "聖夜のミステリー", + "event" : [ { + "event_id" : 710, + "event_name" : "サンタDEドリームLIVEフェスティバル" + } ], + "hash" : "b9abe3920c8acc09627f84020f2772ef", + "id" : "1520502", + "profile" : { + "bust" : "78", + "height" : "156", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ミステリーチアー", + "alias_name_display" : "ミステリーチアー", + "event" : [ { + "event_id" : 1504, + "event_name" : "第4回チーム対抗トークバトルショー" + } ], + "hash" : "bdbb5104e4674a60d58db8d8397dd008", + "id" : "1428201", + "profile" : { + "bust" : "78", + "height" : "156", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ミステリーチアー", + "alias_name_display" : "ミステリーチアー", + "event" : [ { + "event_id" : 1504, + "event_name" : "第4回チーム対抗トークバトルショー" + } ], + "hash" : "4355175e6d2fdc1aa18f7734cbbd965a", + "id" : "1528202", + "profile" : { + "bust" : "78", + "height" : "156", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "なぞときツアーズ", + "alias_name_display" : "なぞときツアーズ", + "hash" : "e6cd8597bd7834403a4199417cbd868e", + "id" : "1434901", + "profile" : { + "bust" : "78", + "height" : "156", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "なぞときツアーズ", + "alias_name_display" : "なぞときツアーズ", + "hash" : "0da70e0edc3ce8b0d0fcf9caf198d7d6", + "id" : "1534902", + "profile" : { + "bust" : "78", + "height" : "156", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + } ], + "idol_id" : 51, + "idol_name" : "安斎都", + "idol_name_display" : "安斎都", + "units" : [ { + "id" : "35", + "name" : "ディテクティブヴァーサス" + } ] +}, { + "aliases" : [ { + "hash" : "fa074d5e6fd70b950c77ecb6d0156075", + "id" : "1202701", + "profile" : { + "bust" : "88", + "height" : "160", + "hip" : "84", + "waist" : "59", + "weight" : "48" + } + }, { + "hash" : "2692009a1145b12d88f8581a8d2a203e", + "id" : "1302702", + "profile" : { + "bust" : "88", + "height" : "160", + "hip" : "84", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "テーマパーク", + "alias_name_display" : "テーマパーク", + "event" : [ { + "event_id" : 210, + "event_name" : "アイドルサバイバルinテーマパーク2013" + } ], + "hash" : "35fdd14eb165bc7e6dec5d341e784f07", + "id" : "1209501", + "profile" : { + "bust" : "88", + "height" : "160", + "hip" : "84", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "テーマパーク", + "alias_name_display" : "テーマパーク", + "event" : [ { + "event_id" : 210, + "event_name" : "アイドルサバイバルinテーマパーク2013" + } ], + "hash" : "41d1d18a55c448cf46c582d1013b39b6", + "id" : "1309502", + "profile" : { + "bust" : "88", + "height" : "160", + "hip" : "84", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "ピュアリーグラス", + "alias_name_display" : "ピュアリーグラス", + "hash" : "cf97a7ca4f0e1155ef221621fdf3cfd9", + "id" : "1214101", + "profile" : { + "bust" : "88", + "height" : "160", + "hip" : "84", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "ピュアリーグラス", + "alias_name_display" : "ピュアリーグラス", + "hash" : "6fdde1b3e7496a6d33e393841a24b07d", + "id" : "1314102", + "profile" : { + "bust" : "88", + "height" : "160", + "hip" : "84", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "パラダイスリゾート", + "alias_name_display" : "パラダイスリゾート", + "hash" : "466452eb133248e509e4fb3f4ebeacd7", + "id" : "1217801", + "profile" : { + "bust" : "88", + "height" : "160", + "hip" : "84", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "パラダイスリゾート", + "alias_name_display" : "パラダイスリゾート", + "hash" : "442597c9044dfedfa1349fb2db19196a", + "id" : "1317802", + "profile" : { + "bust" : "88", + "height" : "160", + "hip" : "84", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "クッキングバラエティ", + "alias_name_display" : "クッキングバラエティ", + "event" : [ { + "event_id" : 1801, + "event_name" : "アイドルバラエティ 究極のショートケーキを作ろう!" + } ], + "hash" : "22c66ce65936f77c353214b025a41e58", + "id" : "1323502", + "profile" : { + "bust" : "88", + "height" : "160", + "hip" : "84", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "ためらいごころ", + "alias_name_display" : "ためらいごころ", + "hash" : "e76f9bcd4d328a38a2624f05c28f9674", + "id" : "1228001", + "profile" : { + "bust" : "88", + "height" : "160", + "hip" : "84", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "ためらいごころ", + "alias_name_display" : "ためらいごころ", + "hash" : "54ba56acfc2fc2727cf51c97786be2a5", + "id" : "1328002", + "profile" : { + "bust" : "88", + "height" : "160", + "hip" : "84", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "シークレットクイーン", + "alias_name_display" : "シークレットクイーン", + "event" : [ { + "event_id" : 507, + "event_name" : "LIVEツアーカーニバルinドイツ" + } ], + "hash" : "5f86b28cd88a283adc8408184d57da8d", + "id" : "1408701", + "profile" : { + "bust" : "88", + "height" : "160", + "hip" : "84", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "シークレットクイーン", + "alias_name_display" : "シークレットクイーン", + "event" : [ { + "event_id" : 507, + "event_name" : "LIVEツアーカーニバルinドイツ" + } ], + "hash" : "6044eaaac63254173edd6e0e2cc419ed", + "id" : "1508702", + "profile" : { + "bust" : "88", + "height" : "160", + "hip" : "84", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "ランウェイモード", + "alias_name_display" : "ランウェイモード", + "event" : [ { + "event_id" : 1401, + "event_name" : "ぷちデレラコレクション" + } ], + "hash" : "83af98fac0686269e12859012e21238f", + "id" : "1422901", + "profile" : { + "bust" : "88", + "height" : "160", + "hip" : "84", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "ランウェイモード", + "alias_name_display" : "ランウェイモード", + "event" : [ { + "event_id" : 1401, + "event_name" : "ぷちデレラコレクション" + } ], + "hash" : "6dabe78413e5135e83a9e9709b0665cd", + "id" : "1522902", + "profile" : { + "bust" : "88", + "height" : "160", + "hip" : "84", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "くつろぎの温度", + "alias_name_display" : "くつろぎの温度", + "event" : [ { + "event_id" : 726, + "event_name" : "ドリームLIVEフェスティバル新春SP" + } ], + "hash" : "c8c73f7e03c72c843e517dd8c759d868", + "id" : "1437501", + "profile" : { + "bust" : "88", + "height" : "160", + "hip" : "84", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "くつろぎの温度", + "alias_name_display" : "くつろぎの温度", + "event" : [ { + "event_id" : 726, + "event_name" : "ドリームLIVEフェスティバル新春SP" + } ], + "hash" : "3e11cdda3fb461943a95a243ccb16db8", + "id" : "1537502", + "profile" : { + "bust" : "88", + "height" : "160", + "hip" : "84", + "waist" : "59", + "weight" : "48" + } + } ], + "idol_id" : 52, + "idol_name" : "浅野風香", + "idol_name_display" : "浅野風香", + "units" : [ { + "id" : "49", + "name" : "ピュアリーツイン" + }, { + "id" : "171", + "name" : "Black/White-Roses" + }, { + "id" : "211", + "name" : "ワンダー・フル" + } ] +}, { + "aliases" : [ { + "hash" : "380a7a645fe50c52773fd2fceb026002", + "id" : "1202801", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "83", + "waist" : "58", + "weight" : "44" + } + }, { + "hash" : "057fbfa6eb12d147fe311a18fd6d712d", + "id" : "1302802", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "83", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "メルヘン&ゴシック", + "alias_name_display" : "メルヘン&ゴシック", + "hash" : "bcd6d181f73266ba4bc8fa827c46af98", + "id" : "1208301", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "83", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "メルヘン&ゴシック", + "alias_name_display" : "メルヘン&ゴシック", + "hash" : "cebe76011f0156a8ce7f7df691969bd6", + "id" : "1308302", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "83", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "スポーティスタイル", + "alias_name_display" : "スポーティスタイル", + "event" : [ { + "event_id" : 212, + "event_name" : "アイドルサバイバル 秋の大運動会" + } ], + "hash" : "a45d124031fd6c6841aa249d597fc03b", + "id" : "1212601", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "83", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "スポーティスタイル", + "alias_name_display" : "スポーティスタイル", + "event" : [ { + "event_id" : 212, + "event_name" : "アイドルサバイバル 秋の大運動会" + } ], + "hash" : "d0735e0957f993ca0fa4c57b0e8cefc6", + "id" : "1312602", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "83", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "フワフワユリユリ", + "alias_name_display" : "フワフワユリユリ", + "hash" : "c3c402f325f4d7cdec18af16c702a6a9", + "id" : "1219201", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "83", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "フワフワユリユリ", + "alias_name_display" : "フワフワユリユリ", + "hash" : "7589f5960cfac28375537d4f51eb58fa", + "id" : "1319202", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "83", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "真夏の誘惑", + "alias_name_display" : "真夏の誘惑", + "event" : [ { + "event_id" : 723, + "event_name" : "水着DEドリームLIVEフェスティバル" + } ], + "hash" : "1249e065132351a934d2f63e9b1cb626", + "id" : "1229201", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "83", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "真夏の誘惑", + "alias_name_display" : "真夏の誘惑", + "event" : [ { + "event_id" : 723, + "event_name" : "水着DEドリームLIVEフェスティバル" + } ], + "hash" : "6eccf22049120fb761a1ffa13bd38e88", + "id" : "1329202", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "83", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "ゴーフォーヴィクトリー", + "alias_name_display" : "ゴーフォーヴィクトリー", + "hash" : "8a0410a434927708f9fad0e055ec486b", + "id" : "1232401", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "83", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "ゴーフォーヴィクトリー", + "alias_name_display" : "ゴーフォーヴィクトリー", + "hash" : "ea7e3327461cab7eeea0197ac1bf31e6", + "id" : "1332402", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "83", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "目覚めし淑女", + "alias_name_display" : "目覚めし淑女", + "event" : [ { + "event_id" : "016", + "event_name" : "第16回プロダクションマッチフェスティバル" + } ], + "hash" : "7e80103508171cd695652af2bf4006e5", + "id" : "1413701", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "83", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "目覚めし淑女", + "alias_name_display" : "目覚めし淑女", + "event" : [ { + "event_id" : "016", + "event_name" : "第16回プロダクションマッチフェスティバル" + } ], + "hash" : "098c259560917bb02fc6769b79704b3f", + "id" : "1513702", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "83", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "レディライクバイオレット", + "alias_name_display" : "レディライクバイオレット", + "event" : [ { + "event_id" : 716, + "event_name" : "第16回ドリームLIVEフェスティバル" + } ], + "hash" : "a302d6fc9e81362cc2a9d8a4e32bb8da", + "id" : "1427901", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "83", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "レディライクバイオレット", + "alias_name_display" : "レディライクバイオレット", + "event" : [ { + "event_id" : 716, + "event_name" : "第16回ドリームLIVEフェスティバル" + } ], + "hash" : "493a01e58a43693352fd7343e3987069", + "id" : "1527902", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "83", + "waist" : "58", + "weight" : "44" + } + } ], + "idol_id" : 53, + "idol_name" : "大西由里子", + "idol_name_display" : "大西由里子", + "units" : [ { + "id" : "12", + "name" : "壁サーの花" + }, { + "id" : "165", + "name" : "メルヘンゴシック" + } ] +}, { + "aliases" : [ { + "hash" : "edd3438bd612a333a76edaea0ff73fe7", + "id" : "1203001", + "profile" : { + "bust" : "84", + "height" : "146", + "hip" : "84", + "waist" : "57", + "weight" : "40" + } + }, { + "hash" : "6dba97132e9dac789aab3892e1bd89da", + "id" : "1303002", + "profile" : { + "bust" : "84", + "height" : "146", + "hip" : "84", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "ニューイヤー", + "alias_name_display" : "ニューイヤー", + "event" : [ { + "event_id" : 404, + "event_name" : "新春アイドルプロデュース" + } ], + "hash" : "801a8ecab88ba6aa4104c5704603b2d8", + "id" : "1207001", + "profile" : { + "bust" : "84", + "height" : "146", + "hip" : "84", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "ニューイヤー", + "alias_name_display" : "ニューイヤー", + "event" : [ { + "event_id" : 404, + "event_name" : "新春アイドルプロデュース" + } ], + "hash" : "2e254b75f29e7a12dd5e5743d061ba1e", + "id" : "1307002", + "profile" : { + "bust" : "84", + "height" : "146", + "hip" : "84", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "お月見ウサミン", + "alias_name_display" : "お月見ウサミン", + "event" : [ { + "event_id" : 107, + "event_name" : "秋夜のお月見会" + } ], + "hash" : "a8785d3980131a8fa98a30be1c8ee201", + "id" : "1402901", + "profile" : { + "bust" : "84", + "height" : "146", + "hip" : "84", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "お月見ウサミン", + "alias_name_display" : "お月見ウサミン", + "event" : [ { + "event_id" : 107, + "event_name" : "秋夜のお月見会" + } ], + "hash" : "5b31aabd5be01c365f5f42cc925fe6ef", + "id" : "1502902", + "profile" : { + "bust" : "84", + "height" : "146", + "hip" : "84", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "制服ウサミン", + "alias_name_display" : "制服ウサミン", + "hash" : "f4c2b229d5ca32acc3a4505e83a5e746", + "id" : "1406101", + "profile" : { + "bust" : "84", + "height" : "146", + "hip" : "84", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "制服ウサミン", + "alias_name_display" : "制服ウサミン", + "hash" : "3cd59eb00788e28e7740052f8b5b2639", + "id" : "1506102", + "profile" : { + "bust" : "84", + "height" : "146", + "hip" : "84", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "aaccb3f4f6b7c29b28d2e55934c97a4f", + "id" : "1406701", + "profile" : { + "bust" : "84", + "height" : "146", + "hip" : "84", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "e244b41f4ee149b403eda22f871cf129", + "id" : "1506702", + "profile" : { + "bust" : "84", + "height" : "146", + "hip" : "84", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "ハッピーニューウサミン", + "alias_name_display" : "ハッピーニューウサミン", + "event" : [ { + "event_id" : 509, + "event_name" : "新春LIVEツアーカーニバル" + } ], + "hash" : "5bc9852cf431141883ad09d3c214e524", + "id" : "1411301", + "profile" : { + "bust" : "84", + "height" : "146", + "hip" : "84", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "ハッピーニューウサミン", + "alias_name_display" : "ハッピーニューウサミン", + "event" : [ { + "event_id" : 509, + "event_name" : "新春LIVEツアーカーニバル" + } ], + "hash" : "371a0f77436b1f218c8300d50207019e", + "id" : "1511302", + "profile" : { + "bust" : "84", + "height" : "146", + "hip" : "84", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "スペース☆ウサミン", + "alias_name_display" : "スペース☆ウサミン", + "hash" : "51c183ef6846a54a06aab46bf0a0fa02", + "id" : "1414101", + "profile" : { + "bust" : "84", + "height" : "146", + "hip" : "84", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "スペース☆ウサミン", + "alias_name_display" : "スペース☆ウサミン", + "hash" : "77b6e905cf5dc2c15420c72345efd7b3", + "id" : "1514102", + "profile" : { + "bust" : "84", + "height" : "146", + "hip" : "84", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "クリスマスウサミン", + "alias_name_display" : "クリスマスウサミン", + "hash" : "f7ef230f6291157eb6adfcf737d12b43", + "id" : "1420401", + "profile" : { + "bust" : "84", + "height" : "146", + "hip" : "84", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "クリスマスウサミン", + "alias_name_display" : "クリスマスウサミン", + "hash" : "781fcb73651a24d165ba0ff488949829", + "id" : "1520402", + "profile" : { + "bust" : "84", + "height" : "146", + "hip" : "84", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "サマー☆ウサミン", + "alias_name_display" : "サマー☆ウサミン", + "hash" : "582b54f85fa86da7ef3314d647193092", + "id" : "1426501", + "profile" : { + "bust" : "84", + "height" : "146", + "hip" : "84", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "サマー☆ウサミン", + "alias_name_display" : "サマー☆ウサミン", + "hash" : "52fdee6f29f672792d8af79c239ac1fb", + "id" : "1526502", + "profile" : { + "bust" : "84", + "height" : "146", + "hip" : "84", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "ワンダーランドラビット", + "alias_name_display" : "ワンダーランドラビット", + "hash" : "3a63db645ce9ee2878d44436a7c45eaa", + "id" : "1432001", + "profile" : { + "bust" : "84", + "height" : "146", + "hip" : "84", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "ワンダーランドラビット", + "alias_name_display" : "ワンダーランドラビット", + "hash" : "f5d19805f9164fb58967a338d9a60551", + "id" : "1532002", + "profile" : { + "bust" : "84", + "height" : "146", + "hip" : "84", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "ぽかぽかウサミン", + "alias_name_display" : "ぽかぽかウサミン", + "hash" : "d2dad4fd56c9ad3b62a7f34a05024b8b", + "id" : "1436301", + "profile" : { + "bust" : "84", + "height" : "146", + "hip" : "84", + "waist" : "57", + "weight" : "40" + } + }, { + "alias_name" : "ぽかぽかウサミン", + "alias_name_display" : "ぽかぽかウサミン", + "hash" : "4646da2024bcd18a3334ba0c06a7770d", + "id" : "1536302", + "profile" : { + "bust" : "84", + "height" : "146", + "hip" : "84", + "waist" : "57", + "weight" : "40" + } + } ], + "idol_id" : 54, + "idol_name" : "安部菜々", + "idol_name_display" : "安部菜々", + "units" : [ { + "id" : "22", + "name" : "シャイニー・アーリーデイズ" + }, { + "id" : "23", + "name" : "しゅがしゅが☆み~ん" + }, { + "id" : "80", + "name" : "P・U" + }, { + "id" : "115", + "name" : "虹色ドリーマー" + }, { + "id" : "139", + "name" : "397cherry" + }, { + "id" : "168", + "name" : "*(Asterisk) with なつなな" + }, { + "id" : "184", + "name" : "宵乙女" + }, { + "id" : "195", + "name" : "C5" + } ] +}, { + "aliases" : [ { + "hash" : "1a31c15fa7189284f9df6258d5382de2", + "id" : "1203201", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "81", + "waist" : "54", + "weight" : "41" + } + }, { + "hash" : "7792ea260d6769bc8ccff47fc2dc5026", + "id" : "1303202", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "81", + "waist" : "54", + "weight" : "41" + } + }, { + "alias_name" : "学園祭", + "alias_name_display" : "学園祭", + "event" : [ { + "event_id" : 206, + "event_name" : "アイドルサバイバルin学園祭" + } ], + "hash" : "20bb972a45fb705f8e86bdb9f49c9f47", + "id" : "1205601", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "81", + "waist" : "54", + "weight" : "41" + } + }, { + "alias_name" : "学園祭", + "alias_name_display" : "学園祭", + "event" : [ { + "event_id" : 206, + "event_name" : "アイドルサバイバルin学園祭" + } ], + "hash" : "7748ff72ac51f4cbd33212106e0e77cf", + "id" : "1305602", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "81", + "waist" : "54", + "weight" : "41" + } + }, { + "alias_name" : "ホワイトドロップ", + "alias_name_display" : "ホワイトドロップ", + "hash" : "dddf8f15c3a9e438456f8ab55e9b2870", + "id" : "1207301", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "81", + "waist" : "54", + "weight" : "41" + } + }, { + "alias_name" : "ホワイトドロップ", + "alias_name_display" : "ホワイトドロップ", + "hash" : "7cf82263a00da42088d07c2d6d9a21b5", + "id" : "1307302", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "81", + "waist" : "54", + "weight" : "41" + } + }, { + "alias_name" : "スクールスタイル", + "alias_name_display" : "スクールスタイル", + "hash" : "116fb3717443e8eecda0740a15862a1b", + "id" : "1212701", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "81", + "waist" : "54", + "weight" : "41" + } + }, { + "alias_name" : "スクールスタイル", + "alias_name_display" : "スクールスタイル", + "hash" : "17db83ca7e47ff1d1138593fae3a3d29", + "id" : "1312702", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "81", + "waist" : "54", + "weight" : "41" + } + }, { + "alias_name" : "ロワイヤル・スクエア", + "alias_name_display" : "ロワイヤル・スクエア", + "event" : [ { + "event_id" : 809, + "event_name" : "第9回アイドルLIVEロワイヤル" + } ], + "hash" : "78eeaef914bcff2a04145a36a68f0f16", + "id" : "1219901", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "81", + "waist" : "54", + "weight" : "41" + } + }, { + "alias_name" : "ロワイヤル・スクエア", + "alias_name_display" : "ロワイヤル・スクエア", + "event" : [ { + "event_id" : 809, + "event_name" : "第9回アイドルLIVEロワイヤル" + } ], + "hash" : "8302466346e62143800b5ac2e2857240", + "id" : "1319902", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "81", + "waist" : "54", + "weight" : "41" + } + }, { + "alias_name" : "ワーキング・クリーン", + "alias_name_display" : "ワーキング・クリーン", + "hash" : "f0ae078f852e73caba240b6cb3455cd8", + "id" : "1226601", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "81", + "waist" : "54", + "weight" : "41" + } + }, { + "alias_name" : "ワーキング・クリーン", + "alias_name_display" : "ワーキング・クリーン", + "hash" : "326d664c8733fd11eac64a7b69b0a670", + "id" : "1326602", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "81", + "waist" : "54", + "weight" : "41" + } + }, { + "alias_name" : "ネクストスターI.C", + "alias_name_display" : "ネクストスターI.C", + "event" : [ { + "event_id" : 1212, + "event_name" : "目指せきらきらモデル アイドルチャレンジ(復刻)" + } ], + "hash" : "cf4089838cd7d614b245f82a6e90e084", + "id" : "1329802", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "81", + "waist" : "54", + "weight" : "41" + } + }, { + "alias_name" : "ハッピーマジシャン", + "alias_name_display" : "ハッピーマジシャン", + "hash" : "ede6fef2e6f2427e20c5ba19134205a9", + "id" : "1406401", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "81", + "waist" : "54", + "weight" : "41" + } + }, { + "alias_name" : "ハッピーマジシャン", + "alias_name_display" : "ハッピーマジシャン", + "hash" : "bf52c02010890d6f6c73481da077c15b", + "id" : "1506402", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "81", + "waist" : "54", + "weight" : "41" + } + }, { + "alias_name" : "私だけのステージ", + "alias_name_display" : "私だけのステージ", + "event" : [ { + "event_id" : 806, + "event_name" : "アイドルLIVEロワイヤルinSUMMER" + } ], + "hash" : "1c52bde7c700cc558630899d6b10c5e6", + "id" : "1417601", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "81", + "waist" : "54", + "weight" : "41" + } + }, { + "alias_name" : "私だけのステージ", + "alias_name_display" : "私だけのステージ", + "event" : [ { + "event_id" : 806, + "event_name" : "アイドルLIVEロワイヤルinSUMMER" + } ], + "hash" : "0471abe6c83dd4e955df04e92dc187be", + "id" : "1517602", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "81", + "waist" : "54", + "weight" : "41" + } + }, { + "alias_name" : "雨の日に", + "alias_name_display" : "雨の日に", + "event" : [ { + "event_id" : 1502, + "event_name" : "チーム対抗雨の日トークバトルショー" + } ], + "hash" : "67a8414c7452e612da41dd0119dd106b", + "id" : "1425201", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "81", + "waist" : "54", + "weight" : "41" + } + }, { + "alias_name" : "雨の日に", + "alias_name_display" : "雨の日に", + "event" : [ { + "event_id" : 1502, + "event_name" : "チーム対抗雨の日トークバトルショー" + } ], + "hash" : "137a1dcdb35042b1b2ed93dd018e7563", + "id" : "1525202", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "81", + "waist" : "54", + "weight" : "41" + } + }, { + "alias_name" : "ノスタルジッククォーツ", + "alias_name_display" : "ノスタルジッククォーツ", + "hash" : "cee63aa3410ac271f9e689e706fed16c", + "id" : "1428401", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "81", + "waist" : "54", + "weight" : "41" + } + }, { + "alias_name" : "ノスタルジッククォーツ", + "alias_name_display" : "ノスタルジッククォーツ", + "hash" : "6505d7ec95341d2ea666bce4c4ace347", + "id" : "1528402", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "81", + "waist" : "54", + "weight" : "41" + } + }, { + "alias_name" : "セクシー☆モデル", + "alias_name_display" : "セクシー☆モデル", + "event" : [ { + "event_id" : 1212, + "event_name" : "目指せきらきらモデル アイドルチャレンジ(復刻)" + } ], + "hash" : "8f2182eb0bd0296d28272849b868c066", + "id" : "1435301", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "81", + "waist" : "54", + "weight" : "41" + } + }, { + "alias_name" : "セクシー☆モデル", + "alias_name_display" : "セクシー☆モデル", + "event" : [ { + "event_id" : 1212, + "event_name" : "目指せきらきらモデル アイドルチャレンジ(復刻)" + } ], + "hash" : "dd3cbc7d99d27b18163a05c94d5fcbd1", + "id" : "1535302", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "81", + "waist" : "54", + "weight" : "41" + } + } ], + "idol_id" : 55, + "idol_name" : "工藤忍", + "idol_name_display" : "工藤忍", + "units" : [ { + "id" : "163", + "name" : "フリルドスクエア" + } ] +}, { + "aliases" : [ { + "hash" : "9d98993861fb0959c1f26b591db03133", + "id" : "1203301", + "profile" : { + "bust" : "77", + "height" : "161", + "hip" : "78", + "waist" : "54", + "weight" : "44" + } + }, { + "hash" : "1c72cc9daa679ff0461205b58cd658dd", + "id" : "1303302", + "profile" : { + "bust" : "77", + "height" : "161", + "hip" : "78", + "waist" : "54", + "weight" : "44" + } + }, { + "alias_name" : "サマーライブ", + "alias_name_display" : "サマーライブ", + "event" : [ { + "event_id" : 205, + "event_name" : "アイドルサバイバルinサマーライブ" + } ], + "hash" : "c939f82122b3992b8503b84d822325bf", + "id" : "1205001", + "profile" : { + "bust" : "77", + "height" : "161", + "hip" : "78", + "waist" : "54", + "weight" : "44" + } + }, { + "alias_name" : "サマーライブ", + "alias_name_display" : "サマーライブ", + "event" : [ { + "event_id" : 205, + "event_name" : "アイドルサバイバルinサマーライブ" + } ], + "hash" : "a6a97438fb401f3ba9527fd1a1e9854a", + "id" : "1305002", + "profile" : { + "bust" : "77", + "height" : "161", + "hip" : "78", + "waist" : "54", + "weight" : "44" + } + }, { + "alias_name" : "ドキドキの体験", + "alias_name_display" : "ドキドキの体験", + "event" : [ { + "event_id" : 705, + "event_name" : "第5回ドリームLIVEフェスティバル" + } ], + "hash" : "15fa4075fb991dac74c0169d34b75722", + "id" : "1214401", + "profile" : { + "bust" : "77", + "height" : "161", + "hip" : "78", + "waist" : "54", + "weight" : "44" + } + }, { + "alias_name" : "ドキドキの体験", + "alias_name_display" : "ドキドキの体験", + "event" : [ { + "event_id" : 705, + "event_name" : "第5回ドリームLIVEフェスティバル" + } ], + "hash" : "8311423f3087e6037c9f3947b25e2fa5", + "id" : "1314402", + "profile" : { + "bust" : "77", + "height" : "161", + "hip" : "78", + "waist" : "54", + "weight" : "44" + } + }, { + "alias_name" : "カラダリフレッシュ", + "alias_name_display" : "カラダリフレッシュ", + "hash" : "976a98cd479d6fee3835551198607d08", + "id" : "1221301", + "profile" : { + "bust" : "77", + "height" : "161", + "hip" : "78", + "waist" : "54", + "weight" : "44" + } + }, { + "alias_name" : "カラダリフレッシュ", + "alias_name_display" : "カラダリフレッシュ", + "hash" : "76f025719c16fbefa7645d13442902a9", + "id" : "1321302", + "profile" : { + "bust" : "77", + "height" : "161", + "hip" : "78", + "waist" : "54", + "weight" : "44" + } + }, { + "alias_name" : "ロワイヤルND", + "alias_name_display" : "ロワイヤルND", + "event" : [ { + "event_id" : 814, + "event_name" : "第14回アイドルLIVEロワイヤル" + } ], + "hash" : "72bff87c92c9241d7cbcd6bcbcac4a04", + "id" : "1224501", + "profile" : { + "bust" : "77", + "height" : "161", + "hip" : "78", + "waist" : "54", + "weight" : "44" + } + }, { + "alias_name" : "ロワイヤルND", + "alias_name_display" : "ロワイヤルND", + "event" : [ { + "event_id" : 814, + "event_name" : "第14回アイドルLIVEロワイヤル" + } ], + "hash" : "4c324bfd2ba4cf7549b0a42c87afc48d", + "id" : "1324502", + "profile" : { + "bust" : "77", + "height" : "161", + "hip" : "78", + "waist" : "54", + "weight" : "44" + } + }, { + "alias_name" : "クール・ミーツ・ガール", + "alias_name_display" : "クール・ミーツ・ガール", + "hash" : "f0789a5de3fc7098ff85248f3da62600", + "id" : "1229101", + "profile" : { + "bust" : "77", + "height" : "161", + "hip" : "78", + "waist" : "54", + "weight" : "44" + } + }, { + "alias_name" : "クール・ミーツ・ガール", + "alias_name_display" : "クール・ミーツ・ガール", + "hash" : "6e082b744d84ca3cf25e0662ef875acf", + "id" : "1329102", + "profile" : { + "bust" : "77", + "height" : "161", + "hip" : "78", + "waist" : "54", + "weight" : "44" + } + }, { + "alias_name" : "水彩の乙姫", + "alias_name_display" : "水彩の乙姫", + "hash" : "4e33a40fb2614286e18111b184ced78f", + "id" : "1404601", + "profile" : { + "bust" : "77", + "height" : "161", + "hip" : "78", + "waist" : "54", + "weight" : "44" + } + }, { + "alias_name" : "水彩の乙姫", + "alias_name_display" : "水彩の乙姫", + "hash" : "81c21953f0d614e868b6696aa7305141", + "id" : "1504602", + "profile" : { + "bust" : "77", + "height" : "161", + "hip" : "78", + "waist" : "54", + "weight" : "44" + } + }, { + "alias_name" : "さざ波の歌姫", + "alias_name_display" : "さざ波の歌姫", + "event" : [ { + "event_id" : 505, + "event_name" : "アイドルLIVEツアーinバリ島" + } ], + "hash" : "262fdd41fdad100b5ce5dfcb04660e43", + "id" : "1407501", + "profile" : { + "bust" : "77", + "height" : "161", + "hip" : "78", + "waist" : "54", + "weight" : "44" + } + }, { + "alias_name" : "さざ波の歌姫", + "alias_name_display" : "さざ波の歌姫", + "event" : [ { + "event_id" : 505, + "event_name" : "アイドルLIVEツアーinバリ島" + } ], + "hash" : "de9e3875700d52943c8ff3f36ae03f19", + "id" : "1507502", + "profile" : { + "bust" : "77", + "height" : "161", + "hip" : "78", + "waist" : "54", + "weight" : "44" + } + }, { + "alias_name" : "サファリフレンズ", + "alias_name_display" : "サファリフレンズ", + "event" : [ { + "event_id" : 414, + "event_name" : "どうぶつアドベンチャー オーストラリア編" + } ], + "hash" : "8c9125381bc6fac1f4bf22509e1f3d91", + "id" : "1418001", + "profile" : { + "bust" : "77", + "height" : "161", + "hip" : "78", + "waist" : "54", + "weight" : "44" + } + }, { + "alias_name" : "サファリフレンズ", + "alias_name_display" : "サファリフレンズ", + "event" : [ { + "event_id" : 414, + "event_name" : "どうぶつアドベンチャー オーストラリア編" + } ], + "hash" : "3948a272d8553ae67d31c24d9227e6ab", + "id" : "1518002", + "profile" : { + "bust" : "77", + "height" : "161", + "hip" : "78", + "waist" : "54", + "weight" : "44" + } + }, { + "alias_name" : "サファリフレンズ・S", + "alias_name_display" : "サファリフレンズ・S", + "event" : [ { + "event_id" : 414, + "event_name" : "どうぶつアドベンチャー オーストラリア編" + } ], + "hash" : "88cfe7b18e52bee4621c8215daf8da59", + "id" : "1418101", + "profile" : { + "bust" : "77", + "height" : "161", + "hip" : "78", + "waist" : "54", + "weight" : "44" + } + }, { + "alias_name" : "サファリフレンズ・S", + "alias_name_display" : "サファリフレンズ・S", + "event" : [ { + "event_id" : 414, + "event_name" : "どうぶつアドベンチャー オーストラリア編" + } ], + "hash" : "62f0227f670b106cec44eeb1b002a450", + "id" : "1518102", + "profile" : { + "bust" : "77", + "height" : "161", + "hip" : "78", + "waist" : "54", + "weight" : "44" + } + }, { + "alias_name" : "淡色の花びら", + "alias_name_display" : "淡色の花びら", + "hash" : "b4e1af48b2ab90cf2741d4326408ad3c", + "id" : "1439301", + "profile" : { + "bust" : "77", + "height" : "161", + "hip" : "78", + "waist" : "54", + "weight" : "44" + } + }, { + "alias_name" : "淡色の花びら", + "alias_name_display" : "淡色の花びら", + "hash" : "7a9fe2cd8a14757af1ce02c24ab770e4", + "id" : "1539302", + "profile" : { + "bust" : "77", + "height" : "161", + "hip" : "78", + "waist" : "54", + "weight" : "44" + } + } ], + "idol_id" : 56, + "idol_name" : "栗原ネネ", + "idol_name_display" : "栗原ネネ", + "units" : [ { + "id" : "93", + "name" : "サマーライブセーラー" + }, { + "id" : "121", + "name" : "ヘルシーサバイブ" + }, { + "id" : "210", + "name" : "ロワイヤルスタイルND" + } ] +}, { + "aliases" : [ { + "hash" : "f9947ff6fc9c5c580c0f6382c56cccbf", + "id" : "1203601", + "profile" : { + "bust" : "72", + "height" : "140", + "hip" : "77", + "waist" : "54", + "weight" : "35" + } + }, { + "hash" : "a958d30cc805b714a494127e990bd867", + "id" : "1303602", + "profile" : { + "bust" : "72", + "height" : "140", + "hip" : "77", + "waist" : "54", + "weight" : "35" + } + }, { + "alias_name" : "フリルド☆プリンセス", + "alias_name_display" : "フリルド☆プリンセス", + "hash" : "2f16bbc923b17cba192b8e631e40f14a", + "id" : "1204601", + "profile" : { + "bust" : "72", + "height" : "140", + "hip" : "77", + "waist" : "54", + "weight" : "35" + } + }, { + "alias_name" : "フリルド☆プリンセス", + "alias_name_display" : "フリルド☆プリンセス", + "hash" : "abb8c88d2d8a4291bf9b718cf403fffb", + "id" : "1304602", + "profile" : { + "bust" : "72", + "height" : "140", + "hip" : "77", + "waist" : "54", + "weight" : "35" + } + }, { + "alias_name" : "パジャマブルー", + "alias_name_display" : "パジャマブルー", + "hash" : "84e9eb47681f127f2f9302022290c6e5", + "id" : "1207901", + "profile" : { + "bust" : "72", + "height" : "140", + "hip" : "77", + "waist" : "54", + "weight" : "35" + } + }, { + "alias_name" : "パジャマグリーン", + "alias_name_display" : "パジャマグリーン", + "hash" : "9c9de39a77a00515630ba298315f9770", + "id" : "1207902", + "profile" : { + "bust" : "72", + "height" : "140", + "hip" : "77", + "waist" : "54", + "weight" : "35" + } + }, { + "alias_name" : "パジャマイエロー", + "alias_name_display" : "パジャマイエロー", + "hash" : "908f82baff4555afab72784e3fa06a76", + "id" : "1207903", + "profile" : { + "bust" : "72", + "height" : "140", + "hip" : "77", + "waist" : "54", + "weight" : "35" + } + }, { + "alias_name" : "パジャマピンク", + "alias_name_display" : "パジャマピンク", + "hash" : "6d66dea9b369b70085809d46e563cdfd", + "id" : "1207904", + "profile" : { + "bust" : "72", + "height" : "140", + "hip" : "77", + "waist" : "54", + "weight" : "35" + } + }, { + "alias_name" : "制服☆わくわく", + "alias_name_display" : "制服☆わくわく", + "hash" : "e88dc87103cc832f9c7da447a09a0dfb", + "id" : "1307905", + "profile" : { + "bust" : "72", + "height" : "140", + "hip" : "77", + "waist" : "54", + "weight" : "35" + } + }, { + "alias_name" : "制服&マフラー", + "alias_name_display" : "制服&マフラー", + "hash" : "12a91027f594548bb27c110247c24a1a", + "id" : "1307906", + "profile" : { + "bust" : "72", + "height" : "140", + "hip" : "77", + "waist" : "54", + "weight" : "35" + } + }, { + "alias_name" : "制服&手袋", + "alias_name_display" : "制服&手袋", + "hash" : "d2b1685306e2ed5a63b4f842d1e6ccc0", + "id" : "1307907", + "profile" : { + "bust" : "72", + "height" : "140", + "hip" : "77", + "waist" : "54", + "weight" : "35" + } + }, { + "alias_name" : "制服&ランドセル", + "alias_name_display" : "制服&ランドセル", + "hash" : "46c0db7ce6d94de5ea0d5f485866a6a5", + "id" : "1307908", + "profile" : { + "bust" : "72", + "height" : "140", + "hip" : "77", + "waist" : "54", + "weight" : "35" + } + }, { + "alias_name" : "制服&ヒョウくん", + "alias_name_display" : "制服&ヒョウくん", + "hash" : "f6913dd02d2b65c487bb089217117909", + "id" : "1307909", + "profile" : { + "bust" : "72", + "height" : "140", + "hip" : "77", + "waist" : "54", + "weight" : "35" + } + }, { + "alias_name" : "ロワイヤルスタイル", + "alias_name_display" : "ロワイヤルスタイル", + "event" : [ { + "event_id" : 803, + "event_name" : "第3回アイドルLIVEロワイヤル" + } ], + "hash" : "3ddcab2fd453ac8799225df9ef80955f", + "id" : "1214301", + "profile" : { + "bust" : "72", + "height" : "140", + "hip" : "77", + "waist" : "54", + "weight" : "35" + } + }, { + "alias_name" : "ロワイヤルスタイル", + "alias_name_display" : "ロワイヤルスタイル", + "event" : [ { + "event_id" : 803, + "event_name" : "第3回アイドルLIVEロワイヤル" + } ], + "hash" : "3f61d851272435aff56eece251b042b8", + "id" : "1314302", + "profile" : { + "bust" : "72", + "height" : "140", + "hip" : "77", + "waist" : "54", + "weight" : "35" + } + }, { + "alias_name" : "マーチングバンド", + "alias_name_display" : "マーチングバンド", + "hash" : "c1c7ceef7ed0f01ef66002f6a1d559b7", + "id" : "1216301", + "profile" : { + "bust" : "72", + "height" : "140", + "hip" : "77", + "waist" : "54", + "weight" : "35" + } + }, { + "alias_name" : "マーチングバンド", + "alias_name_display" : "マーチングバンド", + "hash" : "f43a06efe71914d7980f6d083f5e4154", + "id" : "1316302", + "profile" : { + "bust" : "72", + "height" : "140", + "hip" : "77", + "waist" : "54", + "weight" : "35" + } + }, { + "alias_name" : "ナチュラルハート", + "alias_name_display" : "ナチュラルハート", + "event" : [ { + "event_id" : "024", + "event_name" : "第24回プロダクションマッチフェスティバル" + } ], + "hash" : "9401b97954be6ce2c8b00e83c8a84d00", + "id" : "1324202", + "profile" : { + "bust" : "72", + "height" : "140", + "hip" : "77", + "waist" : "54", + "weight" : "35" + } + }, { + "alias_name" : "ファンサーキット", + "alias_name_display" : "ファンサーキット", + "hash" : "8fcbae7bdef65dba83912049e25b4c68", + "id" : "1227801", + "profile" : { + "bust" : "72", + "height" : "140", + "hip" : "77", + "waist" : "54", + "weight" : "35" + } + }, { + "alias_name" : "ファンサーキット", + "alias_name_display" : "ファンサーキット", + "hash" : "3ca5c74adb44ec35d7f38be469f91279", + "id" : "1327802", + "profile" : { + "bust" : "72", + "height" : "140", + "hip" : "77", + "waist" : "54", + "weight" : "35" + } + }, { + "alias_name" : "ふかふかプリンセス", + "alias_name_display" : "ふかふかプリンセス", + "hash" : "2897b6951c70fbf6ec07bb04be52db1c", + "id" : "1405510", + "profile" : { + "bust" : "72", + "height" : "140", + "hip" : "77", + "waist" : "54", + "weight" : "35" + } + }, { + "alias_name" : "ふかふかプリンセス", + "alias_name_display" : "ふかふかプリンセス", + "hash" : "9e8b0acfe5be8dbcfad65b1ba6924ede", + "id" : "1505511", + "profile" : { + "bust" : "72", + "height" : "140", + "hip" : "77", + "waist" : "54", + "weight" : "35" + } + }, { + "alias_name" : "ドリーム☆プリンセス", + "alias_name_display" : "ドリーム☆プリンセス", + "hash" : "653cf8ab79b929a272572ebfb80e57eb", + "id" : "1407201", + "profile" : { + "bust" : "72", + "height" : "140", + "hip" : "77", + "waist" : "54", + "weight" : "35" + } + }, { + "alias_name" : "ドリーム☆プリンセス", + "alias_name_display" : "ドリーム☆プリンセス", + "hash" : "177e5715b302c70280bcedb94097954d", + "id" : "1507202", + "profile" : { + "bust" : "72", + "height" : "140", + "hip" : "77", + "waist" : "54", + "weight" : "35" + } + }, { + "alias_name" : "ファンシーチアー", + "alias_name_display" : "ファンシーチアー", + "event" : [ { + "event_id" : 1105, + "event_name" : "第5回プロダクション対抗トークバトルショー" + } ], + "hash" : "b1326ae64519769176909f8c31b0ece5", + "id" : "1418201", + "profile" : { + "bust" : "72", + "height" : "140", + "hip" : "77", + "waist" : "54", + "weight" : "35" + } + }, { + "alias_name" : "ファンシーチアー", + "alias_name_display" : "ファンシーチアー", + "event" : [ { + "event_id" : 1105, + "event_name" : "第5回プロダクション対抗トークバトルショー" + } ], + "hash" : "e83e6fdacc1705cc72c321acf8c53c55", + "id" : "1518202", + "profile" : { + "bust" : "72", + "height" : "140", + "hip" : "77", + "waist" : "54", + "weight" : "35" + } + }, { + "alias_name" : "プリンセスコースター", + "alias_name_display" : "プリンセスコースター", + "event" : [ { + "event_id" : 713, + "event_name" : "第13回ドリームLIVEフェスティバル" + } ], + "hash" : "59e784ab13dc54104abc13f42cb007f6", + "id" : "1424701", + "profile" : { + "bust" : "72", + "height" : "140", + "hip" : "77", + "waist" : "54", + "weight" : "35" + } + }, { + "alias_name" : "プリンセスコースター", + "alias_name_display" : "プリンセスコースター", + "event" : [ { + "event_id" : 713, + "event_name" : "第13回ドリームLIVEフェスティバル" + } ], + "hash" : "582f24e271bd9b1df18e7806bea31b8f", + "id" : "1524702", + "profile" : { + "bust" : "72", + "height" : "140", + "hip" : "77", + "waist" : "54", + "weight" : "35" + } + }, { + "alias_name" : "プリンセス☆レディ", + "alias_name_display" : "プリンセス☆レディ", + "hash" : "2297f63f27b1a7563bb827fe8a8392d2", + "id" : "1435901", + "profile" : { + "bust" : "72", + "height" : "140", + "hip" : "77", + "waist" : "54", + "weight" : "35" + } + }, { + "alias_name" : "プリンセス☆レディ", + "alias_name_display" : "プリンセス☆レディ", + "hash" : "50a0bb6a83031685c407e03c4bd7d5b1", + "id" : "1535902", + "profile" : { + "bust" : "72", + "height" : "140", + "hip" : "77", + "waist" : "54", + "weight" : "35" + } + } ], + "idol_id" : 57, + "idol_name" : "古賀小春", + "idol_name_display" : "古賀小春", + "units" : [ { + "id" : "47", + "name" : "ひつじさんとうさぎさん" + }, { + "id" : "59", + "name" : "ムシバレイナと小春ちゃん" + }, { + "id" : "114", + "name" : "ドリームホープスプリング" + }, { + "id" : "120", + "name" : "ブルームジャーニー" + }, { + "id" : "177", + "name" : "桜舞隊" + }, { + "id" : "208", + "name" : "ロワイヤルスタイル" + }, { + "id" : "214", + "name" : "L.M.B.G" + } ] +}, { + "aliases" : [ { + "hash" : "15bf1c0a280683642827f5f4ef6463fa", + "id" : "1204301", + "profile" : { + "bust" : "80", + "height" : "166", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + }, { + "hash" : "64b7f4bee3dcda84e80a6eb6fd74bed7", + "id" : "1304302", + "profile" : { + "bust" : "80", + "height" : "166", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "メイドコレクション", + "alias_name_display" : "メイドコレクション", + "hash" : "f96f386674b8663fb2d0922fb9bb9e2f", + "id" : "1205501", + "profile" : { + "bust" : "80", + "height" : "166", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "メイドコレクション", + "alias_name_display" : "メイドコレクション", + "hash" : "a6da3c43dccdc56dedb6e4ef4264b34b", + "id" : "1305502", + "profile" : { + "bust" : "80", + "height" : "166", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "慈愛の乙女", + "alias_name_display" : "慈愛の乙女", + "hash" : "5b2a364d0b324b33475a64e41a5481f5", + "id" : "1210301", + "profile" : { + "bust" : "80", + "height" : "166", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "慈愛の乙女", + "alias_name_display" : "慈愛の乙女", + "hash" : "c117570c3431e779a82be7645da607a8", + "id" : "1310302", + "profile" : { + "bust" : "80", + "height" : "166", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "ハッピーウェディング", + "alias_name_display" : "ハッピーウェディング", + "hash" : "bcae385375507c2e23cff748a71b04e0", + "id" : "1216601", + "profile" : { + "bust" : "80", + "height" : "166", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "ハッピーウェディング", + "alias_name_display" : "ハッピーウェディング", + "hash" : "99d87d7d5c512fe9aa88aa51d82a24ce", + "id" : "1316602", + "profile" : { + "bust" : "80", + "height" : "166", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "ロワイヤルスタイルND", + "alias_name_display" : "ロワイヤルスタイルND", + "event" : [ { + "event_id" : 812, + "event_name" : "第12回アイドルLIVEロワイヤル" + } ], + "hash" : "f756925d3969cd208c9193cfe69a6ebb", + "id" : "1221801", + "profile" : { + "bust" : "80", + "height" : "166", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "ロワイヤルスタイルND", + "alias_name_display" : "ロワイヤルスタイルND", + "event" : [ { + "event_id" : 812, + "event_name" : "第12回アイドルLIVEロワイヤル" + } ], + "hash" : "9c77a5684cc801ed51be43e8accc7c8d", + "id" : "1321802", + "profile" : { + "bust" : "80", + "height" : "166", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "純真聖女", + "alias_name_display" : "純真聖女", + "hash" : "65c278dd35248e03bfab057f151ae7ea", + "id" : "1230401", + "profile" : { + "bust" : "80", + "height" : "166", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "純真聖女", + "alias_name_display" : "純真聖女", + "hash" : "75ec6c3138ddc57e94e07cf9dad8eeee", + "id" : "1330402", + "profile" : { + "bust" : "80", + "height" : "166", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "微笑みの聖女", + "alias_name_display" : "微笑みの聖女", + "event" : [ { + "event_id" : 208, + "event_name" : "アイドルサバイバル聖歌響くクリスマス" + } ], + "hash" : "09335c2b6f8ce37905b310bbeba456a2", + "id" : "1404101", + "profile" : { + "bust" : "80", + "height" : "166", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "微笑みの聖女", + "alias_name_display" : "微笑みの聖女", + "event" : [ { + "event_id" : 208, + "event_name" : "アイドルサバイバル聖歌響くクリスマス" + } ], + "hash" : "bbc3b96cdd63b04e3f14b622cf9fb0b2", + "id" : "1504102", + "profile" : { + "bust" : "80", + "height" : "166", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "癒しの贈り主", + "alias_name_display" : "癒しの贈り主", + "event" : [ { + "event_id" : 1001, + "event_name" : "プロダクション対抗ドリームLIVEフェスティバル" + } ], + "hash" : "e8c7a725d6386301ebc1ca860c09aa25", + "id" : "1411201", + "profile" : { + "bust" : "80", + "height" : "166", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "癒しの贈り主", + "alias_name_display" : "癒しの贈り主", + "event" : [ { + "event_id" : 1001, + "event_name" : "プロダクション対抗ドリームLIVEフェスティバル" + } ], + "hash" : "90ab2e69f7fa23ee5ebebbcbd095ab98", + "id" : "1511202", + "profile" : { + "bust" : "80", + "height" : "166", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "クリスマスチアー", + "alias_name_display" : "クリスマスチアー", + "event" : [ { + "event_id" : 1107, + "event_name" : "プロダクション対抗トークバトルショー クリスマスSP" + } ], + "hash" : "3bad9526e6a985a2b7857ab330d87849", + "id" : "1420601", + "profile" : { + "bust" : "80", + "height" : "166", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "クリスマスチアー", + "alias_name_display" : "クリスマスチアー", + "event" : [ { + "event_id" : 1107, + "event_name" : "プロダクション対抗トークバトルショー クリスマスSP" + } ], + "hash" : "e67c46611c81f95a5e971bc09d145ed1", + "id" : "1520602", + "profile" : { + "bust" : "80", + "height" : "166", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "慈愛のくちどけ", + "alias_name_display" : "慈愛のくちどけ", + "event" : [ { + "event_id" : 1209, + "event_name" : "アイドルチャレンジ チャレンジクッキング バレンタイン編" + } ], + "hash" : "79f78b16dee9f5ee22ea98b1b7444da2", + "id" : "1431201", + "profile" : { + "bust" : "80", + "height" : "166", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "慈愛のくちどけ", + "alias_name_display" : "慈愛のくちどけ", + "event" : [ { + "event_id" : 1209, + "event_name" : "アイドルチャレンジ チャレンジクッキング バレンタイン編" + } ], + "hash" : "f86f977a29cb9522f4036111e42b68ee", + "id" : "1531202", + "profile" : { + "bust" : "80", + "height" : "166", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "サンクスクラウン", + "alias_name_display" : "サンクスクラウン", + "event" : [ { + "event_id" : 1709, + "event_name" : "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" + } ], + "hash" : "50a051e89089dec096cf227dc1d90c28", + "id" : "1438701", + "profile" : { + "bust" : "80", + "height" : "166", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "サンクスクラウン", + "alias_name_display" : "サンクスクラウン", + "event" : [ { + "event_id" : 1709, + "event_name" : "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" + } ], + "hash" : "f109cc5d07d143f89d64cb1e57b17b1f", + "id" : "1538702", + "profile" : { + "bust" : "80", + "height" : "166", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "スマイリークラウン", + "alias_name_display" : "スマイリークラウン", + "event" : [ { + "event_id" : 1709, + "event_name" : "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" + } ], + "hash" : "87efd3625dad418d48da41787a2b37bb", + "id" : "1438801", + "profile" : { + "bust" : "80", + "height" : "166", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "スマイリークラウン", + "alias_name_display" : "スマイリークラウン", + "event" : [ { + "event_id" : 1709, + "event_name" : "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" + } ], + "hash" : "982a1fa17a690105cf07772a7d5bc5a4", + "id" : "1538802", + "profile" : { + "bust" : "80", + "height" : "166", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + } ], + "idol_id" : 58, + "idol_name" : "クラリス", + "idol_name_display" : "クラリス", + "units" : [ { + "id" : "183", + "name" : "メイドコレクション" + }, { + "id" : "210", + "name" : "ロワイヤルスタイルND" + } ] +}, { + "aliases" : [ { + "hash" : "34b22a25affabfd3160d7d70488f7e0d", + "id" : "1204701", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "54", + "weight" : "40" + } + }, { + "hash" : "66a161cbf5b2dbef9930d1e66a94353d", + "id" : "1304702", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "ハロウィンパーティー", + "alias_name_display" : "ハロウィンパーティー", + "hash" : "8fbe508ea0cdc7965934226e987f7cf1", + "id" : "1205801", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "ハロウィンパーティー", + "alias_name_display" : "ハロウィンパーティー", + "hash" : "779ae52ef5e88603c9f59a7c4bc9fc2e", + "id" : "1305802", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "バレンタインパーティー", + "alias_name_display" : "バレンタインパーティー", + "hash" : "e992cd82aa6f3cb56778cdf52e6d61a7", + "id" : "1207601", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "バレンタインパーティー", + "alias_name_display" : "バレンタインパーティー", + "hash" : "75dc2d3daa0e13a0a65993dca1ce22e6", + "id" : "1307602", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "ミニオンルージュ", + "alias_name_display" : "ミニオンルージュ", + "hash" : "e25204e06ba87be0ce49d8bae0f75caf", + "id" : "1218301", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "ミニオンルージュ", + "alias_name_display" : "ミニオンルージュ", + "hash" : "6f2093ebbf4a981184e7438c6e9e79ad", + "id" : "1318302", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "恋愛シンドローム", + "alias_name_display" : "恋愛シンドローム", + "event" : [ { + "event_id" : "009", + "event_name" : "第9回プロダクションマッチフェスティバル" + } ], + "hash" : "68906c11c99933d9b935559d28564dfb", + "id" : "1406201", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "恋愛シンドローム", + "alias_name_display" : "恋愛シンドローム", + "event" : [ { + "event_id" : "009", + "event_name" : "第9回プロダクションマッチフェスティバル" + } ], + "hash" : "94ed4bface9d28f01026c3bd4b37b5b6", + "id" : "1506202", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "深紅の絆", + "alias_name_display" : "深紅の絆", + "hash" : "488b63adfa1f6ee6a8094d896c06a482", + "id" : "1410001", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "深紅の絆", + "alias_name_display" : "深紅の絆", + "hash" : "b5fcc529f14d2af14cc88049959f75e5", + "id" : "1510002", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "16b8ab88018ec7d082ed5e30fe919777", + "id" : "1410201", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "14945818d71edf6c58aca2f6ac285880", + "id" : "1510202", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "永遠のキズナ", + "alias_name_display" : "永遠のキズナ", + "hash" : "9e9302ef4df411ebec766455d8639829", + "id" : "1415001", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "永遠のキズナ", + "alias_name_display" : "永遠のキズナ", + "hash" : "ee143713daf8980b379fcf4cb0781252", + "id" : "1515002", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "夜の一面", + "alias_name_display" : "夜の一面", + "hash" : "6b05c13dbff446aa54b864db247803bc", + "id" : "1422801", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "夜の一面", + "alias_name_display" : "夜の一面", + "hash" : "65767bfe6dbd99ac9fadfc92b50b8ef4", + "id" : "1522802", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "夏の秘めごと", + "alias_name_display" : "夏の秘めごと", + "hash" : "30108d92501e8c84f060155397d0c3cf", + "id" : "1425501", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "夏の秘めごと", + "alias_name_display" : "夏の秘めごと", + "hash" : "73bf94a283339f78981639b3e49dd978", + "id" : "1525502", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "紡ぐ想い", + "alias_name_display" : "紡ぐ想い", + "event" : [ { + "event_id" : 718, + "event_name" : "ドリームLIVEフェスティバル 新春SP" + } ], + "hash" : "82a3479c20cdb541e831b7c4e5545101", + "id" : "1430301", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "紡ぐ想い", + "alias_name_display" : "紡ぐ想い", + "event" : [ { + "event_id" : 718, + "event_name" : "ドリームLIVEフェスティバル 新春SP" + } ], + "hash" : "d57410cf13e6180f953b6a74468ce188", + "id" : "1530302", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "あいの待ち人", + "alias_name_display" : "あいの待ち人", + "hash" : "b575c60c5be78090ea7ea898230be35c", + "id" : "1433601", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "あいの待ち人", + "alias_name_display" : "あいの待ち人", + "hash" : "7c594e9d082d82d137aed4b622810830", + "id" : "1533602", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "5thアニバーサリー", + "alias_name_display" : "5thアニバーサリー", + "event" : [ { + "event_id" : 1708, + "event_name" : "アイドルプロデュース the 5th Anniversary" + } ], + "hash" : "3778fb8d5f804874476ab09b229a0b02", + "id" : "1436701", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "5thアニバーサリー", + "alias_name_display" : "5thアニバーサリー", + "event" : [ { + "event_id" : 1708, + "event_name" : "アイドルプロデュース the 5th Anniversary" + } ], + "hash" : "bbd2f79e3d424243b81065cdb02254b3", + "id" : "1536702", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "5thアニバーサリー・S", + "alias_name_display" : "5thアニバーサリー・S", + "event" : [ { + "event_id" : 1708, + "event_name" : "アイドルプロデュース the 5th Anniversary" + } ], + "hash" : "ae5998871579b27a0290534675a8ae45", + "id" : "1436801", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "5thアニバーサリー・S", + "alias_name_display" : "5thアニバーサリー・S", + "event" : [ { + "event_id" : 1708, + "event_name" : "アイドルプロデュース the 5th Anniversary" + } ], + "hash" : "992e3ae2a449f25bc4678f9bde5e327d", + "id" : "1536802", + "profile" : { + "bust" : "78", + "height" : "153", + "hip" : "80", + "waist" : "54", + "weight" : "40" + } + } ], + "idol_id" : 59, + "idol_name" : "佐久間まゆ", + "idol_name_display" : "佐久間まゆ", + "units" : [ { + "id" : "85", + "name" : "アンダーザデスク" + }, { + "id" : "127", + "name" : "落花流水" + }, { + "id" : "180", + "name" : "ハロウィンパーティー" + }, { + "id" : "192", + "name" : "Masque:Rade" + }, { + "id" : "194", + "name" : "サクヤヒメ" + }, { + "id" : "212", + "name" : "CINDERELLA GIRLS" + } ] +}, { + "aliases" : [ { + "alias_name" : "ニューウェーブ", + "alias_name_display" : "ニューウェーブ", + "event" : [ { + "event_id" : 401, + "event_name" : "新人アイドルプロデュース" + } ], + "hash" : "cca70f56774507cb696b0e85846a8786", + "id" : "1205301", + "profile" : { + "bust" : "75", + "height" : "145", + "hip" : "77", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "ニューウェーブ", + "alias_name_display" : "ニューウェーブ", + "event" : [ { + "event_id" : 401, + "event_name" : "新人アイドルプロデュース" + } ], + "hash" : "dd194a0d6c9801be6c7ff8401a9abb6a", + "id" : "1305302", + "profile" : { + "bust" : "75", + "height" : "145", + "hip" : "77", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "アメリカンスタイル", + "alias_name_display" : "アメリカンスタイル", + "event" : [ { + "event_id" : 501, + "event_name" : "アイドルLIVEツアーinUSA" + } ], + "hash" : "ccd71c6162319419c02c942f9a4fc25b", + "id" : "1206501", + "profile" : { + "bust" : "75", + "height" : "145", + "hip" : "77", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "アメリカンスタイル", + "alias_name_display" : "アメリカンスタイル", + "event" : [ { + "event_id" : 501, + "event_name" : "アイドルLIVEツアーinUSA" + } ], + "hash" : "5aa6b80bdf46181a90452a7c9a3d63d7", + "id" : "1306502", + "profile" : { + "bust" : "75", + "height" : "145", + "hip" : "77", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "ジューンブライド", + "alias_name_display" : "ジューンブライド", + "hash" : "a4d1885668eaa8e900c8f5a23eb08026", + "id" : "1210001", + "profile" : { + "bust" : "75", + "height" : "145", + "hip" : "77", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "ジューンブライド", + "alias_name_display" : "ジューンブライド", + "hash" : "6970f984e6d3f291ff2f448a2b1a12d5", + "id" : "1310002", + "profile" : { + "bust" : "75", + "height" : "145", + "hip" : "77", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "ピーチブライト", + "alias_name_display" : "ピーチブライト", + "hash" : "6d9e8b1a789c3e37cbe870d637e2b03e", + "id" : "1214801", + "profile" : { + "bust" : "75", + "height" : "145", + "hip" : "77", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "ピーチブライト", + "alias_name_display" : "ピーチブライト", + "hash" : "1b806506d65b67adbd6ecd51d47077c3", + "id" : "1314802", + "profile" : { + "bust" : "75", + "height" : "145", + "hip" : "77", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "振袖まつり", + "alias_name_display" : "振袖まつり", + "hash" : "eedf6394ca7b88fe4ecad5cced109e30", + "id" : "1219801", + "profile" : { + "bust" : "75", + "height" : "145", + "hip" : "77", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "振袖まつり", + "alias_name_display" : "振袖まつり", + "hash" : "e8c9d76c86a5b5fe86e5a1c438acb359", + "id" : "1319802", + "profile" : { + "bust" : "75", + "height" : "145", + "hip" : "77", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "ラブリーヒーロー", + "alias_name_display" : "ラブリーヒーロー", + "event" : [ { + "event_id" : 523, + "event_name" : "鋼鉄公演 きらりんロボ -襲来!コスメティア帝国-" + } ], + "hash" : "c1c6c25e5dcc6d8645f3646821d62193", + "id" : "1325602", + "profile" : { + "bust" : "75", + "height" : "145", + "hip" : "77", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "ピーチウェーブ", + "alias_name_display" : "ピーチウェーブ", + "event" : [ { + "event_id" : 801, + "event_name" : "アイドルLIVEロワイヤル" + } ], + "hash" : "66a93f44e6d4ebe903a0d2c9af55fa94", + "id" : "1409401", + "profile" : { + "bust" : "75", + "height" : "145", + "hip" : "77", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "ピーチウェーブ", + "alias_name_display" : "ピーチウェーブ", + "event" : [ { + "event_id" : 801, + "event_name" : "アイドルLIVEロワイヤル" + } ], + "hash" : "b0e88abd43d2e92070e87345604ba58e", + "id" : "1509402", + "profile" : { + "bust" : "75", + "height" : "145", + "hip" : "77", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "ももいろはぁと", + "alias_name_display" : "ももいろはぁと", + "hash" : "cd57db91a5128ab3f53353c546fde622", + "id" : "1417701", + "profile" : { + "bust" : "75", + "height" : "145", + "hip" : "77", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "ももいろはぁと", + "alias_name_display" : "ももいろはぁと", + "hash" : "67be2476e6f6f748af508b908680d3a4", + "id" : "1517702", + "profile" : { + "bust" : "75", + "height" : "145", + "hip" : "77", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "ピンキーサマーガール", + "alias_name_display" : "ピンキーサマーガール", + "event" : [ { + "event_id" : 714, + "event_name" : "夏祭りDEドリームLIVEフェスティバル" + } ], + "hash" : "66505d81c0f3883b0c8cea8b15730a0e", + "id" : "1425401", + "profile" : { + "bust" : "75", + "height" : "145", + "hip" : "77", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "ピンキーサマーガール", + "alias_name_display" : "ピンキーサマーガール", + "event" : [ { + "event_id" : 714, + "event_name" : "夏祭りDEドリームLIVEフェスティバル" + } ], + "hash" : "aa35983b252aac6dac6946873e8c284c", + "id" : "1525402", + "profile" : { + "bust" : "75", + "height" : "145", + "hip" : "77", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "ピーチ・ロワイヤル", + "alias_name_display" : "ピーチ・ロワイヤル", + "event" : [ { + "event_id" : 819, + "event_name" : "アイドルLIVEロワイヤル お月見SP" + } ], + "hash" : "26d33e3346c4ddd192d97386d5f6052d", + "id" : "1435501", + "profile" : { + "bust" : "75", + "height" : "145", + "hip" : "77", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "ピーチ・ロワイヤル", + "alias_name_display" : "ピーチ・ロワイヤル", + "event" : [ { + "event_id" : 819, + "event_name" : "アイドルLIVEロワイヤル お月見SP" + } ], + "hash" : "ebb11271a7d62ddd422485a4f70d346b", + "id" : "1535502", + "profile" : { + "bust" : "75", + "height" : "145", + "hip" : "77", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "ピンキーチアー", + "alias_name_display" : "ピンキーチアー", + "event" : [ { + "event_id" : 1512, + "event_name" : "第12回チーム対抗トークバトルショー" + } ], + "hash" : "25d4b3908e0cf5edea1c5c3b7dbdc238", + "id" : "1439801", + "profile" : { + "bust" : "75", + "height" : "145", + "hip" : "77", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "ピンキーチアー", + "alias_name_display" : "ピンキーチアー", + "event" : [ { + "event_id" : 1512, + "event_name" : "第12回チーム対抗トークバトルショー" + } ], + "hash" : "f3a647752b0e6c8f4d4938a2a5bbd308", + "id" : "1539802", + "profile" : { + "bust" : "75", + "height" : "145", + "hip" : "77", + "waist" : "55", + "weight" : "38" + } + } ], + "idol_id" : 60, + "idol_name" : "村松さくら", + "idol_name_display" : "村松さくら", + "units" : [ { + "id" : "99", + "name" : "ニューウェーブ" + }, { + "id" : "133", + "name" : "スケルツォ・プリマヴェーラ" + }, { + "id" : "211", + "name" : "ワンダー・フル" + } ] +}, { + "aliases" : [ { + "hash" : "131e22dcecbfcd1842e42ba64311950f", + "id" : "1207401", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "79", + "waist" : "53", + "weight" : "42" + } + }, { + "hash" : "ac752be594a7ef6f941afe54b16fb89f", + "id" : "1307402", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "79", + "waist" : "53", + "weight" : "42" + } + }, { + "alias_name" : "スズランの少女", + "alias_name_display" : "スズランの少女", + "hash" : "a972c564e643b4fd29062fd793dea518", + "id" : "1209101", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "79", + "waist" : "53", + "weight" : "42" + } + }, { + "alias_name" : "スズランの少女", + "alias_name_display" : "スズランの少女", + "hash" : "98f023a92a2325a9d8d8e6792c0fdfc5", + "id" : "1309102", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "79", + "waist" : "53", + "weight" : "42" + } + }, { + "alias_name" : "クリスマスパーティー", + "alias_name_display" : "クリスマスパーティー", + "hash" : "696123f234c80f15774af4abddf16b96", + "id" : "1213501", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "79", + "waist" : "53", + "weight" : "42" + } + }, { + "alias_name" : "クリスマスパーティー", + "alias_name_display" : "クリスマスパーティー", + "hash" : "58a8fe570f2ff89670664b97f7aa7e3c", + "id" : "1313502", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "79", + "waist" : "53", + "weight" : "42" + } + }, { + "alias_name" : "ネクストスターI.C", + "alias_name_display" : "ネクストスターI.C", + "event" : [ { + "event_id" : 1203, + "event_name" : "目指せきらきらモデル アイドルチャレンジ" + } ], + "hash" : "d1446ce3ef56732762e0abfd25c5af29", + "id" : "1318502", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "79", + "waist" : "53", + "weight" : "42" + } + }, { + "alias_name" : "ブライダルセレクション", + "alias_name_display" : "ブライダルセレクション", + "hash" : "baa3f8a78d448f1a5d92a31fb365d788", + "id" : "1221901", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "79", + "waist" : "53", + "weight" : "42" + } + }, { + "alias_name" : "ブライダルセレクション", + "alias_name_display" : "ブライダルセレクション", + "hash" : "e7625d22c7ab7a44501f90367a46f6ce", + "id" : "1321902", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "79", + "waist" : "53", + "weight" : "42" + } + }, { + "alias_name" : "新春ガール", + "alias_name_display" : "新春ガール", + "hash" : "0e072ad042d396bdaa534d07b3bff9ce", + "id" : "1225501", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "79", + "waist" : "53", + "weight" : "42" + } + }, { + "alias_name" : "新春ガール", + "alias_name_display" : "新春ガール", + "hash" : "9bd07056d855d3a6dec35a7e6892522a", + "id" : "1325502", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "79", + "waist" : "53", + "weight" : "42" + } + }, { + "alias_name" : "とらわれの少女", + "alias_name_display" : "とらわれの少女", + "event" : [ { + "event_id" : 1903, + "event_name" : "怪奇公演 心霊探偵の事件簿" + } ], + "hash" : "ba6722bb1c6dcdbd1a91709668e646aa", + "id" : "1329402", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "79", + "waist" : "53", + "weight" : "42" + } + }, { + "alias_name" : "ガーリーホープ", + "alias_name_display" : "ガーリーホープ", + "hash" : "05647a0c627bedf18e33330d17457248", + "id" : "1232201", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "79", + "waist" : "53", + "weight" : "42" + } + }, { + "alias_name" : "ガーリーホープ", + "alias_name_display" : "ガーリーホープ", + "hash" : "48a8bc3f29d0f6ca1d50f2ccc232704d", + "id" : "1332202", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "79", + "waist" : "53", + "weight" : "42" + } + }, { + "alias_name" : "一輪の幸せ", + "alias_name_display" : "一輪の幸せ", + "event" : [ { + "event_id" : 408, + "event_name" : "アイドルプロデュース 夜空に咲く花火編" + } ], + "hash" : "7366f59d1cb9104aa14408bf6b0a1685", + "id" : "1407801", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "79", + "waist" : "53", + "weight" : "42" + } + }, { + "alias_name" : "一輪の幸せ", + "alias_name_display" : "一輪の幸せ", + "event" : [ { + "event_id" : 408, + "event_name" : "アイドルプロデュース 夜空に咲く花火編" + } ], + "hash" : "0b0556489f7c356f4f86c7f62c1895fe", + "id" : "1507802", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "79", + "waist" : "53", + "weight" : "42" + } + }, { + "alias_name" : "一輪の微笑み", + "alias_name_display" : "一輪の微笑み", + "event" : [ { + "event_id" : 408, + "event_name" : "アイドルプロデュース 夜空に咲く花火編" + } ], + "hash" : "6a60f6b5f8784dc117518141ec85d6ce", + "id" : "1407901", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "79", + "waist" : "53", + "weight" : "42" + } + }, { + "alias_name" : "一輪の微笑み", + "alias_name_display" : "一輪の微笑み", + "event" : [ { + "event_id" : 408, + "event_name" : "アイドルプロデュース 夜空に咲く花火編" + } ], + "hash" : "e9e67aa3048f99a1b6c947420f14fd39", + "id" : "1507902", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "79", + "waist" : "53", + "weight" : "42" + } + }, { + "alias_name" : "ヴォヤージュ・ブレイバー", + "alias_name_display" : "ヴォヤージュ・ブレイバー", + "event" : [ { + "event_id" : 511, + "event_name" : "幻想公演 黒薔薇姫のヴォヤージュ" + } ], + "hash" : "3951d206a98c01816ea716b884c4493c", + "id" : "1413501", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "79", + "waist" : "53", + "weight" : "42" + } + }, { + "alias_name" : "ヴォヤージュ・ブレイバー", + "alias_name_display" : "ヴォヤージュ・ブレイバー", + "event" : [ { + "event_id" : 511, + "event_name" : "幻想公演 黒薔薇姫のヴォヤージュ" + } ], + "hash" : "7ee03937f2b9ff863c42b7f56b2e3452", + "id" : "1513502", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "79", + "waist" : "53", + "weight" : "42" + } + }, { + "alias_name" : "ゴシック・モデル", + "alias_name_display" : "ゴシック・モデル", + "event" : [ { + "event_id" : 1203, + "event_name" : "目指せきらきらモデル アイドルチャレンジ" + } ], + "hash" : "528f78898b64b0cfca21b9b3df92b8f9", + "id" : "1418501", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "79", + "waist" : "53", + "weight" : "42" + } + }, { + "alias_name" : "ゴシック・モデル", + "alias_name_display" : "ゴシック・モデル", + "event" : [ { + "event_id" : 1203, + "event_name" : "目指せきらきらモデル アイドルチャレンジ" + } ], + "hash" : "60957fb83e61728971e59c3b7d6db824", + "id" : "1518502", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "79", + "waist" : "53", + "weight" : "42" + } + }, { + "alias_name" : "ゴシック・モデル・S", + "alias_name_display" : "ゴシック・モデル・S", + "event" : [ { + "event_id" : 1203, + "event_name" : "目指せきらきらモデル アイドルチャレンジ" + } ], + "hash" : "34008f666855a0243d603059170c529d", + "id" : "1418601", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "79", + "waist" : "53", + "weight" : "42" + } + }, { + "alias_name" : "ゴシック・モデル・S", + "alias_name_display" : "ゴシック・モデル・S", + "event" : [ { + "event_id" : 1203, + "event_name" : "目指せきらきらモデル アイドルチャレンジ" + } ], + "hash" : "6368d0388cfd0c45ce09e176b611d5ba", + "id" : "1518602", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "79", + "waist" : "53", + "weight" : "42" + } + }, { + "alias_name" : "たいせつな言葉", + "alias_name_display" : "たいせつな言葉", + "event" : [ { + "event_id" : 1108, + "event_name" : "第8回プロダクション対抗トークバトルショー" + } ], + "hash" : "138f907e7b673a2da81e05f01255d8d4", + "id" : "1421601", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "79", + "waist" : "53", + "weight" : "42" + } + }, { + "alias_name" : "たいせつな言葉", + "alias_name_display" : "たいせつな言葉", + "event" : [ { + "event_id" : 1108, + "event_name" : "第8回プロダクション対抗トークバトルショー" + } ], + "hash" : "311b51c7dd9d3484cdc72a6581515137", + "id" : "1521602", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "79", + "waist" : "53", + "weight" : "42" + } + }, { + "alias_name" : "小さなひかり", + "alias_name_display" : "小さなひかり", + "hash" : "bdbf0b4f40b07b310430176c7c3fae8a", + "id" : "1427401", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "79", + "waist" : "53", + "weight" : "42" + } + }, { + "alias_name" : "小さなひかり", + "alias_name_display" : "小さなひかり", + "hash" : "9024cb32c76078e8f0e4850151c007ba", + "id" : "1527402", + "profile" : { + "bust" : "77", + "height" : "156", + "hip" : "79", + "waist" : "53", + "weight" : "42" + } + } ], + "idol_id" : 61, + "idol_name" : "白菊ほたる", + "idol_name_display" : "白菊ほたる", + "units" : [ { + "id" : "58", + "name" : "ミス・フォーチュン" + }, { + "id" : "129", + "name" : "ワンステップス" + }, { + "id" : "130", + "name" : "GIRLS BE" + }, { + "id" : "162", + "name" : "ブライダルセレクション" + }, { + "id" : "172", + "name" : "GIRLS BE NEXT STEP" + } ] +}, { + "aliases" : [ { + "hash" : "bad5f37bdb10a4526a1783e377e160ff", + "id" : "1208501", + "profile" : { + "bust" : "75", + "height" : "147", + "hip" : "77", + "waist" : "54", + "weight" : "39" + } + }, { + "hash" : "68cea8b7be360ca60cfe489fef72ba4d", + "id" : "1308502", + "profile" : { + "bust" : "75", + "height" : "147", + "hip" : "77", + "waist" : "54", + "weight" : "39" + } + }, { + "alias_name" : "ポッピンパンク", + "alias_name_display" : "ポッピンパンク", + "hash" : "d79fbb722742fb5beb56c15f1c4f103f", + "id" : "1209601", + "profile" : { + "bust" : "75", + "height" : "147", + "hip" : "77", + "waist" : "54", + "weight" : "39" + } + }, { + "alias_name" : "ポッピンパンク", + "alias_name_display" : "ポッピンパンク", + "hash" : "c2b615df454d63ec7b6d75b7764088f0", + "id" : "1309602", + "profile" : { + "bust" : "75", + "height" : "147", + "hip" : "77", + "waist" : "54", + "weight" : "39" + } + }, { + "alias_name" : "振袖まつり", + "alias_name_display" : "振袖まつり", + "hash" : "7a86475ebfdde585eda4c811ec24cbad", + "id" : "1219701", + "profile" : { + "bust" : "75", + "height" : "147", + "hip" : "77", + "waist" : "54", + "weight" : "39" + } + }, { + "alias_name" : "振袖まつり", + "alias_name_display" : "振袖まつり", + "hash" : "bdd3d0105cd1458f0dc2d730aa7d1d7d", + "id" : "1319702", + "profile" : { + "bust" : "75", + "height" : "147", + "hip" : "77", + "waist" : "54", + "weight" : "39" + } + }, { + "alias_name" : "春キャンプ", + "alias_name_display" : "春キャンプ", + "event" : [ { + "event_id" : 1701, + "event_name" : "アイドルプロデュース はじめてのキャンプ" + } ], + "hash" : "b371a7c3e8b202a0c678f650caab9648", + "id" : "1221401", + "profile" : { + "bust" : "75", + "height" : "147", + "hip" : "77", + "waist" : "54", + "weight" : "39" + } + }, { + "alias_name" : "春キャンプ", + "alias_name_display" : "春キャンプ", + "event" : [ { + "event_id" : 1701, + "event_name" : "アイドルプロデュース はじめてのキャンプ" + } ], + "hash" : "8c64826cbb5c5e106dc37e01b4613eb0", + "id" : "1321402", + "profile" : { + "bust" : "75", + "height" : "147", + "hip" : "77", + "waist" : "54", + "weight" : "39" + } + }, { + "alias_name" : "笑顔でキャンプ", + "alias_name_display" : "笑顔でキャンプ", + "event" : [ { + "event_id" : 1701, + "event_name" : "アイドルプロデュース はじめてのキャンプ" + } ], + "hash" : "8641b029a36d30cac2224b3e28374de5", + "id" : "1221501", + "profile" : { + "bust" : "75", + "height" : "147", + "hip" : "77", + "waist" : "54", + "weight" : "39" + } + }, { + "alias_name" : "笑顔でキャンプ", + "alias_name_display" : "笑顔でキャンプ", + "event" : [ { + "event_id" : 1701, + "event_name" : "アイドルプロデュース はじめてのキャンプ" + } ], + "hash" : "4aa82a539c35e043008a425cb5500a6d", + "id" : "1321502", + "profile" : { + "bust" : "75", + "height" : "147", + "hip" : "77", + "waist" : "54", + "weight" : "39" + } + }, { + "alias_name" : "ドリームトリック", + "alias_name_display" : "ドリームトリック", + "event" : [ { + "event_id" : 721, + "event_name" : "第21回ドリームLIVEフェスティバル" + } ], + "hash" : "fa77d5ee099e6a92a37b073c109a9998", + "id" : "1227701", + "profile" : { + "bust" : "75", + "height" : "147", + "hip" : "77", + "waist" : "54", + "weight" : "39" + } + }, { + "alias_name" : "ドリームトリック", + "alias_name_display" : "ドリームトリック", + "event" : [ { + "event_id" : 721, + "event_name" : "第21回ドリームLIVEフェスティバル" + } ], + "hash" : "e976ab9a95755872d16aa104b21250cb", + "id" : "1327702", + "profile" : { + "bust" : "75", + "height" : "147", + "hip" : "77", + "waist" : "54", + "weight" : "39" + } + }, { + "alias_name" : "パンクな乙女", + "alias_name_display" : "パンクな乙女", + "event" : [ { + "event_id" : "012", + "event_name" : "第12回プロダクションマッチフェスティバル" + } ], + "hash" : "1b3eb0f6d24358407bf0ae20924dda0f", + "id" : "1409001", + "profile" : { + "bust" : "75", + "height" : "147", + "hip" : "77", + "waist" : "54", + "weight" : "39" + } + }, { + "alias_name" : "パンクな乙女", + "alias_name_display" : "パンクな乙女", + "event" : [ { + "event_id" : "012", + "event_name" : "第12回プロダクションマッチフェスティバル" + } ], + "hash" : "1cd236539b1fd894749b204de5366773", + "id" : "1509002", + "profile" : { + "bust" : "75", + "height" : "147", + "hip" : "77", + "waist" : "54", + "weight" : "39" + } + }, { + "alias_name" : "タイニーロワイヤル", + "alias_name_display" : "タイニーロワイヤル", + "event" : [ { + "event_id" : 804, + "event_name" : "第4回アイドルLIVEロワイヤル" + } ], + "hash" : "562859c070d8be5fed9ff656590c9130", + "id" : "1413101", + "profile" : { + "bust" : "75", + "height" : "147", + "hip" : "77", + "waist" : "54", + "weight" : "39" + } + }, { + "alias_name" : "タイニーロワイヤル", + "alias_name_display" : "タイニーロワイヤル", + "event" : [ { + "event_id" : 804, + "event_name" : "第4回アイドルLIVEロワイヤル" + } ], + "hash" : "a378ecd5a22ee861931d828f3bb9b5c6", + "id" : "1513102", + "profile" : { + "bust" : "75", + "height" : "147", + "hip" : "77", + "waist" : "54", + "weight" : "39" + } + }, { + "alias_name" : "ちいさなメイドさん", + "alias_name_display" : "ちいさなメイドさん", + "hash" : "da000df3ec68bd3bdeb736063003bda4", + "id" : "1417501", + "profile" : { + "bust" : "75", + "height" : "147", + "hip" : "77", + "waist" : "54", + "weight" : "39" + } + }, { + "alias_name" : "ちいさなメイドさん", + "alias_name_display" : "ちいさなメイドさん", + "hash" : "9ab6c26a04dabd10040b29b2743401bf", + "id" : "1517502", + "profile" : { + "bust" : "75", + "height" : "147", + "hip" : "77", + "waist" : "54", + "weight" : "39" + } + }, { + "alias_name" : "小悪魔エース", + "alias_name_display" : "小悪魔エース", + "hash" : "2be0cb2364a23cddd828baa99f2be3af", + "id" : "1427801", + "profile" : { + "bust" : "75", + "height" : "147", + "hip" : "77", + "waist" : "54", + "weight" : "39" + } + }, { + "alias_name" : "小悪魔エース", + "alias_name_display" : "小悪魔エース", + "hash" : "d705eed7b89ddaf08fb7818f0ca2fa0c", + "id" : "1527802", + "profile" : { + "bust" : "75", + "height" : "147", + "hip" : "77", + "waist" : "54", + "weight" : "39" + } + }, { + "alias_name" : "スウィートデビル", + "alias_name_display" : "スウィートデビル", + "event" : [ { + "event_id" : 725, + "event_name" : "第25回ドリームLIVEフェスティバル" + } ], + "hash" : "3dacc7a55df85271a71ceada8e29e140", + "id" : "1436201", + "profile" : { + "bust" : "75", + "height" : "147", + "hip" : "77", + "waist" : "54", + "weight" : "39" + } + }, { + "alias_name" : "スウィートデビル", + "alias_name_display" : "スウィートデビル", + "event" : [ { + "event_id" : 725, + "event_name" : "第25回ドリームLIVEフェスティバル" + } ], + "hash" : "1aea545811f830d6c6baad2453571a96", + "id" : "1536202", + "profile" : { + "bust" : "75", + "height" : "147", + "hip" : "77", + "waist" : "54", + "weight" : "39" + } + } ], + "idol_id" : 62, + "idol_name" : "早坂美玲", + "idol_name_display" : "早坂美玲", + "units" : [ { + "id" : "83", + "name" : "Shock'in Pink!" + }, { + "id" : "108", + "name" : "individuals" + }, { + "id" : "186", + "name" : "LittlePOPS" + } ] +}, { + "aliases" : [ { + "hash" : "6a5d8d6eb2f6d9d734794f521447d592", + "id" : "1212001", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "hash" : "c61eed5b951b911628aa095766126575", + "id" : "1312002", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "ラブ&ハッピー", + "alias_name_display" : "ラブ&ハッピー", + "event" : [ { + "event_id" : 1001, + "event_name" : "プロダクション対抗ドリームLIVEフェスティバル" + } ], + "hash" : "ca5185ecc1e5ec937692c1fc7c17ea6b", + "id" : "1213701", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "ラブ&ハッピー", + "alias_name_display" : "ラブ&ハッピー", + "event" : [ { + "event_id" : 1001, + "event_name" : "プロダクション対抗ドリームLIVEフェスティバル" + } ], + "hash" : "48305cfd4d369af92be35406d600b694", + "id" : "1313702", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "グリッターステージ", + "alias_name_display" : "グリッターステージ", + "hash" : "79a9586c65b68c645c2d4ecc038911dc", + "id" : "1215301", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "グリッターステージ", + "alias_name_display" : "グリッターステージ", + "hash" : "3ed3bde1cf66bc0ed3ab12dd9f35dbd3", + "id" : "1315302", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "ラヴスピリッツ", + "alias_name_display" : "ラヴスピリッツ", + "hash" : "69725122bafcda8e1df0dde17ed22ca6", + "id" : "1220101", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "ラヴスピリッツ", + "alias_name_display" : "ラヴスピリッツ", + "hash" : "897aab97bad314ac6a7299e13eb7fb55", + "id" : "1320102", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "シーフパートナー", + "alias_name_display" : "シーフパートナー", + "event" : [ { + "event_id" : 521, + "event_name" : "怪盗公演 美しき追跡者" + } ], + "hash" : "16a509cb6675eac3dd83dfac5743af24", + "id" : "1323202", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "ピースフルワールド", + "alias_name_display" : "ピースフルワールド", + "event" : [ { + "event_id" : "030", + "event_name" : "第30回プロダクションマッチフェスティバル" + } ], + "hash" : "f3ba2abe509615506b3d536bb54388d1", + "id" : "1228901", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "ピースフルワールド", + "alias_name_display" : "ピースフルワールド", + "event" : [ { + "event_id" : "030", + "event_name" : "第30回プロダクションマッチフェスティバル" + } ], + "hash" : "b3132f8ad6730a31b05e7e51066d8302", + "id" : "1328902", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "船上の音楽家", + "alias_name_display" : "船上の音楽家", + "event" : [ { + "event_id" : 513, + "event_name" : "海賊公演 オーシャンクルーズ" + } ], + "hash" : "f7c5267834a12b3aa0bc4601c553e3f3", + "id" : "1415601", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "船上の音楽家", + "alias_name_display" : "船上の音楽家", + "event" : [ { + "event_id" : 513, + "event_name" : "海賊公演 オーシャンクルーズ" + } ], + "hash" : "4cfdc9ae4b380127768d15e1988475bc", + "id" : "1515602", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "ピースドリーマー", + "alias_name_display" : "ピースドリーマー", + "event" : [ { + "event_id" : "025", + "event_name" : "第25回プロダクションマッチフェスティバル" + } ], + "hash" : "dd3751e2991152c78eed4e4bbc8b2401", + "id" : "1430201", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "ピースドリーマー", + "alias_name_display" : "ピースドリーマー", + "event" : [ { + "event_id" : "025", + "event_name" : "第25回プロダクションマッチフェスティバル" + } ], + "hash" : "1dde1350d45ec9d096ef02d5561bec81", + "id" : "1530202", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "パワーオブラブ", + "alias_name_display" : "パワーオブラブ", + "hash" : "d1cf0c8c8e9f653db5555858fcad64d5", + "id" : "1438501", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "パワーオブラブ", + "alias_name_display" : "パワーオブラブ", + "hash" : "23ad85825d08c2b01758a0a95eee45d2", + "id" : "1538502", + "profile" : { + "bust" : "78", + "height" : "155", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + } ], + "idol_id" : 63, + "idol_name" : "有浦柑奈", + "idol_name_display" : "有浦柑奈", + "units" : [ { + "id" : "24", + "name" : "シンフォニック・ワールド" + }, { + "id" : "92", + "name" : "ゴスペルシスターズ" + }, { + "id" : "132", + "name" : "thinE/Dasein" + } ] +}, { + "aliases" : [ { + "hash" : "5d22c46f3d70b063510b1afdb41faca1", + "id" : "1216401", + "profile" : { + "bust" : "70", + "height" : "164", + "hip" : "74", + "waist" : "53", + "weight" : "40" + } + }, { + "hash" : "954b44944c72b799603401083f286017", + "id" : "1316402", + "profile" : { + "bust" : "70", + "height" : "164", + "hip" : "74", + "waist" : "53", + "weight" : "40" + } + }, { + "alias_name" : "メルヘンアニマルズ", + "alias_name_display" : "メルヘンアニマルズ", + "hash" : "65156c8acd72ce0a30ac8cc82eae3922", + "id" : "1218101", + "profile" : { + "bust" : "70", + "height" : "164", + "hip" : "74", + "waist" : "53", + "weight" : "40" + } + }, { + "alias_name" : "メルヘンアニマルズ", + "alias_name_display" : "メルヘンアニマルズ", + "hash" : "44e8a59cac558d9023fe85d39e422b41", + "id" : "1318102", + "profile" : { + "bust" : "70", + "height" : "164", + "hip" : "74", + "waist" : "53", + "weight" : "40" + } + }, { + "alias_name" : "新春I.C", + "alias_name_display" : "新春I.C", + "event" : [ { + "event_id" : 1204, + "event_name" : "新年かくし芸SP アイドルチャレンジ" + } ], + "hash" : "6cbba06b6172e63b542c161dda875278", + "id" : "1319602", + "profile" : { + "bust" : "70", + "height" : "164", + "hip" : "74", + "waist" : "53", + "weight" : "40" + } + }, { + "alias_name" : "アクティブガール", + "alias_name_display" : "アクティブガール", + "hash" : "8c20bc6f85beedbeeaafaa2bd426b225", + "id" : "1225201", + "profile" : { + "bust" : "70", + "height" : "164", + "hip" : "74", + "waist" : "53", + "weight" : "40" + } + }, { + "alias_name" : "アクティブガール", + "alias_name_display" : "アクティブガール", + "hash" : "5e93669a32a19d588d7663d863b94028", + "id" : "1325202", + "profile" : { + "bust" : "70", + "height" : "164", + "hip" : "74", + "waist" : "53", + "weight" : "40" + } + }, { + "alias_name" : "華傘の芸達者", + "alias_name_display" : "華傘の芸達者", + "event" : [ { + "event_id" : 1204, + "event_name" : "新年かくし芸SP アイドルチャレンジ" + } ], + "hash" : "e43584224d572bfa69384210ecc50cea", + "id" : "1421001", + "profile" : { + "bust" : "70", + "height" : "164", + "hip" : "74", + "waist" : "53", + "weight" : "40" + } + }, { + "alias_name" : "華傘の芸達者", + "alias_name_display" : "華傘の芸達者", + "event" : [ { + "event_id" : 1204, + "event_name" : "新年かくし芸SP アイドルチャレンジ" + } ], + "hash" : "660992e6898af963ff6f32f2e1473823", + "id" : "1521002", + "profile" : { + "bust" : "70", + "height" : "164", + "hip" : "74", + "waist" : "53", + "weight" : "40" + } + }, { + "alias_name" : "華傘の芸達者・S", + "alias_name_display" : "華傘の芸達者・S", + "event" : [ { + "event_id" : 1204, + "event_name" : "新年かくし芸SP アイドルチャレンジ" + } ], + "hash" : "05585b2d42b3c8fc7da7b2ff930b0511", + "id" : "1421101", + "profile" : { + "bust" : "70", + "height" : "164", + "hip" : "74", + "waist" : "53", + "weight" : "40" + } + }, { + "alias_name" : "華傘の芸達者・S", + "alias_name_display" : "華傘の芸達者・S", + "event" : [ { + "event_id" : 1204, + "event_name" : "新年かくし芸SP アイドルチャレンジ" + } ], + "hash" : "2b87ffadfcb99c1f9e6a8b0d13ce2827", + "id" : "1521102", + "profile" : { + "bust" : "70", + "height" : "164", + "hip" : "74", + "waist" : "53", + "weight" : "40" + } + }, { + "alias_name" : "春らんまん", + "alias_name_display" : "春らんまん", + "event" : [ { + "event_id" : 712, + "event_name" : "花見DEドリームLIVEフェスティバル" + } ], + "hash" : "4c573ad24433422bc5f9887af463ecd7", + "id" : "1423401", + "profile" : { + "bust" : "70", + "height" : "164", + "hip" : "74", + "waist" : "53", + "weight" : "40" + } + }, { + "alias_name" : "春らんまん", + "alias_name_display" : "春らんまん", + "event" : [ { + "event_id" : 712, + "event_name" : "花見DEドリームLIVEフェスティバル" + } ], + "hash" : "faa2ce907ee26f77d26dcbe274eeb3be", + "id" : "1523402", + "profile" : { + "bust" : "70", + "height" : "164", + "hip" : "74", + "waist" : "53", + "weight" : "40" + } + }, { + "alias_name" : "秋風乙女", + "alias_name_display" : "秋風乙女", + "hash" : "91de97f14dbeab0a3ac2c81c8e1de8de", + "id" : "1428101", + "profile" : { + "bust" : "70", + "height" : "164", + "hip" : "74", + "waist" : "53", + "weight" : "40" + } + }, { + "alias_name" : "秋風乙女", + "alias_name_display" : "秋風乙女", + "hash" : "baa712b49bc10f53ede75059dfa577a1", + "id" : "1528102", + "profile" : { + "bust" : "70", + "height" : "164", + "hip" : "74", + "waist" : "53", + "weight" : "40" + } + }, { + "alias_name" : "常夏アロハ", + "alias_name_display" : "常夏アロハ", + "event" : [ { + "event_id" : 1707, + "event_name" : "アイドルプロデュース アロハ!常夏の楽園" + } ], + "hash" : "5528621801ae35705602432711607da1", + "id" : "1435001", + "profile" : { + "bust" : "70", + "height" : "164", + "hip" : "74", + "waist" : "53", + "weight" : "40" + } + }, { + "alias_name" : "常夏アロハ", + "alias_name_display" : "常夏アロハ", + "event" : [ { + "event_id" : 1707, + "event_name" : "アイドルプロデュース アロハ!常夏の楽園" + } ], + "hash" : "621427e1c27d15a53a285a467de19a74", + "id" : "1535002", + "profile" : { + "bust" : "70", + "height" : "164", + "hip" : "74", + "waist" : "53", + "weight" : "40" + } + }, { + "alias_name" : "笑顔でアロハ", + "alias_name_display" : "笑顔でアロハ", + "event" : [ { + "event_id" : 1707, + "event_name" : "アイドルプロデュース アロハ!常夏の楽園" + } ], + "hash" : "3b49dc6079a69a60f31a53c6e1688161", + "id" : "1435101", + "profile" : { + "bust" : "70", + "height" : "164", + "hip" : "74", + "waist" : "53", + "weight" : "40" + } + }, { + "alias_name" : "笑顔でアロハ", + "alias_name_display" : "笑顔でアロハ", + "event" : [ { + "event_id" : 1707, + "event_name" : "アイドルプロデュース アロハ!常夏の楽園" + } ], + "hash" : "99f50339aa26af0bb95f0d37c9066bd6", + "id" : "1535102", + "profile" : { + "bust" : "70", + "height" : "164", + "hip" : "74", + "waist" : "53", + "weight" : "40" + } + }, { + "alias_name" : "ファインスカイ", + "alias_name_display" : "ファインスカイ", + "hash" : "093a75688be3f74755f356c07b83bcfa", + "id" : "1438901", + "profile" : { + "bust" : "70", + "height" : "164", + "hip" : "74", + "waist" : "53", + "weight" : "40" + } + }, { + "alias_name" : "ファインスカイ", + "alias_name_display" : "ファインスカイ", + "hash" : "ad1d9695914de9d5464ffe838872530f", + "id" : "1538902", + "profile" : { + "bust" : "70", + "height" : "164", + "hip" : "74", + "waist" : "53", + "weight" : "40" + } + } ], + "idol_id" : 64, + "idol_name" : "乙倉悠貴", + "idol_name_display" : "乙倉悠貴", + "units" : [ { + "id" : "166", + "name" : "メルヘンアニマルズ" + }, { + "id" : "191", + "name" : "Love Yell" + } ] +}, { + "aliases" : [ { + "alias_name" : "クリスマスパーティー", + "alias_name_display" : "クリスマスパーティー", + "hash" : "2e36224b97dfdd2701e9803ee789f47d", + "id" : "1206701", + "profile" : { + "bust" : "86", + "height" : "163", + "hip" : "85", + "waist" : "59", + "weight" : "46" + } + }, { + "alias_name" : "クリスマスパーティー", + "alias_name_display" : "クリスマスパーティー", + "hash" : "b2f52e7661963396866c5c8801e3c7a8", + "id" : "1306702", + "profile" : { + "bust" : "86", + "height" : "163", + "hip" : "85", + "waist" : "59", + "weight" : "46" + } + }, { + "alias_name" : "レインドロップ", + "alias_name_display" : "レインドロップ", + "event" : [ { + "event_id" : 407, + "event_name" : "アイドルプロデュース 鎌倉あじさい巡り" + } ], + "hash" : "d9e622ccd32e6e70f379da48c416ee10", + "id" : "1209801", + "profile" : { + "bust" : "86", + "height" : "163", + "hip" : "85", + "waist" : "59", + "weight" : "46" + } + }, { + "alias_name" : "レインドロップ", + "alias_name_display" : "レインドロップ", + "event" : [ { + "event_id" : 407, + "event_name" : "アイドルプロデュース 鎌倉あじさい巡り" + } ], + "hash" : "d09aeee3ce393112c2532b038367423e", + "id" : "1309802", + "profile" : { + "bust" : "86", + "height" : "163", + "hip" : "85", + "waist" : "59", + "weight" : "46" + } + }, { + "alias_name" : "レインドロップスマイル", + "alias_name_display" : "レインドロップスマイル", + "event" : [ { + "event_id" : 407, + "event_name" : "アイドルプロデュース 鎌倉あじさい巡り" + } ], + "hash" : "619ff1724ecbaf11bc00c823d4eea577", + "id" : "1209901", + "profile" : { + "bust" : "86", + "height" : "163", + "hip" : "85", + "waist" : "59", + "weight" : "46" + } + }, { + "alias_name" : "レインドロップスマイル", + "alias_name_display" : "レインドロップスマイル", + "event" : [ { + "event_id" : 407, + "event_name" : "アイドルプロデュース 鎌倉あじさい巡り" + } ], + "hash" : "6b357a435e6bc4225e825246e617fe5b", + "id" : "1309902", + "profile" : { + "bust" : "86", + "height" : "163", + "hip" : "85", + "waist" : "59", + "weight" : "46" + } + }, { + "alias_name" : "ドライブRQ", + "alias_name_display" : "ドライブRQ", + "hash" : "219438cc64a62c45381b04498feb51e5", + "id" : "1216101", + "profile" : { + "bust" : "86", + "height" : "163", + "hip" : "85", + "waist" : "59", + "weight" : "46" + } + }, { + "alias_name" : "ドライブRQ", + "alias_name_display" : "ドライブRQ", + "hash" : "3950c0f64d2f068f043545e1f793cad3", + "id" : "1316102", + "profile" : { + "bust" : "86", + "height" : "163", + "hip" : "85", + "waist" : "59", + "weight" : "46" + } + }, { + "alias_name" : "ナイトパーティー", + "alias_name_display" : "ナイトパーティー", + "hash" : "e966697d9927d312afa57c71c74bc204", + "id" : "1220701", + "profile" : { + "bust" : "86", + "height" : "163", + "hip" : "85", + "waist" : "59", + "weight" : "46" + } + }, { + "alias_name" : "ナイトパーティー", + "alias_name_display" : "ナイトパーティー", + "hash" : "07e249cdd43460fc4f8196cf5ca5d81f", + "id" : "1320702", + "profile" : { + "bust" : "86", + "height" : "163", + "hip" : "85", + "waist" : "59", + "weight" : "46" + } + }, { + "alias_name" : "秘めた輝き", + "alias_name_display" : "秘めた輝き", + "hash" : "86f3ff681d40a7f6da7df78c867f6e7c", + "id" : "1400501", + "profile" : { + "bust" : "86", + "height" : "163", + "hip" : "85", + "waist" : "59", + "weight" : "46" + } + }, { + "alias_name" : "秘めた輝き", + "alias_name_display" : "秘めた輝き", + "hash" : "f8db7c518658eac25ae8faf1ccc9eded", + "id" : "1500502", + "profile" : { + "bust" : "86", + "height" : "163", + "hip" : "85", + "waist" : "59", + "weight" : "46" + } + }, { + "alias_name" : "ドライブインサマー", + "alias_name_display" : "ドライブインサマー", + "event" : [ { + "event_id" : 211, + "event_name" : "アイドルサバイバルinサマーバケーション" + } ], + "hash" : "d4a273e502c1c75d67f267e6d9e846a0", + "id" : "1408601", + "profile" : { + "bust" : "86", + "height" : "163", + "hip" : "85", + "waist" : "59", + "weight" : "46" + } + }, { + "alias_name" : "ドライブインサマー", + "alias_name_display" : "ドライブインサマー", + "event" : [ { + "event_id" : 211, + "event_name" : "アイドルサバイバルinサマーバケーション" + } ], + "hash" : "0bd2ddf631fd26f0da534b0565402077", + "id" : "1508602", + "profile" : { + "bust" : "86", + "height" : "163", + "hip" : "85", + "waist" : "59", + "weight" : "46" + } + }, { + "alias_name" : "乙女の素顔", + "alias_name_display" : "乙女の素顔", + "event" : [ { + "event_id" : "024", + "event_name" : "第24回プロダクションマッチフェスティバル" + } ], + "hash" : "54e7f6af667defe6b2ab433271c3fe9d", + "id" : "1428301", + "profile" : { + "bust" : "86", + "height" : "163", + "hip" : "85", + "waist" : "59", + "weight" : "46" + } + }, { + "alias_name" : "乙女の素顔", + "alias_name_display" : "乙女の素顔", + "event" : [ { + "event_id" : "024", + "event_name" : "第24回プロダクションマッチフェスティバル" + } ], + "hash" : "51c0da348e4a2dcb10c2488f7baa0a02", + "id" : "1528302", + "profile" : { + "bust" : "86", + "height" : "163", + "hip" : "85", + "waist" : "59", + "weight" : "46" + } + }, { + "alias_name" : "ドライブチアー", + "alias_name_display" : "ドライブチアー", + "event" : [ { + "event_id" : 1507, + "event_name" : "チーム対抗トークバトルショー オールスターSP" + } ], + "hash" : "321e95f43feeaba224015b8a9809d180", + "id" : "1432801", + "profile" : { + "bust" : "86", + "height" : "163", + "hip" : "85", + "waist" : "59", + "weight" : "46" + } + }, { + "alias_name" : "ドライブチアー", + "alias_name_display" : "ドライブチアー", + "event" : [ { + "event_id" : 1507, + "event_name" : "チーム対抗トークバトルショー オールスターSP" + } ], + "hash" : "c8e0646fdc38f0c2b314ea48b6cf8f18", + "id" : "1532802", + "profile" : { + "bust" : "86", + "height" : "163", + "hip" : "85", + "waist" : "59", + "weight" : "46" + } + }, { + "alias_name" : "ウィンターアクセル", + "alias_name_display" : "ウィンターアクセル", + "event" : [ { + "event_id" : 821, + "event_name" : "第21回アイドルLIVEロワイヤル" + } ], + "hash" : "30332395012024d6987aaefddfcd258d", + "id" : "1437701", + "profile" : { + "bust" : "86", + "height" : "163", + "hip" : "85", + "waist" : "59", + "weight" : "46" + } + }, { + "alias_name" : "ウィンターアクセル", + "alias_name_display" : "ウィンターアクセル", + "event" : [ { + "event_id" : 821, + "event_name" : "第21回アイドルLIVEロワイヤル" + } ], + "hash" : "1be46e70f136716b759b15340806be70", + "id" : "1537702", + "profile" : { + "bust" : "86", + "height" : "163", + "hip" : "85", + "waist" : "59", + "weight" : "46" + } + } ], + "idol_id" : 65, + "idol_name" : "原田美世", + "idol_name_display" : "原田美世", + "units" : [ { + "id" : "87", + "name" : "ウィンター・F・ドライバーズ" + }, { + "id" : "106", + "name" : "レインドロップ" + } ] +}, { + "aliases" : [ { + "alias_name" : "ムーンライトバニー", + "alias_name_display" : "ムーンライトバニー", + "event" : [ { + "event_id" : 107, + "event_name" : "秋夜のお月見会" + } ], + "hash" : "bd75cdaf7d77b14fca1d6f6c65dc88da", + "id" : "1002201", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "74", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "ムーンライトバニー", + "alias_name_display" : "ムーンライトバニー", + "event" : [ { + "event_id" : 107, + "event_name" : "秋夜のお月見会" + } ], + "hash" : "697b8f00afc7840f3ab4dccd1a2d1456", + "id" : "1102202", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "74", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "ひな祭り", + "alias_name_display" : "ひな祭り", + "event" : [ { + "event_id" : 209, + "event_name" : "アイドルサバイバルひな祭り2013" + } ], + "hash" : "ed07eefde06a0e74f9ef6a51f097542f", + "id" : "1208101", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "74", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "ひな祭り", + "alias_name_display" : "ひな祭り", + "event" : [ { + "event_id" : 209, + "event_name" : "アイドルサバイバルひな祭り2013" + } ], + "hash" : "ee50c5ea099be8622819ba79974e0227", + "id" : "1308102", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "74", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "ニューイヤースタイル", + "alias_name_display" : "ニューイヤースタイル", + "event" : [ { + "event_id" : 509, + "event_name" : "新春LIVEツアーカーニバル" + } ], + "hash" : "9ee2d80d09ebbb1c2ae6031cc9127cce", + "id" : "1213901", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "74", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "ニューイヤースタイル", + "alias_name_display" : "ニューイヤースタイル", + "event" : [ { + "event_id" : 509, + "event_name" : "新春LIVEツアーカーニバル" + } ], + "hash" : "22a3924b57af6ad84167ec6aab0cff9b", + "id" : "1313902", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "74", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "エレガントI.C", + "alias_name_display" : "エレガントI.C", + "event" : [ { + "event_id" : 1205, + "event_name" : "目指せ優雅なお嬢様 アイドルチャレンジ" + } ], + "hash" : "cd313c43cae82fae20be9a0dc72539e9", + "id" : "1320602", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "74", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "春風スポーツ", + "alias_name_display" : "春風スポーツ", + "hash" : "ad5ccce9185e2d6423e6a9c36d41a03f", + "id" : "1227301", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "74", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "春風スポーツ", + "alias_name_display" : "春風スポーツ", + "hash" : "e43755a547736e9b339caa808f96de7f", + "id" : "1327302", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "74", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "ロボティックガール", + "alias_name_display" : "ロボティックガール", + "hash" : "d3b7cfc6576419c59e677e6cf6067e36", + "id" : "1230001", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "74", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "ロボティックガール", + "alias_name_display" : "ロボティックガール", + "hash" : "0de2eecb0cc7557f01bc2960c1357848", + "id" : "1330002", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "74", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "天才ロボ少女", + "alias_name_display" : "天才ロボ少女", + "event" : [ { + "event_id" : 102, + "event_name" : "アイドルおもちつき大会" + } ], + "hash" : "53cac9bfd084f9b278d6d1757698f995", + "id" : "1400601", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "74", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "天才ロボ少女", + "alias_name_display" : "天才ロボ少女", + "event" : [ { + "event_id" : 102, + "event_name" : "アイドルおもちつき大会" + } ], + "hash" : "05533b7c1971f954c4ce5d1af1487281", + "id" : "1500602", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "74", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "ハッピー☆ジーニアス", + "alias_name_display" : "ハッピー☆ジーニアス", + "hash" : "373a25b220a7c12e4bd7c03e550e74b9", + "id" : "1408001", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "74", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "ハッピー☆ジーニアス", + "alias_name_display" : "ハッピー☆ジーニアス", + "hash" : "3b636158419583d38a6509dc474a955c", + "id" : "1508002", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "74", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "ロボティックチアー", + "alias_name_display" : "ロボティックチアー", + "event" : [ { + "event_id" : 1103, + "event_name" : "第3回プロダクション対抗トークバトルショー" + } ], + "hash" : "50f27e1fb1c584b25268a6cc542b4eee", + "id" : "1415301", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "74", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "ロボティックチアー", + "alias_name_display" : "ロボティックチアー", + "event" : [ { + "event_id" : 1103, + "event_name" : "第3回プロダクション対抗トークバトルショー" + } ], + "hash" : "d26af3a2ad88b76b7f13dfa31e5258c2", + "id" : "1515302", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "74", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "異才のお嬢様", + "alias_name_display" : "異才のお嬢様", + "event" : [ { + "event_id" : 1205, + "event_name" : "目指せ優雅なお嬢様 アイドルチャレンジ" + } ], + "hash" : "2d6b4f52e2a52bce202c7c9913fec8bc", + "id" : "1422601", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "74", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "異才のお嬢様", + "alias_name_display" : "異才のお嬢様", + "event" : [ { + "event_id" : 1205, + "event_name" : "目指せ優雅なお嬢様 アイドルチャレンジ" + } ], + "hash" : "0aae1c480ec4ee5619b67a1a02731bfe", + "id" : "1522602", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "74", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "異才のお嬢様・S", + "alias_name_display" : "異才のお嬢様・S", + "event" : [ { + "event_id" : 1205, + "event_name" : "目指せ優雅なお嬢様 アイドルチャレンジ" + } ], + "hash" : "ff2d88dddcb499d5b89335b94f798535", + "id" : "1422701", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "74", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "異才のお嬢様・S", + "alias_name_display" : "異才のお嬢様・S", + "event" : [ { + "event_id" : 1205, + "event_name" : "目指せ優雅なお嬢様 アイドルチャレンジ" + } ], + "hash" : "a7f7f6600d4db2e4c78e0cf90ff44d43", + "id" : "1522702", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "74", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "ブレイン☆スター", + "alias_name_display" : "ブレイン☆スター", + "event" : [ { + "event_id" : 1403, + "event_name" : "第3回ぷちデレラコレクション" + } ], + "hash" : "d8d9d6c2d5505244c48d772004ffd9e1", + "id" : "1426901", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "74", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "ブレイン☆スター", + "alias_name_display" : "ブレイン☆スター", + "event" : [ { + "event_id" : 1403, + "event_name" : "第3回ぷちデレラコレクション" + } ], + "hash" : "df97d20cf2ca9e3ec842401b5c6c91f7", + "id" : "1526902", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "74", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "機巧の匠", + "alias_name_display" : "機巧の匠", + "event" : [ { + "event_id" : 1907, + "event_name" : "ディアリースタークエスト ~夜桜奇譚~" + } ], + "hash" : "0cf8b99a662d263b1019cfdaca236a25", + "id" : "1439601", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "74", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "機巧の匠", + "alias_name_display" : "機巧の匠", + "event" : [ { + "event_id" : 1907, + "event_name" : "ディアリースタークエスト ~夜桜奇譚~" + } ], + "hash" : "f14270b8f9920a77b665767587d06b48", + "id" : "1539602", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "74", + "waist" : "53", + "weight" : "39" + } + } ], + "idol_id" : 66, + "idol_name" : "池袋晶葉", + "idol_name_display" : "池袋晶葉", + "units" : [ { + "id" : "68", + "name" : "ロボフレンズ" + }, { + "id" : "98", + "name" : "ニューイヤースタイル" + }, { + "id" : "102", + "name" : "パワフルヒーラーズ" + } ] +}, { + "aliases" : [ { + "hash" : "8f88bb5ffa40b4935ef04257ba4ba0d1", + "id" : "2000101", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "hash" : "e275bfe5941fd3959de60c5d5c5cacef", + "id" : "2100102", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "2ndアニバーサリー", + "alias_name_display" : "2ndアニバーサリー", + "event" : [ { + "event_id" : 410, + "event_name" : "アイドルプロデュース the 2nd Anniversary" + } ], + "hash" : "ec23ead4dad0294e7f859e7180c216fa", + "id" : "2212901", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "2ndアニバーサリー", + "alias_name_display" : "2ndアニバーサリー", + "event" : [ { + "event_id" : 410, + "event_name" : "アイドルプロデュース the 2nd Anniversary" + } ], + "hash" : "7ee306b8ce0265d3797de7fca6e0ee90", + "id" : "2312902", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "2ndアニバーサリー・スマイル", + "alias_name_display" : "2ndアニバーサリー・スマイル", + "event" : [ { + "event_id" : 410, + "event_name" : "アイドルプロデュース the 2nd Anniversary" + } ], + "hash" : "a1ed6e1e9fdf5dc0a23d07ce0802f595", + "id" : "2213001", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "2ndアニバーサリー・スマイル", + "alias_name_display" : "2ndアニバーサリー・スマイル", + "event" : [ { + "event_id" : 410, + "event_name" : "アイドルプロデュース the 2nd Anniversary" + } ], + "hash" : "4ad2264b26f6edfd36e29e62c0d70e81", + "id" : "2313002", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "2ndアニバーサリー・ネコミミ", + "alias_name_display" : "2ndアニバーサリー・ネコミミ", + "event" : [ { + "event_id" : 410, + "event_name" : "アイドルプロデュース the 2nd Anniversary" + } ], + "hash" : "59205400ae6b04749bb99aae38d7cc71", + "id" : "2213101", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "2ndアニバーサリー・ネコミミ", + "alias_name_display" : "2ndアニバーサリー・ネコミミ", + "event" : [ { + "event_id" : 410, + "event_name" : "アイドルプロデュース the 2nd Anniversary" + } ], + "hash" : "f48ee90e70c822c07e06aefe3b8ee743", + "id" : "2313102", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "ニュージェネレーション", + "alias_name_display" : "ニュージェネレーション", + "hash" : "f99103eb03994da80bd9b905ca9f0950", + "id" : "2400301", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "ニュージェネレーション", + "alias_name_display" : "ニュージェネレーション", + "hash" : "c44c3c58ab6e06f5068b5c459cc5ecdc", + "id" : "2500302", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "4ecccdd4fd25302d228913c62c869991", + "id" : "2401501", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "851d41d49c8e138e2818794223d01ab4", + "id" : "2501502", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "アイオライトゴシック", + "alias_name_display" : "アイオライトゴシック", + "hash" : "f7b0292baa798bfe74929c8e7c05092d", + "id" : "2503702", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "ピュアバレンタイン", + "alias_name_display" : "ピュアバレンタイン", + "hash" : "5245301299ebe8e1e0a46ccadf6bb57c", + "id" : "2405201", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "ピュアバレンタイン", + "alias_name_display" : "ピュアバレンタイン", + "hash" : "e0ad66fd1b1f4a0d8793edcfe8b63a1c", + "id" : "2505202", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "夜宴の歌姫", + "alias_name_display" : "夜宴の歌姫", + "hash" : "f95d822e4847009291d67450017969c9", + "id" : "2410201", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "夜宴の歌姫", + "alias_name_display" : "夜宴の歌姫", + "hash" : "5ef4284b0c62f564a54c532512615b11", + "id" : "2510202", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "ワンダフルマジック", + "alias_name_display" : "ワンダフルマジック", + "hash" : "4b2ae0ec6469cc81bc30c1a072ebd791", + "id" : "2413501", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "ワンダフルマジック", + "alias_name_display" : "ワンダフルマジック", + "hash" : "b94a98f20c407684429e56fb7a343797", + "id" : "2513502", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "シンデレラガール", + "alias_name_display" : "シンデレラガール", + "hash" : "c96e0729d1075d90a0dc35b9dc76c3ab", + "id" : "2415301", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "シンデレラガール", + "alias_name_display" : "シンデレラガール", + "hash" : "78dc475f1775fa007c1a659db07a383a", + "id" : "2515302", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "クールサマーバケーション", + "alias_name_display" : "クールサマーバケーション", + "hash" : "9e5333adbd10808d6211cd7e3c3737f8", + "id" : "2516702", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "アニバーサリープリンセス", + "alias_name_display" : "アニバーサリープリンセス", + "event" : [ { + "event_id" : 415, + "event_name" : "アイドルプロデュース the 3rd Anniversary" + } ], + "hash" : "fc7743180eca7195b9d2a04b251b3276", + "id" : "2419301", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "アニバーサリープリンセス", + "alias_name_display" : "アニバーサリープリンセス", + "event" : [ { + "event_id" : 415, + "event_name" : "アイドルプロデュース the 3rd Anniversary" + } ], + "hash" : "6c854bfa68ef78e7e087c7c5f8a982d4", + "id" : "2519302", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "ドリームストーリー", + "alias_name_display" : "ドリームストーリー", + "hash" : "716d4021bcc8ed6d35c14e54dcd8df3a", + "id" : "2521002", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "トラストプレゼント", + "alias_name_display" : "トラストプレゼント", + "hash" : "ec3d7440265ee3dd41046a803068117f", + "id" : "2427301", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "トラストプレゼント", + "alias_name_display" : "トラストプレゼント", + "hash" : "8830118c3b6b08eb9bed30f5aa4eea50", + "id" : "2527302", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "G4U!", + "alias_name_display" : "G4U!", + "hash" : "0f60bcd6c790b9dd47a8979281d73d82", + "id" : "2529702", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "ブルーウィンド", + "alias_name_display" : "ブルーウィンド", + "hash" : "621bcb5474139a8cbd98232034679147", + "id" : "2432001", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "ブルーウィンド", + "alias_name_display" : "ブルーウィンド", + "hash" : "f38a7d396e4d373572359acd4f1bfecf", + "id" : "2532002", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "アニバーサリーウィズメモリー", + "alias_name_display" : "アニバーサリーウィズメモリー", + "hash" : "3f49451db48570813fd26cec984a44f6", + "id" : "2436501", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "アニバーサリーウィズメモリー", + "alias_name_display" : "アニバーサリーウィズメモリー", + "hash" : "4ebbcc60acba9e2760af8a5be417782d", + "id" : "2536502", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + } ], + "idol_id" : 67, + "idol_name" : "渋谷凛", + "idol_name_display" : "渋谷凛", + "units" : [ { + "id" : "109", + "name" : "new generations" + }, { + "id" : "144", + "name" : "Triad Primus" + }, { + "id" : "197", + "name" : "アズール・ムジカ" + }, { + "id" : "205", + "name" : "シンデレラガール" + }, { + "id" : "213", + "name" : "CINDERELLA PROJECT" + }, { + "id" : "215", + "name" : "Project:Krone" + } ] +}, { + "aliases" : [ { + "hash" : "4035fd883093767b28d2a539d774e094", + "id" : "2000201", + "profile" : { + "bust" : "86", + "height" : "163", + "hip" : "86", + "waist" : "57", + "weight" : "45" + } + }, { + "hash" : "f4d2f1e39a7e01d8274e3a57077f6f85", + "id" : "2100202", + "profile" : { + "bust" : "86", + "height" : "163", + "hip" : "86", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "パジャマパーティー", + "alias_name_display" : "パジャマパーティー", + "hash" : "c931ce44e7607eaf6ab795a40dd9ca28", + "id" : "2203901", + "profile" : { + "bust" : "86", + "height" : "163", + "hip" : "86", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "パジャマパーティー", + "alias_name_display" : "パジャマパーティー", + "hash" : "a3082a7c51417a1a91c1051b28f8aa9f", + "id" : "2303902", + "profile" : { + "bust" : "86", + "height" : "163", + "hip" : "86", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "気高きプライド", + "alias_name_display" : "気高きプライド", + "hash" : "7997704c7956ebe73f2c28697c89dc1a", + "id" : "2205501", + "profile" : { + "bust" : "86", + "height" : "163", + "hip" : "86", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "気高きプライド", + "alias_name_display" : "気高きプライド", + "hash" : "5109146ec273c81d59fcae0c97adddf5", + "id" : "2305502", + "profile" : { + "bust" : "86", + "height" : "163", + "hip" : "86", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "セレクトメイド", + "alias_name_display" : "セレクトメイド", + "hash" : "02f695d931bff83bdb7771b3b8943f60", + "id" : "2214701", + "profile" : { + "bust" : "86", + "height" : "163", + "hip" : "86", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "セレクトメイド", + "alias_name_display" : "セレクトメイド", + "hash" : "1d0d21ccca64a106b500e327a8a61944", + "id" : "2314702", + "profile" : { + "bust" : "86", + "height" : "163", + "hip" : "86", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ロワイヤルスタイルNP", + "alias_name_display" : "ロワイヤルスタイルNP", + "event" : [ { + "event_id" : 806, + "event_name" : "アイドルLIVEロワイヤルinSUMMER" + } ], + "hash" : "def290c2687249f421d3a0c5639fcf54", + "id" : "2217101", + "profile" : { + "bust" : "86", + "height" : "163", + "hip" : "86", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ロワイヤルスタイルNP", + "alias_name_display" : "ロワイヤルスタイルNP", + "event" : [ { + "event_id" : 806, + "event_name" : "アイドルLIVEロワイヤルinSUMMER" + } ], + "hash" : "7b992968fa0f058f249b5526ab1b7883", + "id" : "2317102", + "profile" : { + "bust" : "86", + "height" : "163", + "hip" : "86", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "グロッシースタイル", + "alias_name_display" : "グロッシースタイル", + "event" : [ { + "event_id" : 715, + "event_name" : "第15回ドリームLIVEフェスティバル" + } ], + "hash" : "c1211c36467b2716552c4d1d85e1290d", + "id" : "2322902", + "profile" : { + "bust" : "86", + "height" : "163", + "hip" : "86", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ウェディングセレモニー", + "alias_name_display" : "ウェディングセレモニー", + "hash" : "f7d5c0216298dbb7033107930cd977c3", + "id" : "2226701", + "profile" : { + "bust" : "86", + "height" : "163", + "hip" : "86", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ウェディングセレモニー", + "alias_name_display" : "ウェディングセレモニー", + "hash" : "85d68eea01b117486b607f455717a906", + "id" : "2326702", + "profile" : { + "bust" : "86", + "height" : "163", + "hip" : "86", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "黒真珠の輝き", + "alias_name_display" : "黒真珠の輝き", + "hash" : "cf1a5d3544d33508dec93e2b8a566cce", + "id" : "2405701", + "profile" : { + "bust" : "86", + "height" : "163", + "hip" : "86", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "黒真珠の輝き", + "alias_name_display" : "黒真珠の輝き", + "hash" : "6ede07bfc34af81ea373768ee64d3420", + "id" : "2505702", + "profile" : { + "bust" : "86", + "height" : "163", + "hip" : "86", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "白銀の騎士", + "alias_name_display" : "白銀の騎士", + "event" : [ { + "event_id" : 516, + "event_name" : "幻想公演栄光のシュヴァリエ" + } ], + "hash" : "8c4388028076672a43963f38de32b024", + "id" : "2420101", + "profile" : { + "bust" : "86", + "height" : "163", + "hip" : "86", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "白銀の騎士", + "alias_name_display" : "白銀の騎士", + "event" : [ { + "event_id" : 516, + "event_name" : "幻想公演栄光のシュヴァリエ" + } ], + "hash" : "024cad24043e3c69d8c4626c91c0b624", + "id" : "2520102", + "profile" : { + "bust" : "86", + "height" : "163", + "hip" : "86", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "夜を見る淑女", + "alias_name_display" : "夜を見る淑女", + "event" : [ { + "event_id" : "025", + "event_name" : "第25回プロダクションマッチフェスティバル" + } ], + "hash" : "18b11c7c27a2d1fe7ce0181c77596a03", + "id" : "2429901", + "profile" : { + "bust" : "86", + "height" : "163", + "hip" : "86", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "夜を見る淑女", + "alias_name_display" : "夜を見る淑女", + "event" : [ { + "event_id" : "025", + "event_name" : "第25回プロダクションマッチフェスティバル" + } ], + "hash" : "45dfc7d0f65cd5337cb103b7af3f7dc3", + "id" : "2529902", + "profile" : { + "bust" : "86", + "height" : "163", + "hip" : "86", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "黒曜の囁き", + "alias_name_display" : "黒曜の囁き", + "event" : [ { + "event_id" : 1511, + "event_name" : "第11回チーム対抗トークバトルショー" + } ], + "hash" : "a0392538ef8042cc44d645fca021bd78", + "id" : "2438301", + "profile" : { + "bust" : "86", + "height" : "163", + "hip" : "86", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "黒曜の囁き", + "alias_name_display" : "黒曜の囁き", + "event" : [ { + "event_id" : 1511, + "event_name" : "第11回チーム対抗トークバトルショー" + } ], + "hash" : "1b13a47f1e86ec39ecf4974fe3049ff9", + "id" : "2538302", + "profile" : { + "bust" : "86", + "height" : "163", + "hip" : "86", + "waist" : "57", + "weight" : "45" + } + } ], + "idol_id" : 68, + "idol_name" : "黒川千秋", + "idol_name_display" : "黒川千秋", + "units" : [ { + "id" : "53", + "name" : "ブリヤント・ノワール" + }, { + "id" : "159", + "name" : "パステル・カクテル" + }, { + "id" : "199", + "name" : "レッドバラード" + }, { + "id" : "209", + "name" : "ロワイヤルスタイルNP" + } ] +}, { + "aliases" : [ { + "hash" : "a30783d170b758c118fd545eec28dfa9", + "id" : "2000301", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "58", + "weight" : "48" + } + }, { + "hash" : "550e684107f50aa0804d93fe5f11b133", + "id" : "2100302", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "58", + "weight" : "48" + } + }, { + "alias_name" : "水泳大会", + "alias_name_display" : "水泳大会", + "event" : [ { + "event_id" : 106, + "event_name" : "アイドル水泳大会 水着のシンデレラ" + } ], + "hash" : "4072ebd35377b91af0e4a4f69dafee58", + "id" : "2002301", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "58", + "weight" : "48" + } + }, { + "alias_name" : "水泳大会", + "alias_name_display" : "水泳大会", + "event" : [ { + "event_id" : 106, + "event_name" : "アイドル水泳大会 水着のシンデレラ" + } ], + "hash" : "42a46e206d59587e6fbaab7bee5b30d3", + "id" : "2102302", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "58", + "weight" : "48" + } + }, { + "alias_name" : "浴衣祭り", + "alias_name_display" : "浴衣祭り", + "hash" : "a7df62ab3b2d5dcb35b548557ab11ec5", + "id" : "2210701", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "58", + "weight" : "48" + } + }, { + "alias_name" : "浴衣祭り", + "alias_name_display" : "浴衣祭り", + "hash" : "b5e60c6af2179f38b31d551455402347", + "id" : "2310702", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "58", + "weight" : "48" + } + }, { + "alias_name" : "アップトゥデイト", + "alias_name_display" : "アップトゥデイト", + "hash" : "0de3d4c8622403e9d7229cd26280c9ef", + "id" : "2219801", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "58", + "weight" : "48" + } + }, { + "alias_name" : "アップトゥデイト", + "alias_name_display" : "アップトゥデイト", + "hash" : "6c99150f4022c8120715ed9a739b2489", + "id" : "2319802", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "58", + "weight" : "48" + } + }, { + "alias_name" : "ロワイヤルスタイルND", + "alias_name_display" : "ロワイヤルスタイルND", + "event" : [ { + "event_id" : 816, + "event_name" : "第16回アイドルLIVEロワイヤル" + } ], + "hash" : "1b9e2b09c150a291f3bfc071abe006d6", + "id" : "2225201", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "58", + "weight" : "48" + } + }, { + "alias_name" : "ロワイヤルスタイルND", + "alias_name_display" : "ロワイヤルスタイルND", + "event" : [ { + "event_id" : 816, + "event_name" : "第16回アイドルLIVEロワイヤル" + } ], + "hash" : "ce540cea8b2110611377d2d631c3e066", + "id" : "2325202", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "58", + "weight" : "48" + } + }, { + "alias_name" : "ステイインシェイプ", + "alias_name_display" : "ステイインシェイプ", + "hash" : "b9ffe5b8b3214774e10fe813a01f4e1a", + "id" : "2231301", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "58", + "weight" : "48" + } + }, { + "alias_name" : "ステイインシェイプ", + "alias_name_display" : "ステイインシェイプ", + "hash" : "1f579c998c02a9776400a9f3d43c26ab", + "id" : "2331302", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "58", + "weight" : "48" + } + }, { + "alias_name" : "セクシービューティー", + "alias_name_display" : "セクシービューティー", + "event" : [ { + "event_id" : 508, + "event_name" : "LIVEツアーカーニバルinスペースワールド" + } ], + "hash" : "45c75bb28f21bddd1ad2738bda5b4d9d", + "id" : "2410101", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "58", + "weight" : "48" + } + }, { + "alias_name" : "セクシービューティー", + "alias_name_display" : "セクシービューティー", + "event" : [ { + "event_id" : 508, + "event_name" : "LIVEツアーカーニバルinスペースワールド" + } ], + "hash" : "f1452a5449618b73378346046f8a8d68", + "id" : "2510102", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "58", + "weight" : "48" + } + }, { + "alias_name" : "サンシャインマリナー", + "alias_name_display" : "サンシャインマリナー", + "event" : [ { + "event_id" : "018", + "event_name" : "第18回プロダクションマッチフェスティバル" + } ], + "hash" : "dc3d17ce8827254c7b49e013adfdd7d1", + "id" : "2416801", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "58", + "weight" : "48" + } + }, { + "alias_name" : "サンシャインマリナー", + "alias_name_display" : "サンシャインマリナー", + "event" : [ { + "event_id" : "018", + "event_name" : "第18回プロダクションマッチフェスティバル" + } ], + "hash" : "d94af1f2bbd1ee5cba11de0029345800", + "id" : "2516802", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "58", + "weight" : "48" + } + }, { + "alias_name" : "セクシースリル", + "alias_name_display" : "セクシースリル", + "event" : [ { + "event_id" : 717, + "event_name" : "第17回ドリームLIVEフェスティバル" + } ], + "hash" : "37797d5f21558e63d2ddef76ca7754cb", + "id" : "2427901", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "58", + "weight" : "48" + } + }, { + "alias_name" : "セクシースリル", + "alias_name_display" : "セクシースリル", + "event" : [ { + "event_id" : 717, + "event_name" : "第17回ドリームLIVEフェスティバル" + } ], + "hash" : "667d1ecf34952923ee535605873f44eb", + "id" : "2527902", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "58", + "weight" : "48" + } + }, { + "alias_name" : "セクシーウィッチ", + "alias_name_display" : "セクシーウィッチ", + "event" : [ { + "event_id" : 1904, + "event_name" : "魔界公演 妖艶魔女と消えたハロウィン" + } ], + "hash" : "9ab933bbf7cd99e54000a4c229b6161f", + "id" : "2435201", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "58", + "weight" : "48" + } + }, { + "alias_name" : "セクシーウィッチ", + "alias_name_display" : "セクシーウィッチ", + "event" : [ { + "event_id" : 1904, + "event_name" : "魔界公演 妖艶魔女と消えたハロウィン" + } ], + "hash" : "2e3a40d67d49dc6574282976c7ede024", + "id" : "2535202", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "58", + "weight" : "48" + } + } ], + "idol_id" : 69, + "idol_name" : "松本沙理奈", + "idol_name_display" : "松本沙理奈", + "units" : [ { + "id" : "29", + "name" : "セーラーマリナー" + }, { + "id" : "110", + "name" : "アップトゥデイト" + }, { + "id" : "198", + "name" : "ブルーナポレオン" + }, { + "id" : "206", + "name" : "セクシーボンデージ" + }, { + "id" : "210", + "name" : "ロワイヤルスタイルND" + } ] +}, { + "aliases" : [ { + "hash" : "f8edf47fb60a0d249bb979d68211b8be", + "id" : "2000401", + "profile" : { + "bust" : "86", + "height" : "160", + "hip" : "86", + "waist" : "56", + "weight" : "43" + } + }, { + "hash" : "d7214775b8ad7a28a6fddcf512e9666c", + "id" : "2100402", + "profile" : { + "bust" : "86", + "height" : "160", + "hip" : "86", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "スポーツ祭", + "alias_name_display" : "スポーツ祭", + "hash" : "567ce108edd82a9b613abaa95e94c9a4", + "id" : "2204301", + "profile" : { + "bust" : "86", + "height" : "160", + "hip" : "86", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "スポーツ祭", + "alias_name_display" : "スポーツ祭", + "hash" : "2ddcac167adb3e5f1a888b16483b9338", + "id" : "2304302", + "profile" : { + "bust" : "86", + "height" : "160", + "hip" : "86", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "バリスタイル", + "alias_name_display" : "バリスタイル", + "event" : [ { + "event_id" : 505, + "event_name" : "アイドルLIVEツアーinバリ島" + } ], + "hash" : "7a4ebbaebec98924f539d8b7214af1a4", + "id" : "2210601", + "profile" : { + "bust" : "86", + "height" : "160", + "hip" : "86", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "バリスタイル", + "alias_name_display" : "バリスタイル", + "event" : [ { + "event_id" : 505, + "event_name" : "アイドルLIVEツアーinバリ島" + } ], + "hash" : "bf0c13ce6019138ebaeff2f13d7ce662", + "id" : "2310602", + "profile" : { + "bust" : "86", + "height" : "160", + "hip" : "86", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "不意の幸せ", + "alias_name_display" : "不意の幸せ", + "hash" : "d2346216a10dc027b5ad981febe98200", + "id" : "2216801", + "profile" : { + "bust" : "86", + "height" : "160", + "hip" : "86", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "不意の幸せ", + "alias_name_display" : "不意の幸せ", + "hash" : "40302b38b4d6dabceef6db49a6bd646b", + "id" : "2316802", + "profile" : { + "bust" : "86", + "height" : "160", + "hip" : "86", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "ロワイヤルスタイルNP", + "alias_name_display" : "ロワイヤルスタイルNP", + "event" : [ { + "event_id" : 811, + "event_name" : "第11回アイドルLIVEロワイヤル" + } ], + "hash" : "801604d97e1d78c4f7eac49c159e86a7", + "id" : "2220401", + "profile" : { + "bust" : "86", + "height" : "160", + "hip" : "86", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "ロワイヤルスタイルNP", + "alias_name_display" : "ロワイヤルスタイルNP", + "event" : [ { + "event_id" : 811, + "event_name" : "第11回アイドルLIVEロワイヤル" + } ], + "hash" : "270f111f0adc50347ba9256756602680", + "id" : "2320402", + "profile" : { + "bust" : "86", + "height" : "160", + "hip" : "86", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "ブレイクタイム", + "alias_name_display" : "ブレイクタイム", + "hash" : "87d826bbf263c5ed9692324810ecc77d", + "id" : "2223401", + "profile" : { + "bust" : "86", + "height" : "160", + "hip" : "86", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "ブレイクタイム", + "alias_name_display" : "ブレイクタイム", + "hash" : "d182d50be9a4a09ce0ba65b085091f7e", + "id" : "2323402", + "profile" : { + "bust" : "86", + "height" : "160", + "hip" : "86", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "T.B.チアーズ", + "alias_name_display" : "T.B.チアーズ", + "event" : [ { + "event_id" : 1509, + "event_name" : "第9回チーム対抗トークバトルショー" + } ], + "hash" : "ed6e36f5388cca179f16884e7020f518", + "id" : "2229301", + "profile" : { + "bust" : "86", + "height" : "160", + "hip" : "86", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "T.B.チアーズ", + "alias_name_display" : "T.B.チアーズ", + "event" : [ { + "event_id" : 1509, + "event_name" : "第9回チーム対抗トークバトルショー" + } ], + "hash" : "9d94602d3641b0c6eede6dd3d1c2ebd3", + "id" : "2329302", + "profile" : { + "bust" : "86", + "height" : "160", + "hip" : "86", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "エレガントマリオネット", + "alias_name_display" : "エレガントマリオネット", + "event" : [ { + "event_id" : 804, + "event_name" : "第4回アイドルLIVEロワイヤル" + } ], + "hash" : "3dc9f6b43b8f09c2cd14427246204ab7", + "id" : "2413201", + "profile" : { + "bust" : "86", + "height" : "160", + "hip" : "86", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "エレガントマリオネット", + "alias_name_display" : "エレガントマリオネット", + "event" : [ { + "event_id" : 804, + "event_name" : "第4回アイドルLIVEロワイヤル" + } ], + "hash" : "35fdf29a4ff894128272306654735d50", + "id" : "2513202", + "profile" : { + "bust" : "86", + "height" : "160", + "hip" : "86", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "オープンスイート", + "alias_name_display" : "オープンスイート", + "event" : [ { + "event_id" : 1406, + "event_name" : "第6回ぷちデレラコレクション" + } ], + "hash" : "45d7e0444687067fe30053e2047bb81d", + "id" : "2431701", + "profile" : { + "bust" : "86", + "height" : "160", + "hip" : "86", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "オープンスイート", + "alias_name_display" : "オープンスイート", + "event" : [ { + "event_id" : 1406, + "event_name" : "第6回ぷちデレラコレクション" + } ], + "hash" : "81fd47cf40cbfb59f9dc779f0b2e6258", + "id" : "2531702", + "profile" : { + "bust" : "86", + "height" : "160", + "hip" : "86", + "waist" : "56", + "weight" : "43" + } + } ], + "idol_id" : 70, + "idol_name" : "桐野アヤ", + "idol_name_display" : "桐野アヤ", + "units" : [ { + "id" : "42", + "name" : "バリスタイル" + }, { + "id" : "62", + "name" : "ようせいさんとおねえさん" + }, { + "id" : "119", + "name" : "フランメ・ルージュ" + }, { + "id" : "181", + "name" : "フレッシュアスリーテス" + }, { + "id" : "199", + "name" : "レッドバラード" + }, { + "id" : "209", + "name" : "ロワイヤルスタイルNP" + } ] +}, { + "aliases" : [ { + "hash" : "0a608619d8933f94dbf234b16a738cc4", + "id" : "2000501", + "profile" : { + "bust" : "91", + "height" : "167", + "hip" : "90", + "waist" : "62", + "weight" : "51" + } + }, { + "hash" : "77bc167a538072243fe4efada302c5dd", + "id" : "2100502", + "profile" : { + "bust" : "91", + "height" : "167", + "hip" : "90", + "waist" : "62", + "weight" : "51" + } + }, { + "alias_name" : "湯けむり月夜", + "alias_name_display" : "湯けむり月夜", + "hash" : "aaf15e170c8e34777956d6e615d7b23d", + "id" : "2212601", + "profile" : { + "bust" : "91", + "height" : "167", + "hip" : "90", + "waist" : "62", + "weight" : "51" + } + }, { + "alias_name" : "湯けむり月夜", + "alias_name_display" : "湯けむり月夜", + "hash" : "7f2f67ea668968a6d17d54ad225de60e", + "id" : "2312602", + "profile" : { + "bust" : "91", + "height" : "167", + "hip" : "90", + "waist" : "62", + "weight" : "51" + } + }, { + "alias_name" : "パラダイスリゾート", + "alias_name_display" : "パラダイスリゾート", + "hash" : "f3785b4e58b357a89d3abc48ae4a25cc", + "id" : "2217001", + "profile" : { + "bust" : "91", + "height" : "167", + "hip" : "90", + "waist" : "62", + "weight" : "51" + } + }, { + "alias_name" : "パラダイスリゾート", + "alias_name_display" : "パラダイスリゾート", + "hash" : "8b93d1e5afa99347a6fcfa8f5a5a8586", + "id" : "2317002", + "profile" : { + "bust" : "91", + "height" : "167", + "hip" : "90", + "waist" : "62", + "weight" : "51" + } + }, { + "alias_name" : "インモーション", + "alias_name_display" : "インモーション", + "event" : [ { + "event_id" : "019", + "event_name" : "第19回プロダクションマッチフェスティバル" + } ], + "hash" : "b0daf9e54ee010a9f898f304243bbd06", + "id" : "2218801", + "profile" : { + "bust" : "91", + "height" : "167", + "hip" : "90", + "waist" : "62", + "weight" : "51" + } + }, { + "alias_name" : "インモーション", + "alias_name_display" : "インモーション", + "event" : [ { + "event_id" : "019", + "event_name" : "第19回プロダクションマッチフェスティバル" + } ], + "hash" : "3620cdf9b0524f7ffdfeb8e7cfac9400", + "id" : "2318802", + "profile" : { + "bust" : "91", + "height" : "167", + "hip" : "90", + "waist" : "62", + "weight" : "51" + } + }, { + "alias_name" : "マダム・マミー", + "alias_name_display" : "マダム・マミー", + "event" : [ { + "event_id" : 522, + "event_name" : "魔界公演 幽鬱女王とハロウィンの祝祭" + } ], + "hash" : "a7fa225473c0d3eac3e226b3d9a5621f", + "id" : "2323802", + "profile" : { + "bust" : "91", + "height" : "167", + "hip" : "90", + "waist" : "62", + "weight" : "51" + } + }, { + "alias_name" : "トレランスパンサレス", + "alias_name_display" : "トレランスパンサレス", + "hash" : "d507a4e135271b117fe48e96f304efdf", + "id" : "2226201", + "profile" : { + "bust" : "91", + "height" : "167", + "hip" : "90", + "waist" : "62", + "weight" : "51" + } + }, { + "alias_name" : "トレランスパンサレス", + "alias_name_display" : "トレランスパンサレス", + "hash" : "044f3dda15df99f500884ebb320467cb", + "id" : "2326202", + "profile" : { + "bust" : "91", + "height" : "167", + "hip" : "90", + "waist" : "62", + "weight" : "51" + } + }, { + "alias_name" : "ホーリーコーラス", + "alias_name_display" : "ホーリーコーラス", + "hash" : "c7fc22efe7292a115f75036198638695", + "id" : "2229501", + "profile" : { + "bust" : "91", + "height" : "167", + "hip" : "90", + "waist" : "62", + "weight" : "51" + } + }, { + "alias_name" : "ホーリーコーラス", + "alias_name_display" : "ホーリーコーラス", + "hash" : "b2649350266c291beb9d570c256463d8", + "id" : "2329502", + "profile" : { + "bust" : "91", + "height" : "167", + "hip" : "90", + "waist" : "62", + "weight" : "51" + } + }, { + "alias_name" : "妖しき雌豹", + "alias_name_display" : "妖しき雌豹", + "event" : [ { + "event_id" : 204, + "event_name" : "アイドルサバイバルin動物園" + } ], + "hash" : "039bbb4300c231ff4d9afd4c3d096c52", + "id" : "2402101", + "profile" : { + "bust" : "91", + "height" : "167", + "hip" : "90", + "waist" : "62", + "weight" : "51" + } + }, { + "alias_name" : "妖しき雌豹", + "alias_name_display" : "妖しき雌豹", + "event" : [ { + "event_id" : 204, + "event_name" : "アイドルサバイバルin動物園" + } ], + "hash" : "62f5c0944ca2ad486b29b8b913479cf0", + "id" : "2502102", + "profile" : { + "bust" : "91", + "height" : "167", + "hip" : "90", + "waist" : "62", + "weight" : "51" + } + }, { + "alias_name" : "魅惑のカクテルレディ", + "alias_name_display" : "魅惑のカクテルレディ", + "event" : [ { + "event_id" : "009", + "event_name" : "第9回プロダクションマッチフェスティバル" + } ], + "hash" : "86c4bdb562fd8e4f75e9f6186bf5f7c7", + "id" : "2406101", + "profile" : { + "bust" : "91", + "height" : "167", + "hip" : "90", + "waist" : "62", + "weight" : "51" + } + }, { + "alias_name" : "魅惑のカクテルレディ", + "alias_name_display" : "魅惑のカクテルレディ", + "event" : [ { + "event_id" : "009", + "event_name" : "第9回プロダクションマッチフェスティバル" + } ], + "hash" : "584c3fe5210a9dfbd497c164ee2bb8e6", + "id" : "2506102", + "profile" : { + "bust" : "91", + "height" : "167", + "hip" : "90", + "waist" : "62", + "weight" : "51" + } + }, { + "alias_name" : "セクシー・ロワイヤル", + "alias_name_display" : "セクシー・ロワイヤル", + "event" : [ { + "event_id" : 812, + "event_name" : "第12回アイドルLIVEロワイヤル" + } ], + "hash" : "66f6b003936de3d8218ed6d75e7725bf", + "id" : "2424201", + "profile" : { + "bust" : "91", + "height" : "167", + "hip" : "90", + "waist" : "62", + "weight" : "51" + } + }, { + "alias_name" : "セクシー・ロワイヤル", + "alias_name_display" : "セクシー・ロワイヤル", + "event" : [ { + "event_id" : 812, + "event_name" : "第12回アイドルLIVEロワイヤル" + } ], + "hash" : "b6f3e564d927a8741fef257195584e32", + "id" : "2524202", + "profile" : { + "bust" : "91", + "height" : "167", + "hip" : "90", + "waist" : "62", + "weight" : "51" + } + }, { + "alias_name" : "アモラス・ロワイヤル", + "alias_name_display" : "アモラス・ロワイヤル", + "event" : [ { + "event_id" : 823, + "event_name" : "第23回アイドルLIVEロワイヤル" + } ], + "hash" : "48699172a15eb286179eb1b4daa8c46f", + "id" : "2439901", + "profile" : { + "bust" : "91", + "height" : "167", + "hip" : "90", + "waist" : "62", + "weight" : "51" + } + }, { + "alias_name" : "アモラス・ロワイヤル", + "alias_name_display" : "アモラス・ロワイヤル", + "event" : [ { + "event_id" : 823, + "event_name" : "第23回アイドルLIVEロワイヤル" + } ], + "hash" : "79b7221bfb5db0a94baf512abe1eb5eb", + "id" : "2539902", + "profile" : { + "bust" : "91", + "height" : "167", + "hip" : "90", + "waist" : "62", + "weight" : "51" + } + } ], + "idol_id" : 71, + "idol_name" : "高橋礼子", + "idol_name_display" : "高橋礼子", + "units" : [ { + "id" : "67", + "name" : "レディビースト" + }, { + "id" : "199", + "name" : "レッドバラード" + }, { + "id" : "207", + "name" : "ムーランルージュ" + } ] +}, { + "aliases" : [ { + "hash" : "24db8e0436418b7e45715d6330a49056", + "id" : "2000601", + "profile" : { + "bust" : "82", + "height" : "161", + "hip" : "85", + "waist" : "56", + "weight" : "43" + } + }, { + "hash" : "bb3b59c3fcb13e67d428def53699f508", + "id" : "2100602", + "profile" : { + "bust" : "82", + "height" : "161", + "hip" : "85", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "お花見", + "alias_name_display" : "お花見", + "event" : [ { + "event_id" : 104, + "event_name" : "桜舞う花見祭り" + } ], + "hash" : "3839626e54d0ec041b4a9e31daa069e5", + "id" : "2002001", + "profile" : { + "bust" : "82", + "height" : "161", + "hip" : "85", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "お花見", + "alias_name_display" : "お花見", + "event" : [ { + "event_id" : 104, + "event_name" : "桜舞う花見祭り" + } ], + "hash" : "98a7280ce9e419297d6a0732e1e8be21", + "id" : "2102002", + "profile" : { + "bust" : "82", + "height" : "161", + "hip" : "85", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "ロワイヤルスタイル", + "alias_name_display" : "ロワイヤルスタイル", + "event" : [ { + "event_id" : 801, + "event_name" : "アイドルLIVEロワイヤル" + } ], + "hash" : "26374e719939476045d5b68cd97bd71b", + "id" : "2212101", + "profile" : { + "bust" : "82", + "height" : "161", + "hip" : "85", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "ロワイヤルスタイル", + "alias_name_display" : "ロワイヤルスタイル", + "event" : [ { + "event_id" : 801, + "event_name" : "アイドルLIVEロワイヤル" + } ], + "hash" : "5db94845caafaca3cb351938eab38255", + "id" : "2312102", + "profile" : { + "bust" : "82", + "height" : "161", + "hip" : "85", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "メルヘンアニマルズ", + "alias_name_display" : "メルヘンアニマルズ", + "hash" : "adcaecd0e24939267f69f3d5ced30f80", + "id" : "2217401", + "profile" : { + "bust" : "82", + "height" : "161", + "hip" : "85", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "メルヘンアニマルズ", + "alias_name_display" : "メルヘンアニマルズ", + "hash" : "d605d715d583a542309c21f213131857", + "id" : "2317402", + "profile" : { + "bust" : "82", + "height" : "161", + "hip" : "85", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "イージーモーメント", + "alias_name_display" : "イージーモーメント", + "event" : [ { + "event_id" : "021", + "event_name" : "第21回プロダクションマッチフェスティバル" + } ], + "hash" : "25d429cfd93ad10bb1f06a997c3f5797", + "id" : "2220601", + "profile" : { + "bust" : "82", + "height" : "161", + "hip" : "85", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "イージーモーメント", + "alias_name_display" : "イージーモーメント", + "event" : [ { + "event_id" : "021", + "event_name" : "第21回プロダクションマッチフェスティバル" + } ], + "hash" : "259502538c76ba040edf323f08ecf86c", + "id" : "2320602", + "profile" : { + "bust" : "82", + "height" : "161", + "hip" : "85", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "敏腕刑事", + "alias_name_display" : "敏腕刑事", + "event" : [ { + "event_id" : 521, + "event_name" : "怪盗公演 美しき追跡者" + } ], + "hash" : "af44062383e5a214b5b983e6a037feaa", + "id" : "2322802", + "profile" : { + "bust" : "82", + "height" : "161", + "hip" : "85", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "秋の学園祭", + "alias_name_display" : "秋の学園祭", + "hash" : "595943d4eb918aa66cfc1dd92fe8a8b8", + "id" : "2228901", + "profile" : { + "bust" : "82", + "height" : "161", + "hip" : "85", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "秋の学園祭", + "alias_name_display" : "秋の学園祭", + "hash" : "03c4a96c5302e9ed2e1d0ffa2cde0140", + "id" : "2328902", + "profile" : { + "bust" : "82", + "height" : "161", + "hip" : "85", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "ナイトエレガンス", + "alias_name_display" : "ナイトエレガンス", + "event" : [ { + "event_id" : 803, + "event_name" : "第3回アイドルLIVEロワイヤル" + } ], + "hash" : "2e8a72447531178bd7c6b4af5ad3ac65", + "id" : "2411901", + "profile" : { + "bust" : "82", + "height" : "161", + "hip" : "85", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "ナイトエレガンス", + "alias_name_display" : "ナイトエレガンス", + "event" : [ { + "event_id" : 803, + "event_name" : "第3回アイドルLIVEロワイヤル" + } ], + "hash" : "6005f3a24b6f95a9e6ac20001fccf0a9", + "id" : "2511902", + "profile" : { + "bust" : "82", + "height" : "161", + "hip" : "85", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "招福萬来", + "alias_name_display" : "招福萬来", + "event" : [ { + "event_id" : 719, + "event_name" : "ドリームLIVEフェスティバル 節分SP" + } ], + "hash" : "d8b2e5540583e671da737c5c832509ce", + "id" : "2430501", + "profile" : { + "bust" : "82", + "height" : "161", + "hip" : "85", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "招福萬来", + "alias_name_display" : "招福萬来", + "event" : [ { + "event_id" : 719, + "event_name" : "ドリームLIVEフェスティバル 節分SP" + } ], + "hash" : "38623ebf06937afb131651a871925ccd", + "id" : "2530502", + "profile" : { + "bust" : "82", + "height" : "161", + "hip" : "85", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "モードリーブル", + "alias_name_display" : "モードリーブル", + "event" : [ { + "event_id" : 1412, + "event_name" : "第12回ぷちデレラコレクション" + } ], + "hash" : "b839d7f458db037366fcd9f57ea3137e", + "id" : "2439501", + "profile" : { + "bust" : "82", + "height" : "161", + "hip" : "85", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "モードリーブル", + "alias_name_display" : "モードリーブル", + "event" : [ { + "event_id" : 1412, + "event_name" : "第12回ぷちデレラコレクション" + } ], + "hash" : "4028037887d8707827e2a749bb925d5d", + "id" : "2539502", + "profile" : { + "bust" : "82", + "height" : "161", + "hip" : "85", + "waist" : "56", + "weight" : "43" + } + } ], + "idol_id" : 72, + "idol_name" : "相川千夏", + "idol_name_display" : "相川千夏", + "units" : [ { + "id" : "18", + "name" : "サクラブロッサム" + }, { + "id" : "166", + "name" : "メルヘンアニマルズ" + }, { + "id" : "199", + "name" : "レッドバラード" + }, { + "id" : "208", + "name" : "ロワイヤルスタイル" + } ] +}, { + "aliases" : [ { + "hash" : "40a601df9bea01621e36d1ab686f16e3", + "id" : "2000701", + "profile" : { + "bust" : "87", + "height" : "159", + "hip" : "85", + "waist" : "57", + "weight" : "44" + } + }, { + "hash" : "58135fa927f8d12eaa6228dc0bdf62e9", + "id" : "2100702", + "profile" : { + "bust" : "87", + "height" : "159", + "hip" : "85", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "パジャマパーティー", + "alias_name_display" : "パジャマパーティー", + "hash" : "209fee1285aed04a5741706a0a566fef", + "id" : "2204001", + "profile" : { + "bust" : "87", + "height" : "159", + "hip" : "85", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "パジャマパーティー", + "alias_name_display" : "パジャマパーティー", + "hash" : "c17136265b3240ee66b30f381e3aef56", + "id" : "2304002", + "profile" : { + "bust" : "87", + "height" : "159", + "hip" : "85", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "花火祭り", + "alias_name_display" : "花火祭り", + "event" : [ { + "event_id" : 408, + "event_name" : "アイドルプロデュース 夜空に咲く花火編" + } ], + "hash" : "99dfa14f926ede47b4fc2cabfd018d75", + "id" : "2211001", + "profile" : { + "bust" : "87", + "height" : "159", + "hip" : "85", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "花火祭り", + "alias_name_display" : "花火祭り", + "event" : [ { + "event_id" : 408, + "event_name" : "アイドルプロデュース 夜空に咲く花火編" + } ], + "hash" : "daef71058f35b5317a104f0441b71b5e", + "id" : "2311002", + "profile" : { + "bust" : "87", + "height" : "159", + "hip" : "85", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "花火祭りスマイル", + "alias_name_display" : "花火祭りスマイル", + "event" : [ { + "event_id" : 408, + "event_name" : "アイドルプロデュース 夜空に咲く花火編" + } ], + "hash" : "275711a449400f466b5cf81a50ca258f", + "id" : "2211101", + "profile" : { + "bust" : "87", + "height" : "159", + "hip" : "85", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "花火祭りスマイル", + "alias_name_display" : "花火祭りスマイル", + "event" : [ { + "event_id" : 408, + "event_name" : "アイドルプロデュース 夜空に咲く花火編" + } ], + "hash" : "8616ac16ec9f6cc1cecbe86f21b144d5", + "id" : "2311102", + "profile" : { + "bust" : "87", + "height" : "159", + "hip" : "85", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "大人のたしなみ", + "alias_name_display" : "大人のたしなみ", + "hash" : "7cadb40bf6509955d8d5de4eae76f733", + "id" : "2226101", + "profile" : { + "bust" : "87", + "height" : "159", + "hip" : "85", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "大人のたしなみ", + "alias_name_display" : "大人のたしなみ", + "hash" : "3b95f73ab51ad9cd2e2f6a27ea50e9f3", + "id" : "2326102", + "profile" : { + "bust" : "87", + "height" : "159", + "hip" : "85", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "永遠のプリンセス", + "alias_name_display" : "永遠のプリンセス", + "event" : [ { + "event_id" : "005", + "event_name" : "第5回プロダクションマッチフェスティバル" + } ], + "hash" : "907f18eacc2a5f257dbd4ae077367f90", + "id" : "2403401", + "profile" : { + "bust" : "87", + "height" : "159", + "hip" : "85", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "永遠のプリンセス", + "alias_name_display" : "永遠のプリンセス", + "event" : [ { + "event_id" : "005", + "event_name" : "第5回プロダクションマッチフェスティバル" + } ], + "hash" : "9d9d9704f3d149c9e1f72a858172a7ae", + "id" : "2503402", + "profile" : { + "bust" : "87", + "height" : "159", + "hip" : "85", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "麗しき淑女", + "alias_name_display" : "麗しき淑女", + "hash" : "300832c8e53700a2d11cc55349e63961", + "id" : "2404601", + "profile" : { + "bust" : "87", + "height" : "159", + "hip" : "85", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "麗しき淑女", + "alias_name_display" : "麗しき淑女", + "hash" : "551dff4a0a16e66bdf019f55381368ca", + "id" : "2504602", + "profile" : { + "bust" : "87", + "height" : "159", + "hip" : "85", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "aabab7304c856a8a52ef3c3ec8df7fa7", + "id" : "2405101", + "profile" : { + "bust" : "87", + "height" : "159", + "hip" : "85", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "9bba87dccca8d68fe3559eeb60a22d51", + "id" : "2505102", + "profile" : { + "bust" : "87", + "height" : "159", + "hip" : "85", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "クリスマスクイーン", + "alias_name_display" : "クリスマスクイーン", + "hash" : "1b9b66c042fdaa8e668f198b53947535", + "id" : "2410901", + "profile" : { + "bust" : "87", + "height" : "159", + "hip" : "85", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "クリスマスクイーン", + "alias_name_display" : "クリスマスクイーン", + "hash" : "0db6cc006f71e8595c22c1377698ae8f", + "id" : "2510902", + "profile" : { + "bust" : "87", + "height" : "159", + "hip" : "85", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "熱情の魔女", + "alias_name_display" : "熱情の魔女", + "event" : [ { + "event_id" : 806, + "event_name" : "アイドルLIVEロワイヤルinSUMMER" + } ], + "hash" : "ba03cf985c54861ffdf105a5791a8882", + "id" : "2417001", + "profile" : { + "bust" : "87", + "height" : "159", + "hip" : "85", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "熱情の魔女", + "alias_name_display" : "熱情の魔女", + "event" : [ { + "event_id" : 806, + "event_name" : "アイドルLIVEロワイヤルinSUMMER" + } ], + "hash" : "393c268bda8bf72c51cf54f6e42acf1c", + "id" : "2517002", + "profile" : { + "bust" : "87", + "height" : "159", + "hip" : "85", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "夜明けのディーヴァ", + "alias_name_display" : "夜明けのディーヴァ", + "hash" : "c95a94a687ce72c15e098b2f98b0e4bd", + "id" : "2423501", + "profile" : { + "bust" : "87", + "height" : "159", + "hip" : "85", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "夜明けのディーヴァ", + "alias_name_display" : "夜明けのディーヴァ", + "hash" : "f8da33d8e7f6afc951e447ee93b95e33", + "id" : "2523502", + "profile" : { + "bust" : "87", + "height" : "159", + "hip" : "85", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "タイムゴーズバイ", + "alias_name_display" : "タイムゴーズバイ", + "hash" : "95216370d68f59ba130fc9030ffcb95c", + "id" : "2429101", + "profile" : { + "bust" : "87", + "height" : "159", + "hip" : "85", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "タイムゴーズバイ", + "alias_name_display" : "タイムゴーズバイ", + "hash" : "b8da2dbad3008521edcb8ad261ad0c1d", + "id" : "2529102", + "profile" : { + "bust" : "87", + "height" : "159", + "hip" : "85", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "シンデレラドリーム", + "alias_name_display" : "シンデレラドリーム", + "hash" : "3f53b23452b2ad8b1a5a279257023dc1", + "id" : "2436001", + "profile" : { + "bust" : "87", + "height" : "159", + "hip" : "85", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "シンデレラドリーム", + "alias_name_display" : "シンデレラドリーム", + "hash" : "f8290c4530003b664115639282feddd3", + "id" : "2536002", + "profile" : { + "bust" : "87", + "height" : "159", + "hip" : "85", + "waist" : "56", + "weight" : "44" + } + } ], + "idol_id" : 73, + "idol_name" : "川島瑞樹", + "idol_name_display" : "川島瑞樹", + "units" : [ { + "id" : "52", + "name" : "フォーリンシーサイド" + }, { + "id" : "124", + "name" : "女神たちの夏宴" + }, { + "id" : "140", + "name" : "アイドルミズキ with AS" + }, { + "id" : "190", + "name" : "サマプリ" + }, { + "id" : "198", + "name" : "ブルーナポレオン" + }, { + "id" : "201", + "name" : "Caskets" + }, { + "id" : "212", + "name" : "CINDERELLA GIRLS" + } ] +}, { + "aliases" : [ { + "hash" : "4c54b931268517a3746f98911166b113", + "id" : "2000801", + "profile" : { + "bust" : "83", + "height" : "154", + "hip" : "81", + "waist" : "58", + "weight" : "44" + } + }, { + "hash" : "06a7cb5dff7350e37d97e6b9d6207148", + "id" : "2100802", + "profile" : { + "bust" : "83", + "height" : "154", + "hip" : "81", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "聖夜", + "alias_name_display" : "聖夜", + "event" : [ { + "event_id" : 101, + "event_name" : "星降るクリスマス" + } ], + "hash" : "226ea5730b69cb31b721f24fe9db2ff3", + "id" : "2201901", + "profile" : { + "bust" : "83", + "height" : "154", + "hip" : "81", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "聖夜", + "alias_name_display" : "聖夜", + "event" : [ { + "event_id" : 101, + "event_name" : "星降るクリスマス" + } ], + "hash" : "d2612b52c629e6a5ffcb5de8c6c77c1f", + "id" : "2301902", + "profile" : { + "bust" : "83", + "height" : "154", + "hip" : "81", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "京町乙女", + "alias_name_display" : "京町乙女", + "event" : [ { + "event_id" : 402, + "event_name" : "アイドルプロデュース京町編" + } ], + "hash" : "9c9c15601b70b9001c558d79df7f2795", + "id" : "2206401", + "profile" : { + "bust" : "83", + "height" : "154", + "hip" : "81", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "京町乙女", + "alias_name_display" : "京町乙女", + "event" : [ { + "event_id" : 402, + "event_name" : "アイドルプロデュース京町編" + } ], + "hash" : "5ed8a511f1c7bd01ac963eabd5aaf3f2", + "id" : "2306402", + "profile" : { + "bust" : "83", + "height" : "154", + "hip" : "81", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "制服コレクション", + "alias_name_display" : "制服コレクション", + "hash" : "ead31e2aa3a42fd37121ae0e7379cc0d", + "id" : "2211901", + "profile" : { + "bust" : "83", + "height" : "154", + "hip" : "81", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "制服コレクション", + "alias_name_display" : "制服コレクション", + "hash" : "dca33b6f2bbf361004273bc203ffeccd", + "id" : "2311902", + "profile" : { + "bust" : "83", + "height" : "154", + "hip" : "81", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "恥じらい乙女", + "alias_name_display" : "恥じらい乙女", + "hash" : "2fc4f435264d5f7543ed27ff5bc3b333", + "id" : "2401901", + "profile" : { + "bust" : "83", + "height" : "154", + "hip" : "81", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "恥じらい乙女", + "alias_name_display" : "恥じらい乙女", + "hash" : "7e19695143ebd0b2e67b54e212be8cb8", + "id" : "2501902", + "profile" : { + "bust" : "83", + "height" : "154", + "hip" : "81", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "アトラクトゴシック", + "alias_name_display" : "アトラクトゴシック", + "hash" : "42ccfcf77765fe187c5b01a39b83b62b", + "id" : "2405601", + "profile" : { + "bust" : "83", + "height" : "154", + "hip" : "81", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "アトラクトゴシック", + "alias_name_display" : "アトラクトゴシック", + "hash" : "823b2fe51a82ecb9819b0d8a28cbb05d", + "id" : "2505602", + "profile" : { + "bust" : "83", + "height" : "154", + "hip" : "81", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "夜宴のメイド", + "alias_name_display" : "夜宴のメイド", + "hash" : "1eb1e04b6ccae476e2fa494da8dc8d62", + "id" : "2412801", + "profile" : { + "bust" : "83", + "height" : "154", + "hip" : "81", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "夜宴のメイド", + "alias_name_display" : "夜宴のメイド", + "hash" : "71f3529076561f0938fcd40266bba205", + "id" : "2512802", + "profile" : { + "bust" : "83", + "height" : "154", + "hip" : "81", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "64a140b725d7907a0cf8ad1ea556206e", + "id" : "2414001", + "profile" : { + "bust" : "83", + "height" : "154", + "hip" : "81", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "65c6332be6031ac00cab0de46cd8b679", + "id" : "2514002", + "profile" : { + "bust" : "83", + "height" : "154", + "hip" : "81", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "魔法のエール", + "alias_name_display" : "魔法のエール", + "event" : [ { + "event_id" : 1107, + "event_name" : "プロダクション対抗トークバトルショー クリスマスSP" + } ], + "hash" : "21db51dfd598fc78744050f3bd726b6c", + "id" : "2419901", + "profile" : { + "bust" : "83", + "height" : "154", + "hip" : "81", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "魔法のエール", + "alias_name_display" : "魔法のエール", + "event" : [ { + "event_id" : 1107, + "event_name" : "プロダクション対抗トークバトルショー クリスマスSP" + } ], + "hash" : "677c4345a16718726b0fc7fbffbd9181", + "id" : "2519902", + "profile" : { + "bust" : "83", + "height" : "154", + "hip" : "81", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "純真の花嫁", + "alias_name_display" : "純真の花嫁", + "event" : [ { + "event_id" : 1206, + "event_name" : "目指せウェディングモデル アイドルチャレンジ" + } ], + "hash" : "6605ee3d07ad7a750c55492215c2df86", + "id" : "2424501", + "profile" : { + "bust" : "83", + "height" : "154", + "hip" : "81", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "純真の花嫁", + "alias_name_display" : "純真の花嫁", + "event" : [ { + "event_id" : 1206, + "event_name" : "目指せウェディングモデル アイドルチャレンジ" + } ], + "hash" : "b3e05599926adc80d58c1ab78e987a78", + "id" : "2524502", + "profile" : { + "bust" : "83", + "height" : "154", + "hip" : "81", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "トゥプロミス", + "alias_name_display" : "トゥプロミス", + "hash" : "2c7cf0f30845f13b7794d96367f6f37a", + "id" : "2427801", + "profile" : { + "bust" : "83", + "height" : "154", + "hip" : "81", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "トゥプロミス", + "alias_name_display" : "トゥプロミス", + "hash" : "ff60a2cf4d0f69d2c7b34929a354a11b", + "id" : "2527802", + "profile" : { + "bust" : "83", + "height" : "154", + "hip" : "81", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "夏空サプライズ", + "alias_name_display" : "夏空サプライズ", + "hash" : "90340a72d8990fb4ae7171feeef246b4", + "id" : "2433601", + "profile" : { + "bust" : "83", + "height" : "154", + "hip" : "81", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "夏空サプライズ", + "alias_name_display" : "夏空サプライズ", + "hash" : "d889a0c65040761fe74dae4bd35fc22d", + "id" : "2533602", + "profile" : { + "bust" : "83", + "height" : "154", + "hip" : "81", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "気まぐれにゃんこ", + "alias_name_display" : "気まぐれにゃんこ", + "hash" : "224d562032e630fa1cc8d555dbb2c553", + "id" : "2438401", + "profile" : { + "bust" : "83", + "height" : "154", + "hip" : "81", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "気まぐれにゃんこ", + "alias_name_display" : "気まぐれにゃんこ", + "hash" : "8511ad8903a41ce65a867c7d1d9fb90a", + "id" : "2538402", + "profile" : { + "bust" : "83", + "height" : "154", + "hip" : "81", + "waist" : "56", + "weight" : "42" + } + } ], + "idol_id" : 74, + "idol_name" : "神谷奈緒", + "idol_name_display" : "神谷奈緒", + "units" : [ { + "id" : "91", + "name" : "京町乙女" + }, { + "id" : "94", + "name" : "シャイニングゴッドチェリー" + }, { + "id" : "115", + "name" : "虹色ドリーマー" + }, { + "id" : "144", + "name" : "Triad Primus" + }, { + "id" : "187", + "name" : "NEX-US" + }, { + "id" : "201", + "name" : "Caskets" + }, { + "id" : "215", + "name" : "Project:Krone" + } ] +}, { + "aliases" : [ { + "hash" : "67f718dfb03e338ba76c322b1970258e", + "id" : "2000901", + "profile" : { + "bust" : "79", + "height" : "156", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "hash" : "c981552913cad2107b2a42c40b42f200", + "id" : "2100902", + "profile" : { + "bust" : "79", + "height" : "156", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "眼鏡マジック", + "alias_name_display" : "眼鏡マジック", + "event" : [ { + "event_id" : "001", + "event_name" : "プロダクションマッチフェスティバル" + } ], + "hash" : "30376d9c5c74a63aa62d34b6e5549287", + "id" : "2203201", + "profile" : { + "bust" : "79", + "height" : "156", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "眼鏡マジック", + "alias_name_display" : "眼鏡マジック", + "event" : [ { + "event_id" : "001", + "event_name" : "プロダクションマッチフェスティバル" + } ], + "hash" : "4046d2c05a63497e9d6363b8c93131c0", + "id" : "2303202", + "profile" : { + "bust" : "79", + "height" : "156", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "アニバーサリーブルー", + "alias_name_display" : "アニバーサリーブルー", + "event" : [ { + "event_id" : 403, + "event_name" : "アイドルプロデュース the 1st Anniversary" + } ], + "hash" : "82d2eab4067f865fdeb3b7bd9f3f1a1c", + "id" : "2207001", + "profile" : { + "bust" : "79", + "height" : "156", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "アニバーサリーブルー", + "alias_name_display" : "アニバーサリーブルー", + "event" : [ { + "event_id" : 403, + "event_name" : "アイドルプロデュース the 1st Anniversary" + } ], + "hash" : "90d5b268954cd457fa650376fb7c37fe", + "id" : "2307002", + "profile" : { + "bust" : "79", + "height" : "156", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "新春コレクション", + "alias_name_display" : "新春コレクション", + "hash" : "9ec2e1396e64cbf435a52b7c4f7ff518", + "id" : "2213701", + "profile" : { + "bust" : "79", + "height" : "156", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "新春コレクション", + "alias_name_display" : "新春コレクション", + "hash" : "f4e2b86a14a5136878c169258a0d752d", + "id" : "2313702", + "profile" : { + "bust" : "79", + "height" : "156", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "クリスマスプレゼント", + "alias_name_display" : "クリスマスプレゼント", + "hash" : "f1279cb152f79f39243600a630ba373a", + "id" : "2218901", + "profile" : { + "bust" : "79", + "height" : "156", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "クリスマスプレゼント", + "alias_name_display" : "クリスマスプレゼント", + "hash" : "c7f5f73ba58581b6d42b967bcef3b33b", + "id" : "2318902", + "profile" : { + "bust" : "79", + "height" : "156", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "秋の学園祭", + "alias_name_display" : "秋の学園祭", + "hash" : "1a99e96a10fc8b6aa1d86de6df110900", + "id" : "2228801", + "profile" : { + "bust" : "79", + "height" : "156", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "秋の学園祭", + "alias_name_display" : "秋の学園祭", + "hash" : "32d8b86ecc3590d3d7c24af83676493e", + "id" : "2328802", + "profile" : { + "bust" : "79", + "height" : "156", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "眼鏡プリンセス", + "alias_name_display" : "眼鏡プリンセス", + "hash" : "d4bf3f8607525c3677d202531d6a2b8f", + "id" : "2403001", + "profile" : { + "bust" : "79", + "height" : "156", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "眼鏡プリンセス", + "alias_name_display" : "眼鏡プリンセス", + "hash" : "bbfd336e241f96dcc83e272d597cb3ef", + "id" : "2503002", + "profile" : { + "bust" : "79", + "height" : "156", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "ホワイトプリンセス", + "alias_name_display" : "ホワイトプリンセス", + "event" : [ { + "event_id" : 507, + "event_name" : "LIVEツアーカーニバルinドイツ" + } ], + "hash" : "dd7ae2fc2ca09c5c5b4bdc9e3e7697b6", + "id" : "2408701", + "profile" : { + "bust" : "79", + "height" : "156", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "ホワイトプリンセス", + "alias_name_display" : "ホワイトプリンセス", + "event" : [ { + "event_id" : 507, + "event_name" : "LIVEツアーカーニバルinドイツ" + } ], + "hash" : "f804a8ac60ea75d39b243b1878fd2e2d", + "id" : "2508702", + "profile" : { + "bust" : "79", + "height" : "156", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "眼鏡越しの輝き", + "alias_name_display" : "眼鏡越しの輝き", + "event" : [ { + "event_id" : 1301, + "event_name" : "プロダクションマッチフェスティバルS" + } ], + "hash" : "2fbb5c929f6ac2e9c19a5274ceb055db", + "id" : "2415801", + "profile" : { + "bust" : "79", + "height" : "156", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "眼鏡越しの輝き", + "alias_name_display" : "眼鏡越しの輝き", + "event" : [ { + "event_id" : 1301, + "event_name" : "プロダクションマッチフェスティバルS" + } ], + "hash" : "51d10185262f6caafe0355f40b29a286", + "id" : "2515802", + "profile" : { + "bust" : "79", + "height" : "156", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "メモリアル・ブルー", + "alias_name_display" : "メモリアル・ブルー", + "hash" : "18b68bdafe0fbaff1a378cced824f0ff", + "id" : "2422101", + "profile" : { + "bust" : "79", + "height" : "156", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "メモリアル・ブルー", + "alias_name_display" : "メモリアル・ブルー", + "hash" : "33ac3decf73adafad8301c26188e74c8", + "id" : "2522102", + "profile" : { + "bust" : "79", + "height" : "156", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "アニマルテイマー", + "alias_name_display" : "アニマルテイマー", + "hash" : "f809934dbe9b4b0d3549c6716383ebfb", + "id" : "2431401", + "profile" : { + "bust" : "79", + "height" : "156", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "アニマルテイマー", + "alias_name_display" : "アニマルテイマー", + "hash" : "895adb42cedd503a357282110c7c92c9", + "id" : "2531402", + "profile" : { + "bust" : "79", + "height" : "156", + "hip" : "80", + "waist" : "56", + "weight" : "42" + } + } ], + "idol_id" : 75, + "idol_name" : "上条春菜", + "idol_name_display" : "上条春菜", + "units" : [ { + "id" : "16", + "name" : "サイバーグラス" + }, { + "id" : "198", + "name" : "ブルーナポレオン" + } ] +}, { + "aliases" : [ { + "hash" : "15b30810c788f120586bc0916134b1da", + "id" : "2001001", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "hash" : "1ac3475189f6684094860fa41607cc72", + "id" : "2101002", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "サイバーグラス", + "alias_name_display" : "サイバーグラス", + "event" : [ { + "event_id" : "004", + "event_name" : "第4回プロダクションマッチフェスティバル" + } ], + "hash" : "f3fe34f102bcfc79c85c7301729dc3fc", + "id" : "2205601", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "サイバーグラス", + "alias_name_display" : "サイバーグラス", + "event" : [ { + "event_id" : "004", + "event_name" : "第4回プロダクションマッチフェスティバル" + } ], + "hash" : "ef0b667927cb970cd8ff1afd0b9b4558", + "id" : "2305602", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "クリスマスパーティー", + "alias_name_display" : "クリスマスパーティー", + "hash" : "7b962529e1266770861d74fdfa9b915d", + "id" : "2207101", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "クリスマスパーティー", + "alias_name_display" : "クリスマスパーティー", + "hash" : "cb32cc18a6a4ddffb5eeea41bb83582e", + "id" : "2307102", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "ナイトパーティー", + "alias_name_display" : "ナイトパーティー", + "hash" : "709707a9d2a67c4371536f7e525f9392", + "id" : "2220101", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "ナイトパーティー", + "alias_name_display" : "ナイトパーティー", + "hash" : "1cddd797664730b9996c24be7647aeef", + "id" : "2320102", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "ライトニングモーニング", + "alias_name_display" : "ライトニングモーニング", + "hash" : "3497634f983f9f98d7d73469c45007f2", + "id" : "2225101", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "ライトニングモーニング", + "alias_name_display" : "ライトニングモーニング", + "hash" : "685e778faec4180be5af8d453a5bdbd8", + "id" : "2325102", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "T.B.チアーズ", + "alias_name_display" : "T.B.チアーズ", + "event" : [ { + "event_id" : 1512, + "event_name" : "第12回チーム対抗トークバトルショー" + } ], + "hash" : "cf11785b7891fb42a7d5b75fd7b33723", + "id" : "2231701", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "T.B.チアーズ", + "alias_name_display" : "T.B.チアーズ", + "event" : [ { + "event_id" : 1512, + "event_name" : "第12回チーム対抗トークバトルショー" + } ], + "hash" : "0c2ecb19bd0d360cd0e6b00e36b4348d", + "id" : "2331702", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "ブルーフロートパーティー", + "alias_name_display" : "ブルーフロートパーティー", + "event" : [ { + "event_id" : 506, + "event_name" : "アイドルLIVEツアーinハワイ" + } ], + "hash" : "cf22d3b6255843c39b54ae310cccc00b", + "id" : "2408301", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "ブルーフロートパーティー", + "alias_name_display" : "ブルーフロートパーティー", + "event" : [ { + "event_id" : 506, + "event_name" : "アイドルLIVEツアーinハワイ" + } ], + "hash" : "50b324eef14d2a6f827d1c51538c63cf", + "id" : "2508302", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "花咲く舞姿", + "alias_name_display" : "花咲く舞姿", + "event" : [ { + "event_id" : 510, + "event_name" : "ひな祭りLIVEツアーカーニバル" + } ], + "hash" : "aa5df8e05c805eab2ef48d45718fa710", + "id" : "2412701", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "花咲く舞姿", + "alias_name_display" : "花咲く舞姿", + "event" : [ { + "event_id" : 510, + "event_name" : "ひな祭りLIVEツアーカーニバル" + } ], + "hash" : "4678637baed65cc724da47c58b5fbeeb", + "id" : "2512702", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "夏の思い出", + "alias_name_display" : "夏の思い出", + "event" : [ { + "event_id" : 413, + "event_name" : "みんなのなつやすみ" + } ], + "hash" : "d39d369d246b0ed963bd28f0484c05ce", + "id" : "2415901", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "夏の思い出", + "alias_name_display" : "夏の思い出", + "event" : [ { + "event_id" : 413, + "event_name" : "みんなのなつやすみ" + } ], + "hash" : "0681a26986b44e551c2ac9d3f9681014", + "id" : "2515902", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "一夏の思い出", + "alias_name_display" : "一夏の思い出", + "event" : [ { + "event_id" : 413, + "event_name" : "みんなのなつやすみ" + } ], + "hash" : "3806edd95899d90efae5a33f742071fe", + "id" : "2416001", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "一夏の思い出", + "alias_name_display" : "一夏の思い出", + "event" : [ { + "event_id" : 413, + "event_name" : "みんなのなつやすみ" + } ], + "hash" : "42ca3dd4352298a6655156f141e4e1a9", + "id" : "2516002", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "こころペイント", + "alias_name_display" : "こころペイント", + "hash" : "bad411da0072464e386083dad9d15429", + "id" : "2426501", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "こころペイント", + "alias_name_display" : "こころペイント", + "hash" : "b29bf49901062956bfa1a97d530a1a8c", + "id" : "2526502", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "青き日のメモリー", + "alias_name_display" : "青き日のメモリー", + "hash" : "bc8b2dbbf15ea462967d6052df22acdb", + "id" : "2435101", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "青き日のメモリー", + "alias_name_display" : "青き日のメモリー", + "hash" : "df6fa045d58337acbd9725d8a940d1b4", + "id" : "2535102", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "56", + "weight" : "42" + } + } ], + "idol_id" : 76, + "idol_name" : "荒木比奈", + "idol_name_display" : "荒木比奈", + "units" : [ { + "id" : "12", + "name" : "壁サーの花" + }, { + "id" : "16", + "name" : "サイバーグラス" + }, { + "id" : "115", + "name" : "虹色ドリーマー" + }, { + "id" : "198", + "name" : "ブルーナポレオン" + } ] +}, { + "aliases" : [ { + "hash" : "74aa09925c2e9f3dfa27f9d6c9043737", + "id" : "2001101", + "profile" : { + "bust" : "82", + "height" : "167", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "hash" : "a3e6c69d2edf043cfb9c28701375fc34", + "id" : "2101102", + "profile" : { + "bust" : "82", + "height" : "167", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "新春", + "alias_name_display" : "新春", + "event" : [ { + "event_id" : 102, + "event_name" : "アイドルおもちつき大会" + } ], + "hash" : "cbe69bd743d9d067fd6b11cc0049a085", + "id" : "2202001", + "profile" : { + "bust" : "82", + "height" : "167", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "新春", + "alias_name_display" : "新春", + "event" : [ { + "event_id" : 102, + "event_name" : "アイドルおもちつき大会" + } ], + "hash" : "4a72d18788cce0a7d131aab3752f2c99", + "id" : "2302002", + "profile" : { + "bust" : "82", + "height" : "167", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "メイドコレクション", + "alias_name_display" : "メイドコレクション", + "hash" : "39675e1d3dc31791f353b9e6841ae8d8", + "id" : "2205701", + "profile" : { + "bust" : "82", + "height" : "167", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "メイドコレクション", + "alias_name_display" : "メイドコレクション", + "hash" : "d94d965adfb72f7ef95ac3b77733401a", + "id" : "2305702", + "profile" : { + "bust" : "82", + "height" : "167", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "桜祭り", + "alias_name_display" : "桜祭り", + "event" : [ { + "event_id" : 406, + "event_name" : "アイドルプロデュース 春の桜祭り編" + } ], + "hash" : "5ef83cd87feba045f3f187b1762ff6ca", + "id" : "2208901", + "profile" : { + "bust" : "82", + "height" : "167", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "桜祭り", + "alias_name_display" : "桜祭り", + "event" : [ { + "event_id" : 406, + "event_name" : "アイドルプロデュース 春の桜祭り編" + } ], + "hash" : "3c1f88d55d79cac9df8e77f18357f902", + "id" : "2308902", + "profile" : { + "bust" : "82", + "height" : "167", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "桜祭りスマイル", + "alias_name_display" : "桜祭りスマイル", + "event" : [ { + "event_id" : 406, + "event_name" : "アイドルプロデュース 春の桜祭り編" + } ], + "hash" : "4accecd9f5f759be292a3c85c2ce3918", + "id" : "2209001", + "profile" : { + "bust" : "82", + "height" : "167", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "桜祭りスマイル", + "alias_name_display" : "桜祭りスマイル", + "event" : [ { + "event_id" : 406, + "event_name" : "アイドルプロデュース 春の桜祭り編" + } ], + "hash" : "055eb7721bc1270b22d4547cf462a82c", + "id" : "2309002", + "profile" : { + "bust" : "82", + "height" : "167", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "エレガントビューティー", + "alias_name_display" : "エレガントビューティー", + "hash" : "6b328ca71ed9610a04aa38670c9b3166", + "id" : "2212801", + "profile" : { + "bust" : "82", + "height" : "167", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "エレガントビューティー", + "alias_name_display" : "エレガントビューティー", + "hash" : "4d32085d7d14fafb8a406e873442e7b8", + "id" : "2312802", + "profile" : { + "bust" : "82", + "height" : "167", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "エレガントI.C", + "alias_name_display" : "エレガントI.C", + "event" : [ { + "event_id" : 1205, + "event_name" : "目指せ優雅なお嬢様 アイドルチャレンジ" + } ], + "hash" : "b44cc7e3317df4588e160990fbfd4d86", + "id" : "2320002", + "profile" : { + "bust" : "82", + "height" : "167", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "サマーバケーション", + "alias_name_display" : "サマーバケーション", + "hash" : "31b37aeecf1445f7e363f3b8b7b6db23", + "id" : "2222401", + "profile" : { + "bust" : "82", + "height" : "167", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "サマーバケーション", + "alias_name_display" : "サマーバケーション", + "hash" : "696c01a795166f331a53c37994b5f7aa", + "id" : "2322402", + "profile" : { + "bust" : "82", + "height" : "167", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "美貌の麗女", + "alias_name_display" : "美貌の麗女", + "event" : [ { + "event_id" : 505, + "event_name" : "アイドルLIVEツアーinバリ島" + } ], + "hash" : "e359a699281a6fb7935618fc6358470f", + "id" : "2407701", + "profile" : { + "bust" : "82", + "height" : "167", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "美貌の麗女", + "alias_name_display" : "美貌の麗女", + "event" : [ { + "event_id" : 505, + "event_name" : "アイドルLIVEツアーinバリ島" + } ], + "hash" : "96c902ec8911587b338d09528fe19024", + "id" : "2507702", + "profile" : { + "bust" : "82", + "height" : "167", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ドライブトゥネクスト", + "alias_name_display" : "ドライブトゥネクスト", + "hash" : "289a6831a0ad831572b9a7d57a4eb6b2", + "id" : "2418301", + "profile" : { + "bust" : "82", + "height" : "167", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ドライブトゥネクスト", + "alias_name_display" : "ドライブトゥネクスト", + "hash" : "c3fa0697da17804c6fbd18ba99d2c722", + "id" : "2518302", + "profile" : { + "bust" : "82", + "height" : "167", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "貫禄のお嬢様", + "alias_name_display" : "貫禄のお嬢様", + "event" : [ { + "event_id" : 1205, + "event_name" : "目指せ優雅なお嬢様 アイドルチャレンジ" + } ], + "hash" : "9a9e72c629933e4ced1d13022e74552f", + "id" : "2422201", + "profile" : { + "bust" : "82", + "height" : "167", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "貫禄のお嬢様", + "alias_name_display" : "貫禄のお嬢様", + "event" : [ { + "event_id" : 1205, + "event_name" : "目指せ優雅なお嬢様 アイドルチャレンジ" + } ], + "hash" : "6820ec6d2e126592f9bade2f433bbcc7", + "id" : "2522202", + "profile" : { + "bust" : "82", + "height" : "167", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "貫禄のお嬢様・S", + "alias_name_display" : "貫禄のお嬢様・S", + "event" : [ { + "event_id" : 1205, + "event_name" : "目指せ優雅なお嬢様 アイドルチャレンジ" + } ], + "hash" : "3ce11c195914bac2bf7d885ecda38e09", + "id" : "2422301", + "profile" : { + "bust" : "82", + "height" : "167", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "貫禄のお嬢様・S", + "alias_name_display" : "貫禄のお嬢様・S", + "event" : [ { + "event_id" : 1205, + "event_name" : "目指せ優雅なお嬢様 アイドルチャレンジ" + } ], + "hash" : "928aa1d8c522c0ce8da26b91bf967cf6", + "id" : "2522302", + "profile" : { + "bust" : "82", + "height" : "167", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "夏の戯れ", + "alias_name_display" : "夏の戯れ", + "event" : [ { + "event_id" : 722, + "event_name" : "夏祭りDEドリームLIVEフェスティバル" + } ], + "hash" : "cd2da0337b1ecce664227382948450db", + "id" : "2433501", + "profile" : { + "bust" : "82", + "height" : "167", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "夏の戯れ", + "alias_name_display" : "夏の戯れ", + "event" : [ { + "event_id" : 722, + "event_name" : "夏祭りDEドリームLIVEフェスティバル" + } ], + "hash" : "b7e85b995983a4804983f200ce49b269", + "id" : "2533502", + "profile" : { + "bust" : "82", + "height" : "167", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "白銀のシュプール", + "alias_name_display" : "白銀のシュプール", + "event" : [ { + "event_id" : 1410, + "event_name" : "第10回ぷちデレラコレクション" + } ], + "hash" : "35a37964b7d42169b3c4cf2f4beffaec", + "id" : "2436901", + "profile" : { + "bust" : "82", + "height" : "167", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "白銀のシュプール", + "alias_name_display" : "白銀のシュプール", + "event" : [ { + "event_id" : 1410, + "event_name" : "第10回ぷちデレラコレクション" + } ], + "hash" : "18587c946f96cd9c273730176ecbcec8", + "id" : "2536902", + "profile" : { + "bust" : "82", + "height" : "167", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + } ], + "idol_id" : 77, + "idol_name" : "東郷あい", + "idol_name_display" : "東郷あい", + "units" : [ { + "id" : "10", + "name" : "エレガントインモラリスト" + }, { + "id" : "88", + "name" : "桜花小町" + }, { + "id" : "140", + "name" : "アイドルミズキ with AS" + }, { + "id" : "171", + "name" : "Black/White-Roses" + }, { + "id" : "183", + "name" : "メイドコレクション" + }, { + "id" : "199", + "name" : "レッドバラード" + } ] +}, { + "aliases" : [ { + "hash" : "914e2e1efbc1f05e987772cc5c925722", + "id" : "2001201", + "profile" : { + "bust" : "80", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "41" + } + }, { + "hash" : "17c1dfda6510677f5a448d951c086d33", + "id" : "2101202", + "profile" : { + "bust" : "80", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "バレンタイン", + "alias_name_display" : "バレンタイン", + "event" : [ { + "event_id" : 103, + "event_name" : "バレンタインパーティー" + } ], + "hash" : "dc90bc1dc7bad8aab44fa134a03bd9c8", + "id" : "2202901", + "profile" : { + "bust" : "80", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "バレンタイン", + "alias_name_display" : "バレンタイン", + "event" : [ { + "event_id" : 103, + "event_name" : "バレンタインパーティー" + } ], + "hash" : "80ebaaa423e960469332d32354761c8e", + "id" : "2302902", + "profile" : { + "bust" : "80", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "制服コレクション", + "alias_name_display" : "制服コレクション", + "hash" : "aff484871dd61658b8a67676988a0879", + "id" : "2203501", + "profile" : { + "bust" : "80", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "制服コレクション", + "alias_name_display" : "制服コレクション", + "hash" : "be5b1389c424bdcee5c5267f8f182ef3", + "id" : "2303502", + "profile" : { + "bust" : "80", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ロッキングセッション", + "alias_name_display" : "ロッキングセッション", + "event" : [ { + "event_id" : 601, + "event_name" : "アイドルセッション" + } ], + "hash" : "5c05456fa1975ed8ca50f82258df277d", + "id" : "2209301", + "profile" : { + "bust" : "80", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ロッキングセッション", + "alias_name_display" : "ロッキングセッション", + "event" : [ { + "event_id" : 601, + "event_name" : "アイドルセッション" + } ], + "hash" : "1e607f6df2113c582c0037bf2781bd77", + "id" : "2309302", + "profile" : { + "bust" : "80", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ワーキング・レスキュー", + "alias_name_display" : "ワーキング・レスキュー", + "hash" : "954eb62b4f0c88fb462862c417243571", + "id" : "2225301", + "profile" : { + "bust" : "80", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ワーキング・レスキュー", + "alias_name_display" : "ワーキング・レスキュー", + "hash" : "09a091936b403ea2cc9bd3922d47b873", + "id" : "2325302", + "profile" : { + "bust" : "80", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ロッキングフィーバー", + "alias_name_display" : "ロッキングフィーバー", + "event" : [ { + "event_id" : 1706, + "event_name" : "アイドルプロデュース 北の大地と夜さりの祭" + } ], + "hash" : "6b9c3e0ec3b75301341b0071e0c25c47", + "id" : "2326802", + "profile" : { + "bust" : "80", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ロッキングフィーバー・S", + "alias_name_display" : "ロッキングフィーバー・S", + "event" : [ { + "event_id" : 1706, + "event_name" : "アイドルプロデュース 北の大地と夜さりの祭" + } ], + "hash" : "28c80c030dbf6ee57cfd4d69403c0c82", + "id" : "2326902", + "profile" : { + "bust" : "80", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "クリエイティブI.C", + "alias_name_display" : "クリエイティブI.C", + "hash" : "6082b9c30ed35ed98c89d9f8185ec4ec", + "id" : "2331402", + "profile" : { + "bust" : "80", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ロッキングガール", + "alias_name_display" : "ロッキングガール", + "event" : [ { + "event_id" : 205, + "event_name" : "アイドルサバイバルinサマーライブ" + } ], + "hash" : "20d694b33aff2463098ec53b681c89f8", + "id" : "2402501", + "profile" : { + "bust" : "80", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ロッキングガール", + "alias_name_display" : "ロッキングガール", + "event" : [ { + "event_id" : 205, + "event_name" : "アイドルサバイバルinサマーライブ" + } ], + "hash" : "b2fac50d2d01e350c0555f61bc83a816", + "id" : "2502502", + "profile" : { + "bust" : "80", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "新春ロッカー", + "alias_name_display" : "新春ロッカー", + "hash" : "48fbeeba8cbf12dba8d2a2b9e46740ff", + "id" : "2404801", + "profile" : { + "bust" : "80", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "新春ロッカー", + "alias_name_display" : "新春ロッカー", + "hash" : "52279101de31c161d3e328d236b97111", + "id" : "2504802", + "profile" : { + "bust" : "80", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "6c4bcbefec8f70fc06a7825764240138", + "id" : "2405001", + "profile" : { + "bust" : "80", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "b664b9644edb5bb8c0ffb347035c5da3", + "id" : "2505002", + "profile" : { + "bust" : "80", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "エイトビートロッカー", + "alias_name_display" : "エイトビートロッカー", + "event" : [ { + "event_id" : 601, + "event_name" : "アイドルセッション" + } ], + "hash" : "215f8cec62b2aec84c7de6b82196e490", + "id" : "2406201", + "profile" : { + "bust" : "80", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "エイトビートロッカー", + "alias_name_display" : "エイトビートロッカー", + "event" : [ { + "event_id" : 601, + "event_name" : "アイドルセッション" + } ], + "hash" : "cfffdf39e7d42112b6a1c67c066464e9", + "id" : "2506202", + "profile" : { + "bust" : "80", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "シンデレラドリーム", + "alias_name_display" : "シンデレラドリーム", + "hash" : "b82cc04f383762ad8b17178c4541b612", + "id" : "2409101", + "profile" : { + "bust" : "80", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "シンデレラドリーム", + "alias_name_display" : "シンデレラドリーム", + "hash" : "fb8d932128418fe65603b3a401df31ec", + "id" : "2509102", + "profile" : { + "bust" : "80", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "フォー・ピース", + "alias_name_display" : "フォー・ピース", + "event" : [ { + "event_id" : 1202, + "event_name" : "目指せロックスター アイドルチャレンジ" + } ], + "hash" : "dd6344a8baf0947d7d8cce141122c052", + "id" : "2416201", + "profile" : { + "bust" : "80", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "フォー・ピース", + "alias_name_display" : "フォー・ピース", + "event" : [ { + "event_id" : 1202, + "event_name" : "目指せロックスター アイドルチャレンジ" + } ], + "hash" : "886f0d64d079d506d97861ff69384628", + "id" : "2516202", + "profile" : { + "bust" : "80", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "パーティーロックアンセム", + "alias_name_display" : "パーティーロックアンセム", + "hash" : "bf5998ac8491ce18e8d88fcd61237dc1", + "id" : "2419601", + "profile" : { + "bust" : "80", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "パーティーロックアンセム", + "alias_name_display" : "パーティーロックアンセム", + "hash" : "c7d9ebf06688e4ea6d383039efe538c1", + "id" : "2519602", + "profile" : { + "bust" : "80", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ブルーサンシャインサマー", + "alias_name_display" : "ブルーサンシャインサマー", + "hash" : "02395469aae2e69c4de945a9b169f4a6", + "id" : "2425701", + "profile" : { + "bust" : "80", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ブルーサンシャインサマー", + "alias_name_display" : "ブルーサンシャインサマー", + "hash" : "39aed32c6cbcf6adfe89bf505112b35a", + "id" : "2525702", + "profile" : { + "bust" : "80", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "アスタリスク", + "alias_name_display" : "アスタリスク", + "hash" : "273b1c41db9fcbaefa272d53a6d85400", + "id" : "2526302", + "profile" : { + "bust" : "80", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "オールナイトフィーバー", + "alias_name_display" : "オールナイトフィーバー", + "event" : [ { + "event_id" : 1706, + "event_name" : "アイドルプロデュース 北の大地と夜さりの祭" + } ], + "hash" : "1a0c01326720c0d7ef57912bb86d8578", + "id" : "2433001", + "profile" : { + "bust" : "80", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "オールナイトフィーバー", + "alias_name_display" : "オールナイトフィーバー", + "event" : [ { + "event_id" : 1706, + "event_name" : "アイドルプロデュース 北の大地と夜さりの祭" + } ], + "hash" : "76d21a0867948b21a7f1bf26aee05b5b", + "id" : "2533002", + "profile" : { + "bust" : "80", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "バイオレットディシジョン", + "alias_name_display" : "バイオレットディシジョン", + "event" : [ { + "event_id" : 1215, + "event_name" : "ふたりでアイドルチャレンジ 目指せクールなミュージックビデオ" + } ], + "hash" : "ce6cc64940b1610edfdd5e8486bd0de2", + "id" : "2438801", + "profile" : { + "bust" : "80", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "バイオレットディシジョン", + "alias_name_display" : "バイオレットディシジョン", + "event" : [ { + "event_id" : 1215, + "event_name" : "ふたりでアイドルチャレンジ 目指せクールなミュージックビデオ" + } ], + "hash" : "4a688e97246cf40a0e8850db9199e694", + "id" : "2538802", + "profile" : { + "bust" : "80", + "height" : "152", + "hip" : "81", + "waist" : "55", + "weight" : "41" + } + } ], + "idol_id" : 78, + "idol_name" : "多田李衣菜", + "idol_name_display" : "多田李衣菜", + "units" : [ { + "id" : "70", + "name" : "*(Asterisk)" + }, { + "id" : "81", + "name" : "Rock the Beat" + }, { + "id" : "107", + "name" : "ロッキングガール" + }, { + "id" : "168", + "name" : "*(Asterisk) with なつなな" + }, { + "id" : "169", + "name" : "FOUR PIECE" + }, { + "id" : "192", + "name" : "Masque:Rade" + }, { + "id" : "197", + "name" : "アズール・ムジカ" + }, { + "id" : "213", + "name" : "CINDERELLA PROJECT" + } ] +}, { + "aliases" : [ { + "hash" : "abc8481a5c280fa3b9f0e214880ee10d", + "id" : "2001301", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "hash" : "1109985f3ac6a0ab92adf1c3136a69af", + "id" : "2101302", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "お花見", + "alias_name_display" : "お花見", + "event" : [ { + "event_id" : 104, + "event_name" : "桜舞う花見祭り" + } ], + "hash" : "9b24f0f25fd3f4e45306de3a07a50abc", + "id" : "2203301", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "お花見", + "alias_name_display" : "お花見", + "event" : [ { + "event_id" : 104, + "event_name" : "桜舞う花見祭り" + } ], + "hash" : "998aefcaf91a4c9b6d1cfb5dff235102", + "id" : "2303302", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "マーメイドパラダイス", + "alias_name_display" : "マーメイドパラダイス", + "hash" : "431266547e2d69e6b788192f9c9dec3f", + "id" : "2205101", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "マーメイドパラダイス", + "alias_name_display" : "マーメイドパラダイス", + "hash" : "b6eaf7aa76eea29848924dc21390f04b", + "id" : "2305102", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "アップトゥデイト", + "alias_name_display" : "アップトゥデイト", + "hash" : "ace39a60c5f5dea3c2c5a29eece7a98e", + "id" : "2218001", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "アップトゥデイト", + "alias_name_display" : "アップトゥデイト", + "hash" : "726fa7ad55bf434211137953c02e577d", + "id" : "2318002", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ダンシングガール", + "alias_name_display" : "ダンシングガール", + "event" : [ { + "event_id" : 1706, + "event_name" : "アイドルプロデュース 北の大地と夜さりの祭" + } ], + "hash" : "c2f252167530abf530d24e86c76f3d8e", + "id" : "2227001", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ダンシングガール", + "alias_name_display" : "ダンシングガール", + "event" : [ { + "event_id" : 1706, + "event_name" : "アイドルプロデュース 北の大地と夜さりの祭" + } ], + "hash" : "e6541e39874ed3fbf45ca0352f7bb63b", + "id" : "2327002", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ダンシングガール・S", + "alias_name_display" : "ダンシングガール・S", + "event" : [ { + "event_id" : 1706, + "event_name" : "アイドルプロデュース 北の大地と夜さりの祭" + } ], + "hash" : "4d2e522dfd47d84d940d49783c020d74", + "id" : "2227101", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ダンシングガール・S", + "alias_name_display" : "ダンシングガール・S", + "event" : [ { + "event_id" : 1706, + "event_name" : "アイドルプロデュース 北の大地と夜さりの祭" + } ], + "hash" : "9ed53b79186a805737dd6cb970269ce9", + "id" : "2327102", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ハートビートUSA", + "alias_name_display" : "ハートビートUSA", + "event" : [ { + "event_id" : 501, + "event_name" : "アイドルLIVEツアーinUSA" + } ], + "hash" : "51c8925b6e5c956b98b83eb20d46040d", + "id" : "2403901", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ハートビートUSA", + "alias_name_display" : "ハートビートUSA", + "event" : [ { + "event_id" : 501, + "event_name" : "アイドルLIVEツアーinUSA" + } ], + "hash" : "039e4d40a61739c0ea9eee219358547d", + "id" : "2503902", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "サンライトマリナー", + "alias_name_display" : "サンライトマリナー", + "hash" : "a91333acf3e8f62c5c089cb9f80cae53", + "id" : "2408101", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "サンライトマリナー", + "alias_name_display" : "サンライトマリナー", + "hash" : "92cdfe2c392257dfb9812d16954b02cc", + "id" : "2508102", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "魅惑のバニー", + "alias_name_display" : "魅惑のバニー", + "hash" : "32b0b845e8021a8d37704bbd14eb038c", + "id" : "2412201", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "魅惑のバニー", + "alias_name_display" : "魅惑のバニー", + "hash" : "457e56799338c978c0da981e40f8ad01", + "id" : "2512202", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ワンデイマイウェイ", + "alias_name_display" : "ワンデイマイウェイ", + "event" : [ { + "event_id" : 1501, + "event_name" : "チーム対抗トークバトルショー" + } ], + "hash" : "1e18fbe74cb8c0111918b5000b2ae9c7", + "id" : "2423401", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ワンデイマイウェイ", + "alias_name_display" : "ワンデイマイウェイ", + "event" : [ { + "event_id" : 1501, + "event_name" : "チーム対抗トークバトルショー" + } ], + "hash" : "65566f326cb457b6b0269ce58299d80f", + "id" : "2523402", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "情熱のゆくえ", + "alias_name_display" : "情熱のゆくえ", + "event" : [ { + "event_id" : "024", + "event_name" : "第24回プロダクションマッチフェスティバル" + } ], + "hash" : "388059213e4526e3198f513dea759229", + "id" : "2427601", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "情熱のゆくえ", + "alias_name_display" : "情熱のゆくえ", + "event" : [ { + "event_id" : "024", + "event_name" : "第24回プロダクションマッチフェスティバル" + } ], + "hash" : "a6b738ae3dad7422c7b4d0c1681777a8", + "id" : "2527602", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ライズバイビギン", + "alias_name_display" : "ライズバイビギン", + "hash" : "c14d72f459f7e1236907cfca8ab14e34", + "id" : "2438101", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ライズバイビギン", + "alias_name_display" : "ライズバイビギン", + "hash" : "ba06248f504e77b5b221773f218ea8a2", + "id" : "2538102", + "profile" : { + "bust" : "82", + "height" : "155", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + } ], + "idol_id" : 79, + "idol_name" : "水木聖來", + "idol_name_display" : "水木聖來", + "units" : [ { + "id" : "29", + "name" : "セーラーマリナー" + }, { + "id" : "110", + "name" : "アップトゥデイト" + }, { + "id" : "111", + "name" : "アンチェイン・シグナル" + }, { + "id" : "182", + "name" : "マーメイドパラダイス" + } ] +}, { + "aliases" : [ { + "hash" : "f0c2444b0d413beed830240f57990e26", + "id" : "2001401", + "profile" : { + "bust" : "73", + "height" : "139", + "hip" : "73", + "waist" : "49", + "weight" : "33" + } + }, { + "hash" : "05cd6e3d8c261274848e8f1863fb0cff", + "id" : "2101402", + "profile" : { + "bust" : "73", + "height" : "139", + "hip" : "73", + "waist" : "49", + "weight" : "33" + } + }, { + "alias_name" : "バレンタイン", + "alias_name_display" : "バレンタイン", + "event" : [ { + "event_id" : 103, + "event_name" : "バレンタインパーティー" + } ], + "hash" : "0f019f7dd04a1b63a1e3825c28a11123", + "id" : "2001801", + "profile" : { + "bust" : "73", + "height" : "139", + "hip" : "73", + "waist" : "49", + "weight" : "33" + } + }, { + "alias_name" : "バレンタイン", + "alias_name_display" : "バレンタイン", + "event" : [ { + "event_id" : 103, + "event_name" : "バレンタインパーティー" + } ], + "hash" : "8abda9b19f8a14835bbc821b2507e8ee", + "id" : "2101802", + "profile" : { + "bust" : "73", + "height" : "139", + "hip" : "73", + "waist" : "49", + "weight" : "33" + } + }, { + "alias_name" : "デビリッシュゴシック", + "alias_name_display" : "デビリッシュゴシック", + "hash" : "044f113cdcc7732faf97b6fb1df1d96a", + "id" : "2209701", + "profile" : { + "bust" : "73", + "height" : "139", + "hip" : "73", + "waist" : "49", + "weight" : "33" + } + }, { + "alias_name" : "デビリッシュゴシック", + "alias_name_display" : "デビリッシュゴシック", + "hash" : "a33955d9b6f7d22ebba0cf1073c079a7", + "id" : "2309702", + "profile" : { + "bust" : "73", + "height" : "139", + "hip" : "73", + "waist" : "49", + "weight" : "33" + } + }, { + "alias_name" : "スタディ&ステディ", + "alias_name_display" : "スタディ&ステディ", + "event" : [ { + "event_id" : 706, + "event_name" : "第6回ドリームLIVEフェスティバル" + } ], + "hash" : "936c37c079b0126b271f83c7fedef864", + "id" : "2215001", + "profile" : { + "bust" : "73", + "height" : "139", + "hip" : "73", + "waist" : "49", + "weight" : "33" + } + }, { + "alias_name" : "スタディ&ステディ", + "alias_name_display" : "スタディ&ステディ", + "event" : [ { + "event_id" : 706, + "event_name" : "第6回ドリームLIVEフェスティバル" + } ], + "hash" : "1abbc5eac07f45dc193afebe5cad86ff", + "id" : "2315002", + "profile" : { + "bust" : "73", + "height" : "139", + "hip" : "73", + "waist" : "49", + "weight" : "33" + } + }, { + "alias_name" : "ウェディングI.C", + "alias_name_display" : "ウェディングI.C", + "event" : [ { + "event_id" : 1206, + "event_name" : "目指せウェディングモデル アイドルチャレンジ" + } ], + "hash" : "2554c92dc0e9efd5156764e9481a6cdc", + "id" : "2321502", + "profile" : { + "bust" : "73", + "height" : "139", + "hip" : "73", + "waist" : "49", + "weight" : "33" + } + }, { + "alias_name" : "クリスマスナイト", + "alias_name_display" : "クリスマスナイト", + "hash" : "3d0d69d62b66f7126564592ca5b4c7ad", + "id" : "2224201", + "profile" : { + "bust" : "73", + "height" : "139", + "hip" : "73", + "waist" : "49", + "weight" : "33" + } + }, { + "alias_name" : "クリスマスナイト", + "alias_name_display" : "クリスマスナイト", + "hash" : "fa6a7fdd63649f509943e8ffc48ece69", + "id" : "2324202", + "profile" : { + "bust" : "73", + "height" : "139", + "hip" : "73", + "waist" : "49", + "weight" : "33" + } + }, { + "alias_name" : "ガーリードール", + "alias_name_display" : "ガーリードール", + "hash" : "daac0bd09193284b6e3c1384ad8d6811", + "id" : "2227901", + "profile" : { + "bust" : "73", + "height" : "139", + "hip" : "73", + "waist" : "49", + "weight" : "33" + } + }, { + "alias_name" : "ガーリードール", + "alias_name_display" : "ガーリードール", + "hash" : "32ccc1fd6da96b70e447ea3f2a2186a2", + "id" : "2327902", + "profile" : { + "bust" : "73", + "height" : "139", + "hip" : "73", + "waist" : "49", + "weight" : "33" + } + }, { + "alias_name" : "魔法のスマイル", + "alias_name_display" : "魔法のスマイル", + "event" : [ { + "event_id" : 203, + "event_name" : "アイドルサバイバルinテーマパーク" + } ], + "hash" : "7213ea3b2b521bcde53e7146de663446", + "id" : "2401701", + "profile" : { + "bust" : "73", + "height" : "139", + "hip" : "73", + "waist" : "49", + "weight" : "33" + } + }, { + "alias_name" : "魔法のスマイル", + "alias_name_display" : "魔法のスマイル", + "event" : [ { + "event_id" : 203, + "event_name" : "アイドルサバイバルinテーマパーク" + } ], + "hash" : "ab92fbb87150467830f12b1c376302d2", + "id" : "2501702", + "profile" : { + "bust" : "73", + "height" : "139", + "hip" : "73", + "waist" : "49", + "weight" : "33" + } + }, { + "alias_name" : "色づき紅葉", + "alias_name_display" : "色づき紅葉", + "event" : [ { + "event_id" : 402, + "event_name" : "アイドルプロデュース京町編" + } ], + "hash" : "6f0b70d6ce4852c6e487ad3a32202838", + "id" : "2403501", + "profile" : { + "bust" : "73", + "height" : "139", + "hip" : "73", + "waist" : "49", + "weight" : "33" + } + }, { + "alias_name" : "色づき紅葉", + "alias_name_display" : "色づき紅葉", + "event" : [ { + "event_id" : 402, + "event_name" : "アイドルプロデュース京町編" + } ], + "hash" : "7bdb027ba84b1035532d31a6c81decda", + "id" : "2503502", + "profile" : { + "bust" : "73", + "height" : "139", + "hip" : "73", + "waist" : "49", + "weight" : "33" + } + }, { + "alias_name" : "マーチング☆メジャー", + "alias_name_display" : "マーチング☆メジャー", + "hash" : "d2d3857a48dae78a1e24c8c9bda2c751", + "id" : "2408901", + "profile" : { + "bust" : "73", + "height" : "139", + "hip" : "73", + "waist" : "49", + "weight" : "33" + } + }, { + "alias_name" : "マーチング☆メジャー", + "alias_name_display" : "マーチング☆メジャー", + "hash" : "fe0c2ac409bb9eb4b6a8ab5050a6bf0c", + "id" : "2508902", + "profile" : { + "bust" : "73", + "height" : "139", + "hip" : "73", + "waist" : "49", + "weight" : "33" + } + }, { + "alias_name" : "色づき紅葉・スマイル", + "alias_name_display" : "色づき紅葉・スマイル", + "event" : [ { + "event_id" : 402, + "event_name" : "アイドルプロデュース京町編" + } ], + "hash" : "7d617c6da4e598221715f638460b14b4", + "id" : "2411001", + "profile" : { + "bust" : "73", + "height" : "139", + "hip" : "73", + "waist" : "49", + "weight" : "33" + } + }, { + "alias_name" : "色づき紅葉・スマイル", + "alias_name_display" : "色づき紅葉・スマイル", + "event" : [ { + "event_id" : 402, + "event_name" : "アイドルプロデュース京町編" + } ], + "hash" : "3a2ecda51aca30ae1085bfc8d8ea49a6", + "id" : "2511002", + "profile" : { + "bust" : "73", + "height" : "139", + "hip" : "73", + "waist" : "49", + "weight" : "33" + } + }, { + "alias_name" : "チャーミングチアー", + "alias_name_display" : "チャーミングチアー", + "event" : [ { + "event_id" : 1103, + "event_name" : "第3回プロダクション対抗トークバトルショー" + } ], + "hash" : "e8572a72a031ff58788b7cc12fc981a0", + "id" : "2415401", + "profile" : { + "bust" : "73", + "height" : "139", + "hip" : "73", + "waist" : "49", + "weight" : "33" + } + }, { + "alias_name" : "チャーミングチアー", + "alias_name_display" : "チャーミングチアー", + "event" : [ { + "event_id" : 1103, + "event_name" : "第3回プロダクション対抗トークバトルショー" + } ], + "hash" : "7d8637027259261ee45c9abc302fa7d6", + "id" : "2515402", + "profile" : { + "bust" : "73", + "height" : "139", + "hip" : "73", + "waist" : "49", + "weight" : "33" + } + }, { + "alias_name" : "ちいさな冬のメモリー", + "alias_name_display" : "ちいさな冬のメモリー", + "event" : [ { + "event_id" : 1303, + "event_name" : "第3回プロダクションマッチフェスティバルS" + } ], + "hash" : "7ad729a67d4c59988bfc3776e5150a67", + "id" : "2420801", + "profile" : { + "bust" : "73", + "height" : "139", + "hip" : "73", + "waist" : "49", + "weight" : "33" + } + }, { + "alias_name" : "ちいさな冬のメモリー", + "alias_name_display" : "ちいさな冬のメモリー", + "event" : [ { + "event_id" : 1303, + "event_name" : "第3回プロダクションマッチフェスティバルS" + } ], + "hash" : "abb0c6f85275d68dea5608ae344d62ff", + "id" : "2520802", + "profile" : { + "bust" : "73", + "height" : "139", + "hip" : "73", + "waist" : "49", + "weight" : "33" + } + }, { + "alias_name" : "おしゃまな花嫁", + "alias_name_display" : "おしゃまな花嫁", + "event" : [ { + "event_id" : 1206, + "event_name" : "目指せウェディングモデル アイドルチャレンジ" + } ], + "hash" : "6072c44e2844c6a34c24e9207ee2c08a", + "id" : "2424601", + "profile" : { + "bust" : "73", + "height" : "139", + "hip" : "73", + "waist" : "49", + "weight" : "33" + } + }, { + "alias_name" : "おしゃまな花嫁", + "alias_name_display" : "おしゃまな花嫁", + "event" : [ { + "event_id" : 1206, + "event_name" : "目指せウェディングモデル アイドルチャレンジ" + } ], + "hash" : "7cdbf6e7efde979e4c28518175026446", + "id" : "2524602", + "profile" : { + "bust" : "73", + "height" : "139", + "hip" : "73", + "waist" : "49", + "weight" : "33" + } + }, { + "alias_name" : "おしゃまな花嫁・S", + "alias_name_display" : "おしゃまな花嫁・S", + "event" : [ { + "event_id" : 1206, + "event_name" : "目指せウェディングモデル アイドルチャレンジ" + } ], + "hash" : "3998b113aa219043952e20f63b5264f8", + "id" : "2424701", + "profile" : { + "bust" : "73", + "height" : "139", + "hip" : "73", + "waist" : "49", + "weight" : "33" + } + }, { + "alias_name" : "おしゃまな花嫁・S", + "alias_name_display" : "おしゃまな花嫁・S", + "event" : [ { + "event_id" : 1206, + "event_name" : "目指せウェディングモデル アイドルチャレンジ" + } ], + "hash" : "8606f7184a98a984dee5cc60cda14bb6", + "id" : "2524702", + "profile" : { + "bust" : "73", + "height" : "139", + "hip" : "73", + "waist" : "49", + "weight" : "33" + } + }, { + "alias_name" : "憧れモード", + "alias_name_display" : "憧れモード", + "event" : [ { + "event_id" : 1411, + "event_name" : "第11回ぷちデレラコレクション" + } ], + "hash" : "23b1021bbf8e0387b79db8e5a09417d1", + "id" : "2438201", + "profile" : { + "bust" : "73", + "height" : "139", + "hip" : "73", + "waist" : "49", + "weight" : "33" + } + }, { + "alias_name" : "憧れモード", + "alias_name_display" : "憧れモード", + "event" : [ { + "event_id" : 1411, + "event_name" : "第11回ぷちデレラコレクション" + } ], + "hash" : "54022827f6129503d2444697e275e075", + "id" : "2538202", + "profile" : { + "bust" : "73", + "height" : "139", + "hip" : "73", + "waist" : "49", + "weight" : "33" + } + } ], + "idol_id" : 80, + "idol_name" : "佐々木千枝", + "idol_name_display" : "佐々木千枝", + "units" : [ { + "id" : "157", + "name" : "デビリッシュゴシック" + }, { + "id" : "198", + "name" : "ブルーナポレオン" + }, { + "id" : "214", + "name" : "L.M.B.G" + } ] +}, { + "aliases" : [ { + "event" : [ { + "event_id" : 101, + "event_name" : "星降るクリスマス" + } ], + "hash" : "c89d54609371818e71836d519b3d404f", + "id" : "2001501", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "46" + } + }, { + "event" : [ { + "event_id" : 101, + "event_name" : "星降るクリスマス" + } ], + "hash" : "f88124b3773ba0ab60c214b9680cfad3", + "id" : "2101502", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "アニマルパーク", + "alias_name_display" : "アニマルパーク", + "event" : [ { + "event_id" : 204, + "event_name" : "アイドルサバイバルin動物園" + } ], + "hash" : "1a248c4fd99fa2c0f6e7cfd3d38cdec3", + "id" : "2204501", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "アニマルパーク", + "alias_name_display" : "アニマルパーク", + "event" : [ { + "event_id" : 204, + "event_name" : "アイドルサバイバルin動物園" + } ], + "hash" : "0dc198bc42f2bf127be11bba49ec153d", + "id" : "2304502", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "クリスマスパーティー", + "alias_name_display" : "クリスマスパーティー", + "hash" : "708ec9cc3763b594d6601c8d51c5e8c8", + "id" : "2207201", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "クリスマスパーティー", + "alias_name_display" : "クリスマスパーティー", + "hash" : "8489c6bf198cd1add92e31214cf1ed3b", + "id" : "2307202", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "癒しの女神", + "alias_name_display" : "癒しの女神", + "event" : [ { + "event_id" : 401, + "event_name" : "新人アイドルプロデュース" + } ], + "hash" : "e36e7e2c8af815133d20fb841089649f", + "id" : "2402901", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "癒しの女神", + "alias_name_display" : "癒しの女神", + "event" : [ { + "event_id" : 401, + "event_name" : "新人アイドルプロデュース" + } ], + "hash" : "abbf9be5325779c8ee449c299d4289fb", + "id" : "2502902", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "ティアドロップ", + "alias_name_display" : "ティアドロップ", + "event" : [ { + "event_id" : 407, + "event_name" : "アイドルプロデュース 鎌倉あじさい巡り" + } ], + "hash" : "ee322ea98eab35f352e5b9c0d060a48e", + "id" : "2406901", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "ティアドロップ", + "alias_name_display" : "ティアドロップ", + "event" : [ { + "event_id" : 407, + "event_name" : "アイドルプロデュース 鎌倉あじさい巡り" + } ], + "hash" : "97fa2fe3c33deab094d5c2374b9815f0", + "id" : "2506902", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "ティアドロップスマイル", + "alias_name_display" : "ティアドロップスマイル", + "event" : [ { + "event_id" : 407, + "event_name" : "アイドルプロデュース 鎌倉あじさい巡り" + } ], + "hash" : "a2481e91c759538a71497ff12e668e6e", + "id" : "2407001", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "ティアドロップスマイル", + "alias_name_display" : "ティアドロップスマイル", + "event" : [ { + "event_id" : 407, + "event_name" : "アイドルプロデュース 鎌倉あじさい巡り" + } ], + "hash" : "d6112289cb47bc2ba05d118737624c87", + "id" : "2507002", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "エレガントアクトレス", + "alias_name_display" : "エレガントアクトレス", + "hash" : "cace0e19284699a04378eb8009fa183f", + "id" : "2411601", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "エレガントアクトレス", + "alias_name_display" : "エレガントアクトレス", + "hash" : "3f56480abbcb48a95271b953d7622d78", + "id" : "2511602", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "優美なる花嫁", + "alias_name_display" : "優美なる花嫁", + "hash" : "cdbb784799d1dba671dfc86bb7c1f793", + "id" : "2414901", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "優美なる花嫁", + "alias_name_display" : "優美なる花嫁", + "hash" : "8b2980adb5b283dc25de271784f69137", + "id" : "2514902", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "ふぁいと一発", + "alias_name_display" : "ふぁいと一発", + "event" : [ { + "event_id" : 709, + "event_name" : "第9回ドリームLIVEフェスティバル" + } ], + "hash" : "4e782e8a138d53a9cc8a6c1e0b4013b5", + "id" : "2418701", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "ふぁいと一発", + "alias_name_display" : "ふぁいと一発", + "event" : [ { + "event_id" : 709, + "event_name" : "第9回ドリームLIVEフェスティバル" + } ], + "hash" : "fac6d145b1b32c83eb6491ae2d58799e", + "id" : "2518702", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "繚乱の花人", + "alias_name_display" : "繚乱の花人", + "hash" : "e427adb35c668971f9dbd359bac19590", + "id" : "2423001", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "繚乱の花人", + "alias_name_display" : "繚乱の花人", + "hash" : "5f45af1cc6ce463f760111044680cadc", + "id" : "2523002", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "ウィンターバカンスヴィーナス", + "alias_name_display" : "ウィンターバカンスヴィーナス", + "hash" : "db306ac30fb4deb6148f4536444be5b2", + "id" : "2429401", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "ウィンターバカンスヴィーナス", + "alias_name_display" : "ウィンターバカンスヴィーナス", + "hash" : "3e94f06dddc6aebc16f6b61d1287bb86", + "id" : "2529402", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "天藍のカンツォーネ", + "alias_name_display" : "天藍のカンツォーネ", + "hash" : "80ad5921f5bf1f0e25317eb149aec5b8", + "id" : "2434501", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "天藍のカンツォーネ", + "alias_name_display" : "天藍のカンツォーネ", + "hash" : "b6ddd6316b0036bf1bf5d36c8c76a103", + "id" : "2534502", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "語らいの明眸", + "alias_name_display" : "語らいの明眸", + "event" : [ { + "event_id" : 1512, + "event_name" : "第12回チーム対抗トークバトルショー" + } ], + "hash" : "29fd6073c0fd3f5e6e6ed5c7f034d9d3", + "id" : "2439601", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "語らいの明眸", + "alias_name_display" : "語らいの明眸", + "event" : [ { + "event_id" : 1512, + "event_name" : "第12回チーム対抗トークバトルショー" + } ], + "hash" : "be6c919489145ab6fcf4735fccad0f5c", + "id" : "2539602", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "46" + } + } ], + "idol_id" : 81, + "idol_name" : "三船美優", + "idol_name_display" : "三船美優", + "units" : [ { + "id" : "22", + "name" : "シャイニー・アーリーデイズ" + }, { + "id" : "84", + "name" : "アニマルパーク" + }, { + "id" : "142", + "name" : "バレンタイン反省会" + }, { + "id" : "184", + "name" : "宵乙女" + } ] +}, { + "aliases" : [ { + "event" : [ { + "event_id" : 102, + "event_name" : "アイドルおもちつき大会" + } ], + "hash" : "35b09bc982525959986d255eba92f6bf", + "id" : "2001601", + "profile" : { + "bust" : "78", + "height" : "169", + "hip" : "80", + "waist" : "57", + "weight" : "48" + } + }, { + "event" : [ { + "event_id" : 102, + "event_name" : "アイドルおもちつき大会" + } ], + "hash" : "6b061a866178e79570981b8a9bf5544d", + "id" : "2101602", + "profile" : { + "bust" : "78", + "height" : "169", + "hip" : "80", + "waist" : "57", + "weight" : "48" + } + }, { + "alias_name" : "新たな一面", + "alias_name_display" : "新たな一面", + "hash" : "24e21295c6dca652c107bad42d161e3c", + "id" : "2208301", + "profile" : { + "bust" : "78", + "height" : "169", + "hip" : "80", + "waist" : "57", + "weight" : "48" + } + }, { + "alias_name" : "新たな一面", + "alias_name_display" : "新たな一面", + "hash" : "1582d357b84644b66bb3d4db8c88125a", + "id" : "2308302", + "profile" : { + "bust" : "78", + "height" : "169", + "hip" : "80", + "waist" : "57", + "weight" : "48" + } + }, { + "alias_name" : "アダルティアニマル", + "alias_name_display" : "アダルティアニマル", + "hash" : "bae6764236edeb14d146c5ba72311f5e", + "id" : "2219901", + "profile" : { + "bust" : "78", + "height" : "169", + "hip" : "80", + "waist" : "57", + "weight" : "48" + } + }, { + "alias_name" : "アダルティアニマル", + "alias_name_display" : "アダルティアニマル", + "hash" : "41a29dd0318bbc19cde60b68865f0987", + "id" : "2319902", + "profile" : { + "bust" : "78", + "height" : "169", + "hip" : "80", + "waist" : "57", + "weight" : "48" + } + }, { + "alias_name" : "ロワイヤルスタイルND", + "alias_name_display" : "ロワイヤルスタイルND", + "event" : [ { + "event_id" : 813, + "event_name" : "第13回アイドルLIVEロワイヤル" + } ], + "hash" : "8b2e579310bd133d0f34f876918ef36f", + "id" : "2321902", + "profile" : { + "bust" : "78", + "height" : "169", + "hip" : "80", + "waist" : "57", + "weight" : "48" + } + }, { + "alias_name" : "ゴーフォーヴィクトリー", + "alias_name_display" : "ゴーフォーヴィクトリー", + "hash" : "2770f9e3f17554d24e74423749631811", + "id" : "2231001", + "profile" : { + "bust" : "78", + "height" : "169", + "hip" : "80", + "waist" : "57", + "weight" : "48" + } + }, { + "alias_name" : "ゴーフォーヴィクトリー", + "alias_name_display" : "ゴーフォーヴィクトリー", + "hash" : "4d9a759a02e8a414f311b3430938d69c", + "id" : "2331002", + "profile" : { + "bust" : "78", + "height" : "169", + "hip" : "80", + "waist" : "57", + "weight" : "48" + } + }, { + "alias_name" : "一輪の花", + "alias_name_display" : "一輪の花", + "event" : [ { + "event_id" : 213, + "event_name" : "アイドルサバイバルinフラワーガーデン" + } ], + "hash" : "5c23e5797171e8313c89225c1040289d", + "id" : "2413901", + "profile" : { + "bust" : "78", + "height" : "169", + "hip" : "80", + "waist" : "57", + "weight" : "48" + } + }, { + "alias_name" : "一輪の花", + "alias_name_display" : "一輪の花", + "event" : [ { + "event_id" : 213, + "event_name" : "アイドルサバイバルinフラワーガーデン" + } ], + "hash" : "108e6a615a49e2b18ba7c1ba3ddfb383", + "id" : "2513902", + "profile" : { + "bust" : "78", + "height" : "169", + "hip" : "80", + "waist" : "57", + "weight" : "48" + } + }, { + "alias_name" : "エターナルホープ", + "alias_name_display" : "エターナルホープ", + "event" : [ { + "event_id" : "026", + "event_name" : "第26回プロダクションマッチフェスティバル" + } ], + "hash" : "72c7f8f3977631a376f9335318ffd01e", + "id" : "2430901", + "profile" : { + "bust" : "78", + "height" : "169", + "hip" : "80", + "waist" : "57", + "weight" : "48" + } + }, { + "alias_name" : "エターナルホープ", + "alias_name_display" : "エターナルホープ", + "event" : [ { + "event_id" : "026", + "event_name" : "第26回プロダクションマッチフェスティバル" + } ], + "hash" : "2fc8f01b15ea20a9da1300e11b02650e", + "id" : "2530902", + "profile" : { + "bust" : "78", + "height" : "169", + "hip" : "80", + "waist" : "57", + "weight" : "48" + } + }, { + "alias_name" : "ビリービングチアー", + "alias_name_display" : "ビリービングチアー", + "event" : [ { + "event_id" : 1508, + "event_name" : "チーム対抗トークバトルショー in SUMMER" + } ], + "hash" : "e3329e174d1a982ea1caa591aad94568", + "id" : "2434301", + "profile" : { + "bust" : "78", + "height" : "169", + "hip" : "80", + "waist" : "57", + "weight" : "48" + } + }, { + "alias_name" : "ビリービングチアー", + "alias_name_display" : "ビリービングチアー", + "event" : [ { + "event_id" : 1508, + "event_name" : "チーム対抗トークバトルショー in SUMMER" + } ], + "hash" : "8c428918c3def67003cdb73be7eb1b85", + "id" : "2534302", + "profile" : { + "bust" : "78", + "height" : "169", + "hip" : "80", + "waist" : "57", + "weight" : "48" + } + } ], + "idol_id" : 82, + "idol_name" : "服部瞳子", + "idol_name_display" : "服部瞳子", + "units" : [ { + "id" : "142", + "name" : "バレンタイン反省会" + }, { + "id" : "210", + "name" : "ロワイヤルスタイルND" + } ] +}, { + "aliases" : [ { + "hash" : "046cd353c0361020d544e2946f024908", + "id" : "2001701", + "profile" : { + "bust" : "88", + "height" : "172", + "hip" : "89", + "waist" : "60", + "weight" : "50" + } + }, { + "hash" : "e020758ea7075bb1602c7350823566c0", + "id" : "2101702", + "profile" : { + "bust" : "88", + "height" : "172", + "hip" : "89", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "ハロウィンヴァンパイア", + "alias_name_display" : "ハロウィンヴァンパイア", + "event" : [ { + "event_id" : 207, + "event_name" : "アイドルサバイバル ハロウィン編" + } ], + "hash" : "008d9393fd573899800cc63d17cd3881", + "id" : "2206501", + "profile" : { + "bust" : "88", + "height" : "172", + "hip" : "89", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "ハロウィンヴァンパイア", + "alias_name_display" : "ハロウィンヴァンパイア", + "event" : [ { + "event_id" : 207, + "event_name" : "アイドルサバイバル ハロウィン編" + } ], + "hash" : "fadf4c0567cbc33bd14012d985da6770", + "id" : "2306502", + "profile" : { + "bust" : "88", + "height" : "172", + "hip" : "89", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "メタリックレディウルフ", + "alias_name_display" : "メタリックレディウルフ", + "hash" : "6bde4d4ab925d40189957d22816238bc", + "id" : "2213301", + "profile" : { + "bust" : "88", + "height" : "172", + "hip" : "89", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "メタリックレディウルフ", + "alias_name_display" : "メタリックレディウルフ", + "hash" : "79b8ba4a1305641121f85c630a187072", + "id" : "2313302", + "profile" : { + "bust" : "88", + "height" : "172", + "hip" : "89", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "スクールガール", + "alias_name_display" : "スクールガール", + "hash" : "de63eaf145ae085f3d2ab0ddc6dc00a1", + "id" : "2218201", + "profile" : { + "bust" : "88", + "height" : "172", + "hip" : "89", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "スクールガール", + "alias_name_display" : "スクールガール", + "hash" : "0581485c6cb33372d334e567ebc58c2e", + "id" : "2318202", + "profile" : { + "bust" : "88", + "height" : "172", + "hip" : "89", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "T.B.チアーズ", + "alias_name_display" : "T.B.チアーズ", + "event" : [ { + "event_id" : 1503, + "event_name" : "チーム対抗 夏だ!プールだ!トークバトルショー" + } ], + "hash" : "1c4c8f44d4d2eb0d037645f495fd6c3d", + "id" : "2222601", + "profile" : { + "bust" : "88", + "height" : "172", + "hip" : "89", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "T.B.チアーズ", + "alias_name_display" : "T.B.チアーズ", + "event" : [ { + "event_id" : 1503, + "event_name" : "チーム対抗 夏だ!プールだ!トークバトルショー" + } ], + "hash" : "e2e0041e12c921fbd33ca51389ec3232", + "id" : "2322602", + "profile" : { + "bust" : "88", + "height" : "172", + "hip" : "89", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "サンタI.C", + "alias_name_display" : "サンタI.C", + "event" : [ { + "event_id" : 1208, + "event_name" : "目指せサンタクロース アイドルチャレンジ" + } ], + "hash" : "e5834f442f8c686a85b70b8cbcd13e7e", + "id" : "2324302", + "profile" : { + "bust" : "88", + "height" : "172", + "hip" : "89", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "クライムレディ", + "alias_name_display" : "クライムレディ", + "event" : [ { + "event_id" : 720, + "event_name" : "第20回ドリームLIVEフェスティバル" + } ], + "hash" : "6e339e821d7c05c10d8bde8f6657c7e0", + "id" : "2225901", + "profile" : { + "bust" : "88", + "height" : "172", + "hip" : "89", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "クライムレディ", + "alias_name_display" : "クライムレディ", + "event" : [ { + "event_id" : 720, + "event_name" : "第20回ドリームLIVEフェスティバル" + } ], + "hash" : "cba13f10079f879dc0fe7fb85aec759c", + "id" : "2325902", + "profile" : { + "bust" : "88", + "height" : "172", + "hip" : "89", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "湯けむり紀行", + "alias_name_display" : "湯けむり紀行", + "hash" : "7f23e7d8da712ed26b343f3a1205300f", + "id" : "2229201", + "profile" : { + "bust" : "88", + "height" : "172", + "hip" : "89", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "湯けむり紀行", + "alias_name_display" : "湯けむり紀行", + "hash" : "737009be0883399fdd76357c6cde4844", + "id" : "2329202", + "profile" : { + "bust" : "88", + "height" : "172", + "hip" : "89", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "ビーチクイーン", + "alias_name_display" : "ビーチクイーン", + "event" : [ { + "event_id" : 506, + "event_name" : "アイドルLIVEツアーinハワイ" + } ], + "hash" : "f2a0900bb8db3d317c6177c8b7615909", + "id" : "2408201", + "profile" : { + "bust" : "88", + "height" : "172", + "hip" : "89", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "ビーチクイーン", + "alias_name_display" : "ビーチクイーン", + "event" : [ { + "event_id" : 506, + "event_name" : "アイドルLIVEツアーinハワイ" + } ], + "hash" : "af080414985fcaca07952697c3fdc545", + "id" : "2508202", + "profile" : { + "bust" : "88", + "height" : "172", + "hip" : "89", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "鬼に金棒", + "alias_name_display" : "鬼に金棒", + "event" : [ { + "event_id" : 711, + "event_name" : "福は内DEドリームLIVEフェスティバル" + } ], + "hash" : "e084ffca6cc29cfc0d1e0b2e076bb8a6", + "id" : "2421101", + "profile" : { + "bust" : "88", + "height" : "172", + "hip" : "89", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "鬼に金棒", + "alias_name_display" : "鬼に金棒", + "event" : [ { + "event_id" : 711, + "event_name" : "福は内DEドリームLIVEフェスティバル" + } ], + "hash" : "83e6f15acc7e6807583c92672c4510d4", + "id" : "2521102", + "profile" : { + "bust" : "88", + "height" : "172", + "hip" : "89", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "迫真のクリスマス", + "alias_name_display" : "迫真のクリスマス", + "event" : [ { + "event_id" : 1208, + "event_name" : "目指せサンタクロース アイドルチャレンジ" + } ], + "hash" : "3d81aebd94a339f3bbbd89c7c943abd7", + "id" : "2429501", + "profile" : { + "bust" : "88", + "height" : "172", + "hip" : "89", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "迫真のクリスマス", + "alias_name_display" : "迫真のクリスマス", + "event" : [ { + "event_id" : 1208, + "event_name" : "目指せサンタクロース アイドルチャレンジ" + } ], + "hash" : "2b867eb7af72b67dd19a753a7a9c4ed3", + "id" : "2529502", + "profile" : { + "bust" : "88", + "height" : "172", + "hip" : "89", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "迫真のクリスマス・S", + "alias_name_display" : "迫真のクリスマス・S", + "event" : [ { + "event_id" : 1208, + "event_name" : "目指せサンタクロース アイドルチャレンジ" + } ], + "hash" : "894e65f26343e9084f927cc4dbfaaaf7", + "id" : "2429601", + "profile" : { + "bust" : "88", + "height" : "172", + "hip" : "89", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "迫真のクリスマス・S", + "alias_name_display" : "迫真のクリスマス・S", + "event" : [ { + "event_id" : 1208, + "event_name" : "目指せサンタクロース アイドルチャレンジ" + } ], + "hash" : "d96b8fa22a51830f67d197909f1c7504", + "id" : "2529602", + "profile" : { + "bust" : "88", + "height" : "172", + "hip" : "89", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "ワイルドドライブ", + "alias_name_display" : "ワイルドドライブ", + "hash" : "31fad952a03ad277fa0e3d059b759afb", + "id" : "2440201", + "profile" : { + "bust" : "88", + "height" : "172", + "hip" : "89", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "ワイルドドライブ", + "alias_name_display" : "ワイルドドライブ", + "hash" : "a53f598eea9637e74b08e76c96d18d4b", + "id" : "2540202", + "profile" : { + "bust" : "88", + "height" : "172", + "hip" : "89", + "waist" : "60", + "weight" : "50" + } + } ], + "idol_id" : 83, + "idol_name" : "木場真奈美", + "idol_name_display" : "木場真奈美", + "units" : [ { + "id" : "67", + "name" : "レディビースト" + }, { + "id" : "101", + "name" : "ハロウィンヴァンパイア" + }, { + "id" : "111", + "name" : "アンチェイン・シグナル" + }, { + "id" : "117", + "name" : "ハードメテオライツ" + } ] +}, { + "aliases" : [ { + "hash" : "50f53b8bae68c432456604aa421dfce9", + "id" : "2001901", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "hash" : "d7fec18f59ddcee02b344ea8f116fa8e", + "id" : "2101902", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "浴衣祭り", + "alias_name_display" : "浴衣祭り", + "hash" : "6b322b16eccd479ca9f4da4ca08398d7", + "id" : "2204801", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "浴衣祭り", + "alias_name_display" : "浴衣祭り", + "hash" : "4ee7b16973889716589be41a7d7c5735", + "id" : "2304802", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ロワイヤルスタイルNP", + "alias_name_display" : "ロワイヤルスタイルNP", + "event" : [ { + "event_id" : 810, + "event_name" : "アイドルLIVEロワイヤル バレンタインSP" + } ], + "hash" : "f64ea05ba41f018d4c5fc08e4e4e0c10", + "id" : "2219701", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ロワイヤルスタイルNP", + "alias_name_display" : "ロワイヤルスタイルNP", + "event" : [ { + "event_id" : 810, + "event_name" : "アイドルLIVEロワイヤル バレンタインSP" + } ], + "hash" : "8bd293a18cfa965757d887665dc383b4", + "id" : "2319702", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "紅葉温泉", + "alias_name_display" : "紅葉温泉", + "hash" : "bf005e32b739ebbcd648280ba8050bc1", + "id" : "2223901", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "紅葉温泉", + "alias_name_display" : "紅葉温泉", + "hash" : "46db0d085f1d31bd2f46f794311f1a74", + "id" : "2323902", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "夢の使者", + "alias_name_display" : "夢の使者", + "hash" : "bee91878694ccf9ac29f98bf6b4b5a3e", + "id" : "2403601", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "夢の使者", + "alias_name_display" : "夢の使者", + "hash" : "e523d0a3f90a44554d3702b1320957c5", + "id" : "2503602", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "夜桜小町", + "alias_name_display" : "夜桜小町", + "event" : [ { + "event_id" : 406, + "event_name" : "アイドルプロデュース 春の桜祭り編" + } ], + "hash" : "879e77d88385679197491d5ed4ed7e6f", + "id" : "2405801", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "夜桜小町", + "alias_name_display" : "夜桜小町", + "event" : [ { + "event_id" : 406, + "event_name" : "アイドルプロデュース 春の桜祭り編" + } ], + "hash" : "5245f9a8bbfc8c00e913bd84078d1947", + "id" : "2505802", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "憧憬の絵姿", + "alias_name_display" : "憧憬の絵姿", + "event" : [ { + "event_id" : 703, + "event_name" : "第3回ドリームLIVEフェスティバル" + } ], + "hash" : "979595d903dfaafad36539c8b075f19a", + "id" : "2409701", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "憧憬の絵姿", + "alias_name_display" : "憧憬の絵姿", + "event" : [ { + "event_id" : 703, + "event_name" : "第3回ドリームLIVEフェスティバル" + } ], + "hash" : "3167283ee6e0766c23f79d2b0cdf6de6", + "id" : "2509702", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "九天の玄女", + "alias_name_display" : "九天の玄女", + "hash" : "ad166bff62c60b26fa74b6aa60802a77", + "id" : "2413801", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "九天の玄女", + "alias_name_display" : "九天の玄女", + "hash" : "0f422ef5edfbb203d4b3f21da7a62f54", + "id" : "2513802", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "新たな色", + "alias_name_display" : "新たな色", + "event" : [ { + "event_id" : 1302, + "event_name" : "第2回プロダクションマッチフェスティバルS" + } ], + "hash" : "4c90bd7715d2326f6029a18a181e2785", + "id" : "2418501", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "新たな色", + "alias_name_display" : "新たな色", + "event" : [ { + "event_id" : 1302, + "event_name" : "第2回プロダクションマッチフェスティバルS" + } ], + "hash" : "15cbf467a5c7933a2ec310761b11be7c", + "id" : "2518502", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "小さな息吹", + "alias_name_display" : "小さな息吹", + "hash" : "fdb92acf167d4c4fab46507c6a8ebc87", + "id" : "2425501", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "小さな息吹", + "alias_name_display" : "小さな息吹", + "hash" : "517be5a4998a30862dd638566ca6f499", + "id" : "2525502", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ホワイトジャーニー", + "alias_name_display" : "ホワイトジャーニー", + "event" : [ { + "event_id" : 1705, + "event_name" : "アイドルプロデュース きらめくオーロラ紀行" + } ], + "hash" : "67e57c34ab643e525c72ff31317bbe29", + "id" : "2431201", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ホワイトジャーニー", + "alias_name_display" : "ホワイトジャーニー", + "event" : [ { + "event_id" : 1705, + "event_name" : "アイドルプロデュース きらめくオーロラ紀行" + } ], + "hash" : "1f2016bdb7310af8adb7149ca0564a23", + "id" : "2531202", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ホワイトジャーニー・S", + "alias_name_display" : "ホワイトジャーニー・S", + "event" : [ { + "event_id" : 1705, + "event_name" : "アイドルプロデュース きらめくオーロラ紀行" + } ], + "hash" : "f76606e958186ed0c7abf674357fc6e4", + "id" : "2431301", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ホワイトジャーニー・S", + "alias_name_display" : "ホワイトジャーニー・S", + "event" : [ { + "event_id" : 1705, + "event_name" : "アイドルプロデュース きらめくオーロラ紀行" + } ], + "hash" : "017bb5285930bc6789dabf9bd1dde176", + "id" : "2531302", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "クワイエット・ズィール", + "alias_name_display" : "クワイエット・ズィール", + "hash" : "f916a26a64839b6530f579d34dbfd699", + "id" : "2436201", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "クワイエット・ズィール", + "alias_name_display" : "クワイエット・ズィール", + "hash" : "eb1d57f9b906de305439f9ab26c6cdcf", + "id" : "2536202", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + } ], + "idol_id" : 84, + "idol_name" : "藤原肇", + "idol_name_display" : "藤原肇", + "units" : [ { + "id" : "14", + "name" : "月下氷姫" + }, { + "id" : "20", + "name" : "山紫水明" + }, { + "id" : "103", + "name" : "ビビッドカラーエイジ" + }, { + "id" : "209", + "name" : "ロワイヤルスタイルNP" + } ] +}, { + "aliases" : [ { + "hash" : "2bada7af6dfab066132d050923a513eb", + "id" : "2002101", + "profile" : { + "bust" : "82", + "height" : "165", + "hip" : "85", + "waist" : "55", + "weight" : "45" + } + }, { + "hash" : "68ed242f80829cdb4072549098177b27", + "id" : "2102102", + "profile" : { + "bust" : "82", + "height" : "165", + "hip" : "85", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "サマーライブ", + "alias_name_display" : "サマーライブ", + "event" : [ { + "event_id" : 205, + "event_name" : "アイドルサバイバルinサマーライブ" + } ], + "hash" : "54b6b2bbe68eff5cc0a866562daed5a1", + "id" : "2205001", + "profile" : { + "bust" : "82", + "height" : "165", + "hip" : "85", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "サマーライブ", + "alias_name_display" : "サマーライブ", + "event" : [ { + "event_id" : 205, + "event_name" : "アイドルサバイバルinサマーライブ" + } ], + "hash" : "a580271bf1d560a89be26d09aca1b669", + "id" : "2305002", + "profile" : { + "bust" : "82", + "height" : "165", + "hip" : "85", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "ハイカラサクラ", + "alias_name_display" : "ハイカラサクラ", + "hash" : "a8ff862d393e2d5dda368de20fb13201", + "id" : "2220501", + "profile" : { + "bust" : "82", + "height" : "165", + "hip" : "85", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "ハイカラサクラ", + "alias_name_display" : "ハイカラサクラ", + "hash" : "1a1fe1f5075423ba48922da4fe12dfe2", + "id" : "2320502", + "profile" : { + "bust" : "82", + "height" : "165", + "hip" : "85", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "スクールプール", + "alias_name_display" : "スクールプール", + "hash" : "abe0e1d88e1978ae30fb4e6b60451740", + "id" : "2227401", + "profile" : { + "bust" : "82", + "height" : "165", + "hip" : "85", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "スクールプール", + "alias_name_display" : "スクールプール", + "hash" : "e9d2e494154da1e8f2df3c7fbc2bb7ce", + "id" : "2327402", + "profile" : { + "bust" : "82", + "height" : "165", + "hip" : "85", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "笑顔の女神", + "alias_name_display" : "笑顔の女神", + "event" : [ { + "event_id" : 404, + "event_name" : "新春アイドルプロデュース" + } ], + "hash" : "a0e0bb81d532da3f17e6cec67286b1f4", + "id" : "2404701", + "profile" : { + "bust" : "82", + "height" : "165", + "hip" : "85", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "笑顔の女神", + "alias_name_display" : "笑顔の女神", + "event" : [ { + "event_id" : 404, + "event_name" : "新春アイドルプロデュース" + } ], + "hash" : "db67fce1ced5a2e2946e3facbd9abe19", + "id" : "2504702", + "profile" : { + "bust" : "82", + "height" : "165", + "hip" : "85", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "制服の女神", + "alias_name_display" : "制服の女神", + "hash" : "1009f9985fad285ed98d06fcc23cea57", + "id" : "2405901", + "profile" : { + "bust" : "82", + "height" : "165", + "hip" : "85", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "制服の女神", + "alias_name_display" : "制服の女神", + "hash" : "906e36ae3310e4ca2451e0d6c4df7b42", + "id" : "2505902", + "profile" : { + "bust" : "82", + "height" : "165", + "hip" : "85", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "4273df53ba2ef652513e682bd7c7229a", + "id" : "2406701", + "profile" : { + "bust" : "82", + "height" : "165", + "hip" : "85", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "299fe393f6c7c239a989db503ba3b462", + "id" : "2506702", + "profile" : { + "bust" : "82", + "height" : "165", + "hip" : "85", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "眠れる小悪魔", + "alias_name_display" : "眠れる小悪魔", + "hash" : "f14e96d527c85980c994a8e0234afb58", + "id" : "2409801", + "profile" : { + "bust" : "82", + "height" : "165", + "hip" : "85", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "眠れる小悪魔", + "alias_name_display" : "眠れる小悪魔", + "hash" : "0982b1f6992128e2a7a6668b5f306cb7", + "id" : "2509802", + "profile" : { + "bust" : "82", + "height" : "165", + "hip" : "85", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "シンデレラドリーム", + "alias_name_display" : "シンデレラドリーム", + "hash" : "1da9783f4db2e0d170433ff25e97f064", + "id" : "2412501", + "profile" : { + "bust" : "82", + "height" : "165", + "hip" : "85", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "シンデレラドリーム", + "alias_name_display" : "シンデレラドリーム", + "hash" : "ed35c60eef3f13be50edee7dfee4523d", + "id" : "2512502", + "profile" : { + "bust" : "82", + "height" : "165", + "hip" : "85", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "レディアントヴィーナス", + "alias_name_display" : "レディアントヴィーナス", + "hash" : "33d51a091cde3faf6392a9ce3ba46102", + "id" : "2416901", + "profile" : { + "bust" : "82", + "height" : "165", + "hip" : "85", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "レディアントヴィーナス", + "alias_name_display" : "レディアントヴィーナス", + "hash" : "fe5e70f0df196ae8e84391062564ad33", + "id" : "2516902", + "profile" : { + "bust" : "82", + "height" : "165", + "hip" : "85", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "3rdアニバーサリー", + "alias_name_display" : "3rdアニバーサリー", + "event" : [ { + "event_id" : 415, + "event_name" : "アイドルプロデュース the 3rd Anniversary" + } ], + "hash" : "7d83a3bcc9cfc6da0e3f8381c0c3b585", + "id" : "2419401", + "profile" : { + "bust" : "82", + "height" : "165", + "hip" : "85", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "3rdアニバーサリー", + "alias_name_display" : "3rdアニバーサリー", + "event" : [ { + "event_id" : 415, + "event_name" : "アイドルプロデュース the 3rd Anniversary" + } ], + "hash" : "ce21537c19faa7c7b6ae4b5c8defb324", + "id" : "2519402", + "profile" : { + "bust" : "82", + "height" : "165", + "hip" : "85", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "3rdアニバーサリー・S", + "alias_name_display" : "3rdアニバーサリー・S", + "event" : [ { + "event_id" : 415, + "event_name" : "アイドルプロデュース the 3rd Anniversary" + } ], + "hash" : "5f5daadbc3fadef1cca713f6e9e05255", + "id" : "2419501", + "profile" : { + "bust" : "82", + "height" : "165", + "hip" : "85", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "3rdアニバーサリー・S", + "alias_name_display" : "3rdアニバーサリー・S", + "event" : [ { + "event_id" : 415, + "event_name" : "アイドルプロデュース the 3rd Anniversary" + } ], + "hash" : "b20006cdb511c392497e750074e6be96", + "id" : "2519502", + "profile" : { + "bust" : "82", + "height" : "165", + "hip" : "85", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "ラブライカ", + "alias_name_display" : "ラブライカ", + "hash" : "906abd014daf85c1ed5b45f4f9e19c05", + "id" : "2521902", + "profile" : { + "bust" : "82", + "height" : "165", + "hip" : "85", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "アディクティブメイド", + "alias_name_display" : "アディクティブメイド", + "hash" : "b3a0aede00bbe1146a472828895912dd", + "id" : "2426701", + "profile" : { + "bust" : "82", + "height" : "165", + "hip" : "85", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "アディクティブメイド", + "alias_name_display" : "アディクティブメイド", + "hash" : "ca97decc65659e09550943d2766e5d3e", + "id" : "2526702", + "profile" : { + "bust" : "82", + "height" : "165", + "hip" : "85", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "スイートグラティチュード", + "alias_name_display" : "スイートグラティチュード", + "hash" : "b391620fec4da6f7bef081f4823d39ab", + "id" : "2438001", + "profile" : { + "bust" : "82", + "height" : "165", + "hip" : "85", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "スイートグラティチュード", + "alias_name_display" : "スイートグラティチュード", + "hash" : "05967e0044c4828455e8547b98df1d06", + "id" : "2538002", + "profile" : { + "bust" : "82", + "height" : "165", + "hip" : "85", + "waist" : "55", + "weight" : "45" + } + } ], + "idol_id" : 85, + "idol_name" : "新田美波", + "idol_name_display" : "新田美波", + "units" : [ { + "id" : "34", + "name" : "デア・アウローラ" + }, { + "id" : "78", + "name" : "LOVE LAIKA" + }, { + "id" : "93", + "name" : "サマーライブセーラー" + }, { + "id" : "145", + "name" : "LOVE LAIKA with Rosenburg Engel" + }, { + "id" : "158", + "name" : "ハイカラサクラ" + }, { + "id" : "189", + "name" : "アインフェリア" + }, { + "id" : "197", + "name" : "アズール・ムジカ" + }, { + "id" : "213", + "name" : "CINDERELLA PROJECT" + } ] +}, { + "aliases" : [ { + "hash" : "b72a61e46933108a7e0ecbcd37bcc461", + "id" : "2002201", + "profile" : { + "bust" : "80", + "height" : "164", + "hip" : "81", + "waist" : "54", + "weight" : "47" + } + }, { + "hash" : "0a91b0a75ea811b3ea5533fe284cfb38", + "id" : "2102202", + "profile" : { + "bust" : "80", + "height" : "164", + "hip" : "81", + "waist" : "54", + "weight" : "47" + } + }, { + "alias_name" : "純真子女", + "alias_name_display" : "純真子女", + "hash" : "d5bed54544fc77c024920b06eefcae1c", + "id" : "2206101", + "profile" : { + "bust" : "80", + "height" : "164", + "hip" : "81", + "waist" : "54", + "weight" : "47" + } + }, { + "alias_name" : "純真子女", + "alias_name_display" : "純真子女", + "hash" : "69d297f1b6fb812bf26843f0d76ff50f", + "id" : "2306102", + "profile" : { + "bust" : "80", + "height" : "164", + "hip" : "81", + "waist" : "54", + "weight" : "47" + } + }, { + "alias_name" : "ビーチサイド", + "alias_name_display" : "ビーチサイド", + "hash" : "0a48ebcb12a416c18d6b1bbac33cee1c", + "id" : "2216601", + "profile" : { + "bust" : "80", + "height" : "164", + "hip" : "81", + "waist" : "54", + "weight" : "47" + } + }, { + "alias_name" : "ビーチサイド", + "alias_name_display" : "ビーチサイド", + "hash" : "b1121186a42a0d42c89ecf10be529b52", + "id" : "2316602", + "profile" : { + "bust" : "80", + "height" : "164", + "hip" : "81", + "waist" : "54", + "weight" : "47" + } + }, { + "alias_name" : "スマートスタイル", + "alias_name_display" : "スマートスタイル", + "event" : [ { + "event_id" : "023", + "event_name" : "第23回プロダクションマッチフェスティバル" + } ], + "hash" : "197ed6234c6ed8842ff1d7c5ea8aec6b", + "id" : "2323102", + "profile" : { + "bust" : "80", + "height" : "164", + "hip" : "81", + "waist" : "54", + "weight" : "47" + } + }, { + "alias_name" : "真心の射手", + "alias_name_display" : "真心の射手", + "hash" : "560834b8207166222b10eb2590a1e099", + "id" : "2404001", + "profile" : { + "bust" : "80", + "height" : "164", + "hip" : "81", + "waist" : "54", + "weight" : "47" + } + }, { + "alias_name" : "真心の射手", + "alias_name_display" : "真心の射手", + "hash" : "c19da47ce6c5ffd3c89c606af52fe802", + "id" : "2504002", + "profile" : { + "bust" : "80", + "height" : "164", + "hip" : "81", + "waist" : "54", + "weight" : "47" + } + }, { + "alias_name" : "流麗な令嬢", + "alias_name_display" : "流麗な令嬢", + "hash" : "02f4259ef8e4cfbf3ecaa1d68d99df20", + "id" : "2407901", + "profile" : { + "bust" : "80", + "height" : "164", + "hip" : "81", + "waist" : "54", + "weight" : "47" + } + }, { + "alias_name" : "流麗な令嬢", + "alias_name_display" : "流麗な令嬢", + "hash" : "9243275ee7e036423573a40b857fdac8", + "id" : "2507902", + "profile" : { + "bust" : "80", + "height" : "164", + "hip" : "81", + "waist" : "54", + "weight" : "47" + } + }, { + "alias_name" : "光彩の華", + "alias_name_display" : "光彩の華", + "hash" : "f0c170150ebc829334e052ad02f684df", + "id" : "2419101", + "profile" : { + "bust" : "80", + "height" : "164", + "hip" : "81", + "waist" : "54", + "weight" : "47" + } + }, { + "alias_name" : "光彩の華", + "alias_name_display" : "光彩の華", + "hash" : "9503529972d8ccb6ca6ea419abd1820d", + "id" : "2519102", + "profile" : { + "bust" : "80", + "height" : "164", + "hip" : "81", + "waist" : "54", + "weight" : "47" + } + }, { + "alias_name" : "グルメジャッジメント", + "alias_name_display" : "グルメジャッジメント", + "event" : [ { + "event_id" : 519, + "event_name" : "美食公演 女神に捧ぐ御馳走" + } ], + "hash" : "7a73cd330d410ac8d07b1fd19fbe2ff6", + "id" : "2423901", + "profile" : { + "bust" : "80", + "height" : "164", + "hip" : "81", + "waist" : "54", + "weight" : "47" + } + }, { + "alias_name" : "グルメジャッジメント", + "alias_name_display" : "グルメジャッジメント", + "event" : [ { + "event_id" : 519, + "event_name" : "美食公演 女神に捧ぐ御馳走" + } ], + "hash" : "e07a8e6fc6082559aeb12e34d3fa941a", + "id" : "2523902", + "profile" : { + "bust" : "80", + "height" : "164", + "hip" : "81", + "waist" : "54", + "weight" : "47" + } + }, { + "alias_name" : "ブライト・ロワイヤル", + "alias_name_display" : "ブライト・ロワイヤル", + "event" : [ { + "event_id" : 817, + "event_name" : "アイドルLIVEロワイヤル お花見SP" + } ], + "hash" : "b6e88f29f51360f5246ef97d39b3aa9b", + "id" : "2432101", + "profile" : { + "bust" : "80", + "height" : "164", + "hip" : "81", + "waist" : "54", + "weight" : "47" + } + }, { + "alias_name" : "ブライト・ロワイヤル", + "alias_name_display" : "ブライト・ロワイヤル", + "event" : [ { + "event_id" : 817, + "event_name" : "アイドルLIVEロワイヤル お花見SP" + } ], + "hash" : "64be6676bdf303ee26c8b5cf28a04ac1", + "id" : "2532102", + "profile" : { + "bust" : "80", + "height" : "164", + "hip" : "81", + "waist" : "54", + "weight" : "47" + } + }, { + "alias_name" : "宴のマジストレイト", + "alias_name_display" : "宴のマジストレイト", + "event" : [ { + "event_id" : 820, + "event_name" : "第20回アイドルLIVEロワイヤル" + } ], + "hash" : "dfaf8718bb2640e34528b866c667312e", + "id" : "2436101", + "profile" : { + "bust" : "80", + "height" : "164", + "hip" : "81", + "waist" : "54", + "weight" : "47" + } + }, { + "alias_name" : "宴のマジストレイト", + "alias_name_display" : "宴のマジストレイト", + "event" : [ { + "event_id" : 820, + "event_name" : "第20回アイドルLIVEロワイヤル" + } ], + "hash" : "cff720f0338a7ae16dc936a802809a2f", + "id" : "2536102", + "profile" : { + "bust" : "80", + "height" : "164", + "hip" : "81", + "waist" : "54", + "weight" : "47" + } + } ], + "idol_id" : 86, + "idol_name" : "水野翠", + "idol_name_display" : "水野翠", + "units" : [ { + "id" : "53", + "name" : "ブリヤント・ノワール" + }, { + "id" : "207", + "name" : "ムーランルージュ" + } ] +}, { + "aliases" : [ { + "alias_name" : "ムーンライトバニー", + "alias_name_display" : "ムーンライトバニー", + "event" : [ { + "event_id" : 107, + "event_name" : "秋夜のお月見会" + } ], + "hash" : "a93f91d99fbc2f134011e4fdf38e49bb", + "id" : "2002401", + "profile" : { + "bust" : "81", + "height" : "166", + "hip" : "83", + "waist" : "59", + "weight" : "45" + } + }, { + "alias_name" : "ムーンライトバニー", + "alias_name_display" : "ムーンライトバニー", + "event" : [ { + "event_id" : 107, + "event_name" : "秋夜のお月見会" + } ], + "hash" : "0d1b35fad868c671e2d8b58842279076", + "id" : "2102402", + "profile" : { + "bust" : "81", + "height" : "166", + "hip" : "83", + "waist" : "59", + "weight" : "45" + } + }, { + "alias_name" : "幕間のひととき", + "alias_name_display" : "幕間のひととき", + "hash" : "ce06f399bc842655c0b9ea49fc9cca4a", + "id" : "2211201", + "profile" : { + "bust" : "81", + "height" : "166", + "hip" : "83", + "waist" : "59", + "weight" : "45" + } + }, { + "alias_name" : "幕間のひととき", + "alias_name_display" : "幕間のひととき", + "hash" : "4d843f1c3131ffcda576eb50ac401e06", + "id" : "2311202", + "profile" : { + "bust" : "81", + "height" : "166", + "hip" : "83", + "waist" : "59", + "weight" : "45" + } + }, { + "alias_name" : "憩いのひととき", + "alias_name_display" : "憩いのひととき", + "event" : [ { + "event_id" : 707, + "event_name" : "第7回ドリームLIVEフェスティバル" + } ], + "hash" : "e953b61de50dd7879353f130a39e8cba", + "id" : "2216501", + "profile" : { + "bust" : "81", + "height" : "166", + "hip" : "83", + "waist" : "59", + "weight" : "45" + } + }, { + "alias_name" : "憩いのひととき", + "alias_name_display" : "憩いのひととき", + "event" : [ { + "event_id" : 707, + "event_name" : "第7回ドリームLIVEフェスティバル" + } ], + "hash" : "766958eefb94c4c0837e3ae954170467", + "id" : "2316502", + "profile" : { + "bust" : "81", + "height" : "166", + "hip" : "83", + "waist" : "59", + "weight" : "45" + } + }, { + "alias_name" : "ロコガール", + "alias_name_display" : "ロコガール", + "event" : [ { + "event_id" : 1707, + "event_name" : "アイドルプロデュース アロハ!常夏の楽園" + } ], + "hash" : "e120bef59049701c084e9bc9f3e90084", + "id" : "2228001", + "profile" : { + "bust" : "81", + "height" : "166", + "hip" : "83", + "waist" : "59", + "weight" : "45" + } + }, { + "alias_name" : "ロコガール", + "alias_name_display" : "ロコガール", + "event" : [ { + "event_id" : 1707, + "event_name" : "アイドルプロデュース アロハ!常夏の楽園" + } ], + "hash" : "50774bacbeae5d09201b91b16f98c262", + "id" : "2328002", + "profile" : { + "bust" : "81", + "height" : "166", + "hip" : "83", + "waist" : "59", + "weight" : "45" + } + }, { + "alias_name" : "オリ・ロコガール", + "alias_name_display" : "オリ・ロコガール", + "event" : [ { + "event_id" : 1707, + "event_name" : "アイドルプロデュース アロハ!常夏の楽園" + } ], + "hash" : "c477e1693bc9e6f1865117ac944cc87b", + "id" : "2228101", + "profile" : { + "bust" : "81", + "height" : "166", + "hip" : "83", + "waist" : "59", + "weight" : "45" + } + }, { + "alias_name" : "オリ・ロコガール", + "alias_name_display" : "オリ・ロコガール", + "event" : [ { + "event_id" : 1707, + "event_name" : "アイドルプロデュース アロハ!常夏の楽園" + } ], + "hash" : "fc3e8210b81af75d60a3ad891c10abfb", + "id" : "2328102", + "profile" : { + "bust" : "81", + "height" : "166", + "hip" : "83", + "waist" : "59", + "weight" : "45" + } + }, { + "alias_name" : "ロワイヤルスタイルND", + "alias_name_display" : "ロワイヤルスタイルND", + "event" : [ { + "event_id" : 822, + "event_name" : "第22回アイドルLIVEロワイヤル" + } ], + "hash" : "f862e42981eef571d6420636d5035b46", + "id" : "2231101", + "profile" : { + "bust" : "81", + "height" : "166", + "hip" : "83", + "waist" : "59", + "weight" : "45" + } + }, { + "alias_name" : "ロワイヤルスタイルND", + "alias_name_display" : "ロワイヤルスタイルND", + "event" : [ { + "event_id" : 822, + "event_name" : "第22回アイドルLIVEロワイヤル" + } ], + "hash" : "5efcadb4c0499c22d70657bc5f2e0609", + "id" : "2331102", + "profile" : { + "bust" : "81", + "height" : "166", + "hip" : "83", + "waist" : "59", + "weight" : "45" + } + }, { + "alias_name" : "博識子女", + "alias_name_display" : "博識子女", + "hash" : "23240cbaa429c06b5834dab70e2468db", + "id" : "2400401", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "83", + "waist" : "59", + "weight" : "45" + } + }, { + "alias_name" : "博識子女", + "alias_name_display" : "博識子女", + "hash" : "a99c2ef0bb60c2fb792940844c5ce231", + "id" : "2500402", + "profile" : { + "bust" : "81", + "height" : "166", + "hip" : "83", + "waist" : "59", + "weight" : "45" + } + }, { + "alias_name" : "クラシカルエレガント", + "alias_name_display" : "クラシカルエレガント", + "event" : [ { + "event_id" : "020", + "event_name" : "第20回プロダクションマッチフェスティバル" + } ], + "hash" : "4f9408e5e8319f71d87a88be473f9fc5", + "id" : "2421801", + "profile" : { + "bust" : "81", + "height" : "166", + "hip" : "83", + "waist" : "59", + "weight" : "45" + } + }, { + "alias_name" : "クラシカルエレガント", + "alias_name_display" : "クラシカルエレガント", + "event" : [ { + "event_id" : "020", + "event_name" : "第20回プロダクションマッチフェスティバル" + } ], + "hash" : "a4df63531be7d6b41ed4a895781be32a", + "id" : "2521802", + "profile" : { + "bust" : "81", + "height" : "166", + "hip" : "83", + "waist" : "59", + "weight" : "45" + } + }, { + "alias_name" : "未来の風向き", + "alias_name_display" : "未来の風向き", + "hash" : "63e8236c873d25762b04042fb1cf84e0", + "id" : "2430401", + "profile" : { + "bust" : "81", + "height" : "166", + "hip" : "83", + "waist" : "59", + "weight" : "45" + } + }, { + "alias_name" : "未来の風向き", + "alias_name_display" : "未来の風向き", + "hash" : "0fdb985e97611cb4df916563d6e7a27b", + "id" : "2530402", + "profile" : { + "bust" : "81", + "height" : "166", + "hip" : "83", + "waist" : "59", + "weight" : "45" + } + } ], + "idol_id" : 87, + "idol_name" : "古澤頼子", + "idol_name_display" : "古澤頼子", + "units" : [ { + "id" : "35", + "name" : "ディテクティブヴァーサス" + }, { + "id" : "210", + "name" : "ロワイヤルスタイルND" + } ] +}, { + "aliases" : [ { + "hash" : "4712d374c30554718ed4dcafc5edfd1c", + "id" : "2002501", + "profile" : { + "bust" : "68", + "height" : "141", + "hip" : "67", + "waist" : "52", + "weight" : "34" + } + }, { + "hash" : "e7fd238953443b47d44bc0286af52fdc", + "id" : "2102502", + "profile" : { + "bust" : "68", + "height" : "141", + "hip" : "67", + "waist" : "52", + "weight" : "34" + } + }, { + "alias_name" : "ジューンブライド", + "alias_name_display" : "ジューンブライド", + "hash" : "83367926ad9733a555d3b86da3460ecd", + "id" : "2210401", + "profile" : { + "bust" : "68", + "height" : "141", + "hip" : "67", + "waist" : "52", + "weight" : "34" + } + }, { + "alias_name" : "ジューンブライド", + "alias_name_display" : "ジューンブライド", + "hash" : "499395a4c349f7e9c6ba022ec748290e", + "id" : "2310402", + "profile" : { + "bust" : "68", + "height" : "141", + "hip" : "67", + "waist" : "52", + "weight" : "34" + } + }, { + "alias_name" : "マーチングバンド", + "alias_name_display" : "マーチングバンド", + "hash" : "929f0e7a77f38b0f931453c9fa0625e0", + "id" : "2216301", + "profile" : { + "bust" : "68", + "height" : "141", + "hip" : "67", + "waist" : "52", + "weight" : "34" + } + }, { + "alias_name" : "マーチングバンド", + "alias_name_display" : "マーチングバンド", + "hash" : "83cf1de1cf5f82a9c2619cbcf6ba9e76", + "id" : "2316302", + "profile" : { + "bust" : "68", + "height" : "141", + "hip" : "67", + "waist" : "52", + "weight" : "34" + } + }, { + "alias_name" : "小さな妖精", + "alias_name_display" : "小さな妖精", + "event" : [ { + "event_id" : "008", + "event_name" : "第8回プロダクションマッチフェスティバル" + } ], + "hash" : "75e8d17c795363782be0abbd2e7cb34d", + "id" : "2405401", + "profile" : { + "bust" : "68", + "height" : "141", + "hip" : "67", + "waist" : "52", + "weight" : "34" + } + }, { + "alias_name" : "小さな妖精", + "alias_name_display" : "小さな妖精", + "event" : [ { + "event_id" : "008", + "event_name" : "第8回プロダクションマッチフェスティバル" + } ], + "hash" : "9b68a0c0aad45fc4de9e74efb4c2d359", + "id" : "2505402", + "profile" : { + "bust" : "68", + "height" : "141", + "hip" : "67", + "waist" : "52", + "weight" : "34" + } + }, { + "alias_name" : "ストロベリーチャレンジ", + "alias_name_display" : "ストロベリーチャレンジ", + "event" : [ { + "event_id" : 409, + "event_name" : "アイドルプロデュース チャレンジクッキング イタリアン編" + } ], + "hash" : "113455b137b7d4af1dd75f60e1d937d9", + "id" : "2409201", + "profile" : { + "bust" : "68", + "height" : "141", + "hip" : "67", + "waist" : "52", + "weight" : "34" + } + }, { + "alias_name" : "ストロベリーチャレンジ", + "alias_name_display" : "ストロベリーチャレンジ", + "event" : [ { + "event_id" : 409, + "event_name" : "アイドルプロデュース チャレンジクッキング イタリアン編" + } ], + "hash" : "9cb0324f6f2e51e41510e4681c3c2dcf", + "id" : "2509202", + "profile" : { + "bust" : "68", + "height" : "141", + "hip" : "67", + "waist" : "52", + "weight" : "34" + } + }, { + "alias_name" : "ストロベリー・スマイル", + "alias_name_display" : "ストロベリー・スマイル", + "event" : [ { + "event_id" : 409, + "event_name" : "アイドルプロデュース チャレンジクッキング イタリアン編" + } ], + "hash" : "09eb6357231c0ad505269065dd5f469e", + "id" : "2409301", + "profile" : { + "bust" : "68", + "height" : "141", + "hip" : "67", + "waist" : "52", + "weight" : "34" + } + }, { + "alias_name" : "ストロベリー・スマイル", + "alias_name_display" : "ストロベリー・スマイル", + "event" : [ { + "event_id" : 409, + "event_name" : "アイドルプロデュース チャレンジクッキング イタリアン編" + } ], + "hash" : "312fba03b9b1fa9da6bc1ca66a87aa35", + "id" : "2509302", + "profile" : { + "bust" : "68", + "height" : "141", + "hip" : "67", + "waist" : "52", + "weight" : "34" + } + }, { + "alias_name" : "夢見る妖精", + "alias_name_display" : "夢見る妖精", + "event" : [ { + "event_id" : 1105, + "event_name" : "第5回プロダクション対抗トークバトルショー" + } ], + "hash" : "6404bdcf1fde67a168754b53d26bf98b", + "id" : "2417601", + "profile" : { + "bust" : "68", + "height" : "141", + "hip" : "67", + "waist" : "52", + "weight" : "34" + } + }, { + "alias_name" : "夢見る妖精", + "alias_name_display" : "夢見る妖精", + "event" : [ { + "event_id" : 1105, + "event_name" : "第5回プロダクション対抗トークバトルショー" + } ], + "hash" : "0e9b883a9b56ff98281ed61f9871e298", + "id" : "2517602", + "profile" : { + "bust" : "68", + "height" : "141", + "hip" : "67", + "waist" : "52", + "weight" : "34" + } + }, { + "alias_name" : "今日だけの告白", + "alias_name_display" : "今日だけの告白", + "hash" : "d518b52022b6db64879b5f1153990a0a", + "id" : "2421701", + "profile" : { + "bust" : "68", + "height" : "141", + "hip" : "67", + "waist" : "52", + "weight" : "34" + } + }, { + "alias_name" : "今日だけの告白", + "alias_name_display" : "今日だけの告白", + "hash" : "f8ae27e268a4708fcc2ad84da0ff47fa", + "id" : "2521702", + "profile" : { + "bust" : "68", + "height" : "141", + "hip" : "67", + "waist" : "52", + "weight" : "34" + } + }, { + "alias_name" : "夏宵の記憶", + "alias_name_display" : "夏宵の記憶", + "event" : [ { + "event_id" : 714, + "event_name" : "夏祭りDEドリームLIVEフェスティバル" + } ], + "hash" : "60b3bdf29948bf80b9ab4e6e93fe6c2a", + "id" : "2425201", + "profile" : { + "bust" : "68", + "height" : "141", + "hip" : "67", + "waist" : "52", + "weight" : "34" + } + }, { + "alias_name" : "夏宵の記憶", + "alias_name_display" : "夏宵の記憶", + "event" : [ { + "event_id" : 714, + "event_name" : "夏祭りDEドリームLIVEフェスティバル" + } ], + "hash" : "45d500ed4651e7b65d3f222cbe4285e4", + "id" : "2525202", + "profile" : { + "bust" : "68", + "height" : "141", + "hip" : "67", + "waist" : "52", + "weight" : "34" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "236415897f28c0017593bed0bb0cc583", + "id" : "2428401", + "profile" : { + "bust" : "68", + "height" : "141", + "hip" : "67", + "waist" : "52", + "weight" : "34" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "771bc083c125b56ee8a4d44cc15368a1", + "id" : "2528402", + "profile" : { + "bust" : "68", + "height" : "141", + "hip" : "67", + "waist" : "52", + "weight" : "34" + } + }, { + "alias_name" : "聖夜の願い", + "alias_name_display" : "聖夜の願い", + "hash" : "62655a7717c27b92b531b9ac9b78b502", + "id" : "2429201", + "profile" : { + "bust" : "68", + "height" : "141", + "hip" : "67", + "waist" : "52", + "weight" : "34" + } + }, { + "alias_name" : "聖夜の願い", + "alias_name_display" : "聖夜の願い", + "hash" : "50d5232b15631b34fa082829882e26d6", + "id" : "2529202", + "profile" : { + "bust" : "68", + "height" : "141", + "hip" : "67", + "waist" : "52", + "weight" : "34" + } + }, { + "alias_name" : "ひかりの創り手", + "alias_name_display" : "ひかりの創り手", + "hash" : "69c24144c925ad86e1c405c9ca8c6240", + "id" : "2433401", + "profile" : { + "bust" : "68", + "height" : "141", + "hip" : "67", + "waist" : "52", + "weight" : "34" + } + }, { + "alias_name" : "ひかりの創り手", + "alias_name_display" : "ひかりの創り手", + "hash" : "405d2d25977932dbb393803b6f5a37d9", + "id" : "2533402", + "profile" : { + "bust" : "68", + "height" : "141", + "hip" : "67", + "waist" : "52", + "weight" : "34" + } + }, { + "alias_name" : "賢者の翼", + "alias_name_display" : "賢者の翼", + "hash" : "ba20403f63fe0861d9a8a47126a91955", + "id" : "2439101", + "profile" : { + "bust" : "68", + "height" : "141", + "hip" : "67", + "waist" : "52", + "weight" : "34" + } + }, { + "alias_name" : "賢者の翼", + "alias_name_display" : "賢者の翼", + "hash" : "abfa3a0acdc184e3339b139c308eef21", + "id" : "2539102", + "profile" : { + "bust" : "68", + "height" : "141", + "hip" : "67", + "waist" : "52", + "weight" : "34" + } + } ], + "idol_id" : 88, + "idol_name" : "橘ありす", + "idol_name_display" : "橘ありす", + "units" : [ { + "id" : "61", + "name" : "ももべりー" + }, { + "id" : "66", + "name" : "レッドベリィズ" + }, { + "id" : "96", + "name" : "チャレンジクッキング" + }, { + "id" : "104", + "name" : "ももぺあべりー" + }, { + "id" : "189", + "name" : "アインフェリア" + }, { + "id" : "200", + "name" : "CAERULA" + }, { + "id" : "214", + "name" : "L.M.B.G" + }, { + "id" : "215", + "name" : "Project:Krone" + } ] +}, { + "aliases" : [ { + "hash" : "cf0f5af872286b4401c644ad570b1401", + "id" : "2002601", + "profile" : { + "bust" : "84", + "height" : "162", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + }, { + "hash" : "7e5915c0369bb67f9240d3b0a501a2e5", + "id" : "2102602", + "profile" : { + "bust" : "84", + "height" : "162", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "新たな一歩", + "alias_name_display" : "新たな一歩", + "hash" : "ced7d4f37c325fd9e001d90e359b17b1", + "id" : "2212001", + "profile" : { + "bust" : "84", + "height" : "162", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "新たな一歩", + "alias_name_display" : "新たな一歩", + "hash" : "b6d1d6f360b6bc3660dc54fbc3fe7df0", + "id" : "2312002", + "profile" : { + "bust" : "84", + "height" : "162", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "紙背の想い人", + "alias_name_display" : "紙背の想い人", + "event" : [ { + "event_id" : 705, + "event_name" : "第5回ドリームLIVEフェスティバル" + } ], + "hash" : "ce511e82689c364d20fec5608adc6cf3", + "id" : "2412001", + "profile" : { + "bust" : "84", + "height" : "162", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "紙背の想い人", + "alias_name_display" : "紙背の想い人", + "event" : [ { + "event_id" : 705, + "event_name" : "第5回ドリームLIVEフェスティバル" + } ], + "hash" : "5a726b8a757f4b8cf9119dfa675816b5", + "id" : "2512002", + "profile" : { + "bust" : "84", + "height" : "162", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "紺碧の境界", + "alias_name_display" : "紺碧の境界", + "hash" : "96b6a60c3303906015d4032211e4b079", + "id" : "2416501", + "profile" : { + "bust" : "84", + "height" : "162", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "紺碧の境界", + "alias_name_display" : "紺碧の境界", + "hash" : "ea4fe8c4505af919b7191de04b281b93", + "id" : "2516502", + "profile" : { + "bust" : "84", + "height" : "162", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "一瞬の誘惑", + "alias_name_display" : "一瞬の誘惑", + "hash" : "1106c281db2655156a8e08432d9ab567", + "id" : "2421201", + "profile" : { + "bust" : "84", + "height" : "162", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "一瞬の誘惑", + "alias_name_display" : "一瞬の誘惑", + "hash" : "d6cce24ee78944325364cd30bd20fdf5", + "id" : "2521202", + "profile" : { + "bust" : "84", + "height" : "162", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "8e7cde57106b127e4b8fc0970cb6d65d", + "id" : "2421301", + "profile" : { + "bust" : "84", + "height" : "162", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "5f4cadb282c332c2de83ff248ce9bb37", + "id" : "2521302", + "profile" : { + "bust" : "84", + "height" : "162", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "美粧の煌めき", + "alias_name_display" : "美粧の煌めき", + "hash" : "a883d6a1227bd31f1677b3b616b2c285", + "id" : "2431101", + "profile" : { + "bust" : "84", + "height" : "162", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "美粧の煌めき", + "alias_name_display" : "美粧の煌めき", + "hash" : "f9bd60aeeb955a43395e2383c6cde17f", + "id" : "2531102", + "profile" : { + "bust" : "84", + "height" : "162", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "幽玄の馨香", + "alias_name_display" : "幽玄の馨香", + "hash" : "fd0a7dfded17e71db2b50a36b4fbfd59", + "id" : "2434001", + "profile" : { + "bust" : "84", + "height" : "162", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "幽玄の馨香", + "alias_name_display" : "幽玄の馨香", + "hash" : "1070f27d097b076cfb92c9f35232b43e", + "id" : "2534002", + "profile" : { + "bust" : "84", + "height" : "162", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "5thアニバーサリー", + "alias_name_display" : "5thアニバーサリー", + "event" : [ { + "event_id" : 1708, + "event_name" : "アイドルプロデュース the 5th Anniversary" + } ], + "hash" : "6e063bdc942ad4b54e2bbca4a78c8954", + "id" : "2436301", + "profile" : { + "bust" : "84", + "height" : "162", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "5thアニバーサリー", + "alias_name_display" : "5thアニバーサリー", + "event" : [ { + "event_id" : 1708, + "event_name" : "アイドルプロデュース the 5th Anniversary" + } ], + "hash" : "9da100987158cfe8ebba9397d3a982a5", + "id" : "2536302", + "profile" : { + "bust" : "84", + "height" : "162", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "5thアニバーサリー・S", + "alias_name_display" : "5thアニバーサリー・S", + "event" : [ { + "event_id" : 1708, + "event_name" : "アイドルプロデュース the 5th Anniversary" + } ], + "hash" : "611fb0f2780409db7dd4c429850216dd", + "id" : "2436401", + "profile" : { + "bust" : "84", + "height" : "162", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "5thアニバーサリー・S", + "alias_name_display" : "5thアニバーサリー・S", + "event" : [ { + "event_id" : 1708, + "event_name" : "アイドルプロデュース the 5th Anniversary" + } ], + "hash" : "bd02113f22c12494c713a43bcc0c8e90", + "id" : "2536402", + "profile" : { + "bust" : "84", + "height" : "162", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + } ], + "idol_id" : 89, + "idol_name" : "鷺沢文香", + "idol_name_display" : "鷺沢文香", + "units" : [ { + "id" : "14", + "name" : "月下氷姫" + }, { + "id" : "141", + "name" : "トランクィル・ウィスパー" + }, { + "id" : "189", + "name" : "アインフェリア" + }, { + "id" : "200", + "name" : "CAERULA" + }, { + "id" : "215", + "name" : "Project:Krone" + } ] +}, { + "aliases" : [ { + "hash" : "3ae96bc5997dd574e80cdcac87d694c2", + "id" : "2002701", + "profile" : { + "bust" : "85", + "height" : "160", + "hip" : "83", + "waist" : "56", + "weight" : "45" + } + }, { + "hash" : "27510dbd766f2e9408fb6b05d91764a1", + "id" : "2102702", + "profile" : { + "bust" : "85", + "height" : "160", + "hip" : "83", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "スポーティスタイル", + "alias_name_display" : "スポーティスタイル", + "event" : [ { + "event_id" : 212, + "event_name" : "アイドルサバイバル 秋の大運動会" + } ], + "hash" : "62bcced9a07ecf9df301f5c2b4e105bf", + "id" : "2212401", + "profile" : { + "bust" : "85", + "height" : "160", + "hip" : "83", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "スポーティスタイル", + "alias_name_display" : "スポーティスタイル", + "event" : [ { + "event_id" : 212, + "event_name" : "アイドルサバイバル 秋の大運動会" + } ], + "hash" : "acb305526999e1b7c54b53323f668bb8", + "id" : "2312402", + "profile" : { + "bust" : "85", + "height" : "160", + "hip" : "83", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "学園の生徒", + "alias_name_display" : "学園の生徒", + "event" : [ { + "event_id" : 412, + "event_name" : "聖靴学園の七不思議" + } ], + "hash" : "3043e305efbdf3ff8342c59044ee665c", + "id" : "2215401", + "profile" : { + "bust" : "85", + "height" : "160", + "hip" : "83", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "学園の生徒", + "alias_name_display" : "学園の生徒", + "event" : [ { + "event_id" : 412, + "event_name" : "聖靴学園の七不思議" + } ], + "hash" : "4c4c56b98f1f364f93fe0216268d1660", + "id" : "2315402", + "profile" : { + "bust" : "85", + "height" : "160", + "hip" : "83", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "学園の生徒・H", + "alias_name_display" : "学園の生徒・H", + "event" : [ { + "event_id" : 412, + "event_name" : "聖靴学園の七不思議" + } ], + "hash" : "a406823b39606adb4354565b01bff9fa", + "id" : "2215501", + "profile" : { + "bust" : "85", + "height" : "160", + "hip" : "83", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "学園の生徒・H", + "alias_name_display" : "学園の生徒・H", + "event" : [ { + "event_id" : 412, + "event_name" : "聖靴学園の七不思議" + } ], + "hash" : "5a21f9f09b9988b7515d8f47bc9e2359", + "id" : "2315502", + "profile" : { + "bust" : "85", + "height" : "160", + "hip" : "83", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "秋色温泉", + "alias_name_display" : "秋色温泉", + "hash" : "b3791226c1a2f96b7cba3a7df7e652ee", + "id" : "2218601", + "profile" : { + "bust" : "85", + "height" : "160", + "hip" : "83", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "秋色温泉", + "alias_name_display" : "秋色温泉", + "hash" : "bfe83ddb2201ea21bafb1abb53946e55", + "id" : "2318602", + "profile" : { + "bust" : "85", + "height" : "160", + "hip" : "83", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ロワイヤルスタイルND", + "alias_name_display" : "ロワイヤルスタイルND", + "event" : [ { + "event_id" : 818, + "event_name" : "アイドルLIVEロワイヤル 雨の日SP" + } ], + "hash" : "5237b11dced2bb4f4e34ce15ba3f584c", + "id" : "2227201", + "profile" : { + "bust" : "85", + "height" : "160", + "hip" : "83", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ロワイヤルスタイルND", + "alias_name_display" : "ロワイヤルスタイルND", + "event" : [ { + "event_id" : 818, + "event_name" : "アイドルLIVEロワイヤル 雨の日SP" + } ], + "hash" : "9ba2e2f6ffa97f877ba9e7ed81fa0e3d", + "id" : "2327202", + "profile" : { + "bust" : "85", + "height" : "160", + "hip" : "83", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ワイルドフレンズ", + "alias_name_display" : "ワイルドフレンズ", + "hash" : "85b14867dbae15eda96607c230a961f1", + "id" : "2231501", + "profile" : { + "bust" : "85", + "height" : "160", + "hip" : "83", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ワイルドフレンズ", + "alias_name_display" : "ワイルドフレンズ", + "hash" : "8c23ba46ce84b6f62c65bfc36b35bae3", + "id" : "2331502", + "profile" : { + "bust" : "85", + "height" : "160", + "hip" : "83", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "シークレットナイト", + "alias_name_display" : "シークレットナイト", + "hash" : "a7b45e7ba33a0c677cc254a7ea905032", + "id" : "2411801", + "profile" : { + "bust" : "85", + "height" : "160", + "hip" : "83", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "シークレットナイト", + "alias_name_display" : "シークレットナイト", + "hash" : "a1c20f3bdb91545ae7d704e5be568d0a", + "id" : "2511802", + "profile" : { + "bust" : "85", + "height" : "160", + "hip" : "83", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ハイ・リベレーション", + "alias_name_display" : "ハイ・リベレーション", + "event" : [ { + "event_id" : 811, + "event_name" : "第11回アイドルLIVEロワイヤル" + } ], + "hash" : "f7ced8439833097f85a863260ccf10aa", + "id" : "2422901", + "profile" : { + "bust" : "85", + "height" : "160", + "hip" : "83", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ハイ・リベレーション", + "alias_name_display" : "ハイ・リベレーション", + "event" : [ { + "event_id" : 811, + "event_name" : "第11回アイドルLIVEロワイヤル" + } ], + "hash" : "ca04cfd1a0a7a89bb9890e61953e5623", + "id" : "2522902", + "profile" : { + "bust" : "85", + "height" : "160", + "hip" : "83", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "静寂のひととき", + "alias_name_display" : "静寂のひととき", + "hash" : "0af6c0578c3277b6cb7f183ae9cbb267", + "id" : "2428001", + "profile" : { + "bust" : "85", + "height" : "160", + "hip" : "83", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "静寂のひととき", + "alias_name_display" : "静寂のひととき", + "hash" : "615b301570633d1f4eeb36d15fa9c890", + "id" : "2528002", + "profile" : { + "bust" : "85", + "height" : "160", + "hip" : "83", + "waist" : "56", + "weight" : "45" + } + } ], + "idol_id" : 90, + "idol_name" : "八神マキノ", + "idol_name_display" : "八神マキノ", + "units" : [ { + "id" : "143", + "name" : "ファタ・モルガーナ" + }, { + "id" : "154", + "name" : "秋色温泉" + }, { + "id" : "210", + "name" : "ロワイヤルスタイルND" + } ] +}, { + "aliases" : [ { + "hash" : "3fd787fa963d607b8b8a5686e59f5b29", + "id" : "2002801", + "profile" : { + "bust" : "75", + "height" : "150", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + }, { + "hash" : "a7890d1785a7965cbf8fbb305cba821a", + "id" : "2102802", + "profile" : { + "bust" : "75", + "height" : "150", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "ニューイヤースタイル", + "alias_name_display" : "ニューイヤースタイル", + "event" : [ { + "event_id" : 509, + "event_name" : "新春LIVEツアーカーニバル" + } ], + "hash" : "51c0525ec41be4004e36833ae561a3c8", + "id" : "2213601", + "profile" : { + "bust" : "75", + "height" : "150", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "ニューイヤースタイル", + "alias_name_display" : "ニューイヤースタイル", + "event" : [ { + "event_id" : 509, + "event_name" : "新春LIVEツアーカーニバル" + } ], + "hash" : "aeac456b247d2e9074034bcd6b3a8aff", + "id" : "2313602", + "profile" : { + "bust" : "75", + "height" : "150", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "ロックI.C", + "alias_name_display" : "ロックI.C", + "event" : [ { + "event_id" : 1202, + "event_name" : "目指せロックスター アイドルチャレンジ" + } ], + "hash" : "6f8adbc17fd343e56d1bc5fe47bb72de", + "id" : "2316902", + "profile" : { + "bust" : "75", + "height" : "150", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "クリスマスプレゼント", + "alias_name_display" : "クリスマスプレゼント", + "hash" : "96ac982bc7ce504882361acfcefae89c", + "id" : "2219001", + "profile" : { + "bust" : "75", + "height" : "150", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "クリスマスプレゼント", + "alias_name_display" : "クリスマスプレゼント", + "hash" : "caf416dcfcab3698f017ed2b1de72c43", + "id" : "2319002", + "profile" : { + "bust" : "75", + "height" : "150", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "ナチュラルハート", + "alias_name_display" : "ナチュラルハート", + "hash" : "a17821cdbc53f0db2717bbe7e45e74c4", + "id" : "2225801", + "profile" : { + "bust" : "75", + "height" : "150", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "ナチュラルハート", + "alias_name_display" : "ナチュラルハート", + "hash" : "12bf848ee659aa5553744ee513f0e8b7", + "id" : "2325802", + "profile" : { + "bust" : "75", + "height" : "150", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "ミステリアスシエラザード", + "alias_name_display" : "ミステリアスシエラザード", + "hash" : "d3fc8f9b8afc44254988cc535a1264b1", + "id" : "2413401", + "profile" : { + "bust" : "75", + "height" : "150", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "ミステリアスシエラザード", + "alias_name_display" : "ミステリアスシエラザード", + "hash" : "3060ec3d09520102c7f6b50765d784d4", + "id" : "2513402", + "profile" : { + "bust" : "75", + "height" : "150", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "ガールズロッカー", + "alias_name_display" : "ガールズロッカー", + "event" : [ { + "event_id" : 1202, + "event_name" : "目指せロックスター アイドルチャレンジ" + } ], + "hash" : "f26ef223586e5490260270a39bb5fa31", + "id" : "2416301", + "profile" : { + "bust" : "75", + "height" : "150", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "ガールズロッカー", + "alias_name_display" : "ガールズロッカー", + "event" : [ { + "event_id" : 1202, + "event_name" : "目指せロックスター アイドルチャレンジ" + } ], + "hash" : "980400c2b1acc1508f6d67e7ac6d1f6e", + "id" : "2516302", + "profile" : { + "bust" : "75", + "height" : "150", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "ガールズロッカー・S", + "alias_name_display" : "ガールズロッカー・S", + "event" : [ { + "event_id" : 1202, + "event_name" : "目指せロックスター アイドルチャレンジ" + } ], + "hash" : "8dc670968a6e919d6dce89641929090f", + "id" : "2416401", + "profile" : { + "bust" : "75", + "height" : "150", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "ガールズロッカー・S", + "alias_name_display" : "ガールズロッカー・S", + "event" : [ { + "event_id" : 1202, + "event_name" : "目指せロックスター アイドルチャレンジ" + } ], + "hash" : "e57ab2575397046065c160f0d2c53cbb", + "id" : "2516402", + "profile" : { + "bust" : "75", + "height" : "150", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "みんなとキャンプ", + "alias_name_display" : "みんなとキャンプ", + "event" : [ { + "event_id" : 1701, + "event_name" : "アイドルプロデュース はじめてのキャンプ" + } ], + "hash" : "4affe65c63072cef2dc3890af05eba67", + "id" : "2423601", + "profile" : { + "bust" : "75", + "height" : "150", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "みんなとキャンプ", + "alias_name_display" : "みんなとキャンプ", + "event" : [ { + "event_id" : 1701, + "event_name" : "アイドルプロデュース はじめてのキャンプ" + } ], + "hash" : "a122383313a4c8d66d98ea71f6505a26", + "id" : "2523602", + "profile" : { + "bust" : "75", + "height" : "150", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "うれしいキャンプ", + "alias_name_display" : "うれしいキャンプ", + "event" : [ { + "event_id" : 1701, + "event_name" : "アイドルプロデュース はじめてのキャンプ" + } ], + "hash" : "c8c7f7f51c1fc53cd47bd499b0c9b05c", + "id" : "2423701", + "profile" : { + "bust" : "75", + "height" : "150", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "うれしいキャンプ", + "alias_name_display" : "うれしいキャンプ", + "event" : [ { + "event_id" : 1701, + "event_name" : "アイドルプロデュース はじめてのキャンプ" + } ], + "hash" : "74ec8a61bbb3c3b2d031f676d1287cf4", + "id" : "2523702", + "profile" : { + "bust" : "75", + "height" : "150", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "寂寥のアズラク", + "alias_name_display" : "寂寥のアズラク", + "hash" : "e01c7d5a98d641813f37d6598a51e0c4", + "id" : "2427501", + "profile" : { + "bust" : "75", + "height" : "150", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "寂寥のアズラク", + "alias_name_display" : "寂寥のアズラク", + "hash" : "9960752141b9ff3b336b4a990351dfb0", + "id" : "2527502", + "profile" : { + "bust" : "75", + "height" : "150", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "太陽の歌姫", + "alias_name_display" : "太陽の歌姫", + "event" : [ { + "event_id" : "029", + "event_name" : "第29回プロダクションマッチフェスティバル" + } ], + "hash" : "fa9965fce6b39f63942891b5f91b323b", + "id" : "2433301", + "profile" : { + "bust" : "75", + "height" : "150", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "太陽の歌姫", + "alias_name_display" : "太陽の歌姫", + "event" : [ { + "event_id" : "029", + "event_name" : "第29回プロダクションマッチフェスティバル" + } ], + "hash" : "c938a92ffa13dbb1932456bec25bef1e", + "id" : "2533302", + "profile" : { + "bust" : "75", + "height" : "150", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "デザートマミー", + "alias_name_display" : "デザートマミー", + "hash" : "c05efe35b1a2bbf741f9ca90818585c2", + "id" : "2437601", + "profile" : { + "bust" : "75", + "height" : "150", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "デザートマミー", + "alias_name_display" : "デザートマミー", + "hash" : "d5736287d3ece82c8ab060128aeceaeb", + "id" : "2537602", + "profile" : { + "bust" : "75", + "height" : "150", + "hip" : "78", + "waist" : "54", + "weight" : "40" + } + } ], + "idol_id" : 91, + "idol_name" : "ライラ", + "idol_name_display" : "ライラ", + "units" : [ { + "id" : "31", + "name" : "ソル・カマル" + }, { + "id" : "68", + "name" : "ロボフレンズ" + }, { + "id" : "98", + "name" : "ニューイヤースタイル" + }, { + "id" : "169", + "name" : "FOUR PIECE" + } ] +}, { + "aliases" : [ { + "hash" : "fbd7e64d96b438e45db27f0392b08a06", + "id" : "2002901", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + }, { + "hash" : "5395fd824474ffe5d08eb56efafccff0", + "id" : "2102902", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ワーキング・シー", + "alias_name_display" : "ワーキング・シー", + "hash" : "634592fc7441fccfaa2653bda666460e", + "id" : "2215601", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ワーキング・シー", + "alias_name_display" : "ワーキング・シー", + "hash" : "f078bb2a8d09c75f4ae06e3a659f814c", + "id" : "2315602", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ナイトパーティー", + "alias_name_display" : "ナイトパーティー", + "hash" : "6960c9142018589d4bb627b688e7581f", + "id" : "2220201", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ナイトパーティー", + "alias_name_display" : "ナイトパーティー", + "hash" : "d59a5d065863cd6c391532b32cb33433", + "id" : "2320202", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "エンゼルフィッシュ", + "alias_name_display" : "エンゼルフィッシュ", + "hash" : "8026b66e97fce87009b127ea8e4f5638", + "id" : "2223701", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "エンゼルフィッシュ", + "alias_name_display" : "エンゼルフィッシュ", + "hash" : "a5a7eac755571cf89d6e63834a41c2b2", + "id" : "2323702", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "バレンタインI.C", + "alias_name_display" : "バレンタインI.C", + "event" : [ { + "event_id" : 1209, + "event_name" : "アイドルチャレンジ チャレンジクッキング バレンタイン編" + } ], + "hash" : "521e105840ac8d626c9a5e3f05f3b20c", + "id" : "2325002", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ぴちぴちショコラティエ", + "alias_name_display" : "ぴちぴちショコラティエ", + "event" : [ { + "event_id" : 1906, + "event_name" : "ディアリースターハート ~ラブキュンバレンタイン~" + } ], + "hash" : "3714561ec869554fdc672d9c792f71fe", + "id" : "2330402", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "シーサイドチアー", + "alias_name_display" : "シーサイドチアー", + "event" : [ { + "event_id" : 1104, + "event_name" : "プロダクション対抗トークバトルショーinSUMMER" + } ], + "hash" : "71d62a972ec5e1ed2959e6ce43c9b60c", + "id" : "2416601", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "シーサイドチアー", + "alias_name_display" : "シーサイドチアー", + "event" : [ { + "event_id" : 1104, + "event_name" : "プロダクション対抗トークバトルショーinSUMMER" + } ], + "hash" : "64691a86814fdcf3818572ed7a67fbcf", + "id" : "2516602", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "いきものがかり", + "alias_name_display" : "いきものがかり", + "event" : [ { + "event_id" : "022", + "event_name" : "第22回プロダクションマッチフェスティバル" + } ], + "hash" : "9bc92b6f7e0699258e78f8cad8449778", + "id" : "2424901", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "いきものがかり", + "alias_name_display" : "いきものがかり", + "event" : [ { + "event_id" : "022", + "event_name" : "第22回プロダクションマッチフェスティバル" + } ], + "hash" : "e86688b7a544dfa38a8b1f939061162d", + "id" : "2524902", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "るんるんクッキング", + "alias_name_display" : "るんるんクッキング", + "event" : [ { + "event_id" : 1209, + "event_name" : "アイドルチャレンジ チャレンジクッキング バレンタイン編" + } ], + "hash" : "43239b593293aa795a1b4375ca800967", + "id" : "2430701", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "るんるんクッキング", + "alias_name_display" : "るんるんクッキング", + "event" : [ { + "event_id" : 1209, + "event_name" : "アイドルチャレンジ チャレンジクッキング バレンタイン編" + } ], + "hash" : "8b764d55696b882d6791b7a723bc88e1", + "id" : "2530702", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "るんるんクッキング・S", + "alias_name_display" : "るんるんクッキング・S", + "event" : [ { + "event_id" : 1209, + "event_name" : "アイドルチャレンジ チャレンジクッキング バレンタイン編" + } ], + "hash" : "a33b7181a7202f0873a00ccba8392539", + "id" : "2430801", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "るんるんクッキング・S", + "alias_name_display" : "るんるんクッキング・S", + "event" : [ { + "event_id" : 1209, + "event_name" : "アイドルチャレンジ チャレンジクッキング バレンタイン編" + } ], + "hash" : "bc6e9c5a4b28b1669ceb394193011235", + "id" : "2530802", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "幻視霊縛", + "alias_name_display" : "幻視霊縛", + "event" : [ { + "event_id" : 1903, + "event_name" : "怪奇公演 心霊探偵の事件簿" + } ], + "hash" : "e9a1335372f00626a11dcee9481389e6", + "id" : "2434401", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "幻視霊縛", + "alias_name_display" : "幻視霊縛", + "event" : [ { + "event_id" : 1903, + "event_name" : "怪奇公演 心霊探偵の事件簿" + } ], + "hash" : "3680d1991b44b9d38b902639964525ed", + "id" : "2534402", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "77", + "waist" : "55", + "weight" : "41" + } + } ], + "idol_id" : 92, + "idol_name" : "浅利七海", + "idol_name_display" : "浅利七海", + "units" : [ { + "id" : "143", + "name" : "ファタ・モルガーナ" + } ] +}, { + "aliases" : [ { + "hash" : "7213b5c8bf9bcf2661deeed916c04839", + "id" : "2200101", + "profile" : { + "bust" : "90", + "height" : "158", + "hip" : "81", + "waist" : "58", + "weight" : "46" + } + }, { + "hash" : "f46be86c4472b60b8db9adabf5a4ed8c", + "id" : "2300102", + "profile" : { + "bust" : "90", + "height" : "158", + "hip" : "81", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "イタリアンスタイル", + "alias_name_display" : "イタリアンスタイル", + "event" : [ { + "event_id" : 503, + "event_name" : "アイドルLIVEツアーinイタリア" + } ], + "hash" : "f97e412122f73ccd9b6b44d7d60b19ba", + "id" : "2208701", + "profile" : { + "bust" : "90", + "height" : "158", + "hip" : "81", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "イタリアンスタイル", + "alias_name_display" : "イタリアンスタイル", + "event" : [ { + "event_id" : 503, + "event_name" : "アイドルLIVEツアーinイタリア" + } ], + "hash" : "a1432f07870b768fbb65fac3fb044ccd", + "id" : "2308702", + "profile" : { + "bust" : "90", + "height" : "158", + "hip" : "81", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "バニーガール", + "alias_name_display" : "バニーガール", + "hash" : "fe622a9df6d27c14fe21f524b0814f93", + "id" : "2211701", + "profile" : { + "bust" : "90", + "height" : "158", + "hip" : "81", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "バニーガール", + "alias_name_display" : "バニーガール", + "hash" : "56032e82e99af67ca89d0cc1e1760238", + "id" : "2311702", + "profile" : { + "bust" : "90", + "height" : "158", + "hip" : "81", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "T.B.チアーズ", + "alias_name_display" : "T.B.チアーズ", + "event" : [ { + "event_id" : 1102, + "event_name" : "第2回プロダクション対抗トークバトルショー" + } ], + "hash" : "6c847b7c95a48dab0fc61b45b6c66522", + "id" : "2215701", + "profile" : { + "bust" : "90", + "height" : "158", + "hip" : "81", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "T.B.チアーズ", + "alias_name_display" : "T.B.チアーズ", + "event" : [ { + "event_id" : 1102, + "event_name" : "第2回プロダクション対抗トークバトルショー" + } ], + "hash" : "c6e605ee7213927f28a0fe609ecaed58", + "id" : "2315702", + "profile" : { + "bust" : "90", + "height" : "158", + "hip" : "81", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "SUHADAスタイル", + "alias_name_display" : "SUHADAスタイル", + "hash" : "d66165c8ec5795a58dfddd75ea490ce4", + "id" : "2219101", + "profile" : { + "bust" : "90", + "height" : "158", + "hip" : "81", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "SUHADAスタイル", + "alias_name_display" : "SUHADAスタイル", + "hash" : "c2c0c4be7dd2a5321b7d31af6e510da6", + "id" : "2319102", + "profile" : { + "bust" : "90", + "height" : "158", + "hip" : "81", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "ビター&スウィート", + "alias_name_display" : "ビター&スウィート", + "hash" : "0cd05f44a7645e7e5226505b77095927", + "id" : "2224901", + "profile" : { + "bust" : "90", + "height" : "158", + "hip" : "81", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "ビター&スウィート", + "alias_name_display" : "ビター&スウィート", + "hash" : "82c55a45c33211e07f84a2194e7c37c1", + "id" : "2324902", + "profile" : { + "bust" : "90", + "height" : "158", + "hip" : "81", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "ヴィクトリアの微笑", + "alias_name_display" : "ヴィクトリアの微笑", + "hash" : "79df8bef976ffbffa161c1640c2e5f54", + "id" : "2229701", + "profile" : { + "bust" : "90", + "height" : "158", + "hip" : "81", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "ヴィクトリアの微笑", + "alias_name_display" : "ヴィクトリアの微笑", + "hash" : "6a82c3aa225dd4352788e2c9edff4933", + "id" : "2329702", + "profile" : { + "bust" : "90", + "height" : "158", + "hip" : "81", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "ワールドイズマイン", + "alias_name_display" : "ワールドイズマイン", + "event" : [ { + "event_id" : 704, + "event_name" : "第4回ドリームLIVEフェスティバル" + } ], + "hash" : "695cc79fac96163d7f505021b1824512", + "id" : "2410701", + "profile" : { + "bust" : "90", + "height" : "158", + "hip" : "81", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "ワールドイズマイン", + "alias_name_display" : "ワールドイズマイン", + "event" : [ { + "event_id" : 704, + "event_name" : "第4回ドリームLIVEフェスティバル" + } ], + "hash" : "7175e4b23da69f4db80c2721b4010a14", + "id" : "2510702", + "profile" : { + "bust" : "90", + "height" : "158", + "hip" : "81", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "パーフェクトティーチャー", + "alias_name_display" : "パーフェクトティーチャー", + "event" : [ { + "event_id" : 520, + "event_name" : "青春公演 シング・ア・ソング" + } ], + "hash" : "0706adc16bd17b7911c6f0c486c9288b", + "id" : "2425401", + "profile" : { + "bust" : "90", + "height" : "158", + "hip" : "81", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "パーフェクトティーチャー", + "alias_name_display" : "パーフェクトティーチャー", + "event" : [ { + "event_id" : 520, + "event_name" : "青春公演 シング・ア・ソング" + } ], + "hash" : "6a2e07a28b5eb41aba421027c684c0dc", + "id" : "2525402", + "profile" : { + "bust" : "90", + "height" : "158", + "hip" : "81", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "飽くなき挑戦者", + "alias_name_display" : "飽くなき挑戦者", + "event" : [ { + "event_id" : 1211, + "event_name" : "目指せ山頂! アイドルチャレンジ" + } ], + "hash" : "af4ef2fa96ffca2a1b2747a49dd05f04", + "id" : "2433901", + "profile" : { + "bust" : "90", + "height" : "158", + "hip" : "81", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "飽くなき挑戦者", + "alias_name_display" : "飽くなき挑戦者", + "event" : [ { + "event_id" : 1211, + "event_name" : "目指せ山頂! アイドルチャレンジ" + } ], + "hash" : "cc0698a6cf2cb1334013fe8b8ade9708", + "id" : "2533902", + "profile" : { + "bust" : "90", + "height" : "158", + "hip" : "81", + "waist" : "58", + "weight" : "46" + } + } ], + "idol_id" : 93, + "idol_name" : "ヘレン", + "idol_name_display" : "ヘレン", + "units" : [ { + "id" : "86", + "name" : "イタリアンスタイル" + } ] +}, { + "aliases" : [ { + "hash" : "259ea6a1a4bfe54feafe3adea84e09fc", + "id" : "2200201", + "profile" : { + "bust" : "90", + "height" : "160", + "hip" : "86", + "waist" : "56", + "weight" : "47" + } + }, { + "hash" : "79439fa45b259cec8e53788c227f295d", + "id" : "2300202", + "profile" : { + "bust" : "90", + "height" : "160", + "hip" : "86", + "waist" : "56", + "weight" : "47" + } + }, { + "alias_name" : "テーマパーク", + "alias_name_display" : "テーマパーク", + "event" : [ { + "event_id" : 203, + "event_name" : "アイドルサバイバルinテーマパーク" + } ], + "hash" : "980b9cd09101e0ace7a9a9a8a7025643", + "id" : "2203801", + "profile" : { + "bust" : "90", + "height" : "160", + "hip" : "86", + "waist" : "56", + "weight" : "47" + } + }, { + "alias_name" : "テーマパーク", + "alias_name_display" : "テーマパーク", + "event" : [ { + "event_id" : 203, + "event_name" : "アイドルサバイバルinテーマパーク" + } ], + "hash" : "d925b1db151da01b386045506ea410bf", + "id" : "2303802", + "profile" : { + "bust" : "90", + "height" : "160", + "hip" : "86", + "waist" : "56", + "weight" : "47" + } + }, { + "alias_name" : "ハロウィンパーティー", + "alias_name_display" : "ハロウィンパーティー", + "hash" : "db6604d22bb5f0f5dc9debc86ffd2c0e", + "id" : "2206201", + "profile" : { + "bust" : "90", + "height" : "160", + "hip" : "86", + "waist" : "56", + "weight" : "47" + } + }, { + "alias_name" : "ハロウィンパーティー", + "alias_name_display" : "ハロウィンパーティー", + "hash" : "4f126d663ceb6c43a28ea7b8ca06698c", + "id" : "2306202", + "profile" : { + "bust" : "90", + "height" : "160", + "hip" : "86", + "waist" : "56", + "weight" : "47" + } + }, { + "alias_name" : "ロッキンヴォーカル", + "alias_name_display" : "ロッキンヴォーカル", + "event" : [ { + "event_id" : "011", + "event_name" : "第11回プロダクションマッチフェスティバル" + } ], + "hash" : "81d108a67d9d1c4e1d850886c8b4e5f6", + "id" : "2210901", + "profile" : { + "bust" : "90", + "height" : "160", + "hip" : "86", + "waist" : "56", + "weight" : "47" + } + }, { + "alias_name" : "ロッキンヴォーカル", + "alias_name_display" : "ロッキンヴォーカル", + "event" : [ { + "event_id" : "011", + "event_name" : "第11回プロダクションマッチフェスティバル" + } ], + "hash" : "8de0a568c134685e6c62b1c1ce5904fe", + "id" : "2310902", + "profile" : { + "bust" : "90", + "height" : "160", + "hip" : "86", + "waist" : "56", + "weight" : "47" + } + }, { + "alias_name" : "熱気の中で", + "alias_name_display" : "熱気の中で", + "hash" : "01c2160e64c52a3951f9beb6bd18b7ae", + "id" : "2217201", + "profile" : { + "bust" : "90", + "height" : "160", + "hip" : "86", + "waist" : "56", + "weight" : "47" + } + }, { + "alias_name" : "熱気の中で", + "alias_name_display" : "熱気の中で", + "hash" : "631a32c8f240c49e29c4c8ca97c92a8d", + "id" : "2317202", + "profile" : { + "bust" : "90", + "height" : "160", + "hip" : "86", + "waist" : "56", + "weight" : "47" + } + }, { + "alias_name" : "さわやかスポーツ", + "alias_name_display" : "さわやかスポーツ", + "hash" : "bf035f7688283058e98bcf8488a05dcc", + "id" : "2220901", + "profile" : { + "bust" : "90", + "height" : "160", + "hip" : "86", + "waist" : "56", + "weight" : "47" + } + }, { + "alias_name" : "さわやかスポーツ", + "alias_name_display" : "さわやかスポーツ", + "hash" : "5dd271c659752103724376c0a30163ce", + "id" : "2320902", + "profile" : { + "bust" : "90", + "height" : "160", + "hip" : "86", + "waist" : "56", + "weight" : "47" + } + }, { + "alias_name" : "イカした帽子屋", + "alias_name_display" : "イカした帽子屋", + "event" : [ { + "event_id" : 1901, + "event_name" : "童話公演 気まぐれアリスと不思議の国" + } ], + "hash" : "e4f66d8edf006f5f00a7098cadc49f7a", + "id" : "2325702", + "profile" : { + "bust" : "90", + "height" : "160", + "hip" : "86", + "waist" : "56", + "weight" : "47" + } + }, { + "alias_name" : "サマービーチ", + "alias_name_display" : "サマービーチ", + "hash" : "bb8965c51ea8824c9ed23b586af4c99e", + "id" : "2227801", + "profile" : { + "bust" : "90", + "height" : "160", + "hip" : "86", + "waist" : "56", + "weight" : "47" + } + }, { + "alias_name" : "サマービーチ", + "alias_name_display" : "サマービーチ", + "hash" : "f8b86ed000791b83276ea40a9e06916a", + "id" : "2327802", + "profile" : { + "bust" : "90", + "height" : "160", + "hip" : "86", + "waist" : "56", + "weight" : "47" + } + }, { + "alias_name" : "ロッキンヴォーカリスト", + "alias_name_display" : "ロッキンヴォーカリスト", + "event" : [ { + "event_id" : 1001, + "event_name" : "プロダクション対抗ドリームLIVEフェスティバル" + } ], + "hash" : "a30f4d848b8bef6dfe1da50c4358f73a", + "id" : "2411301", + "profile" : { + "bust" : "90", + "height" : "160", + "hip" : "86", + "waist" : "56", + "weight" : "47" + } + }, { + "alias_name" : "ロッキンヴォーカリスト", + "alias_name_display" : "ロッキンヴォーカリスト", + "event" : [ { + "event_id" : 1001, + "event_name" : "プロダクション対抗ドリームLIVEフェスティバル" + } ], + "hash" : "84e0685b558f54a0d3e2633da07cd8e6", + "id" : "2511302", + "profile" : { + "bust" : "90", + "height" : "160", + "hip" : "86", + "waist" : "56", + "weight" : "47" + } + }, { + "alias_name" : "ミュージックスクリーム", + "alias_name_display" : "ミュージックスクリーム", + "event" : [ { + "event_id" : 715, + "event_name" : "第15回ドリームLIVEフェスティバル" + } ], + "hash" : "c6803990cf321f09db09d1270f3e7141", + "id" : "2426601", + "profile" : { + "bust" : "90", + "height" : "160", + "hip" : "86", + "waist" : "56", + "weight" : "47" + } + }, { + "alias_name" : "ミュージックスクリーム", + "alias_name_display" : "ミュージックスクリーム", + "event" : [ { + "event_id" : 715, + "event_name" : "第15回ドリームLIVEフェスティバル" + } ], + "hash" : "9c7924540506c8bb3a815a165f9ee1f5", + "id" : "2526602", + "profile" : { + "bust" : "90", + "height" : "160", + "hip" : "86", + "waist" : "56", + "weight" : "47" + } + }, { + "alias_name" : "セトルダウンソウル", + "alias_name_display" : "セトルダウンソウル", + "hash" : "55fe8f7624359d534974ec4f3bac7ea9", + "id" : "2437001", + "profile" : { + "bust" : "90", + "height" : "160", + "hip" : "86", + "waist" : "56", + "weight" : "47" + } + }, { + "alias_name" : "セトルダウンソウル", + "alias_name_display" : "セトルダウンソウル", + "hash" : "7c6d691dff4f6353fdf2ab67ccea3e35", + "id" : "2537002", + "profile" : { + "bust" : "90", + "height" : "160", + "hip" : "86", + "waist" : "56", + "weight" : "47" + } + } ], + "idol_id" : 94, + "idol_name" : "松永涼", + "idol_name_display" : "松永涼", + "units" : [ { + "id" : "9", + "name" : "エルドリッチ・ロアテラー" + }, { + "id" : "176", + "name" : "炎陣" + }, { + "id" : "180", + "name" : "ハロウィンパーティー" + } ] +}, { + "aliases" : [ { + "hash" : "052c63f721faba1ce3c0ee0b14c45bb4", + "id" : "2200301", + "profile" : { + "bust" : "84", + "height" : "164", + "hip" : "82", + "waist" : "56", + "weight" : "45" + } + }, { + "hash" : "e33f0418d795637c98fb9997ef090cb1", + "id" : "2300302", + "profile" : { + "bust" : "84", + "height" : "164", + "hip" : "82", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "スポーツ祭", + "alias_name_display" : "スポーツ祭", + "hash" : "eee398b4bef19b879c761dd2c7bc3723", + "id" : "2204401", + "profile" : { + "bust" : "84", + "height" : "164", + "hip" : "82", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "スポーツ祭", + "alias_name_display" : "スポーツ祭", + "hash" : "5880ef8815cbbc4493ef5d6ce5c3e6d0", + "id" : "2304402", + "profile" : { + "bust" : "84", + "height" : "164", + "hip" : "82", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "セレブレティJKT", + "alias_name_display" : "セレブレティJKT", + "hash" : "5d5e16f335315c45d1854ad76f7a86e9", + "id" : "2215301", + "profile" : { + "bust" : "84", + "height" : "164", + "hip" : "82", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "セレブレティJKT", + "alias_name_display" : "セレブレティJKT", + "hash" : "e07ba1df924d713909c3e34b14cf279a", + "id" : "2315302", + "profile" : { + "bust" : "84", + "height" : "164", + "hip" : "82", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ブライダルセレクション", + "alias_name_display" : "ブライダルセレクション", + "hash" : "27fac6d6c916869f2ebf1b5dfd28e9eb", + "id" : "2221401", + "profile" : { + "bust" : "84", + "height" : "164", + "hip" : "82", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ブライダルセレクション", + "alias_name_display" : "ブライダルセレクション", + "hash" : "fa39ed43012f2f2da72464c7f1438169", + "id" : "2321402", + "profile" : { + "bust" : "84", + "height" : "164", + "hip" : "82", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ファンサーキット", + "alias_name_display" : "ファンサーキット", + "hash" : "91c81b332d95258dbe1ba94bbfd74d12", + "id" : "2226401", + "profile" : { + "bust" : "84", + "height" : "164", + "hip" : "82", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ファンサーキット", + "alias_name_display" : "ファンサーキット", + "hash" : "f49aaf4a024810dd9fa9ab09a70e9d72", + "id" : "2326402", + "profile" : { + "bust" : "84", + "height" : "164", + "hip" : "82", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ステージディーヴァ", + "alias_name_display" : "ステージディーヴァ", + "hash" : "b3f7ea5dd24289a103d9f2968646218c", + "id" : "2407410", + "profile" : { + "bust" : "84", + "height" : "164", + "hip" : "82", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ステージディーヴァ", + "alias_name_display" : "ステージディーヴァ", + "hash" : "0535db74b682fd7e4e479ea31d42c440", + "id" : "2507411", + "profile" : { + "bust" : "84", + "height" : "164", + "hip" : "82", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "美しき品位", + "alias_name_display" : "美しき品位", + "event" : [ { + "event_id" : 708, + "event_name" : "第8回ドリームLIVEフェスティバル" + } ], + "hash" : "58f99d1d3a87002b47bd50d93fd5bb7d", + "id" : "2417101", + "profile" : { + "bust" : "84", + "height" : "164", + "hip" : "82", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "美しき品位", + "alias_name_display" : "美しき品位", + "event" : [ { + "event_id" : 708, + "event_name" : "第8回ドリームLIVEフェスティバル" + } ], + "hash" : "751eac81ec20fef9cb7f5ee42102d579", + "id" : "2517102", + "profile" : { + "bust" : "84", + "height" : "164", + "hip" : "82", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ビューティーハーベスト", + "alias_name_display" : "ビューティーハーベスト", + "event" : [ { + "event_id" : 1801, + "event_name" : "アイドルバラエティ 究極のショートケーキを作ろう!" + } ], + "hash" : "f0f4465ce296a72ddb0dafc12a069467", + "id" : "2426901", + "profile" : { + "bust" : "84", + "height" : "164", + "hip" : "82", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ビューティーハーベスト", + "alias_name_display" : "ビューティーハーベスト", + "event" : [ { + "event_id" : 1801, + "event_name" : "アイドルバラエティ 究極のショートケーキを作ろう!" + } ], + "hash" : "6bce57ed40bb3f7a5ccd19cd679a0a66", + "id" : "2526902", + "profile" : { + "bust" : "84", + "height" : "164", + "hip" : "82", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "スパークルオブプライド", + "alias_name_display" : "スパークルオブプライド", + "hash" : "f4a1f0573cf0bc83790d5e89511ec5ba", + "id" : "2437801", + "profile" : { + "bust" : "84", + "height" : "164", + "hip" : "82", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "スパークルオブプライド", + "alias_name_display" : "スパークルオブプライド", + "hash" : "5adfeb655cf51c970156064c22dfb037", + "id" : "2537802", + "profile" : { + "bust" : "84", + "height" : "164", + "hip" : "82", + "waist" : "56", + "weight" : "45" + } + } ], + "idol_id" : 95, + "idol_name" : "小室千奈美", + "idol_name_display" : "小室千奈美", + "units" : [ { + "id" : "118", + "name" : "ビューティーアリュール" + }, { + "id" : "162", + "name" : "ブライダルセレクション" + }, { + "id" : "181", + "name" : "フレッシュアスリーテス" + } ] +}, { + "aliases" : [ { + "hash" : "fa2dec52d070ce84f31fe991bd02a9f4", + "id" : "2200401", + "profile" : { + "bust" : "87", + "height" : "168", + "hip" : "86", + "waist" : "55", + "weight" : "48" + } + }, { + "hash" : "601fe50f575ef26e92fdf9c2d6536286", + "id" : "2300402", + "profile" : { + "bust" : "87", + "height" : "168", + "hip" : "86", + "waist" : "55", + "weight" : "48" + } + }, { + "alias_name" : "サイバネティックビューティー", + "alias_name_display" : "サイバネティックビューティー", + "event" : [ { + "event_id" : 207, + "event_name" : "アイドルサバイバル ハロウィン編" + } ], + "hash" : "df24296562d7ff98a40501958c234758", + "id" : "2206601", + "profile" : { + "bust" : "87", + "height" : "168", + "hip" : "86", + "waist" : "55", + "weight" : "48" + } + }, { + "alias_name" : "サイバネティックビューティー", + "alias_name_display" : "サイバネティックビューティー", + "event" : [ { + "event_id" : 207, + "event_name" : "アイドルサバイバル ハロウィン編" + } ], + "hash" : "0512fbcece083f4b2077d3ba763bfc59", + "id" : "2306602", + "profile" : { + "bust" : "87", + "height" : "168", + "hip" : "86", + "waist" : "55", + "weight" : "48" + } + }, { + "alias_name" : "全味万能", + "alias_name_display" : "全味万能", + "event" : [ { + "event_id" : 519, + "event_name" : "美食公演 女神に捧ぐ御馳走" + } ], + "hash" : "22cd8051835cfd6702d130844565c9a4", + "id" : "2321002", + "profile" : { + "bust" : "87", + "height" : "168", + "hip" : "86", + "waist" : "55", + "weight" : "48" + } + }, { + "alias_name" : "定常の薄片", + "alias_name_display" : "定常の薄片", + "hash" : "080ff95ef15907ec9dde885760b35ca5", + "id" : "2230201", + "profile" : { + "bust" : "87", + "height" : "168", + "hip" : "86", + "waist" : "55", + "weight" : "48" + } + }, { + "alias_name" : "定常の薄片", + "alias_name_display" : "定常の薄片", + "hash" : "dc44f2b08fa035521ae2c420f188395f", + "id" : "2330202", + "profile" : { + "bust" : "87", + "height" : "168", + "hip" : "86", + "waist" : "55", + "weight" : "48" + } + }, { + "alias_name" : "寡黙の女王", + "alias_name_display" : "寡黙の女王", + "event" : [ { + "event_id" : 202, + "event_name" : "アイドルサバイバルひな祭り編" + } ], + "hash" : "5318a142d7ac9c1442963b5a74114a12", + "id" : "2401201", + "profile" : { + "bust" : "87", + "height" : "168", + "hip" : "86", + "waist" : "55", + "weight" : "48" + } + }, { + "alias_name" : "寡黙の女王", + "alias_name_display" : "寡黙の女王", + "event" : [ { + "event_id" : 202, + "event_name" : "アイドルサバイバルひな祭り編" + } ], + "hash" : "e5e24d0c31229301ba067bd7b55c07f1", + "id" : "2501202", + "profile" : { + "bust" : "87", + "height" : "168", + "hip" : "86", + "waist" : "55", + "weight" : "48" + } + }, { + "alias_name" : "ミステリアスメイド", + "alias_name_display" : "ミステリアスメイド", + "hash" : "9e4f24a0d5ffb26f7c9c24c818ba09df", + "id" : "2405301", + "profile" : { + "bust" : "87", + "height" : "168", + "hip" : "86", + "waist" : "55", + "weight" : "48" + } + }, { + "alias_name" : "ミステリアスメイド", + "alias_name_display" : "ミステリアスメイド", + "hash" : "5e07fd98a4bc380a8fa8a54bb0fc8402", + "id" : "2505302", + "profile" : { + "bust" : "87", + "height" : "168", + "hip" : "86", + "waist" : "55", + "weight" : "48" + } + }, { + "alias_name" : "トランセンドバニー", + "alias_name_display" : "トランセンドバニー", + "hash" : "eb19babf3f607140e5e7729c2c7bd063", + "id" : "2408801", + "profile" : { + "bust" : "87", + "height" : "168", + "hip" : "86", + "waist" : "55", + "weight" : "48" + } + }, { + "alias_name" : "トランセンドバニー", + "alias_name_display" : "トランセンドバニー", + "hash" : "e48b28d85c30e5e1beb133623913e970", + "id" : "2508802", + "profile" : { + "bust" : "87", + "height" : "168", + "hip" : "86", + "waist" : "55", + "weight" : "48" + } + }, { + "alias_name" : "銀弾の射手", + "alias_name_display" : "銀弾の射手", + "event" : [ { + "event_id" : 512, + "event_name" : "西部公演 ガンスリンガージャーニー" + } ], + "hash" : "ebeffaed713567cdde72ef9093f78574", + "id" : "2414801", + "profile" : { + "bust" : "87", + "height" : "168", + "hip" : "86", + "waist" : "55", + "weight" : "48" + } + }, { + "alias_name" : "銀弾の射手", + "alias_name_display" : "銀弾の射手", + "event" : [ { + "event_id" : 512, + "event_name" : "西部公演 ガンスリンガージャーニー" + } ], + "hash" : "50b4f24a6dad70b40a3aa9084cd1440f", + "id" : "2514802", + "profile" : { + "bust" : "87", + "height" : "168", + "hip" : "86", + "waist" : "55", + "weight" : "48" + } + }, { + "alias_name" : "イグナイトアビリティーズ", + "alias_name_display" : "イグナイトアビリティーズ", + "event" : [ { + "event_id" : "023", + "event_name" : "第23回プロダクションマッチフェスティバル" + } ], + "hash" : "4eb2a1368c3fd86ecc07cab40f40e1ad", + "id" : "2426801", + "profile" : { + "bust" : "87", + "height" : "168", + "hip" : "86", + "waist" : "55", + "weight" : "48" + } + }, { + "alias_name" : "イグナイトアビリティーズ", + "alias_name_display" : "イグナイトアビリティーズ", + "event" : [ { + "event_id" : "023", + "event_name" : "第23回プロダクションマッチフェスティバル" + } ], + "hash" : "90e8bb440dc7b7d442a7e0a54a5a159c", + "id" : "2526802", + "profile" : { + "bust" : "87", + "height" : "168", + "hip" : "86", + "waist" : "55", + "weight" : "48" + } + }, { + "alias_name" : "インスペクトコンコルディア", + "alias_name_display" : "インスペクトコンコルディア", + "hash" : "eb6c39fd1f1cc9a59cb18cab01f5cf01", + "id" : "2432901", + "profile" : { + "bust" : "87", + "height" : "168", + "hip" : "86", + "waist" : "55", + "weight" : "48" + } + }, { + "alias_name" : "インスペクトコンコルディア", + "alias_name_display" : "インスペクトコンコルディア", + "hash" : "eacc9bc4fe9128ac315bf016a2c356c4", + "id" : "2532902", + "profile" : { + "bust" : "87", + "height" : "168", + "hip" : "86", + "waist" : "55", + "weight" : "48" + } + } ], + "idol_id" : 96, + "idol_name" : "高峯のあ", + "idol_name_display" : "高峯のあ", + "units" : [ { + "id" : "116", + "name" : "にゃん・にゃん・にゃん" + } ] +}, { + "aliases" : [ { + "hash" : "1f62eb063030ed5083b0e7826245d3af", + "id" : "2200501", + "profile" : { + "bust" : "81", + "height" : "171", + "hip" : "83", + "waist" : "57", + "weight" : "49" + } + }, { + "hash" : "2cc6e90536c27201a4042b1bc3aa7a4b", + "id" : "2300502", + "profile" : { + "bust" : "81", + "height" : "171", + "hip" : "83", + "waist" : "57", + "weight" : "49" + } + }, { + "alias_name" : "神秘の女神", + "alias_name_display" : "神秘の女神", + "hash" : "0c4e761bc05c904c8d1d80ae19f55042", + "id" : "2401401", + "profile" : { + "bust" : "81", + "height" : "171", + "hip" : "83", + "waist" : "57", + "weight" : "49" + } + }, { + "alias_name" : "神秘の女神", + "alias_name_display" : "神秘の女神", + "hash" : "a79b80569b0b237c0e63751cca452632", + "id" : "2501402", + "profile" : { + "bust" : "81", + "height" : "171", + "hip" : "83", + "waist" : "57", + "weight" : "49" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "0902f546ad623f9ea9743f549991ca4a", + "id" : "2401601", + "profile" : { + "bust" : "81", + "height" : "171", + "hip" : "83", + "waist" : "57", + "weight" : "49" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "81f39e1cf11b678f12a090a23726925d", + "id" : "2501602", + "profile" : { + "bust" : "81", + "height" : "171", + "hip" : "83", + "waist" : "57", + "weight" : "49" + } + }, { + "alias_name" : "湯けむり女神", + "alias_name_display" : "湯けむり女神", + "hash" : "a9058c6198b35b7282ff3694c1177b66", + "id" : "2403801", + "profile" : { + "bust" : "81", + "height" : "171", + "hip" : "83", + "waist" : "57", + "weight" : "49" + } + }, { + "alias_name" : "湯けむり女神", + "alias_name_display" : "湯けむり女神", + "hash" : "ffde517a1d2a3fdb6900d97eefb33ac4", + "id" : "2503802", + "profile" : { + "bust" : "81", + "height" : "171", + "hip" : "83", + "waist" : "57", + "weight" : "49" + } + }, { + "alias_name" : "新緑の淑女", + "alias_name_display" : "新緑の淑女", + "hash" : "9a77b70cbfa5519c355bec95e1dd93c6", + "id" : "2406601", + "profile" : { + "bust" : "81", + "height" : "171", + "hip" : "83", + "waist" : "57", + "weight" : "49" + } + }, { + "alias_name" : "新緑の淑女", + "alias_name_display" : "新緑の淑女", + "hash" : "6d1df5bc4e0f9a31473c1aa86414f6ae", + "id" : "2506602", + "profile" : { + "bust" : "81", + "height" : "171", + "hip" : "83", + "waist" : "57", + "weight" : "49" + } + }, { + "alias_name" : "甘美なる姫君", + "alias_name_display" : "甘美なる姫君", + "hash" : "976b76648428ec1dbb7f5250e79a7a23", + "id" : "2412101", + "profile" : { + "bust" : "81", + "height" : "171", + "hip" : "83", + "waist" : "57", + "weight" : "49" + } + }, { + "alias_name" : "甘美なる姫君", + "alias_name_display" : "甘美なる姫君", + "hash" : "02766491016ecc94d2cc339c3a2d2dd6", + "id" : "2512102", + "profile" : { + "bust" : "81", + "height" : "171", + "hip" : "83", + "waist" : "57", + "weight" : "49" + } + }, { + "alias_name" : "ワンダフルマジック", + "alias_name_display" : "ワンダフルマジック", + "hash" : "b2962e6246b90fa8843eb06722614ff3", + "id" : "2413301", + "profile" : { + "bust" : "81", + "height" : "171", + "hip" : "83", + "waist" : "57", + "weight" : "49" + } + }, { + "alias_name" : "ワンダフルマジック", + "alias_name_display" : "ワンダフルマジック", + "hash" : "b4022ee73d439603da996d48bbc302a8", + "id" : "2513302", + "profile" : { + "bust" : "81", + "height" : "171", + "hip" : "83", + "waist" : "57", + "weight" : "49" + } + }, { + "alias_name" : "謹賀新年", + "alias_name_display" : "謹賀新年", + "hash" : "1b961de171c55574e471134ad28f883f", + "id" : "2420501", + "profile" : { + "bust" : "81", + "height" : "171", + "hip" : "83", + "waist" : "57", + "weight" : "49" + } + }, { + "alias_name" : "謹賀新年", + "alias_name_display" : "謹賀新年", + "hash" : "9daca9b18b0acbe7a315daee7b7a8fed", + "id" : "2520502", + "profile" : { + "bust" : "81", + "height" : "171", + "hip" : "83", + "waist" : "57", + "weight" : "49" + } + }, { + "alias_name" : "白南風の淑女", + "alias_name_display" : "白南風の淑女", + "hash" : "2e54872e35ff6ae1e3b8db794325ebdc", + "id" : "2425301", + "profile" : { + "bust" : "81", + "height" : "171", + "hip" : "83", + "waist" : "57", + "weight" : "49" + } + }, { + "alias_name" : "白南風の淑女", + "alias_name_display" : "白南風の淑女", + "hash" : "3549cd6ea8a118812832841f4dbbac61", + "id" : "2525302", + "profile" : { + "bust" : "81", + "height" : "171", + "hip" : "83", + "waist" : "57", + "weight" : "49" + } + }, { + "alias_name" : "幸福のひととき", + "alias_name_display" : "幸福のひととき", + "hash" : "81b0bcb1a5d9b6463f17eef50387d30c", + "id" : "2433201", + "profile" : { + "bust" : "81", + "height" : "171", + "hip" : "83", + "waist" : "57", + "weight" : "49" + } + }, { + "alias_name" : "幸福のひととき", + "alias_name_display" : "幸福のひととき", + "hash" : "188262224c3c9e6dd3b291c111101d72", + "id" : "2533202", + "profile" : { + "bust" : "81", + "height" : "171", + "hip" : "83", + "waist" : "57", + "weight" : "49" + } + }, { + "alias_name" : "聖夜の祝宴", + "alias_name_display" : "聖夜の祝宴", + "hash" : "7918df8e9ee92c02ea13b4fef6e6448f", + "id" : "2436601", + "profile" : { + "bust" : "81", + "height" : "171", + "hip" : "83", + "waist" : "57", + "weight" : "49" + } + }, { + "alias_name" : "聖夜の祝宴", + "alias_name_display" : "聖夜の祝宴", + "hash" : "70e5c843c758082e2ff927eb38cf943b", + "id" : "2536602", + "profile" : { + "bust" : "81", + "height" : "171", + "hip" : "83", + "waist" : "57", + "weight" : "49" + } + }, { + "alias_name" : "優艶の花尽し", + "alias_name_display" : "優艶の花尽し", + "hash" : "5e013960c6ecd88627148666b8fb215c", + "id" : "2439801", + "profile" : { + "bust" : "81", + "height" : "171", + "hip" : "83", + "waist" : "57", + "weight" : "49" + } + }, { + "alias_name" : "優艶の花尽し", + "alias_name_display" : "優艶の花尽し", + "hash" : "8f043af6f6c5ee0f0e01cd50a36a2f66", + "id" : "2539802", + "profile" : { + "bust" : "81", + "height" : "171", + "hip" : "83", + "waist" : "57", + "weight" : "49" + } + } ], + "idol_id" : 97, + "idol_name" : "高垣楓", + "idol_name_display" : "高垣楓", + "units" : [ { + "id" : "55", + "name" : "ミステリアスアイズ" + }, { + "id" : "63", + "name" : "ラブリーダイナーズ" + }, { + "id" : "124", + "name" : "女神たちの夏宴" + }, { + "id" : "141", + "name" : "トランクィル・ウィスパー" + }, { + "id" : "184", + "name" : "宵乙女" + }, { + "id" : "197", + "name" : "アズール・ムジカ" + }, { + "id" : "212", + "name" : "CINDERELLA GIRLS" + } ] +}, { + "aliases" : [ { + "hash" : "b7999fc204ef28323b6b656f66d46c42", + "id" : "2200601", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "80", + "waist" : "57", + "weight" : "41" + } + }, { + "hash" : "7b71466acb0f40616f8cf2fff65736e7", + "id" : "2300602", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "80", + "waist" : "57", + "weight" : "41" + } + }, { + "alias_name" : "天使な堕天使", + "alias_name_display" : "天使な堕天使", + "hash" : "c340069fa99350b0a29508ddf3392a44", + "id" : "2401101", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "80", + "waist" : "57", + "weight" : "41" + } + }, { + "alias_name" : "天使な堕天使", + "alias_name_display" : "天使な堕天使", + "hash" : "be29acd9c1b205a8c69f4fd5b8763b1d", + "id" : "2501102", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "80", + "waist" : "57", + "weight" : "41" + } + }, { + "alias_name" : "渚の天使", + "alias_name_display" : "渚の天使", + "hash" : "78ba6d819af44ef169d32cc6685541a1", + "id" : "2402601", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "80", + "waist" : "57", + "weight" : "41" + } + }, { + "alias_name" : "渚の天使", + "alias_name_display" : "渚の天使", + "hash" : "d1052359816fb13ba2b87fc90abccf00", + "id" : "2502602", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "80", + "waist" : "57", + "weight" : "41" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "070ed187236849ff082bcab7fde5af4c", + "id" : "2402701", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "80", + "waist" : "57", + "weight" : "41" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "b68433f5242f9a792a023ec1ad6e53fd", + "id" : "2502702", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "80", + "waist" : "57", + "weight" : "41" + } + }, { + "alias_name" : "覚醒魔王", + "alias_name_display" : "覚醒魔王", + "hash" : "5062961868cf70cc24fdb4fe6d319c14", + "id" : "2406401", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "80", + "waist" : "57", + "weight" : "41" + } + }, { + "alias_name" : "覚醒魔王", + "alias_name_display" : "覚醒魔王", + "hash" : "a8e4b70fb957baaeb029f6e09fb0965c", + "id" : "2506402", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "80", + "waist" : "57", + "weight" : "41" + } + }, { + "alias_name" : "シンデレラガール", + "alias_name_display" : "シンデレラガール", + "hash" : "f3f87f1ea01adffba286106b365275a8", + "id" : "2407301", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "80", + "waist" : "57", + "weight" : "41" + } + }, { + "alias_name" : "シンデレラガール", + "alias_name_display" : "シンデレラガール", + "hash" : "85fc0f386df052f15d27adcb09354ebc", + "id" : "2507302", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "80", + "waist" : "57", + "weight" : "41" + } + }, { + "alias_name" : "アニバーサリープリンセス", + "alias_name_display" : "アニバーサリープリンセス", + "event" : [ { + "event_id" : 410, + "event_name" : "アイドルプロデュース the 2nd Anniversary" + } ], + "hash" : "2843d6da5edda215be6641a742189bbd", + "id" : "2410801", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "80", + "waist" : "57", + "weight" : "41" + } + }, { + "alias_name" : "アニバーサリープリンセス", + "alias_name_display" : "アニバーサリープリンセス", + "event" : [ { + "event_id" : 410, + "event_name" : "アイドルプロデュース the 2nd Anniversary" + } ], + "hash" : "2fc7aaa1afffe3a797b9f64b8fac0a1e", + "id" : "2510802", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "80", + "waist" : "57", + "weight" : "41" + } + }, { + "alias_name" : "ワンダフルマジック", + "alias_name_display" : "ワンダフルマジック", + "hash" : "f8b9134d6146874bad5933a284a3d760", + "id" : "2413101", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "80", + "waist" : "57", + "weight" : "41" + } + }, { + "alias_name" : "ワンダフルマジック", + "alias_name_display" : "ワンダフルマジック", + "hash" : "d712a295960479bc715630e80c819f69", + "id" : "2513102", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "80", + "waist" : "57", + "weight" : "41" + } + }, { + "alias_name" : "紅蓮の夜姫", + "alias_name_display" : "紅蓮の夜姫", + "hash" : "9ed747defd1c6c795859a5170f375893", + "id" : "2418801", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "80", + "waist" : "57", + "weight" : "41" + } + }, { + "alias_name" : "紅蓮の夜姫", + "alias_name_display" : "紅蓮の夜姫", + "hash" : "29805f362930be2c4ad6c790285184c0", + "id" : "2518802", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "80", + "waist" : "57", + "weight" : "41" + } + }, { + "alias_name" : "ローゼンブルクエンゲル", + "alias_name_display" : "ローゼンブルクエンゲル", + "hash" : "a8966398cde53faf1eea3197d044fa09", + "id" : "2522502", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "80", + "waist" : "57", + "weight" : "41" + } + }, { + "alias_name" : "魔界の花嫁", + "alias_name_display" : "魔界の花嫁", + "hash" : "0cf0c9dda3969d5e0849f82ef76e3316", + "id" : "2424401", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "80", + "waist" : "57", + "weight" : "41" + } + }, { + "alias_name" : "魔界の花嫁", + "alias_name_display" : "魔界の花嫁", + "hash" : "3986012e2714597c8db0358919b7fcbf", + "id" : "2524402", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "80", + "waist" : "57", + "weight" : "41" + } + }, { + "alias_name" : "G4U!", + "alias_name_display" : "G4U!", + "hash" : "46d53903234e41082a542084e262e4ba", + "id" : "2528702", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "80", + "waist" : "57", + "weight" : "41" + } + }, { + "alias_name" : "春暁の紅姫", + "alias_name_display" : "春暁の紅姫", + "hash" : "fd87367a4c86b934f53471b7127afba7", + "id" : "2430101", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "80", + "waist" : "57", + "weight" : "41" + } + }, { + "alias_name" : "春暁の紅姫", + "alias_name_display" : "春暁の紅姫", + "hash" : "6782836a094a5ce9e71cdbf4d658fa90", + "id" : "2530102", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "80", + "waist" : "57", + "weight" : "41" + } + }, { + "alias_name" : "聖剣の救世主", + "alias_name_display" : "聖剣の救世主", + "hash" : "44f5225bbe4ef204a0840a870fb8604c", + "id" : "2434701", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "80", + "waist" : "57", + "weight" : "41" + } + }, { + "alias_name" : "聖剣の救世主", + "alias_name_display" : "聖剣の救世主", + "hash" : "3b9d6ba1ef0523d273c0203b04eb9400", + "id" : "2534702", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "80", + "waist" : "57", + "weight" : "41" + } + }, { + "alias_name" : "戦女神の先導", + "alias_name_display" : "戦女神の先導", + "hash" : "c96e33b66c7d171dee121d2438fac8f9", + "id" : "2438501", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "80", + "waist" : "57", + "weight" : "41" + } + }, { + "alias_name" : "戦女神の先導", + "alias_name_display" : "戦女神の先導", + "hash" : "5f1dd0a32dcb32f9b8e3ea9aa58a1e40", + "id" : "2538502", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "80", + "waist" : "57", + "weight" : "41" + } + } ], + "idol_id" : 98, + "idol_name" : "神崎蘭子", + "idol_name_display" : "神崎蘭子", + "units" : [ { + "id" : "1", + "name" : "Rosenburg Engel" + }, { + "id" : "32", + "name" : "ダークイルミネイト" + }, { + "id" : "82", + "name" : "Rosenburg Alptraum" + }, { + "id" : "145", + "name" : "LOVE LAIKA with Rosenburg Engel" + }, { + "id" : "197", + "name" : "アズール・ムジカ" + }, { + "id" : "205", + "name" : "シンデレラガール" + }, { + "id" : "213", + "name" : "CINDERELLA PROJECT" + } ] +}, { + "aliases" : [ { + "hash" : "cdd97d8779d5ae35b16aa32bf8172e9f", + "id" : "2200701", + "profile" : { + "bust" : "86", + "height" : "160", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "hash" : "f195a81a91c75e9d98525f587f6e5e56", + "id" : "2300702", + "profile" : { + "bust" : "86", + "height" : "160", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "ドイツスタイル", + "alias_name_display" : "ドイツスタイル", + "event" : [ { + "event_id" : 507, + "event_name" : "LIVEツアーカーニバルinドイツ" + } ], + "hash" : "21af17a4bb477771fb3703e37057ab2b", + "id" : "2211501", + "profile" : { + "bust" : "86", + "height" : "160", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "ドイツスタイル", + "alias_name_display" : "ドイツスタイル", + "event" : [ { + "event_id" : 507, + "event_name" : "LIVEツアーカーニバルinドイツ" + } ], + "hash" : "8a7a51f05959f050fc08990b8fe0bf00", + "id" : "2311502", + "profile" : { + "bust" : "86", + "height" : "160", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "トキメキバレンタイン", + "alias_name_display" : "トキメキバレンタイン", + "hash" : "d2fcb5170107ae3baf66c07e64409aeb", + "id" : "2214201", + "profile" : { + "bust" : "86", + "height" : "160", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "トキメキバレンタイン", + "alias_name_display" : "トキメキバレンタイン", + "hash" : "49ec3fa6693f3812579564738780bb08", + "id" : "2314202", + "profile" : { + "bust" : "86", + "height" : "160", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "旅の相棒", + "alias_name_display" : "旅の相棒", + "hash" : "81ca74ea273f671e22a08f61fa2578ab", + "id" : "2220301", + "profile" : { + "bust" : "86", + "height" : "160", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "旅の相棒", + "alias_name_display" : "旅の相棒", + "hash" : "cec4772afa818025f97cf2cad08688ba", + "id" : "2320302", + "profile" : { + "bust" : "86", + "height" : "160", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "レヴリーエトランゼ", + "alias_name_display" : "レヴリーエトランゼ", + "hash" : "3a226e6ae482ebdf9debda9cc66fe2e3", + "id" : "2230601", + "profile" : { + "bust" : "86", + "height" : "160", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "レヴリーエトランゼ", + "alias_name_display" : "レヴリーエトランゼ", + "hash" : "3268dec7a8de3f1191ef4709ba9cbf17", + "id" : "2330602", + "profile" : { + "bust" : "86", + "height" : "160", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "悠久の旅人", + "alias_name_display" : "悠久の旅人", + "event" : [ { + "event_id" : 512, + "event_name" : "西部公演 ガンスリンガージャーニー" + } ], + "hash" : "4543c56aa20c9a1c2e6143b3e3044721", + "id" : "2415001", + "profile" : { + "bust" : "86", + "height" : "160", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "悠久の旅人", + "alias_name_display" : "悠久の旅人", + "event" : [ { + "event_id" : 512, + "event_name" : "西部公演 ガンスリンガージャーニー" + } ], + "hash" : "5603dd64eec2f5217be0ec6c4d7e7b5d", + "id" : "2515002", + "profile" : { + "bust" : "86", + "height" : "160", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "トラベル・ロワイヤル", + "alias_name_display" : "トラベル・ロワイヤル", + "event" : [ { + "event_id" : 814, + "event_name" : "第14回アイドルLIVEロワイヤル" + } ], + "hash" : "375bd729a614047d02d20c4ad6e211e1", + "id" : "2428101", + "profile" : { + "bust" : "86", + "height" : "160", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "トラベル・ロワイヤル", + "alias_name_display" : "トラベル・ロワイヤル", + "event" : [ { + "event_id" : 814, + "event_name" : "第14回アイドルLIVEロワイヤル" + } ], + "hash" : "4edd386fb6e33c087895ed627fea7eaa", + "id" : "2528102", + "profile" : { + "bust" : "86", + "height" : "160", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "夏の一瞬", + "alias_name_display" : "夏の一瞬", + "event" : [ { + "event_id" : 723, + "event_name" : "水着DEドリームLIVEフェスティバル" + } ], + "hash" : "8b202b6cb4600cd6d956973ea303bed9", + "id" : "2434101", + "profile" : { + "bust" : "86", + "height" : "160", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "夏の一瞬", + "alias_name_display" : "夏の一瞬", + "event" : [ { + "event_id" : 723, + "event_name" : "水着DEドリームLIVEフェスティバル" + } ], + "hash" : "2b04d07128e9d3935b7505599d21f522", + "id" : "2534102", + "profile" : { + "bust" : "86", + "height" : "160", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + } ], + "idol_id" : 99, + "idol_name" : "伊集院惠", + "idol_name_display" : "伊集院惠", + "units" : [ { + "id" : "37", + "name" : "ナイトブルーレザー" + }, { + "id" : "97", + "name" : "ドイツスタイル" + }, { + "id" : "167", + "name" : "ロマンティックツアーズ" + } ] +}, { + "aliases" : [ { + "hash" : "e8a68de320c6b9d699b376a3893c9eeb", + "id" : "2200801", + "profile" : { + "bust" : "84", + "height" : "167", + "hip" : "83", + "waist" : "54", + "weight" : "43" + } + }, { + "hash" : "2015f0f8b5bd2bc1495307c22000397e", + "id" : "2300802", + "profile" : { + "bust" : "84", + "height" : "167", + "hip" : "83", + "waist" : "54", + "weight" : "43" + } + }, { + "alias_name" : "湯けむり温泉", + "alias_name_display" : "湯けむり温泉", + "hash" : "4f99fef782ecceda83db3254f236bcd0", + "id" : "2206701", + "profile" : { + "bust" : "84", + "height" : "167", + "hip" : "83", + "waist" : "54", + "weight" : "43" + } + }, { + "alias_name" : "湯けむり温泉", + "alias_name_display" : "湯けむり温泉", + "hash" : "aae21e3bdfa77ef0d2dd17459f21b6d3", + "id" : "2306702", + "profile" : { + "bust" : "84", + "height" : "167", + "hip" : "83", + "waist" : "54", + "weight" : "43" + } + }, { + "alias_name" : "セクシーグレープ", + "alias_name_display" : "セクシーグレープ", + "hash" : "74418998e04b4f684cd4033ff4f446ca", + "id" : "2211401", + "profile" : { + "bust" : "84", + "height" : "167", + "hip" : "83", + "waist" : "54", + "weight" : "43" + } + }, { + "alias_name" : "セクシーグレープ", + "alias_name_display" : "セクシーグレープ", + "hash" : "376eec8a0c1cdbeb4f8f9df252c3b885", + "id" : "2311402", + "profile" : { + "bust" : "84", + "height" : "167", + "hip" : "83", + "waist" : "54", + "weight" : "43" + } + }, { + "alias_name" : "新春コレクション", + "alias_name_display" : "新春コレクション", + "hash" : "ba0b7d351ead3ab555661e0809c99dfc", + "id" : "2213801", + "profile" : { + "bust" : "84", + "height" : "167", + "hip" : "83", + "waist" : "54", + "weight" : "43" + } + }, { + "alias_name" : "新春コレクション", + "alias_name_display" : "新春コレクション", + "hash" : "096ce8e1c6c74d2224659f4cd525613f", + "id" : "2313802", + "profile" : { + "bust" : "84", + "height" : "167", + "hip" : "83", + "waist" : "54", + "weight" : "43" + } + }, { + "alias_name" : "ルアードレディ", + "alias_name_display" : "ルアードレディ", + "hash" : "cb7e7c77ba31e6603cfdba7e39c0631e", + "id" : "2221101", + "profile" : { + "bust" : "84", + "height" : "167", + "hip" : "83", + "waist" : "54", + "weight" : "43" + } + }, { + "alias_name" : "ルアードレディ", + "alias_name_display" : "ルアードレディ", + "hash" : "0f6a6629245897604e27472f913f5629", + "id" : "2321102", + "profile" : { + "bust" : "84", + "height" : "167", + "hip" : "83", + "waist" : "54", + "weight" : "43" + } + }, { + "alias_name" : "スクールプール", + "alias_name_display" : "スクールプール", + "hash" : "93e784df4ef0fafec8220d0a5e2e529e", + "id" : "2227501", + "profile" : { + "bust" : "84", + "height" : "167", + "hip" : "83", + "waist" : "54", + "weight" : "43" + } + }, { + "alias_name" : "スクールプール", + "alias_name_display" : "スクールプール", + "hash" : "ca3f01b1c48fa13d98db5adfab3f8794", + "id" : "2327502", + "profile" : { + "bust" : "84", + "height" : "167", + "hip" : "83", + "waist" : "54", + "weight" : "43" + } + }, { + "alias_name" : "T.B.チアーズ", + "alias_name_display" : "T.B.チアーズ", + "event" : [ { + "event_id" : 1511, + "event_name" : "第11回チーム対抗トークバトルショー" + } ], + "hash" : "4fb9bd8fbdc077a3c0eda99f05484416", + "id" : "2230701", + "profile" : { + "bust" : "84", + "height" : "167", + "hip" : "83", + "waist" : "54", + "weight" : "43" + } + }, { + "alias_name" : "T.B.チアーズ", + "alias_name_display" : "T.B.チアーズ", + "event" : [ { + "event_id" : 1511, + "event_name" : "第11回チーム対抗トークバトルショー" + } ], + "hash" : "daf82424b3ded489e757ac9bb5246cd5", + "id" : "2330702", + "profile" : { + "bust" : "84", + "height" : "167", + "hip" : "83", + "waist" : "54", + "weight" : "43" + } + }, { + "alias_name" : "ほろ酔い艶美", + "alias_name_display" : "ほろ酔い艶美", + "event" : [ { + "event_id" : 104, + "event_name" : "桜舞う花見祭り" + } ], + "hash" : "5b83e49adcfae4f92a483276ce2874b9", + "id" : "2401301", + "profile" : { + "bust" : "84", + "height" : "167", + "hip" : "83", + "waist" : "54", + "weight" : "43" + } + }, { + "alias_name" : "ほろ酔い艶美", + "alias_name_display" : "ほろ酔い艶美", + "event" : [ { + "event_id" : 104, + "event_name" : "桜舞う花見祭り" + } ], + "hash" : "9ddc388fb6bd94b4ada76f35ff491b89", + "id" : "2501302", + "profile" : { + "bust" : "84", + "height" : "167", + "hip" : "83", + "waist" : "54", + "weight" : "43" + } + }, { + "alias_name" : "ドランカーパイレーツ", + "alias_name_display" : "ドランカーパイレーツ", + "event" : [ { + "event_id" : 513, + "event_name" : "海賊公演 オーシャンクルーズ" + } ], + "hash" : "bea24ae5a00b7dcbc889143658508c41", + "id" : "2415701", + "profile" : { + "bust" : "84", + "height" : "167", + "hip" : "83", + "waist" : "54", + "weight" : "43" + } + }, { + "alias_name" : "ドランカーパイレーツ", + "alias_name_display" : "ドランカーパイレーツ", + "event" : [ { + "event_id" : 513, + "event_name" : "海賊公演 オーシャンクルーズ" + } ], + "hash" : "5fc1f15a4e70c64c6578984d141fc9c5", + "id" : "2515702", + "profile" : { + "bust" : "84", + "height" : "167", + "hip" : "83", + "waist" : "54", + "weight" : "43" + } + }, { + "alias_name" : "ドランク・ロワイヤル", + "alias_name_display" : "ドランク・ロワイヤル", + "event" : [ { + "event_id" : 815, + "event_name" : "アイドルLIVEロワイヤル クリスマスSP" + } ], + "hash" : "2d02c06b0e7b8281e28f470dfece9075", + "id" : "2429301", + "profile" : { + "bust" : "84", + "height" : "167", + "hip" : "83", + "waist" : "54", + "weight" : "43" + } + }, { + "alias_name" : "ドランク・ロワイヤル", + "alias_name_display" : "ドランク・ロワイヤル", + "event" : [ { + "event_id" : 815, + "event_name" : "アイドルLIVEロワイヤル クリスマスSP" + } ], + "hash" : "eebf9cbe74825c11552fc61be114e2cc", + "id" : "2529302", + "profile" : { + "bust" : "84", + "height" : "167", + "hip" : "83", + "waist" : "54", + "weight" : "43" + } + } ], + "idol_id" : 100, + "idol_name" : "柊志乃", + "idol_name_display" : "柊志乃", + "units" : [ { + "id" : "207", + "name" : "ムーランルージュ" + } ] +}, { + "aliases" : [ { + "hash" : "d3e95e1ca3c7b346535ad23e8619ec7e", + "id" : "2200901", + "profile" : { + "bust" : "83", + "height" : "155", + "hip" : "81", + "waist" : "55", + "weight" : "42" + } + }, { + "hash" : "341cefa6c1f43b09054cabc7f0b0c93b", + "id" : "2300902", + "profile" : { + "bust" : "83", + "height" : "155", + "hip" : "81", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "制服コレクション", + "alias_name_display" : "制服コレクション", + "hash" : "cdcd2f0aba695f13e4fd8c1fe7eeacfd", + "id" : "2203401", + "profile" : { + "bust" : "83", + "height" : "155", + "hip" : "81", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "制服コレクション", + "alias_name_display" : "制服コレクション", + "hash" : "4b1040a6e8b8397273697cf5c3201554", + "id" : "2303402", + "profile" : { + "bust" : "83", + "height" : "155", + "hip" : "81", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "煌めきの乙女", + "alias_name_display" : "煌めきの乙女", + "hash" : "855d33d77752c725474da494a0e9e239", + "id" : "2402801", + "profile" : { + "bust" : "83", + "height" : "155", + "hip" : "81", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "煌めきの乙女", + "alias_name_display" : "煌めきの乙女", + "hash" : "7d8203e3cc992b16c5308358601375ea", + "id" : "2502802", + "profile" : { + "bust" : "83", + "height" : "155", + "hip" : "81", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "アニバーサリーゴシック", + "alias_name_display" : "アニバーサリーゴシック", + "event" : [ { + "event_id" : 403, + "event_name" : "アイドルプロデュース the 1st Anniversary" + } ], + "hash" : "475dcbd4ce790875aa25b1580d0ba63a", + "id" : "2404201", + "profile" : { + "bust" : "83", + "height" : "155", + "hip" : "81", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "アニバーサリーゴシック", + "alias_name_display" : "アニバーサリーゴシック", + "event" : [ { + "event_id" : 403, + "event_name" : "アイドルプロデュース the 1st Anniversary" + } ], + "hash" : "dd74a48fb25bdfe6d21f2a9efc24962f", + "id" : "2504202", + "profile" : { + "bust" : "83", + "height" : "155", + "hip" : "81", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "純白の花嫁", + "alias_name_display" : "純白の花嫁", + "hash" : "897d188e373b0578baf1aeae8632ae2b", + "id" : "2407101", + "profile" : { + "bust" : "83", + "height" : "155", + "hip" : "81", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "純白の花嫁", + "alias_name_display" : "純白の花嫁", + "hash" : "d5875dd6bd8f6aac5806e34d8528cd9f", + "id" : "2507102", + "profile" : { + "bust" : "83", + "height" : "155", + "hip" : "81", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "アニバーサリーゴシック・S", + "alias_name_display" : "アニバーサリーゴシック・S", + "event" : [ { + "event_id" : 403, + "event_name" : "アイドルプロデュース the 1st Anniversary" + } ], + "hash" : "0c58246fd64877bd1dce7795bcabf67a", + "id" : "2411101", + "profile" : { + "bust" : "83", + "height" : "155", + "hip" : "81", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "アニバーサリーゴシック・S", + "alias_name_display" : "アニバーサリーゴシック・S", + "event" : [ { + "event_id" : 403, + "event_name" : "アイドルプロデュース the 1st Anniversary" + } ], + "hash" : "8b6b38f0b127fe5a28fca3a8f7956f5c", + "id" : "2511102", + "profile" : { + "bust" : "83", + "height" : "155", + "hip" : "81", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "7ee6439b7345b1a66cafe6a16b5bdc0e", + "id" : "2414101", + "profile" : { + "bust" : "83", + "height" : "155", + "hip" : "81", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "322825cf0a562732b6c7b4dad80044c1", + "id" : "2514102", + "profile" : { + "bust" : "83", + "height" : "155", + "hip" : "81", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "夜宴の白芙蓉", + "alias_name_display" : "夜宴の白芙蓉", + "hash" : "9dd0ceb4c25a93738fd68e7abe04ed50", + "id" : "2414301", + "profile" : { + "bust" : "83", + "height" : "155", + "hip" : "81", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "夜宴の白芙蓉", + "alias_name_display" : "夜宴の白芙蓉", + "hash" : "733b81fd13ee7e9487977db31dae2e81", + "id" : "2514302", + "profile" : { + "bust" : "83", + "height" : "155", + "hip" : "81", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "希望の聖夜", + "alias_name_display" : "希望の聖夜", + "hash" : "e3f8f4bf12f8b4d77ff1cec13f3d1cc6", + "id" : "2419701", + "profile" : { + "bust" : "83", + "height" : "155", + "hip" : "81", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "希望の聖夜", + "alias_name_display" : "希望の聖夜", + "hash" : "c9f0d361ba7ba794be9a0870b20dfa93", + "id" : "2519702", + "profile" : { + "bust" : "83", + "height" : "155", + "hip" : "81", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "トゥルーフレーズ", + "alias_name_display" : "トゥルーフレーズ", + "event" : [ { + "event_id" : 716, + "event_name" : "第16回ドリームLIVEフェスティバル" + } ], + "hash" : "16fb8740d56d5bd611a39d3b34f68dc1", + "id" : "2427201", + "profile" : { + "bust" : "83", + "height" : "155", + "hip" : "81", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "トゥルーフレーズ", + "alias_name_display" : "トゥルーフレーズ", + "event" : [ { + "event_id" : 716, + "event_name" : "第16回ドリームLIVEフェスティバル" + } ], + "hash" : "680a961819a3b3abdbc4bff8e775f77c", + "id" : "2527202", + "profile" : { + "bust" : "83", + "height" : "155", + "hip" : "81", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "シンデレラドリーム", + "alias_name_display" : "シンデレラドリーム", + "hash" : "69b474b2a628832f1417e240ae75d852", + "id" : "2432401", + "profile" : { + "bust" : "83", + "height" : "155", + "hip" : "81", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "シンデレラドリーム", + "alias_name_display" : "シンデレラドリーム", + "hash" : "bfe0a1bc64586ae1ea9b4c596760ffe1", + "id" : "2532402", + "profile" : { + "bust" : "83", + "height" : "155", + "hip" : "81", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "きらめく夏色", + "alias_name_display" : "きらめく夏色", + "hash" : "01d63e58192a6deee186a9f9d3bce2d9", + "id" : "2434201", + "profile" : { + "bust" : "83", + "height" : "155", + "hip" : "81", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "きらめく夏色", + "alias_name_display" : "きらめく夏色", + "hash" : "dbf0e5fc40f2d08121adcb97cfe013d8", + "id" : "2534202", + "profile" : { + "bust" : "83", + "height" : "155", + "hip" : "81", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "テンダークリスタル", + "alias_name_display" : "テンダークリスタル", + "hash" : "df7e2cdb0ec4b9b67f8718568e62641b", + "id" : "2436801", + "profile" : { + "bust" : "83", + "height" : "155", + "hip" : "81", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "テンダークリスタル", + "alias_name_display" : "テンダークリスタル", + "hash" : "846cbe9ab87264c80ab22de8776c78a9", + "id" : "2536802", + "profile" : { + "bust" : "83", + "height" : "155", + "hip" : "81", + "waist" : "55", + "weight" : "42" + } + } ], + "idol_id" : 101, + "idol_name" : "北条加蓮", + "idol_name_display" : "北条加蓮", + "units" : [ { + "id" : "60", + "name" : "モノクロームリリィ" + }, { + "id" : "127", + "name" : "落花流水" + }, { + "id" : "144", + "name" : "Triad Primus" + }, { + "id" : "192", + "name" : "Masque:Rade" + }, { + "id" : "201", + "name" : "Caskets" + }, { + "id" : "215", + "name" : "Project:Krone" + } ] +}, { + "aliases" : [ { + "hash" : "583f455902cb4a78514d6eae2037e178", + "id" : "2201001", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "85", + "waist" : "59", + "weight" : "45" + } + }, { + "hash" : "e9dc3020f7c0a9b17cd4fe81e2b19c06", + "id" : "2301002", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "85", + "waist" : "59", + "weight" : "45" + } + }, { + "alias_name" : "UKスタイル", + "alias_name_display" : "UKスタイル", + "event" : [ { + "event_id" : 502, + "event_name" : "アイドルLIVEツアーinイギリス" + } ], + "hash" : "ce89872af095d6d542918865737692d0", + "id" : "2207801", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "85", + "waist" : "59", + "weight" : "45" + } + }, { + "alias_name" : "UKスタイル", + "alias_name_display" : "UKスタイル", + "event" : [ { + "event_id" : 502, + "event_name" : "アイドルLIVEツアーinイギリス" + } ], + "hash" : "0018fa3e6f76077d742f60a71ae9d9ae", + "id" : "2307802", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "85", + "waist" : "59", + "weight" : "45" + } + }, { + "alias_name" : "ピッチピチ☆ピーチ", + "alias_name_display" : "ピッチピチ☆ピーチ", + "hash" : "813ab4f5eb52eaa3d7e228cfe1ee06c3", + "id" : "2216001", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "85", + "waist" : "59", + "weight" : "45" + } + }, { + "alias_name" : "ピッチピチ☆ピーチ", + "alias_name_display" : "ピッチピチ☆ピーチ", + "hash" : "f1cec9f8d3be0ecae1393821e4246fad", + "id" : "2316002", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "85", + "waist" : "59", + "weight" : "45" + } + }, { + "alias_name" : "バレンタインデビル", + "alias_name_display" : "バレンタインデビル", + "hash" : "856f71d876bf6d3ad2fe96c51095397e", + "id" : "2219601", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "85", + "waist" : "59", + "weight" : "45" + } + }, { + "alias_name" : "バレンタインデビル", + "alias_name_display" : "バレンタインデビル", + "hash" : "4b1fa677378483b3a62a6aa8acd8720b", + "id" : "2319602", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "85", + "waist" : "59", + "weight" : "45" + } + }, { + "alias_name" : "紅葉温泉", + "alias_name_display" : "紅葉温泉", + "hash" : "8a35c69116be6ae367c4f422bedcfec5", + "id" : "2224001", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "85", + "waist" : "59", + "weight" : "45" + } + }, { + "alias_name" : "紅葉温泉", + "alias_name_display" : "紅葉温泉", + "hash" : "42bc768dec405b1c0a70c399638efdaf", + "id" : "2324002", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "85", + "waist" : "59", + "weight" : "45" + } + }, { + "alias_name" : "リラックスプレイス", + "alias_name_display" : "リラックスプレイス", + "event" : [ { + "event_id" : "027", + "event_name" : "第27回プロダクションマッチフェスティバル" + } ], + "hash" : "c9bfbeec109cbeaca409a2b420dbb865", + "id" : "2226301", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "85", + "waist" : "59", + "weight" : "45" + } + }, { + "alias_name" : "リラックスプレイス", + "alias_name_display" : "リラックスプレイス", + "event" : [ { + "event_id" : "027", + "event_name" : "第27回プロダクションマッチフェスティバル" + } ], + "hash" : "336d185e08236f2f1a1aca4b54705398", + "id" : "2326302", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "85", + "waist" : "59", + "weight" : "45" + } + }, { + "alias_name" : "迎春神楽", + "alias_name_display" : "迎春神楽", + "hash" : "4a24ef82ffe14e9063b5732f80a4de5b", + "id" : "2229901", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "85", + "waist" : "59", + "weight" : "45" + } + }, { + "alias_name" : "迎春神楽", + "alias_name_display" : "迎春神楽", + "hash" : "0a07e2a4bba52f714420ba5947665f25", + "id" : "2329902", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "85", + "waist" : "59", + "weight" : "45" + } + }, { + "alias_name" : "スプラッシュビューティー", + "alias_name_display" : "スプラッシュビューティー", + "event" : [ { + "event_id" : 211, + "event_name" : "アイドルサバイバルinサマーバケーション" + } ], + "hash" : "aa5bfe6bacceda82855bfd67597c8461", + "id" : "2408601", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "85", + "waist" : "59", + "weight" : "45" + } + }, { + "alias_name" : "スプラッシュビューティー", + "alias_name_display" : "スプラッシュビューティー", + "event" : [ { + "event_id" : 211, + "event_name" : "アイドルサバイバルinサマーバケーション" + } ], + "hash" : "1ab901851235156066b6c8d1ab519f22", + "id" : "2508602", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "85", + "waist" : "59", + "weight" : "45" + } + }, { + "alias_name" : "シャッターチャンス", + "alias_name_display" : "シャッターチャンス", + "event" : [ { + "event_id" : 1402, + "event_name" : "第2回ぷちデレラコレクション" + } ], + "hash" : "1a8e02458666accbaf80da3020365ab5", + "id" : "2424001", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "85", + "waist" : "59", + "weight" : "45" + } + }, { + "alias_name" : "シャッターチャンス", + "alias_name_display" : "シャッターチャンス", + "event" : [ { + "event_id" : 1402, + "event_name" : "第2回ぷちデレラコレクション" + } ], + "hash" : "e931ed75eb91bcd9735bc590a92c07d6", + "id" : "2524002", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "85", + "waist" : "59", + "weight" : "45" + } + } ], + "idol_id" : 102, + "idol_name" : "ケイト", + "idol_name_display" : "ケイト", + "units" : [ { + "id" : "37", + "name" : "ナイトブルーレザー" + }, { + "id" : "125", + "name" : "ユア・フレンズ" + }, { + "id" : "170", + "name" : "UKスタイル" + } ] +}, { + "aliases" : [ { + "hash" : "fff13e1315d12b403dc3d4e0d29f55eb", + "id" : "2201101", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "83", + "waist" : "58", + "weight" : "48" + } + }, { + "hash" : "034a9852b29dbc0b2308204b575a6bbd", + "id" : "2301102", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "83", + "waist" : "58", + "weight" : "48" + } + }, { + "alias_name" : "マーメイドパラダイス", + "alias_name_display" : "マーメイドパラダイス", + "hash" : "70cdd1add523e358191d5af81ed40a2d", + "id" : "2205201", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "83", + "waist" : "58", + "weight" : "48" + } + }, { + "alias_name" : "マーメイドパラダイス", + "alias_name_display" : "マーメイドパラダイス", + "hash" : "3bfdd43bed9438273cd3e7018e9cdd12", + "id" : "2305202", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "83", + "waist" : "58", + "weight" : "48" + } + }, { + "alias_name" : "ハッピーウェディング", + "alias_name_display" : "ハッピーウェディング", + "hash" : "c5fe53e9e75145b9e155df1133f562b9", + "id" : "2216201", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "83", + "waist" : "58", + "weight" : "48" + } + }, { + "alias_name" : "ハッピーウェディング", + "alias_name_display" : "ハッピーウェディング", + "hash" : "1b4fccc2662d8ffbb0e171e6ed088f08", + "id" : "2316202", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "83", + "waist" : "58", + "weight" : "48" + } + }, { + "alias_name" : "レディロッサ", + "alias_name_display" : "レディロッサ", + "event" : [ { + "event_id" : 1304, + "event_name" : "第4回プロダクションマッチフェスティバルS" + } ], + "hash" : "7e27f0eb3f898113a98097901e421c25", + "id" : "2322002", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "83", + "waist" : "58", + "weight" : "48" + } + }, { + "alias_name" : "メイクオーバー", + "alias_name_display" : "メイクオーバー", + "hash" : "405d9f977eb9e5ae55806f8681022813", + "id" : "2229401", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "83", + "waist" : "58", + "weight" : "48" + } + }, { + "alias_name" : "メイクオーバー", + "alias_name_display" : "メイクオーバー", + "hash" : "3baa4206d90f9d4411968bd934e8cb91", + "id" : "2329402", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "83", + "waist" : "58", + "weight" : "48" + } + }, { + "alias_name" : "オーシャンズギフト", + "alias_name_display" : "オーシャンズギフト", + "hash" : "2f1fec2362b65429cfbdbfa86c0e4fc6", + "id" : "2232201", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "83", + "waist" : "58", + "weight" : "48" + } + }, { + "alias_name" : "オーシャンズギフト", + "alias_name_display" : "オーシャンズギフト", + "hash" : "d645469362599b364cefb3ec192bc716", + "id" : "2332202", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "83", + "waist" : "58", + "weight" : "48" + } + }, { + "alias_name" : "白波の歌姫", + "alias_name_display" : "白波の歌姫", + "hash" : "1bc4222250340e81704f822d87ef28ee", + "id" : "2407601", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "83", + "waist" : "58", + "weight" : "48" + } + }, { + "alias_name" : "白波の歌姫", + "alias_name_display" : "白波の歌姫", + "hash" : "492654aed867cdcad6f852b3f2c644ea", + "id" : "2507602", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "83", + "waist" : "58", + "weight" : "48" + } + }, { + "alias_name" : "ラッシュ・ロワイヤル", + "alias_name_display" : "ラッシュ・ロワイヤル", + "event" : [ { + "event_id" : 807, + "event_name" : "第7回アイドルLIVEロワイヤル" + } ], + "hash" : "c2b247795dc4ab5555062010e1f49218", + "id" : "2418401", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "83", + "waist" : "58", + "weight" : "48" + } + }, { + "alias_name" : "ラッシュ・ロワイヤル", + "alias_name_display" : "ラッシュ・ロワイヤル", + "event" : [ { + "event_id" : 807, + "event_name" : "第7回アイドルLIVEロワイヤル" + } ], + "hash" : "12327daf4fd261820750b0cdd031c72f", + "id" : "2518402", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "83", + "waist" : "58", + "weight" : "48" + } + }, { + "alias_name" : "ドリームブライト", + "alias_name_display" : "ドリームブライト", + "event" : [ { + "event_id" : 721, + "event_name" : "第21回ドリームLIVEフェスティバル" + } ], + "hash" : "4298819e543828c4fe4d52415ce2b7a2", + "id" : "2432501", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "83", + "waist" : "58", + "weight" : "48" + } + }, { + "alias_name" : "ドリームブライト", + "alias_name_display" : "ドリームブライト", + "event" : [ { + "event_id" : 721, + "event_name" : "第21回ドリームLIVEフェスティバル" + } ], + "hash" : "8518eb7db20611b6e579e44780f6fe24", + "id" : "2532502", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "83", + "waist" : "58", + "weight" : "48" + } + } ], + "idol_id" : 103, + "idol_name" : "瀬名詩織", + "idol_name_display" : "瀬名詩織", + "units" : [ { + "id" : "132", + "name" : "thinE/Dasein" + }, { + "id" : "171", + "name" : "Black/White-Roses" + }, { + "id" : "182", + "name" : "マーメイドパラダイス" + } ] +}, { + "aliases" : [ { + "hash" : "86972ac887ef7cdbd493b5c04cdfd8ae", + "id" : "2201201", + "profile" : { + "bust" : "85", + "height" : "161", + "hip" : "84", + "waist" : "57", + "weight" : "46" + } + }, { + "hash" : "829397535a2dda749dc533961eae03e1", + "id" : "2301202", + "profile" : { + "bust" : "85", + "height" : "161", + "hip" : "84", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "制服コレクション", + "alias_name_display" : "制服コレクション", + "hash" : "e2fa19e51b793a88860a1fa01d773b5d", + "id" : "2209101", + "profile" : { + "bust" : "85", + "height" : "161", + "hip" : "84", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "制服コレクション", + "alias_name_display" : "制服コレクション", + "hash" : "ef5260d9e7b2be838b8fe51c98a17dea", + "id" : "2309102", + "profile" : { + "bust" : "85", + "height" : "161", + "hip" : "84", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "プリマ・ガール", + "alias_name_display" : "プリマ・ガール", + "hash" : "65aa48277443a7498e3181e6ded0f4bd", + "id" : "2212501", + "profile" : { + "bust" : "85", + "height" : "161", + "hip" : "84", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "プリマ・ガール", + "alias_name_display" : "プリマ・ガール", + "hash" : "a5794d6e6f993dad76d41c59f7564169", + "id" : "2312502", + "profile" : { + "bust" : "85", + "height" : "161", + "hip" : "84", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "夏祭り", + "alias_name_display" : "夏祭り", + "event" : [ { + "event_id" : 714, + "event_name" : "夏祭りDEドリームLIVEフェスティバル" + } ], + "hash" : "b87250559476bd36e7a4edd44b2eb222", + "id" : "2321702", + "profile" : { + "bust" : "85", + "height" : "161", + "hip" : "84", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "努力のメソッド", + "alias_name_display" : "努力のメソッド", + "hash" : "0ad081c3907847d493a7affac9507fe7", + "id" : "2226601", + "profile" : { + "bust" : "85", + "height" : "161", + "hip" : "84", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "努力のメソッド", + "alias_name_display" : "努力のメソッド", + "hash" : "49cc7476bd18bdeef7db013a4800066e", + "id" : "2326602", + "profile" : { + "bust" : "85", + "height" : "161", + "hip" : "84", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "迎春神楽", + "alias_name_display" : "迎春神楽", + "hash" : "89abb5eb2a87fa7139ae8a92c5d53de3", + "id" : "2229801", + "profile" : { + "bust" : "85", + "height" : "161", + "hip" : "84", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "迎春神楽", + "alias_name_display" : "迎春神楽", + "hash" : "b94589aec610282ec14866f5256f6d69", + "id" : "2329802", + "profile" : { + "bust" : "85", + "height" : "161", + "hip" : "84", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ベーカリーI.C", + "alias_name_display" : "ベーカリーI.C", + "hash" : "acfd757cd1d818e44a257bab42cbc34f", + "id" : "2332102", + "profile" : { + "bust" : "85", + "height" : "161", + "hip" : "84", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ピュアハート", + "alias_name_display" : "ピュアハート", + "event" : [ { + "event_id" : 103, + "event_name" : "バレンタインパーティー" + } ], + "hash" : "9bd2a6f5cc1748d651d0e2ecf34b0b37", + "id" : "2401001", + "profile" : { + "bust" : "85", + "height" : "161", + "hip" : "84", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ピュアハート", + "alias_name_display" : "ピュアハート", + "event" : [ { + "event_id" : 103, + "event_name" : "バレンタインパーティー" + } ], + "hash" : "381325f3180288e9b294f4fe6895063c", + "id" : "2501002", + "profile" : { + "bust" : "85", + "height" : "161", + "hip" : "84", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ドキドキ☆チャレンジ", + "alias_name_display" : "ドキドキ☆チャレンジ", + "hash" : "99fbb3e80d42f6a456d1f1dbbfbe2ad9", + "id" : "2412601", + "profile" : { + "bust" : "85", + "height" : "161", + "hip" : "84", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ドキドキ☆チャレンジ", + "alias_name_display" : "ドキドキ☆チャレンジ", + "hash" : "cf78a1a8fa2662da9903e87ff7fc35cd", + "id" : "2512602", + "profile" : { + "bust" : "85", + "height" : "161", + "hip" : "84", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "クロネコチアー", + "alias_name_display" : "クロネコチアー", + "event" : [ { + "event_id" : 1106, + "event_name" : "プロダクション対抗トークバトルショー ハロウィンSP" + } ], + "hash" : "9165c2689a8b2dc898abea7c588bf4fb", + "id" : "2418601", + "profile" : { + "bust" : "85", + "height" : "161", + "hip" : "84", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "クロネコチアー", + "alias_name_display" : "クロネコチアー", + "event" : [ { + "event_id" : 1106, + "event_name" : "プロダクション対抗トークバトルショー ハロウィンSP" + } ], + "hash" : "4c7ad97f4e839bcc5a54b54bd69b731b", + "id" : "2518602", + "profile" : { + "bust" : "85", + "height" : "161", + "hip" : "84", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ロワイヤル・スクエア", + "alias_name_display" : "ロワイヤル・スクエア", + "event" : [ { + "event_id" : 809, + "event_name" : "第9回アイドルLIVEロワイヤル" + } ], + "hash" : "f7cf30adf9a3efe1c1994729fb9e5d2a", + "id" : "2420601", + "profile" : { + "bust" : "85", + "height" : "161", + "hip" : "84", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ロワイヤル・スクエア", + "alias_name_display" : "ロワイヤル・スクエア", + "event" : [ { + "event_id" : 809, + "event_name" : "第9回アイドルLIVEロワイヤル" + } ], + "hash" : "582c4b7e8369b6f5cb65c7a949a59d98", + "id" : "2520602", + "profile" : { + "bust" : "85", + "height" : "161", + "hip" : "84", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "クーリッシュラブリー", + "alias_name_display" : "クーリッシュラブリー", + "event" : [ { + "event_id" : 1404, + "event_name" : "第4回ぷちデレラコレクション" + } ], + "hash" : "735912142ede0bd3c2379e81506ebf51", + "id" : "2428201", + "profile" : { + "bust" : "85", + "height" : "161", + "hip" : "84", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "クーリッシュラブリー", + "alias_name_display" : "クーリッシュラブリー", + "event" : [ { + "event_id" : 1404, + "event_name" : "第4回ぷちデレラコレクション" + } ], + "hash" : "64be02ca19b0210c83956d56b53baa98", + "id" : "2528202", + "profile" : { + "bust" : "85", + "height" : "161", + "hip" : "84", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "慕われベーカー", + "alias_name_display" : "慕われベーカー", + "event" : [ { + "event_id" : 1216, + "event_name" : "先生と一緒に♪目指せおいしいパン作り アイドルチャレンジ" + } ], + "hash" : "de632bfbfe98d8ca7dff701c187659b9", + "id" : "2440001", + "profile" : { + "bust" : "85", + "height" : "161", + "hip" : "84", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "慕われベーカー", + "alias_name_display" : "慕われベーカー", + "event" : [ { + "event_id" : 1216, + "event_name" : "先生と一緒に♪目指せおいしいパン作り アイドルチャレンジ" + } ], + "hash" : "6e75966bbcafc0541424c8d8f7b4fcd6", + "id" : "2540002", + "profile" : { + "bust" : "85", + "height" : "161", + "hip" : "84", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ほほえみベーカー", + "alias_name_display" : "ほほえみベーカー", + "hash" : "b5e8d9784a291c73d1d7dedf4596a79c", + "id" : "2440101", + "profile" : { + "bust" : "85", + "height" : "161", + "hip" : "84", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ほほえみベーカー", + "alias_name_display" : "ほほえみベーカー", + "hash" : "2c7b6d96a1fb1e0ca98ca465fa67c848", + "id" : "2540102", + "profile" : { + "bust" : "85", + "height" : "161", + "hip" : "84", + "waist" : "57", + "weight" : "46" + } + } ], + "idol_id" : 104, + "idol_name" : "綾瀬穂乃香", + "idol_name_display" : "綾瀬穂乃香", + "units" : [ { + "id" : "163", + "name" : "フリルドスクエア" + } ] +}, { + "aliases" : [ { + "hash" : "ea5f708af5590fa7d0ae03018ef7c4fd", + "id" : "2201301", + "profile" : { + "bust" : "63", + "height" : "137", + "hip" : "65", + "waist" : "47", + "weight" : "30" + } + }, { + "hash" : "3722850cc72d17384b34480a8430cac6", + "id" : "2301302", + "profile" : { + "bust" : "63", + "height" : "137", + "hip" : "65", + "waist" : "47", + "weight" : "30" + } + }, { + "alias_name" : "セレクトメイド", + "alias_name_display" : "セレクトメイド", + "hash" : "3f951d9ae741667ca9f12e59abda200d", + "id" : "2214601", + "profile" : { + "bust" : "63", + "height" : "137", + "hip" : "65", + "waist" : "47", + "weight" : "30" + } + }, { + "alias_name" : "セレクトメイド", + "alias_name_display" : "セレクトメイド", + "hash" : "ac248d004a5dd805137fdc498e3e7727", + "id" : "2314602", + "profile" : { + "bust" : "63", + "height" : "137", + "hip" : "65", + "waist" : "47", + "weight" : "30" + } + }, { + "alias_name" : "T.B.チアーズ", + "alias_name_display" : "T.B.チアーズ", + "event" : [ { + "event_id" : 1105, + "event_name" : "第5回プロダクション対抗トークバトルショー" + } ], + "hash" : "7733b9b3450c4ec115f67d4f00c15a76", + "id" : "2217801", + "profile" : { + "bust" : "63", + "height" : "137", + "hip" : "65", + "waist" : "47", + "weight" : "30" + } + }, { + "alias_name" : "T.B.チアーズ", + "alias_name_display" : "T.B.チアーズ", + "event" : [ { + "event_id" : 1105, + "event_name" : "第5回プロダクション対抗トークバトルショー" + } ], + "hash" : "57b35cdd62ee9d80eac805a4d238e032", + "id" : "2317802", + "profile" : { + "bust" : "63", + "height" : "137", + "hip" : "65", + "waist" : "47", + "weight" : "30" + } + }, { + "alias_name" : "新春ガール", + "alias_name_display" : "新春ガール", + "hash" : "c65bf606e70d6198e249127bd4bfeceb", + "id" : "2224501", + "profile" : { + "bust" : "63", + "height" : "137", + "hip" : "65", + "waist" : "47", + "weight" : "30" + } + }, { + "alias_name" : "新春ガール", + "alias_name_display" : "新春ガール", + "hash" : "0be443f0e1a964e0a77940d87b72089f", + "id" : "2324502", + "profile" : { + "bust" : "63", + "height" : "137", + "hip" : "65", + "waist" : "47", + "weight" : "30" + } + }, { + "alias_name" : "プチ・マドモアゼル", + "alias_name_display" : "プチ・マドモアゼル", + "event" : [ { + "event_id" : "003", + "event_name" : "第3回プロダクションマッチフェスティバル" + } ], + "hash" : "b765e76345cd9a4fa8b071a3e5764e96", + "id" : "2402401", + "profile" : { + "bust" : "63", + "height" : "137", + "hip" : "65", + "waist" : "47", + "weight" : "30" + } + }, { + "alias_name" : "プチ・マドモアゼル", + "alias_name_display" : "プチ・マドモアゼル", + "event" : [ { + "event_id" : "003", + "event_name" : "第3回プロダクションマッチフェスティバル" + } ], + "hash" : "d1867fe96fed3771cbbf73cc35af08ea", + "id" : "2502402", + "profile" : { + "bust" : "63", + "height" : "137", + "hip" : "65", + "waist" : "47", + "weight" : "30" + } + }, { + "alias_name" : "クリスマスドール", + "alias_name_display" : "クリスマスドール", + "hash" : "f3393d71e257bdf3a2e4ca51772ef2be", + "id" : "2404301", + "profile" : { + "bust" : "63", + "height" : "137", + "hip" : "65", + "waist" : "47", + "weight" : "30" + } + }, { + "alias_name" : "クリスマスドール", + "alias_name_display" : "クリスマスドール", + "hash" : "b41f85ebc71b158b26cbddfde963c525", + "id" : "2504302", + "profile" : { + "bust" : "63", + "height" : "137", + "hip" : "65", + "waist" : "47", + "weight" : "30" + } + }, { + "alias_name" : "夏宵のお嬢様", + "alias_name_display" : "夏宵のお嬢様", + "event" : [ { + "event_id" : 408, + "event_name" : "アイドルプロデュース 夜空に咲く花火編" + } ], + "hash" : "1b14103e8c942735e3f68012c1bceee4", + "id" : "2408001", + "profile" : { + "bust" : "63", + "height" : "137", + "hip" : "65", + "waist" : "47", + "weight" : "30" + } + }, { + "alias_name" : "夏宵のお嬢様", + "alias_name_display" : "夏宵のお嬢様", + "event" : [ { + "event_id" : 408, + "event_name" : "アイドルプロデュース 夜空に咲く花火編" + } ], + "hash" : "1ebec92842779992268a13bd4a21bdb2", + "id" : "2508002", + "profile" : { + "bust" : "63", + "height" : "137", + "hip" : "65", + "waist" : "47", + "weight" : "30" + } + }, { + "alias_name" : "マーチング☆メロディー", + "alias_name_display" : "マーチング☆メロディー", + "hash" : "4d4711956ba85d9c8fcbb4b0fe2f9fe8", + "id" : "2422701", + "profile" : { + "bust" : "63", + "height" : "137", + "hip" : "65", + "waist" : "47", + "weight" : "30" + } + }, { + "alias_name" : "マーチング☆メロディー", + "alias_name_display" : "マーチング☆メロディー", + "hash" : "0f9faea779c6b958772df3beae2c0969", + "id" : "2522702", + "profile" : { + "bust" : "63", + "height" : "137", + "hip" : "65", + "waist" : "47", + "weight" : "30" + } + }, { + "alias_name" : "小さなドキドキ", + "alias_name_display" : "小さなドキドキ", + "event" : [ { + "event_id" : 1403, + "event_name" : "第3回ぷちデレラコレクション" + } ], + "hash" : "b2a4e884c5dea362551b34d22975a824", + "id" : "2426201", + "profile" : { + "bust" : "63", + "height" : "137", + "hip" : "65", + "waist" : "47", + "weight" : "30" + } + }, { + "alias_name" : "小さなドキドキ", + "alias_name_display" : "小さなドキドキ", + "event" : [ { + "event_id" : 1403, + "event_name" : "第3回ぷちデレラコレクション" + } ], + "hash" : "368396982ecee85ed01ac8aae39086b1", + "id" : "2526202", + "profile" : { + "bust" : "63", + "height" : "137", + "hip" : "65", + "waist" : "47", + "weight" : "30" + } + }, { + "alias_name" : "紺青のゆらめき", + "alias_name_display" : "紺青のゆらめき", + "hash" : "a72b17701c91600e7de7ad03eaacb779", + "id" : "2432301", + "profile" : { + "bust" : "63", + "height" : "137", + "hip" : "65", + "waist" : "47", + "weight" : "30" + } + }, { + "alias_name" : "紺青のゆらめき", + "alias_name_display" : "紺青のゆらめき", + "hash" : "cbbfe22229dab51ecdb033d78869a359", + "id" : "2532302", + "profile" : { + "bust" : "63", + "height" : "137", + "hip" : "65", + "waist" : "47", + "weight" : "30" + } + }, { + "alias_name" : "ドーリー・ロワイヤル", + "alias_name_display" : "ドーリー・ロワイヤル", + "event" : [ { + "event_id" : 821, + "event_name" : "第21回アイドルLIVEロワイヤル" + } ], + "hash" : "bac71801e52aed85607e0ac568eedb15", + "id" : "2437301", + "profile" : { + "bust" : "63", + "height" : "137", + "hip" : "65", + "waist" : "47", + "weight" : "30" + } + }, { + "alias_name" : "ドーリー・ロワイヤル", + "alias_name_display" : "ドーリー・ロワイヤル", + "event" : [ { + "event_id" : 821, + "event_name" : "第21回アイドルLIVEロワイヤル" + } ], + "hash" : "674f4cb361e967bca336653539ed6613", + "id" : "2537302", + "profile" : { + "bust" : "63", + "height" : "137", + "hip" : "65", + "waist" : "47", + "weight" : "30" + } + } ], + "idol_id" : 105, + "idol_name" : "佐城雪美", + "idol_name_display" : "佐城雪美", + "units" : [ { + "id" : "211", + "name" : "ワンダー・フル" + }, { + "id" : "214", + "name" : "L.M.B.G" + } ] +}, { + "aliases" : [ { + "hash" : "6266f471377bc1698b58ddd4638ead09", + "id" : "2201401", + "profile" : { + "bust" : "72", + "height" : "162", + "hip" : "78", + "waist" : "55", + "weight" : "41" + } + }, { + "hash" : "9c713eb6f7e6bab427ce008655b9e9a9", + "id" : "2301402", + "profile" : { + "bust" : "72", + "height" : "162", + "hip" : "78", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "制服ブルー", + "alias_name_display" : "制服ブルー", + "hash" : "d01c7b35bb21f8e63a8410fc4c644ce4", + "id" : "2202601", + "profile" : { + "bust" : "72", + "height" : "162", + "hip" : "78", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "制服ベージュ", + "alias_name_display" : "制服ベージュ", + "hash" : "7b80fbc184731895e18d4d04b69d4af5", + "id" : "2202602", + "profile" : { + "bust" : "72", + "height" : "162", + "hip" : "78", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "制服レッド", + "alias_name_display" : "制服レッド", + "hash" : "d7732a8d0a3fdfc3060ca2897187f188", + "id" : "2202603", + "profile" : { + "bust" : "72", + "height" : "162", + "hip" : "78", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "制服グリーン", + "alias_name_display" : "制服グリーン", + "hash" : "3d78511d3da1db3fb51a938c8dd968d1", + "id" : "2202604", + "profile" : { + "bust" : "72", + "height" : "162", + "hip" : "78", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ピンクダイヤモンド765", + "alias_name_display" : "ピンクダイヤモンド765", + "hash" : "306b770ebb8f0cf8f990c4d7e3720910", + "id" : "2302605", + "profile" : { + "bust" : "72", + "height" : "162", + "hip" : "78", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "パウダースノーホワイティ", + "alias_name_display" : "パウダースノーホワイティ", + "hash" : "c486d656f7e2b62acee082e7311ab881", + "id" : "2302606", + "profile" : { + "bust" : "72", + "height" : "162", + "hip" : "78", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ファイアオパール76ct", + "alias_name_display" : "ファイアオパール76ct", + "hash" : "91f73d36b69535cd4578ec74637c6059", + "id" : "2302607", + "profile" : { + "bust" : "72", + "height" : "162", + "hip" : "78", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "レザードクィーン", + "alias_name_display" : "レザードクィーン", + "hash" : "c8f06e16aaa220f282b912a6b05ff4d7", + "id" : "2302608", + "profile" : { + "bust" : "72", + "height" : "162", + "hip" : "78", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ハイネスルージュ", + "alias_name_display" : "ハイネスルージュ", + "hash" : "f68f6ba5aaa28606a5d9290ea4e7db4d", + "id" : "2302609", + "profile" : { + "bust" : "72", + "height" : "162", + "hip" : "78", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "孤高の歌姫", + "alias_name_display" : "孤高の歌姫", + "hash" : "0d39c65b94d1a11cae537f6886dbb97a", + "id" : "2400101", + "profile" : { + "bust" : "72", + "height" : "162", + "hip" : "78", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "孤高の歌姫", + "alias_name_display" : "孤高の歌姫", + "hash" : "d2b23ca96d8ec3e6e9d06a33fc2ab472", + "id" : "2500102", + "profile" : { + "bust" : "72", + "height" : "162", + "hip" : "78", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "瑠璃の歌姫", + "alias_name_display" : "瑠璃の歌姫", + "hash" : "5b51c5da302fb24a3a7af06ba2df4b1e", + "id" : "2400910", + "profile" : { + "bust" : "72", + "height" : "162", + "hip" : "78", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "瑠璃の歌姫", + "alias_name_display" : "瑠璃の歌姫", + "hash" : "333569a4bc55998dc01ad3a8a2f91cc3", + "id" : "2500911", + "profile" : { + "bust" : "72", + "height" : "162", + "hip" : "78", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "スクーリッシュガール", + "alias_name_display" : "スクーリッシュガール", + "hash" : "6825521e806675ddeb47bc1fce922ed7", + "id" : "2501802", + "profile" : { + "bust" : "72", + "height" : "162", + "hip" : "78", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "アーリーサマーバカンス", + "alias_name_display" : "アーリーサマーバカンス", + "hash" : "dfe34529a4dc472ca44c6ad923e44b5b", + "id" : "2507502", + "profile" : { + "bust" : "72", + "height" : "162", + "hip" : "78", + "waist" : "55", + "weight" : "41" + } + } ], + "idol_id" : 106, + "idol_name" : "如月千早", + "idol_name_display" : "如月千早" +}, { + "aliases" : [ { + "hash" : "70716895c47fcf16e1441bb913c05bb8", + "id" : "2201501", + "profile" : { + "bust" : "91", + "height" : "168", + "hip" : "86", + "waist" : "59", + "weight" : "48" + } + }, { + "hash" : "17994e5072cc7b760383dda8e199ada2", + "id" : "2301502", + "profile" : { + "bust" : "91", + "height" : "168", + "hip" : "86", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "皆のお姉さん", + "alias_name_display" : "皆のお姉さん", + "hash" : "84b97983ec5badf26de49cc9f4a9a14f", + "id" : "2400201", + "profile" : { + "bust" : "91", + "height" : "168", + "hip" : "86", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "皆のお姉さん", + "alias_name_display" : "皆のお姉さん", + "hash" : "e2580dce271a51554eb13c46c36d2adc", + "id" : "2500202", + "profile" : { + "bust" : "91", + "height" : "168", + "hip" : "86", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "エステル衣装", + "alias_name_display" : "エステル衣装", + "hash" : "035141c2768cddbab1153b2dcbcb3013", + "id" : "2500602", + "profile" : { + "bust" : "91", + "height" : "168", + "hip" : "86", + "waist" : "59", + "weight" : "48" + } + } ], + "idol_id" : 107, + "idol_name" : "三浦あずさ", + "idol_name_display" : "三浦あずさ" +}, { + "aliases" : [ { + "hash" : "30a17a9dccef3c222df1abb5ffcd7a01", + "id" : "2201601", + "profile" : { + "bust" : "85", + "height" : "156", + "hip" : "85", + "waist" : "57", + "weight" : "43" + } + }, { + "hash" : "945ac71535e44e4a84b49f9ff08ae9df", + "id" : "2301602", + "profile" : { + "bust" : "85", + "height" : "156", + "hip" : "85", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "プロデューサーアイドル", + "alias_name_display" : "プロデューサーアイドル", + "hash" : "6561a1f85b71bd4a9d8777ce46ea3cb4", + "id" : "2402301", + "profile" : { + "bust" : "85", + "height" : "156", + "hip" : "85", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "プロデューサーアイドル", + "alias_name_display" : "プロデューサーアイドル", + "hash" : "1b3a397157d4c390983480f0b8ebb2a1", + "id" : "2502302", + "profile" : { + "bust" : "85", + "height" : "156", + "hip" : "85", + "waist" : "57", + "weight" : "43" + } + } ], + "idol_id" : 108, + "idol_name" : "秋月律子", + "idol_name_display" : "秋月律子" +}, { + "aliases" : [ { + "hash" : "ecc6dd0013d9d3d8ae24947d77a78192", + "id" : "2201701", + "profile" : { + "bust" : "90", + "height" : "169", + "hip" : "92", + "waist" : "62", + "weight" : "49" + } + }, { + "hash" : "ef24b54f844eae492aa0c8b4c7b2e0b1", + "id" : "2301702", + "profile" : { + "bust" : "90", + "height" : "169", + "hip" : "92", + "waist" : "62", + "weight" : "49" + } + }, { + "alias_name" : "デビュタントピンク", + "alias_name_display" : "デビュタントピンク", + "hash" : "6969734196b2f2b3875802f7057d9a46", + "id" : "2204701", + "profile" : { + "bust" : "90", + "height" : "169", + "hip" : "92", + "waist" : "62", + "weight" : "49" + } + }, { + "alias_name" : "デビュタントブルー", + "alias_name_display" : "デビュタントブルー", + "hash" : "a2ce78a81c9ec000846083b74c110f15", + "id" : "2204702", + "profile" : { + "bust" : "90", + "height" : "169", + "hip" : "92", + "waist" : "62", + "weight" : "49" + } + }, { + "alias_name" : "デビュタントブラック", + "alias_name_display" : "デビュタントブラック", + "hash" : "690c223b272695a6d34dc486d2afde95", + "id" : "2204703", + "profile" : { + "bust" : "90", + "height" : "169", + "hip" : "92", + "waist" : "62", + "weight" : "49" + } + }, { + "alias_name" : "デビュタントホワイト", + "alias_name_display" : "デビュタントホワイト", + "hash" : "50fa6a567d514c9179aa866da882f542", + "id" : "2204704", + "profile" : { + "bust" : "90", + "height" : "169", + "hip" : "92", + "waist" : "62", + "weight" : "49" + } + }, { + "alias_name" : "ピンクダイヤモンド765", + "alias_name_display" : "ピンクダイヤモンド765", + "hash" : "87c822ee1ff22341326235a223f61a3d", + "id" : "2304705", + "profile" : { + "bust" : "90", + "height" : "169", + "hip" : "92", + "waist" : "62", + "weight" : "49" + } + }, { + "alias_name" : "スカイパズラー", + "alias_name_display" : "スカイパズラー", + "hash" : "6e808ea3c7b1ba70625f267cabaa8008", + "id" : "2304706", + "profile" : { + "bust" : "90", + "height" : "169", + "hip" : "92", + "waist" : "62", + "weight" : "49" + } + }, { + "alias_name" : "メイデンインブラック", + "alias_name_display" : "メイデンインブラック", + "hash" : "84b5d07825dcc54fcfb3fdb71c1ee3e6", + "id" : "2304707", + "profile" : { + "bust" : "90", + "height" : "169", + "hip" : "92", + "waist" : "62", + "weight" : "49" + } + }, { + "alias_name" : "スカーレットスプライト", + "alias_name_display" : "スカーレットスプライト", + "hash" : "13b52bd8c6be2d03f0a1125160c38620", + "id" : "2304708", + "profile" : { + "bust" : "90", + "height" : "169", + "hip" : "92", + "waist" : "62", + "weight" : "49" + } + }, { + "alias_name" : "ギルデッドマドモアゼル", + "alias_name_display" : "ギルデッドマドモアゼル", + "hash" : "7e3688a45dcde6ac996e300c046e8df6", + "id" : "2304709", + "profile" : { + "bust" : "90", + "height" : "169", + "hip" : "92", + "waist" : "62", + "weight" : "49" + } + }, { + "alias_name" : "銀色の王女", + "alias_name_display" : "銀色の王女", + "hash" : "ce4bd80928c636bf1dc75260f561f97a", + "id" : "2400801", + "profile" : { + "bust" : "90", + "height" : "169", + "hip" : "92", + "waist" : "62", + "weight" : "49" + } + }, { + "alias_name" : "銀色の王女", + "alias_name_display" : "銀色の王女", + "hash" : "07e8a45d27c4a45e2c271aeaa5b38c91", + "id" : "2500802", + "profile" : { + "bust" : "90", + "height" : "169", + "hip" : "92", + "waist" : "62", + "weight" : "49" + } + }, { + "alias_name" : "鏡花水月", + "alias_name_display" : "鏡花水月", + "hash" : "828a4a1ec46c8d6deb0eba32090ba9cb", + "id" : "2402210", + "profile" : { + "bust" : "90", + "height" : "169", + "hip" : "92", + "waist" : "62", + "weight" : "49" + } + }, { + "alias_name" : "鏡花水月", + "alias_name_display" : "鏡花水月", + "hash" : "6957fb77f5d5d67695e7f50dbfa36ab0", + "id" : "2502211", + "profile" : { + "bust" : "90", + "height" : "169", + "hip" : "92", + "waist" : "62", + "weight" : "49" + } + }, { + "alias_name" : "1stアニバーサリー", + "alias_name_display" : "1stアニバーサリー", + "hash" : "166fb623aae4d975387c3fbc8770a099", + "id" : "2504102", + "profile" : { + "bust" : "90", + "height" : "169", + "hip" : "92", + "waist" : "62", + "weight" : "49" + } + } ], + "idol_id" : 109, + "idol_name" : "四条貴音", + "idol_name_display" : "四条貴音" +}, { + "aliases" : [ { + "hash" : "0279e0bfe3a06fed6d20b88fea031a7a", + "id" : "2201801", + "profile" : { + "bust" : "93", + "height" : "171", + "hip" : "88", + "waist" : "58", + "weight" : "49" + } + }, { + "hash" : "7cd1a870c72ca2735908ddd66f81810b", + "id" : "2301802", + "profile" : { + "bust" : "93", + "height" : "171", + "hip" : "88", + "waist" : "58", + "weight" : "49" + } + }, { + "alias_name" : "ハロウィンナイト", + "alias_name_display" : "ハロウィンナイト", + "hash" : "8879f0329b71adf6b1abf6fb9d6a5bb6", + "id" : "2212301", + "profile" : { + "bust" : "93", + "height" : "171", + "hip" : "88", + "waist" : "58", + "weight" : "49" + } + }, { + "alias_name" : "ハロウィンナイト", + "alias_name_display" : "ハロウィンナイト", + "hash" : "e81e141fc2930933396e6f82f3752454", + "id" : "2312302", + "profile" : { + "bust" : "93", + "height" : "171", + "hip" : "88", + "waist" : "58", + "weight" : "49" + } + }, { + "alias_name" : "美の商人", + "alias_name_display" : "美の商人", + "hash" : "fb122260ba37bf6f6f32f4f022ed1057", + "id" : "2219301", + "profile" : { + "bust" : "93", + "height" : "171", + "hip" : "88", + "waist" : "58", + "weight" : "49" + } + }, { + "alias_name" : "美の商人", + "alias_name_display" : "美の商人", + "hash" : "546e3e4addf32b2699b404b4a31986e7", + "id" : "2319302", + "profile" : { + "bust" : "93", + "height" : "171", + "hip" : "88", + "waist" : "58", + "weight" : "49" + } + }, { + "alias_name" : "サポートレディ", + "alias_name_display" : "サポートレディ", + "event" : [ { + "event_id" : 523, + "event_name" : "鋼鉄公演 きらりんロボ -襲来!コスメティア帝国-" + } ], + "hash" : "11af6a1079aed45abb135d98fe6f2845", + "id" : "2324702", + "profile" : { + "bust" : "93", + "height" : "171", + "hip" : "88", + "waist" : "58", + "weight" : "49" + } + }, { + "alias_name" : "ロワイヤルスタイルND", + "alias_name_display" : "ロワイヤルスタイルND", + "event" : [ { + "event_id" : 819, + "event_name" : "アイドルLIVEロワイヤル お月見SP" + } ], + "hash" : "365839f8844308b4839461dd4a306d93", + "id" : "2228701", + "profile" : { + "bust" : "93", + "height" : "171", + "hip" : "88", + "waist" : "58", + "weight" : "49" + } + }, { + "alias_name" : "ロワイヤルスタイルND", + "alias_name_display" : "ロワイヤルスタイルND", + "event" : [ { + "event_id" : 819, + "event_name" : "アイドルLIVEロワイヤル お月見SP" + } ], + "hash" : "87d0eaea9cf36828555acb4e6d2bc8dd", + "id" : "2328702", + "profile" : { + "bust" : "93", + "height" : "171", + "hip" : "88", + "waist" : "58", + "weight" : "49" + } + }, { + "alias_name" : "意外な一面", + "alias_name_display" : "意外な一面", + "event" : [ { + "event_id" : 707, + "event_name" : "第7回ドリームLIVEフェスティバル" + } ], + "hash" : "6ec5a36a72a58e3a52a59bfd4c82c30a", + "id" : "2415501", + "profile" : { + "bust" : "93", + "height" : "171", + "hip" : "88", + "waist" : "58", + "weight" : "49" + } + }, { + "alias_name" : "意外な一面", + "alias_name_display" : "意外な一面", + "event" : [ { + "event_id" : 707, + "event_name" : "第7回ドリームLIVEフェスティバル" + } ], + "hash" : "8866ceff2565f6f6d52ad2a6e7a3fa24", + "id" : "2515502", + "profile" : { + "bust" : "93", + "height" : "171", + "hip" : "88", + "waist" : "58", + "weight" : "49" + } + }, { + "alias_name" : "アトラクティブレディ", + "alias_name_display" : "アトラクティブレディ", + "event" : [ { + "event_id" : 713, + "event_name" : "第13回ドリームLIVEフェスティバル" + } ], + "hash" : "1b18dca284fedc5a3a8f048920f28a1c", + "id" : "2424301", + "profile" : { + "bust" : "93", + "height" : "171", + "hip" : "88", + "waist" : "58", + "weight" : "49" + } + }, { + "alias_name" : "アトラクティブレディ", + "alias_name_display" : "アトラクティブレディ", + "event" : [ { + "event_id" : 713, + "event_name" : "第13回ドリームLIVEフェスティバル" + } ], + "hash" : "084e23921a2680662428a561923bb395", + "id" : "2524302", + "profile" : { + "bust" : "93", + "height" : "171", + "hip" : "88", + "waist" : "58", + "weight" : "49" + } + } ], + "idol_id" : 110, + "idol_name" : "篠原礼", + "idol_name_display" : "篠原礼", + "units" : [ { + "id" : "161", + "name" : "ハロウィンナイト" + }, { + "id" : "206", + "name" : "セクシーボンデージ" + }, { + "id" : "210", + "name" : "ロワイヤルスタイルND" + } ] +}, { + "aliases" : [ { + "hash" : "b73e3bd3f986371ca390c06539f30f2e", + "id" : "2202101", + "profile" : { + "bust" : "81", + "height" : "168", + "hip" : "86", + "waist" : "60", + "weight" : "49" + } + }, { + "hash" : "b1cc240b628c799f43e40e3187fe854d", + "id" : "2302102", + "profile" : { + "bust" : "82", + "height" : "168", + "hip" : "86", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "オフスタイルネイビー", + "alias_name_display" : "オフスタイルネイビー", + "event" : [ { + "event_id" : 105, + "event_name" : "きらめくブライダルショー" + } ], + "hash" : "e00193ce7e4fb576c82d218d2b18b733", + "id" : "2204201", + "profile" : { + "bust" : "82", + "height" : "168", + "hip" : "86", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "オフスタイルグリーン", + "alias_name_display" : "オフスタイルグリーン", + "event" : [ { + "event_id" : 105, + "event_name" : "きらめくブライダルショー" + } ], + "hash" : "2382d33c9aed1fd427050e60d36da85a", + "id" : "2204202", + "profile" : { + "bust" : "82", + "height" : "168", + "hip" : "86", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "オフスタイルブラウン", + "alias_name_display" : "オフスタイルブラウン", + "event" : [ { + "event_id" : 105, + "event_name" : "きらめくブライダルショー" + } ], + "hash" : "c22a01b2e037f0c682b49529075995cb", + "id" : "2204203", + "profile" : { + "bust" : "82", + "height" : "168", + "hip" : "86", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "オフスタイルローズグレイ", + "alias_name_display" : "オフスタイルローズグレイ", + "event" : [ { + "event_id" : 105, + "event_name" : "きらめくブライダルショー" + } ], + "hash" : "36981cf43b6efc635d83a00cf1907580", + "id" : "2204204", + "profile" : { + "bust" : "82", + "height" : "168", + "hip" : "86", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "ドレスアップパープル", + "alias_name_display" : "ドレスアップパープル", + "event" : [ { + "event_id" : 105, + "event_name" : "きらめくブライダルショー" + } ], + "hash" : "314c5bfcaeecf15de958fd77d49740f2", + "id" : "2304205", + "profile" : { + "bust" : "82", + "height" : "168", + "hip" : "86", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "ドレスアップレッド", + "alias_name_display" : "ドレスアップレッド", + "event" : [ { + "event_id" : 105, + "event_name" : "きらめくブライダルショー" + } ], + "hash" : "5f8a3f98486604275267c877b9905349", + "id" : "2304206", + "profile" : { + "bust" : "82", + "height" : "168", + "hip" : "86", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "ドレスアップホワイト", + "alias_name_display" : "ドレスアップホワイト", + "event" : [ { + "event_id" : 105, + "event_name" : "きらめくブライダルショー" + } ], + "hash" : "a313a6d6050a1e06b6087b272789f86a", + "id" : "2304207", + "profile" : { + "bust" : "82", + "height" : "168", + "hip" : "86", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "ドレスアップボルドー", + "alias_name_display" : "ドレスアップボルドー", + "event" : [ { + "event_id" : 105, + "event_name" : "きらめくブライダルショー" + } ], + "hash" : "b15320c5e2f4786b0ff458609a6d2635", + "id" : "2304208", + "profile" : { + "bust" : "82", + "height" : "168", + "hip" : "86", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "ドレスアップゴールド", + "alias_name_display" : "ドレスアップゴールド", + "event" : [ { + "event_id" : 105, + "event_name" : "きらめくブライダルショー" + } ], + "hash" : "fcaecc5aba2427916914caa943a2e751", + "id" : "2304209", + "profile" : { + "bust" : "82", + "height" : "168", + "hip" : "86", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "静かな努力家", + "alias_name_display" : "静かな努力家", + "hash" : "cd9c8866ec5bbc25600c8509b7e23ee1", + "id" : "2208801", + "profile" : { + "bust" : "82", + "height" : "168", + "hip" : "86", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "静かな努力家", + "alias_name_display" : "静かな努力家", + "hash" : "854aecfaa588047988fcbd1d58f24b39", + "id" : "2308802", + "profile" : { + "bust" : "82", + "height" : "168", + "hip" : "86", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "ビーチパラダイス", + "alias_name_display" : "ビーチパラダイス", + "hash" : "7f2b355d90da1b40b701278e3685134b", + "id" : "2211301", + "profile" : { + "bust" : "82", + "height" : "168", + "hip" : "86", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "ビーチパラダイス", + "alias_name_display" : "ビーチパラダイス", + "hash" : "269d6c6828618794868c7036ec3476f8", + "id" : "2311302", + "profile" : { + "bust" : "82", + "height" : "168", + "hip" : "86", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "湯けむり月夜", + "alias_name_display" : "湯けむり月夜", + "hash" : "ff373239ccc29ac4931e2c645f76f6c9", + "id" : "2215201", + "profile" : { + "bust" : "82", + "height" : "168", + "hip" : "86", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "湯けむり月夜", + "alias_name_display" : "湯けむり月夜", + "hash" : "02cb84e31df0077d2e0ecdb68ba667cb", + "id" : "2315202", + "profile" : { + "bust" : "82", + "height" : "168", + "hip" : "86", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "T.B.キャット", + "alias_name_display" : "T.B.キャット", + "event" : [ { + "event_id" : 1501, + "event_name" : "チーム対抗トークバトルショー" + } ], + "hash" : "8ac440b6a9ec7028274817475b72998c", + "id" : "2220701", + "profile" : { + "bust" : "82", + "height" : "168", + "hip" : "86", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "T.B.キャット", + "alias_name_display" : "T.B.キャット", + "event" : [ { + "event_id" : 1501, + "event_name" : "チーム対抗トークバトルショー" + } ], + "hash" : "e0f1d6dfebca5b8e5d9df02af727c034", + "id" : "2320702", + "profile" : { + "bust" : "82", + "height" : "168", + "hip" : "86", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "デイワークビューティー", + "alias_name_display" : "デイワークビューティー", + "hash" : "5ab4472580be930b8105563d3c6a11ef", + "id" : "2227701", + "profile" : { + "bust" : "82", + "height" : "168", + "hip" : "86", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "デイワークビューティー", + "alias_name_display" : "デイワークビューティー", + "hash" : "38107f446aa746865421aa8269aa0ac4", + "id" : "2327702", + "profile" : { + "bust" : "82", + "height" : "168", + "hip" : "86", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "サーカスパフォーマー", + "alias_name_display" : "サーカスパフォーマー", + "event" : [ { + "event_id" : 1709, + "event_name" : "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" + } ], + "hash" : "bfde9af8b334a1f4a1e1d938ded92205", + "id" : "2230801", + "profile" : { + "bust" : "82", + "height" : "168", + "hip" : "86", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "サーカスパフォーマー", + "alias_name_display" : "サーカスパフォーマー", + "event" : [ { + "event_id" : 1709, + "event_name" : "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" + } ], + "hash" : "bbcde289f3d87a0c962fc15b1a974d97", + "id" : "2330802", + "profile" : { + "bust" : "82", + "height" : "168", + "hip" : "86", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "スマイリーパフォーマー", + "alias_name_display" : "スマイリーパフォーマー", + "event" : [ { + "event_id" : 1709, + "event_name" : "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" + } ], + "hash" : "3172ddc229fc3bb9fac024eb306f9b9c", + "id" : "2230901", + "profile" : { + "bust" : "82", + "height" : "168", + "hip" : "86", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "スマイリーパフォーマー", + "alias_name_display" : "スマイリーパフォーマー", + "event" : [ { + "event_id" : 1709, + "event_name" : "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" + } ], + "hash" : "34b7996576f65254b70545f0354fa9b9", + "id" : "2330902", + "profile" : { + "bust" : "82", + "height" : "168", + "hip" : "86", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "麗しの花嫁", + "alias_name_display" : "麗しの花嫁", + "event" : [ { + "event_id" : 105, + "event_name" : "きらめくブライダルショー" + } ], + "hash" : "71ace62d52bc64c427809bd37d63ab73", + "id" : "2402001", + "profile" : { + "bust" : "82", + "height" : "168", + "hip" : "86", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "麗しの花嫁", + "alias_name_display" : "麗しの花嫁", + "event" : [ { + "event_id" : 105, + "event_name" : "きらめくブライダルショー" + } ], + "hash" : "178e02295da98410b3d89ee67ff59085", + "id" : "2502002", + "profile" : { + "bust" : "82", + "height" : "168", + "hip" : "86", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "ミスティックブルー", + "alias_name_display" : "ミスティックブルー", + "event" : [ { + "event_id" : 802, + "event_name" : "第2回アイドルLIVEロワイヤル" + } ], + "hash" : "9c8cd39caf884771877dd30d6d567a6e", + "id" : "2411201", + "profile" : { + "bust" : "82", + "height" : "168", + "hip" : "86", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "ミスティックブルー", + "alias_name_display" : "ミスティックブルー", + "event" : [ { + "event_id" : 802, + "event_name" : "第2回アイドルLIVEロワイヤル" + } ], + "hash" : "d9bb8ac767435a8c90758e5b78eb982a", + "id" : "2511202", + "profile" : { + "bust" : "82", + "height" : "168", + "hip" : "86", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "貴婦人のたしなみ", + "alias_name_display" : "貴婦人のたしなみ", + "hash" : "8b426648033650a8b6f0ea72f9d48b9e", + "id" : "2417501", + "profile" : { + "bust" : "82", + "height" : "168", + "hip" : "86", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "貴婦人のたしなみ", + "alias_name_display" : "貴婦人のたしなみ", + "hash" : "ad621fe47393a5bcba98b5729077ac4e", + "id" : "2517502", + "profile" : { + "bust" : "82", + "height" : "168", + "hip" : "86", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "ダークネスクイーン", + "alias_name_display" : "ダークネスクイーン", + "event" : [ { + "event_id" : 522, + "event_name" : "魔界公演 幽鬱女王とハロウィンの祝祭" + } ], + "hash" : "975f3cb8d1472238c39f2fff0c7b43aa", + "id" : "2427701", + "profile" : { + "bust" : "82", + "height" : "168", + "hip" : "86", + "waist" : "60", + "weight" : "50" + } + }, { + "alias_name" : "ダークネスクイーン", + "alias_name_display" : "ダークネスクイーン", + "event" : [ { + "event_id" : 522, + "event_name" : "魔界公演 幽鬱女王とハロウィンの祝祭" + } ], + "hash" : "303643dbb839ee0d48bfb7def91c193f", + "id" : "2527702", + "profile" : { + "bust" : "82", + "height" : "168", + "hip" : "86", + "waist" : "60", + "weight" : "50" + } + } ], + "idol_id" : 111, + "idol_name" : "和久井留美", + "idol_name_display" : "和久井留美", + "units" : [ { + "id" : "10", + "name" : "エレガントインモラリスト" + }, { + "id" : "142", + "name" : "バレンタイン反省会" + } ] +}, { + "aliases" : [ { + "hash" : "0f37976821af0722871ecf50938c7ddf", + "id" : "2202201", + "profile" : { + "bust" : "86", + "height" : "166", + "hip" : "85", + "waist" : "60", + "weight" : "43" + } + }, { + "hash" : "7ef2544b02c9736db8d008c4f17b7e5b", + "id" : "2302202", + "profile" : { + "bust" : "86", + "height" : "166", + "hip" : "85", + "waist" : "60", + "weight" : "43" + } + }, { + "alias_name" : "学園祭", + "alias_name_display" : "学園祭", + "event" : [ { + "event_id" : 206, + "event_name" : "アイドルサバイバルin学園祭" + } ], + "hash" : "ac0b2131e6f7eaf2723a2ade75928495", + "id" : "2206001", + "profile" : { + "bust" : "86", + "height" : "166", + "hip" : "85", + "waist" : "60", + "weight" : "43" + } + }, { + "alias_name" : "学園祭", + "alias_name_display" : "学園祭", + "event" : [ { + "event_id" : 206, + "event_name" : "アイドルサバイバルin学園祭" + } ], + "hash" : "1e410552f7955af4fe1b69477d8b43f5", + "id" : "2306002", + "profile" : { + "bust" : "86", + "height" : "166", + "hip" : "85", + "waist" : "60", + "weight" : "43" + } + }, { + "alias_name" : "スペーススタイル", + "alias_name_display" : "スペーススタイル", + "event" : [ { + "event_id" : 508, + "event_name" : "LIVEツアーカーニバルinスペースワールド" + } ], + "hash" : "b20a29ffa2a750c5b4cd9d81b3bbc9e5", + "id" : "2212701", + "profile" : { + "bust" : "86", + "height" : "166", + "hip" : "85", + "waist" : "60", + "weight" : "43" + } + }, { + "alias_name" : "スペーススタイル", + "alias_name_display" : "スペーススタイル", + "event" : [ { + "event_id" : 508, + "event_name" : "LIVEツアーカーニバルinスペースワールド" + } ], + "hash" : "8bcd14c592bd07ef8fd285826b3cc7c9", + "id" : "2312702", + "profile" : { + "bust" : "86", + "height" : "166", + "hip" : "85", + "waist" : "60", + "weight" : "43" + } + }, { + "alias_name" : "ロワイヤルスタイルNP", + "alias_name_display" : "ロワイヤルスタイルNP", + "event" : [ { + "event_id" : 805, + "event_name" : "第5回アイドルLIVEロワイヤル" + } ], + "hash" : "07c40e49cccf9ee5f745371d6765771f", + "id" : "2216401", + "profile" : { + "bust" : "86", + "height" : "166", + "hip" : "85", + "waist" : "60", + "weight" : "43" + } + }, { + "alias_name" : "ロワイヤルスタイルNP", + "alias_name_display" : "ロワイヤルスタイルNP", + "event" : [ { + "event_id" : 805, + "event_name" : "第5回アイドルLIVEロワイヤル" + } ], + "hash" : "e607ec174fa5ea275f7191310a0f77ca", + "id" : "2316402", + "profile" : { + "bust" : "86", + "height" : "166", + "hip" : "85", + "waist" : "60", + "weight" : "43" + } + }, { + "alias_name" : "グラッドチョイス", + "alias_name_display" : "グラッドチョイス", + "hash" : "0434189262b7766edcc7b1491a046d2f", + "id" : "2221201", + "profile" : { + "bust" : "86", + "height" : "166", + "hip" : "85", + "waist" : "60", + "weight" : "43" + } + }, { + "alias_name" : "グラッドチョイス", + "alias_name_display" : "グラッドチョイス", + "hash" : "3fb35c1361dd289f9eefa90cd530b673", + "id" : "2321202", + "profile" : { + "bust" : "86", + "height" : "166", + "hip" : "85", + "waist" : "60", + "weight" : "43" + } + }, { + "alias_name" : "オータムコレクション", + "alias_name_display" : "オータムコレクション", + "hash" : "3dc82db81712eb3b82c990cba0a79445", + "id" : "2223601", + "profile" : { + "bust" : "86", + "height" : "166", + "hip" : "85", + "waist" : "60", + "weight" : "43" + } + }, { + "alias_name" : "オータムコレクション", + "alias_name_display" : "オータムコレクション", + "hash" : "af93b43c6c0f650d536f3f54a4a9fcf3", + "id" : "2323602", + "profile" : { + "bust" : "86", + "height" : "166", + "hip" : "85", + "waist" : "60", + "weight" : "43" + } + }, { + "alias_name" : "ニンジュツI.C", + "alias_name_display" : "ニンジュツI.C", + "event" : [ { + "event_id" : 1214, + "event_name" : "目指せくのいち アイドルチャレンジ" + } ], + "hash" : "56f24e0254e2641e6d33e184044a44ad", + "id" : "2330102", + "profile" : { + "bust" : "86", + "height" : "166", + "hip" : "85", + "waist" : "60", + "weight" : "43" + } + }, { + "alias_name" : "ボーイッシュエレガント", + "alias_name_display" : "ボーイッシュエレガント", + "event" : [ { + "event_id" : 210, + "event_name" : "アイドルサバイバルinテーマパーク2013" + } ], + "hash" : "0ca31e6713d9778cce09548060c5b987", + "id" : "2406501", + "profile" : { + "bust" : "86", + "height" : "166", + "hip" : "85", + "waist" : "60", + "weight" : "43" + } + }, { + "alias_name" : "ボーイッシュエレガント", + "alias_name_display" : "ボーイッシュエレガント", + "event" : [ { + "event_id" : 210, + "event_name" : "アイドルサバイバルinテーマパーク2013" + } ], + "hash" : "426a1c8445a2f2a1f1109d383cac3cae", + "id" : "2506502", + "profile" : { + "bust" : "86", + "height" : "166", + "hip" : "85", + "waist" : "60", + "weight" : "43" + } + }, { + "alias_name" : "アーティスティックチアー", + "alias_name_display" : "アーティスティックチアー", + "event" : [ { + "event_id" : 1108, + "event_name" : "第8回プロダクション対抗トークバトルショー" + } ], + "hash" : "6f94c84a133c5c6ff24dc90d31692786", + "id" : "2420901", + "profile" : { + "bust" : "86", + "height" : "166", + "hip" : "85", + "waist" : "60", + "weight" : "43" + } + }, { + "alias_name" : "アーティスティックチアー", + "alias_name_display" : "アーティスティックチアー", + "event" : [ { + "event_id" : 1108, + "event_name" : "第8回プロダクション対抗トークバトルショー" + } ], + "hash" : "981490772e3d268a8af831a339a9c56d", + "id" : "2520902", + "profile" : { + "bust" : "86", + "height" : "166", + "hip" : "85", + "waist" : "60", + "weight" : "43" + } + }, { + "alias_name" : "ジャパニーズアート", + "alias_name_display" : "ジャパニーズアート", + "event" : [ { + "event_id" : 718, + "event_name" : "ドリームLIVEフェスティバル 新春SP" + } ], + "hash" : "f4b3a3a0844450d52613698c6ce1a699", + "id" : "2430001", + "profile" : { + "bust" : "86", + "height" : "166", + "hip" : "85", + "waist" : "60", + "weight" : "43" + } + }, { + "alias_name" : "ジャパニーズアート", + "alias_name_display" : "ジャパニーズアート", + "event" : [ { + "event_id" : 718, + "event_name" : "ドリームLIVEフェスティバル 新春SP" + } ], + "hash" : "a964e412394600f1eae51eb0a573a59e", + "id" : "2530002", + "profile" : { + "bust" : "86", + "height" : "166", + "hip" : "85", + "waist" : "60", + "weight" : "43" + } + }, { + "alias_name" : "弦月のアラジン", + "alias_name_display" : "弦月のアラジン", + "event" : [ { + "event_id" : 1902, + "event_name" : "御伽公演 おてんば姫とまぢヤバな魔法のランプ" + } ], + "hash" : "9f1e3889ba04bc06e21bc8d5e7eddf21", + "id" : "2433701", + "profile" : { + "bust" : "86", + "height" : "166", + "hip" : "85", + "waist" : "60", + "weight" : "43" + } + }, { + "alias_name" : "弦月のアラジン", + "alias_name_display" : "弦月のアラジン", + "event" : [ { + "event_id" : 1902, + "event_name" : "御伽公演 おてんば姫とまぢヤバな魔法のランプ" + } ], + "hash" : "420232dfc6e81e86bc345cc36f4b443a", + "id" : "2533702", + "profile" : { + "bust" : "86", + "height" : "166", + "hip" : "85", + "waist" : "60", + "weight" : "43" + } + }, { + "alias_name" : "心惑のくのいち", + "alias_name_display" : "心惑のくのいち", + "event" : [ { + "event_id" : 1214, + "event_name" : "目指せくのいち アイドルチャレンジ" + } ], + "hash" : "f9dda0f6634f12d18c16e41ceb47a7d6", + "id" : "2437401", + "profile" : { + "bust" : "86", + "height" : "166", + "hip" : "85", + "waist" : "60", + "weight" : "43" + } + }, { + "alias_name" : "心惑のくのいち", + "alias_name_display" : "心惑のくのいち", + "event" : [ { + "event_id" : 1214, + "event_name" : "目指せくのいち アイドルチャレンジ" + } ], + "hash" : "a67ad2aba4cda4cb8822e8cba9be9e72", + "id" : "2537402", + "profile" : { + "bust" : "86", + "height" : "166", + "hip" : "85", + "waist" : "60", + "weight" : "43" + } + }, { + "alias_name" : "嬌笑のくのいち", + "alias_name_display" : "嬌笑のくのいち", + "event" : [ { + "event_id" : 1214, + "event_name" : "目指せくのいち アイドルチャレンジ" + } ], + "hash" : "6ce938c8766b918d2f6b7c9cf6689b61", + "id" : "2437501", + "profile" : { + "bust" : "86", + "height" : "166", + "hip" : "85", + "waist" : "60", + "weight" : "43" + } + }, { + "alias_name" : "嬌笑のくのいち", + "alias_name_display" : "嬌笑のくのいち", + "event" : [ { + "event_id" : 1214, + "event_name" : "目指せくのいち アイドルチャレンジ" + } ], + "hash" : "c3a21b688770def90cda930429d9d580", + "id" : "2537502", + "profile" : { + "bust" : "86", + "height" : "166", + "hip" : "85", + "waist" : "60", + "weight" : "43" + } + } ], + "idol_id" : 112, + "idol_name" : "吉岡沙紀", + "idol_name_display" : "吉岡沙紀", + "units" : [ { + "id" : "2", + "name" : "アーティスター" + }, { + "id" : "40", + "name" : "ハートハーモナイズ" + }, { + "id" : "95", + "name" : "スペーススタイル" + }, { + "id" : "117", + "name" : "ハードメテオライツ" + }, { + "id" : "122", + "name" : "ホットアートジャンピン" + }, { + "id" : "140", + "name" : "アイドルミズキ with AS" + }, { + "id" : "209", + "name" : "ロワイヤルスタイルNP" + } ] +}, { + "aliases" : [ { + "hash" : "8b7fce105c3d588ac3f32396be6d63a9", + "id" : "2202301", + "profile" : { + "bust" : "86", + "height" : "172", + "hip" : "85", + "waist" : "58", + "weight" : "49" + } + }, { + "hash" : "a774d41a69eb44d15423615658b97bb3", + "id" : "2302302", + "profile" : { + "bust" : "86", + "height" : "172", + "hip" : "85", + "waist" : "58", + "weight" : "49" + } + }, { + "alias_name" : "ハロウィンパーティー", + "alias_name_display" : "ハロウィンパーティー", + "hash" : "a9139d337cb8743a5af6036957432d2a", + "id" : "2206301", + "profile" : { + "bust" : "86", + "height" : "172", + "hip" : "85", + "waist" : "58", + "weight" : "49" + } + }, { + "alias_name" : "ハロウィンパーティー", + "alias_name_display" : "ハロウィンパーティー", + "hash" : "fc9e599c52e561c8376c92aa9bf3f76b", + "id" : "2306302", + "profile" : { + "bust" : "86", + "height" : "172", + "hip" : "85", + "waist" : "58", + "weight" : "49" + } + }, { + "alias_name" : "春風の使者", + "alias_name_display" : "春風の使者", + "event" : [ { + "event_id" : 504, + "event_name" : "アイドルLIVEツアーinスペイン" + } ], + "hash" : "d5a7bb3feb7b36be43c88f12a22ab0ed", + "id" : "2209501", + "profile" : { + "bust" : "86", + "height" : "172", + "hip" : "85", + "waist" : "58", + "weight" : "49" + } + }, { + "alias_name" : "春風の使者", + "alias_name_display" : "春風の使者", + "event" : [ { + "event_id" : 504, + "event_name" : "アイドルLIVEツアーinスペイン" + } ], + "hash" : "cdcf96c094a50a50e60362c02f4dfa50", + "id" : "2309502", + "profile" : { + "bust" : "86", + "height" : "172", + "hip" : "85", + "waist" : "58", + "weight" : "49" + } + }, { + "alias_name" : "風の語り手", + "alias_name_display" : "風の語り手", + "hash" : "f436a23041b6b2dfce6c7487572b39d2", + "id" : "2215901", + "profile" : { + "bust" : "86", + "height" : "172", + "hip" : "85", + "waist" : "58", + "weight" : "49" + } + }, { + "alias_name" : "風の語り手", + "alias_name_display" : "風の語り手", + "hash" : "83836550ad64aaa3694b396d5d3fdacb", + "id" : "2315902", + "profile" : { + "bust" : "86", + "height" : "172", + "hip" : "85", + "waist" : "58", + "weight" : "49" + } + }, { + "alias_name" : "春色温泉", + "alias_name_display" : "春色温泉", + "hash" : "767925f33c033fafccf24de1a5270440", + "id" : "2225601", + "profile" : { + "bust" : "86", + "height" : "172", + "hip" : "85", + "waist" : "58", + "weight" : "49" + } + }, { + "alias_name" : "春色温泉", + "alias_name_display" : "春色温泉", + "hash" : "9ae3b84090af8490fa4d771857a708b6", + "id" : "2325602", + "profile" : { + "bust" : "86", + "height" : "172", + "hip" : "85", + "waist" : "58", + "weight" : "49" + } + }, { + "alias_name" : "涼風のミンストレル", + "alias_name_display" : "涼風のミンストレル", + "event" : [ { + "event_id" : 702, + "event_name" : "水着DEドリームLIVEフェスティバル" + } ], + "hash" : "83e5007f4db7e14f5fd0dc9e5de94648", + "id" : "2408501", + "profile" : { + "bust" : "86", + "height" : "172", + "hip" : "85", + "waist" : "58", + "weight" : "49" + } + }, { + "alias_name" : "涼風のミンストレル", + "alias_name_display" : "涼風のミンストレル", + "event" : [ { + "event_id" : 702, + "event_name" : "水着DEドリームLIVEフェスティバル" + } ], + "hash" : "7a01f73afd6bf9881c91b0a2d4a37280", + "id" : "2508502", + "profile" : { + "bust" : "86", + "height" : "172", + "hip" : "85", + "waist" : "58", + "weight" : "49" + } + }, { + "alias_name" : "メロディ・ロワイヤル", + "alias_name_display" : "メロディ・ロワイヤル", + "event" : [ { + "event_id" : 808, + "event_name" : "第8回アイドルLIVEロワイヤル" + } ], + "hash" : "537a96cd9851d6296f5116956034fa64", + "id" : "2419201", + "profile" : { + "bust" : "86", + "height" : "172", + "hip" : "85", + "waist" : "58", + "weight" : "49" + } + }, { + "alias_name" : "メロディ・ロワイヤル", + "alias_name_display" : "メロディ・ロワイヤル", + "event" : [ { + "event_id" : 808, + "event_name" : "第8回アイドルLIVEロワイヤル" + } ], + "hash" : "72869a0f6b17cf9ae3770b0b2cbdcb01", + "id" : "2519202", + "profile" : { + "bust" : "86", + "height" : "172", + "hip" : "85", + "waist" : "58", + "weight" : "49" + } + }, { + "alias_name" : "ダークバトラー", + "alias_name_display" : "ダークバトラー", + "event" : [ { + "event_id" : 521, + "event_name" : "怪盗公演 美しき追跡者" + } ], + "hash" : "df2c2bd1d61b057e0bce6f34d13e5b09", + "id" : "2426401", + "profile" : { + "bust" : "86", + "height" : "172", + "hip" : "85", + "waist" : "58", + "weight" : "49" + } + }, { + "alias_name" : "ダークバトラー", + "alias_name_display" : "ダークバトラー", + "event" : [ { + "event_id" : 521, + "event_name" : "怪盗公演 美しき追跡者" + } ], + "hash" : "e46c9723e0af70b50cea3bbf1af79359", + "id" : "2526402", + "profile" : { + "bust" : "86", + "height" : "172", + "hip" : "85", + "waist" : "58", + "weight" : "49" + } + }, { + "alias_name" : "メロディアスワールド", + "alias_name_display" : "メロディアスワールド", + "hash" : "b55aedfa29207ec7783d03157a425dc0", + "id" : "2434901", + "profile" : { + "bust" : "86", + "height" : "172", + "hip" : "85", + "waist" : "58", + "weight" : "49" + } + }, { + "alias_name" : "メロディアスワールド", + "alias_name_display" : "メロディアスワールド", + "hash" : "5e21903192e2179e480b0684afc509ed", + "id" : "2534902", + "profile" : { + "bust" : "86", + "height" : "172", + "hip" : "85", + "waist" : "58", + "weight" : "49" + } + }, { + "alias_name" : "新芽の調べ", + "alias_name_display" : "新芽の調べ", + "event" : [ { + "event_id" : 729, + "event_name" : "ドリームLIVEフェスティバル ゴールデンウィークSP" + } ], + "hash" : "a4823a0b9ffad08844c7e603e69013cd", + "id" : "2439701", + "profile" : { + "bust" : "86", + "height" : "172", + "hip" : "85", + "waist" : "58", + "weight" : "49" + } + }, { + "alias_name" : "新芽の調べ", + "alias_name_display" : "新芽の調べ", + "event" : [ { + "event_id" : 729, + "event_name" : "ドリームLIVEフェスティバル ゴールデンウィークSP" + } ], + "hash" : "725a7367f2c8c08fa9f88fb14c58786a", + "id" : "2539702", + "profile" : { + "bust" : "86", + "height" : "172", + "hip" : "85", + "waist" : "58", + "weight" : "49" + } + } ], + "idol_id" : 113, + "idol_name" : "梅木音葉", + "idol_name_display" : "梅木音葉", + "units" : [ { + "id" : "24", + "name" : "シンフォニック・ワールド" + }, { + "id" : "180", + "name" : "ハロウィンパーティー" + } ] +}, { + "aliases" : [ { + "hash" : "5fe1faaee0a52e41f24eea585a682df5", + "id" : "2202401", + "profile" : { + "bust" : "65", + "height" : "142", + "hip" : "70", + "waist" : "50", + "weight" : "34" + } + }, { + "hash" : "ae2faa4771c040ad14953055cdba97c0", + "id" : "2302402", + "profile" : { + "bust" : "66", + "height" : "142", + "hip" : "70", + "waist" : "51", + "weight" : "35" + } + }, { + "alias_name" : "メイドコレクション", + "alias_name_display" : "メイドコレクション", + "hash" : "3636752aaa4fff30e038839aa6121adf", + "id" : "2205801", + "profile" : { + "bust" : "66", + "height" : "142", + "hip" : "70", + "waist" : "51", + "weight" : "35" + } + }, { + "alias_name" : "メイドコレクション", + "alias_name_display" : "メイドコレクション", + "hash" : "9fd88c297854635eaed7f81eaeef6204", + "id" : "2305802", + "profile" : { + "bust" : "66", + "height" : "142", + "hip" : "70", + "waist" : "51", + "weight" : "35" + } + }, { + "alias_name" : "ウィンターホラーグリーン", + "alias_name_display" : "ウィンターホラーグリーン", + "hash" : "9589583b3b1c0c6854df218d00a720cb", + "id" : "2207301", + "profile" : { + "bust" : "66", + "height" : "142", + "hip" : "70", + "waist" : "51", + "weight" : "35" + } + }, { + "alias_name" : "ウィンターホラーネイビー", + "alias_name_display" : "ウィンターホラーネイビー", + "hash" : "7a1a52d2d04ab51452a17d8a0fa13deb", + "id" : "2207302", + "profile" : { + "bust" : "66", + "height" : "142", + "hip" : "70", + "waist" : "51", + "weight" : "35" + } + }, { + "alias_name" : "ウィンターホラーボルドー", + "alias_name_display" : "ウィンターホラーボルドー", + "hash" : "6dbdb5e600214a62be8c86a4ce119358", + "id" : "2207303", + "profile" : { + "bust" : "66", + "height" : "142", + "hip" : "70", + "waist" : "51", + "weight" : "35" + } + }, { + "alias_name" : "ウィンターホラーブルー", + "alias_name_display" : "ウィンターホラーブルー", + "hash" : "387ff8f96121c16b6c70a997e51649b4", + "id" : "2207304", + "profile" : { + "bust" : "66", + "height" : "142", + "hip" : "70", + "waist" : "51", + "weight" : "35" + } + }, { + "alias_name" : "ウィンタースタイル", + "alias_name_display" : "ウィンタースタイル", + "hash" : "c8dd511c09612e82ebe3ccfed4c80e16", + "id" : "2307305", + "profile" : { + "bust" : "66", + "height" : "142", + "hip" : "70", + "waist" : "51", + "weight" : "35" + } + }, { + "alias_name" : "ウィンタースタイルマフラー", + "alias_name_display" : "ウィンタースタイルマフラー", + "hash" : "45b845227aa7ff52c176905bee731373", + "id" : "2307306", + "profile" : { + "bust" : "66", + "height" : "142", + "hip" : "70", + "waist" : "51", + "weight" : "35" + } + }, { + "alias_name" : "ウィンタースタイルイヤーマフ", + "alias_name_display" : "ウィンタースタイルイヤーマフ", + "hash" : "b298709e4e9b623a243f4c260ce67039", + "id" : "2307307", + "profile" : { + "bust" : "66", + "height" : "142", + "hip" : "70", + "waist" : "51", + "weight" : "35" + } + }, { + "alias_name" : "ウィンタースタイルバッグ", + "alias_name_display" : "ウィンタースタイルバッグ", + "hash" : "f885b02cf61af65fe2bb964902ff5e6c", + "id" : "2307308", + "profile" : { + "bust" : "66", + "height" : "142", + "hip" : "70", + "waist" : "51", + "weight" : "35" + } + }, { + "alias_name" : "ウィンタースタイルカート", + "alias_name_display" : "ウィンタースタイルカート", + "hash" : "8c3580e5bfcdfaf62ab2f06659f809d2", + "id" : "2307309", + "profile" : { + "bust" : "66", + "height" : "142", + "hip" : "70", + "waist" : "51", + "weight" : "35" + } + }, { + "alias_name" : "ダークインバイト", + "alias_name_display" : "ダークインバイト", + "hash" : "47bb0f13767275f0599acc5296d466c7", + "id" : "2227301", + "profile" : { + "bust" : "66", + "height" : "142", + "hip" : "70", + "waist" : "51", + "weight" : "35" + } + }, { + "alias_name" : "ダークインバイト", + "alias_name_display" : "ダークインバイト", + "hash" : "1faeb39c919ef3f1aaf5d2031b85caeb", + "id" : "2327302", + "profile" : { + "bust" : "66", + "height" : "142", + "hip" : "70", + "waist" : "51", + "weight" : "35" + } + }, { + "alias_name" : "ハロウィンナイトメア", + "alias_name_display" : "ハロウィンナイトメア", + "hash" : "44f2da3a9c5beecfda2bfddae84a1153", + "id" : "2403301", + "profile" : { + "bust" : "66", + "height" : "142", + "hip" : "70", + "waist" : "51", + "weight" : "35" + } + }, { + "alias_name" : "ハロウィンナイトメア", + "alias_name_display" : "ハロウィンナイトメア", + "hash" : "f05381161e3760b235eece970659c13c", + "id" : "2503302", + "profile" : { + "bust" : "66", + "height" : "142", + "hip" : "70", + "waist" : "51", + "weight" : "35" + } + }, { + "alias_name" : "ホワイトナイトメア", + "alias_name_display" : "ホワイトナイトメア", + "hash" : "5078a4011745218d0c969cad3bf3c169", + "id" : "2404410", + "profile" : { + "bust" : "66", + "height" : "142", + "hip" : "70", + "waist" : "51", + "weight" : "35" + } + }, { + "alias_name" : "ホワイトナイトメア", + "alias_name_display" : "ホワイトナイトメア", + "hash" : "a24533b9f3185e3735b81abe720ccefa", + "id" : "2504411", + "profile" : { + "bust" : "66", + "height" : "142", + "hip" : "70", + "waist" : "51", + "weight" : "35" + } + }, { + "alias_name" : "納涼浴衣娘", + "alias_name_display" : "納涼浴衣娘", + "hash" : "5cb519e64701c15572f2f51981c79ac7", + "id" : "2407801", + "profile" : { + "bust" : "66", + "height" : "142", + "hip" : "70", + "waist" : "51", + "weight" : "35" + } + }, { + "alias_name" : "納涼浴衣娘", + "alias_name_display" : "納涼浴衣娘", + "hash" : "54627202ea402abc86e37147cea9c2ea", + "id" : "2507802", + "profile" : { + "bust" : "66", + "height" : "142", + "hip" : "70", + "waist" : "51", + "weight" : "35" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "040042fc1ca9ce2681ec5db9997d39c1", + "id" : "2410301", + "profile" : { + "bust" : "66", + "height" : "142", + "hip" : "70", + "waist" : "51", + "weight" : "35" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "6f3c920d53e4f0ed7eb1cbe9482cd7d3", + "id" : "2510302", + "profile" : { + "bust" : "66", + "height" : "142", + "hip" : "70", + "waist" : "51", + "weight" : "35" + } + }, { + "alias_name" : "ゴシックホラーナイトメア", + "alias_name_display" : "ゴシックホラーナイトメア", + "event" : [ { + "event_id" : "013", + "event_name" : "第13回プロダクションマッチフェスティバル" + } ], + "hash" : "f74c99a3dba8770ce827fd3ceee60a10", + "id" : "2410501", + "profile" : { + "bust" : "66", + "height" : "142", + "hip" : "70", + "waist" : "51", + "weight" : "35" + } + }, { + "alias_name" : "ゴシックホラーナイトメア", + "alias_name_display" : "ゴシックホラーナイトメア", + "event" : [ { + "event_id" : "013", + "event_name" : "第13回プロダクションマッチフェスティバル" + } ], + "hash" : "2af32ad71bbed8be247e01b670d051a9", + "id" : "2510502", + "profile" : { + "bust" : "66", + "height" : "142", + "hip" : "70", + "waist" : "51", + "weight" : "35" + } + }, { + "alias_name" : "学園のヒロイン", + "alias_name_display" : "学園のヒロイン", + "event" : [ { + "event_id" : 412, + "event_name" : "聖靴学園の七不思議" + } ], + "hash" : "14f7e77a84e8f89398274d5e9ff63c3f", + "id" : "2414201", + "profile" : { + "bust" : "66", + "height" : "142", + "hip" : "70", + "waist" : "51", + "weight" : "35" + } + }, { + "alias_name" : "学園のヒロイン", + "alias_name_display" : "学園のヒロイン", + "event" : [ { + "event_id" : 412, + "event_name" : "聖靴学園の七不思議" + } ], + "hash" : "72301fc6b66e10af7b057d56155ceaa5", + "id" : "2514202", + "profile" : { + "bust" : "66", + "height" : "142", + "hip" : "70", + "waist" : "51", + "weight" : "35" + } + }, { + "alias_name" : "シンデレラドリーム", + "alias_name_display" : "シンデレラドリーム", + "hash" : "d380946c0a53f37c0d8fccc405fa343f", + "id" : "2417701", + "profile" : { + "bust" : "66", + "height" : "142", + "hip" : "70", + "waist" : "51", + "weight" : "35" + } + }, { + "alias_name" : "シンデレラドリーム", + "alias_name_display" : "シンデレラドリーム", + "hash" : "7784c97bce5a0e14bcd3d9aa63cb3ecf", + "id" : "2517702", + "profile" : { + "bust" : "66", + "height" : "142", + "hip" : "70", + "waist" : "51", + "weight" : "35" + } + }, { + "alias_name" : "ステップバイステップ", + "alias_name_display" : "ステップバイステップ", + "hash" : "7efa533684a2dd156d50e2ce4a59136d", + "id" : "2423801", + "profile" : { + "bust" : "66", + "height" : "142", + "hip" : "70", + "waist" : "51", + "weight" : "35" + } + }, { + "alias_name" : "ステップバイステップ", + "alias_name_display" : "ステップバイステップ", + "hash" : "46884da8ea8a4a9e6d66c1c7ae4fc974", + "id" : "2523802", + "profile" : { + "bust" : "66", + "height" : "142", + "hip" : "70", + "waist" : "51", + "weight" : "35" + } + }, { + "alias_name" : "4thアニバーサリー", + "alias_name_display" : "4thアニバーサリー", + "event" : [ { + "event_id" : 1704, + "event_name" : "アイドルプロデュース the 4th Anniversary" + } ], + "hash" : "3677958390fba4828e21cad9bbfc30b4", + "id" : "2428901", + "profile" : { + "bust" : "66", + "height" : "142", + "hip" : "70", + "waist" : "51", + "weight" : "35" + } + }, { + "alias_name" : "4thアニバーサリー", + "alias_name_display" : "4thアニバーサリー", + "event" : [ { + "event_id" : 1704, + "event_name" : "アイドルプロデュース the 4th Anniversary" + } ], + "hash" : "39fddacadc87a87a49aa2ad95731d1b8", + "id" : "2528902", + "profile" : { + "bust" : "66", + "height" : "142", + "hip" : "70", + "waist" : "51", + "weight" : "35" + } + }, { + "alias_name" : "4thアニバーサリー・S", + "alias_name_display" : "4thアニバーサリー・S", + "event" : [ { + "event_id" : 1704, + "event_name" : "アイドルプロデュース the 4th Anniversary" + } ], + "hash" : "8bf75ee15f38e8cb455b551604b503e5", + "id" : "2429001", + "profile" : { + "bust" : "66", + "height" : "142", + "hip" : "70", + "waist" : "51", + "weight" : "35" + } + }, { + "alias_name" : "4thアニバーサリー・S", + "alias_name_display" : "4thアニバーサリー・S", + "event" : [ { + "event_id" : 1704, + "event_name" : "アイドルプロデュース the 4th Anniversary" + } ], + "hash" : "da1764a3a75a36f036c830770c0fa508", + "id" : "2529002", + "profile" : { + "bust" : "66", + "height" : "142", + "hip" : "70", + "waist" : "51", + "weight" : "35" + } + }, { + "alias_name" : "ツナガルウワサ", + "alias_name_display" : "ツナガルウワサ", + "event" : [ { + "event_id" : 1509, + "event_name" : "第9回チーム対抗トークバトルショー" + } ], + "hash" : "58b52532b2a4c66aae460c87e2f19a7f", + "id" : "2435901", + "profile" : { + "bust" : "66", + "height" : "142", + "hip" : "70", + "waist" : "51", + "weight" : "35" + } + }, { + "alias_name" : "ツナガルウワサ", + "alias_name_display" : "ツナガルウワサ", + "event" : [ { + "event_id" : 1509, + "event_name" : "第9回チーム対抗トークバトルショー" + } ], + "hash" : "8760de4f1ffcd5454f63f3332535bb24", + "id" : "2535902", + "profile" : { + "bust" : "66", + "height" : "142", + "hip" : "70", + "waist" : "51", + "weight" : "35" + } + } ], + "idol_id" : 114, + "idol_name" : "白坂小梅", + "idol_name_display" : "白坂小梅", + "units" : [ { + "id" : "9", + "name" : "エルドリッチ・ロアテラー" + }, { + "id" : "77", + "name" : "Jumpin'Joker" + }, { + "id" : "79", + "name" : "NiGHT ENCOUNTER" + }, { + "id" : "82", + "name" : "Rosenburg Alptraum" + }, { + "id" : "90", + "name" : "カワイイボクと142's" + }, { + "id" : "127", + "name" : "落花流水" + }, { + "id" : "183", + "name" : "メイドコレクション" + }, { + "id" : "186", + "name" : "LittlePOPS" + }, { + "id" : "201", + "name" : "Caskets" + }, { + "id" : "212", + "name" : "CINDERELLA GIRLS" + } ] +}, { + "aliases" : [ { + "event" : [ { + "event_id" : 201, + "event_name" : "アイドルサバイバル" + } ], + "hash" : "c73b4dc40685bc50d331c9f32d1b91fb", + "id" : "2202501", + "profile" : { + "bust" : "89", + "height" : "162", + "hip" : "85", + "waist" : "59", + "weight" : "46" + } + }, { + "event" : [ { + "event_id" : 201, + "event_name" : "アイドルサバイバル" + } ], + "hash" : "28bb1de41fcfabcb5d2ba1d3870c121b", + "id" : "2302502", + "profile" : { + "bust" : "89", + "height" : "162", + "hip" : "85", + "waist" : "59", + "weight" : "46" + } + }, { + "alias_name" : "バレンタインパーティー", + "alias_name_display" : "バレンタインパーティー", + "hash" : "031476bad3baae90639d1aa438801e77", + "id" : "2208001", + "profile" : { + "bust" : "89", + "height" : "162", + "hip" : "85", + "waist" : "59", + "weight" : "46" + } + }, { + "alias_name" : "バレンタインパーティー", + "alias_name_display" : "バレンタインパーティー", + "hash" : "e715a9ad30451fd62a269fb9a888c330", + "id" : "2308002", + "profile" : { + "bust" : "89", + "height" : "162", + "hip" : "85", + "waist" : "59", + "weight" : "46" + } + }, { + "alias_name" : "リーブルパピヨン", + "alias_name_display" : "リーブルパピヨン", + "hash" : "ccc7d18edcfe645bd67a10ee9418a1a3", + "id" : "2211801", + "profile" : { + "bust" : "89", + "height" : "162", + "hip" : "85", + "waist" : "59", + "weight" : "46" + } + }, { + "alias_name" : "リーブルパピヨン", + "alias_name_display" : "リーブルパピヨン", + "hash" : "038dbf3dcf6ba83def688acc1d3a51b8", + "id" : "2311802", + "profile" : { + "bust" : "89", + "height" : "162", + "hip" : "85", + "waist" : "59", + "weight" : "46" + } + }, { + "alias_name" : "ドゥーマリアージュ", + "alias_name_display" : "ドゥーマリアージュ", + "hash" : "67c5c09da322da1f45a594ffb616516a", + "id" : "2218301", + "profile" : { + "bust" : "89", + "height" : "162", + "hip" : "85", + "waist" : "59", + "weight" : "46" + } + }, { + "alias_name" : "ドゥーマリアージュ", + "alias_name_display" : "ドゥーマリアージュ", + "hash" : "55ae486ac1f7dd977dad78e87069e444", + "id" : "2318302", + "profile" : { + "bust" : "89", + "height" : "162", + "hip" : "85", + "waist" : "59", + "weight" : "46" + } + }, { + "alias_name" : "サマーシーズン", + "alias_name_display" : "サマーシーズン", + "hash" : "3dc8352d84780b94599f2f28c3cb1b08", + "id" : "2221801", + "profile" : { + "bust" : "89", + "height" : "162", + "hip" : "85", + "waist" : "59", + "weight" : "46" + } + }, { + "alias_name" : "サマーシーズン", + "alias_name_display" : "サマーシーズン", + "hash" : "720ef57f0103eee721a8021066c3b34d", + "id" : "2321802", + "profile" : { + "bust" : "89", + "height" : "162", + "hip" : "85", + "waist" : "59", + "weight" : "46" + } + }, { + "alias_name" : "レディスタイル", + "alias_name_display" : "レディスタイル", + "hash" : "ec4525fd83e7bb622de501a3920e4658", + "id" : "2224801", + "profile" : { + "bust" : "89", + "height" : "162", + "hip" : "85", + "waist" : "59", + "weight" : "46" + } + }, { + "alias_name" : "レディスタイル", + "alias_name_display" : "レディスタイル", + "hash" : "3ecd3524410cf349b532c7017d061c96", + "id" : "2324802", + "profile" : { + "bust" : "89", + "height" : "162", + "hip" : "85", + "waist" : "59", + "weight" : "46" + } + }, { + "alias_name" : "マイデコラティブ", + "alias_name_display" : "マイデコラティブ", + "hash" : "d6aad9209b558bbe367ce9f4a68ee90a", + "id" : "2232001", + "profile" : { + "bust" : "89", + "height" : "162", + "hip" : "85", + "waist" : "59", + "weight" : "46" + } + }, { + "alias_name" : "マイデコラティブ", + "alias_name_display" : "マイデコラティブ", + "hash" : "7a9fa317e0b7b733838a7bbb4a71f5d1", + "id" : "2332002", + "profile" : { + "bust" : "89", + "height" : "162", + "hip" : "85", + "waist" : "59", + "weight" : "46" + } + }, { + "alias_name" : "ゴージャスチアー", + "alias_name_display" : "ゴージャスチアー", + "event" : [ { + "event_id" : 1102, + "event_name" : "第2回プロダクション対抗トークバトルショー" + } ], + "hash" : "babca7b72ad285377f19363a451e9a6d", + "id" : "2414501", + "profile" : { + "bust" : "89", + "height" : "162", + "hip" : "85", + "waist" : "59", + "weight" : "46" + } + }, { + "alias_name" : "ゴージャスチアー", + "alias_name_display" : "ゴージャスチアー", + "event" : [ { + "event_id" : 1102, + "event_name" : "第2回プロダクション対抗トークバトルショー" + } ], + "hash" : "d41291b48e8a5e5c6db1ddfd3adac08e", + "id" : "2514502", + "profile" : { + "bust" : "89", + "height" : "162", + "hip" : "85", + "waist" : "59", + "weight" : "46" + } + }, { + "alias_name" : "マジモード", + "alias_name_display" : "マジモード", + "event" : [ { + "event_id" : 725, + "event_name" : "第25回ドリームLIVEフェスティバル" + } ], + "hash" : "94ac010e58c3c7e7e3e4978efa06ae25", + "id" : "2435701", + "profile" : { + "bust" : "89", + "height" : "162", + "hip" : "85", + "waist" : "59", + "weight" : "46" + } + }, { + "alias_name" : "マジモード", + "alias_name_display" : "マジモード", + "event" : [ { + "event_id" : 725, + "event_name" : "第25回ドリームLIVEフェスティバル" + } ], + "hash" : "2c67e5e41d85f043ffc99b92a4873ae1", + "id" : "2535702", + "profile" : { + "bust" : "89", + "height" : "162", + "hip" : "85", + "waist" : "59", + "weight" : "46" + } + } ], + "idol_id" : 115, + "idol_name" : "岸部彩華", + "idol_name_display" : "岸部彩華", + "units" : [ { + "id" : "89", + "name" : "ガールズ・パワー" + } ] +}, { + "aliases" : [ { + "hash" : "9cdd818a009f19eab8c73cc845175ee6", + "id" : "2202701", + "profile" : { + "bust" : "78", + "height" : "152", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "hash" : "ba921b7605a9080d619152c0a64d2169", + "id" : "2302702", + "profile" : { + "bust" : "78", + "height" : "152", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "ノベルスパイレーツ", + "alias_name_display" : "ノベルスパイレーツ", + "hash" : "77c702153a1dcb38c773b94dea0b2628", + "id" : "2207901", + "profile" : { + "bust" : "78", + "height" : "152", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "ノベルスパイレーツ", + "alias_name_display" : "ノベルスパイレーツ", + "hash" : "f2a042e9aace39492a5e28e4d14d8715", + "id" : "2307902", + "profile" : { + "bust" : "78", + "height" : "152", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "スパニッシュスタイル", + "alias_name_display" : "スパニッシュスタイル", + "event" : [ { + "event_id" : 504, + "event_name" : "アイドルLIVEツアーinスペイン" + } ], + "hash" : "809a05d98209abdd96028110f37c46f6", + "id" : "2209401", + "profile" : { + "bust" : "78", + "height" : "152", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "スパニッシュスタイル", + "alias_name_display" : "スパニッシュスタイル", + "event" : [ { + "event_id" : 504, + "event_name" : "アイドルLIVEツアーinスペイン" + } ], + "hash" : "47d7ba193b349e7bd1dc3f1a03a599c8", + "id" : "2309402", + "profile" : { + "bust" : "78", + "height" : "152", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "ひな祭り", + "alias_name_display" : "ひな祭り", + "event" : [ { + "event_id" : 510, + "event_name" : "ひな祭りLIVEツアーカーニバル" + } ], + "hash" : "70c15775d5cabd419c8a1397115799aa", + "id" : "2214801", + "profile" : { + "bust" : "78", + "height" : "152", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "ひな祭り", + "alias_name_display" : "ひな祭り", + "event" : [ { + "event_id" : 510, + "event_name" : "ひな祭りLIVEツアーカーニバル" + } ], + "hash" : "f8f7b051faa13e961bed26cc460ad90c", + "id" : "2314802", + "profile" : { + "bust" : "78", + "height" : "152", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "ブレイブハート", + "alias_name_display" : "ブレイブハート", + "hash" : "f834f89f345e42c99a1a433007dab3d4", + "id" : "2222101", + "profile" : { + "bust" : "78", + "height" : "152", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "ブレイブハート", + "alias_name_display" : "ブレイブハート", + "hash" : "b2b25e4024fc6ea72ef15cf163013db6", + "id" : "2322102", + "profile" : { + "bust" : "78", + "height" : "152", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "ファンサーキット", + "alias_name_display" : "ファンサーキット", + "hash" : "323630ff5d66437d6b8e66b0b763c0cb", + "id" : "2228501", + "profile" : { + "bust" : "78", + "height" : "152", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "ファンサーキット", + "alias_name_display" : "ファンサーキット", + "hash" : "8a5a9f14e183e6a73639a965955129a7", + "id" : "2328502", + "profile" : { + "bust" : "78", + "height" : "152", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "ワイルドフレンズ", + "alias_name_display" : "ワイルドフレンズ", + "hash" : "ea24a69654f849a122461782a256f4cc", + "id" : "2231601", + "profile" : { + "bust" : "78", + "height" : "152", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "ワイルドフレンズ", + "alias_name_display" : "ワイルドフレンズ", + "hash" : "70a62d93285f5c7e10b9e127db9bf8a0", + "id" : "2331602", + "profile" : { + "bust" : "78", + "height" : "152", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "ロワイヤルガール", + "alias_name_display" : "ロワイヤルガール", + "event" : [ { + "event_id" : 801, + "event_name" : "アイドルLIVEロワイヤル" + } ], + "hash" : "a26c6d59e649ff57a0dd34b5df7ea154", + "id" : "2409401", + "profile" : { + "bust" : "78", + "height" : "152", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "ロワイヤルガール", + "alias_name_display" : "ロワイヤルガール", + "event" : [ { + "event_id" : 801, + "event_name" : "アイドルLIVEロワイヤル" + } ], + "hash" : "c92e027bebf2bd47e39256c706f5b123", + "id" : "2509402", + "profile" : { + "bust" : "78", + "height" : "152", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "冒険竜", + "alias_name_display" : "冒険竜", + "event" : [ { + "event_id" : 515, + "event_name" : "戦国公演 天魔の乱" + } ], + "hash" : "8330c93dc6430067c4c1ec6922e3290e", + "id" : "2419001", + "profile" : { + "bust" : "78", + "height" : "152", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "冒険竜", + "alias_name_display" : "冒険竜", + "event" : [ { + "event_id" : 515, + "event_name" : "戦国公演 天魔の乱" + } ], + "hash" : "a6ae3f65caf2cc10d44c0a64f2f1191e", + "id" : "2519002", + "profile" : { + "bust" : "78", + "height" : "152", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "アドベントチアー", + "alias_name_display" : "アドベントチアー", + "event" : [ { + "event_id" : 1505, + "event_name" : "チーム対抗トークバトルショー ウィンターSP" + } ], + "hash" : "a909e3bf82a215f7974d46400d71f959", + "id" : "2430201", + "profile" : { + "bust" : "78", + "height" : "152", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "アドベントチアー", + "alias_name_display" : "アドベントチアー", + "event" : [ { + "event_id" : 1505, + "event_name" : "チーム対抗トークバトルショー ウィンターSP" + } ], + "hash" : "b0a88d8ab733b0a8b4603a9ed1905b9a", + "id" : "2530202", + "profile" : { + "bust" : "78", + "height" : "152", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + } ], + "idol_id" : 116, + "idol_name" : "氏家むつみ", + "idol_name_display" : "氏家むつみ", + "units" : [ { + "id" : "28", + "name" : "スパニッシュスタイル" + }, { + "id" : "120", + "name" : "ブルームジャーニー" + } ] +}, { + "aliases" : [ { + "hash" : "1458f727e92427dcc643e35e6e09eb2e", + "id" : "2202801", + "profile" : { + "bust" : "88", + "height" : "155", + "hip" : "86", + "waist" : "60", + "weight" : "55" + } + }, { + "hash" : "c7dfaedfd194df0dc4bff0674dc56760", + "id" : "2302802", + "profile" : { + "bust" : "88", + "height" : "155", + "hip" : "87", + "waist" : "61", + "weight" : "56" + } + }, { + "alias_name" : "湯けむり温泉", + "alias_name_display" : "湯けむり温泉", + "hash" : "108a9a1a26e4f1559940f92990e53402", + "id" : "2209201", + "profile" : { + "bust" : "88", + "height" : "155", + "hip" : "87", + "waist" : "61", + "weight" : "56" + } + }, { + "alias_name" : "湯けむり温泉", + "alias_name_display" : "湯けむり温泉", + "hash" : "69a68f545b404d2d285734d3f819d93e", + "id" : "2309202", + "profile" : { + "bust" : "88", + "height" : "155", + "hip" : "87", + "waist" : "61", + "weight" : "56" + } + }, { + "alias_name" : "クラシカルフリル", + "alias_name_display" : "クラシカルフリル", + "event" : [ { + "event_id" : "014", + "event_name" : "第14回プロダクションマッチフェスティバル" + } ], + "hash" : "1f174baf73bc3e258534284fab04df73", + "id" : "2213901", + "profile" : { + "bust" : "88", + "height" : "155", + "hip" : "87", + "waist" : "61", + "weight" : "56" + } + }, { + "alias_name" : "クラシカルフリル", + "alias_name_display" : "クラシカルフリル", + "event" : [ { + "event_id" : "014", + "event_name" : "第14回プロダクションマッチフェスティバル" + } ], + "hash" : "837d83bc33174cc52c2d0c0e35fba135", + "id" : "2313902", + "profile" : { + "bust" : "88", + "height" : "155", + "hip" : "87", + "waist" : "61", + "weight" : "56" + } + }, { + "alias_name" : "白き女傑", + "alias_name_display" : "白き女傑", + "hash" : "c53f9a86b6b7484381e566ced779b7a1", + "id" : "2218701", + "profile" : { + "bust" : "88", + "height" : "155", + "hip" : "87", + "waist" : "61", + "weight" : "56" + } + }, { + "alias_name" : "白き女傑", + "alias_name_display" : "白き女傑", + "hash" : "86d9836742784446627e9796766a8bd1", + "id" : "2318702", + "profile" : { + "bust" : "88", + "height" : "155", + "hip" : "87", + "waist" : "61", + "weight" : "56" + } + }, { + "alias_name" : "ワーキング・ロード", + "alias_name_display" : "ワーキング・ロード", + "hash" : "fd2c868d155fde4a8b033854eea4a809", + "id" : "2225401", + "profile" : { + "bust" : "88", + "height" : "155", + "hip" : "87", + "waist" : "61", + "weight" : "56" + } + }, { + "alias_name" : "ワーキング・ロード", + "alias_name_display" : "ワーキング・ロード", + "hash" : "251069b6aa9c8f8f8992ff851f1dd51b", + "id" : "2325402", + "profile" : { + "bust" : "88", + "height" : "155", + "hip" : "87", + "waist" : "61", + "weight" : "56" + } + }, { + "alias_name" : "まごころメイド", + "alias_name_display" : "まごころメイド", + "hash" : "132f8d1774a7420805decc458a0beb71", + "id" : "2231901", + "profile" : { + "bust" : "88", + "height" : "155", + "hip" : "87", + "waist" : "61", + "weight" : "56" + } + }, { + "alias_name" : "まごころメイド", + "alias_name_display" : "まごころメイド", + "hash" : "3a60e9a4a39020d28e9988a0878c1106", + "id" : "2331902", + "profile" : { + "bust" : "88", + "height" : "155", + "hip" : "87", + "waist" : "61", + "weight" : "56" + } + }, { + "alias_name" : "麗しきプリマドンナ", + "alias_name_display" : "麗しきプリマドンナ", + "event" : [ { + "event_id" : "017", + "event_name" : "第17回プロダクションマッチフェスティバル" + } ], + "hash" : "a69ce5cc09555d49bae51a33a292b4a3", + "id" : "2415101", + "profile" : { + "bust" : "88", + "height" : "155", + "hip" : "87", + "waist" : "61", + "weight" : "56" + } + }, { + "alias_name" : "麗しきプリマドンナ", + "alias_name_display" : "麗しきプリマドンナ", + "event" : [ { + "event_id" : "017", + "event_name" : "第17回プロダクションマッチフェスティバル" + } ], + "hash" : "7c0fc03e0f012ea2ebb7787795f84eef", + "id" : "2515102", + "profile" : { + "bust" : "88", + "height" : "155", + "hip" : "87", + "waist" : "61", + "weight" : "56" + } + }, { + "alias_name" : "シンシアチアー", + "alias_name_display" : "シンシアチアー", + "event" : [ { + "event_id" : 1502, + "event_name" : "チーム対抗雨の日トークバトルショー" + } ], + "hash" : "dd88e2e9285553c7ad6b9fcfd066ccd7", + "id" : "2425001", + "profile" : { + "bust" : "88", + "height" : "155", + "hip" : "87", + "waist" : "61", + "weight" : "56" + } + }, { + "alias_name" : "シンシアチアー", + "alias_name_display" : "シンシアチアー", + "event" : [ { + "event_id" : 1502, + "event_name" : "チーム対抗雨の日トークバトルショー" + } ], + "hash" : "a478ca3a4093095341230dd3a5a4af2b", + "id" : "2525002", + "profile" : { + "bust" : "88", + "height" : "155", + "hip" : "87", + "waist" : "61", + "weight" : "56" + } + }, { + "alias_name" : "ビューティアスヴォーチェ", + "alias_name_display" : "ビューティアスヴォーチェ", + "event" : [ { + "event_id" : 724, + "event_name" : "第24回ドリームLIVEフェスティバル" + } ], + "hash" : "c99ae6e79c74a49e4d0ecbfa5ec125e3", + "id" : "2435001", + "profile" : { + "bust" : "88", + "height" : "155", + "hip" : "87", + "waist" : "61", + "weight" : "56" + } + }, { + "alias_name" : "ビューティアスヴォーチェ", + "alias_name_display" : "ビューティアスヴォーチェ", + "event" : [ { + "event_id" : 724, + "event_name" : "第24回ドリームLIVEフェスティバル" + } ], + "hash" : "148c761bd9f2699953da23d185cfed2b", + "id" : "2535002", + "profile" : { + "bust" : "88", + "height" : "155", + "hip" : "87", + "waist" : "61", + "weight" : "56" + } + } ], + "idol_id" : 117, + "idol_name" : "西川保奈美", + "idol_name_display" : "西川保奈美", + "units" : [ { + "id" : "206", + "name" : "セクシーボンデージ" + } ] +}, { + "aliases" : [ { + "hash" : "b9c6ac643c09462bf81ce0377506d23c", + "id" : "2203001", + "profile" : { + "bust" : "72", + "height" : "150", + "hip" : "73", + "waist" : "51", + "weight" : "40" + } + }, { + "hash" : "4ba43b47803b72a5f49a9bcb8616d0e8", + "id" : "2303002", + "profile" : { + "bust" : "72", + "height" : "150", + "hip" : "73", + "waist" : "51", + "weight" : "40" + } + }, { + "alias_name" : "浴衣祭り", + "alias_name_display" : "浴衣祭り", + "hash" : "3b22401aac95c2a8d36f95d2f2121ef6", + "id" : "2204901", + "profile" : { + "bust" : "72", + "height" : "150", + "hip" : "73", + "waist" : "51", + "weight" : "40" + } + }, { + "alias_name" : "浴衣祭り", + "alias_name_display" : "浴衣祭り", + "hash" : "9bd73a611f0150483ba1443b89157678", + "id" : "2304902", + "profile" : { + "bust" : "72", + "height" : "150", + "hip" : "73", + "waist" : "51", + "weight" : "40" + } + }, { + "alias_name" : "新春コレクション", + "alias_name_display" : "新春コレクション", + "hash" : "ab3ffe2f96c8fd1ff009d0ad90fb66fd", + "id" : "2207601", + "profile" : { + "bust" : "72", + "height" : "150", + "hip" : "73", + "waist" : "51", + "weight" : "40" + } + }, { + "alias_name" : "新春コレクション", + "alias_name_display" : "新春コレクション", + "hash" : "876f0ea90c8c4243592c3bd1e801ad98", + "id" : "2307602", + "profile" : { + "bust" : "72", + "height" : "150", + "hip" : "73", + "waist" : "51", + "weight" : "40" + } + }, { + "alias_name" : "クリスマスパーティー", + "alias_name_display" : "クリスマスパーティー", + "hash" : "7a61bf64e0b426923bb45b941bd7c90a", + "id" : "2213201", + "profile" : { + "bust" : "72", + "height" : "150", + "hip" : "73", + "waist" : "51", + "weight" : "40" + } + }, { + "alias_name" : "クリスマスパーティー", + "alias_name_display" : "クリスマスパーティー", + "hash" : "3ade0c25bce649c62eb1f444cf449f01", + "id" : "2313202", + "profile" : { + "bust" : "72", + "height" : "150", + "hip" : "73", + "waist" : "51", + "weight" : "40" + } + }, { + "alias_name" : "魔女っ娘I.C", + "alias_name_display" : "魔女っ娘I.C", + "event" : [ { + "event_id" : 1201, + "event_name" : "目指せ魔女っ娘 アイドルチャレンジ" + } ], + "hash" : "216acd7a27e04ba268e35d2966e681af", + "id" : "2315802", + "profile" : { + "bust" : "72", + "height" : "150", + "hip" : "73", + "waist" : "51", + "weight" : "40" + } + }, { + "alias_name" : "マーチングバンド", + "alias_name_display" : "マーチングバンド", + "hash" : "220429110c5cf2fbaa7580fa256063c4", + "id" : "2218401", + "profile" : { + "bust" : "72", + "height" : "150", + "hip" : "73", + "waist" : "51", + "weight" : "40" + } + }, { + "alias_name" : "マーチングバンド", + "alias_name_display" : "マーチングバンド", + "hash" : "78246cc890dc9be62b96ca43c065bfbe", + "id" : "2318402", + "profile" : { + "bust" : "72", + "height" : "150", + "hip" : "73", + "waist" : "51", + "weight" : "40" + } + }, { + "alias_name" : "カインドハート", + "alias_name_display" : "カインドハート", + "event" : [ { + "event_id" : 716, + "event_name" : "第16回ドリームLIVEフェスティバル" + } ], + "hash" : "783e73d2983bbfa46d1df677f56b8ee9", + "id" : "2323502", + "profile" : { + "bust" : "72", + "height" : "150", + "hip" : "73", + "waist" : "51", + "weight" : "40" + } + }, { + "alias_name" : "タラン・リュタン", + "alias_name_display" : "タラン・リュタン", + "hash" : "8202dd0badfaaca173a78ece8775c418", + "id" : "2230001", + "profile" : { + "bust" : "72", + "height" : "150", + "hip" : "73", + "waist" : "51", + "weight" : "40" + } + }, { + "alias_name" : "タラン・リュタン", + "alias_name_display" : "タラン・リュタン", + "hash" : "d7536b080af66bef1964c44f102c1394", + "id" : "2330002", + "profile" : { + "bust" : "72", + "height" : "150", + "hip" : "73", + "waist" : "51", + "weight" : "40" + } + }, { + "alias_name" : "リトルプリーステス", + "alias_name_display" : "リトルプリーステス", + "event" : [ { + "event_id" : 504, + "event_name" : "アイドルLIVEツアーinスペイン" + } ], + "hash" : "d2df4cba6a3e68031193dc3dba693f2f", + "id" : "2406301", + "profile" : { + "bust" : "72", + "height" : "150", + "hip" : "73", + "waist" : "51", + "weight" : "40" + } + }, { + "alias_name" : "リトルプリーステス", + "alias_name_display" : "リトルプリーステス", + "event" : [ { + "event_id" : 504, + "event_name" : "アイドルLIVEツアーinスペイン" + } ], + "hash" : "b523fbaa59e1e8df3ad3e299ae4737da", + "id" : "2506302", + "profile" : { + "bust" : "72", + "height" : "150", + "hip" : "73", + "waist" : "51", + "weight" : "40" + } + }, { + "alias_name" : "マジカルガール・リーフ", + "alias_name_display" : "マジカルガール・リーフ", + "event" : [ { + "event_id" : 1201, + "event_name" : "目指せ魔女っ娘 アイドルチャレンジ" + } ], + "hash" : "f5c7d9885d3ef621bb3817c499315657", + "id" : "2414601", + "profile" : { + "bust" : "72", + "height" : "150", + "hip" : "73", + "waist" : "51", + "weight" : "40" + } + }, { + "alias_name" : "マジカルガール・リーフ", + "alias_name_display" : "マジカルガール・リーフ", + "event" : [ { + "event_id" : 1201, + "event_name" : "目指せ魔女っ娘 アイドルチャレンジ" + } ], + "hash" : "25de5c4589c6fd4c321306f534e8daec", + "id" : "2514602", + "profile" : { + "bust" : "72", + "height" : "150", + "hip" : "73", + "waist" : "51", + "weight" : "40" + } + }, { + "alias_name" : "マジカルガールS・リーフ", + "alias_name_display" : "マジカルガールS・リーフ", + "event" : [ { + "event_id" : 1201, + "event_name" : "目指せ魔女っ娘 アイドルチャレンジ" + } ], + "hash" : "f155c28fb82fb025607d07c733cc53b2", + "id" : "2414701", + "profile" : { + "bust" : "72", + "height" : "150", + "hip" : "73", + "waist" : "51", + "weight" : "40" + } + }, { + "alias_name" : "マジカルガールS・リーフ", + "alias_name_display" : "マジカルガールS・リーフ", + "event" : [ { + "event_id" : 1201, + "event_name" : "目指せ魔女っ娘 アイドルチャレンジ" + } ], + "hash" : "2987b2a345ae850352027f252ba50359", + "id" : "2514702", + "profile" : { + "bust" : "72", + "height" : "150", + "hip" : "73", + "waist" : "51", + "weight" : "40" + } + }, { + "alias_name" : "エアリアルフェアリー", + "alias_name_display" : "エアリアルフェアリー", + "hash" : "1b1ee82db7a9842317010a4dcf5878f2", + "id" : "2424101", + "profile" : { + "bust" : "72", + "height" : "150", + "hip" : "73", + "waist" : "51", + "weight" : "40" + } + }, { + "alias_name" : "エアリアルフェアリー", + "alias_name_display" : "エアリアルフェアリー", + "hash" : "f9e301f6b1445bcc65500175036e4f1d", + "id" : "2524102", + "profile" : { + "bust" : "72", + "height" : "150", + "hip" : "73", + "waist" : "51", + "weight" : "40" + } + }, { + "alias_name" : "ゆめの大空", + "alias_name_display" : "ゆめの大空", + "event" : [ { + "event_id" : 1803, + "event_name" : "アイドルバラエティ 大空への挑戦 ~Fly me to the Sky~" + } ], + "hash" : "b29c370ccee401411077c3ac897b457b", + "id" : "2432801", + "profile" : { + "bust" : "72", + "height" : "150", + "hip" : "73", + "waist" : "51", + "weight" : "40" + } + }, { + "alias_name" : "ゆめの大空", + "alias_name_display" : "ゆめの大空", + "event" : [ { + "event_id" : 1803, + "event_name" : "アイドルバラエティ 大空への挑戦 ~Fly me to the Sky~" + } ], + "hash" : "3a91b3c21892380bf9febb395bf4baa5", + "id" : "2532802", + "profile" : { + "bust" : "72", + "height" : "150", + "hip" : "73", + "waist" : "51", + "weight" : "40" + } + } ], + "idol_id" : 118, + "idol_name" : "成宮由愛", + "idol_name_display" : "成宮由愛", + "units" : [ { + "id" : "114", + "name" : "ドリームホープスプリング" + }, { + "id" : "120", + "name" : "ブルームジャーニー" + }, { + "id" : "164", + "name" : "マジカルテット" + }, { + "id" : "214", + "name" : "L.M.B.G" + } ] +}, { + "aliases" : [ { + "alias_name" : "ひな祭り", + "alias_name_display" : "ひな祭り", + "event" : [ { + "event_id" : 202, + "event_name" : "アイドルサバイバルひな祭り編" + } ], + "hash" : "ada1f3044f16789d41715c19836867d2", + "id" : "2203101", + "profile" : { + "bust" : "78", + "height" : "163", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ひな祭り", + "alias_name_display" : "ひな祭り", + "event" : [ { + "event_id" : 202, + "event_name" : "アイドルサバイバルひな祭り編" + } ], + "hash" : "92eb0189eff8cc013115f02a1bad963c", + "id" : "2303102", + "profile" : { + "bust" : "78", + "height" : "163", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ゴスペルドレス", + "alias_name_display" : "ゴスペルドレス", + "event" : [ { + "event_id" : 208, + "event_name" : "アイドルサバイバル聖歌響くクリスマス" + } ], + "hash" : "a2eb76bbccb00f2f5ffe37499f31af41", + "id" : "2207401", + "profile" : { + "bust" : "78", + "height" : "163", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ゴスペルドレス", + "alias_name_display" : "ゴスペルドレス", + "event" : [ { + "event_id" : 208, + "event_name" : "アイドルサバイバル聖歌響くクリスマス" + } ], + "hash" : "1ecb11582b98c1a39816444772f3a0f3", + "id" : "2307402", + "profile" : { + "bust" : "78", + "height" : "163", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ラッキーフォーチュン", + "alias_name_display" : "ラッキーフォーチュン", + "hash" : "7294157f71abf9196c9229a87fe5fdb6", + "id" : "2210001", + "profile" : { + "bust" : "78", + "height" : "163", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ラッキーフォーチュン", + "alias_name_display" : "ラッキーフォーチュン", + "hash" : "8a007e260d74c773aa6a389556cf2ca2", + "id" : "2310002", + "profile" : { + "bust" : "78", + "height" : "163", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "スピリチュアルガール", + "alias_name_display" : "スピリチュアルガール", + "hash" : "9c51aff31404021b1c109fe993cc2753", + "id" : "2216701", + "profile" : { + "bust" : "78", + "height" : "163", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "スピリチュアルガール", + "alias_name_display" : "スピリチュアルガール", + "hash" : "9d45daaf1e78b11e1297d7f33e08770c", + "id" : "2316702", + "profile" : { + "bust" : "78", + "height" : "163", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ビーチガール", + "alias_name_display" : "ビーチガール", + "event" : [ { + "event_id" : 1703, + "event_name" : "アイドルプロデュース おいでよ!海の家" + } ], + "hash" : "8b04d6339e2e106de0498f5eb986260d", + "id" : "2222201", + "profile" : { + "bust" : "78", + "height" : "163", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ビーチガール", + "alias_name_display" : "ビーチガール", + "event" : [ { + "event_id" : 1703, + "event_name" : "アイドルプロデュース おいでよ!海の家" + } ], + "hash" : "7dcecec11834d30adfabe86d7edb44a6", + "id" : "2322202", + "profile" : { + "bust" : "78", + "height" : "163", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ビーチガール・S", + "alias_name_display" : "ビーチガール・S", + "event" : [ { + "event_id" : 1703, + "event_name" : "アイドルプロデュース おいでよ!海の家" + } ], + "hash" : "f8381257fc2199e90429d3c75708a1e8", + "id" : "2222301", + "profile" : { + "bust" : "78", + "height" : "163", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ビーチガール・S", + "alias_name_display" : "ビーチガール・S", + "event" : [ { + "event_id" : 1703, + "event_name" : "アイドルプロデュース おいでよ!海の家" + } ], + "hash" : "c8d97b51b309b87a36bcdfcc0a767566", + "id" : "2322302", + "profile" : { + "bust" : "78", + "height" : "163", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "フォーチュンヒーロー", + "alias_name_display" : "フォーチュンヒーロー", + "event" : [ { + "event_id" : 523, + "event_name" : "鋼鉄公演 きらりんロボ -襲来!コスメティア帝国-" + } ], + "hash" : "0a98b80bbf63c91923a8edf62a448434", + "id" : "2324602", + "profile" : { + "bust" : "78", + "height" : "163", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "タラン・ミュジーク", + "alias_name_display" : "タラン・ミュジーク", + "hash" : "45443770e7bb8295e479ab17be49edba", + "id" : "2228201", + "profile" : { + "bust" : "78", + "height" : "163", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "タラン・ミュジーク", + "alias_name_display" : "タラン・ミュジーク", + "hash" : "d2eacbc1164672558526bff76d8995b0", + "id" : "2328202", + "profile" : { + "bust" : "78", + "height" : "163", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "フォーチュン★スター", + "alias_name_display" : "フォーチュン★スター", + "hash" : "206de916e07f5839c754f6d3be15ee29", + "id" : "2409901", + "profile" : { + "bust" : "78", + "height" : "163", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "フォーチュン★スター", + "alias_name_display" : "フォーチュン★スター", + "hash" : "77f55e048e90970b0d994f245ef32d2b", + "id" : "2509902", + "profile" : { + "bust" : "78", + "height" : "163", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "フォーチュンチアー", + "alias_name_display" : "フォーチュンチアー", + "event" : [ { + "event_id" : 1109, + "event_name" : "第9回プロダクション対抗トークバトルショー" + } ], + "hash" : "f6b9c94dd166ad83ccfaf4f85de47c66", + "id" : "2422801", + "profile" : { + "bust" : "78", + "height" : "163", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "フォーチュンチアー", + "alias_name_display" : "フォーチュンチアー", + "event" : [ { + "event_id" : 1109, + "event_name" : "第9回プロダクション対抗トークバトルショー" + } ], + "hash" : "e2bde5d2aa1f5aab95c8bb9251ab2af9", + "id" : "2522802", + "profile" : { + "bust" : "78", + "height" : "163", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ピックアップフォーチュン", + "alias_name_display" : "ピックアップフォーチュン", + "event" : [ { + "event_id" : 728, + "event_name" : "ドリームLIVEフェスティバル スプリングSP" + } ], + "hash" : "40ac8ff64cd19e3e12fe831d0da0c22a", + "id" : "2439001", + "profile" : { + "bust" : "78", + "height" : "163", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ピックアップフォーチュン", + "alias_name_display" : "ピックアップフォーチュン", + "event" : [ { + "event_id" : 728, + "event_name" : "ドリームLIVEフェスティバル スプリングSP" + } ], + "hash" : "cc04b9fd7b06293b952152aef32f4561", + "id" : "2539002", + "profile" : { + "bust" : "78", + "height" : "163", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + } ], + "idol_id" : 119, + "idol_name" : "藤居朋", + "idol_name_display" : "藤居朋", + "units" : [ { + "id" : "56", + "name" : "ミステリアスガールズ" + }, { + "id" : "92", + "name" : "ゴスペルシスターズ" + }, { + "id" : "100", + "name" : "ハートウォーマー" + } ] +}, { + "aliases" : [ { + "hash" : "e44e7611282f6c57fea4ab3fc18d6519", + "id" : "2203601", + "profile" : { + "bust" : "82", + "height" : "163", + "hip" : "81", + "waist" : "56", + "weight" : "45" + } + }, { + "hash" : "ed3863e909c00d702b232b25c6f1633a", + "id" : "2303602", + "profile" : { + "bust" : "82", + "height" : "163", + "hip" : "81", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "クーリッシュピクシー", + "alias_name_display" : "クーリッシュピクシー", + "event" : [ { + "event_id" : 204, + "event_name" : "アイドルサバイバルin動物園" + } ], + "hash" : "a6c0eff1e5c7ad9397cda888d0a3536c", + "id" : "2204601", + "profile" : { + "bust" : "82", + "height" : "163", + "hip" : "81", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "クーリッシュピクシー", + "alias_name_display" : "クーリッシュピクシー", + "event" : [ { + "event_id" : 204, + "event_name" : "アイドルサバイバルin動物園" + } ], + "hash" : "8d468d9e16245baa83cff879b722782e", + "id" : "2304602", + "profile" : { + "bust" : "82", + "height" : "163", + "hip" : "81", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ニューイヤー", + "alias_name_display" : "ニューイヤー", + "event" : [ { + "event_id" : 404, + "event_name" : "新春アイドルプロデュース" + } ], + "hash" : "82b476bcab7ef6f64617900a063971c3", + "id" : "2207501", + "profile" : { + "bust" : "82", + "height" : "163", + "hip" : "81", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ニューイヤー", + "alias_name_display" : "ニューイヤー", + "event" : [ { + "event_id" : 404, + "event_name" : "新春アイドルプロデュース" + } ], + "hash" : "7414eee0038d5be21fb8b12014d6bd02", + "id" : "2307502", + "profile" : { + "bust" : "82", + "height" : "163", + "hip" : "81", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ビーチスタイル", + "alias_name_display" : "ビーチスタイル", + "hash" : "5a0ea0a69a45d7d201112ed7b15e3e19", + "id" : "2214001", + "profile" : { + "bust" : "82", + "height" : "163", + "hip" : "81", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ビーチスタイル", + "alias_name_display" : "ビーチスタイル", + "hash" : "cae2e7f102323cdbf0a2493dad6dce60", + "id" : "2314002", + "profile" : { + "bust" : "82", + "height" : "163", + "hip" : "81", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ミッドナイトフェアリー", + "alias_name_display" : "ミッドナイトフェアリー", + "hash" : "f3c0fc3102be01d6f7ae5f3b0c40f647", + "id" : "2403201", + "profile" : { + "bust" : "82", + "height" : "163", + "hip" : "81", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ミッドナイトフェアリー", + "alias_name_display" : "ミッドナイトフェアリー", + "hash" : "718611eef304cc92ed0363ef1632ce08", + "id" : "2503202", + "profile" : { + "bust" : "82", + "height" : "163", + "hip" : "81", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "あやかし京娘", + "alias_name_display" : "あやかし京娘", + "event" : [ { + "event_id" : 701, + "event_name" : "ドリームLIVEフェスティバル" + } ], + "hash" : "4a3edc8d2d1db05a999c497b87898bc4", + "id" : "2407201", + "profile" : { + "bust" : "82", + "height" : "163", + "hip" : "81", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "あやかし京娘", + "alias_name_display" : "あやかし京娘", + "event" : [ { + "event_id" : 701, + "event_name" : "ドリームLIVEフェスティバル" + } ], + "hash" : "954f509fc6b0bb872d155c824336ca48", + "id" : "2507202", + "profile" : { + "bust" : "82", + "height" : "163", + "hip" : "81", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ブルーサマーヘブン", + "alias_name_display" : "ブルーサマーヘブン", + "hash" : "d2573b1a26b8652a0ea85b0bb574b48d", + "id" : "2415601", + "profile" : { + "bust" : "82", + "height" : "163", + "hip" : "81", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ブルーサマーヘブン", + "alias_name_display" : "ブルーサマーヘブン", + "hash" : "02e831b53db390644097ce0541e224d7", + "id" : "2515602", + "profile" : { + "bust" : "82", + "height" : "163", + "hip" : "81", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "想いひとひら", + "alias_name_display" : "想いひとひら", + "hash" : "9b78b0d2576534f5ac5977120d760159", + "id" : "2423201", + "profile" : { + "bust" : "82", + "height" : "163", + "hip" : "81", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "想いひとひら", + "alias_name_display" : "想いひとひら", + "hash" : "a0dbd59124757f6c961c5320d9ff2450", + "id" : "2523202", + "profile" : { + "bust" : "82", + "height" : "163", + "hip" : "81", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "シンデレラガール", + "alias_name_display" : "シンデレラガール", + "hash" : "c62f2df674d821857397b2b62371012e", + "id" : "2424801", + "profile" : { + "bust" : "82", + "height" : "163", + "hip" : "81", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "シンデレラガール", + "alias_name_display" : "シンデレラガール", + "hash" : "a7886ce9ac3c5eafd81f8b14cee2d2fc", + "id" : "2524802", + "profile" : { + "bust" : "82", + "height" : "163", + "hip" : "81", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "fb292dd3c101e5c65d16c5e4467cf434", + "id" : "2428501", + "profile" : { + "bust" : "82", + "height" : "163", + "hip" : "81", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "26f9c950a0f6085e83da36f350d0851f", + "id" : "2528502", + "profile" : { + "bust" : "82", + "height" : "163", + "hip" : "81", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "アニバーサリープリンセス", + "alias_name_display" : "アニバーサリープリンセス", + "event" : [ { + "event_id" : 1704, + "event_name" : "アイドルプロデュース the 4th Anniversary" + } ], + "hash" : "4539562c95ef1000bcc72e8a50d1e00f", + "id" : "2428801", + "profile" : { + "bust" : "82", + "height" : "163", + "hip" : "81", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "アニバーサリープリンセス", + "alias_name_display" : "アニバーサリープリンセス", + "event" : [ { + "event_id" : 1704, + "event_name" : "アイドルプロデュース the 4th Anniversary" + } ], + "hash" : "89c64f8de6b5d1a9711d943eb66e1478", + "id" : "2528802", + "profile" : { + "bust" : "82", + "height" : "163", + "hip" : "81", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "シンデレラドリーム", + "alias_name_display" : "シンデレラドリーム", + "hash" : "0098b967f649fc47bdc99feefbedb9fc", + "id" : "2433801", + "profile" : { + "bust" : "82", + "height" : "163", + "hip" : "81", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "シンデレラドリーム", + "alias_name_display" : "シンデレラドリーム", + "hash" : "624e30edd0c2d459e2c70b2ef491cab0", + "id" : "2533802", + "profile" : { + "bust" : "82", + "height" : "163", + "hip" : "81", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "湯けむり舞娘", + "alias_name_display" : "湯けむり舞娘", + "hash" : "71e4c4b47b167ba9e37188547a8a9678", + "id" : "2435801", + "profile" : { + "bust" : "82", + "height" : "163", + "hip" : "81", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "湯けむり舞娘", + "alias_name_display" : "湯けむり舞娘", + "hash" : "ffd90fbb737f2862939442ffc009a270", + "id" : "2535802", + "profile" : { + "bust" : "82", + "height" : "163", + "hip" : "81", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "花明り夜風", + "alias_name_display" : "花明り夜風", + "event" : [ { + "event_id" : 1907, + "event_name" : "ディアリースタークエスト ~夜桜奇譚~" + } ], + "hash" : "6a1356d5eb2db0859810887e0eb46deb", + "id" : "2439201", + "profile" : { + "bust" : "82", + "height" : "163", + "hip" : "81", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "花明り夜風", + "alias_name_display" : "花明り夜風", + "event" : [ { + "event_id" : 1907, + "event_name" : "ディアリースタークエスト ~夜桜奇譚~" + } ], + "hash" : "e02867846f13e03eb619cb5e9bddae89", + "id" : "2539202", + "profile" : { + "bust" : "82", + "height" : "163", + "hip" : "81", + "waist" : "56", + "weight" : "45" + } + } ], + "idol_id" : 120, + "idol_name" : "塩見周子", + "idol_name_display" : "塩見周子", + "units" : [ { + "id" : "36", + "name" : "テンプテーション・アイズ" + }, { + "id" : "41", + "name" : "羽衣小町" + }, { + "id" : "126", + "name" : "誘惑イビル" + }, { + "id" : "185", + "name" : "LiPPS" + }, { + "id" : "200", + "name" : "CAERULA" + }, { + "id" : "205", + "name" : "シンデレラガール" + }, { + "id" : "215", + "name" : "Project:Krone" + } ] +}, { + "aliases" : [ { + "hash" : "e679dff816d61f7dde0816dd34799270", + "id" : "2203701", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "38" + } + }, { + "hash" : "965021a44894a7832a1f88f0e9f742d4", + "id" : "2303702", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "38" + } + }, { + "alias_name" : "レインドロップ", + "alias_name_display" : "レインドロップ", + "event" : [ { + "event_id" : 407, + "event_name" : "アイドルプロデュース 鎌倉あじさい巡り" + } ], + "hash" : "ca4d85ca12153e208803d8380c003580", + "id" : "2210101", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "38" + } + }, { + "alias_name" : "レインドロップ", + "alias_name_display" : "レインドロップ", + "event" : [ { + "event_id" : 407, + "event_name" : "アイドルプロデュース 鎌倉あじさい巡り" + } ], + "hash" : "851c54b6959c755c24deec013072c3c5", + "id" : "2310102", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "38" + } + }, { + "alias_name" : "レインドロップスマイル", + "alias_name_display" : "レインドロップスマイル", + "event" : [ { + "event_id" : 407, + "event_name" : "アイドルプロデュース 鎌倉あじさい巡り" + } ], + "hash" : "78caf5509e0af127c00a4c5f1a3cf2ef", + "id" : "2210201", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "38" + } + }, { + "alias_name" : "レインドロップスマイル", + "alias_name_display" : "レインドロップスマイル", + "event" : [ { + "event_id" : 407, + "event_name" : "アイドルプロデュース 鎌倉あじさい巡り" + } ], + "hash" : "c49ce83bd2e36615d94720836a96f4e2", + "id" : "2310202", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "38" + } + }, { + "alias_name" : "ハッピーウェディング", + "alias_name_display" : "ハッピーウェディング", + "hash" : "9c15bd84b69f2ff6921fc3320f180f98", + "id" : "2216101", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "38" + } + }, { + "alias_name" : "ハッピーウェディング", + "alias_name_display" : "ハッピーウェディング", + "hash" : "68fa76ac2cf3a756f256ef50f76f6d76", + "id" : "2316102", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "38" + } + }, { + "alias_name" : "ちいさなドキドキ", + "alias_name_display" : "ちいさなドキドキ", + "event" : [ { + "event_id" : 709, + "event_name" : "第9回ドリームLIVEフェスティバル" + } ], + "hash" : "eb3b7cb3832c161a6ec05b130551948c", + "id" : "2218501", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "38" + } + }, { + "alias_name" : "ちいさなドキドキ", + "alias_name_display" : "ちいさなドキドキ", + "event" : [ { + "event_id" : 709, + "event_name" : "第9回ドリームLIVEフェスティバル" + } ], + "hash" : "0e03f797721d272186d8d21000d3e10a", + "id" : "2318502", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "38" + } + }, { + "alias_name" : "サマーバケーション", + "alias_name_display" : "サマーバケーション", + "hash" : "0600b0149f228d1f7c2eed9406b975f1", + "id" : "2222501", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "38" + } + }, { + "alias_name" : "サマーバケーション", + "alias_name_display" : "サマーバケーション", + "hash" : "3f093aa4e427556cc8add03178529d7d", + "id" : "2322502", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "38" + } + }, { + "alias_name" : "ハロウィンI.C", + "alias_name_display" : "ハロウィンI.C", + "event" : [ { + "event_id" : 1213, + "event_name" : "目指せお菓子なハロウィン アイドルチャレンジ" + } ], + "hash" : "d351c995d88a79e786bfea5fca55bf01", + "id" : "2329002", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "38" + } + }, { + "alias_name" : "ポテンシャルグリーン", + "alias_name_display" : "ポテンシャルグリーン", + "hash" : "d7c92c9ee05cf097efaed72d317144e9", + "id" : "2231801", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "38" + } + }, { + "alias_name" : "ポテンシャルグリーン", + "alias_name_display" : "ポテンシャルグリーン", + "hash" : "f3966391a56ee9d7c15aefdd73303927", + "id" : "2331802", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "38" + } + }, { + "alias_name" : "ちびっこステージ", + "alias_name_display" : "ちびっこステージ", + "event" : [ { + "event_id" : 206, + "event_name" : "アイドルサバイバルin学園祭" + } ], + "hash" : "aa0172e7bb70b19bf3262e2fd7c776e1", + "id" : "2403101", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "38" + } + }, { + "alias_name" : "ちびっこステージ", + "alias_name_display" : "ちびっこステージ", + "event" : [ { + "event_id" : 206, + "event_name" : "アイドルサバイバルin学園祭" + } ], + "hash" : "6400e8cfc48ab3bf8553c16279686a85", + "id" : "2503102", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "38" + } + }, { + "alias_name" : "小さな自信家", + "alias_name_display" : "小さな自信家", + "hash" : "a69caf59d09fb1d64d1495c825a62464", + "id" : "2409501", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "38" + } + }, { + "alias_name" : "小さな自信家", + "alias_name_display" : "小さな自信家", + "hash" : "e485b6a3355e84d67d7a4302ff960aa0", + "id" : "2509502", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "38" + } + }, { + "alias_name" : "流浪の剣客", + "alias_name_display" : "流浪の剣客", + "event" : [ { + "event_id" : 517, + "event_name" : "戦国公演 風来剣客伝" + } ], + "hash" : "373e3e361b193fe691d59bb6e07508df", + "id" : "2422001", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "38" + } + }, { + "alias_name" : "流浪の剣客", + "alias_name_display" : "流浪の剣客", + "event" : [ { + "event_id" : 517, + "event_name" : "戦国公演 風来剣客伝" + } ], + "hash" : "9e486396d32ff068967105a1eb7cd139", + "id" : "2522002", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "38" + } + }, { + "alias_name" : "ちびっこファッショニスタ", + "alias_name_display" : "ちびっこファッショニスタ", + "event" : [ { + "event_id" : 1802, + "event_name" : "アイドルバラエティ 手作りライブプロジェクト!" + } ], + "hash" : "65496c8b5da8e7501713aa5d91bf38e2", + "id" : "2428601", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "38" + } + }, { + "alias_name" : "ちびっこファッショニスタ", + "alias_name_display" : "ちびっこファッショニスタ", + "event" : [ { + "event_id" : 1802, + "event_name" : "アイドルバラエティ 手作りライブプロジェクト!" + } ], + "hash" : "7242cb9dead449c0145bd41cfa681235", + "id" : "2528602", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "38" + } + }, { + "alias_name" : "グローイングガール", + "alias_name_display" : "グローイングガール", + "event" : [ { + "event_id" : 816, + "event_name" : "第16回アイドルLIVEロワイヤル" + } ], + "hash" : "d7fc5ac332b63b8bb29aaf81d686fa68", + "id" : "2431001", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "38" + } + }, { + "alias_name" : "グローイングガール", + "alias_name_display" : "グローイングガール", + "event" : [ { + "event_id" : 816, + "event_name" : "第16回アイドルLIVEロワイヤル" + } ], + "hash" : "082b1e80f7cbee317080ad10e2c9ca89", + "id" : "2531002", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "38" + } + }, { + "alias_name" : "ちびっこヴァンパイア", + "alias_name_display" : "ちびっこヴァンパイア", + "event" : [ { + "event_id" : 1213, + "event_name" : "目指せお菓子なハロウィン アイドルチャレンジ" + } ], + "hash" : "581612c7e3065718170759e2cebb1041", + "id" : "2435401", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "38" + } + }, { + "alias_name" : "ちびっこヴァンパイア", + "alias_name_display" : "ちびっこヴァンパイア", + "event" : [ { + "event_id" : 1213, + "event_name" : "目指せお菓子なハロウィン アイドルチャレンジ" + } ], + "hash" : "bebc047b25dc019ba8a1e6f4e03f675c", + "id" : "2535402", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "38" + } + }, { + "alias_name" : "せくしーヴァンパイア", + "alias_name_display" : "せくしーヴァンパイア", + "event" : [ { + "event_id" : 1213, + "event_name" : "目指せお菓子なハロウィン アイドルチャレンジ" + } ], + "hash" : "900261437894a61053e9aa69940c9615", + "id" : "2435501", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "38" + } + }, { + "alias_name" : "せくしーヴァンパイア", + "alias_name_display" : "せくしーヴァンパイア", + "event" : [ { + "event_id" : 1213, + "event_name" : "目指せお菓子なハロウィン アイドルチャレンジ" + } ], + "hash" : "65c1d041ea9ed32748e96188870b56f5", + "id" : "2535502", + "profile" : { + "bust" : "72", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "38" + } + } ], + "idol_id" : 121, + "idol_name" : "脇山珠美", + "idol_name_display" : "脇山珠美", + "units" : [ { + "id" : "38", + "name" : "忍武☆繚乱" + }, { + "id" : "106", + "name" : "レインドロップ" + }, { + "id" : "156", + "name" : "センゴク☆華☆ランブ" + }, { + "id" : "178", + "name" : "からぱれ" + }, { + "id" : "179", + "name" : "春霞" + } ] +}, { + "aliases" : [ { + "hash" : "b57af23a2c131cc8b45dd49a20f76df0", + "id" : "2204101", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "hash" : "ddf08d575bf37d507eebd3a6150ac8a7", + "id" : "2304102", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "小さな一歩", + "alias_name_display" : "小さな一歩", + "event" : [ { + "event_id" : 701, + "event_name" : "ドリームLIVEフェスティバル" + } ], + "hash" : "9a8a08cb1cc77514779a32341079588e", + "id" : "2210501", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "小さな一歩", + "alias_name_display" : "小さな一歩", + "event" : [ { + "event_id" : 701, + "event_name" : "ドリームLIVEフェスティバル" + } ], + "hash" : "8b2b5aaf046e3c52c73b3993fea37768", + "id" : "2310502", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ショコラフレーバー", + "alias_name_display" : "ショコラフレーバー", + "event" : [ { + "event_id" : 411, + "event_name" : "アイドルプロデュース チョコレートフォーユー!" + } ], + "hash" : "788177b829cd93ef13581f7db56bdf15", + "id" : "2214301", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ショコラフレーバー", + "alias_name_display" : "ショコラフレーバー", + "event" : [ { + "event_id" : 411, + "event_name" : "アイドルプロデュース チョコレートフォーユー!" + } ], + "hash" : "50f794509606aab019899e5112533408", + "id" : "2314302", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ショコラフレーバー・S", + "alias_name_display" : "ショコラフレーバー・S", + "event" : [ { + "event_id" : 411, + "event_name" : "アイドルプロデュース チョコレートフォーユー!" + } ], + "hash" : "69ce323535350959960d423371d20bcc", + "id" : "2214401", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ショコラフレーバー・S", + "alias_name_display" : "ショコラフレーバー・S", + "event" : [ { + "event_id" : 411, + "event_name" : "アイドルプロデュース チョコレートフォーユー!" + } ], + "hash" : "d23dc2cedc767125189e31dd34e486a0", + "id" : "2314402", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "メルヘンアニマルズ", + "alias_name_display" : "メルヘンアニマルズ", + "hash" : "88ff421d2eca339de73a627e8292fb27", + "id" : "2217301", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "メルヘンアニマルズ", + "alias_name_display" : "メルヘンアニマルズ", + "hash" : "12b90def5bb388a39679557f35ecca52", + "id" : "2317302", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "新春I.C", + "alias_name_display" : "新春I.C", + "event" : [ { + "event_id" : 1204, + "event_name" : "新年かくし芸SP アイドルチャレンジ" + } ], + "hash" : "53d7f758c8a85691276337c98d0df6d1", + "id" : "2319402", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "さわやかスポーツ", + "alias_name_display" : "さわやかスポーツ", + "hash" : "e509f8e6dcb2719a45e65af224a5a2cb", + "id" : "2223301", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "さわやかスポーツ", + "alias_name_display" : "さわやかスポーツ", + "hash" : "032a8edcd9d3d015114934eb0a0e0279", + "id" : "2323302", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "T.B.チアーズ", + "alias_name_display" : "T.B.チアーズ", + "event" : [ { + "event_id" : 1506, + "event_name" : "第6回チーム対抗トークバトルショー" + } ], + "hash" : "23f7344f24328f4e3686cfb2e115bb94", + "id" : "2225501", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "T.B.チアーズ", + "alias_name_display" : "T.B.チアーズ", + "event" : [ { + "event_id" : 1506, + "event_name" : "第6回チーム対抗トークバトルショー" + } ], + "hash" : "ea8b4ce81f9c11e52f0032daf3388ffa", + "id" : "2325502", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ガーリーポッシブ", + "alias_name_display" : "ガーリーポッシブ", + "hash" : "868dc6accad9dfd7b5f3192a7e989345", + "id" : "2228601", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ガーリーポッシブ", + "alias_name_display" : "ガーリーポッシブ", + "hash" : "ba758417f5b2c50e967f9fe9fe245a1e", + "id" : "2328602", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "爛漫ひな娘", + "alias_name_display" : "爛漫ひな娘", + "event" : [ { + "event_id" : 209, + "event_name" : "アイドルサバイバルひな祭り2013" + } ], + "hash" : "7e8f66cd2d59a765f82207a6979ece5d", + "id" : "2405501", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "爛漫ひな娘", + "alias_name_display" : "爛漫ひな娘", + "event" : [ { + "event_id" : 209, + "event_name" : "アイドルサバイバルひな祭り2013" + } ], + "hash" : "da50d7db5e589095e50bec4974577e56", + "id" : "2505502", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "プラネットスター", + "alias_name_display" : "プラネットスター", + "event" : [ { + "event_id" : 508, + "event_name" : "LIVEツアーカーニバルinスペースワールド" + } ], + "hash" : "1f750bf1abbc39aa6fef137dc0e075b4", + "id" : "2410001", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "プラネットスター", + "alias_name_display" : "プラネットスター", + "event" : [ { + "event_id" : 508, + "event_name" : "LIVEツアーカーニバルinスペースワールド" + } ], + "hash" : "40d987790b986b93a47f6c14168a07c3", + "id" : "2510002", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "独楽の芸達者", + "alias_name_display" : "独楽の芸達者", + "event" : [ { + "event_id" : 1204, + "event_name" : "新年かくし芸SP アイドルチャレンジ" + } ], + "hash" : "d776b25c39a73d32904c274ec212f8fc", + "id" : "2420301", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "独楽の芸達者", + "alias_name_display" : "独楽の芸達者", + "event" : [ { + "event_id" : 1204, + "event_name" : "新年かくし芸SP アイドルチャレンジ" + } ], + "hash" : "7defc5e1e4339bada951464376ef1b9f", + "id" : "2520302", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "独楽の芸達者・S", + "alias_name_display" : "独楽の芸達者・S", + "event" : [ { + "event_id" : 1204, + "event_name" : "新年かくし芸SP アイドルチャレンジ" + } ], + "hash" : "1f0d0f8e9901e4e581e87542c3d50973", + "id" : "2420401", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "独楽の芸達者・S", + "alias_name_display" : "独楽の芸達者・S", + "event" : [ { + "event_id" : 1204, + "event_name" : "新年かくし芸SP アイドルチャレンジ" + } ], + "hash" : "9b560fdd5e7ff78136a79a64ca2858af", + "id" : "2520402", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ワンモアステップ", + "alias_name_display" : "ワンモアステップ", + "hash" : "14a6958b5ab32a6ac74fea57e084f78f", + "id" : "2428301", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ワンモアステップ", + "alias_name_display" : "ワンモアステップ", + "hash" : "fcd7b0930fa988a3c24a261c466e03bd", + "id" : "2528302", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "トラストテイマー", + "alias_name_display" : "トラストテイマー", + "event" : [ { + "event_id" : 1709, + "event_name" : "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" + } ], + "hash" : "4c7df96d323e08125163cc5bc0a232ea", + "id" : "2438601", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "トラストテイマー", + "alias_name_display" : "トラストテイマー", + "event" : [ { + "event_id" : 1709, + "event_name" : "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" + } ], + "hash" : "093d3b30bcfa6e493d00a8985b8066fe", + "id" : "2538602", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "スマイリーテイマー", + "alias_name_display" : "スマイリーテイマー", + "event" : [ { + "event_id" : 1709, + "event_name" : "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" + } ], + "hash" : "b3aae663a3c87f949805746c7ac66b2b", + "id" : "2438701", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "スマイリーテイマー", + "alias_name_display" : "スマイリーテイマー", + "event" : [ { + "event_id" : 1709, + "event_name" : "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" + } ], + "hash" : "4753beff820055994390f5d38cd6c31e", + "id" : "2538702", + "profile" : { + "bust" : "79", + "height" : "153", + "hip" : "80", + "waist" : "55", + "weight" : "43" + } + } ], + "idol_id" : 122, + "idol_name" : "岡崎泰葉", + "idol_name_display" : "岡崎泰葉", + "units" : [ { + "id" : "102", + "name" : "パワフルヒーラーズ" + }, { + "id" : "105", + "name" : "リトルチェリーブロッサム" + }, { + "id" : "166", + "name" : "メルヘンアニマルズ" + }, { + "id" : "172", + "name" : "GIRLS BE NEXT STEP" + } ] +}, { + "aliases" : [ { + "hash" : "e50a31a7e529103da461ae20d1da2140", + "id" : "2205301", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "hash" : "63f9b6f318bddcb60af2cf3e621f2175", + "id" : "2305302", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ハッピーバレンタイン", + "alias_name_display" : "ハッピーバレンタイン", + "event" : [ { + "event_id" : 405, + "event_name" : "アイドルプロデュース バレンタイン編" + } ], + "hash" : "5d859042cb0d19e91ac36d75a8211c6b", + "id" : "2208101", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ハッピーバレンタイン", + "alias_name_display" : "ハッピーバレンタイン", + "event" : [ { + "event_id" : 405, + "event_name" : "アイドルプロデュース バレンタイン編" + } ], + "hash" : "cbb8818bd27d3391e77bbff12bd978cd", + "id" : "2308102", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "スマイルバレンタイン", + "alias_name_display" : "スマイルバレンタイン", + "event" : [ { + "event_id" : 405, + "event_name" : "アイドルプロデュース バレンタイン編" + } ], + "hash" : "a388f7b32e253232d63b6b39fa9d6e6a", + "id" : "2208201", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "スマイルバレンタイン", + "alias_name_display" : "スマイルバレンタイン", + "event" : [ { + "event_id" : 405, + "event_name" : "アイドルプロデュース バレンタイン編" + } ], + "hash" : "3f837080e8800fbbe6c85258f40dab97", + "id" : "2308202", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "セレクテッド", + "alias_name_display" : "セレクテッド", + "hash" : "2c187df2b259b1e01d46c2868304cd17", + "id" : "2222701", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "セレクテッド", + "alias_name_display" : "セレクテッド", + "hash" : "ab4dfb0bebdc39a536b7f008fa041052", + "id" : "2322702", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "蒼翼の乙女", + "alias_name_display" : "蒼翼の乙女", + "hash" : "6975e9bc563b357783e3314efec0bef9", + "id" : "2406001", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "蒼翼の乙女", + "alias_name_display" : "蒼翼の乙女", + "hash" : "bcabb6bef0c899516b59ab44dc701efa", + "id" : "2506002", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "夜色の花嫁", + "alias_name_display" : "夜色の花嫁", + "hash" : "0231e453de83dea96397acc7f45b7731", + "id" : "2410601", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "夜色の花嫁", + "alias_name_display" : "夜色の花嫁", + "hash" : "bed2e9671e9378d70ba5e073180c7adc", + "id" : "2510602", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "チアリングスター", + "alias_name_display" : "チアリングスター", + "event" : [ { + "event_id" : 1101, + "event_name" : "プロダクション対抗トークバトルショー" + } ], + "hash" : "9f20eaddbc42ec976f862e83d7d6cf5d", + "id" : "2413001", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "チアリングスター", + "alias_name_display" : "チアリングスター", + "event" : [ { + "event_id" : 1101, + "event_name" : "プロダクション対抗トークバトルショー" + } ], + "hash" : "d96d08d63893c62dde9015bf1efe1554", + "id" : "2513002", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "追憶のヴァニタス", + "alias_name_display" : "追憶のヴァニタス", + "hash" : "a528c4946a755e454146149b4c5afc34", + "id" : "2417801", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "追憶のヴァニタス", + "alias_name_display" : "追憶のヴァニタス", + "hash" : "0b292926907dd6bbc279f1e6be1f5fd6", + "id" : "2517802", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "9db93440a6646d776844ea187394870a", + "id" : "2421401", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "c7fecadb9feb6558ebe7320a7fbaa902", + "id" : "2521402", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ミッドナイトレイヴ", + "alias_name_display" : "ミッドナイトレイヴ", + "hash" : "4c75721b64da4ee43ab0a67e51e394b6", + "id" : "2422401", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ミッドナイトレイヴ", + "alias_name_display" : "ミッドナイトレイヴ", + "hash" : "8b1c20dd3e050fb08648f0216adf4186", + "id" : "2522402", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "カタルシスの華", + "alias_name_display" : "カタルシスの華", + "hash" : "48dcab45161233389d47851fafcf7de3", + "id" : "2432601", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "カタルシスの華", + "alias_name_display" : "カタルシスの華", + "hash" : "81143e7454524921e1cacdcc3913dc00", + "id" : "2532602", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "天光の乙女", + "alias_name_display" : "天光の乙女", + "hash" : "738af1adc4839585781bb40c338ad956", + "id" : "2435601", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "天光の乙女", + "alias_name_display" : "天光の乙女", + "hash" : "95d9d50a1d7378f34aaa25491b1fd0ec", + "id" : "2535602", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "84", + "waist" : "55", + "weight" : "43" + } + } ], + "idol_id" : 123, + "idol_name" : "速水奏", + "idol_name_display" : "速水奏", + "units" : [ { + "id" : "34", + "name" : "デア・アウローラ" + }, { + "id" : "55", + "name" : "ミステリアスアイズ" + }, { + "id" : "60", + "name" : "モノクロームリリィ" + }, { + "id" : "74", + "name" : "FrenchKisS" + }, { + "id" : "155", + "name" : "セレクテッド" + }, { + "id" : "160", + "name" : "ハッピーバレンタイン" + }, { + "id" : "185", + "name" : "LiPPS" + }, { + "id" : "200", + "name" : "CAERULA" + }, { + "id" : "215", + "name" : "Project:Krone" + } ] +}, { + "aliases" : [ { + "alias_name" : "ニューウェーブ", + "alias_name_display" : "ニューウェーブ", + "event" : [ { + "event_id" : 401, + "event_name" : "新人アイドルプロデュース" + } ], + "hash" : "26a9c568028c41a7a3d8b6877284ab46", + "id" : "2205401", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ニューウェーブ", + "alias_name_display" : "ニューウェーブ", + "event" : [ { + "event_id" : 401, + "event_name" : "新人アイドルプロデュース" + } ], + "hash" : "d110327ad8d38b3fe5a40a3a85447ca1", + "id" : "2305402", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "アメリカンスタイル", + "alias_name_display" : "アメリカンスタイル", + "event" : [ { + "event_id" : 501, + "event_name" : "アイドルLIVEツアーinUSA" + } ], + "hash" : "ea14850708aa5d446ecdc704d76097d1", + "id" : "2206901", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "アメリカンスタイル", + "alias_name_display" : "アメリカンスタイル", + "event" : [ { + "event_id" : 501, + "event_name" : "アイドルLIVEツアーinUSA" + } ], + "hash" : "7ac782754fe5a12b39d256706d2c022c", + "id" : "2306902", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ジューンブライド", + "alias_name_display" : "ジューンブライド", + "hash" : "daf0bbc66713287cb5cb51a87f150c55", + "id" : "2210301", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ジューンブライド", + "alias_name_display" : "ジューンブライド", + "hash" : "97419715f045627f679d352844628405", + "id" : "2310302", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ネイビーブライト", + "alias_name_display" : "ネイビーブライト", + "hash" : "077042da4ad562035613b4d1a8f18583", + "id" : "2214501", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ネイビーブライト", + "alias_name_display" : "ネイビーブライト", + "hash" : "d4499b213a934c5c68333cd2c839b1f0", + "id" : "2314502", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "振袖まつり", + "alias_name_display" : "振袖まつり", + "hash" : "cc71652b5fa848c9c53c6c9aa661afc4", + "id" : "2219501", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "振袖まつり", + "alias_name_display" : "振袖まつり", + "hash" : "abe79791b4e165347c3372ad6557774b", + "id" : "2319502", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "コンストラクタヴォイス", + "alias_name_display" : "コンストラクタヴォイス", + "event" : [ { + "event_id" : "028", + "event_name" : "第28回プロダクションマッチフェスティバル" + } ], + "hash" : "abb47054d1c415287ac5a9aa3ebb9f02", + "id" : "2226501", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "コンストラクタヴォイス", + "alias_name_display" : "コンストラクタヴォイス", + "event" : [ { + "event_id" : "028", + "event_name" : "第28回プロダクションマッチフェスティバル" + } ], + "hash" : "c0500e82db55d8753ff92b9cdb8cb895", + "id" : "2326502", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ネイビーウェーブ", + "alias_name_display" : "ネイビーウェーブ", + "event" : [ { + "event_id" : "012", + "event_name" : "第12回プロダクションマッチフェスティバル" + } ], + "hash" : "7d9e8adf8a5a5b22d5219e08745affb5", + "id" : "2409001", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ネイビーウェーブ", + "alias_name_display" : "ネイビーウェーブ", + "event" : [ { + "event_id" : "012", + "event_name" : "第12回プロダクションマッチフェスティバル" + } ], + "hash" : "27bae0d4009a858d08dced42005cdf25", + "id" : "2509002", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ビット・パフォーマー", + "alias_name_display" : "ビット・パフォーマー", + "hash" : "944d9e23c5292a2b993eb3b753c12a88", + "id" : "2416101", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "ビット・パフォーマー", + "alias_name_display" : "ビット・パフォーマー", + "hash" : "40b76c19f4311be43df320a7c739b4d9", + "id" : "2516102", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "スプラッシュマーメイド", + "alias_name_display" : "スプラッシュマーメイド", + "event" : [ { + "event_id" : 1503, + "event_name" : "チーム対抗 夏だ!プールだ!トークバトルショー" + } ], + "hash" : "ab95b7d7c331f74a0617f279f24d3c41", + "id" : "2426001", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "スプラッシュマーメイド", + "alias_name_display" : "スプラッシュマーメイド", + "event" : [ { + "event_id" : 1503, + "event_name" : "チーム対抗 夏だ!プールだ!トークバトルショー" + } ], + "hash" : "7935b5bc00980c3d280da85664b33eb0", + "id" : "2526002", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "アンブレーク", + "alias_name_display" : "アンブレーク", + "event" : [ { + "event_id" : 727, + "event_name" : "第27回ドリームLIVEフェスティバル" + } ], + "hash" : "ea4e42907f60a55e13f16bcce3df0922", + "id" : "2437901", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "55", + "weight" : "41" + } + }, { + "alias_name" : "アンブレーク", + "alias_name_display" : "アンブレーク", + "event" : [ { + "event_id" : 727, + "event_name" : "第27回ドリームLIVEフェスティバル" + } ], + "hash" : "ea24d74d3d4603863842d1464a3f82dd", + "id" : "2537902", + "profile" : { + "bust" : "83", + "height" : "157", + "hip" : "82", + "waist" : "55", + "weight" : "41" + } + } ], + "idol_id" : 124, + "idol_name" : "大石泉", + "idol_name_display" : "大石泉", + "units" : [ { + "id" : "99", + "name" : "ニューウェーブ" + }, { + "id" : "143", + "name" : "ファタ・モルガーナ" + } ] +}, { + "aliases" : [ { + "hash" : "5868502dd8fba8f476fdbc8db146dbb8", + "id" : "2205901", + "profile" : { + "bust" : "78", + "height" : "161", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + }, { + "hash" : "c934cdde656ee3dd7456abbffdcc16f7", + "id" : "2305902", + "profile" : { + "bust" : "78", + "height" : "161", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "ひな祭り", + "alias_name_display" : "ひな祭り", + "event" : [ { + "event_id" : 209, + "event_name" : "アイドルサバイバルひな祭り2013" + } ], + "hash" : "91a50215ae0c4f7b16ca3e5bfb97fb42", + "id" : "2208401", + "profile" : { + "bust" : "78", + "height" : "161", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "ひな祭り", + "alias_name_display" : "ひな祭り", + "event" : [ { + "event_id" : 209, + "event_name" : "アイドルサバイバルひな祭り2013" + } ], + "hash" : "0a427058cd1884ae4b9bea994d4460f2", + "id" : "2308402", + "profile" : { + "bust" : "78", + "height" : "161", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "不器用少女", + "alias_name_display" : "不器用少女", + "event" : [ { + "event_id" : 505, + "event_name" : "アイドルLIVEツアーinバリ島" + } ], + "hash" : "e3ea1ea710dcf9dc5d40b48e62266b8c", + "id" : "2210801", + "profile" : { + "bust" : "78", + "height" : "161", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "不器用少女", + "alias_name_display" : "不器用少女", + "event" : [ { + "event_id" : 505, + "event_name" : "アイドルLIVEツアーinバリ島" + } ], + "hash" : "766ebc989270280df6d71abeaf6c1a21", + "id" : "2310802", + "profile" : { + "bust" : "78", + "height" : "161", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "ネクストスターI.C", + "alias_name_display" : "ネクストスターI.C", + "event" : [ { + "event_id" : 1203, + "event_name" : "目指せきらきらモデル アイドルチャレンジ" + } ], + "hash" : "5fa39e583d32f69301740b638da55ccd", + "id" : "2318102", + "profile" : { + "bust" : "78", + "height" : "161", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "ステキなお手本", + "alias_name_display" : "ステキなお手本", + "hash" : "ec3a589a41c66f9918793604494c3712", + "id" : "2220801", + "profile" : { + "bust" : "78", + "height" : "161", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "ステキなお手本", + "alias_name_display" : "ステキなお手本", + "hash" : "9e96cd2d370b50c67771f9b742f212fa", + "id" : "2320802", + "profile" : { + "bust" : "78", + "height" : "161", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "ラブリーメイド", + "alias_name_display" : "ラブリーメイド", + "hash" : "eebfb715a3029f2e64c7127188fe05a8", + "id" : "2223001", + "profile" : { + "bust" : "78", + "height" : "161", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "ラブリーメイド", + "alias_name_display" : "ラブリーメイド", + "hash" : "7a9ba0f7ded5e0bfd49c5ce5f7190ce7", + "id" : "2323002", + "profile" : { + "bust" : "78", + "height" : "161", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "フェリーチェ・チョコラータ", + "alias_name_display" : "フェリーチェ・チョコラータ", + "hash" : "af9bfa83d7b23c199747d652a625b6fb", + "id" : "2230301", + "profile" : { + "bust" : "78", + "height" : "161", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "フェリーチェ・チョコラータ", + "alias_name_display" : "フェリーチェ・チョコラータ", + "hash" : "e7dd22bc2f19ee2b07e113894d4c8605", + "id" : "2330302", + "profile" : { + "bust" : "78", + "height" : "161", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "素顔の幸せ", + "alias_name_display" : "素顔の幸せ", + "event" : [ { + "event_id" : 509, + "event_name" : "新春LIVEツアーカーニバル" + } ], + "hash" : "d79715c5a47f812c15d888e6edc2099d", + "id" : "2411501", + "profile" : { + "bust" : "78", + "height" : "161", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "素顔の幸せ", + "alias_name_display" : "素顔の幸せ", + "event" : [ { + "event_id" : 509, + "event_name" : "新春LIVEツアーカーニバル" + } ], + "hash" : "6be36c841286361dee0ab1ec7aabe3e0", + "id" : "2511502", + "profile" : { + "bust" : "78", + "height" : "161", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "乙女の晴れ舞台", + "alias_name_display" : "乙女の晴れ舞台", + "hash" : "d886ae7d2ee6c6e75d64f0cac3395f1a", + "id" : "2414401", + "profile" : { + "bust" : "78", + "height" : "161", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "乙女の晴れ舞台", + "alias_name_display" : "乙女の晴れ舞台", + "hash" : "7d1819de186cf8f9528fca6f1d4aa39a", + "id" : "2514402", + "profile" : { + "bust" : "78", + "height" : "161", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "ポップ・モデル", + "alias_name_display" : "ポップ・モデル", + "event" : [ { + "event_id" : 1203, + "event_name" : "目指せきらきらモデル アイドルチャレンジ" + } ], + "hash" : "c462145536f0ea29247d2fcdca22d5f0", + "id" : "2418001", + "profile" : { + "bust" : "78", + "height" : "161", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "ポップ・モデル", + "alias_name_display" : "ポップ・モデル", + "event" : [ { + "event_id" : 1203, + "event_name" : "目指せきらきらモデル アイドルチャレンジ" + } ], + "hash" : "2fc6d78808a0fc99c2f87af1b407a0bc", + "id" : "2518002", + "profile" : { + "bust" : "78", + "height" : "161", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "ポップ・モデル・S", + "alias_name_display" : "ポップ・モデル・S", + "event" : [ { + "event_id" : 1203, + "event_name" : "目指せきらきらモデル アイドルチャレンジ" + } ], + "hash" : "1f12deed69f1ec3e24042945968de5bf", + "id" : "2418101", + "profile" : { + "bust" : "78", + "height" : "161", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "ポップ・モデル・S", + "alias_name_display" : "ポップ・モデル・S", + "event" : [ { + "event_id" : 1203, + "event_name" : "目指せきらきらモデル アイドルチャレンジ" + } ], + "hash" : "44a8cbbd7175a5031b9c5d5a1b8df1e4", + "id" : "2518102", + "profile" : { + "bust" : "78", + "height" : "161", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "一心入魂", + "alias_name_display" : "一心入魂", + "event" : [ { + "event_id" : 1507, + "event_name" : "チーム対抗トークバトルショー オールスターSP" + } ], + "hash" : "c614169557b2369b2eaa6a9b1c2bf286", + "id" : "2432701", + "profile" : { + "bust" : "78", + "height" : "161", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + }, { + "alias_name" : "一心入魂", + "alias_name_display" : "一心入魂", + "event" : [ { + "event_id" : 1507, + "event_name" : "チーム対抗トークバトルショー オールスターSP" + } ], + "hash" : "49313322c5fd3c9bed6e752b20b7dcd9", + "id" : "2532702", + "profile" : { + "bust" : "78", + "height" : "161", + "hip" : "81", + "waist" : "54", + "weight" : "45" + } + } ], + "idol_id" : 125, + "idol_name" : "松尾千鶴", + "idol_name_display" : "松尾千鶴", + "units" : [ { + "id" : "130", + "name" : "GIRLS BE" + }, { + "id" : "172", + "name" : "GIRLS BE NEXT STEP" + } ] +}, { + "aliases" : [ { + "hash" : "5e2ce56ce241f77692f5ba6723149452", + "id" : "2206801", + "profile" : { + "bust" : "73", + "height" : "149", + "hip" : "76", + "waist" : "55", + "weight" : "38" + } + }, { + "hash" : "9c09179c9e3691aad4af06c0d33fa5bc", + "id" : "2306802", + "profile" : { + "bust" : "73", + "height" : "149", + "hip" : "76", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "メルヘン&ゴシック", + "alias_name_display" : "メルヘン&ゴシック", + "hash" : "560577bc6c3151c185624adb2d10b427", + "id" : "2208501", + "profile" : { + "bust" : "73", + "height" : "149", + "hip" : "76", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "メルヘン&ゴシック", + "alias_name_display" : "メルヘン&ゴシック", + "hash" : "d3596c108c2e5d1a2c5fba20653d3964", + "id" : "2308502", + "profile" : { + "bust" : "73", + "height" : "149", + "hip" : "76", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "ハロウィンナイト", + "alias_name_display" : "ハロウィンナイト", + "hash" : "4a12dd2f01f425e3ac788cbf487dccd2", + "id" : "2212201", + "profile" : { + "bust" : "73", + "height" : "149", + "hip" : "76", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "ハロウィンナイト", + "alias_name_display" : "ハロウィンナイト", + "hash" : "47a8929ca558f11bb722ddd61658aa92", + "id" : "2312202", + "profile" : { + "bust" : "73", + "height" : "149", + "hip" : "76", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "メルヘンブック", + "alias_name_display" : "メルヘンブック", + "hash" : "91c804725622c458fb9ab4978c12c0f2", + "id" : "2224401", + "profile" : { + "bust" : "73", + "height" : "149", + "hip" : "76", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "メルヘンブック", + "alias_name_display" : "メルヘンブック", + "hash" : "15444a20ee24d046fb2ee462fe82fbfd", + "id" : "2324402", + "profile" : { + "bust" : "73", + "height" : "149", + "hip" : "76", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "ネガティヴ乙女", + "alias_name_display" : "ネガティヴ乙女", + "event" : [ { + "event_id" : "010", + "event_name" : "第10回プロダクションマッチフェスティバル" + } ], + "hash" : "c9e92786947e1a2ae30990d7696c8345", + "id" : "2406801", + "profile" : { + "bust" : "73", + "height" : "149", + "hip" : "76", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "ネガティヴ乙女", + "alias_name_display" : "ネガティヴ乙女", + "event" : [ { + "event_id" : "010", + "event_name" : "第10回プロダクションマッチフェスティバル" + } ], + "hash" : "1ec11feb35f4b8aa22a14e8fd8763a96", + "id" : "2506802", + "profile" : { + "bust" : "73", + "height" : "149", + "hip" : "76", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "ショコラバレンタイン", + "alias_name_display" : "ショコラバレンタイン", + "event" : [ { + "event_id" : 411, + "event_name" : "アイドルプロデュース チョコレートフォーユー!" + } ], + "hash" : "2ff046908bbb217d3032a291e9ce7b50", + "id" : "2412301", + "profile" : { + "bust" : "73", + "height" : "149", + "hip" : "76", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "ショコラバレンタイン", + "alias_name_display" : "ショコラバレンタイン", + "event" : [ { + "event_id" : 411, + "event_name" : "アイドルプロデュース チョコレートフォーユー!" + } ], + "hash" : "cec8ca056124d304b5e6b55824ff2f1e", + "id" : "2512302", + "profile" : { + "bust" : "73", + "height" : "149", + "hip" : "76", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "ショコラ・スマイル", + "alias_name_display" : "ショコラ・スマイル", + "event" : [ { + "event_id" : 411, + "event_name" : "アイドルプロデュース チョコレートフォーユー!" + } ], + "hash" : "79e7740f472cd2c8bb682acd39749e35", + "id" : "2412401", + "profile" : { + "bust" : "73", + "height" : "149", + "hip" : "76", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "ショコラ・スマイル", + "alias_name_display" : "ショコラ・スマイル", + "event" : [ { + "event_id" : 411, + "event_name" : "アイドルプロデュース チョコレートフォーユー!" + } ], + "hash" : "6430f72f3cbf56e0e3d2fd4245e18c14", + "id" : "2512402", + "profile" : { + "bust" : "73", + "height" : "149", + "hip" : "76", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "困惑の小リス", + "alias_name_display" : "困惑の小リス", + "hash" : "b88133ff50c072f82fd693cd978fb5b1", + "id" : "2417201", + "profile" : { + "bust" : "73", + "height" : "149", + "hip" : "76", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "困惑の小リス", + "alias_name_display" : "困惑の小リス", + "hash" : "d1b146a936a57f7226f823a8168bc63d", + "id" : "2517202", + "profile" : { + "bust" : "73", + "height" : "149", + "hip" : "76", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "おどおど狩人", + "alias_name_display" : "おどおど狩人", + "event" : [ { + "event_id" : 518, + "event_name" : "御伽公演 ふれあい狼と小さな赤ずきんちゃん" + } ], + "hash" : "3c540d8876286f851cd0094779fff4f3", + "id" : "2423301", + "profile" : { + "bust" : "73", + "height" : "149", + "hip" : "76", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "おどおど狩人", + "alias_name_display" : "おどおど狩人", + "event" : [ { + "event_id" : 518, + "event_name" : "御伽公演 ふれあい狼と小さな赤ずきんちゃん" + } ], + "hash" : "41149651c1bab97e7affc92db00e41a8", + "id" : "2523302", + "profile" : { + "bust" : "73", + "height" : "149", + "hip" : "76", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "迷々エスケープ", + "alias_name_display" : "迷々エスケープ", + "event" : [ { + "event_id" : 813, + "event_name" : "第13回アイドルLIVEロワイヤル" + } ], + "hash" : "b8f74bf0a450467938b45e0bb1886615", + "id" : "2425601", + "profile" : { + "bust" : "73", + "height" : "149", + "hip" : "76", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "迷々エスケープ", + "alias_name_display" : "迷々エスケープ", + "event" : [ { + "event_id" : 813, + "event_name" : "第13回アイドルLIVEロワイヤル" + } ], + "hash" : "8272eb1670965488afb2cec0ff3ad314", + "id" : "2525602", + "profile" : { + "bust" : "73", + "height" : "149", + "hip" : "76", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "イースターハプニング", + "alias_name_display" : "イースターハプニング", + "event" : [ { + "event_id" : 720, + "event_name" : "第20回ドリームLIVEフェスティバル" + } ], + "hash" : "e15ddf799ec1549fa0c5da5c387bbac3", + "id" : "2431901", + "profile" : { + "bust" : "73", + "height" : "149", + "hip" : "76", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "イースターハプニング", + "alias_name_display" : "イースターハプニング", + "event" : [ { + "event_id" : 720, + "event_name" : "第20回ドリームLIVEフェスティバル" + } ], + "hash" : "8843edbf60141fe58688c10800de5de5", + "id" : "2531902", + "profile" : { + "bust" : "73", + "height" : "149", + "hip" : "76", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "エスケープブライド", + "alias_name_display" : "エスケープブライド", + "hash" : "56f0586ed2e674e1f29e4b001bf2184a", + "id" : "2435301", + "profile" : { + "bust" : "73", + "height" : "149", + "hip" : "76", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "エスケープブライド", + "alias_name_display" : "エスケープブライド", + "hash" : "a55383925d3c72058386acb662f47aa2", + "id" : "2535302", + "profile" : { + "bust" : "73", + "height" : "149", + "hip" : "76", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "小さなかくれんぼ", + "alias_name_display" : "小さなかくれんぼ", + "hash" : "fe787e19422e90f906eb7776da2f8615", + "id" : "2439401", + "profile" : { + "bust" : "73", + "height" : "149", + "hip" : "76", + "waist" : "55", + "weight" : "38" + } + }, { + "alias_name" : "小さなかくれんぼ", + "alias_name_display" : "小さなかくれんぼ", + "hash" : "323901218db4adb11070ca80dbaa2339", + "id" : "2539402", + "profile" : { + "bust" : "73", + "height" : "149", + "hip" : "76", + "waist" : "55", + "weight" : "38" + } + } ], + "idol_id" : 126, + "idol_name" : "森久保乃々", + "idol_name_display" : "森久保乃々", + "units" : [ { + "id" : "17", + "name" : "サイレントスクリーマー" + }, { + "id" : "85", + "name" : "アンダーザデスク" + }, { + "id" : "108", + "name" : "individuals" + }, { + "id" : "129", + "name" : "ワンステップス" + }, { + "id" : "161", + "name" : "ハロウィンナイト" + }, { + "id" : "165", + "name" : "メルヘンゴシック" + }, { + "id" : "188", + "name" : "Sweetches" + } ] +}, { + "aliases" : [ { + "hash" : "a0104e1ecbb0a22937e3465955d57a8e", + "id" : "2207701", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "80", + "waist" : "54", + "weight" : "43" + } + }, { + "hash" : "27158f6d1fc32593699b521aa1101f83", + "id" : "2307702", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "80", + "waist" : "54", + "weight" : "43" + } + }, { + "alias_name" : "スターユニバース", + "alias_name_display" : "スターユニバース", + "hash" : "6ed6b0f5c83df2e71e99998dbafe53fc", + "id" : "2209601", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "80", + "waist" : "54", + "weight" : "43" + } + }, { + "alias_name" : "スターユニバース", + "alias_name_display" : "スターユニバース", + "hash" : "229936ccad688e2a935d33dee89fcd56", + "id" : "2309602", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "80", + "waist" : "54", + "weight" : "43" + } + }, { + "alias_name" : "スターリービーチ", + "alias_name_display" : "スターリービーチ", + "hash" : "4cf046b2e4af1a4be1528e73de51c253", + "id" : "2408401", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "80", + "waist" : "54", + "weight" : "43" + } + }, { + "alias_name" : "スターリービーチ", + "alias_name_display" : "スターリービーチ", + "hash" : "1434c2b1e8ac2b9526af0dbc0be53e53", + "id" : "2508402", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "80", + "waist" : "54", + "weight" : "43" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "46785dbdd571559db51149de02e3337e", + "id" : "2410401", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "80", + "waist" : "54", + "weight" : "43" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "8f65c4a7c44238a8c40c97bb372de437", + "id" : "2510402", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "80", + "waist" : "54", + "weight" : "43" + } + }, { + "alias_name" : "スノーフェアリー", + "alias_name_display" : "スノーフェアリー", + "hash" : "53fcb80b6fc212d322bdf05f433d3bce", + "id" : "2411401", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "80", + "waist" : "54", + "weight" : "43" + } + }, { + "alias_name" : "スノーフェアリー", + "alias_name_display" : "スノーフェアリー", + "hash" : "815728ce55ae99bd7b40a1d229133dad", + "id" : "2511402", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "80", + "waist" : "54", + "weight" : "43" + } + }, { + "alias_name" : "ワンダフルマジック", + "alias_name_display" : "ワンダフルマジック", + "hash" : "36b6b86a58b5c91a83b3912f744f5cef", + "id" : "2412901", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "80", + "waist" : "54", + "weight" : "43" + } + }, { + "alias_name" : "ワンダフルマジック", + "alias_name_display" : "ワンダフルマジック", + "hash" : "7b34edac94a0b9ac186db1cef78e6566", + "id" : "2512902", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "80", + "waist" : "54", + "weight" : "43" + } + }, { + "alias_name" : "スターライトスクール", + "alias_name_display" : "スターライトスクール", + "hash" : "c882ebcbdd8a554dcd903c1db47972b2", + "id" : "2418201", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "80", + "waist" : "54", + "weight" : "43" + } + }, { + "alias_name" : "スターライトスクール", + "alias_name_display" : "スターライトスクール", + "hash" : "4597cb9d276c25fe9f6bde7354a1edef", + "id" : "2518202", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "80", + "waist" : "54", + "weight" : "43" + } + }, { + "alias_name" : "ラブライカ", + "alias_name_display" : "ラブライカ", + "hash" : "a24996fcc1421174481c3333b8ea5218", + "id" : "2521502", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "80", + "waist" : "54", + "weight" : "43" + } + }, { + "alias_name" : "G4U!", + "alias_name_display" : "G4U!", + "hash" : "72fd3eb6b6c8a3b1755193c55760938d", + "id" : "2525102", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "80", + "waist" : "54", + "weight" : "43" + } + }, { + "alias_name" : "宿星ロマネスク", + "alias_name_display" : "宿星ロマネスク", + "hash" : "00d81330baf84ea61b34e6d88f8bd8a3", + "id" : "2426101", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "80", + "waist" : "54", + "weight" : "43" + } + }, { + "alias_name" : "宿星ロマネスク", + "alias_name_display" : "宿星ロマネスク", + "hash" : "cea357fbbe19630ed0a4cbb91a582717", + "id" : "2526102", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "80", + "waist" : "54", + "weight" : "43" + } + }, { + "alias_name" : "スターリーブライド", + "alias_name_display" : "スターリーブライド", + "hash" : "48ccc17ef34d4336900f4d2a61b16df8", + "id" : "2433101", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "80", + "waist" : "54", + "weight" : "43" + } + }, { + "alias_name" : "スターリーブライド", + "alias_name_display" : "スターリーブライド", + "hash" : "d731e86015162f4f2f1bc8d2fb4aa7f9", + "id" : "2533102", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "80", + "waist" : "54", + "weight" : "43" + } + }, { + "alias_name" : "雪梅の羽衣", + "alias_name_display" : "雪梅の羽衣", + "hash" : "1afd8342d44293052f586fcf12e4eb8d", + "id" : "2437201", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "80", + "waist" : "54", + "weight" : "43" + } + }, { + "alias_name" : "雪梅の羽衣", + "alias_name_display" : "雪梅の羽衣", + "hash" : "c0e1d6f4481ba3fabd64f9c6c9675156", + "id" : "2537202", + "profile" : { + "bust" : "80", + "height" : "165", + "hip" : "80", + "waist" : "54", + "weight" : "43" + } + } ], + "idol_id" : 127, + "idol_name" : "アナスタシア", + "idol_name_display" : "アナスタシア", + "units" : [ { + "id" : "3", + "name" : "あーにゃんみくにゃん" + }, { + "id" : "78", + "name" : "LOVE LAIKA" + }, { + "id" : "116", + "name" : "にゃん・にゃん・にゃん" + }, { + "id" : "141", + "name" : "トランクィル・ウィスパー" + }, { + "id" : "145", + "name" : "LOVE LAIKA with Rosenburg Engel" + }, { + "id" : "155", + "name" : "セレクテッド" + }, { + "id" : "187", + "name" : "NEX-US" + }, { + "id" : "201", + "name" : "Caskets" + }, { + "id" : "213", + "name" : "CINDERELLA PROJECT" + }, { + "id" : "215", + "name" : "Project:Krone" + } ] +}, { + "aliases" : [ { + "hash" : "bdd75aa4670e84394fa074885329d353", + "id" : "2208601", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "51" + } + }, { + "hash" : "66f5d69f9648c1bcd8f0cf357cb804ff", + "id" : "2308602", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "51" + } + }, { + "alias_name" : "テーマパーク", + "alias_name_display" : "テーマパーク", + "event" : [ { + "event_id" : 210, + "event_name" : "アイドルサバイバルinテーマパーク2013" + } ], + "hash" : "d4ed74985e0e90e83c8e6e9829e06ca2", + "id" : "2209801", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "51" + } + }, { + "alias_name" : "テーマパーク", + "alias_name_display" : "テーマパーク", + "event" : [ { + "event_id" : 210, + "event_name" : "アイドルサバイバルinテーマパーク2013" + } ], + "hash" : "77ab277a285478ee92643668e4d320f4", + "id" : "2309802", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "51" + } + }, { + "alias_name" : "ロワイヤルスタイル", + "alias_name_display" : "ロワイヤルスタイル", + "event" : [ { + "event_id" : 803, + "event_name" : "第3回アイドルLIVEロワイヤル" + } ], + "hash" : "5ea595f4fea9bde7543b507bb9a53b13", + "id" : "2214101", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "51" + } + }, { + "alias_name" : "ロワイヤルスタイル", + "alias_name_display" : "ロワイヤルスタイル", + "event" : [ { + "event_id" : 803, + "event_name" : "第3回アイドルLIVEロワイヤル" + } ], + "hash" : "21adbd340e60c5982af18b580d87049d", + "id" : "2314102", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "51" + } + }, { + "alias_name" : "バディズボンズ", + "alias_name_display" : "バディズボンズ", + "hash" : "b309e13986724c2a213d606c19a82ed2", + "id" : "2221601", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "51" + } + }, { + "alias_name" : "バディズボンズ", + "alias_name_display" : "バディズボンズ", + "hash" : "5b501a4c1349d198b2b9ee5f0a03aed3", + "id" : "2321602", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "51" + } + }, { + "alias_name" : "ハロウィンガンナー", + "alias_name_display" : "ハロウィンガンナー", + "hash" : "541d4ff6ae2186367610013d4a5b966b", + "id" : "2409601", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "51" + } + }, { + "alias_name" : "ハロウィンガンナー", + "alias_name_display" : "ハロウィンガンナー", + "hash" : "ada388db99b4fce828433ebe3e0e5833", + "id" : "2509602", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "51" + } + }, { + "alias_name" : "ヴォヤージュ・グラップラー", + "alias_name_display" : "ヴォヤージュ・グラップラー", + "hash" : "507ff18b613c769ad6af2e41c6ffd7d9", + "id" : "2413601", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "51" + } + }, { + "alias_name" : "ヴォヤージュ・グラップラー", + "alias_name_display" : "ヴォヤージュ・グラップラー", + "hash" : "64f9f11efe3ea3e156d089af6383daf5", + "id" : "2513602", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "51" + } + }, { + "alias_name" : "峻烈闘技", + "alias_name_display" : "峻烈闘技", + "event" : [ { + "event_id" : 514, + "event_name" : "功夫公演 香港大決戦" + } ], + "hash" : "d4f4da3d57f9fa884b57215a5dacccbb", + "id" : "2417901", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "51" + } + }, { + "alias_name" : "峻烈闘技", + "alias_name_display" : "峻烈闘技", + "event" : [ { + "event_id" : 514, + "event_name" : "功夫公演 香港大決戦" + } ], + "hash" : "14b55a84faefe92d20fef54ae6dfd19d", + "id" : "2517902", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "51" + } + }, { + "alias_name" : "V・ジェネラル", + "alias_name_display" : "V・ジェネラル", + "event" : [ { + "event_id" : 810, + "event_name" : "アイドルLIVEロワイヤル バレンタインSP" + } ], + "hash" : "07acb4080f5ab49d5e122849994e21ec", + "id" : "2421601", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "51" + } + }, { + "alias_name" : "V・ジェネラル", + "alias_name_display" : "V・ジェネラル", + "event" : [ { + "event_id" : 810, + "event_name" : "アイドルLIVEロワイヤル バレンタインSP" + } ], + "hash" : "827a6122f087530b62b045dd10e1024a", + "id" : "2521602", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "51" + } + }, { + "alias_name" : "フォワードチアー", + "alias_name_display" : "フォワードチアー", + "event" : [ { + "event_id" : 1504, + "event_name" : "第4回チーム対抗トークバトルショー" + } ], + "hash" : "3e53dc3355ec6ba2d0e7ade9878ea440", + "id" : "2427401", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "51" + } + }, { + "alias_name" : "フォワードチアー", + "alias_name_display" : "フォワードチアー", + "event" : [ { + "event_id" : 1504, + "event_name" : "第4回チーム対抗トークバトルショー" + } ], + "hash" : "f4edb567d2d54063babfa277b6716e8c", + "id" : "2527402", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "51" + } + }, { + "alias_name" : "パーフェクトプレデター", + "alias_name_display" : "パーフェクトプレデター", + "event" : [ { + "event_id" : 1210, + "event_name" : "アイドルチャレンジ サバイバルゲーム編" + } ], + "hash" : "dd4b44c6df0f6e78a9c10459a4101093", + "id" : "2432201", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "51" + } + }, { + "alias_name" : "パーフェクトプレデター", + "alias_name_display" : "パーフェクトプレデター", + "event" : [ { + "event_id" : 1210, + "event_name" : "アイドルチャレンジ サバイバルゲーム編" + } ], + "hash" : "f6c27f4e984ec5c984d985b61c05d58a", + "id" : "2532202", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "51" + } + }, { + "alias_name" : "煩悩ビートアウト", + "alias_name_display" : "煩悩ビートアウト", + "event" : [ { + "event_id" : 726, + "event_name" : "ドリームLIVEフェスティバル新春SP" + } ], + "hash" : "f575c75aca75758a1c6505917a35300d", + "id" : "2437101", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "51" + } + }, { + "alias_name" : "煩悩ビートアウト", + "alias_name_display" : "煩悩ビートアウト", + "event" : [ { + "event_id" : 726, + "event_name" : "ドリームLIVEフェスティバル新春SP" + } ], + "hash" : "3fd70cf35e090606cfb1d891b35fb013", + "id" : "2537102", + "profile" : { + "bust" : "92", + "height" : "165", + "hip" : "85", + "waist" : "60", + "weight" : "51" + } + } ], + "idol_id" : 128, + "idol_name" : "大和亜季", + "idol_name_display" : "大和亜季", + "units" : [ { + "id" : "121", + "name" : "ヘルシーサバイブ" + }, { + "id" : "176", + "name" : "炎陣" + }, { + "id" : "208", + "name" : "ロワイヤルスタイル" + } ] +}, { + "aliases" : [ { + "hash" : "dfa875a32faa00241a4fbe09310f9c7f", + "id" : "2209901", + "profile" : { + "bust" : "74", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "37" + } + }, { + "hash" : "2568eae8707de2024d268ec56e553adf", + "id" : "2309902", + "profile" : { + "bust" : "74", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "37" + } + }, { + "alias_name" : "バニーガール", + "alias_name_display" : "バニーガール", + "hash" : "a013ffd163e3c20a807def1b83c0a6b1", + "id" : "2211601", + "profile" : { + "bust" : "74", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "37" + } + }, { + "alias_name" : "バニーガール", + "alias_name_display" : "バニーガール", + "hash" : "1ac8bfee87f2f11f3e9dd0c54ca3e953", + "id" : "2311602", + "profile" : { + "bust" : "74", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "37" + } + }, { + "alias_name" : "ロワイヤルスタイルNP", + "alias_name_display" : "ロワイヤルスタイルNP", + "event" : [ { + "event_id" : 804, + "event_name" : "第4回アイドルLIVEロワイヤル" + } ], + "hash" : "f0b8b5cf58bb8c5406140058f5a849f0", + "id" : "2214901", + "profile" : { + "bust" : "74", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "37" + } + }, { + "alias_name" : "ロワイヤルスタイルNP", + "alias_name_display" : "ロワイヤルスタイルNP", + "event" : [ { + "event_id" : 804, + "event_name" : "第4回アイドルLIVEロワイヤル" + } ], + "hash" : "29d1a6d210cf95036da6ba9a48c052e0", + "id" : "2314902", + "profile" : { + "bust" : "74", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "37" + } + }, { + "alias_name" : "ブライダルセレクション", + "alias_name_display" : "ブライダルセレクション", + "hash" : "4d145211fe71e1d11c6d7a44d1cb8c76", + "id" : "2221301", + "profile" : { + "bust" : "74", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "37" + } + }, { + "alias_name" : "ブライダルセレクション", + "alias_name_display" : "ブライダルセレクション", + "hash" : "88d2abc4439dbca86dc9f64c50df81e1", + "id" : "2321302", + "profile" : { + "bust" : "74", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "37" + } + }, { + "alias_name" : "ナデシコI.C", + "alias_name_display" : "ナデシコI.C", + "event" : [ { + "event_id" : 1207, + "event_name" : "目指せ大和撫子 アイドルチャレンジ" + } ], + "hash" : "0912cff2743a72d74ddb27ba6c759520", + "id" : "2323202", + "profile" : { + "bust" : "74", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "37" + } + }, { + "alias_name" : "フレッシュセレクト", + "alias_name_display" : "フレッシュセレクト", + "hash" : "917f4d4ef32fcbc618912ad79a662509", + "id" : "2229101", + "profile" : { + "bust" : "74", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "37" + } + }, { + "alias_name" : "フレッシュセレクト", + "alias_name_display" : "フレッシュセレクト", + "hash" : "71bf409f7e131f628bf16f7293a10259", + "id" : "2329102", + "profile" : { + "bust" : "74", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "37" + } + }, { + "alias_name" : "疾風のストライカー", + "alias_name_display" : "疾風のストライカー", + "event" : [ { + "event_id" : "016", + "event_name" : "第16回プロダクションマッチフェスティバル" + } ], + "hash" : "555e09e17e8b0478cc9cb34ade964e83", + "id" : "2413701", + "profile" : { + "bust" : "74", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "37" + } + }, { + "alias_name" : "疾風のストライカー", + "alias_name_display" : "疾風のストライカー", + "event" : [ { + "event_id" : "016", + "event_name" : "第16回プロダクションマッチフェスティバル" + } ], + "hash" : "33d5c2fed58080ff247e88e4419b23ce", + "id" : "2513702", + "profile" : { + "bust" : "74", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "37" + } + }, { + "alias_name" : "アクティブサファリ", + "alias_name_display" : "アクティブサファリ", + "event" : [ { + "event_id" : 414, + "event_name" : "どうぶつアドベンチャー オーストラリア編" + } ], + "hash" : "8265ddc15288685c6669e162918d54f2", + "id" : "2417301", + "profile" : { + "bust" : "74", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "37" + } + }, { + "alias_name" : "アクティブサファリ", + "alias_name_display" : "アクティブサファリ", + "event" : [ { + "event_id" : 414, + "event_name" : "どうぶつアドベンチャー オーストラリア編" + } ], + "hash" : "3cf4089b1a845917321f864469eb6a8d", + "id" : "2517302", + "profile" : { + "bust" : "74", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "37" + } + }, { + "alias_name" : "アクティブサファリ・S", + "alias_name_display" : "アクティブサファリ・S", + "event" : [ { + "event_id" : 414, + "event_name" : "どうぶつアドベンチャー オーストラリア編" + } ], + "hash" : "dbdcdaef80cb0747871a76a00a9cf06f", + "id" : "2417401", + "profile" : { + "bust" : "74", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "37" + } + }, { + "alias_name" : "アクティブサファリ・S", + "alias_name_display" : "アクティブサファリ・S", + "event" : [ { + "event_id" : 414, + "event_name" : "どうぶつアドベンチャー オーストラリア編" + } ], + "hash" : "a912cbee230c6437054c1bd1cdbac479", + "id" : "2517402", + "profile" : { + "bust" : "74", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "37" + } + }, { + "alias_name" : "明日へのフラッグ", + "alias_name_display" : "明日へのフラッグ", + "hash" : "f47b91503aa66413e527bf7e34845455", + "id" : "2420701", + "profile" : { + "bust" : "74", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "37" + } + }, { + "alias_name" : "明日へのフラッグ", + "alias_name_display" : "明日へのフラッグ", + "hash" : "0c05a80b08b4ea53fbe226641f38f233", + "id" : "2520702", + "profile" : { + "bust" : "74", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "37" + } + }, { + "alias_name" : "茶道の大和撫子", + "alias_name_display" : "茶道の大和撫子", + "event" : [ { + "event_id" : 1207, + "event_name" : "目指せ大和撫子 アイドルチャレンジ" + } ], + "hash" : "2aa881f4aaa87e622b49619067103762", + "id" : "2427001", + "profile" : { + "bust" : "74", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "37" + } + }, { + "alias_name" : "茶道の大和撫子", + "alias_name_display" : "茶道の大和撫子", + "event" : [ { + "event_id" : 1207, + "event_name" : "目指せ大和撫子 アイドルチャレンジ" + } ], + "hash" : "577d0df4271b8ca7f326c2b1410f3d42", + "id" : "2527002", + "profile" : { + "bust" : "74", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "37" + } + }, { + "alias_name" : "茶道の大和撫子・S", + "alias_name_display" : "茶道の大和撫子・S", + "event" : [ { + "event_id" : 1207, + "event_name" : "目指せ大和撫子 アイドルチャレンジ" + } ], + "hash" : "2c92874d2faf8cd7055d13af5a3ccdbb", + "id" : "2427101", + "profile" : { + "bust" : "74", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "37" + } + }, { + "alias_name" : "茶道の大和撫子・S", + "alias_name_display" : "茶道の大和撫子・S", + "event" : [ { + "event_id" : 1207, + "event_name" : "目指せ大和撫子 アイドルチャレンジ" + } ], + "hash" : "54d00470533b80a1184cd2e4ea96b829", + "id" : "2527102", + "profile" : { + "bust" : "74", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "37" + } + }, { + "alias_name" : "オーバーラップ", + "alias_name_display" : "オーバーラップ", + "event" : [ { + "event_id" : 1506, + "event_name" : "第6回チーム対抗トークバトルショー" + } ], + "hash" : "e343237e1ccc77a8f1c45944d61916f6", + "id" : "2431601", + "profile" : { + "bust" : "74", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "37" + } + }, { + "alias_name" : "オーバーラップ", + "alias_name_display" : "オーバーラップ", + "event" : [ { + "event_id" : 1506, + "event_name" : "第6回チーム対抗トークバトルショー" + } ], + "hash" : "f3b9ea014c6bc64c930947cc9221d3c9", + "id" : "2531602", + "profile" : { + "bust" : "74", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "37" + } + } ], + "idol_id" : 129, + "idol_name" : "結城晴", + "idol_name_display" : "結城晴", + "units" : [ { + "id" : "45", + "name" : "ビートシューター" + }, { + "id" : "47", + "name" : "ひつじさんとうさぎさん" + }, { + "id" : "54", + "name" : "ボール・フレンズ" + }, { + "id" : "162", + "name" : "ブライダルセレクション" + }, { + "id" : "177", + "name" : "桜舞隊" + }, { + "id" : "209", + "name" : "ロワイヤルスタイルNP" + } ] +}, { + "aliases" : [ { + "hash" : "4631474fd525ac81e51808b0bface6a2", + "id" : "2213501", + "profile" : { + "bust" : "75", + "height" : "154", + "hip" : "78", + "waist" : "55", + "weight" : "42" + } + }, { + "hash" : "7ca085178b2e427f1840e2ba4ea64319", + "id" : "2313502", + "profile" : { + "bust" : "75", + "height" : "154", + "hip" : "78", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "グリッターステージ", + "alias_name_display" : "グリッターステージ", + "hash" : "eb23608b1c3bdac0aa81a981e8336178", + "id" : "2215101", + "profile" : { + "bust" : "75", + "height" : "154", + "hip" : "78", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "グリッターステージ", + "alias_name_display" : "グリッターステージ", + "hash" : "f84359de4c315c3ca147d07099e188ed", + "id" : "2315102", + "profile" : { + "bust" : "75", + "height" : "154", + "hip" : "78", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "サファリアドベンチャー", + "alias_name_display" : "サファリアドベンチャー", + "event" : [ { + "event_id" : 414, + "event_name" : "どうぶつアドベンチャー オーストラリア編" + } ], + "hash" : "826f2cb1d85e56e5a5c3c1cea0bbb4a3", + "id" : "2217601", + "profile" : { + "bust" : "75", + "height" : "154", + "hip" : "78", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "サファリアドベンチャー", + "alias_name_display" : "サファリアドベンチャー", + "event" : [ { + "event_id" : 414, + "event_name" : "どうぶつアドベンチャー オーストラリア編" + } ], + "hash" : "76de9e9451a8de5a9ffb41c3e52c9ba6", + "id" : "2317602", + "profile" : { + "bust" : "75", + "height" : "154", + "hip" : "78", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "サファリアドベンチャー・S", + "alias_name_display" : "サファリアドベンチャー・S", + "event" : [ { + "event_id" : 414, + "event_name" : "どうぶつアドベンチャー オーストラリア編" + } ], + "hash" : "862d52f01e41b00da8b5e28509617ab4", + "id" : "2217701", + "profile" : { + "bust" : "75", + "height" : "154", + "hip" : "78", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "サファリアドベンチャー・S", + "alias_name_display" : "サファリアドベンチャー・S", + "event" : [ { + "event_id" : 414, + "event_name" : "どうぶつアドベンチャー オーストラリア編" + } ], + "hash" : "1bcb8bfa56a99fdaabd33c1657a492bd", + "id" : "2317702", + "profile" : { + "bust" : "75", + "height" : "154", + "hip" : "78", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "ロコガール", + "alias_name_display" : "ロコガール", + "event" : [ { + "event_id" : 1707, + "event_name" : "アイドルプロデュース アロハ!常夏の楽園" + } ], + "hash" : "4b2a471b95bdaa8f7618eb7c4fd9c9d3", + "id" : "2328302", + "profile" : { + "bust" : "75", + "height" : "154", + "hip" : "78", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "オリ・ロコガール", + "alias_name_display" : "オリ・ロコガール", + "event" : [ { + "event_id" : 1707, + "event_name" : "アイドルプロデュース アロハ!常夏の楽園" + } ], + "hash" : "0007e6f742de588da035f27181ba2b70", + "id" : "2328402", + "profile" : { + "bust" : "75", + "height" : "154", + "hip" : "78", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "ミッシング・ピース", + "alias_name_display" : "ミッシング・ピース", + "event" : [ { + "event_id" : 805, + "event_name" : "第5回アイドルLIVEロワイヤル" + } ], + "hash" : "42027e0a6ed923a0b6bb8eb4b8e5eff3", + "id" : "2415201", + "profile" : { + "bust" : "75", + "height" : "154", + "hip" : "78", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "ミッシング・ピース", + "alias_name_display" : "ミッシング・ピース", + "event" : [ { + "event_id" : 805, + "event_name" : "第5回アイドルLIVEロワイヤル" + } ], + "hash" : "2c156cdf5c956999318cf46708f1fad0", + "id" : "2515202", + "profile" : { + "bust" : "75", + "height" : "154", + "hip" : "78", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "アブソリュート・ゼロ", + "alias_name_display" : "アブソリュート・ゼロ", + "hash" : "aff88d81c2ac012a0e9beca15e36200f", + "id" : "2420001", + "profile" : { + "bust" : "75", + "height" : "154", + "hip" : "78", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "アブソリュート・ゼロ", + "alias_name_display" : "アブソリュート・ゼロ", + "hash" : "f029377df33b0c281856b7e879be1c96", + "id" : "2520002", + "profile" : { + "bust" : "75", + "height" : "154", + "hip" : "78", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "桜風リフレイン", + "alias_name_display" : "桜風リフレイン", + "event" : [ { + "event_id" : 712, + "event_name" : "花見DEドリームLIVEフェスティバル" + } ], + "hash" : "1114c352cd5b0ad6e635009fb34808cb", + "id" : "2423101", + "profile" : { + "bust" : "75", + "height" : "154", + "hip" : "78", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "桜風リフレイン", + "alias_name_display" : "桜風リフレイン", + "event" : [ { + "event_id" : 712, + "event_name" : "花見DEドリームLIVEフェスティバル" + } ], + "hash" : "14d9fc31f58df5da5bbddc246775e1bd", + "id" : "2523102", + "profile" : { + "bust" : "75", + "height" : "154", + "hip" : "78", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "ロスト・バレンタイン", + "alias_name_display" : "ロスト・バレンタイン", + "hash" : "1a62a0aeafb9ded1cc66e67f3ce178db", + "id" : "2430601", + "profile" : { + "bust" : "75", + "height" : "154", + "hip" : "78", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "ロスト・バレンタイン", + "alias_name_display" : "ロスト・バレンタイン", + "hash" : "ba8a9663527dafc77bf3e9ac4615c3cf", + "id" : "2530602", + "profile" : { + "bust" : "75", + "height" : "154", + "hip" : "78", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "29578016c7ff21a9d85eef32ab93e0bb", + "id" : "2431501", + "profile" : { + "bust" : "75", + "height" : "154", + "hip" : "78", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "b1bed12bc96443d7f3906f35594cbedd", + "id" : "2531502", + "profile" : { + "bust" : "75", + "height" : "154", + "hip" : "78", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "楽園-エデン-の入口", + "alias_name_display" : "楽園-エデン-の入口", + "event" : [ { + "event_id" : 1707, + "event_name" : "アイドルプロデュース アロハ!常夏の楽園" + } ], + "hash" : "5bbad382b5722462d5c5dd5fe6926a51", + "id" : "2434601", + "profile" : { + "bust" : "75", + "height" : "154", + "hip" : "78", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "楽園-エデン-の入口", + "alias_name_display" : "楽園-エデン-の入口", + "event" : [ { + "event_id" : 1707, + "event_name" : "アイドルプロデュース アロハ!常夏の楽園" + } ], + "hash" : "58efb2db39c23d19a4c7dca78d31edbc", + "id" : "2534602", + "profile" : { + "bust" : "75", + "height" : "154", + "hip" : "78", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "碧落のリベレイター", + "alias_name_display" : "碧落のリベレイター", + "hash" : "f069c36e4de862aadd81791d55f1f7d8", + "id" : "2438901", + "profile" : { + "bust" : "75", + "height" : "154", + "hip" : "78", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "碧落のリベレイター", + "alias_name_display" : "碧落のリベレイター", + "hash" : "3f93733e01fed8506d57f0c5894586f6", + "id" : "2538902", + "profile" : { + "bust" : "75", + "height" : "154", + "hip" : "78", + "waist" : "55", + "weight" : "42" + } + } ], + "idol_id" : 130, + "idol_name" : "二宮飛鳥", + "idol_name_display" : "二宮飛鳥", + "units" : [ { + "id" : "32", + "name" : "ダークイルミネイト" + }, { + "id" : "57", + "name" : "ミステリックガーデン" + }, { + "id" : "72", + "name" : "Dimension-3" + }, { + "id" : "132", + "name" : "thinE/Dasein" + }, { + "id" : "186", + "name" : "LittlePOPS" + }, { + "id" : "200", + "name" : "CAERULA" + } ] +}, { + "aliases" : [ { + "hash" : "dc80aeb410e6c893f6af62cc1ffe68f3", + "id" : "2217901", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + }, { + "hash" : "77c0f72b9219350c3fa2d00d5f4f3c4c", + "id" : "2317902", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "T.B.クリスマス", + "alias_name_display" : "T.B.クリスマス", + "event" : [ { + "event_id" : 1107, + "event_name" : "プロダクション対抗トークバトルショー クリスマスSP" + } ], + "hash" : "2a56bce05d5590dd7d4630bc252a6076", + "id" : "2219201", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "T.B.クリスマス", + "alias_name_display" : "T.B.クリスマス", + "event" : [ { + "event_id" : 1107, + "event_name" : "プロダクション対抗トークバトルショー クリスマスSP" + } ], + "hash" : "3f8e0ebb0b19b25180d60f57b4a97eec", + "id" : "2319202", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "春風スポーツ", + "alias_name_display" : "春風スポーツ", + "hash" : "39e3a2e8c3faf52a81febbe19413a13b", + "id" : "2226001", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "春風スポーツ", + "alias_name_display" : "春風スポーツ", + "hash" : "06e6725192ffdda60204d7066a031dfb", + "id" : "2326002", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "イノベーションマインド", + "alias_name_display" : "イノベーションマインド", + "event" : [ { + "event_id" : "034", + "event_name" : "第34回プロダクションマッチフェスティバル" + } ], + "hash" : "967bde64d2f177461d1fba733587bf71", + "id" : "2231201", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "イノベーションマインド", + "alias_name_display" : "イノベーションマインド", + "event" : [ { + "event_id" : "034", + "event_name" : "第34回プロダクションマッチフェスティバル" + } ], + "hash" : "c0dedc58fa9d81976f14db357913cf88", + "id" : "2331202", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "ランウェイのカリスマ", + "alias_name_display" : "ランウェイのカリスマ", + "event" : [ { + "event_id" : 1401, + "event_name" : "ぷちデレラコレクション" + } ], + "hash" : "c09af8c69550dce67368fec799fc8cf9", + "id" : "2422601", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "ランウェイのカリスマ", + "alias_name_display" : "ランウェイのカリスマ", + "event" : [ { + "event_id" : 1401, + "event_name" : "ぷちデレラコレクション" + } ], + "hash" : "be9198891b0b4e32e52a0fb5f0a26224", + "id" : "2522602", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "とれたてビーチガール", + "alias_name_display" : "とれたてビーチガール", + "event" : [ { + "event_id" : 1703, + "event_name" : "アイドルプロデュース おいでよ!海の家" + } ], + "hash" : "75b94970d1a2a451d6e4b563371179f9", + "id" : "2425801", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "とれたてビーチガール", + "alias_name_display" : "とれたてビーチガール", + "event" : [ { + "event_id" : 1703, + "event_name" : "アイドルプロデュース おいでよ!海の家" + } ], + "hash" : "2df32585bb5807a6778123c82c94b2a2", + "id" : "2525802", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "きらめきビーチガール", + "alias_name_display" : "きらめきビーチガール", + "event" : [ { + "event_id" : 1703, + "event_name" : "アイドルプロデュース おいでよ!海の家" + } ], + "hash" : "ea898cb5f33356dbdea348b45156f50a", + "id" : "2425901", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "きらめきビーチガール", + "alias_name_display" : "きらめきビーチガール", + "event" : [ { + "event_id" : 1703, + "event_name" : "アイドルプロデュース おいでよ!海の家" + } ], + "hash" : "6bf84171cae8136e5629734a962e1381", + "id" : "2525902", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "やさしいプライド", + "alias_name_display" : "やさしいプライド", + "hash" : "60f958aa7043601e4707a7e49e01fd84", + "id" : "2429801", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "やさしいプライド", + "alias_name_display" : "やさしいプライド", + "hash" : "9088aa0659ca2239587d146841870c97", + "id" : "2529802", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "ロングオータムナイト", + "alias_name_display" : "ロングオータムナイト", + "event" : [ { + "event_id" : "031", + "event_name" : "第31回プロダクションマッチフェスティバル" + } ], + "hash" : "632b7acafc87d967835ee98f06e16b75", + "id" : "2434801", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "ロングオータムナイト", + "alias_name_display" : "ロングオータムナイト", + "event" : [ { + "event_id" : "031", + "event_name" : "第31回プロダクションマッチフェスティバル" + } ], + "hash" : "bf5c1105baa37c752c0733f015513f75", + "id" : "2534802", + "profile" : { + "bust" : "83", + "height" : "164", + "hip" : "82", + "waist" : "55", + "weight" : "45" + } + } ], + "idol_id" : 131, + "idol_name" : "桐生つかさ", + "idol_name_display" : "桐生つかさ" +}, { + "aliases" : [ { + "alias_name" : "白き少女", + "alias_name_display" : "白き少女", + "hash" : "45979186701f234bab59226a89c062aa", + "id" : "2213401", + "profile" : { + "bust" : "82", + "height" : "150", + "hip" : "86", + "waist" : "59", + "weight" : "37" + } + }, { + "alias_name" : "白き少女", + "alias_name_display" : "白き少女", + "hash" : "aaaafaec6c1d24fd4fd70b687e924323", + "id" : "2313402", + "profile" : { + "bust" : "82", + "height" : "150", + "hip" : "86", + "waist" : "59", + "weight" : "37" + } + }, { + "alias_name" : "オータムバケーション", + "alias_name_display" : "オータムバケーション", + "hash" : "f0515ad075fac44cb443e3212a4d26e1", + "id" : "2224101", + "profile" : { + "bust" : "82", + "height" : "150", + "hip" : "86", + "waist" : "59", + "weight" : "37" + } + }, { + "alias_name" : "オータムバケーション", + "alias_name_display" : "オータムバケーション", + "hash" : "374ec3840963828acbcf06855e0fe040", + "id" : "2324102", + "profile" : { + "bust" : "82", + "height" : "150", + "hip" : "86", + "waist" : "59", + "weight" : "37" + } + }, { + "alias_name" : "聖なる乙女", + "alias_name_display" : "聖なる乙女", + "event" : [ { + "event_id" : 101, + "event_name" : "星降るクリスマス" + } ], + "hash" : "8cae26d0d27003747bc45772fe2394fe", + "id" : "2400501", + "profile" : { + "bust" : "82", + "height" : "150", + "hip" : "86", + "waist" : "59", + "weight" : "37" + } + }, { + "alias_name" : "聖なる乙女", + "alias_name_display" : "聖なる乙女", + "event" : [ { + "event_id" : 101, + "event_name" : "星降るクリスマス" + } ], + "hash" : "5b28de5e600e64bf58b9c0b0a1451c32", + "id" : "2500502", + "profile" : { + "bust" : "82", + "height" : "150", + "hip" : "86", + "waist" : "59", + "weight" : "37" + } + }, { + "alias_name" : "清白の乙女", + "alias_name_display" : "清白の乙女", + "event" : [ { + "event_id" : 208, + "event_name" : "アイドルサバイバル聖歌響くクリスマス" + } ], + "hash" : "5d55c5a3466041effb10209d4fe173e1", + "id" : "2404501", + "profile" : { + "bust" : "82", + "height" : "150", + "hip" : "86", + "waist" : "59", + "weight" : "37" + } + }, { + "alias_name" : "清白の乙女", + "alias_name_display" : "清白の乙女", + "event" : [ { + "event_id" : 208, + "event_name" : "アイドルサバイバル聖歌響くクリスマス" + } ], + "hash" : "fdcdab7adbaa2afbb76be984e650de0e", + "id" : "2504502", + "profile" : { + "bust" : "82", + "height" : "150", + "hip" : "86", + "waist" : "59", + "weight" : "37" + } + }, { + "alias_name" : "白き細雪", + "alias_name_display" : "白き細雪", + "event" : [ { + "event_id" : 710, + "event_name" : "サンタDEドリームLIVEフェスティバル" + } ], + "hash" : "5b09b56806ee072b6137f2e42fd8fc04", + "id" : "2419801", + "profile" : { + "bust" : "82", + "height" : "150", + "hip" : "86", + "waist" : "59", + "weight" : "37" + } + }, { + "alias_name" : "白き細雪", + "alias_name_display" : "白き細雪", + "event" : [ { + "event_id" : 710, + "event_name" : "サンタDEドリームLIVEフェスティバル" + } ], + "hash" : "7c18ddc33c71d6822f17d7bd39c58e36", + "id" : "2519802", + "profile" : { + "bust" : "82", + "height" : "150", + "hip" : "86", + "waist" : "59", + "weight" : "37" + } + }, { + "alias_name" : "純真少女", + "alias_name_display" : "純真少女", + "hash" : "38cad77b3a0f525ddcc4365b08e13549", + "id" : "2431801", + "profile" : { + "bust" : "82", + "height" : "150", + "hip" : "86", + "waist" : "59", + "weight" : "37" + } + }, { + "alias_name" : "純真少女", + "alias_name_display" : "純真少女", + "hash" : "4d605668f2238435747000680b3e9d59", + "id" : "2531802", + "profile" : { + "bust" : "82", + "height" : "150", + "hip" : "86", + "waist" : "59", + "weight" : "37" + } + }, { + "alias_name" : "ひびきあう雪花", + "alias_name_display" : "ひびきあう雪花", + "event" : [ { + "event_id" : 1905, + "event_name" : "ディアリースターナイト ~聖夜のキセキ~" + } ], + "hash" : "e60367a2486c6bb3fb16e369d6796307", + "id" : "2436701", + "profile" : { + "bust" : "82", + "height" : "150", + "hip" : "86", + "waist" : "59", + "weight" : "37" + } + }, { + "alias_name" : "ひびきあう雪花", + "alias_name_display" : "ひびきあう雪花", + "event" : [ { + "event_id" : 1905, + "event_name" : "ディアリースターナイト ~聖夜のキセキ~" + } ], + "hash" : "3e6deec005701d78f54d7108ff35df41", + "id" : "2536702", + "profile" : { + "bust" : "82", + "height" : "150", + "hip" : "86", + "waist" : "59", + "weight" : "37" + } + } ], + "idol_id" : 132, + "idol_name" : "望月聖", + "idol_name_display" : "望月聖", + "units" : [ { + "id" : "114", + "name" : "ドリームホープスプリング" + } ] +}, { + "aliases" : [ { + "alias_name" : "運気上昇", + "alias_name_display" : "運気上昇", + "hash" : "d7dec3c58513c892ae28ce692f1d9c06", + "id" : "2227601", + "profile" : { + "bust" : "88", + "height" : "160", + "hip" : "88", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "運気上昇", + "alias_name_display" : "運気上昇", + "hash" : "89bfa866799f61e56ef2e9ad90df0abd", + "id" : "2327602", + "profile" : { + "bust" : "88", + "height" : "160", + "hip" : "88", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "幸運の女神", + "alias_name_display" : "幸運の女神", + "event" : [ { + "event_id" : 102, + "event_name" : "アイドルおもちつき大会" + } ], + "hash" : "bf1cee7c5f1620d1328b295abb2b3573", + "id" : "2400701", + "profile" : { + "bust" : "88", + "height" : "160", + "hip" : "88", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "幸運の女神", + "alias_name_display" : "幸運の女神", + "event" : [ { + "event_id" : 102, + "event_name" : "アイドルおもちつき大会" + } ], + "hash" : "6b856c4fa2d4b26fd50a8169f19ebb51", + "id" : "2500702", + "profile" : { + "bust" : "88", + "height" : "160", + "hip" : "88", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "強運の才女", + "alias_name_display" : "強運の才女", + "hash" : "5b1bae277355a1691544753b57fac1d0", + "id" : "2404901", + "profile" : { + "bust" : "88", + "height" : "160", + "hip" : "88", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "強運の才女", + "alias_name_display" : "強運の才女", + "hash" : "358368dbd0dc56c11cf93069d1d75911", + "id" : "2504902", + "profile" : { + "bust" : "88", + "height" : "160", + "hip" : "88", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "謹賀新年", + "alias_name_display" : "謹賀新年", + "hash" : "17a125ea352bda654afef2d07eb1ebc7", + "id" : "2411701", + "profile" : { + "bust" : "88", + "height" : "160", + "hip" : "88", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "謹賀新年", + "alias_name_display" : "謹賀新年", + "hash" : "88f8892b760b11a663e8403c3870763a", + "id" : "2511702", + "profile" : { + "bust" : "88", + "height" : "160", + "hip" : "88", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "多芸の才女", + "alias_name_display" : "多芸の才女", + "event" : [ { + "event_id" : 1204, + "event_name" : "新年かくし芸SP アイドルチャレンジ" + } ], + "hash" : "98f83a297189bc85c6b368df4c369af8", + "id" : "2420201", + "profile" : { + "bust" : "88", + "height" : "160", + "hip" : "88", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "多芸の才女", + "alias_name_display" : "多芸の才女", + "event" : [ { + "event_id" : 1204, + "event_name" : "新年かくし芸SP アイドルチャレンジ" + } ], + "hash" : "46fc14a63a4822541cca86f95ea2cf76", + "id" : "2520202", + "profile" : { + "bust" : "88", + "height" : "160", + "hip" : "88", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "雪月花", + "alias_name_display" : "雪月花", + "event" : [ { + "event_id" : 1405, + "event_name" : "第5回ぷちデレラコレクション" + } ], + "hash" : "132ee5e2eafd0c8749ff85a491297a42", + "id" : "2430301", + "profile" : { + "bust" : "88", + "height" : "160", + "hip" : "88", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "雪月花", + "alias_name_display" : "雪月花", + "event" : [ { + "event_id" : 1405, + "event_name" : "第5回ぷちデレラコレクション" + } ], + "hash" : "f6b971137b54ffdbd6f9b1671ccdb7bc", + "id" : "2530302", + "profile" : { + "bust" : "88", + "height" : "160", + "hip" : "88", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "慶福の雪路", + "alias_name_display" : "慶福の雪路", + "event" : [ { + "event_id" : "033", + "event_name" : "第33回プロダクションマッチフェスティバル" + } ], + "hash" : "a6becd927cf9c07c6f8a3a0675cb5eee", + "id" : "2437701", + "profile" : { + "bust" : "88", + "height" : "160", + "hip" : "88", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "慶福の雪路", + "alias_name_display" : "慶福の雪路", + "event" : [ { + "event_id" : "033", + "event_name" : "第33回プロダクションマッチフェスティバル" + } ], + "hash" : "715b793aa4d3b15051658c0100f70bde", + "id" : "2537702", + "profile" : { + "bust" : "88", + "height" : "160", + "hip" : "88", + "waist" : "57", + "weight" : "43" + } + } ], + "idol_id" : 133, + "idol_name" : "鷹富士茄子", + "idol_name_display" : "鷹富士茄子", + "units" : [ { + "id" : "58", + "name" : "ミス・フォーチュン" + }, { + "id" : "87", + "name" : "ウィンター・F・ドライバーズ" + } ] +}, { + "aliases" : [ { + "hash" : "3a15a87af190354ae89fca368b35b69e", + "id" : "3000101", + "profile" : { + "bust" : "84", + "height" : "161", + "hip" : "87", + "waist" : "58", + "weight" : "46" + } + }, { + "hash" : "ce6baca22d2efbb08703302ef088640d", + "id" : "3100102", + "profile" : { + "bust" : "84", + "height" : "161", + "hip" : "87", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "2ndアニバーサリー", + "alias_name_display" : "2ndアニバーサリー", + "event" : [ { + "event_id" : 410, + "event_name" : "アイドルプロデュース the 2nd Anniversary" + } ], + "hash" : "dfea059243990fd0d1902e55aefda8ea", + "id" : "3214101", + "profile" : { + "bust" : "84", + "height" : "161", + "hip" : "87", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "2ndアニバーサリー", + "alias_name_display" : "2ndアニバーサリー", + "event" : [ { + "event_id" : 410, + "event_name" : "アイドルプロデュース the 2nd Anniversary" + } ], + "hash" : "5bc8615e9e1c4d44265bd5e804fb30da", + "id" : "3314102", + "profile" : { + "bust" : "84", + "height" : "161", + "hip" : "87", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "2ndアニバーサリー・スマイル", + "alias_name_display" : "2ndアニバーサリー・スマイル", + "event" : [ { + "event_id" : 410, + "event_name" : "アイドルプロデュース the 2nd Anniversary" + } ], + "hash" : "47b205617b851c0339d5d48feef363a8", + "id" : "3214201", + "profile" : { + "bust" : "84", + "height" : "161", + "hip" : "87", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "2ndアニバーサリー・スマイル", + "alias_name_display" : "2ndアニバーサリー・スマイル", + "event" : [ { + "event_id" : 410, + "event_name" : "アイドルプロデュース the 2nd Anniversary" + } ], + "hash" : "59e76dff218b3cfd6f752c96020b77b9", + "id" : "3314202", + "profile" : { + "bust" : "84", + "height" : "161", + "hip" : "87", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "2ndアニバーサリー・ネコミミ", + "alias_name_display" : "2ndアニバーサリー・ネコミミ", + "event" : [ { + "event_id" : 410, + "event_name" : "アイドルプロデュース the 2nd Anniversary" + } ], + "hash" : "f30ed6c8625b249877623ce153a6ee42", + "id" : "3214301", + "profile" : { + "bust" : "84", + "height" : "161", + "hip" : "87", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "2ndアニバーサリー・ネコミミ", + "alias_name_display" : "2ndアニバーサリー・ネコミミ", + "event" : [ { + "event_id" : 410, + "event_name" : "アイドルプロデュース the 2nd Anniversary" + } ], + "hash" : "a5c1e539fc8decf8bc8344d4da523d75", + "id" : "3314302", + "profile" : { + "bust" : "84", + "height" : "161", + "hip" : "87", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "ニュージェネレーション", + "alias_name_display" : "ニュージェネレーション", + "hash" : "91fcfc8ea99e57db7e57a9c254399d1e", + "id" : "3404001", + "profile" : { + "bust" : "84", + "height" : "161", + "hip" : "87", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "ニュージェネレーション", + "alias_name_display" : "ニュージェネレーション", + "hash" : "ac84c61ce8af6cbd8ecdb3099e87b29f", + "id" : "3504002", + "profile" : { + "bust" : "84", + "height" : "161", + "hip" : "87", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "b9e3d2ab769bbd4f02d9a86aa4963480", + "id" : "3404901", + "profile" : { + "bust" : "84", + "height" : "161", + "hip" : "87", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "36c8ad2730641ca613e6bce46f958c86", + "id" : "3504902", + "profile" : { + "bust" : "84", + "height" : "161", + "hip" : "87", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "パーフェクトスター", + "alias_name_display" : "パーフェクトスター", + "hash" : "3f0e274eb39fa06ec90066815ebcce3f", + "id" : "3408201", + "profile" : { + "bust" : "84", + "height" : "161", + "hip" : "87", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "パーフェクトスター", + "alias_name_display" : "パーフェクトスター", + "hash" : "d70342d50a456e6ea28c793fd32fded8", + "id" : "3508202", + "profile" : { + "bust" : "84", + "height" : "161", + "hip" : "87", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "ワンダフルマジック", + "alias_name_display" : "ワンダフルマジック", + "hash" : "b10e7156c968f1c10e931fb39437b555", + "id" : "3413001", + "profile" : { + "bust" : "84", + "height" : "161", + "hip" : "87", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "ワンダフルマジック", + "alias_name_display" : "ワンダフルマジック", + "hash" : "728ea914619eaaaf809574f0134816ee", + "id" : "3513002", + "profile" : { + "bust" : "84", + "height" : "161", + "hip" : "87", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "放課後パーティー", + "alias_name_display" : "放課後パーティー", + "hash" : "837e90baff2cb4e1b8d83b52bd204974", + "id" : "3417901", + "profile" : { + "bust" : "84", + "height" : "161", + "hip" : "87", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "放課後パーティー", + "alias_name_display" : "放課後パーティー", + "hash" : "ef8c42dd6a0e040d19677ae449f1c61e", + "id" : "3517902", + "profile" : { + "bust" : "84", + "height" : "161", + "hip" : "87", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "ドリームストーリー", + "alias_name_display" : "ドリームストーリー", + "hash" : "20d57207fb5680675a1ee2c01974781a", + "id" : "3520702", + "profile" : { + "bust" : "84", + "height" : "161", + "hip" : "87", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "G4U!", + "alias_name_display" : "G4U!", + "hash" : "7686210ae4c41b15170fb51774c0a19b", + "id" : "3526502", + "profile" : { + "bust" : "84", + "height" : "161", + "hip" : "87", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "秋夜の乙女", + "alias_name_display" : "秋夜の乙女", + "hash" : "6ff727545e998f9425485bf823dc8225", + "id" : "3427501", + "profile" : { + "bust" : "84", + "height" : "161", + "hip" : "87", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "秋夜の乙女", + "alias_name_display" : "秋夜の乙女", + "hash" : "b1a3cc28c90185948cc52fd0031c95dc", + "id" : "3527502", + "profile" : { + "bust" : "84", + "height" : "161", + "hip" : "87", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "アニバーサリースター", + "alias_name_display" : "アニバーサリースター", + "hash" : "87958f4f873116edfb0a6ea544368e75", + "id" : "3428201", + "profile" : { + "bust" : "84", + "height" : "161", + "hip" : "87", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "アニバーサリースター", + "alias_name_display" : "アニバーサリースター", + "hash" : "e8e30ac23663842999f4057639a470fb", + "id" : "3528202", + "profile" : { + "bust" : "84", + "height" : "161", + "hip" : "87", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "オンリーマイスター", + "alias_name_display" : "オンリーマイスター", + "hash" : "753de37bd2cf3a4f2c089eeaa9d1bd78", + "id" : "3431801", + "profile" : { + "bust" : "84", + "height" : "161", + "hip" : "87", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "オンリーマイスター", + "alias_name_display" : "オンリーマイスター", + "hash" : "873323df410644a760d965d7ece54bd7", + "id" : "3531802", + "profile" : { + "bust" : "84", + "height" : "161", + "hip" : "87", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "チャームフォーハピネス", + "alias_name_display" : "チャームフォーハピネス", + "hash" : "3ac0d8a5dbef390ae80d5055585ff040", + "id" : "3437301", + "profile" : { + "bust" : "84", + "height" : "161", + "hip" : "87", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "チャームフォーハピネス", + "alias_name_display" : "チャームフォーハピネス", + "hash" : "fdda617ed4a59a8d1127c50336535a52", + "id" : "3537302", + "profile" : { + "bust" : "84", + "height" : "161", + "hip" : "87", + "waist" : "58", + "weight" : "46" + } + } ], + "idol_id" : 134, + "idol_name" : "本田未央", + "idol_name_display" : "本田未央", + "units" : [ { + "id" : "21", + "name" : "ジェネレーションオブサマー" + }, { + "id" : "109", + "name" : "new generations" + }, { + "id" : "146", + "name" : "サンセットノスタルジー" + }, { + "id" : "153", + "name" : "Positive Passion" + }, { + "id" : "204", + "name" : "トロピカル☆スターズ" + }, { + "id" : "213", + "name" : "CINDERELLA PROJECT" + } ] +}, { + "aliases" : [ { + "hash" : "25ea7fdd66fc6bd8e7209a4c0d2ba00c", + "id" : "3000201", + "profile" : { + "bust" : "74", + "height" : "155", + "hip" : "79", + "waist" : "60", + "weight" : "42" + } + }, { + "hash" : "57bfd18f73cf672d05643716f74bbc48", + "id" : "3100202", + "profile" : { + "bust" : "74", + "height" : "155", + "hip" : "79", + "waist" : "60", + "weight" : "42" + } + }, { + "alias_name" : "バレンタイン", + "alias_name_display" : "バレンタイン", + "event" : [ { + "event_id" : 103, + "event_name" : "バレンタインパーティー" + } ], + "hash" : "8406433757bac86ef8134cd59ed4cd3b", + "id" : "3002101", + "profile" : { + "bust" : "74", + "height" : "155", + "hip" : "79", + "waist" : "60", + "weight" : "42" + } + }, { + "alias_name" : "バレンタイン", + "alias_name_display" : "バレンタイン", + "event" : [ { + "event_id" : 103, + "event_name" : "バレンタインパーティー" + } ], + "hash" : "55f34023e9d773f97afde9bb99574843", + "id" : "3102102", + "profile" : { + "bust" : "74", + "height" : "155", + "hip" : "79", + "waist" : "60", + "weight" : "42" + } + }, { + "alias_name" : "ふんわりガール", + "alias_name_display" : "ふんわりガール", + "event" : [ { + "event_id" : "002", + "event_name" : "第2回プロダクションマッチフェスティバル" + } ], + "hash" : "f70f143d7bb856a67cb7bbd175dc7829", + "id" : "3204601", + "profile" : { + "bust" : "74", + "height" : "155", + "hip" : "79", + "waist" : "60", + "weight" : "42" + } + }, { + "alias_name" : "ふんわりガール", + "alias_name_display" : "ふんわりガール", + "event" : [ { + "event_id" : "002", + "event_name" : "第2回プロダクションマッチフェスティバル" + } ], + "hash" : "d6dbb1e8e2c5e452026e993c5a8fde56", + "id" : "3304602", + "profile" : { + "bust" : "74", + "height" : "155", + "hip" : "79", + "waist" : "60", + "weight" : "42" + } + }, { + "alias_name" : "アニバーサリーイエロー", + "alias_name_display" : "アニバーサリーイエロー", + "event" : [ { + "event_id" : 403, + "event_name" : "アイドルプロデュース the 1st Anniversary" + } ], + "hash" : "a14b13704b20edf9834c27832fd1670f", + "id" : "3207601", + "profile" : { + "bust" : "74", + "height" : "155", + "hip" : "79", + "waist" : "60", + "weight" : "42" + } + }, { + "alias_name" : "アニバーサリーイエロー", + "alias_name_display" : "アニバーサリーイエロー", + "event" : [ { + "event_id" : 403, + "event_name" : "アイドルプロデュース the 1st Anniversary" + } ], + "hash" : "d0289c681ff7668957a4d7a4198b61aa", + "id" : "3307602", + "profile" : { + "bust" : "74", + "height" : "155", + "hip" : "79", + "waist" : "60", + "weight" : "42" + } + }, { + "alias_name" : "新春ガール", + "alias_name_display" : "新春ガール", + "hash" : "ca354dc7b9ffa3261b69dfbcb633c162", + "id" : "3227201", + "profile" : { + "bust" : "74", + "height" : "155", + "hip" : "79", + "waist" : "60", + "weight" : "42" + } + }, { + "alias_name" : "新春ガール", + "alias_name_display" : "新春ガール", + "hash" : "d3fa350883bd59a8245cef6a04319057", + "id" : "3327202", + "profile" : { + "bust" : "74", + "height" : "155", + "hip" : "79", + "waist" : "60", + "weight" : "42" + } + }, { + "alias_name" : "ゆるふわ乙女", + "alias_name_display" : "ゆるふわ乙女", + "hash" : "6efffe43696b87d64380769c40a3f12d", + "id" : "3405201", + "profile" : { + "bust" : "74", + "height" : "155", + "hip" : "79", + "waist" : "60", + "weight" : "42" + } + }, { + "alias_name" : "ゆるふわ乙女", + "alias_name_display" : "ゆるふわ乙女", + "hash" : "0321c8e5bf54a3c4602ee87bac727750", + "id" : "3505202", + "profile" : { + "bust" : "74", + "height" : "155", + "hip" : "79", + "waist" : "60", + "weight" : "42" + } + }, { + "alias_name" : "深緑の魔女", + "alias_name_display" : "深緑の魔女", + "hash" : "b9c843a22dc3445a53c384de9948be97", + "id" : "3409001", + "profile" : { + "bust" : "74", + "height" : "155", + "hip" : "79", + "waist" : "60", + "weight" : "42" + } + }, { + "alias_name" : "深緑の魔女", + "alias_name_display" : "深緑の魔女", + "hash" : "dab9960d2db1424d77af7ba448c77039", + "id" : "3509002", + "profile" : { + "bust" : "74", + "height" : "155", + "hip" : "79", + "waist" : "60", + "weight" : "42" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "696e63ecba110164d3740efd5dab872a", + "id" : "3409701", + "profile" : { + "bust" : "74", + "height" : "155", + "hip" : "79", + "waist" : "60", + "weight" : "42" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "e3d9a2ea1b5c8caec4250f08f4f5cc95", + "id" : "3509702", + "profile" : { + "bust" : "74", + "height" : "155", + "hip" : "79", + "waist" : "60", + "weight" : "42" + } + }, { + "alias_name" : "シンデレラドリーム", + "alias_name_display" : "シンデレラドリーム", + "hash" : "a6a1581237e6048bae08c63a85e50e87", + "id" : "3411301", + "profile" : { + "bust" : "74", + "height" : "155", + "hip" : "79", + "waist" : "60", + "weight" : "42" + } + }, { + "alias_name" : "シンデレラドリーム", + "alias_name_display" : "シンデレラドリーム", + "hash" : "77828bac52f87e72db028e70a0338c11", + "id" : "3511302", + "profile" : { + "bust" : "74", + "height" : "155", + "hip" : "79", + "waist" : "60", + "weight" : "42" + } + }, { + "alias_name" : "おさんぽ日和", + "alias_name_display" : "おさんぽ日和", + "hash" : "e82199f18a2886519aa98a1a5ef46043", + "id" : "3413101", + "profile" : { + "bust" : "74", + "height" : "155", + "hip" : "79", + "waist" : "60", + "weight" : "42" + } + }, { + "alias_name" : "おさんぽ日和", + "alias_name_display" : "おさんぽ日和", + "hash" : "1a30af5fa8c952b1424a1dbb60269ff0", + "id" : "3513102", + "profile" : { + "bust" : "74", + "height" : "155", + "hip" : "79", + "waist" : "60", + "weight" : "42" + } + }, { + "alias_name" : "まごころプレゼント", + "alias_name_display" : "まごころプレゼント", + "hash" : "39c5e502a5ec2c962e1610098b6317cc", + "id" : "3419801", + "profile" : { + "bust" : "74", + "height" : "155", + "hip" : "79", + "waist" : "60", + "weight" : "42" + } + }, { + "alias_name" : "まごころプレゼント", + "alias_name_display" : "まごころプレゼント", + "hash" : "0e80e42aa03acf28172a86a6113212e5", + "id" : "3519802", + "profile" : { + "bust" : "74", + "height" : "155", + "hip" : "79", + "waist" : "60", + "weight" : "42" + } + }, { + "alias_name" : "放課後サマー", + "alias_name_display" : "放課後サマー", + "hash" : "775f8939d540b7b1c169ba72be9ca25e", + "id" : "3425901", + "profile" : { + "bust" : "74", + "height" : "155", + "hip" : "79", + "waist" : "60", + "weight" : "42" + } + }, { + "alias_name" : "放課後サマー", + "alias_name_display" : "放課後サマー", + "hash" : "c2f3cd2bd710cebb14c84f6a64d9949a", + "id" : "3525902", + "profile" : { + "bust" : "74", + "height" : "155", + "hip" : "79", + "waist" : "60", + "weight" : "42" + } + }, { + "alias_name" : "駿風のバンデット", + "alias_name_display" : "駿風のバンデット", + "hash" : "96372916d89edc657240f71836f7dbb9", + "id" : "3434701", + "profile" : { + "bust" : "74", + "height" : "155", + "hip" : "79", + "waist" : "60", + "weight" : "42" + } + }, { + "alias_name" : "駿風のバンデット", + "alias_name_display" : "駿風のバンデット", + "hash" : "cd741e8ee6028bb578bcbc5d55475390", + "id" : "3534702", + "profile" : { + "bust" : "74", + "height" : "155", + "hip" : "79", + "waist" : "60", + "weight" : "42" + } + }, { + "alias_name" : "ちいさなともだち", + "alias_name_display" : "ちいさなともだち", + "hash" : "55ef16cfd44a6fdfb3709337f27e595f", + "id" : "3439301", + "profile" : { + "bust" : "74", + "height" : "155", + "hip" : "79", + "waist" : "60", + "weight" : "42" + } + }, { + "alias_name" : "ちいさなともだち", + "alias_name_display" : "ちいさなともだち", + "hash" : "4d91dd57c123958c50421bb04076c240", + "id" : "3539302", + "profile" : { + "bust" : "74", + "height" : "155", + "hip" : "79", + "waist" : "60", + "weight" : "42" + } + } ], + "idol_id" : 135, + "idol_name" : "高森藍子", + "idol_name_display" : "高森藍子", + "units" : [ { + "id" : "5", + "name" : "インディゴ・ベル" + }, { + "id" : "69", + "name" : "Ai's" + }, { + "id" : "75", + "name" : "Flowery" + }, { + "id" : "103", + "name" : "ビビッドカラーエイジ" + }, { + "id" : "153", + "name" : "Positive Passion" + }, { + "id" : "189", + "name" : "アインフェリア" + }, { + "id" : "203", + "name" : "ゼッケンズ" + } ] +}, { + "aliases" : [ { + "hash" : "dd7b4d4e1769b447ee6fc98e317fb666", + "id" : "3000301", + "profile" : { + "bust" : "80", + "height" : "160", + "hip" : "82", + "waist" : "57", + "weight" : "44" + } + }, { + "hash" : "d88a41865dc231e4770c0d915f2cd17a", + "id" : "3100302", + "profile" : { + "bust" : "80", + "height" : "160", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "メイドコレクション", + "alias_name_display" : "メイドコレクション", + "hash" : "2be497b9005c4c64d25ff518339cc6a6", + "id" : "3206001", + "profile" : { + "bust" : "80", + "height" : "160", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "メイドコレクション", + "alias_name_display" : "メイドコレクション", + "hash" : "847a362d9e6e286f93132c02c8f44c64", + "id" : "3306002", + "profile" : { + "bust" : "80", + "height" : "160", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "トラベル☆ガール", + "alias_name_display" : "トラベル☆ガール", + "event" : [ { + "event_id" : "009", + "event_name" : "第9回プロダクションマッチフェスティバル" + } ], + "hash" : "b84dce89a3a135fcb166cb2639ff184e", + "id" : "3209801", + "profile" : { + "bust" : "80", + "height" : "160", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "トラベル☆ガール", + "alias_name_display" : "トラベル☆ガール", + "event" : [ { + "event_id" : "009", + "event_name" : "第9回プロダクションマッチフェスティバル" + } ], + "hash" : "db0cdefb3e1d797d392546c121df8aa3", + "id" : "3309802", + "profile" : { + "bust" : "80", + "height" : "160", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "ワンダーバニー", + "alias_name_display" : "ワンダーバニー", + "hash" : "4e273575f8490fbb863c2dbe132ab673", + "id" : "3215501", + "profile" : { + "bust" : "80", + "height" : "160", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "ワンダーバニー", + "alias_name_display" : "ワンダーバニー", + "hash" : "b40d53ca759a5c49e316149907b16324", + "id" : "3315502", + "profile" : { + "bust" : "80", + "height" : "160", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "めろめろココメロン", + "alias_name_display" : "めろめろココメロン", + "hash" : "6aa24dae832c588c383c1699d97f19b6", + "id" : "3219501", + "profile" : { + "bust" : "80", + "height" : "160", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "めろめろココメロン", + "alias_name_display" : "めろめろココメロン", + "hash" : "0398b0c40f4c26e445c17dad6f18d6e2", + "id" : "3319502", + "profile" : { + "bust" : "80", + "height" : "160", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "さわやかスポーツ", + "alias_name_display" : "さわやかスポーツ", + "hash" : "fe782525f82eec7f9c6c2f39ad51207c", + "id" : "3222801", + "profile" : { + "bust" : "80", + "height" : "160", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "さわやかスポーツ", + "alias_name_display" : "さわやかスポーツ", + "hash" : "18478a5af695d30770b15fe0d47c6643", + "id" : "3322802", + "profile" : { + "bust" : "80", + "height" : "160", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "フレッシュガール", + "alias_name_display" : "フレッシュガール", + "event" : [ { + "event_id" : "023", + "event_name" : "第23回プロダクションマッチフェスティバル" + } ], + "hash" : "ef03539e18ee2eaa6cf1fd87bf04a0f6", + "id" : "3325102", + "profile" : { + "bust" : "80", + "height" : "160", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "トラベルレター", + "alias_name_display" : "トラベルレター", + "hash" : "798448d3e64f5cc1fff7179d377471fd", + "id" : "3227001", + "profile" : { + "bust" : "80", + "height" : "160", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "トラベルレター", + "alias_name_display" : "トラベルレター", + "hash" : "e3926356fb48d480b2f2f25b4c74ce70", + "id" : "3327002", + "profile" : { + "bust" : "80", + "height" : "160", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "ハロウィンI.C", + "alias_name_display" : "ハロウィンI.C", + "event" : [ { + "event_id" : 1213, + "event_name" : "目指せお菓子なハロウィン アイドルチャレンジ" + } ], + "hash" : "463d606a3dc453aa44e9db6bb70852a9", + "id" : "3331202", + "profile" : { + "bust" : "80", + "height" : "160", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "トラベルダンサー", + "alias_name_display" : "トラベルダンサー", + "event" : [ { + "event_id" : 507, + "event_name" : "LIVEツアーカーニバルinドイツ" + } ], + "hash" : "7695d88a4ae65b8c0ed64f30f3601790", + "id" : "3408601", + "profile" : { + "bust" : "80", + "height" : "160", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "トラベルダンサー", + "alias_name_display" : "トラベルダンサー", + "event" : [ { + "event_id" : 507, + "event_name" : "LIVEツアーカーニバルinドイツ" + } ], + "hash" : "99bb88ff7b093701659eabbb897808e4", + "id" : "3508602", + "profile" : { + "bust" : "80", + "height" : "160", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "秋色のお出かけ", + "alias_name_display" : "秋色のお出かけ", + "event" : [ { + "event_id" : 808, + "event_name" : "第8回アイドルLIVEロワイヤル" + } ], + "hash" : "738ddb49940e93f41f7c650b90dcee4a", + "id" : "3419101", + "profile" : { + "bust" : "80", + "height" : "160", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "秋色のお出かけ", + "alias_name_display" : "秋色のお出かけ", + "event" : [ { + "event_id" : 808, + "event_name" : "第8回アイドルLIVEロワイヤル" + } ], + "hash" : "81730ca2c7a398b66e1ff4693de7f751", + "id" : "3519102", + "profile" : { + "bust" : "80", + "height" : "160", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "カントリーロード", + "alias_name_display" : "カントリーロード", + "hash" : "c51198aab9b189eb750ee55fb5902d3b", + "id" : "3432201", + "profile" : { + "bust" : "80", + "height" : "160", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "カントリーロード", + "alias_name_display" : "カントリーロード", + "hash" : "42484da391a105442dc3523e303fff9d", + "id" : "3532202", + "profile" : { + "bust" : "80", + "height" : "160", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "おめかしウィッチ", + "alias_name_display" : "おめかしウィッチ", + "event" : [ { + "event_id" : 1213, + "event_name" : "目指せお菓子なハロウィン アイドルチャレンジ" + } ], + "hash" : "c2f06ed8aee7c5930381f61ed9988a6b", + "id" : "3435401", + "profile" : { + "bust" : "80", + "height" : "160", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "おめかしウィッチ", + "alias_name_display" : "おめかしウィッチ", + "event" : [ { + "event_id" : 1213, + "event_name" : "目指せお菓子なハロウィン アイドルチャレンジ" + } ], + "hash" : "bce23786ce8903092e17371ca5003061", + "id" : "3535402", + "profile" : { + "bust" : "80", + "height" : "160", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "にっこりウィッチ", + "alias_name_display" : "にっこりウィッチ", + "event" : [ { + "event_id" : 1213, + "event_name" : "目指せお菓子なハロウィン アイドルチャレンジ" + } ], + "hash" : "b94786b47c7d37e1c02f31aa0cadbd4b", + "id" : "3435501", + "profile" : { + "bust" : "80", + "height" : "160", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "にっこりウィッチ", + "alias_name_display" : "にっこりウィッチ", + "event" : [ { + "event_id" : 1213, + "event_name" : "目指せお菓子なハロウィン アイドルチャレンジ" + } ], + "hash" : "0184568340dc8bef2245fde0b9423019", + "id" : "3535502", + "profile" : { + "bust" : "80", + "height" : "160", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "トラベルチアー", + "alias_name_display" : "トラベルチアー", + "event" : [ { + "event_id" : 1512, + "event_name" : "第12回チーム対抗トークバトルショー" + } ], + "hash" : "01169e17d4d7c870bd60b0454d091706", + "id" : "3439601", + "profile" : { + "bust" : "80", + "height" : "160", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "トラベルチアー", + "alias_name_display" : "トラベルチアー", + "event" : [ { + "event_id" : 1512, + "event_name" : "第12回チーム対抗トークバトルショー" + } ], + "hash" : "9a07422c4498c97ae7b7a9d9117fe9fd", + "id" : "3539602", + "profile" : { + "bust" : "80", + "height" : "160", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + } ], + "idol_id" : 136, + "idol_name" : "並木芽衣子", + "idol_name_display" : "並木芽衣子", + "units" : [ { + "id" : "63", + "name" : "ラブリーダイナーズ" + }, { + "id" : "167", + "name" : "ロマンティックツアーズ" + }, { + "id" : "183", + "name" : "メイドコレクション" + } ] +}, { + "aliases" : [ { + "hash" : "6bd01496d9b00da9563c7e92b6a40257", + "id" : "3000401", + "profile" : { + "bust" : "65", + "height" : "132", + "hip" : "70", + "waist" : "51", + "weight" : "32" + } + }, { + "hash" : "ce9be94eb3291a7f91c73a7824eb388c", + "id" : "3100402", + "profile" : { + "bust" : "67", + "height" : "133", + "hip" : "72", + "waist" : "52", + "weight" : "33" + } + }, { + "alias_name" : "新春", + "alias_name_display" : "新春", + "event" : [ { + "event_id" : 102, + "event_name" : "アイドルおもちつき大会" + } ], + "hash" : "5be9bf88188f36e181fbe96ea1341c41", + "id" : "3202301", + "profile" : { + "bust" : "65", + "height" : "132", + "hip" : "70", + "waist" : "51", + "weight" : "32" + } + }, { + "alias_name" : "新春", + "alias_name_display" : "新春", + "event" : [ { + "event_id" : 102, + "event_name" : "アイドルおもちつき大会" + } ], + "hash" : "446514874e3c985fa57d6447cdd803d1", + "id" : "3302302", + "profile" : { + "bust" : "67", + "height" : "133", + "hip" : "69", + "waist" : "52", + "weight" : "33" + } + }, { + "alias_name" : "ゴスペルドレス", + "alias_name_display" : "ゴスペルドレス", + "event" : [ { + "event_id" : 208, + "event_name" : "アイドルサバイバル聖歌響くクリスマス" + } ], + "hash" : "c5cfd776209d261d147d40a122fbce6d", + "id" : "3207801", + "profile" : { + "bust" : "68", + "height" : "135", + "hip" : "70", + "waist" : "53", + "weight" : "34" + } + }, { + "alias_name" : "ゴスペルドレス", + "alias_name_display" : "ゴスペルドレス", + "event" : [ { + "event_id" : 208, + "event_name" : "アイドルサバイバル聖歌響くクリスマス" + } ], + "hash" : "386eb2f9064e3658c5de712c36f4b685", + "id" : "3307802", + "profile" : { + "bust" : "68", + "height" : "135", + "hip" : "70", + "waist" : "53", + "weight" : "34" + } + }, { + "alias_name" : "マーチングバンド", + "alias_name_display" : "マーチングバンド", + "hash" : "39647db5da91cae2322aafcfb93b2832", + "id" : "3216601", + "profile" : { + "bust" : "68", + "height" : "135", + "hip" : "70", + "waist" : "53", + "weight" : "34" + } + }, { + "alias_name" : "マーチングバンド", + "alias_name_display" : "マーチングバンド", + "hash" : "c468fb201eda84cf94cd2ddca45ea09f", + "id" : "3316602", + "profile" : { + "bust" : "68", + "height" : "135", + "hip" : "70", + "waist" : "53", + "weight" : "34" + } + }, { + "alias_name" : "エレガントI.C", + "alias_name_display" : "エレガントI.C", + "event" : [ { + "event_id" : 1205, + "event_name" : "目指せ優雅なお嬢様 アイドルチャレンジ" + } ], + "hash" : "eb7c81a65fd7e6298c860ee07e8d3d97", + "id" : "3321802", + "profile" : { + "bust" : "68", + "height" : "135", + "hip" : "70", + "waist" : "53", + "weight" : "34" + } + }, { + "alias_name" : "ウィンターバカンス", + "alias_name_display" : "ウィンターバカンス", + "hash" : "3c64d5dad75b33a0fb0cc5d12e4d8505", + "id" : "3226801", + "profile" : { + "bust" : "68", + "height" : "135", + "hip" : "70", + "waist" : "53", + "weight" : "34" + } + }, { + "alias_name" : "ウィンターバカンス", + "alias_name_display" : "ウィンターバカンス", + "hash" : "0bf03f5221911fc5b1abf9eb9f296865", + "id" : "3326802", + "profile" : { + "bust" : "68", + "height" : "135", + "hip" : "70", + "waist" : "53", + "weight" : "34" + } + }, { + "alias_name" : "フェリーチェ・チョコラータ", + "alias_name_display" : "フェリーチェ・チョコラータ", + "hash" : "68fa645bdf7cb21a74bcacc5987d31c7", + "id" : "3232501", + "profile" : { + "bust" : "68", + "height" : "135", + "hip" : "70", + "waist" : "53", + "weight" : "34" + } + }, { + "alias_name" : "フェリーチェ・チョコラータ", + "alias_name_display" : "フェリーチェ・チョコラータ", + "hash" : "4260fa0cfa9d7f4580c26b03aeeba068", + "id" : "3332502", + "profile" : { + "bust" : "68", + "height" : "135", + "hip" : "70", + "waist" : "53", + "weight" : "34" + } + }, { + "alias_name" : "サンフラワーイエロー", + "alias_name_display" : "サンフラワーイエロー", + "event" : [ { + "event_id" : "004", + "event_name" : "第4回プロダクションマッチフェスティバル" + } ], + "hash" : "ae3ba85f888597f52c2744eeac3d9ace", + "id" : "3402901", + "profile" : { + "bust" : "67", + "height" : "134", + "hip" : "69", + "waist" : "52", + "weight" : "33" + } + }, { + "alias_name" : "サンフラワーイエロー", + "alias_name_display" : "サンフラワーイエロー", + "event" : [ { + "event_id" : "004", + "event_name" : "第4回プロダクションマッチフェスティバル" + } ], + "hash" : "2175109269fe3e11706218748d8a2d9a", + "id" : "3502902", + "profile" : { + "bust" : "68", + "height" : "135", + "hip" : "70", + "waist" : "53", + "weight" : "34" + } + }, { + "alias_name" : "桜色少女", + "alias_name_display" : "桜色少女", + "event" : [ { + "event_id" : 406, + "event_name" : "アイドルプロデュース 春の桜祭り編" + } ], + "hash" : "8c37d3680b260969d28f66934d928c0a", + "id" : "3405701", + "profile" : { + "bust" : "68", + "height" : "135", + "hip" : "70", + "waist" : "53", + "weight" : "34" + } + }, { + "alias_name" : "桜色少女", + "alias_name_display" : "桜色少女", + "event" : [ { + "event_id" : 406, + "event_name" : "アイドルプロデュース 春の桜祭り編" + } ], + "hash" : "51a61c8fc7c098dd3f0c4c9ed938e1a8", + "id" : "3505702", + "profile" : { + "bust" : "68", + "height" : "135", + "hip" : "70", + "waist" : "53", + "weight" : "34" + } + }, { + "alias_name" : "桜色スマイル", + "alias_name_display" : "桜色スマイル", + "event" : [ { + "event_id" : 406, + "event_name" : "アイドルプロデュース 春の桜祭り編" + } ], + "hash" : "e15258ec31bbcad88a7ea2a78b25be11", + "id" : "3405801", + "profile" : { + "bust" : "68", + "height" : "135", + "hip" : "70", + "waist" : "53", + "weight" : "34" + } + }, { + "alias_name" : "桜色スマイル", + "alias_name_display" : "桜色スマイル", + "event" : [ { + "event_id" : 406, + "event_name" : "アイドルプロデュース 春の桜祭り編" + } ], + "hash" : "effb92325b6736f30e59c8ca440592d8", + "id" : "3505802", + "profile" : { + "bust" : "68", + "height" : "135", + "hip" : "70", + "waist" : "53", + "weight" : "34" + } + }, { + "alias_name" : "ちびっこポリス", + "alias_name_display" : "ちびっこポリス", + "hash" : "94f468204a314b13c221bc2ff351a15a", + "id" : "3410001", + "profile" : { + "bust" : "68", + "height" : "135", + "hip" : "70", + "waist" : "53", + "weight" : "34" + } + }, { + "alias_name" : "ちびっこポリス", + "alias_name_display" : "ちびっこポリス", + "hash" : "b7bb5571402b624ffde22149b35d812c", + "id" : "3510002", + "profile" : { + "bust" : "68", + "height" : "135", + "hip" : "70", + "waist" : "53", + "weight" : "34" + } + }, { + "alias_name" : "ハピネスチアー", + "alias_name_display" : "ハピネスチアー", + "event" : [ { + "event_id" : 1105, + "event_name" : "第5回プロダクション対抗トークバトルショー" + } ], + "hash" : "ca52997de1baa2ce1074885bf86e0124", + "id" : "3417301", + "profile" : { + "bust" : "68", + "height" : "135", + "hip" : "70", + "waist" : "53", + "weight" : "34" + } + }, { + "alias_name" : "ハピネスチアー", + "alias_name_display" : "ハピネスチアー", + "event" : [ { + "event_id" : 1105, + "event_name" : "第5回プロダクション対抗トークバトルショー" + } ], + "hash" : "e31308f0895ca49eed17a2418b4533b1", + "id" : "3517302", + "profile" : { + "bust" : "68", + "height" : "135", + "hip" : "70", + "waist" : "53", + "weight" : "34" + } + }, { + "alias_name" : "ハツラツお嬢様", + "alias_name_display" : "ハツラツお嬢様", + "event" : [ { + "event_id" : 1205, + "event_name" : "目指せ優雅なお嬢様 アイドルチャレンジ" + } ], + "hash" : "7ac839de7d770abf38f7c1980d26faaa", + "id" : "3421801", + "profile" : { + "bust" : "68", + "height" : "135", + "hip" : "70", + "waist" : "53", + "weight" : "34" + } + }, { + "alias_name" : "ハツラツお嬢様", + "alias_name_display" : "ハツラツお嬢様", + "event" : [ { + "event_id" : 1205, + "event_name" : "目指せ優雅なお嬢様 アイドルチャレンジ" + } ], + "hash" : "344f0b05bd380ef7190f06c0bc636968", + "id" : "3521802", + "profile" : { + "bust" : "68", + "height" : "135", + "hip" : "70", + "waist" : "53", + "weight" : "34" + } + }, { + "alias_name" : "ハツラツお嬢様・S", + "alias_name_display" : "ハツラツお嬢様・S", + "event" : [ { + "event_id" : 1205, + "event_name" : "目指せ優雅なお嬢様 アイドルチャレンジ" + } ], + "hash" : "16879ab349989f30795c5a4aaf1f5b24", + "id" : "3421901", + "profile" : { + "bust" : "68", + "height" : "135", + "hip" : "70", + "waist" : "53", + "weight" : "34" + } + }, { + "alias_name" : "ハツラツお嬢様・S", + "alias_name_display" : "ハツラツお嬢様・S", + "event" : [ { + "event_id" : 1205, + "event_name" : "目指せ優雅なお嬢様 アイドルチャレンジ" + } ], + "hash" : "8eff69e4d99a16ba0ab8d8808b1dcfce", + "id" : "3521902", + "profile" : { + "bust" : "68", + "height" : "135", + "hip" : "70", + "waist" : "53", + "weight" : "34" + } + }, { + "alias_name" : "元気のみなもと", + "alias_name_display" : "元気のみなもと", + "event" : [ { + "event_id" : 715, + "event_name" : "第15回ドリームLIVEフェスティバル" + } ], + "hash" : "d98c949abd856585767f36e80ae36d61", + "id" : "3426101", + "profile" : { + "bust" : "68", + "height" : "135", + "hip" : "70", + "waist" : "53", + "weight" : "34" + } + }, { + "alias_name" : "元気のみなもと", + "alias_name_display" : "元気のみなもと", + "event" : [ { + "event_id" : 715, + "event_name" : "第15回ドリームLIVEフェスティバル" + } ], + "hash" : "db033d61f283a9b24cd8fb229961d6e4", + "id" : "3526102", + "profile" : { + "bust" : "68", + "height" : "135", + "hip" : "70", + "waist" : "53", + "weight" : "34" + } + }, { + "alias_name" : "じょいふるステップ", + "alias_name_display" : "じょいふるステップ", + "hash" : "b30dceee4b25e7fac98eb13236b79333", + "id" : "3433201", + "profile" : { + "bust" : "68", + "height" : "135", + "hip" : "70", + "waist" : "53", + "weight" : "34" + } + }, { + "alias_name" : "じょいふるステップ", + "alias_name_display" : "じょいふるステップ", + "hash" : "3d60bd5856309ade51e8d694c9ce0f57", + "id" : "3533202", + "profile" : { + "bust" : "68", + "height" : "135", + "hip" : "70", + "waist" : "53", + "weight" : "34" + } + } ], + "idol_id" : 137, + "idol_name" : "龍崎薫", + "idol_name_display" : "龍崎薫", + "units" : [ { + "id" : "92", + "name" : "ゴスペルシスターズ" + }, { + "id" : "105", + "name" : "リトルチェリーブロッサム" + }, { + "id" : "174", + "name" : "カナリアサマー" + }, { + "id" : "214", + "name" : "L.M.B.G" + } ] +}, { + "aliases" : [ { + "hash" : "0534bded8c74fa792bde6f3c5692c187", + "id" : "3000501", + "profile" : { + "bust" : "82", + "height" : "159", + "hip" : "83", + "waist" : "57", + "weight" : "41" + } + }, { + "hash" : "66db6412d0f716cebdb923136609e6ff", + "id" : "3100502", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "85", + "waist" : "57", + "weight" : "41" + } + }, { + "alias_name" : "制服コレクション", + "alias_name_display" : "制服コレクション", + "hash" : "d1ed6ed8f4ef807bff62625a579c2d27", + "id" : "3204001", + "profile" : { + "bust" : "82", + "height" : "159", + "hip" : "83", + "waist" : "57", + "weight" : "41" + } + }, { + "alias_name" : "制服コレクション", + "alias_name_display" : "制服コレクション", + "hash" : "770f6f299f10bbe5d17ef25bd8db5ee9", + "id" : "3304002", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "85", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ロッキングスタイル", + "alias_name_display" : "ロッキングスタイル", + "hash" : "49f37294a7107e3ed3ff3ad620ab8f9e", + "id" : "3205601", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "85", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ロッキングスタイル", + "alias_name_display" : "ロッキングスタイル", + "hash" : "fd6f806676ee2bd496b0be0c5e660e28", + "id" : "3305602", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "85", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "新春コレクション", + "alias_name_display" : "新春コレクション", + "hash" : "9bdac3127034352eeb54915995ed2be4", + "id" : "3208201", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "85", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "新春コレクション", + "alias_name_display" : "新春コレクション", + "hash" : "2b66d0a66eaefce284d6ff1724116cda", + "id" : "3308202", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "85", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ロッキングセッション", + "alias_name_display" : "ロッキングセッション", + "event" : [ { + "event_id" : 601, + "event_name" : "アイドルセッション" + } ], + "hash" : "dfb6cfa4b823cae2b1e3347f16dcbafc", + "id" : "3209901", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "85", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ロッキングセッション", + "alias_name_display" : "ロッキングセッション", + "event" : [ { + "event_id" : 601, + "event_name" : "アイドルセッション" + } ], + "hash" : "b72b7f9db952c2c0581b218fa61a73bb", + "id" : "3309902", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "85", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ヴォヤージュ・シーフ", + "alias_name_display" : "ヴォヤージュ・シーフ", + "event" : [ { + "event_id" : 511, + "event_name" : "幻想公演 黒薔薇姫のヴォヤージュ" + } ], + "hash" : "33a9936da2d8a89bf45c8c247667da3b", + "id" : "3216501", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "85", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ヴォヤージュ・シーフ", + "alias_name_display" : "ヴォヤージュ・シーフ", + "event" : [ { + "event_id" : 511, + "event_name" : "幻想公演 黒薔薇姫のヴォヤージュ" + } ], + "hash" : "8c3374d0b42f60c4f071ebd612f6c93f", + "id" : "3316502", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "85", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ロックウィズユー", + "alias_name_display" : "ロックウィズユー", + "hash" : "90d71c799279b69652448cb13a8c46c4", + "id" : "3220501", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "85", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ロックウィズユー", + "alias_name_display" : "ロックウィズユー", + "hash" : "5036702242079676623aab404c834930", + "id" : "3320502", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "85", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "クリスマスナイト", + "alias_name_display" : "クリスマスナイト", + "hash" : "8a7f88c33ed6f745ff82a214a58fbf6c", + "id" : "3226601", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "85", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "クリスマスナイト", + "alias_name_display" : "クリスマスナイト", + "hash" : "eb50645fe29a490498a1cc937acd9bdf", + "id" : "3326602", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "85", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "夏風スポーツ", + "alias_name_display" : "夏風スポーツ", + "hash" : "c1f7f8f5ef1cba3392af0e747b26fc9d", + "id" : "3230301", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "85", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "夏風スポーツ", + "alias_name_display" : "夏風スポーツ", + "hash" : "299fef4852147871cdd00ca8c0124599", + "id" : "3330302", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "85", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "クリエイティブI.C", + "alias_name_display" : "クリエイティブI.C", + "event" : [ { + "event_id" : 1215, + "event_name" : "ふたりでアイドルチャレンジ 目指せクールなミュージックビデオ" + } ], + "hash" : "39ec2283379f1fd2d494ba14b6addbc6", + "id" : "3333402", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "85", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ハートビートロッカー", + "alias_name_display" : "ハートビートロッカー", + "event" : [ { + "event_id" : 601, + "event_name" : "アイドルセッション" + } ], + "hash" : "49bbaee0b5da4e747f6a30f047aa53a3", + "id" : "3406101", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "85", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ハートビートロッカー", + "alias_name_display" : "ハートビートロッカー", + "event" : [ { + "event_id" : 601, + "event_name" : "アイドルセッション" + } ], + "hash" : "a7a8fdea40caf917c330796c9d55da16", + "id" : "3506102", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "85", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ロッキングラヴァー", + "alias_name_display" : "ロッキングラヴァー", + "hash" : "b732fa6c81f1f4a53dd0f3eaf9573b0e", + "id" : "3408901", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "85", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ロッキングラヴァー", + "alias_name_display" : "ロッキングラヴァー", + "hash" : "fd399f8c029ebfb373556f8a66d4d0a6", + "id" : "3508902", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "85", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ラギッドチアー", + "alias_name_display" : "ラギッドチアー", + "event" : [ { + "event_id" : 1104, + "event_name" : "プロダクション対抗トークバトルショーinSUMMER" + } ], + "hash" : "f66b8072a4bde3415f62c74ec5991d05", + "id" : "3416501", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "85", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ラギッドチアー", + "alias_name_display" : "ラギッドチアー", + "event" : [ { + "event_id" : 1104, + "event_name" : "プロダクション対抗トークバトルショーinSUMMER" + } ], + "hash" : "d53f71d5d96617cb898d079671603d0c", + "id" : "3516502", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "85", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "華夜紅炎", + "alias_name_display" : "華夜紅炎", + "event" : [ { + "event_id" : 1702, + "event_name" : "アイドルプロデュース京町編(復刻)" + } ], + "hash" : "ad4aeac42d563895be2f638167d74b79", + "id" : "3424901", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "85", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "華夜紅炎", + "alias_name_display" : "華夜紅炎", + "event" : [ { + "event_id" : 1702, + "event_name" : "アイドルプロデュース京町編(復刻)" + } ], + "hash" : "03b304d0171758d025ed2dd02bd01c28", + "id" : "3524902", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "85", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ロッキングメイド", + "alias_name_display" : "ロッキングメイド", + "hash" : "27d5c3b652aa05efe6e8c3400a3294ea", + "id" : "3429201", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "85", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ロッキングメイド", + "alias_name_display" : "ロッキングメイド", + "hash" : "e6d82a7805702869c9beb24e37d66411", + "id" : "3529202", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "85", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ベニトアイトロンギング", + "alias_name_display" : "ベニトアイトロンギング", + "event" : [ { + "event_id" : 1215, + "event_name" : "ふたりでアイドルチャレンジ 目指せクールなミュージックビデオ" + } ], + "hash" : "cb5056ce89a2e9060f6d411eebdfbe30", + "id" : "3439001", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "85", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ベニトアイトロンギング", + "alias_name_display" : "ベニトアイトロンギング", + "event" : [ { + "event_id" : 1215, + "event_name" : "ふたりでアイドルチャレンジ 目指せクールなミュージックビデオ" + } ], + "hash" : "468cdc31777a7a884927fb3ca0db52f5", + "id" : "3539002", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "85", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ベニトアイトロンギング・S", + "alias_name_display" : "ベニトアイトロンギング・S", + "event" : [ { + "event_id" : 1215, + "event_name" : "ふたりでアイドルチャレンジ 目指せクールなミュージックビデオ" + } ], + "hash" : "59af084173d77dc7657f85e162dbc4b6", + "id" : "3439101", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "85", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ベニトアイトロンギング・S", + "alias_name_display" : "ベニトアイトロンギング・S", + "event" : [ { + "event_id" : 1215, + "event_name" : "ふたりでアイドルチャレンジ 目指せクールなミュージックビデオ" + } ], + "hash" : "f3a9f6ffd1b7e0ed7bad2d27cb3604af", + "id" : "3539102", + "profile" : { + "bust" : "83", + "height" : "159", + "hip" : "85", + "waist" : "57", + "weight" : "45" + } + } ], + "idol_id" : 138, + "idol_name" : "木村夏樹", + "idol_name_display" : "木村夏樹", + "units" : [ { + "id" : "81", + "name" : "Rock the Beat" + }, { + "id" : "117", + "name" : "ハードメテオライツ" + }, { + "id" : "123", + "name" : "マッシブライダース" + }, { + "id" : "168", + "name" : "*(Asterisk) with なつなな" + }, { + "id" : "175", + "name" : "ライトグリーンセーフ" + }, { + "id" : "176", + "name" : "炎陣" + } ] +}, { + "aliases" : [ { + "hash" : "7674301daa6c75a7321b726f9571ead2", + "id" : "3000601", + "profile" : { + "bust" : "81", + "height" : "161", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "hash" : "f69052165dc006c8bc15558a299ef1b7", + "id" : "3100602", + "profile" : { + "bust" : "81", + "height" : "161", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "ジューンブライド", + "alias_name_display" : "ジューンブライド", + "event" : [ { + "event_id" : 105, + "event_name" : "きらめくブライダルショー" + } ], + "hash" : "604b434174cd1f069de9b869d0448554", + "id" : "3002701", + "profile" : { + "bust" : "81", + "height" : "161", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "ジューンブライド", + "alias_name_display" : "ジューンブライド", + "event" : [ { + "event_id" : 105, + "event_name" : "きらめくブライダルショー" + } ], + "hash" : "8711647291f4ed0a44bea640aa273a4e", + "id" : "3102702", + "profile" : { + "bust" : "81", + "height" : "161", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "プリムラブルーム", + "alias_name_display" : "プリムラブルーム", + "event" : [ { + "event_id" : 703, + "event_name" : "第3回ドリームLIVEフェスティバル" + } ], + "hash" : "b5ec0f44a42c1c9f6ced51deeb325d43", + "id" : "3213201", + "profile" : { + "bust" : "81", + "height" : "161", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "プリムラブルーム", + "alias_name_display" : "プリムラブルーム", + "event" : [ { + "event_id" : 703, + "event_name" : "第3回ドリームLIVEフェスティバル" + } ], + "hash" : "e64ebec9e56c38e90e5d327430fbeced", + "id" : "3313202", + "profile" : { + "bust" : "81", + "height" : "161", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "フレッシュJKT", + "alias_name_display" : "フレッシュJKT", + "hash" : "1f906f0ee9f495fda81757e9ebabbc6b", + "id" : "3217001", + "profile" : { + "bust" : "81", + "height" : "161", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "フレッシュJKT", + "alias_name_display" : "フレッシュJKT", + "hash" : "dc863484f599dc76a895efecf840298f", + "id" : "3317002", + "profile" : { + "bust" : "81", + "height" : "161", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "バレンタインデビル", + "alias_name_display" : "バレンタインデビル", + "hash" : "dc08ed4d9a27c637264bf09fbafb4325", + "id" : "3221501", + "profile" : { + "bust" : "81", + "height" : "161", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "バレンタインデビル", + "alias_name_display" : "バレンタインデビル", + "hash" : "1cf3856ba48a3db590710a6fe6906ccb", + "id" : "3321502", + "profile" : { + "bust" : "81", + "height" : "161", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "やわらかな音", + "alias_name_display" : "やわらかな音", + "hash" : "b766fb82f395cb35df7d159a0888dc78", + "id" : "3226001", + "profile" : { + "bust" : "81", + "height" : "161", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "やわらかな音", + "alias_name_display" : "やわらかな音", + "hash" : "56359b75053466aeeeb9e8f91719ef5a", + "id" : "3326002", + "profile" : { + "bust" : "81", + "height" : "161", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "美しき挑戦", + "alias_name_display" : "美しき挑戦", + "event" : [ { + "event_id" : 1905, + "event_name" : "ディアリースターナイト ~聖夜のキセキ~" + } ], + "hash" : "c023aaab4cb1a06929ef073eef6321b9", + "id" : "3331802", + "profile" : { + "bust" : "81", + "height" : "161", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "南国の舞姫", + "alias_name_display" : "南国の舞姫", + "hash" : "fde6b9e07ded5dfe6b368d37d4e5df8b", + "id" : "3406201", + "profile" : { + "bust" : "81", + "height" : "161", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "南国の舞姫", + "alias_name_display" : "南国の舞姫", + "hash" : "61987ec6972c1ac539f65eb25e89e97a", + "id" : "3506202", + "profile" : { + "bust" : "81", + "height" : "161", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "アレグロ気分", + "alias_name_display" : "アレグロ気分", + "event" : [ { + "event_id" : 708, + "event_name" : "第8回ドリームLIVEフェスティバル" + } ], + "hash" : "565af6911e5cf6ba5de1e56023e00349", + "id" : "3416901", + "profile" : { + "bust" : "81", + "height" : "161", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "アレグロ気分", + "alias_name_display" : "アレグロ気分", + "event" : [ { + "event_id" : 708, + "event_name" : "第8回ドリームLIVEフェスティバル" + } ], + "hash" : "1a5d7692d328fa114b177ebe5c427d0b", + "id" : "3516902", + "profile" : { + "bust" : "81", + "height" : "161", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "フライハイ!", + "alias_name_display" : "フライハイ!", + "event" : [ { + "event_id" : 1803, + "event_name" : "アイドルバラエティ 大空への挑戦 ~Fly me to the Sky~" + } ], + "hash" : "624fd0a55c5e957c9634dd6e2188f7ce", + "id" : "3432501", + "profile" : { + "bust" : "81", + "height" : "161", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "フライハイ!", + "alias_name_display" : "フライハイ!", + "event" : [ { + "event_id" : 1803, + "event_name" : "アイドルバラエティ 大空への挑戦 ~Fly me to the Sky~" + } ], + "hash" : "3fc83fbe66b63aaff06e8c8d1bf27da5", + "id" : "3532502", + "profile" : { + "bust" : "81", + "height" : "161", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "心吹き抜ける風", + "alias_name_display" : "心吹き抜ける風", + "hash" : "478e26b19bf1a88474dc0ffb92717954", + "id" : "3440501", + "profile" : { + "bust" : "81", + "height" : "161", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "心吹き抜ける風", + "alias_name_display" : "心吹き抜ける風", + "hash" : "e23409154c61e745d3e92fe075d8d7e8", + "id" : "3540502", + "profile" : { + "bust" : "81", + "height" : "161", + "hip" : "81", + "waist" : "56", + "weight" : "44" + } + } ], + "idol_id" : 139, + "idol_name" : "松山久美子", + "idol_name_display" : "松山久美子", + "units" : [ { + "id" : "118", + "name" : "ビューティーアリュール" + }, { + "id" : "146", + "name" : "サンセットノスタルジー" + } ] +}, { + "aliases" : [ { + "hash" : "a264ec914168a4e0fa2be2774b4213f5", + "id" : "3000701", + "profile" : { + "bust" : "85", + "height" : "157", + "hip" : "82", + "waist" : "57", + "weight" : "46" + } + }, { + "hash" : "e24e9a4d94ecff4e3b24d87642d54ca4", + "id" : "3100702", + "profile" : { + "bust" : "85", + "height" : "157", + "hip" : "82", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "テーマパーク", + "alias_name_display" : "テーマパーク", + "event" : [ { + "event_id" : 203, + "event_name" : "アイドルサバイバルinテーマパーク" + } ], + "hash" : "bbb2c000d43ea2a15adbed784595add3", + "id" : "3204401", + "profile" : { + "bust" : "85", + "height" : "157", + "hip" : "82", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "テーマパーク", + "alias_name_display" : "テーマパーク", + "event" : [ { + "event_id" : 203, + "event_name" : "アイドルサバイバルinテーマパーク" + } ], + "hash" : "e02a44f2de1e821a4dfff0b3d3db681f", + "id" : "3304402", + "profile" : { + "bust" : "85", + "height" : "157", + "hip" : "82", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "湯けむり月夜", + "alias_name_display" : "湯けむり月夜", + "hash" : "d96ef4cbddf04a780a4af8082a4081e2", + "id" : "3213701", + "profile" : { + "bust" : "85", + "height" : "157", + "hip" : "82", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "湯けむり月夜", + "alias_name_display" : "湯けむり月夜", + "hash" : "d3b714b42d67360598b8c8c9a28d3ef1", + "id" : "3313702", + "profile" : { + "bust" : "85", + "height" : "157", + "hip" : "82", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "アクティブチアー", + "alias_name_display" : "アクティブチアー", + "event" : [ { + "event_id" : "015", + "event_name" : "第15回プロダクションマッチフェスティバル" + } ], + "hash" : "aa81549cf0a3cee335c64d20e9386635", + "id" : "3215701", + "profile" : { + "bust" : "85", + "height" : "157", + "hip" : "82", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "アクティブチアー", + "alias_name_display" : "アクティブチアー", + "event" : [ { + "event_id" : "015", + "event_name" : "第15回プロダクションマッチフェスティバル" + } ], + "hash" : "60d7e7fa4af2462132d22b339b0df55e", + "id" : "3315702", + "profile" : { + "bust" : "85", + "height" : "157", + "hip" : "82", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ナイトパーティー", + "alias_name_display" : "ナイトパーティー", + "hash" : "40ac7b999dd928719947512fff5f57fd", + "id" : "3221901", + "profile" : { + "bust" : "85", + "height" : "157", + "hip" : "82", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ナイトパーティー", + "alias_name_display" : "ナイトパーティー", + "hash" : "a5f88f3476beafef8c1fbd491bdf167b", + "id" : "3321902", + "profile" : { + "bust" : "85", + "height" : "157", + "hip" : "82", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ウェルネスデイズ", + "alias_name_display" : "ウェルネスデイズ", + "hash" : "9086b74e92fcb074c154a8aa5ad516d2", + "id" : "3229301", + "profile" : { + "bust" : "85", + "height" : "157", + "hip" : "82", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ウェルネスデイズ", + "alias_name_display" : "ウェルネスデイズ", + "hash" : "645befcc6e4768dd22934277bd7e98cf", + "id" : "3329302", + "profile" : { + "bust" : "85", + "height" : "157", + "hip" : "82", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "フェリーチェ・チョコラータ", + "alias_name_display" : "フェリーチェ・チョコラータ", + "hash" : "8010afc200495c069ca1c340ec365798", + "id" : "3232601", + "profile" : { + "bust" : "85", + "height" : "157", + "hip" : "82", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "フェリーチェ・チョコラータ", + "alias_name_display" : "フェリーチェ・チョコラータ", + "hash" : "ca815683f4f6629bb6bf302a75e56d55", + "id" : "3332602", + "profile" : { + "bust" : "85", + "height" : "157", + "hip" : "82", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "アクティブビューティー", + "alias_name_display" : "アクティブビューティー", + "hash" : "6493f1eb3bfcb583cff1e74961039d42", + "id" : "3406301", + "profile" : { + "bust" : "85", + "height" : "157", + "hip" : "82", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "アクティブビューティー", + "alias_name_display" : "アクティブビューティー", + "hash" : "f8ba08532e70a89d22a0b58a01cedd4a", + "id" : "3506302", + "profile" : { + "bust" : "85", + "height" : "157", + "hip" : "82", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ロワイヤルサマー", + "alias_name_display" : "ロワイヤルサマー", + "event" : [ { + "event_id" : 806, + "event_name" : "アイドルLIVEロワイヤルinSUMMER" + } ], + "hash" : "d86f212dc2bd0b2aff150597954ae65c", + "id" : "3416801", + "profile" : { + "bust" : "85", + "height" : "157", + "hip" : "82", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ロワイヤルサマー", + "alias_name_display" : "ロワイヤルサマー", + "event" : [ { + "event_id" : 806, + "event_name" : "アイドルLIVEロワイヤルinSUMMER" + } ], + "hash" : "6d7bec74730f62497406933a724deeb7", + "id" : "3516802", + "profile" : { + "bust" : "85", + "height" : "157", + "hip" : "82", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "パンプアップ", + "alias_name_display" : "パンプアップ", + "event" : [ { + "event_id" : 1304, + "event_name" : "第4回プロダクションマッチフェスティバルS" + } ], + "hash" : "87ddcb0644b65e0e0f77a0b8b40e2e9e", + "id" : "3425201", + "profile" : { + "bust" : "85", + "height" : "157", + "hip" : "82", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "パンプアップ", + "alias_name_display" : "パンプアップ", + "event" : [ { + "event_id" : 1304, + "event_name" : "第4回プロダクションマッチフェスティバルS" + } ], + "hash" : "6404ed97807a171fa347f103f3a1ed80", + "id" : "3525202", + "profile" : { + "bust" : "85", + "height" : "157", + "hip" : "82", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "アクティブ・ロワイヤル", + "alias_name_display" : "アクティブ・ロワイヤル", + "event" : [ { + "event_id" : 816, + "event_name" : "第16回アイドルLIVEロワイヤル" + } ], + "hash" : "63e3fed9d083a1311df1964f1095b84c", + "id" : "3430401", + "profile" : { + "bust" : "85", + "height" : "157", + "hip" : "82", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "アクティブ・ロワイヤル", + "alias_name_display" : "アクティブ・ロワイヤル", + "event" : [ { + "event_id" : 816, + "event_name" : "第16回アイドルLIVEロワイヤル" + } ], + "hash" : "1013f20a456ce20449239b3e587bb424", + "id" : "3530402", + "profile" : { + "bust" : "85", + "height" : "157", + "hip" : "82", + "waist" : "57", + "weight" : "46" + } + } ], + "idol_id" : 140, + "idol_name" : "斉藤洋子", + "idol_name_display" : "斉藤洋子", + "units" : [ { + "id" : "150", + "name" : "ヒートアップ☆チアーズ" + }, { + "id" : "175", + "name" : "ライトグリーンセーフ" + }, { + "id" : "207", + "name" : "ムーランルージュ" + } ] +}, { + "aliases" : [ { + "hash" : "52a617fd8f60c1aec0b3d22d3cb1c944", + "id" : "3000801", + "profile" : { + "bust" : "87", + "height" : "166", + "hip" : "87", + "waist" : "57", + "weight" : "47" + } + }, { + "hash" : "a68bf3cebca5cf13cc7612b3a352049a", + "id" : "3100802", + "profile" : { + "bust" : "87", + "height" : "166", + "hip" : "87", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "スポーツ祭", + "alias_name_display" : "スポーツ祭", + "hash" : "9a0f0835a438f5d4013a84b532afe2e2", + "id" : "3204801", + "profile" : { + "bust" : "87", + "height" : "166", + "hip" : "87", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "スポーツ祭", + "alias_name_display" : "スポーツ祭", + "hash" : "2f9882ba5bf9bf2a98e4c9f6be3bb4d0", + "id" : "3304802", + "profile" : { + "bust" : "87", + "height" : "166", + "hip" : "87", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "素顔のお姉さん", + "alias_name_display" : "素顔のお姉さん", + "event" : [ { + "event_id" : 704, + "event_name" : "第4回ドリームLIVEフェスティバル" + } ], + "hash" : "0fa2b130740aac2e0c2a03514c384087", + "id" : "3214001", + "profile" : { + "bust" : "87", + "height" : "166", + "hip" : "87", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "素顔のお姉さん", + "alias_name_display" : "素顔のお姉さん", + "event" : [ { + "event_id" : 704, + "event_name" : "第4回ドリームLIVEフェスティバル" + } ], + "hash" : "6bc46ded8c72c0dcf0c755cf1030fd32", + "id" : "3314002", + "profile" : { + "bust" : "87", + "height" : "166", + "hip" : "87", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "ハッピーウェディング", + "alias_name_display" : "ハッピーウェディング", + "hash" : "ca24c8bd42c3d13dbfa7557b1c1372eb", + "id" : "3217201", + "profile" : { + "bust" : "87", + "height" : "166", + "hip" : "87", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "ハッピーウェディング", + "alias_name_display" : "ハッピーウェディング", + "hash" : "f0454c235c5f433fcda6b03cb620ceed", + "id" : "3317202", + "profile" : { + "bust" : "87", + "height" : "166", + "hip" : "87", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "ウォーミーリップル", + "alias_name_display" : "ウォーミーリップル", + "hash" : "7a53b24d9a77a46b09d23ffea844c323", + "id" : "3223501", + "profile" : { + "bust" : "87", + "height" : "166", + "hip" : "87", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "ウォーミーリップル", + "alias_name_display" : "ウォーミーリップル", + "hash" : "96d272441983405ba34c23b46e6c2227", + "id" : "3323502", + "profile" : { + "bust" : "87", + "height" : "166", + "hip" : "87", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "ファンサーキット", + "alias_name_display" : "ファンサーキット", + "hash" : "15ee9f0c9ebcc5d43e060efb4cc379df", + "id" : "3228801", + "profile" : { + "bust" : "87", + "height" : "166", + "hip" : "87", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "ファンサーキット", + "alias_name_display" : "ファンサーキット", + "hash" : "2c3ff03cbadf8efa3f71ad6b7612ca08", + "id" : "3328802", + "profile" : { + "bust" : "87", + "height" : "166", + "hip" : "87", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "セクシーサーファー", + "alias_name_display" : "セクシーサーファー", + "event" : [ { + "event_id" : "010", + "event_name" : "第10回プロダクションマッチフェスティバル" + } ], + "hash" : "742203c0a8436f9ff6bdee1a338d0347", + "id" : "3407001", + "profile" : { + "bust" : "87", + "height" : "166", + "hip" : "87", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "セクシーサーファー", + "alias_name_display" : "セクシーサーファー", + "event" : [ { + "event_id" : "010", + "event_name" : "第10回プロダクションマッチフェスティバル" + } ], + "hash" : "f1d924650d28a57e713a8bf1acacaa54", + "id" : "3507002", + "profile" : { + "bust" : "87", + "height" : "166", + "hip" : "87", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "グルービー・ロワイヤル", + "alias_name_display" : "グルービー・ロワイヤル", + "event" : [ { + "event_id" : 808, + "event_name" : "第8回アイドルLIVEロワイヤル" + } ], + "hash" : "c908f6fbdc042fbc50430d13a69a3057", + "id" : "3419301", + "profile" : { + "bust" : "87", + "height" : "166", + "hip" : "87", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "グルービー・ロワイヤル", + "alias_name_display" : "グルービー・ロワイヤル", + "event" : [ { + "event_id" : 808, + "event_name" : "第8回アイドルLIVEロワイヤル" + } ], + "hash" : "7ad648beefa0778eae89938851dc6e61", + "id" : "3519302", + "profile" : { + "bust" : "87", + "height" : "166", + "hip" : "87", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "祝餐の淑女", + "alias_name_display" : "祝餐の淑女", + "event" : [ { + "event_id" : 718, + "event_name" : "ドリームLIVEフェスティバル 新春SP" + } ], + "hash" : "3c1312246f7720032341d4e19c526125", + "id" : "3428901", + "profile" : { + "bust" : "87", + "height" : "166", + "hip" : "87", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "祝餐の淑女", + "alias_name_display" : "祝餐の淑女", + "event" : [ { + "event_id" : 718, + "event_name" : "ドリームLIVEフェスティバル 新春SP" + } ], + "hash" : "ae593e0a2d8887e74430c883147e51f5", + "id" : "3528902", + "profile" : { + "bust" : "87", + "height" : "166", + "hip" : "87", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "フローズンダンサー", + "alias_name_display" : "フローズンダンサー", + "event" : [ { + "event_id" : 727, + "event_name" : "第27回ドリームLIVEフェスティバル" + } ], + "hash" : "e27a43d681805008f55469904c953aca", + "id" : "3437801", + "profile" : { + "bust" : "87", + "height" : "166", + "hip" : "87", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "フローズンダンサー", + "alias_name_display" : "フローズンダンサー", + "event" : [ { + "event_id" : 727, + "event_name" : "第27回ドリームLIVEフェスティバル" + } ], + "hash" : "1714cda17ded0f8215ee4c0f217a2c91", + "id" : "3537802", + "profile" : { + "bust" : "87", + "height" : "166", + "hip" : "87", + "waist" : "57", + "weight" : "47" + } + } ], + "idol_id" : 141, + "idol_name" : "沢田麻理菜", + "idol_name_display" : "沢田麻理菜", + "units" : [ { + "id" : "7", + "name" : "エターナルレディエイト" + }, { + "id" : "159", + "name" : "パステル・カクテル" + }, { + "id" : "175", + "name" : "ライトグリーンセーフ" + }, { + "id" : "181", + "name" : "フレッシュアスリーテス" + } ] +}, { + "aliases" : [ { + "hash" : "d7eb1b97b7cc5d256ceb95118ffae977", + "id" : "3000901", + "profile" : { + "bust" : "81", + "height" : "150", + "hip" : "80", + "waist" : "56", + "weight" : "41" + } + }, { + "hash" : "cd29b7fda8167b0f4dbd63f347c1e961", + "id" : "3100902", + "profile" : { + "bust" : "81", + "height" : "150", + "hip" : "80", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "制服コレクション", + "alias_name_display" : "制服コレクション", + "hash" : "8cf81b294f2bd48461e6630ce3ca6be1", + "id" : "3204101", + "profile" : { + "bust" : "81", + "height" : "150", + "hip" : "80", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "制服コレクション", + "alias_name_display" : "制服コレクション", + "hash" : "ac83a1675befe192bae8063a8862af2c", + "id" : "3304102", + "profile" : { + "bust" : "81", + "height" : "150", + "hip" : "80", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "ハワイアンスタイル", + "alias_name_display" : "ハワイアンスタイル", + "event" : [ { + "event_id" : 506, + "event_name" : "アイドルLIVEツアーinハワイ" + } ], + "hash" : "85ef52af1f2d9996d4b0a3f46b3df7fe", + "id" : "3211901", + "profile" : { + "bust" : "81", + "height" : "150", + "hip" : "80", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "ハワイアンスタイル", + "alias_name_display" : "ハワイアンスタイル", + "event" : [ { + "event_id" : 506, + "event_name" : "アイドルLIVEツアーinハワイ" + } ], + "hash" : "14cc48fd8eb6548c8dcfb39dfc1d7bbc", + "id" : "3311902", + "profile" : { + "bust" : "81", + "height" : "150", + "hip" : "80", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "トキメキバレンタイン", + "alias_name_display" : "トキメキバレンタイン", + "hash" : "532af3fcc507a3fb7951ad57b0761e90", + "id" : "3215201", + "profile" : { + "bust" : "81", + "height" : "150", + "hip" : "80", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "トキメキバレンタイン", + "alias_name_display" : "トキメキバレンタイン", + "hash" : "104ec8d4883bf49b54e2c41340624341", + "id" : "3315202", + "profile" : { + "bust" : "81", + "height" : "150", + "hip" : "80", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "フラワーガーデン", + "alias_name_display" : "フラワーガーデン", + "event" : [ { + "event_id" : 213, + "event_name" : "アイドルサバイバルinフラワーガーデン" + } ], + "hash" : "2afe4a5af0037435ffd47489846a4701", + "id" : "3216801", + "profile" : { + "bust" : "81", + "height" : "150", + "hip" : "80", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "フラワーガーデン", + "alias_name_display" : "フラワーガーデン", + "event" : [ { + "event_id" : 213, + "event_name" : "アイドルサバイバルinフラワーガーデン" + } ], + "hash" : "b332fa15c09b8ef0f2946c26b9a128e4", + "id" : "3316802", + "profile" : { + "bust" : "81", + "height" : "150", + "hip" : "80", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "T.B.チアーズ", + "alias_name_display" : "T.B.チアーズ", + "event" : [ { + "event_id" : 1109, + "event_name" : "第9回プロダクション対抗トークバトルショー" + } ], + "hash" : "1c8a014993aeb9b2090aef102b3017da", + "id" : "3222101", + "profile" : { + "bust" : "81", + "height" : "150", + "hip" : "80", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "T.B.チアーズ", + "alias_name_display" : "T.B.チアーズ", + "event" : [ { + "event_id" : 1109, + "event_name" : "第9回プロダクション対抗トークバトルショー" + } ], + "hash" : "3c57816bba9f19f1f2071a0676b369ff", + "id" : "3322102", + "profile" : { + "bust" : "81", + "height" : "150", + "hip" : "80", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "クリスマスナイト", + "alias_name_display" : "クリスマスナイト", + "hash" : "2986dbc55d810b89275600447c9369af", + "id" : "3226701", + "profile" : { + "bust" : "81", + "height" : "150", + "hip" : "80", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "クリスマスナイト", + "alias_name_display" : "クリスマスナイト", + "hash" : "36563d1fcd7ab0070dbd2ca0a269e380", + "id" : "3326702", + "profile" : { + "bust" : "81", + "height" : "150", + "hip" : "80", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "オータムタイム", + "alias_name_display" : "オータムタイム", + "event" : [ { + "event_id" : 724, + "event_name" : "第24回ドリームLIVEフェスティバル" + } ], + "hash" : "45be8be35629c6e28aabb419da97dd2f", + "id" : "3230901", + "profile" : { + "bust" : "81", + "height" : "150", + "hip" : "80", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "オータムタイム", + "alias_name_display" : "オータムタイム", + "event" : [ { + "event_id" : 724, + "event_name" : "第24回ドリームLIVEフェスティバル" + } ], + "hash" : "57bb56d1f69582541a8010dd167d8889", + "id" : "3330902", + "profile" : { + "bust" : "81", + "height" : "150", + "hip" : "80", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "ワイルドフレンズ", + "alias_name_display" : "ワイルドフレンズ", + "hash" : "f04dac9c82d71a897241138a4f42caec", + "id" : "3233701", + "profile" : { + "bust" : "81", + "height" : "150", + "hip" : "80", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "ワイルドフレンズ", + "alias_name_display" : "ワイルドフレンズ", + "hash" : "4d8997fc3f94ac70311fa9f92408655a", + "id" : "3333702", + "profile" : { + "bust" : "81", + "height" : "150", + "hip" : "80", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "悩めるお年頃", + "alias_name_display" : "悩めるお年頃", + "event" : [ { + "event_id" : 207, + "event_name" : "アイドルサバイバル ハロウィン編" + } ], + "hash" : "f8c0017a5ca2ef4fc7cd0d07151994ac", + "id" : "3403601", + "profile" : { + "bust" : "81", + "height" : "150", + "hip" : "80", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "悩めるお年頃", + "alias_name_display" : "悩めるお年頃", + "event" : [ { + "event_id" : 207, + "event_name" : "アイドルサバイバル ハロウィン編" + } ], + "hash" : "d24774d9639553e63860f5b854d944a4", + "id" : "3503602", + "profile" : { + "bust" : "81", + "height" : "150", + "hip" : "80", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "楽しい夏休み", + "alias_name_display" : "楽しい夏休み", + "event" : [ { + "event_id" : 413, + "event_name" : "みんなのなつやすみ" + } ], + "hash" : "b72ccff36b410011b79a299f01d25674", + "id" : "3415901", + "profile" : { + "bust" : "81", + "height" : "150", + "hip" : "80", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "楽しい夏休み", + "alias_name_display" : "楽しい夏休み", + "event" : [ { + "event_id" : 413, + "event_name" : "みんなのなつやすみ" + } ], + "hash" : "3e8e8f242d248978458d505a2edad10a", + "id" : "3515902", + "profile" : { + "bust" : "81", + "height" : "150", + "hip" : "80", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "賑やか夏休み", + "alias_name_display" : "賑やか夏休み", + "event" : [ { + "event_id" : 413, + "event_name" : "みんなのなつやすみ" + } ], + "hash" : "4b273e3aaed3bafe748f94c4a850f230", + "id" : "3416001", + "profile" : { + "bust" : "81", + "height" : "150", + "hip" : "80", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "賑やか夏休み", + "alias_name_display" : "賑やか夏休み", + "event" : [ { + "event_id" : 413, + "event_name" : "みんなのなつやすみ" + } ], + "hash" : "5b073af22fb3cd6adcc1e9e319fa67f6", + "id" : "3516002", + "profile" : { + "bust" : "81", + "height" : "150", + "hip" : "80", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "天魔降臨", + "alias_name_display" : "天魔降臨", + "event" : [ { + "event_id" : 515, + "event_name" : "戦国公演 天魔の乱" + } ], + "hash" : "68b35585d39dafaba5d9cf38c0b9f083", + "id" : "3418701", + "profile" : { + "bust" : "81", + "height" : "150", + "hip" : "80", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "天魔降臨", + "alias_name_display" : "天魔降臨", + "event" : [ { + "event_id" : 515, + "event_name" : "戦国公演 天魔の乱" + } ], + "hash" : "d2170d41b184072934a9fff773547cd0", + "id" : "3518702", + "profile" : { + "bust" : "81", + "height" : "150", + "hip" : "80", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "ふわふわファクトリー", + "alias_name_display" : "ふわふわファクトリー", + "hash" : "ea0d9e48afcf9f896c208b1540efd59f", + "id" : "3431401", + "profile" : { + "bust" : "81", + "height" : "150", + "hip" : "80", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "ふわふわファクトリー", + "alias_name_display" : "ふわふわファクトリー", + "hash" : "c0bb1ce2f048f36f6397fc8dd094cc23", + "id" : "3531402", + "profile" : { + "bust" : "81", + "height" : "150", + "hip" : "80", + "waist" : "56", + "weight" : "41" + } + } ], + "idol_id" : 142, + "idol_name" : "矢口美羽", + "idol_name_display" : "矢口美羽", + "units" : [ { + "id" : "26", + "name" : "スクールガールフレンズ" + }, { + "id" : "44", + "name" : "ハワイアンツイン" + }, { + "id" : "146", + "name" : "サンセットノスタルジー" + }, { + "id" : "151", + "name" : "ブエナ・スエルテ" + } ] +}, { + "aliases" : [ { + "hash" : "6ef2cd5ef498c7caaea87f7d89340110", + "id" : "3001001", + "profile" : { + "bust" : "75", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "36" + } + }, { + "hash" : "e0b836342a1aee295a7ccbab0a16fd87", + "id" : "3101002", + "profile" : { + "bust" : "75", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "36" + } + }, { + "alias_name" : "バレンタイン", + "alias_name_display" : "バレンタイン", + "event" : [ { + "event_id" : 103, + "event_name" : "バレンタインパーティー" + } ], + "hash" : "10da168b4b369bc6ffa72e78e93071be", + "id" : "3203201", + "profile" : { + "bust" : "75", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "36" + } + }, { + "alias_name" : "バレンタイン", + "alias_name_display" : "バレンタイン", + "event" : [ { + "event_id" : 103, + "event_name" : "バレンタインパーティー" + } ], + "hash" : "9b08de504854ac1df4fd5dc76a9a5ac1", + "id" : "3303202", + "profile" : { + "bust" : "75", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "36" + } + }, { + "alias_name" : "ポッピンポップ", + "alias_name_display" : "ポッピンポップ", + "hash" : "92a5705c0b6de55d2f168f9bd29a3edb", + "id" : "3220801", + "profile" : { + "bust" : "75", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "36" + } + }, { + "alias_name" : "ポッピンポップ", + "alias_name_display" : "ポッピンポップ", + "hash" : "8a7f7bead0878b56904f736f4421253d", + "id" : "3320802", + "profile" : { + "bust" : "75", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "36" + } + }, { + "alias_name" : "マーチングバンド", + "alias_name_display" : "マーチングバンド", + "hash" : "89e9e5b0a1b6e15b0fff88744901f461", + "id" : "3231101", + "profile" : { + "bust" : "75", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "36" + } + }, { + "alias_name" : "マーチングバンド", + "alias_name_display" : "マーチングバンド", + "hash" : "0f1b57bb36e56e4ecfb13b3e1954b368", + "id" : "3331102", + "profile" : { + "bust" : "75", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "36" + } + }, { + "alias_name" : "サーカスパフォーマー", + "alias_name_display" : "サーカスパフォーマー", + "event" : [ { + "event_id" : 1709, + "event_name" : "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" + } ], + "hash" : "b579c840179644a36de6fa1c133671cf", + "id" : "3333102", + "profile" : { + "bust" : "75", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "36" + } + }, { + "alias_name" : "スマイリーパフォーマー", + "alias_name_display" : "スマイリーパフォーマー", + "event" : [ { + "event_id" : 1709, + "event_name" : "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" + } ], + "hash" : "8109a4ac1c65efa9906f314f523b9916", + "id" : "3333202", + "profile" : { + "bust" : "75", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "36" + } + }, { + "alias_name" : "しっぽもふもふ", + "alias_name_display" : "しっぽもふもふ", + "event" : [ { + "event_id" : 204, + "event_name" : "アイドルサバイバルin動物園" + } ], + "hash" : "c674c58bab136ff597a815671bb1892b", + "id" : "3402001", + "profile" : { + "bust" : "75", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "36" + } + }, { + "alias_name" : "しっぽもふもふ", + "alias_name_display" : "しっぽもふもふ", + "event" : [ { + "event_id" : 204, + "event_name" : "アイドルサバイバルin動物園" + } ], + "hash" : "cfb03542cf02bdeb2401a33d0d86daeb", + "id" : "3502002", + "profile" : { + "bust" : "75", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "36" + } + }, { + "alias_name" : "ニュースマイル", + "alias_name_display" : "ニュースマイル", + "event" : [ { + "event_id" : 404, + "event_name" : "新春アイドルプロデュース" + } ], + "hash" : "b6c652c77203c6836a0489af5a37662c", + "id" : "3404301", + "profile" : { + "bust" : "75", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "36" + } + }, { + "alias_name" : "ニュースマイル", + "alias_name_display" : "ニュースマイル", + "event" : [ { + "event_id" : 404, + "event_name" : "新春アイドルプロデュース" + } ], + "hash" : "d44aa4f47e363eea2e35a73f54fc6379", + "id" : "3504302", + "profile" : { + "bust" : "75", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "36" + } + }, { + "alias_name" : "ちびっこアクマ", + "alias_name_display" : "ちびっこアクマ", + "hash" : "0793eaf891f21d96424137f2fb375650", + "id" : "3406501", + "profile" : { + "bust" : "75", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "36" + } + }, { + "alias_name" : "ちびっこアクマ", + "alias_name_display" : "ちびっこアクマ", + "hash" : "ef781662f1714c3f272954635d794a5f", + "id" : "3506502", + "profile" : { + "bust" : "75", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "36" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "b1189784b88e5fd4438eebc83b08daad", + "id" : "3406801", + "profile" : { + "bust" : "75", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "36" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "b408f15906c6b54d17985d285f98dee7", + "id" : "3506802", + "profile" : { + "bust" : "75", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "36" + } + }, { + "alias_name" : "シンデレラドリーム", + "alias_name_display" : "シンデレラドリーム", + "hash" : "52ac8b4cab7ec3e61bd7468381f76495", + "id" : "3408701", + "profile" : { + "bust" : "75", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "36" + } + }, { + "alias_name" : "シンデレラドリーム", + "alias_name_display" : "シンデレラドリーム", + "hash" : "ec0b6fa7958a83eb2e758c36dd8fc26b", + "id" : "3508702", + "profile" : { + "bust" : "75", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "36" + } + }, { + "alias_name" : "ニュースマイル・S", + "alias_name_display" : "ニュースマイル・S", + "hash" : "4292b737c6a1afdcb237a28c36cc2e9c", + "id" : "3410301", + "profile" : { + "bust" : "75", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "36" + } + }, { + "alias_name" : "ニュースマイル・S", + "alias_name_display" : "ニュースマイル・S", + "hash" : "6ac6ac48ba9f668c30c8e267633b4860", + "id" : "3510302", + "profile" : { + "bust" : "75", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "36" + } + }, { + "alias_name" : "キラキラ☆ジャンプ", + "alias_name_display" : "キラキラ☆ジャンプ", + "hash" : "f9823071fb73c76c8e0ad947e4374c76", + "id" : "3414201", + "profile" : { + "bust" : "75", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "36" + } + }, { + "alias_name" : "キラキラ☆ジャンプ", + "alias_name_display" : "キラキラ☆ジャンプ", + "hash" : "35951a39f9d4e99402bbb2d9c5f5335d", + "id" : "3514202", + "profile" : { + "bust" : "75", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "36" + } + }, { + "alias_name" : "ないしょのステップ", + "alias_name_display" : "ないしょのステップ", + "hash" : "4868d8e9411de3f444c270c04bcaec1a", + "id" : "3423801", + "profile" : { + "bust" : "75", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "36" + } + }, { + "alias_name" : "ないしょのステップ", + "alias_name_display" : "ないしょのステップ", + "hash" : "2186837114eebf98ae667f26f0e5a79c", + "id" : "3523802", + "profile" : { + "bust" : "75", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "36" + } + }, { + "alias_name" : "凸レーション", + "alias_name_display" : "凸レーション", + "hash" : "03160f702f45fbdd3c17d910d80306d6", + "id" : "3525002", + "profile" : { + "bust" : "75", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "36" + } + }, { + "alias_name" : "ちびっこナース", + "alias_name_display" : "ちびっこナース", + "hash" : "98c52238c3f897072403599574115094", + "id" : "3427901", + "profile" : { + "bust" : "75", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "36" + } + }, { + "alias_name" : "ちびっこナース", + "alias_name_display" : "ちびっこナース", + "hash" : "68acef995b160d04df9bb1173d1e25e7", + "id" : "3527902", + "profile" : { + "bust" : "75", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "36" + } + }, { + "alias_name" : "お花のプリンセス", + "alias_name_display" : "お花のプリンセス", + "event" : [ { + "event_id" : "027", + "event_name" : "第27回プロダクションマッチフェスティバル" + } ], + "hash" : "3e573ed0cc4873adfe4b882e4330bd7f", + "id" : "3432101", + "profile" : { + "bust" : "75", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "36" + } + }, { + "alias_name" : "お花のプリンセス", + "alias_name_display" : "お花のプリンセス", + "event" : [ { + "event_id" : "027", + "event_name" : "第27回プロダクションマッチフェスティバル" + } ], + "hash" : "daeb66a45687cdd22c51c70df1daa6c3", + "id" : "3532102", + "profile" : { + "bust" : "75", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "36" + } + }, { + "alias_name" : "おてんばピエレッタ", + "alias_name_display" : "おてんばピエレッタ", + "event" : [ { + "event_id" : 1709, + "event_name" : "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" + } ], + "hash" : "98925b626042078c4a1ecc8aad8cc7c0", + "id" : "3438401", + "profile" : { + "bust" : "75", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "36" + } + }, { + "alias_name" : "おてんばピエレッタ", + "alias_name_display" : "おてんばピエレッタ", + "event" : [ { + "event_id" : 1709, + "event_name" : "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" + } ], + "hash" : "f2713603ccfb1afc09437a853b864ccd", + "id" : "3538402", + "profile" : { + "bust" : "75", + "height" : "140", + "hip" : "78", + "waist" : "55", + "weight" : "36" + } + } ], + "idol_id" : 143, + "idol_name" : "赤城みりあ", + "idol_name_display" : "赤城みりあ", + "units" : [ { + "id" : "77", + "name" : "Jumpin'Joker" + }, { + "id" : "149", + "name" : "凸レーション" + }, { + "id" : "204", + "name" : "トロピカル☆スターズ" + }, { + "id" : "213", + "name" : "CINDERELLA PROJECT" + }, { + "id" : "214", + "name" : "L.M.B.G" + } ] +}, { + "aliases" : [ { + "hash" : "63fd3fcbc361ec10820d32bf513be16e", + "id" : "3001101", + "profile" : { + "bust" : "84", + "height" : "163", + "hip" : "85", + "waist" : "58", + "weight" : "47" + } + }, { + "hash" : "3353660bfbeee7d2f221c98611512242", + "id" : "3101102", + "profile" : { + "bust" : "84", + "height" : "163", + "hip" : "85", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "明朗☆快活", + "alias_name_display" : "明朗☆快活", + "event" : [ { + "event_id" : "008", + "event_name" : "第8回プロダクションマッチフェスティバル" + } ], + "hash" : "8f2beaf70b437880a985f8b8f79114a0", + "id" : "3208901", + "profile" : { + "bust" : "84", + "height" : "163", + "hip" : "85", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "明朗☆快活", + "alias_name_display" : "明朗☆快活", + "event" : [ { + "event_id" : "008", + "event_name" : "第8回プロダクションマッチフェスティバル" + } ], + "hash" : "d3d9f4a27caef8301249c341b4e19998", + "id" : "3308902", + "profile" : { + "bust" : "84", + "height" : "163", + "hip" : "85", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "スポーティスタイル", + "alias_name_display" : "スポーティスタイル", + "event" : [ { + "event_id" : 212, + "event_name" : "アイドルサバイバル 秋の大運動会" + } ], + "hash" : "dfbdd61be4ccdc68e525717d0bac2587", + "id" : "3213401", + "profile" : { + "bust" : "84", + "height" : "163", + "hip" : "85", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "スポーティスタイル", + "alias_name_display" : "スポーティスタイル", + "event" : [ { + "event_id" : 212, + "event_name" : "アイドルサバイバル 秋の大運動会" + } ], + "hash" : "ceef2d2586809b80112bc40b23069aca", + "id" : "3313402", + "profile" : { + "bust" : "84", + "height" : "163", + "hip" : "85", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "豪放の鬼人", + "alias_name_display" : "豪放の鬼人", + "event" : [ { + "event_id" : 515, + "event_name" : "戦国公演 天魔の乱" + } ], + "hash" : "a598244c502625e88e206b64f2a6f248", + "id" : "3220201", + "profile" : { + "bust" : "84", + "height" : "163", + "hip" : "85", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "豪放の鬼人", + "alias_name_display" : "豪放の鬼人", + "event" : [ { + "event_id" : 515, + "event_name" : "戦国公演 天魔の乱" + } ], + "hash" : "8bbfb3b8fbec2518b6fb12050c9933f9", + "id" : "3320202", + "profile" : { + "bust" : "84", + "height" : "163", + "hip" : "85", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "エナジーフィール", + "alias_name_display" : "エナジーフィール", + "hash" : "46dfaa3309c9fc33443b0cc627912f13", + "id" : "3222401", + "profile" : { + "bust" : "84", + "height" : "163", + "hip" : "85", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "エナジーフィール", + "alias_name_display" : "エナジーフィール", + "hash" : "2b0e2716c03031eaaeb29a09d61e75aa", + "id" : "3322402", + "profile" : { + "bust" : "84", + "height" : "163", + "hip" : "85", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "迎春神楽", + "alias_name_display" : "迎春神楽", + "hash" : "4e760adc4e6919f6f358270b34455820", + "id" : "3232201", + "profile" : { + "bust" : "84", + "height" : "163", + "hip" : "85", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "迎春神楽", + "alias_name_display" : "迎春神楽", + "hash" : "001d10686845cdce26772524579a982d", + "id" : "3332202", + "profile" : { + "bust" : "84", + "height" : "163", + "hip" : "85", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "センター・キャプテン", + "alias_name_display" : "センター・キャプテン", + "hash" : "868c92e18aa41e24a61546b2100548b5", + "id" : "3413401", + "profile" : { + "bust" : "84", + "height" : "163", + "hip" : "85", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "センター・キャプテン", + "alias_name_display" : "センター・キャプテン", + "hash" : "701f66d34f5d7d58aa7d977ca3450565", + "id" : "3513402", + "profile" : { + "bust" : "84", + "height" : "163", + "hip" : "85", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "シューティングチアー", + "alias_name_display" : "シューティングチアー", + "event" : [ { + "event_id" : 1503, + "event_name" : "チーム対抗 夏だ!プールだ!トークバトルショー" + } ], + "hash" : "13c7561bc0a40734ac98f74b94414a5c", + "id" : "3425601", + "profile" : { + "bust" : "84", + "height" : "163", + "hip" : "85", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "シューティングチアー", + "alias_name_display" : "シューティングチアー", + "event" : [ { + "event_id" : 1503, + "event_name" : "チーム対抗 夏だ!プールだ!トークバトルショー" + } ], + "hash" : "82117663678e1ecd83cac4b74970f7e3", + "id" : "3525602", + "profile" : { + "bust" : "84", + "height" : "163", + "hip" : "85", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ドリームアドベント", + "alias_name_display" : "ドリームアドベント", + "event" : [ { + "event_id" : 721, + "event_name" : "第21回ドリームLIVEフェスティバル" + } ], + "hash" : "0b015e960d21bb82468304a236db2719", + "id" : "3432301", + "profile" : { + "bust" : "84", + "height" : "163", + "hip" : "85", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ドリームアドベント", + "alias_name_display" : "ドリームアドベント", + "event" : [ { + "event_id" : 721, + "event_name" : "第21回ドリームLIVEフェスティバル" + } ], + "hash" : "b3c0ab815b7dae87ea9a636433655d89", + "id" : "3532302", + "profile" : { + "bust" : "84", + "height" : "163", + "hip" : "85", + "waist" : "56", + "weight" : "45" + } + } ], + "idol_id" : 144, + "idol_name" : "愛野渚", + "idol_name_display" : "愛野渚", + "units" : [ { + "id" : "122", + "name" : "ホットアートジャンピン" + }, { + "id" : "174", + "name" : "カナリアサマー" + } ] +}, { + "aliases" : [ { + "hash" : "b209c422b7346f1d4d69feda95318a5f", + "id" : "3001201", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "83", + "waist" : "57", + "weight" : "46" + } + }, { + "hash" : "9e3bbf542345ebed15fb2032e1c837d7", + "id" : "3101202", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "83", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "レッスン&チャレンジ", + "alias_name_display" : "レッスン&チャレンジ", + "hash" : "66a6a21d46da643503586a7a22df87dd", + "id" : "3207501", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "83", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "レッスン&チャレンジ", + "alias_name_display" : "レッスン&チャレンジ", + "hash" : "de348637cc18a3f5e4c81fa791580495", + "id" : "3307502", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "83", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "カジュアルスタイル", + "alias_name_display" : "カジュアルスタイル", + "hash" : "2432eb32593381cfec0f4f599fec4f36", + "id" : "3213801", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "83", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "カジュアルスタイル", + "alias_name_display" : "カジュアルスタイル", + "hash" : "c002a51fc066d05b168e709c067abd3b", + "id" : "3313802", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "83", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "カジュアルチアー", + "alias_name_display" : "カジュアルチアー", + "event" : [ { + "event_id" : "016", + "event_name" : "第16回プロダクションマッチフェスティバル" + } ], + "hash" : "2b41c4a4cb28d37563feb07668337853", + "id" : "3216701", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "83", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "カジュアルチアー", + "alias_name_display" : "カジュアルチアー", + "event" : [ { + "event_id" : "016", + "event_name" : "第16回プロダクションマッチフェスティバル" + } ], + "hash" : "ce408b02973567997eb52f3e61c8bfec", + "id" : "3316702", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "83", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ガーリースタイル", + "alias_name_display" : "ガーリースタイル", + "hash" : "0b1e16ffc8a773f87a5ad8cc7f8bf0f8", + "id" : "3222001", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "83", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ガーリースタイル", + "alias_name_display" : "ガーリースタイル", + "hash" : "a5f4297b7066dfc5f18b8542bc15c08a", + "id" : "3322002", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "83", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "シェイプアップ", + "alias_name_display" : "シェイプアップ", + "hash" : "6b37e98cb7731439ed6f3cae9fee2306", + "id" : "3224801", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "83", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "シェイプアップ", + "alias_name_display" : "シェイプアップ", + "hash" : "b3d0922a9fd538b1d6503904d0defc49", + "id" : "3324802", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "83", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "節分豆撒", + "alias_name_display" : "節分豆撒", + "event" : [ { + "event_id" : 719, + "event_name" : "ドリームLIVEフェスティバル 節分SP" + } ], + "hash" : "ff9f17efbe7d2c3470f6a0c7c8e7f54b", + "id" : "3227401", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "83", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "節分豆撒", + "alias_name_display" : "節分豆撒", + "event" : [ { + "event_id" : 719, + "event_name" : "ドリームLIVEフェスティバル 節分SP" + } ], + "hash" : "3ccaaf0d3541e34f974b94e453c6a19f", + "id" : "3327402", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "83", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "サーカスパフォーマー", + "alias_name_display" : "サーカスパフォーマー", + "event" : [ { + "event_id" : 1709, + "event_name" : "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" + } ], + "hash" : "77dbd0fac660c71139ab3a8a1e93cfae", + "id" : "3232801", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "83", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "サーカスパフォーマー", + "alias_name_display" : "サーカスパフォーマー", + "event" : [ { + "event_id" : 1709, + "event_name" : "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" + } ], + "hash" : "6327296e1442dcf684f2454f116b4d0f", + "id" : "3332802", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "83", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "スマイリーパフォーマー", + "alias_name_display" : "スマイリーパフォーマー", + "event" : [ { + "event_id" : 1709, + "event_name" : "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" + } ], + "hash" : "47e364881876ef5d26ff179d2e0a1ae2", + "id" : "3232901", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "83", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "スマイリーパフォーマー", + "alias_name_display" : "スマイリーパフォーマー", + "event" : [ { + "event_id" : 1709, + "event_name" : "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" + } ], + "hash" : "ff4d10646fd683720b03ba75ee2ac087", + "id" : "3332902", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "83", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ハッピープレジャー", + "alias_name_display" : "ハッピープレジャー", + "event" : [ { + "event_id" : 210, + "event_name" : "アイドルサバイバルinテーマパーク2013" + } ], + "hash" : "7f9a18fa7616eb1439f038c58b02f983", + "id" : "3406601", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "83", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ハッピープレジャー", + "alias_name_display" : "ハッピープレジャー", + "event" : [ { + "event_id" : 210, + "event_name" : "アイドルサバイバルinテーマパーク2013" + } ], + "hash" : "a4f446a8b78c3ea7fdbafe5866892169", + "id" : "3506602", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "83", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "拳舞酔客", + "alias_name_display" : "拳舞酔客", + "event" : [ { + "event_id" : 514, + "event_name" : "功夫公演 香港大決戦" + } ], + "hash" : "6af497e47078dc8ea2c6691297cc7300", + "id" : "3417401", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "83", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "拳舞酔客", + "alias_name_display" : "拳舞酔客", + "event" : [ { + "event_id" : 514, + "event_name" : "功夫公演 香港大決戦" + } ], + "hash" : "5ed37ce77056ed6867c6d70631496a34", + "id" : "3517402", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "83", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ふるき待ち人", + "alias_name_display" : "ふるき待ち人", + "event" : [ { + "event_id" : 1903, + "event_name" : "怪奇公演 心霊探偵の事件簿" + } ], + "hash" : "ce4ea40b0df3c2d7af34153ff9d00a69", + "id" : "3434401", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "83", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ふるき待ち人", + "alias_name_display" : "ふるき待ち人", + "event" : [ { + "event_id" : 1903, + "event_name" : "怪奇公演 心霊探偵の事件簿" + } ], + "hash" : "83aa3c1928c1a0b2055c71ccd32ef090", + "id" : "3534402", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "83", + "waist" : "57", + "weight" : "46" + } + } ], + "idol_id" : 145, + "idol_name" : "真鍋いつき", + "idol_name_display" : "真鍋いつき", + "units" : [ { + "id" : "150", + "name" : "ヒートアップ☆チアーズ" + }, { + "id" : "175", + "name" : "ライトグリーンセーフ" + } ] +}, { + "aliases" : [ { + "hash" : "1515860fd22175a20c99d8007cf8faae", + "id" : "3001301", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "83", + "waist" : "56", + "weight" : "42" + } + }, { + "hash" : "120b0acaa2c1419c3de79c1e6ef6890a", + "id" : "3101302", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "83", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "お花見", + "alias_name_display" : "お花見", + "event" : [ { + "event_id" : 104, + "event_name" : "桜舞う花見祭り" + } ], + "hash" : "212bb3e0d7f2ba5bcdeced90bf48561b", + "id" : "3002301", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "83", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "お花見", + "alias_name_display" : "お花見", + "event" : [ { + "event_id" : 104, + "event_name" : "桜舞う花見祭り" + } ], + "hash" : "c8e7deaf2263a700b6f7d41902770f41", + "id" : "3102302", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "83", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "サマーガールオレンジ", + "alias_name_display" : "サマーガールオレンジ", + "event" : [ { + "event_id" : 106, + "event_name" : "アイドル水泳大会 水着のシンデレラ" + } ], + "hash" : "9a21c3eaede2b44ea3fbeb6c46f631f5", + "id" : "3205401", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "83", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "サマーガールグリーン", + "alias_name_display" : "サマーガールグリーン", + "event" : [ { + "event_id" : 106, + "event_name" : "アイドル水泳大会 水着のシンデレラ" + } ], + "hash" : "01501d1215a4b5d6a9260a2a13acd4cf", + "id" : "3205402", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "83", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "サマーガールブルー", + "alias_name_display" : "サマーガールブルー", + "event" : [ { + "event_id" : 106, + "event_name" : "アイドル水泳大会 水着のシンデレラ" + } ], + "hash" : "bdfb3cab23611b7efcf2a0d26d6241c0", + "id" : "3205403", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "83", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "サマーガールイエロー", + "alias_name_display" : "サマーガールイエロー", + "event" : [ { + "event_id" : 106, + "event_name" : "アイドル水泳大会 水着のシンデレラ" + } ], + "hash" : "f4f935084bfe52e387f6bd30ce760ad0", + "id" : "3205404", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "83", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "サマーショッピングイエロー", + "alias_name_display" : "サマーショッピングイエロー", + "event" : [ { + "event_id" : 106, + "event_name" : "アイドル水泳大会 水着のシンデレラ" + } ], + "hash" : "653b7a8fbbfbad90d029a8ab600f056b", + "id" : "3305405", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "83", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "サマーショッピンググリーン", + "alias_name_display" : "サマーショッピンググリーン", + "event" : [ { + "event_id" : 106, + "event_name" : "アイドル水泳大会 水着のシンデレラ" + } ], + "hash" : "69c82c51bd137b4225908435cb8455e4", + "id" : "3305406", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "83", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "サマーショッピングピンク", + "alias_name_display" : "サマーショッピングピンク", + "event" : [ { + "event_id" : 106, + "event_name" : "アイドル水泳大会 水着のシンデレラ" + } ], + "hash" : "9929a169843d9f7e7312eca020caf3cc", + "id" : "3305407", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "83", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "サマーショッピングブラウン", + "alias_name_display" : "サマーショッピングブラウン", + "event" : [ { + "event_id" : 106, + "event_name" : "アイドル水泳大会 水着のシンデレラ" + } ], + "hash" : "df467ee38a2c1a4b771029f24a419529", + "id" : "3305408", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "83", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "サマーショッピングアメリカン", + "alias_name_display" : "サマーショッピングアメリカン", + "event" : [ { + "event_id" : 106, + "event_name" : "アイドル水泳大会 水着のシンデレラ" + } ], + "hash" : "5cc4622076643ca2818b7793393fc531", + "id" : "3305409", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "83", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "レインドロップ", + "alias_name_display" : "レインドロップ", + "event" : [ { + "event_id" : 407, + "event_name" : "アイドルプロデュース 鎌倉あじさい巡り" + } ], + "hash" : "0dcfcc73c8e1fe5f8c2afded0838cff5", + "id" : "3210601", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "83", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "レインドロップ", + "alias_name_display" : "レインドロップ", + "event" : [ { + "event_id" : 407, + "event_name" : "アイドルプロデュース 鎌倉あじさい巡り" + } ], + "hash" : "aa671e6aed1e53e554f9b9589de70d48", + "id" : "3310602", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "83", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "レインドロップスマイル", + "alias_name_display" : "レインドロップスマイル", + "event" : [ { + "event_id" : 407, + "event_name" : "アイドルプロデュース 鎌倉あじさい巡り" + } ], + "hash" : "91f1b140eec2747dd2a2cb31c005d37f", + "id" : "3210701", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "83", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "レインドロップスマイル", + "alias_name_display" : "レインドロップスマイル", + "event" : [ { + "event_id" : 407, + "event_name" : "アイドルプロデュース 鎌倉あじさい巡り" + } ], + "hash" : "915507cb01b608f92add67390ad849c3", + "id" : "3310702", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "83", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "バレンタインデビル", + "alias_name_display" : "バレンタインデビル", + "hash" : "79b5a5fe045e3d04bd7fe1045a280011", + "id" : "3221401", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "83", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "バレンタインデビル", + "alias_name_display" : "バレンタインデビル", + "hash" : "bda80f1fe71cef7ba31a51521b1ec5dc", + "id" : "3321402", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "83", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "セレクテッド", + "alias_name_display" : "セレクテッド", + "hash" : "589a124c4fa6098a722264d6e676341a", + "id" : "3228901", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "83", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "セレクテッド", + "alias_name_display" : "セレクテッド", + "hash" : "b6d13d92ef2602a297f285d0b08fdead", + "id" : "3328902", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "83", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "サマースプラッシュ", + "alias_name_display" : "サマースプラッシュ", + "event" : [ { + "event_id" : 106, + "event_name" : "アイドル水泳大会 水着のシンデレラ" + } ], + "hash" : "252492330a944c5dcb457bb2683c07dc", + "id" : "3402101", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "83", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "サマースプラッシュ", + "alias_name_display" : "サマースプラッシュ", + "event" : [ { + "event_id" : 106, + "event_name" : "アイドル水泳大会 水着のシンデレラ" + } ], + "hash" : "161aba59d0e7079677a6344345b890a1", + "id" : "3502102", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "83", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "湯けむりギャル", + "alias_name_display" : "湯けむりギャル", + "hash" : "b1d4347b0562c9b9257a1bbfe8007256", + "id" : "3403801", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "83", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "湯けむりギャル", + "alias_name_display" : "湯けむりギャル", + "hash" : "e2e85e351b7f8739d4c1f2f132ef2ef3", + "id" : "3503802", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "83", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "クリスマス☆ギャル", + "alias_name_display" : "クリスマス☆ギャル", + "hash" : "9894ac29d3d2f85e6a8e9a2975710ede", + "id" : "3410601", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "83", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "クリスマス☆ギャル", + "alias_name_display" : "クリスマス☆ギャル", + "hash" : "cc195ea8b89a4c42db5db2054f3e512f", + "id" : "3510602", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "83", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "自由の海姫", + "alias_name_display" : "自由の海姫", + "event" : [ { + "event_id" : 513, + "event_name" : "海賊公演 オーシャンクルーズ" + } ], + "hash" : "0cb4c2a94c73c4dee9e2911ae33b9349", + "id" : "3415701", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "83", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "自由の海姫", + "alias_name_display" : "自由の海姫", + "event" : [ { + "event_id" : 513, + "event_name" : "海賊公演 オーシャンクルーズ" + } ], + "hash" : "50e4cbc50998270b16051eb4c3eb98aa", + "id" : "3515702", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "83", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "きまぐれアラカルト", + "alias_name_display" : "きまぐれアラカルト", + "hash" : "c77f15a9ae5b41cab5c25dd81fc8b439", + "id" : "3422901", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "83", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "きまぐれアラカルト", + "alias_name_display" : "きまぐれアラカルト", + "hash" : "5be7e798333d3df7bae2151d64547659", + "id" : "3522902", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "83", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "フリーダムノーツ", + "alias_name_display" : "フリーダムノーツ", + "event" : [ { + "event_id" : 1504, + "event_name" : "第4回チーム対抗トークバトルショー" + } ], + "hash" : "d98730214d1599bdf4c6da1e9baeb783", + "id" : "3427101", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "83", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "フリーダムノーツ", + "alias_name_display" : "フリーダムノーツ", + "event" : [ { + "event_id" : 1504, + "event_name" : "第4回チーム対抗トークバトルショー" + } ], + "hash" : "7b4aaee0f26206451ecfa1d472badb1a", + "id" : "3527102", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "83", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "958ee39a6a98210ef9e12bb51af82a99", + "id" : "3430701", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "83", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "6e869ad95d0b0c12b200342730b0c8d2", + "id" : "3530702", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "83", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "5thアニバーサリー", + "alias_name_display" : "5thアニバーサリー", + "event" : [ { + "event_id" : 1708, + "event_name" : "アイドルプロデュース the 5th Anniversary" + } ], + "hash" : "16bc1b80f078bbbcee22f54b02ffde34", + "id" : "3436701", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "83", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "5thアニバーサリー", + "alias_name_display" : "5thアニバーサリー", + "event" : [ { + "event_id" : 1708, + "event_name" : "アイドルプロデュース the 5th Anniversary" + } ], + "hash" : "d8d934b5f927a10360e68a68f0ebe00b", + "id" : "3536702", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "83", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "5thアニバーサリー・S", + "alias_name_display" : "5thアニバーサリー・S", + "event" : [ { + "event_id" : 1708, + "event_name" : "アイドルプロデュース the 5th Anniversary" + } ], + "hash" : "a8285d3a36a915d9d87530d72a4d7f03", + "id" : "3436801", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "83", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "5thアニバーサリー・S", + "alias_name_display" : "5thアニバーサリー・S", + "event" : [ { + "event_id" : 1708, + "event_name" : "アイドルプロデュース the 5th Anniversary" + } ], + "hash" : "ebd89ca488c46fd5f7ffcae59c61f2e0", + "id" : "3536802", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "83", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "おねだりサボタージュ", + "alias_name_display" : "おねだりサボタージュ", + "hash" : "7d61e916c1009fe5c94281bb2804ca3b", + "id" : "3439901", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "83", + "waist" : "56", + "weight" : "41" + } + }, { + "alias_name" : "おねだりサボタージュ", + "alias_name_display" : "おねだりサボタージュ", + "hash" : "3989619894f357d64debb55929ca0edc", + "id" : "3539902", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "83", + "waist" : "56", + "weight" : "41" + } + } ], + "idol_id" : 146, + "idol_name" : "大槻唯", + "idol_name_display" : "大槻唯", + "units" : [ { + "id" : "18", + "name" : "サクラブロッサム" + }, { + "id" : "106", + "name" : "レインドロップ" + }, { + "id" : "112", + "name" : "ギャルズパーティー" + }, { + "id" : "113", + "name" : "セクシーギャルズ" + }, { + "id" : "155", + "name" : "セレクテッド" + }, { + "id" : "174", + "name" : "カナリアサマー" + }, { + "id" : "202", + "name" : "サンフラワー" + }, { + "id" : "215", + "name" : "Project:Krone" + } ] +}, { + "aliases" : [ { + "hash" : "70e2c81b06c8865ca2b615df8ee4ff93", + "id" : "3001401", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "hash" : "d3b1f19515db0f6b68de3891bca053aa", + "id" : "3101402", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "お花見", + "alias_name_display" : "お花見", + "event" : [ { + "event_id" : 104, + "event_name" : "桜舞う花見祭り" + } ], + "hash" : "e1d1e2125f47a113e3f713279449b89f", + "id" : "3203801", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "お花見", + "alias_name_display" : "お花見", + "event" : [ { + "event_id" : 104, + "event_name" : "桜舞う花見祭り" + } ], + "hash" : "49596a983a3633415ef8bc526bc3bf87", + "id" : "3303802", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "クッキングチャレンジ", + "alias_name_display" : "クッキングチャレンジ", + "event" : [ { + "event_id" : 409, + "event_name" : "アイドルプロデュース チャレンジクッキング イタリアン編" + } ], + "hash" : "0a909c1a66f53d5148005a8a8d9f8ac2", + "id" : "3212701", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "クッキングチャレンジ", + "alias_name_display" : "クッキングチャレンジ", + "event" : [ { + "event_id" : 409, + "event_name" : "アイドルプロデュース チャレンジクッキング イタリアン編" + } ], + "hash" : "1e7a035696e095ced606582c232843aa", + "id" : "3312702", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "クッキング・スマイル", + "alias_name_display" : "クッキング・スマイル", + "event" : [ { + "event_id" : 409, + "event_name" : "アイドルプロデュース チャレンジクッキング イタリアン編" + } ], + "hash" : "3ff62a9466016547f90ed44c7840c560", + "id" : "3212801", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "クッキング・スマイル", + "alias_name_display" : "クッキング・スマイル", + "event" : [ { + "event_id" : 409, + "event_name" : "アイドルプロデュース チャレンジクッキング イタリアン編" + } ], + "hash" : "2fad2373d17b2e6470454b2469c9161a", + "id" : "3312802", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "サマーシーズン", + "alias_name_display" : "サマーシーズン", + "hash" : "c629d8330bbadfcaab5de5b4b1613e6b", + "id" : "3223701", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "サマーシーズン", + "alias_name_display" : "サマーシーズン", + "hash" : "9cc97855d3b407da47211b55983dfed2", + "id" : "3323702", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "全力インタビュー", + "alias_name_display" : "全力インタビュー", + "hash" : "ee335947e8e5c66353550496c1ef76a9", + "id" : "3230801", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "全力インタビュー", + "alias_name_display" : "全力インタビュー", + "hash" : "6f1244bd2e41ac322ca9b745556c1dea", + "id" : "3330802", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "全力チアガール", + "alias_name_display" : "全力チアガール", + "event" : [ { + "event_id" : 206, + "event_name" : "アイドルサバイバルin学園祭" + } ], + "hash" : "346a8fe47bf44812289254630a3246d7", + "id" : "3403301", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "全力チアガール", + "alias_name_display" : "全力チアガール", + "event" : [ { + "event_id" : 206, + "event_name" : "アイドルサバイバルin学園祭" + } ], + "hash" : "74de50d140d29d3775b7b4d9b7dab726", + "id" : "3503302", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "チアフルエース", + "alias_name_display" : "チアフルエース", + "hash" : "244571d79f62f7e92f4864005d0c5b7f", + "id" : "3406901", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "チアフルエース", + "alias_name_display" : "チアフルエース", + "hash" : "bec7aaa5a179f7543cd32b81ee1791b1", + "id" : "3506902", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "ユッキ☆レボリューション", + "alias_name_display" : "ユッキ☆レボリューション", + "event" : [ { + "event_id" : 804, + "event_name" : "第4回アイドルLIVEロワイヤル" + } ], + "hash" : "b54d7f133cee9d01ae67eff3ba70d9ad", + "id" : "3412501", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "ユッキ☆レボリューション", + "alias_name_display" : "ユッキ☆レボリューション", + "event" : [ { + "event_id" : 804, + "event_name" : "第4回アイドルLIVEロワイヤル" + } ], + "hash" : "be2d31e96f2501ddf6cca066da9a35f3", + "id" : "3512502", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "ハッピーホームラン", + "alias_name_display" : "ハッピーホームラン", + "hash" : "36e3f8bdb6303b5bba63e1d38d487c44", + "id" : "3414801", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "ハッピーホームラン", + "alias_name_display" : "ハッピーホームラン", + "hash" : "f7f85a3949cd94e6fe04a9b30189eb57", + "id" : "3514802", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "12954acb6219dd4841a6d1f7f57d3f0a", + "id" : "3421301", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "5b885f6976141113bc26b21c5a61ef35", + "id" : "3521302", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "1番センター", + "alias_name_display" : "1番センター", + "hash" : "6f6a927a66ac554f5e790bcfe480f5ca", + "id" : "3421701", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "1番センター", + "alias_name_display" : "1番センター", + "hash" : "9cf7b202de8b66500945e79e2860f412", + "id" : "3521702", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "秋色センター", + "alias_name_display" : "秋色センター", + "hash" : "9ff71f444262cc7258e36d981c1ac617", + "id" : "3427001", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "秋色センター", + "alias_name_display" : "秋色センター", + "hash" : "732db8a3c5364c55fba41ccba39ae41e", + "id" : "3527002", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "GO!GO!レッツゴー", + "alias_name_display" : "GO!GO!レッツゴー", + "hash" : "e4ca80856602723aa2498d0322c09d4a", + "id" : "3431601", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "GO!GO!レッツゴー", + "alias_name_display" : "GO!GO!レッツゴー", + "hash" : "634e9b498ffbbf3083d18df6f99e012f", + "id" : "3531602", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "満塁バレンタイン", + "alias_name_display" : "満塁バレンタイン", + "event" : [ { + "event_id" : 1906, + "event_name" : "ディアリースターハート ~ラブキュンバレンタイン~" + } ], + "hash" : "93e98bdad1fea731728b2c13f79782be", + "id" : "3438001", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + }, { + "alias_name" : "満塁バレンタイン", + "alias_name_display" : "満塁バレンタイン", + "event" : [ { + "event_id" : 1906, + "event_name" : "ディアリースターハート ~ラブキュンバレンタイン~" + } ], + "hash" : "85688ae1cb65177f8acc8c407901267b", + "id" : "3538002", + "profile" : { + "bust" : "80", + "height" : "161", + "hip" : "80", + "waist" : "57", + "weight" : "44" + } + } ], + "idol_id" : 147, + "idol_name" : "姫川友紀", + "idol_name_display" : "姫川友紀", + "units" : [ { + "id" : "54", + "name" : "ボール・フレンズ" + }, { + "id" : "87", + "name" : "ウィンター・F・ドライバーズ" + }, { + "id" : "96", + "name" : "チャレンジクッキング" + }, { + "id" : "131", + "name" : "KBYD" + }, { + "id" : "148", + "name" : "チアフルボンバーズ" + }, { + "id" : "152", + "name" : "B.B.ロワイヤル" + }, { + "id" : "174", + "name" : "カナリアサマー" + }, { + "id" : "191", + "name" : "Love Yell" + }, { + "id" : "202", + "name" : "サンフラワー" + } ] +}, { + "aliases" : [ { + "event" : [ { + "event_id" : 303, + "event_name" : "アイドル強化合宿" + } ], + "hash" : "a398078875ab4c504e9a1bf8881f1611", + "id" : "3001501", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "85", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "聖夜", + "alias_name_display" : "聖夜", + "hash" : "a7673fe01d9509ff3e9aba10cb5b2cb2", + "id" : "3001701", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "85", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "新春", + "alias_name_display" : "新春", + "hash" : "e1bcd7081670a0d4d323c29a7027f790", + "id" : "3001901", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "85", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "バレンタイン", + "alias_name_display" : "バレンタイン", + "hash" : "d33a56bef548f47c75d4b9a857031ceb", + "id" : "3002201", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "85", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "サマースタイル", + "alias_name_display" : "サマースタイル", + "hash" : "b20beba7135aeafec64debff48a007d6", + "id" : "3002801", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "85", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "スイミングレッスン", + "alias_name_display" : "スイミングレッスン", + "hash" : "35298581105317744d50303a73e59816", + "id" : "3212201", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "85", + "waist" : "56", + "weight" : "45" + } + } ], + "idol_id" : 148, + "idol_name" : "トレーナー", + "idol_name_display" : "トレーナー" +}, { + "aliases" : [ { + "event" : [ { + "event_id" : 101, + "event_name" : "星降るクリスマス" + } ], + "hash" : "76e94c283b186a3461922f4ec21881ea", + "id" : "3001601", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "event" : [ { + "event_id" : 101, + "event_name" : "星降るクリスマス" + } ], + "hash" : "9ddb7f0e4c699e93d3735c56d163bc1b", + "id" : "3101602", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "ハロウィンヴァンパイア", + "alias_name_display" : "ハロウィンヴァンパイア", + "event" : [ { + "event_id" : 207, + "event_name" : "アイドルサバイバル ハロウィン編" + } ], + "hash" : "a64fe8b98f2e7b40a6a342368f412450", + "id" : "3207001", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "ハロウィンヴァンパイア", + "alias_name_display" : "ハロウィンヴァンパイア", + "event" : [ { + "event_id" : 207, + "event_name" : "アイドルサバイバル ハロウィン編" + } ], + "hash" : "100cd905a11b9720c2c2900c2d29cd24", + "id" : "3307002", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "制服コレクション", + "alias_name_display" : "制服コレクション", + "hash" : "9ff651d605c80ce711f075fac892e4ba", + "id" : "3209701", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "制服コレクション", + "alias_name_display" : "制服コレクション", + "hash" : "ca525a89021186705bef26286ca60aa0", + "id" : "3309702", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "イノセントカジュアル", + "alias_name_display" : "イノセントカジュアル", + "event" : [ { + "event_id" : 210, + "event_name" : "アイドルサバイバルinテーマパーク2013" + } ], + "hash" : "43dc4ab01d267de125f55814e78d562d", + "id" : "3210301", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "イノセントカジュアル", + "alias_name_display" : "イノセントカジュアル", + "event" : [ { + "event_id" : 210, + "event_name" : "アイドルサバイバルinテーマパーク2013" + } ], + "hash" : "6c5ed46ea8e57d875cee7a9a156f94dd", + "id" : "3310302", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "フレンズホリデー", + "alias_name_display" : "フレンズホリデー", + "hash" : "96aaa980d88be40c137aba05e087cf31", + "id" : "3218801", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "フレンズホリデー", + "alias_name_display" : "フレンズホリデー", + "hash" : "0981d408ac65375660c7f0e6e9c9aacb", + "id" : "3318802", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "お転婆ひな娘", + "alias_name_display" : "お転婆ひな娘", + "event" : [ { + "event_id" : 202, + "event_name" : "アイドルサバイバルひな祭り編" + } ], + "hash" : "f6f5df7f8023462cfbe413c9ffe6b0e6", + "id" : "3401201", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "お転婆ひな娘", + "alias_name_display" : "お転婆ひな娘", + "event" : [ { + "event_id" : 202, + "event_name" : "アイドルサバイバルひな祭り編" + } ], + "hash" : "fccbc1e099783725061730d71f4f3c7f", + "id" : "3501202", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "フード☆メイド", + "alias_name_display" : "フード☆メイド", + "event" : [ { + "event_id" : 409, + "event_name" : "アイドルプロデュース チャレンジクッキング イタリアン編" + } ], + "hash" : "6784ca2ff27361baf60e5656d41aa7b3", + "id" : "3408801", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "フード☆メイド", + "alias_name_display" : "フード☆メイド", + "event" : [ { + "event_id" : 409, + "event_name" : "アイドルプロデュース チャレンジクッキング イタリアン編" + } ], + "hash" : "c2cc3cb89e8a952d912ac52cc4ea29ea", + "id" : "3508802", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "無防備☆ガール", + "alias_name_display" : "無防備☆ガール", + "hash" : "0bd28c1f2662bd35b68a149c97b2dc9d", + "id" : "3411601", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "無防備☆ガール", + "alias_name_display" : "無防備☆ガール", + "hash" : "1c54bb41c531be11a13a01ab43943f85", + "id" : "3511602", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "ロワイヤル・スクエア", + "alias_name_display" : "ロワイヤル・スクエア", + "event" : [ { + "event_id" : 809, + "event_name" : "第9回アイドルLIVEロワイヤル" + } ], + "hash" : "e64f42e43c60813b610e0629287cf330", + "id" : "3420501", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "ロワイヤル・スクエア", + "alias_name_display" : "ロワイヤル・スクエア", + "event" : [ { + "event_id" : 809, + "event_name" : "第9回アイドルLIVEロワイヤル" + } ], + "hash" : "688a91e414403d1ce4dca71260eef0e1", + "id" : "3520502", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "ホップステップサマー", + "alias_name_display" : "ホップステップサマー", + "hash" : "3d198b386e57e5d7982ef82b7347f39a", + "id" : "3424701", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "ホップステップサマー", + "alias_name_display" : "ホップステップサマー", + "hash" : "266fa426c7b00f75b3148cb82ad3ec05", + "id" : "3524702", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "桃園花娘", + "alias_name_display" : "桃園花娘", + "hash" : "201c8374336e2c79188ec5840052aecb", + "id" : "3431001", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "桃園花娘", + "alias_name_display" : "桃園花娘", + "hash" : "4b14cd287e67145814d5ddb0c187ae8a", + "id" : "3531002", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "ひらめき☆アンサー", + "alias_name_display" : "ひらめき☆アンサー", + "hash" : "93008f94a5c66e998d1a0e45e7bab89a", + "id" : "3434901", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "ひらめき☆アンサー", + "alias_name_display" : "ひらめき☆アンサー", + "hash" : "d2f0b1423a844ac537fa255c1e383b22", + "id" : "3534902", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "82", + "waist" : "57", + "weight" : "43" + } + } ], + "idol_id" : 149, + "idol_name" : "喜多見柚", + "idol_name_display" : "喜多見柚", + "units" : [ { + "id" : "101", + "name" : "ハロウィンヴァンパイア" + }, { + "id" : "163", + "name" : "フリルドスクエア" + } ] +}, { + "aliases" : [ { + "event" : [ { + "event_id" : 102, + "event_name" : "アイドルおもちつき大会" + } ], + "hash" : "d20b8ca340a2b6ee42797c966f3a79b3", + "id" : "3001801", + "profile" : { + "bust" : "76", + "height" : "156", + "hip" : "79", + "waist" : "55", + "weight" : "42" + } + }, { + "event" : [ { + "event_id" : 102, + "event_name" : "アイドルおもちつき大会" + } ], + "hash" : "8c704c3ba88575367b7800a88e72eb9a", + "id" : "3101802", + "profile" : { + "bust" : "76", + "height" : "156", + "hip" : "79", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "ひな祭り", + "alias_name_display" : "ひな祭り", + "event" : [ { + "event_id" : 202, + "event_name" : "アイドルサバイバルひな祭り編" + } ], + "hash" : "c21299fa797c699cd1962bfc3803e736", + "id" : "3203601", + "profile" : { + "bust" : "76", + "height" : "156", + "hip" : "79", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "ひな祭り", + "alias_name_display" : "ひな祭り", + "event" : [ { + "event_id" : 202, + "event_name" : "アイドルサバイバルひな祭り編" + } ], + "hash" : "fc4b2b4edf58524ab549dc95abef1c44", + "id" : "3303602", + "profile" : { + "bust" : "76", + "height" : "156", + "hip" : "79", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "ハロウィンパーティー", + "alias_name_display" : "ハロウィンパーティー", + "hash" : "e6e361376fc4005af6546bf627d8cdfe", + "id" : "3206501", + "profile" : { + "bust" : "76", + "height" : "156", + "hip" : "79", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "ハロウィンパーティー", + "alias_name_display" : "ハロウィンパーティー", + "hash" : "6157e73a9eb2323a89bc9948fe7e5aa9", + "id" : "3306502", + "profile" : { + "bust" : "76", + "height" : "156", + "hip" : "79", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "テーマパーク", + "alias_name_display" : "テーマパーク", + "event" : [ { + "event_id" : 210, + "event_name" : "アイドルサバイバルinテーマパーク2013" + } ], + "hash" : "99f4555961526cda5c748127bef7870e", + "id" : "3210201", + "profile" : { + "bust" : "76", + "height" : "156", + "hip" : "79", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "テーマパーク", + "alias_name_display" : "テーマパーク", + "event" : [ { + "event_id" : 210, + "event_name" : "アイドルサバイバルinテーマパーク2013" + } ], + "hash" : "15b1e56e15dc511c428b7ef1b46ea4c9", + "id" : "3310202", + "profile" : { + "bust" : "76", + "height" : "156", + "hip" : "79", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "ハロウィンナイト", + "alias_name_display" : "ハロウィンナイト", + "hash" : "c038a0397e933eae426c272eff7f482e", + "id" : "3213101", + "profile" : { + "bust" : "76", + "height" : "156", + "hip" : "79", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "ハロウィンナイト", + "alias_name_display" : "ハロウィンナイト", + "hash" : "258fd3521d2a8454f156a30388a15342", + "id" : "3313102", + "profile" : { + "bust" : "76", + "height" : "156", + "hip" : "79", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "食えないスタイル", + "alias_name_display" : "食えないスタイル", + "event" : [ { + "event_id" : 710, + "event_name" : "サンタDEドリームLIVEフェスティバル" + } ], + "hash" : "63b4835e9f506fd149e300b69c640ed1", + "id" : "3220701", + "profile" : { + "bust" : "76", + "height" : "156", + "hip" : "79", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "食えないスタイル", + "alias_name_display" : "食えないスタイル", + "event" : [ { + "event_id" : 710, + "event_name" : "サンタDEドリームLIVEフェスティバル" + } ], + "hash" : "a8f9ae620ce05852ae3e99e6540dd062", + "id" : "3320702", + "profile" : { + "bust" : "76", + "height" : "156", + "hip" : "79", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "メデタイガール", + "alias_name_display" : "メデタイガール", + "hash" : "6d67f83eba3d6fe3c8831b9f6767b518", + "id" : "3225201", + "profile" : { + "bust" : "76", + "height" : "156", + "hip" : "79", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "メデタイガール", + "alias_name_display" : "メデタイガール", + "hash" : "fd402f4d39b07f0d650348588df99235", + "id" : "3325202", + "profile" : { + "bust" : "76", + "height" : "156", + "hip" : "79", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "ホーリーコーラス", + "alias_name_display" : "ホーリーコーラス", + "hash" : "f6a5cf105b88bd60cc66bb32499f6895", + "id" : "3231701", + "profile" : { + "bust" : "76", + "height" : "156", + "hip" : "79", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "ホーリーコーラス", + "alias_name_display" : "ホーリーコーラス", + "hash" : "d0d0373d0b07622c508aa5eeee1cc1f4", + "id" : "3331702", + "profile" : { + "bust" : "76", + "height" : "156", + "hip" : "79", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "ジ・アース", + "alias_name_display" : "ジ・アース", + "hash" : "c8bd49d003289cdd8def158eb3588760", + "id" : "3234401", + "profile" : { + "bust" : "76", + "height" : "156", + "hip" : "79", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "ジ・アース", + "alias_name_display" : "ジ・アース", + "hash" : "6f796b27b0eab4db53272233989c4a30", + "id" : "3334402", + "profile" : { + "bust" : "76", + "height" : "156", + "hip" : "79", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "みんなの太陽", + "alias_name_display" : "みんなの太陽", + "hash" : "2c81a2d0f28abd511851284ad313c915", + "id" : "3415501", + "profile" : { + "bust" : "76", + "height" : "156", + "hip" : "79", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "みんなの太陽", + "alias_name_display" : "みんなの太陽", + "hash" : "4c250678e7988d72cd313a1a87e5c3de", + "id" : "3515502", + "profile" : { + "bust" : "76", + "height" : "156", + "hip" : "79", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "ファッション☆モンスター", + "alias_name_display" : "ファッション☆モンスター", + "event" : [ { + "event_id" : 1402, + "event_name" : "第2回ぷちデレラコレクション" + } ], + "hash" : "0eed071ca9aabe1e0dc62630767ae5f8", + "id" : "3423601", + "profile" : { + "bust" : "76", + "height" : "156", + "hip" : "79", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "ファッション☆モンスター", + "alias_name_display" : "ファッション☆モンスター", + "event" : [ { + "event_id" : 1402, + "event_name" : "第2回ぷちデレラコレクション" + } ], + "hash" : "8ac2145403872fa99ee3b074be4c4dc6", + "id" : "3523602", + "profile" : { + "bust" : "76", + "height" : "156", + "hip" : "79", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "ファニー・ロワイヤル", + "alias_name_display" : "ファニー・ロワイヤル", + "event" : [ { + "event_id" : 818, + "event_name" : "アイドルLIVEロワイヤル 雨の日SP" + } ], + "hash" : "61fe8ff699e7e51036c0faf6f85f7d57", + "id" : "3433101", + "profile" : { + "bust" : "76", + "height" : "156", + "hip" : "79", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "ファニー・ロワイヤル", + "alias_name_display" : "ファニー・ロワイヤル", + "event" : [ { + "event_id" : 818, + "event_name" : "アイドルLIVEロワイヤル 雨の日SP" + } ], + "hash" : "ddf643f7944b7f55b9867bb33c17e9c6", + "id" : "3533102", + "profile" : { + "bust" : "76", + "height" : "156", + "hip" : "79", + "waist" : "55", + "weight" : "42" + } + } ], + "idol_id" : 150, + "idol_name" : "上田鈴帆", + "idol_name_display" : "上田鈴帆", + "units" : [ { + "id" : "6", + "name" : "笑美と鈴帆の爆笑エブリデイ" + }, { + "id" : "161", + "name" : "ハロウィンナイト" + }, { + "id" : "180", + "name" : "ハロウィンパーティー" + }, { + "id" : "190", + "name" : "サマプリ" + }, { + "id" : "211", + "name" : "ワンダー・フル" + } ] +}, { + "aliases" : [ { + "hash" : "f11481993da76a38d7f289c35cae41f5", + "id" : "3002001", + "profile" : { + "bust" : "92", + "height" : "162", + "hip" : "93", + "waist" : "65", + "weight" : "58" + } + }, { + "hash" : "6393963b2feeb36881d4263c72bfa0cd", + "id" : "3102002", + "profile" : { + "bust" : "92", + "height" : "162", + "hip" : "93", + "waist" : "67", + "weight" : "59" + } + }, { + "alias_name" : "浴衣祭り", + "alias_name_display" : "浴衣祭り", + "hash" : "a9b3485ee109892c4a263b990ed57be6", + "id" : "3205201", + "profile" : { + "bust" : "92", + "height" : "162", + "hip" : "93", + "waist" : "67", + "weight" : "59" + } + }, { + "alias_name" : "浴衣祭り", + "alias_name_display" : "浴衣祭り", + "hash" : "882d09cd56864c6f8e27e24437215b42", + "id" : "3305202", + "profile" : { + "bust" : "92", + "height" : "162", + "hip" : "93", + "waist" : "67", + "weight" : "59" + } + }, { + "alias_name" : "デビリッシュゴシック", + "alias_name_display" : "デビリッシュゴシック", + "hash" : "99a8eba4e46f0b16a51a372d4a4dc565", + "id" : "3210101", + "profile" : { + "bust" : "92", + "height" : "162", + "hip" : "93", + "waist" : "67", + "weight" : "59" + } + }, { + "alias_name" : "デビリッシュゴシック", + "alias_name_display" : "デビリッシュゴシック", + "hash" : "721088da0e9e7de67a903eea16dd5b4c", + "id" : "3310102", + "profile" : { + "bust" : "92", + "height" : "162", + "hip" : "93", + "waist" : "67", + "weight" : "59" + } + }, { + "alias_name" : "ぷにぷにサマー", + "alias_name_display" : "ぷにぷにサマー", + "event" : [ { + "event_id" : 506, + "event_name" : "アイドルLIVEツアーinハワイ" + } ], + "hash" : "393c6cafd2d14a97c4949f0bf386bb03", + "id" : "3212101", + "profile" : { + "bust" : "92", + "height" : "162", + "hip" : "93", + "waist" : "67", + "weight" : "59" + } + }, { + "alias_name" : "ぷにぷにサマー", + "alias_name_display" : "ぷにぷにサマー", + "event" : [ { + "event_id" : 506, + "event_name" : "アイドルLIVEツアーinハワイ" + } ], + "hash" : "ad08ca71aac4affbd98e2c8613e2ef72", + "id" : "3312102", + "profile" : { + "bust" : "92", + "height" : "162", + "hip" : "93", + "waist" : "67", + "weight" : "59" + } + }, { + "alias_name" : "あまあまボディ", + "alias_name_display" : "あまあまボディ", + "event" : [ { + "event_id" : 1301, + "event_name" : "プロダクションマッチフェスティバルS" + } ], + "hash" : "5feee873f7f71f93bc9c64f7488223ee", + "id" : "3218001", + "profile" : { + "bust" : "92", + "height" : "162", + "hip" : "93", + "waist" : "67", + "weight" : "59" + } + }, { + "alias_name" : "あまあまボディ", + "alias_name_display" : "あまあまボディ", + "event" : [ { + "event_id" : 1301, + "event_name" : "プロダクションマッチフェスティバルS" + } ], + "hash" : "1606de8faf4939054583ca16ef1d834e", + "id" : "3318002", + "profile" : { + "bust" : "92", + "height" : "162", + "hip" : "93", + "waist" : "67", + "weight" : "59" + } + }, { + "alias_name" : "自慢の一皿", + "alias_name_display" : "自慢の一皿", + "event" : [ { + "event_id" : 519, + "event_name" : "美食公演 女神に捧ぐ御馳走" + } ], + "hash" : "2801a1e061cc7bd20fd826efef86e591", + "id" : "3323002", + "profile" : { + "bust" : "92", + "height" : "162", + "hip" : "93", + "waist" : "67", + "weight" : "59" + } + }, { + "alias_name" : "紅葉温泉", + "alias_name_display" : "紅葉温泉", + "hash" : "a0d8f9c70a90965f5383f23fc9297e73", + "id" : "3226201", + "profile" : { + "bust" : "92", + "height" : "162", + "hip" : "93", + "waist" : "67", + "weight" : "59" + } + }, { + "alias_name" : "紅葉温泉", + "alias_name_display" : "紅葉温泉", + "hash" : "edc726ca8c756384a88415b7a3caf667", + "id" : "3326202", + "profile" : { + "bust" : "92", + "height" : "162", + "hip" : "93", + "waist" : "67", + "weight" : "59" + } + }, { + "alias_name" : "ランプの魔神", + "alias_name_display" : "ランプの魔神", + "event" : [ { + "event_id" : 1902, + "event_name" : "御伽公演 おてんば姫とまぢヤバな魔法のランプ" + } ], + "hash" : "07db6378f0e35643cac8d82235b68123", + "id" : "3329702", + "profile" : { + "bust" : "92", + "height" : "162", + "hip" : "93", + "waist" : "67", + "weight" : "59" + } + }, { + "alias_name" : "プニョフワ乙女", + "alias_name_display" : "プニョフワ乙女", + "event" : [ { + "event_id" : 704, + "event_name" : "第4回ドリームLIVEフェスティバル" + } ], + "hash" : "c86d7c82683d60607bc5d143515334af", + "id" : "3409901", + "profile" : { + "bust" : "92", + "height" : "162", + "hip" : "93", + "waist" : "67", + "weight" : "59" + } + }, { + "alias_name" : "プニョフワ乙女", + "alias_name_display" : "プニョフワ乙女", + "event" : [ { + "event_id" : 704, + "event_name" : "第4回ドリームLIVEフェスティバル" + } ], + "hash" : "63bca4c7ba8800505ce5a061d4aee09c", + "id" : "3509902", + "profile" : { + "bust" : "92", + "height" : "162", + "hip" : "93", + "waist" : "67", + "weight" : "59" + } + }, { + "alias_name" : "ぷにむにフィーリング", + "alias_name_display" : "ぷにむにフィーリング", + "event" : [ { + "event_id" : "019", + "event_name" : "第19回プロダクションマッチフェスティバル" + } ], + "hash" : "322962fdcf32dd19ff02fc6cb50077a8", + "id" : "3418901", + "profile" : { + "bust" : "92", + "height" : "162", + "hip" : "93", + "waist" : "67", + "weight" : "59" + } + }, { + "alias_name" : "ぷにむにフィーリング", + "alias_name_display" : "ぷにむにフィーリング", + "event" : [ { + "event_id" : "019", + "event_name" : "第19回プロダクションマッチフェスティバル" + } ], + "hash" : "b469418a2073c780c8641fe2a23c7224", + "id" : "3518902", + "profile" : { + "bust" : "92", + "height" : "162", + "hip" : "93", + "waist" : "67", + "weight" : "59" + } + }, { + "alias_name" : "ぷにっとチアー", + "alias_name_display" : "ぷにっとチアー", + "event" : [ { + "event_id" : 1506, + "event_name" : "第6回チーム対抗トークバトルショー" + } ], + "hash" : "4b48f10d4de9328c9c106f9077981894", + "id" : "3430901", + "profile" : { + "bust" : "92", + "height" : "162", + "hip" : "93", + "waist" : "67", + "weight" : "59" + } + }, { + "alias_name" : "ぷにっとチアー", + "alias_name_display" : "ぷにっとチアー", + "event" : [ { + "event_id" : 1506, + "event_name" : "第6回チーム対抗トークバトルショー" + } ], + "hash" : "82e103ab4c545dc25fd404a6ff80ba59", + "id" : "3530902", + "profile" : { + "bust" : "92", + "height" : "162", + "hip" : "93", + "waist" : "67", + "weight" : "59" + } + }, { + "alias_name" : "ふわっと艶乙女", + "alias_name_display" : "ふわっと艶乙女", + "hash" : "6561e1ef73f3ae607ff507d0cb6596c6", + "id" : "3437601", + "profile" : { + "bust" : "92", + "height" : "162", + "hip" : "93", + "waist" : "67", + "weight" : "59" + } + }, { + "alias_name" : "ふわっと艶乙女", + "alias_name_display" : "ふわっと艶乙女", + "hash" : "f918315bf0b28276e87d685d545c8145", + "id" : "3537602", + "profile" : { + "bust" : "92", + "height" : "162", + "hip" : "93", + "waist" : "67", + "weight" : "59" + } + } ], + "idol_id" : 151, + "idol_name" : "海老原菜帆", + "idol_name_display" : "海老原菜帆", + "units" : [ { + "id" : "157", + "name" : "デビリッシュゴシック" + }, { + "id" : "178", + "name" : "からぱれ" + }, { + "id" : "206", + "name" : "セクシーボンデージ" + } ] +}, { + "aliases" : [ { + "event" : [ { + "event_id" : 303, + "event_name" : "アイドル強化合宿" + } ], + "hash" : "9d8f7ddf9814571ec92baa652f20ead5", + "id" : "3002401", + "profile" : { + "bust" : "77", + "height" : "157", + "hip" : "82", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "バレンタイン", + "alias_name_display" : "バレンタイン", + "hash" : "36e37884b950605dc92c789b5b270b37", + "id" : "3003701", + "profile" : { + "bust" : "77", + "height" : "157", + "hip" : "82", + "waist" : "56", + "weight" : "45" + } + } ], + "idol_id" : 152, + "idol_name" : "ルーキートレーナー", + "idol_name_display" : "ルーキートレーナー" +}, { + "aliases" : [ { + "hash" : "66fbc3ffdc1d467d4656be4e6a806c8d", + "id" : "3002501", + "profile" : { + "bust" : "105", + "height" : "170", + "hip" : "92", + "waist" : "64", + "weight" : "56" + } + }, { + "hash" : "73887de78a57a5c49170947f2b83c81b", + "id" : "3102502", + "profile" : { + "bust" : "105", + "height" : "170", + "hip" : "92", + "waist" : "64", + "weight" : "56" + } + }, { + "alias_name" : "マーメイドパラダイス", + "alias_name_display" : "マーメイドパラダイス", + "hash" : "07d404f5b5197204f9664334fa255730", + "id" : "3205801", + "profile" : { + "bust" : "105", + "height" : "170", + "hip" : "92", + "waist" : "64", + "weight" : "56" + } + }, { + "alias_name" : "マーメイドパラダイス", + "alias_name_display" : "マーメイドパラダイス", + "hash" : "69a5fd83ed2443c3bd79c2cc133c6334", + "id" : "3305802", + "profile" : { + "bust" : "105", + "height" : "170", + "hip" : "92", + "waist" : "64", + "weight" : "56" + } + }, { + "alias_name" : "浴衣祭り", + "alias_name_display" : "浴衣祭り", + "hash" : "6e35b42e385c8c1ba43173498fb1e76f", + "id" : "3211301", + "profile" : { + "bust" : "105", + "height" : "170", + "hip" : "92", + "waist" : "64", + "weight" : "56" + } + }, { + "alias_name" : "浴衣祭り", + "alias_name_display" : "浴衣祭り", + "hash" : "88101417f347a5f1a8f3eb488c36e8d2", + "id" : "3311302", + "profile" : { + "bust" : "105", + "height" : "170", + "hip" : "92", + "waist" : "64", + "weight" : "56" + } + }, { + "alias_name" : "ミルキーB.B", + "alias_name_display" : "ミルキーB.B", + "hash" : "77aa04216bfb980d6a349ebc31f297f5", + "id" : "3221601", + "profile" : { + "bust" : "105", + "height" : "170", + "hip" : "92", + "waist" : "64", + "weight" : "56" + } + }, { + "alias_name" : "ミルキーB.B", + "alias_name_display" : "ミルキーB.B", + "hash" : "bb05e3e826f6b264c9b9fab8920f40ca", + "id" : "3321602", + "profile" : { + "bust" : "105", + "height" : "170", + "hip" : "92", + "waist" : "64", + "weight" : "56" + } + }, { + "alias_name" : "ビーチガール", + "alias_name_display" : "ビーチガール", + "event" : [ { + "event_id" : 1703, + "event_name" : "アイドルプロデュース おいでよ!海の家" + } ], + "hash" : "a9916b3a3bfdeee7e137a0fe098260bc", + "id" : "3224101", + "profile" : { + "bust" : "105", + "height" : "170", + "hip" : "92", + "waist" : "64", + "weight" : "56" + } + }, { + "alias_name" : "ビーチガール", + "alias_name_display" : "ビーチガール", + "event" : [ { + "event_id" : 1703, + "event_name" : "アイドルプロデュース おいでよ!海の家" + } ], + "hash" : "cb6e0046c38105c34bf814d7de9faf54", + "id" : "3324102", + "profile" : { + "bust" : "105", + "height" : "170", + "hip" : "92", + "waist" : "64", + "weight" : "56" + } + }, { + "alias_name" : "ビーチガール・S", + "alias_name_display" : "ビーチガール・S", + "event" : [ { + "event_id" : 1703, + "event_name" : "アイドルプロデュース おいでよ!海の家" + } ], + "hash" : "f3339d2dacbd08cab3248fed296c152e", + "id" : "3224201", + "profile" : { + "bust" : "105", + "height" : "170", + "hip" : "92", + "waist" : "64", + "weight" : "56" + } + }, { + "alias_name" : "ビーチガール・S", + "alias_name_display" : "ビーチガール・S", + "event" : [ { + "event_id" : 1703, + "event_name" : "アイドルプロデュース おいでよ!海の家" + } ], + "hash" : "330125851af71481cec10cd6c08ead5d", + "id" : "3324202", + "profile" : { + "bust" : "105", + "height" : "170", + "hip" : "92", + "waist" : "64", + "weight" : "56" + } + }, { + "alias_name" : "バレンタインI.C", + "alias_name_display" : "バレンタインI.C", + "event" : [ { + "event_id" : 1209, + "event_name" : "アイドルチャレンジ チャレンジクッキング バレンタイン編" + } ], + "hash" : "64a0bb938d41f1029525df2e503ac1c4", + "id" : "3327702", + "profile" : { + "bust" : "105", + "height" : "170", + "hip" : "92", + "waist" : "64", + "weight" : "56" + } + }, { + "alias_name" : "コロッセオクイーン", + "alias_name_display" : "コロッセオクイーン", + "event" : [ { + "event_id" : 503, + "event_name" : "アイドルLIVEツアーinイタリア" + } ], + "hash" : "e70d367d497a566cf2c90eba7cf20acc", + "id" : "3405401", + "profile" : { + "bust" : "105", + "height" : "170", + "hip" : "92", + "waist" : "64", + "weight" : "56" + } + }, { + "alias_name" : "コロッセオクイーン", + "alias_name_display" : "コロッセオクイーン", + "event" : [ { + "event_id" : 503, + "event_name" : "アイドルLIVEツアーinイタリア" + } ], + "hash" : "0037cb7e98c14596a6eb124788dfb080", + "id" : "3505402", + "profile" : { + "bust" : "105", + "height" : "170", + "hip" : "92", + "waist" : "64", + "weight" : "56" + } + }, { + "alias_name" : "愛の癒し系", + "alias_name_display" : "愛の癒し系", + "hash" : "aa3c25c011a1152a9af8e920df5533c5", + "id" : "3411001", + "profile" : { + "bust" : "105", + "height" : "170", + "hip" : "92", + "waist" : "64", + "weight" : "56" + } + }, { + "alias_name" : "愛の癒し系", + "alias_name_display" : "愛の癒し系", + "hash" : "7ce85c1cb569dab668f55c5019084f36", + "id" : "3511002", + "profile" : { + "bust" : "105", + "height" : "170", + "hip" : "92", + "waist" : "64", + "weight" : "56" + } + }, { + "alias_name" : "癒しの満月", + "alias_name_display" : "癒しの満月", + "hash" : "04b085f6025a0db0dd34223ff1ecefbd", + "id" : "3413301", + "profile" : { + "bust" : "105", + "height" : "170", + "hip" : "92", + "waist" : "64", + "weight" : "56" + } + }, { + "alias_name" : "癒しの満月", + "alias_name_display" : "癒しの満月", + "hash" : "198d50500bd1408485c99c5a33719597", + "id" : "3513302", + "profile" : { + "bust" : "105", + "height" : "170", + "hip" : "92", + "waist" : "64", + "weight" : "56" + } + }, { + "alias_name" : "真夏の果実", + "alias_name_display" : "真夏の果実", + "event" : [ { + "event_id" : "018", + "event_name" : "第18回プロダクションマッチフェスティバル" + } ], + "hash" : "3b35a7be62c1baf6d0320e704af57c35", + "id" : "3416601", + "profile" : { + "bust" : "105", + "height" : "170", + "hip" : "92", + "waist" : "64", + "weight" : "56" + } + }, { + "alias_name" : "真夏の果実", + "alias_name_display" : "真夏の果実", + "event" : [ { + "event_id" : "018", + "event_name" : "第18回プロダクションマッチフェスティバル" + } ], + "hash" : "b0b2836b44bcc84f30cb2a0b4ee95811", + "id" : "3516602", + "profile" : { + "bust" : "105", + "height" : "170", + "hip" : "92", + "waist" : "64", + "weight" : "56" + } + }, { + "alias_name" : "たっぷりクッキング", + "alias_name_display" : "たっぷりクッキング", + "event" : [ { + "event_id" : 1209, + "event_name" : "アイドルチャレンジ チャレンジクッキング バレンタイン編" + } ], + "hash" : "429bd4b9d09119bf50561fd585ff2a03", + "id" : "3429901", + "profile" : { + "bust" : "105", + "height" : "170", + "hip" : "92", + "waist" : "64", + "weight" : "56" + } + }, { + "alias_name" : "たっぷりクッキング", + "alias_name_display" : "たっぷりクッキング", + "event" : [ { + "event_id" : 1209, + "event_name" : "アイドルチャレンジ チャレンジクッキング バレンタイン編" + } ], + "hash" : "06eb2a01d94dbc499b79359b3cff0fea", + "id" : "3529902", + "profile" : { + "bust" : "105", + "height" : "170", + "hip" : "92", + "waist" : "64", + "weight" : "56" + } + }, { + "alias_name" : "たっぷりクッキング・S", + "alias_name_display" : "たっぷりクッキング・S", + "event" : [ { + "event_id" : 1209, + "event_name" : "アイドルチャレンジ チャレンジクッキング バレンタイン編" + } ], + "hash" : "559790e9b6e4de4ac9449d337663ddbb", + "id" : "3430001", + "profile" : { + "bust" : "105", + "height" : "170", + "hip" : "92", + "waist" : "64", + "weight" : "56" + } + }, { + "alias_name" : "たっぷりクッキング・S", + "alias_name_display" : "たっぷりクッキング・S", + "event" : [ { + "event_id" : 1209, + "event_name" : "アイドルチャレンジ チャレンジクッキング バレンタイン編" + } ], + "hash" : "14c5a8ec192752cbd093a8f6273d2b1e", + "id" : "3530002", + "profile" : { + "bust" : "105", + "height" : "170", + "hip" : "92", + "waist" : "64", + "weight" : "56" + } + }, { + "alias_name" : "実りの季節", + "alias_name_display" : "実りの季節", + "event" : [ { + "event_id" : 724, + "event_name" : "第24回ドリームLIVEフェスティバル" + } ], + "hash" : "bbbfa253851f09e73d360a8d7e870e8c", + "id" : "3435101", + "profile" : { + "bust" : "105", + "height" : "170", + "hip" : "92", + "waist" : "64", + "weight" : "56" + } + }, { + "alias_name" : "実りの季節", + "alias_name_display" : "実りの季節", + "event" : [ { + "event_id" : 724, + "event_name" : "第24回ドリームLIVEフェスティバル" + } ], + "hash" : "c68c5ef6c59aa24884cab075a33569cc", + "id" : "3535102", + "profile" : { + "bust" : "105", + "height" : "170", + "hip" : "92", + "waist" : "64", + "weight" : "56" + } + }, { + "alias_name" : "バウンシーラウンド", + "alias_name_display" : "バウンシーラウンド", + "hash" : "bc1a87fb25e1da16048f98be8a1d3610", + "id" : "3438501", + "profile" : { + "bust" : "105", + "height" : "170", + "hip" : "92", + "waist" : "64", + "weight" : "56" + } + }, { + "alias_name" : "バウンシーラウンド", + "alias_name_display" : "バウンシーラウンド", + "hash" : "8f67ec464f14c69c9abff99d4e5c4eae", + "id" : "3538502", + "profile" : { + "bust" : "105", + "height" : "170", + "hip" : "92", + "waist" : "64", + "weight" : "56" + } + } ], + "idol_id" : 153, + "idol_name" : "及川雫", + "idol_name_display" : "及川雫", + "units" : [ { + "id" : "71", + "name" : "B.B" + }, { + "id" : "147", + "name" : "セクシーギルティ" + }, { + "id" : "182", + "name" : "マーメイドパラダイス" + }, { + "id" : "188", + "name" : "Sweetches" + } ] +}, { + "aliases" : [ { + "hash" : "95dfef96c030c77201ff9ed0faa2077f", + "id" : "3002601", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "77", + "waist" : "50", + "weight" : "41" + } + }, { + "hash" : "78df21dcef6a0526a64a6d9cac16b48c", + "id" : "3102602", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "77", + "waist" : "50", + "weight" : "41" + } + }, { + "alias_name" : "イタズラっ子", + "alias_name_display" : "イタズラっ子", + "event" : [ { + "event_id" : 205, + "event_name" : "アイドルサバイバルinサマーライブ" + } ], + "hash" : "14a463ebd0706f1db075f8cccb392178", + "id" : "3205701", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "77", + "waist" : "50", + "weight" : "41" + } + }, { + "alias_name" : "イタズラっ子", + "alias_name_display" : "イタズラっ子", + "event" : [ { + "event_id" : 205, + "event_name" : "アイドルサバイバルinサマーライブ" + } ], + "hash" : "20500acb55c3d5d486308c993316b64a", + "id" : "3305702", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "77", + "waist" : "50", + "weight" : "41" + } + }, { + "alias_name" : "イタズラゴシック", + "alias_name_display" : "イタズラゴシック", + "hash" : "37709b95b40e62f7d715e388278a899c", + "id" : "3212301", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "77", + "waist" : "50", + "weight" : "41" + } + }, { + "alias_name" : "イタズラゴシック", + "alias_name_display" : "イタズラゴシック", + "hash" : "d89af5643544548c921520265fa69492", + "id" : "3312302", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "77", + "waist" : "50", + "weight" : "41" + } + }, { + "alias_name" : "魔女っ娘I.C", + "alias_name_display" : "魔女っ娘I.C", + "event" : [ { + "event_id" : 1201, + "event_name" : "目指せ魔女っ娘 アイドルチャレンジ" + } ], + "hash" : "c48cd2738311b6a1f088e92adb23dab6", + "id" : "3317102", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "77", + "waist" : "50", + "weight" : "41" + } + }, { + "alias_name" : "秋色温泉", + "alias_name_display" : "秋色温泉", + "hash" : "8cb9abd592c10bbf1255a9d404541b5b", + "id" : "3220001", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "77", + "waist" : "50", + "weight" : "41" + } + }, { + "alias_name" : "秋色温泉", + "alias_name_display" : "秋色温泉", + "hash" : "48121be6ac23c40b833653f041f850e6", + "id" : "3320002", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "77", + "waist" : "50", + "weight" : "41" + } + }, { + "alias_name" : "ノルウェー紀行", + "alias_name_display" : "ノルウェー紀行", + "event" : [ { + "event_id" : 1705, + "event_name" : "アイドルプロデュース きらめくオーロラ紀行" + } ], + "hash" : "3b1f8e51a11ceb203de8a734f9f7dd35", + "id" : "3228001", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "77", + "waist" : "50", + "weight" : "41" + } + }, { + "alias_name" : "ノルウェー紀行", + "alias_name_display" : "ノルウェー紀行", + "event" : [ { + "event_id" : 1705, + "event_name" : "アイドルプロデュース きらめくオーロラ紀行" + } ], + "hash" : "822067804b45cef47ecf9c2a870d2338", + "id" : "3328002", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "77", + "waist" : "50", + "weight" : "41" + } + }, { + "alias_name" : "ノルウェー紀行・S", + "alias_name_display" : "ノルウェー紀行・S", + "event" : [ { + "event_id" : 1705, + "event_name" : "アイドルプロデュース きらめくオーロラ紀行" + } ], + "hash" : "b8546cf7912612caf25933c15242f9e1", + "id" : "3228101", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "77", + "waist" : "50", + "weight" : "41" + } + }, { + "alias_name" : "ノルウェー紀行・S", + "alias_name_display" : "ノルウェー紀行・S", + "event" : [ { + "event_id" : 1705, + "event_name" : "アイドルプロデュース きらめくオーロラ紀行" + } ], + "hash" : "3a09dcfe3af2d7bfba567bb4d0eba840", + "id" : "3328102", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "77", + "waist" : "50", + "weight" : "41" + } + }, { + "alias_name" : "スライリーボス", + "alias_name_display" : "スライリーボス", + "hash" : "1450cb40e9291f7b9da2581ab121abd3", + "id" : "3234101", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "77", + "waist" : "50", + "weight" : "41" + } + }, { + "alias_name" : "スライリーボス", + "alias_name_display" : "スライリーボス", + "hash" : "037fba15808ccc155155baa5294fc88b", + "id" : "3334102", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "77", + "waist" : "50", + "weight" : "41" + } + }, { + "alias_name" : "スクールデビル", + "alias_name_display" : "スクールデビル", + "hash" : "0fcdc2e5ed21fa7c29cc526213ddf9f7", + "id" : "3405901", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "77", + "waist" : "50", + "weight" : "41" + } + }, { + "alias_name" : "スクールデビル", + "alias_name_display" : "スクールデビル", + "hash" : "cf9738e0a6277c8199423e64327f9a0b", + "id" : "3505902", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "77", + "waist" : "50", + "weight" : "41" + } + }, { + "alias_name" : "ロワイヤルジョーカー", + "alias_name_display" : "ロワイヤルジョーカー", + "event" : [ { + "event_id" : 803, + "event_name" : "第3回アイドルLIVEロワイヤル" + } ], + "hash" : "1ea77064b2e69011cac2b271cea19e49", + "id" : "3411101", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "77", + "waist" : "50", + "weight" : "41" + } + }, { + "alias_name" : "ロワイヤルジョーカー", + "alias_name_display" : "ロワイヤルジョーカー", + "event" : [ { + "event_id" : 803, + "event_name" : "第3回アイドルLIVEロワイヤル" + } ], + "hash" : "de341f17a3de36ce56f9ed87c89942be", + "id" : "3511102", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "77", + "waist" : "50", + "weight" : "41" + } + }, { + "alias_name" : "マジカルガール・フレイム", + "alias_name_display" : "マジカルガール・フレイム", + "event" : [ { + "event_id" : 1201, + "event_name" : "目指せ魔女っ娘 アイドルチャレンジ" + } ], + "hash" : "89154211f3d3df8c15937f18b01c8641", + "id" : "3414401", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "77", + "waist" : "50", + "weight" : "41" + } + }, { + "alias_name" : "マジカルガール・フレイム", + "alias_name_display" : "マジカルガール・フレイム", + "event" : [ { + "event_id" : 1201, + "event_name" : "目指せ魔女っ娘 アイドルチャレンジ" + } ], + "hash" : "f1bdc15bec53fd74b3e11de6e3a77eab", + "id" : "3514402", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "77", + "waist" : "50", + "weight" : "41" + } + }, { + "alias_name" : "マジカルガールS・フレイム", + "alias_name_display" : "マジカルガールS・フレイム", + "event" : [ { + "event_id" : 1201, + "event_name" : "目指せ魔女っ娘 アイドルチャレンジ" + } ], + "hash" : "aeaa5782beec126061a02b18ddb73d77", + "id" : "3414501", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "77", + "waist" : "50", + "weight" : "41" + } + }, { + "alias_name" : "マジカルガールS・フレイム", + "alias_name_display" : "マジカルガールS・フレイム", + "event" : [ { + "event_id" : 1201, + "event_name" : "目指せ魔女っ娘 アイドルチャレンジ" + } ], + "hash" : "c8bfa6571c1447a4a3eacf97e2233006", + "id" : "3514502", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "77", + "waist" : "50", + "weight" : "41" + } + }, { + "alias_name" : "イタズラ☆クイーン", + "alias_name_display" : "イタズラ☆クイーン", + "event" : [ { + "event_id" : "020", + "event_name" : "第20回プロダクションマッチフェスティバル" + } ], + "hash" : "e2a0fb6aa0a659039f7f426e68ba3d5b", + "id" : "3421601", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "77", + "waist" : "50", + "weight" : "41" + } + }, { + "alias_name" : "イタズラ☆クイーン", + "alias_name_display" : "イタズラ☆クイーン", + "event" : [ { + "event_id" : "020", + "event_name" : "第20回プロダクションマッチフェスティバル" + } ], + "hash" : "3c37b1a01265b61ac9fe41f006a58536", + "id" : "3521602", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "77", + "waist" : "50", + "weight" : "41" + } + }, { + "alias_name" : "マーチング☆ラウド", + "alias_name_display" : "マーチング☆ラウド", + "hash" : "6f4015168a5dd90b7c312c398ea46a7b", + "id" : "3424401", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "77", + "waist" : "50", + "weight" : "41" + } + }, { + "alias_name" : "マーチング☆ラウド", + "alias_name_display" : "マーチング☆ラウド", + "hash" : "6ebb6a6bb44de19413523eb7e59051b7", + "id" : "3524402", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "77", + "waist" : "50", + "weight" : "41" + } + }, { + "alias_name" : "ライブリージョーカー", + "alias_name_display" : "ライブリージョーカー", + "event" : [ { + "event_id" : 725, + "event_name" : "第25回ドリームLIVEフェスティバル" + } ], + "hash" : "2c28f7721ac9396626a999e6339b2c88", + "id" : "3435801", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "77", + "waist" : "50", + "weight" : "41" + } + }, { + "alias_name" : "ライブリージョーカー", + "alias_name_display" : "ライブリージョーカー", + "event" : [ { + "event_id" : 725, + "event_name" : "第25回ドリームLIVEフェスティバル" + } ], + "hash" : "f6119202da4cb7287258017f533e28a7", + "id" : "3535802", + "profile" : { + "bust" : "75", + "height" : "148", + "hip" : "77", + "waist" : "50", + "weight" : "41" + } + } ], + "idol_id" : 154, + "idol_name" : "小関麗奈", + "idol_name_display" : "小関麗奈", + "units" : [ { + "id" : "46", + "name" : "ヒーローヴァーサス" + }, { + "id" : "59", + "name" : "ムシバレイナと小春ちゃん" + }, { + "id" : "154", + "name" : "秋色温泉" + }, { + "id" : "164", + "name" : "マジカルテット" + }, { + "id" : "214", + "name" : "L.M.B.G" + } ] +}, { + "aliases" : [ { + "hash" : "ce41501e26f10c602104c8ea99058fac", + "id" : "3002901", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "hash" : "9b84bbcea8121a56969c15b2173a4e41", + "id" : "3102902", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ショービズガール", + "alias_name_display" : "ショービズガール", + "hash" : "d080f0c1cd8fe5edd66a70752ad330f9", + "id" : "3207401", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ショービズガール", + "alias_name_display" : "ショービズガール", + "hash" : "11c15104d7999e6f18f959a5959525c1", + "id" : "3307402", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "エレガントスタイル", + "alias_name_display" : "エレガントスタイル", + "event" : [ { + "event_id" : "012", + "event_name" : "第12回プロダクションマッチフェスティバル" + } ], + "hash" : "7397b8aef0b374bfda98b7585fa5975a", + "id" : "3212601", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "エレガントスタイル", + "alias_name_display" : "エレガントスタイル", + "event" : [ { + "event_id" : "012", + "event_name" : "第12回プロダクションマッチフェスティバル" + } ], + "hash" : "2fcfc69158f584eda0c93f680cea3b9c", + "id" : "3312602", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "セレクトメイド", + "alias_name_display" : "セレクトメイド", + "hash" : "77254317d91c39c769bb9ea89a4dd7a9", + "id" : "3216001", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "セレクトメイド", + "alias_name_display" : "セレクトメイド", + "hash" : "eccdb961c4d022c046a8769df1db6ebb", + "id" : "3316002", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "シーパイレーツ", + "alias_name_display" : "シーパイレーツ", + "event" : [ { + "event_id" : 513, + "event_name" : "海賊公演 オーシャンクルーズ" + } ], + "hash" : "78f0e9e484234a2349b36a911138382b", + "id" : "3217901", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "シーパイレーツ", + "alias_name_display" : "シーパイレーツ", + "event" : [ { + "event_id" : 513, + "event_name" : "海賊公演 オーシャンクルーズ" + } ], + "hash" : "2140acc12cf828a2f2a3edb5d5b8c6fa", + "id" : "3317902", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ガールズモード", + "alias_name_display" : "ガールズモード", + "event" : [ { + "event_id" : 713, + "event_name" : "第13回ドリームLIVEフェスティバル" + } ], + "hash" : "ed18ec00d1882aab7d3bffd12eeb6ff7", + "id" : "3223201", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ガールズモード", + "alias_name_display" : "ガールズモード", + "event" : [ { + "event_id" : 713, + "event_name" : "第13回ドリームLIVEフェスティバル" + } ], + "hash" : "6a45bdcaacbacf08ace0cdf463f8564c", + "id" : "3323202", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ナデシコI.C", + "alias_name_display" : "ナデシコI.C", + "event" : [ { + "event_id" : 1207, + "event_name" : "目指せ大和撫子 アイドルチャレンジ" + } ], + "hash" : "45d8d8a1d481ed88a1b379ae38724496", + "id" : "3325402", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "フレッシュPG", + "alias_name_display" : "フレッシュPG", + "hash" : "c1de4993ff2cb610b6bb1df718fac98c", + "id" : "3227801", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "フレッシュPG", + "alias_name_display" : "フレッシュPG", + "hash" : "af02f2cc9eff0cc1b65cdfb25c4d7e46", + "id" : "3327802", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ビターバレンタイン", + "alias_name_display" : "ビターバレンタイン", + "hash" : "5d714716503f34d64e3793fd1a2f3d16", + "id" : "3405001", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ビターバレンタイン", + "alias_name_display" : "ビターバレンタイン", + "hash" : "3d652688429abc27f23dfe08203c0a2c", + "id" : "3505002", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "あたしの磨き方", + "alias_name_display" : "あたしの磨き方", + "event" : [ { + "event_id" : 1302, + "event_name" : "第2回プロダクションマッチフェスティバルS" + } ], + "hash" : "6c2a19b5543568e87ea94e385348ae09", + "id" : "3418101", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "あたしの磨き方", + "alias_name_display" : "あたしの磨き方", + "event" : [ { + "event_id" : 1302, + "event_name" : "第2回プロダクションマッチフェスティバルS" + } ], + "hash" : "80d9025585c14a2d82acfed3696ed523", + "id" : "3518102", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "華道の大和撫子", + "alias_name_display" : "華道の大和撫子", + "event" : [ { + "event_id" : 1207, + "event_name" : "目指せ大和撫子 アイドルチャレンジ" + } ], + "hash" : "c3dee40a36c07b80e0ac30fc33656961", + "id" : "3426601", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "華道の大和撫子", + "alias_name_display" : "華道の大和撫子", + "event" : [ { + "event_id" : 1207, + "event_name" : "目指せ大和撫子 アイドルチャレンジ" + } ], + "hash" : "d13a2d0afa9cf52d1649abe6cfb8d90c", + "id" : "3526602", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "華道の大和撫子・S", + "alias_name_display" : "華道の大和撫子・S", + "event" : [ { + "event_id" : 1207, + "event_name" : "目指せ大和撫子 アイドルチャレンジ" + } ], + "hash" : "a7a27109f7578b5ce87588c613000daf", + "id" : "3426701", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "華道の大和撫子・S", + "alias_name_display" : "華道の大和撫子・S", + "event" : [ { + "event_id" : 1207, + "event_name" : "目指せ大和撫子 アイドルチャレンジ" + } ], + "hash" : "1bf6398daee19fd22d81891ea63f807d", + "id" : "3526702", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ガールズアドバンス", + "alias_name_display" : "ガールズアドバンス", + "event" : [ { + "event_id" : 1408, + "event_name" : "第8回ぷちデレラコレクション" + } ], + "hash" : "2dc7b60647c7602b90c9424e99a4e8a2", + "id" : "3434601", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ガールズアドバンス", + "alias_name_display" : "ガールズアドバンス", + "event" : [ { + "event_id" : 1408, + "event_name" : "第8回ぷちデレラコレクション" + } ], + "hash" : "a0a4ffd9f9b3ccef042c60afb65fcf16", + "id" : "3534602", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "フェミニンチアー", + "alias_name_display" : "フェミニンチアー", + "event" : [ { + "event_id" : 1511, + "event_name" : "第11回チーム対抗トークバトルショー" + } ], + "hash" : "b52cc985711baa1789287d1e8aa54152", + "id" : "3438301", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "フェミニンチアー", + "alias_name_display" : "フェミニンチアー", + "event" : [ { + "event_id" : 1511, + "event_name" : "第11回チーム対抗トークバトルショー" + } ], + "hash" : "7b95eee4202b9c3265ba5a41194b1d34", + "id" : "3538302", + "profile" : { + "bust" : "84", + "height" : "160", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + } ], + "idol_id" : 155, + "idol_name" : "衛藤美紗希", + "idol_name_display" : "衛藤美紗希", + "units" : [ { + "id" : "89", + "name" : "ガールズ・パワー" + }, { + "id" : "210", + "name" : "ロワイヤルスタイルND" + } ] +}, { + "aliases" : [ { + "hash" : "f07c10e7c7e68491371b5c0b6fcbf1a6", + "id" : "3003101", + "profile" : { + "bust" : "73", + "height" : "142", + "hip" : "75", + "waist" : "53", + "weight" : "35" + } + }, { + "hash" : "efa9219cd5f005681c2c8f35faf2b281", + "id" : "3103102", + "profile" : { + "bust" : "73", + "height" : "142", + "hip" : "75", + "waist" : "53", + "weight" : "35" + } + }, { + "alias_name" : "クリスマスパーティー", + "alias_name_display" : "クリスマスパーティー", + "hash" : "1970c0edfde84ab46dac71b558e1b491", + "id" : "3207701", + "profile" : { + "bust" : "73", + "height" : "142", + "hip" : "75", + "waist" : "53", + "weight" : "35" + } + }, { + "alias_name" : "クリスマスパーティー", + "alias_name_display" : "クリスマスパーティー", + "hash" : "0fd92436ed9230b2eb474918832a34bf", + "id" : "3307702", + "profile" : { + "bust" : "73", + "height" : "142", + "hip" : "75", + "waist" : "53", + "weight" : "35" + } + }, { + "alias_name" : "絶叫★ヴァンパイア", + "alias_name_display" : "絶叫★ヴァンパイア", + "hash" : "34bf5a625a64f94a63b733219a6a5552", + "id" : "3405501", + "profile" : { + "bust" : "73", + "height" : "142", + "hip" : "75", + "waist" : "53", + "weight" : "35" + } + }, { + "alias_name" : "絶叫★ヴァンパイア", + "alias_name_display" : "絶叫★ヴァンパイア", + "hash" : "e6f94f2ab308857c0c0bb39db6f8b44b", + "id" : "3505502", + "profile" : { + "bust" : "73", + "height" : "142", + "hip" : "75", + "waist" : "53", + "weight" : "35" + } + }, { + "alias_name" : "あやしい少女", + "alias_name_display" : "あやしい少女", + "event" : [ { + "event_id" : "011", + "event_name" : "第11回プロダクションマッチフェスティバル" + } ], + "hash" : "0a7f97b5a04101aaf4c0f079bb970612", + "id" : "3407801", + "profile" : { + "bust" : "73", + "height" : "142", + "hip" : "75", + "waist" : "53", + "weight" : "35" + } + }, { + "alias_name" : "あやしい少女", + "alias_name_display" : "あやしい少女", + "event" : [ { + "event_id" : "011", + "event_name" : "第11回プロダクションマッチフェスティバル" + } ], + "hash" : "68cf9aa71ce3ce45e7b62eceec103417", + "id" : "3507802", + "profile" : { + "bust" : "73", + "height" : "142", + "hip" : "75", + "waist" : "53", + "weight" : "35" + } + }, { + "alias_name" : "ブラックバレンタイン", + "alias_name_display" : "ブラックバレンタイン", + "hash" : "f86bda677cae35d624ba494f3bb55b5c", + "id" : "3411401", + "profile" : { + "bust" : "73", + "height" : "142", + "hip" : "75", + "waist" : "53", + "weight" : "35" + } + }, { + "alias_name" : "ブラックバレンタイン", + "alias_name_display" : "ブラックバレンタイン", + "hash" : "70b15d671e957c51bbcf418fab66baef", + "id" : "3511402", + "profile" : { + "bust" : "73", + "height" : "142", + "hip" : "75", + "waist" : "53", + "weight" : "35" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "5c0203a4bfdf4ee9d147a04274cfa231", + "id" : "3413601", + "profile" : { + "bust" : "73", + "height" : "142", + "hip" : "75", + "waist" : "53", + "weight" : "35" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "069ce3db030a5ee081a1fa53626e4e30", + "id" : "3513602", + "profile" : { + "bust" : "73", + "height" : "142", + "hip" : "75", + "waist" : "53", + "weight" : "35" + } + }, { + "alias_name" : "ラブ☆キノコ", + "alias_name_display" : "ラブ☆キノコ", + "hash" : "7ffa484262f73c8a238d9246cf1b0814", + "id" : "3415001", + "profile" : { + "bust" : "73", + "height" : "142", + "hip" : "75", + "waist" : "53", + "weight" : "35" + } + }, { + "alias_name" : "ラブ☆キノコ", + "alias_name_display" : "ラブ☆キノコ", + "hash" : "981498bd59de8a3b833367e486c09b1a", + "id" : "3515002", + "profile" : { + "bust" : "73", + "height" : "142", + "hip" : "75", + "waist" : "53", + "weight" : "35" + } + }, { + "alias_name" : "ナイトメア・キノコ", + "alias_name_display" : "ナイトメア・キノコ", + "hash" : "e94008cbc6d10fcb7568c0350661979d", + "id" : "3422001", + "profile" : { + "bust" : "73", + "height" : "142", + "hip" : "75", + "waist" : "53", + "weight" : "35" + } + }, { + "alias_name" : "ナイトメア・キノコ", + "alias_name_display" : "ナイトメア・キノコ", + "hash" : "bf8d8709702aeee5c69ae801d11edd37", + "id" : "3522002", + "profile" : { + "bust" : "73", + "height" : "142", + "hip" : "75", + "waist" : "53", + "weight" : "35" + } + }, { + "alias_name" : "爆発★キノコ", + "alias_name_display" : "爆発★キノコ", + "hash" : "3f7874784573946c967d1fb2056dbeae", + "id" : "3428801", + "profile" : { + "bust" : "73", + "height" : "142", + "hip" : "75", + "waist" : "53", + "weight" : "35" + } + }, { + "alias_name" : "爆発★キノコ", + "alias_name_display" : "爆発★キノコ", + "hash" : "122c028d272b414af53fb6331e1e1408", + "id" : "3528802", + "profile" : { + "bust" : "73", + "height" : "142", + "hip" : "75", + "waist" : "53", + "weight" : "35" + } + }, { + "alias_name" : "熱風★マーメイド", + "alias_name_display" : "熱風★マーメイド", + "hash" : "d923a0d3e684bbc79bdb9c76538e3f27", + "id" : "3433501", + "profile" : { + "bust" : "73", + "height" : "142", + "hip" : "75", + "waist" : "53", + "weight" : "35" + } + }, { + "alias_name" : "熱風★マーメイド", + "alias_name_display" : "熱風★マーメイド", + "hash" : "1f8420bcda1dbe084bb88738dfb8ebee", + "id" : "3533502", + "profile" : { + "bust" : "73", + "height" : "142", + "hip" : "75", + "waist" : "53", + "weight" : "35" + } + }, { + "alias_name" : "5thアニバーサリー", + "alias_name_display" : "5thアニバーサリー", + "event" : [ { + "event_id" : 1708, + "event_name" : "アイドルプロデュース the 5th Anniversary" + } ], + "hash" : "6c3cedcaf10692458192b79ba6324334", + "id" : "3436401", + "profile" : { + "bust" : "73", + "height" : "142", + "hip" : "75", + "waist" : "53", + "weight" : "35" + } + }, { + "alias_name" : "5thアニバーサリー", + "alias_name_display" : "5thアニバーサリー", + "event" : [ { + "event_id" : 1708, + "event_name" : "アイドルプロデュース the 5th Anniversary" + } ], + "hash" : "957dfa01a9625ff274c6d7d600d5e163", + "id" : "3536402", + "profile" : { + "bust" : "73", + "height" : "142", + "hip" : "75", + "waist" : "53", + "weight" : "35" + } + }, { + "alias_name" : "5thアニバーサリー・S", + "alias_name_display" : "5thアニバーサリー・S", + "event" : [ { + "event_id" : 1708, + "event_name" : "アイドルプロデュース the 5th Anniversary" + } ], + "hash" : "965ed7a9106c0c6e8ffe951bbabbd530", + "id" : "3436501", + "profile" : { + "bust" : "73", + "height" : "142", + "hip" : "75", + "waist" : "53", + "weight" : "35" + } + }, { + "alias_name" : "5thアニバーサリー・S", + "alias_name_display" : "5thアニバーサリー・S", + "event" : [ { + "event_id" : 1708, + "event_name" : "アイドルプロデュース the 5th Anniversary" + } ], + "hash" : "22aced971fa5898c838516e6f15fe27d", + "id" : "3536502", + "profile" : { + "bust" : "73", + "height" : "142", + "hip" : "75", + "waist" : "53", + "weight" : "35" + } + } ], + "idol_id" : 156, + "idol_name" : "星輝子", + "idol_name_display" : "星輝子", + "units" : [ { + "id" : "17", + "name" : "サイレントスクリーマー" + }, { + "id" : "79", + "name" : "NiGHT ENCOUNTER" + }, { + "id" : "85", + "name" : "アンダーザデスク" + }, { + "id" : "90", + "name" : "カワイイボクと142's" + }, { + "id" : "94", + "name" : "シャイニングゴッドチェリー" + }, { + "id" : "108", + "name" : "individuals" + }, { + "id" : "111", + "name" : "アンチェイン・シグナル" + }, { + "id" : "187", + "name" : "NEX-US" + }, { + "id" : "203", + "name" : "ゼッケンズ" + } ] +}, { + "aliases" : [ { + "hash" : "b87dd23cc34603944cd75e87db7435d8", + "id" : "3003201", + "profile" : { + "bust" : "92", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "47" + } + }, { + "hash" : "fbc70efe03d1bd54fbd28175460510a8", + "id" : "3103202", + "profile" : { + "bust" : "92", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "47" + } + }, { + "alias_name" : "ハイレグマーメイド", + "alias_name_display" : "ハイレグマーメイド", + "hash" : "ecffbe70cac95bf6992918d5e652a8f7", + "id" : "3208301", + "profile" : { + "bust" : "92", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "47" + } + }, { + "alias_name" : "ハイレグマーメイド", + "alias_name_display" : "ハイレグマーメイド", + "hash" : "d5622930911cee8dfb082a6144ab24b9", + "id" : "3308302", + "profile" : { + "bust" : "92", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "47" + } + }, { + "alias_name" : "桜祭り", + "alias_name_display" : "桜祭り", + "event" : [ { + "event_id" : 406, + "event_name" : "アイドルプロデュース 春の桜祭り編" + } ], + "hash" : "e9f5d3a721a4e8b8dbbbab8eb237d7de", + "id" : "3209401", + "profile" : { + "bust" : "92", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "47" + } + }, { + "alias_name" : "桜祭り", + "alias_name_display" : "桜祭り", + "event" : [ { + "event_id" : 406, + "event_name" : "アイドルプロデュース 春の桜祭り編" + } ], + "hash" : "86dab11a4ee3cf83fe7e3e3a5372fc09", + "id" : "3309402", + "profile" : { + "bust" : "92", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "47" + } + }, { + "alias_name" : "桜祭りスマイル", + "alias_name_display" : "桜祭りスマイル", + "event" : [ { + "event_id" : 406, + "event_name" : "アイドルプロデュース 春の桜祭り編" + } ], + "hash" : "377fbdfb1d83aa9567368f6f6859ba59", + "id" : "3209501", + "profile" : { + "bust" : "92", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "47" + } + }, { + "alias_name" : "桜祭りスマイル", + "alias_name_display" : "桜祭りスマイル", + "event" : [ { + "event_id" : 406, + "event_name" : "アイドルプロデュース 春の桜祭り編" + } ], + "hash" : "d721cc2ce2e66a6b1e23fce55363a5cf", + "id" : "3309502", + "profile" : { + "bust" : "92", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "47" + } + }, { + "alias_name" : "ワーキング・ダーティ", + "alias_name_display" : "ワーキング・ダーティ", + "hash" : "d9dd32e691096c60b1c0601c95925066", + "id" : "3216901", + "profile" : { + "bust" : "92", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "47" + } + }, { + "alias_name" : "ワーキング・ダーティ", + "alias_name_display" : "ワーキング・ダーティ", + "hash" : "ef3322348ca2d2ea6fe9667562652fbd", + "id" : "3316902", + "profile" : { + "bust" : "92", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "47" + } + }, { + "alias_name" : "ウェディングI.C", + "alias_name_display" : "ウェディングI.C", + "event" : [ { + "event_id" : 1206, + "event_name" : "目指せウェディングモデル アイドルチャレンジ" + } ], + "hash" : "e752c3b2e14d3d50dce6c8218aa6e1a7", + "id" : "3323402", + "profile" : { + "bust" : "92", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "47" + } + }, { + "alias_name" : "デンジャーフレッシュ", + "alias_name_display" : "デンジャーフレッシュ", + "hash" : "41828c6114091713176d8f841add07d0", + "id" : "3225701", + "profile" : { + "bust" : "92", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "47" + } + }, { + "alias_name" : "デンジャーフレッシュ", + "alias_name_display" : "デンジャーフレッシュ", + "hash" : "411086d51c041d47c644c4acb2bcbb8f", + "id" : "3325702", + "profile" : { + "bust" : "92", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "47" + } + }, { + "alias_name" : "酔いどれお姉さん", + "alias_name_display" : "酔いどれお姉さん", + "hash" : "f0c2e711d5f1c4d49bfcd612c0903e33", + "id" : "3407501", + "profile" : { + "bust" : "92", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "47" + } + }, { + "alias_name" : "酔いどれお姉さん", + "alias_name_display" : "酔いどれお姉さん", + "hash" : "698e43a20181b5d63fde302f85247b21", + "id" : "3507502", + "profile" : { + "bust" : "92", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "47" + } + }, { + "alias_name" : "やりすぎお姉さん", + "alias_name_display" : "やりすぎお姉さん", + "event" : [ { + "event_id" : 212, + "event_name" : "アイドルサバイバル 秋の大運動会" + } ], + "hash" : "0dbb918c0150f688583630318d8e5cf0", + "id" : "3409301", + "profile" : { + "bust" : "92", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "47" + } + }, { + "alias_name" : "やりすぎお姉さん", + "alias_name_display" : "やりすぎお姉さん", + "event" : [ { + "event_id" : 212, + "event_name" : "アイドルサバイバル 秋の大運動会" + } ], + "hash" : "bccea5972ad490da05d26a045a2f988f", + "id" : "3509302", + "profile" : { + "bust" : "92", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "47" + } + }, { + "alias_name" : "デンジャラスアダルティ", + "alias_name_display" : "デンジャラスアダルティ", + "hash" : "60f7cf692d9c64ad96e43a115b9e9a76", + "id" : "3416401", + "profile" : { + "bust" : "92", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "47" + } + }, { + "alias_name" : "デンジャラスアダルティ", + "alias_name_display" : "デンジャラスアダルティ", + "hash" : "7f6090794a05cb3592915bf8b5be2d6a", + "id" : "3516402", + "profile" : { + "bust" : "92", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "47" + } + }, { + "alias_name" : "ボンバー・ロワイヤル", + "alias_name_display" : "ボンバー・ロワイヤル", + "event" : [ { + "event_id" : 810, + "event_name" : "アイドルLIVEロワイヤル バレンタインSP" + } ], + "hash" : "9205795bcfa72efcbaf3fbc3d3ed2507", + "id" : "3421501", + "profile" : { + "bust" : "92", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "47" + } + }, { + "alias_name" : "ボンバー・ロワイヤル", + "alias_name_display" : "ボンバー・ロワイヤル", + "event" : [ { + "event_id" : 810, + "event_name" : "アイドルLIVEロワイヤル バレンタインSP" + } ], + "hash" : "5c6a7d91faf763f00693b4571c4ea210", + "id" : "3521502", + "profile" : { + "bust" : "92", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "47" + } + }, { + "alias_name" : "はりきり花嫁", + "alias_name_display" : "はりきり花嫁", + "event" : [ { + "event_id" : 1206, + "event_name" : "目指せウェディングモデル アイドルチャレンジ" + } ], + "hash" : "1683444bf90b1c5b16e8d8cf56a46191", + "id" : "3424101", + "profile" : { + "bust" : "92", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "47" + } + }, { + "alias_name" : "はりきり花嫁", + "alias_name_display" : "はりきり花嫁", + "event" : [ { + "event_id" : 1206, + "event_name" : "目指せウェディングモデル アイドルチャレンジ" + } ], + "hash" : "570d11792a06edcd84948256ea98650c", + "id" : "3524102", + "profile" : { + "bust" : "92", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "47" + } + }, { + "alias_name" : "はりきり花嫁・S", + "alias_name_display" : "はりきり花嫁・S", + "event" : [ { + "event_id" : 1206, + "event_name" : "目指せウェディングモデル アイドルチャレンジ" + } ], + "hash" : "549cdd87b8efe48b3bc5de9aff27424c", + "id" : "3424201", + "profile" : { + "bust" : "92", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "47" + } + }, { + "alias_name" : "はりきり花嫁・S", + "alias_name_display" : "はりきり花嫁・S", + "event" : [ { + "event_id" : 1206, + "event_name" : "目指せウェディングモデル アイドルチャレンジ" + } ], + "hash" : "8d93c8ee952ca04150a7dd645b4be51f", + "id" : "3524202", + "profile" : { + "bust" : "92", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "47" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "40e5ce644fe9b9d8d4db3797c8df1636", + "id" : "3427701", + "profile" : { + "bust" : "92", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "47" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "6967d76548f6c4bcefbdea44d9f0058a", + "id" : "3527702", + "profile" : { + "bust" : "92", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "47" + } + }, { + "alias_name" : "極楽お姉さん", + "alias_name_display" : "極楽お姉さん", + "hash" : "bf738f2f9689ce80fd3c885b1baf80f7", + "id" : "3432601", + "profile" : { + "bust" : "92", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "47" + } + }, { + "alias_name" : "極楽お姉さん", + "alias_name_display" : "極楽お姉さん", + "hash" : "c0b85368c419f35c0f544181e7b07d0c", + "id" : "3532602", + "profile" : { + "bust" : "92", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "47" + } + }, { + "alias_name" : "深秋いろは", + "alias_name_display" : "深秋いろは", + "hash" : "d6f4c8132723e974386c6f16355d77b3", + "id" : "3435901", + "profile" : { + "bust" : "92", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "47" + } + }, { + "alias_name" : "深秋いろは", + "alias_name_display" : "深秋いろは", + "hash" : "5d00b2bc12676b4ae3679763dab02d1c", + "id" : "3535902", + "profile" : { + "bust" : "92", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "47" + } + }, { + "alias_name" : "ギルティグローリー", + "alias_name_display" : "ギルティグローリー", + "hash" : "6d97cb9bb465d14cde626b232bb59928", + "id" : "3439701", + "profile" : { + "bust" : "92", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "47" + } + }, { + "alias_name" : "ギルティグローリー", + "alias_name_display" : "ギルティグローリー", + "hash" : "c28e1707af95249b5b67568cfb748a50", + "id" : "3539702", + "profile" : { + "bust" : "92", + "height" : "152", + "hip" : "84", + "waist" : "58", + "weight" : "47" + } + } ], + "idol_id" : 157, + "idol_name" : "片桐早苗", + "idol_name_display" : "片桐早苗", + "units" : [ { + "id" : "8", + "name" : "越後小町" + }, { + "id" : "19", + "name" : "さつきの頃" + }, { + "id" : "88", + "name" : "桜花小町" + }, { + "id" : "124", + "name" : "女神たちの夏宴" + }, { + "id" : "147", + "name" : "セクシーギルティ" + }, { + "id" : "184", + "name" : "宵乙女" + }, { + "id" : "202", + "name" : "サンフラワー" + } ] +}, { + "aliases" : [ { + "hash" : "c55d799ec6a7189b86c2c61309ff705e", + "id" : "3003301", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "80", + "waist" : "58", + "weight" : "44" + } + }, { + "hash" : "af03f83edd3f6081e7a94f7dee76c69c", + "id" : "3103302", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "80", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "スパニッシュスタイル", + "alias_name_display" : "スパニッシュスタイル", + "event" : [ { + "event_id" : 504, + "event_name" : "アイドルLIVEツアーinスペイン" + } ], + "hash" : "366697976ec9eadf5d9af8aa05627c06", + "id" : "3210001", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "80", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "スパニッシュスタイル", + "alias_name_display" : "スパニッシュスタイル", + "event" : [ { + "event_id" : 504, + "event_name" : "アイドルLIVEツアーinスペイン" + } ], + "hash" : "0704a849a66af4661b4b5fca9bdd29d8", + "id" : "3310002", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "80", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "おちゃめなサイキッカー", + "alias_name_display" : "おちゃめなサイキッカー", + "hash" : "8e63cd4a640f8f1d81aa58b0f5b965e1", + "id" : "3211801", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "80", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "おちゃめなサイキッカー", + "alias_name_display" : "おちゃめなサイキッカー", + "hash" : "206627c86b320778aa94bb336021a57f", + "id" : "3311802", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "80", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "ビター&スウィート", + "alias_name_display" : "ビター&スウィート", + "hash" : "ffb2c98591b0c9c025db8d210b9eceb7", + "id" : "3227501", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "80", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "ビター&スウィート", + "alias_name_display" : "ビター&スウィート", + "hash" : "1bad11e08f6d67660858e2a625af9706", + "id" : "3327502", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "80", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "湯けむりサイキッカー", + "alias_name_display" : "湯けむりサイキッカー", + "hash" : "0662af7af3c7bf97ba34266f06737dd4", + "id" : "3409501", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "80", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "湯けむりサイキッカー", + "alias_name_display" : "湯けむりサイキッカー", + "hash" : "756110c37e69d992aa3a8d4ba539f3e8", + "id" : "3509502", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "80", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "3d3269835487382b0df4e3c8579bb76a", + "id" : "3413701", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "80", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "753c417a7ec341db7cea1b1310039afe", + "id" : "3513702", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "80", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "サイキックマジシャン", + "alias_name_display" : "サイキックマジシャン", + "hash" : "6b9c0707971d95fd191fea1138c10722", + "id" : "3414001", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "80", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "サイキックマジシャン", + "alias_name_display" : "サイキックマジシャン", + "hash" : "cab748d4dfb5cbe80afb594b3c3f3a2c", + "id" : "3514002", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "80", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "大地のぱわー☆", + "alias_name_display" : "大地のぱわー☆", + "event" : [ { + "event_id" : 414, + "event_name" : "どうぶつアドベンチャー オーストラリア編" + } ], + "hash" : "99264bf5143c8ef20d5799bcee877921", + "id" : "3417101", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "80", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "大地のぱわー☆", + "alias_name_display" : "大地のぱわー☆", + "event" : [ { + "event_id" : 414, + "event_name" : "どうぶつアドベンチャー オーストラリア編" + } ], + "hash" : "9549306aa4c5394f93ee2eb93809485d", + "id" : "3517102", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "80", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "さいきっく☆ボイス", + "alias_name_display" : "さいきっく☆ボイス", + "hash" : "4d914ac85a06f7643c5b327242a6c30b", + "id" : "3422201", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "80", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "さいきっく☆ボイス", + "alias_name_display" : "さいきっく☆ボイス", + "hash" : "210300780515553e62e96bea844e9a8d", + "id" : "3522202", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "80", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "ミラクルパティシエール☆", + "alias_name_display" : "ミラクルパティシエール☆", + "event" : [ { + "event_id" : 1801, + "event_name" : "アイドルバラエティ 究極のショートケーキを作ろう!" + } ], + "hash" : "e60c6c9469235806c84c200bd1336dc6", + "id" : "3426301", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "80", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "ミラクルパティシエール☆", + "alias_name_display" : "ミラクルパティシエール☆", + "event" : [ { + "event_id" : 1801, + "event_name" : "アイドルバラエティ 究極のショートケーキを作ろう!" + } ], + "hash" : "cd82605167df5280f7a1496dfb819801", + "id" : "3526302", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "80", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "海のぱわー☆", + "alias_name_display" : "海のぱわー☆", + "event" : [ { + "event_id" : 1508, + "event_name" : "チーム対抗トークバトルショー in SUMMER" + } ], + "hash" : "fcadcbebe66c5cbafbfcda3fde7aed3c", + "id" : "3434301", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "80", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "海のぱわー☆", + "alias_name_display" : "海のぱわー☆", + "event" : [ { + "event_id" : 1508, + "event_name" : "チーム対抗トークバトルショー in SUMMER" + } ], + "hash" : "c45a6475300f696474afa6e473eaef75", + "id" : "3534302", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "80", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "夕焼けテレパシー", + "alias_name_display" : "夕焼けテレパシー", + "hash" : "b0c6e9c33f363fe1bfea05c3d007983c", + "id" : "3438201", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "80", + "waist" : "58", + "weight" : "44" + } + }, { + "alias_name" : "夕焼けテレパシー", + "alias_name_display" : "夕焼けテレパシー", + "hash" : "64bfd146a17bcae9c53f47b939d3199a", + "id" : "3538202", + "profile" : { + "bust" : "81", + "height" : "157", + "hip" : "80", + "waist" : "58", + "weight" : "44" + } + } ], + "idol_id" : 158, + "idol_name" : "堀裕子", + "idol_name_display" : "堀裕子", + "units" : [ { + "id" : "15", + "name" : "サイキックヒーツ" + }, { + "id" : "28", + "name" : "スパニッシュスタイル" + }, { + "id" : "56", + "name" : "ミステリアスガールズ" + }, { + "id" : "80", + "name" : "P・U" + }, { + "id" : "147", + "name" : "セクシーギルティ" + }, { + "id" : "190", + "name" : "サマプリ" + }, { + "id" : "203", + "name" : "ゼッケンズ" + } ] +}, { + "aliases" : [ { + "hash" : "90e1a482a68770c0117ff910db7209c2", + "id" : "3003401", + "profile" : { + "bust" : "86", + "height" : "172", + "hip" : "83", + "waist" : "59", + "weight" : "49" + } + }, { + "hash" : "2deaaf0de326f04174e4c0187d20d1e2", + "id" : "3103402", + "profile" : { + "bust" : "86", + "height" : "172", + "hip" : "83", + "waist" : "59", + "weight" : "49" + } + }, { + "alias_name" : "浴衣祭り", + "alias_name_display" : "浴衣祭り", + "hash" : "9d3b68f92212bd2b95d73a5ba2358b4e", + "id" : "3211201", + "profile" : { + "bust" : "86", + "height" : "172", + "hip" : "83", + "waist" : "59", + "weight" : "49" + } + }, { + "alias_name" : "浴衣祭り", + "alias_name_display" : "浴衣祭り", + "hash" : "bb91c7a10a12b5a3ed01557f161ba4a1", + "id" : "3311202", + "profile" : { + "bust" : "86", + "height" : "172", + "hip" : "83", + "waist" : "59", + "weight" : "49" + } + }, { + "alias_name" : "スペーススタイル", + "alias_name_display" : "スペーススタイル", + "event" : [ { + "event_id" : 508, + "event_name" : "LIVEツアーカーニバルinスペースワールド" + } ], + "hash" : "c996e8c27de072d99879b307e536a874", + "id" : "3213501", + "profile" : { + "bust" : "86", + "height" : "172", + "hip" : "83", + "waist" : "59", + "weight" : "49" + } + }, { + "alias_name" : "スペーススタイル", + "alias_name_display" : "スペーススタイル", + "event" : [ { + "event_id" : 508, + "event_name" : "LIVEツアーカーニバルinスペースワールド" + } ], + "hash" : "d84b4a1cfb08637667606e72446d417b", + "id" : "3313502", + "profile" : { + "bust" : "86", + "height" : "172", + "hip" : "83", + "waist" : "59", + "weight" : "49" + } + }, { + "alias_name" : "パラダイスリゾート", + "alias_name_display" : "パラダイスリゾート", + "hash" : "115667c89bcb3a1e593ccddf15bb1709", + "id" : "3218501", + "profile" : { + "bust" : "86", + "height" : "172", + "hip" : "83", + "waist" : "59", + "weight" : "49" + } + }, { + "alias_name" : "パラダイスリゾート", + "alias_name_display" : "パラダイスリゾート", + "hash" : "d3a6e3bf2a9fa94c1acfb5b91dccce53", + "id" : "3318502", + "profile" : { + "bust" : "86", + "height" : "172", + "hip" : "83", + "waist" : "59", + "weight" : "49" + } + }, { + "alias_name" : "セルフセレクト", + "alias_name_display" : "セルフセレクト", + "hash" : "6d5fe6750042dc9c21589f254b91e1e5", + "id" : "3220301", + "profile" : { + "bust" : "86", + "height" : "172", + "hip" : "83", + "waist" : "59", + "weight" : "49" + } + }, { + "alias_name" : "セルフセレクト", + "alias_name_display" : "セルフセレクト", + "hash" : "0ed637b2de3041121021c52989c82533", + "id" : "3320302", + "profile" : { + "bust" : "86", + "height" : "172", + "hip" : "83", + "waist" : "59", + "weight" : "49" + } + }, { + "alias_name" : "人狼将軍", + "alias_name_display" : "人狼将軍", + "event" : [ { + "event_id" : 522, + "event_name" : "魔界公演 幽鬱女王とハロウィンの祝祭" + } ], + "hash" : "2dd54667369628560e906717044d5d92", + "id" : "3325902", + "profile" : { + "bust" : "86", + "height" : "172", + "hip" : "83", + "waist" : "59", + "weight" : "49" + } + }, { + "alias_name" : "人波のスイマー", + "alias_name_display" : "人波のスイマー", + "hash" : "1f39f1a654d566d8bf94dda9cc0d54f6", + "id" : "3412101", + "profile" : { + "bust" : "86", + "height" : "172", + "hip" : "83", + "waist" : "59", + "weight" : "49" + } + }, { + "alias_name" : "人波のスイマー", + "alias_name_display" : "人波のスイマー", + "hash" : "3615fdeb23d847c39fb844c9bf446ff9", + "id" : "3512102", + "profile" : { + "bust" : "86", + "height" : "172", + "hip" : "83", + "waist" : "59", + "weight" : "49" + } + }, { + "alias_name" : "ドルフィンチアー", + "alias_name_display" : "ドルフィンチアー", + "event" : [ { + "event_id" : 1501, + "event_name" : "チーム対抗トークバトルショー" + } ], + "hash" : "427b561348d55eed4db451a497176f95", + "id" : "3423101", + "profile" : { + "bust" : "86", + "height" : "172", + "hip" : "83", + "waist" : "59", + "weight" : "49" + } + }, { + "alias_name" : "ドルフィンチアー", + "alias_name_display" : "ドルフィンチアー", + "event" : [ { + "event_id" : 1501, + "event_name" : "チーム対抗トークバトルショー" + } ], + "hash" : "2ab8abfbcbada4e1877149d06f200fad", + "id" : "3523102", + "profile" : { + "bust" : "86", + "height" : "172", + "hip" : "83", + "waist" : "59", + "weight" : "49" + } + }, { + "alias_name" : "ホットクルージング", + "alias_name_display" : "ホットクルージング", + "hash" : "c4956742e83de544e7bb1f10bf4362e4", + "id" : "3433701", + "profile" : { + "bust" : "86", + "height" : "172", + "hip" : "83", + "waist" : "59", + "weight" : "49" + } + }, { + "alias_name" : "ホットクルージング", + "alias_name_display" : "ホットクルージング", + "hash" : "d97b128c8dbc9235834e5e045e75339c", + "id" : "3533702", + "profile" : { + "bust" : "86", + "height" : "172", + "hip" : "83", + "waist" : "59", + "weight" : "49" + } + }, { + "alias_name" : "グリルドスピリット", + "alias_name_display" : "グリルドスピリット", + "event" : [ { + "event_id" : 729, + "event_name" : "ドリームLIVEフェスティバル ゴールデンウィークSP" + } ], + "hash" : "6f5389395cfeec54633e3bd18ab02bd6", + "id" : "3439801", + "profile" : { + "bust" : "86", + "height" : "172", + "hip" : "83", + "waist" : "59", + "weight" : "49" + } + }, { + "alias_name" : "グリルドスピリット", + "alias_name_display" : "グリルドスピリット", + "event" : [ { + "event_id" : 729, + "event_name" : "ドリームLIVEフェスティバル ゴールデンウィークSP" + } ], + "hash" : "dd34bfe74931aeab10c7aaafe2832d86", + "id" : "3539802", + "profile" : { + "bust" : "86", + "height" : "172", + "hip" : "83", + "waist" : "59", + "weight" : "49" + } + } ], + "idol_id" : 159, + "idol_name" : "西島櫂", + "idol_name_display" : "西島櫂", + "units" : [ { + "id" : "95", + "name" : "スペーススタイル" + }, { + "id" : "122", + "name" : "ホットアートジャンピン" + } ] +}, { + "aliases" : [ { + "hash" : "d95254e127a889746034022f82cb5798", + "id" : "3003501", + "profile" : { + "bust" : "71", + "height" : "143", + "hip" : "73", + "waist" : "58", + "weight" : "38" + } + }, { + "hash" : "5fd2939e3e1b4403ed6f3886c48a1d32", + "id" : "3103502", + "profile" : { + "bust" : "71", + "height" : "143", + "hip" : "73", + "waist" : "58", + "weight" : "38" + } + }, { + "alias_name" : "ニューイヤースタイル", + "alias_name_display" : "ニューイヤースタイル", + "event" : [ { + "event_id" : 509, + "event_name" : "新春LIVEツアーカーニバル" + } ], + "hash" : "27886dda8120d9992e0bde75d3132487", + "id" : "3214901", + "profile" : { + "bust" : "71", + "height" : "143", + "hip" : "73", + "waist" : "58", + "weight" : "38" + } + }, { + "alias_name" : "ニューイヤースタイル", + "alias_name_display" : "ニューイヤースタイル", + "event" : [ { + "event_id" : 509, + "event_name" : "新春LIVEツアーカーニバル" + } ], + "hash" : "d9f8828d3ee7daf7c3287b4414d76aa0", + "id" : "3314902", + "profile" : { + "bust" : "71", + "height" : "143", + "hip" : "73", + "waist" : "58", + "weight" : "38" + } + }, { + "alias_name" : "サファリアドベンチャー", + "alias_name_display" : "サファリアドベンチャー", + "event" : [ { + "event_id" : 414, + "event_name" : "どうぶつアドベンチャー オーストラリア編" + } ], + "hash" : "81884ba2df20b5ecab3e6db70413b9c3", + "id" : "3219201", + "profile" : { + "bust" : "71", + "height" : "143", + "hip" : "73", + "waist" : "58", + "weight" : "38" + } + }, { + "alias_name" : "サファリアドベンチャー", + "alias_name_display" : "サファリアドベンチャー", + "event" : [ { + "event_id" : 414, + "event_name" : "どうぶつアドベンチャー オーストラリア編" + } ], + "hash" : "01a473d058eccb980f44c6cf2b07b540", + "id" : "3319202", + "profile" : { + "bust" : "71", + "height" : "143", + "hip" : "73", + "waist" : "58", + "weight" : "38" + } + }, { + "alias_name" : "サファリアドベンチャー・S", + "alias_name_display" : "サファリアドベンチャー・S", + "event" : [ { + "event_id" : 414, + "event_name" : "どうぶつアドベンチャー オーストラリア編" + } ], + "hash" : "280a9941a00ec7d1954fb70d5c806151", + "id" : "3219301", + "profile" : { + "bust" : "71", + "height" : "143", + "hip" : "73", + "waist" : "58", + "weight" : "38" + } + }, { + "alias_name" : "サファリアドベンチャー・S", + "alias_name_display" : "サファリアドベンチャー・S", + "event" : [ { + "event_id" : 414, + "event_name" : "どうぶつアドベンチャー オーストラリア編" + } ], + "hash" : "1b7a0a4e902ae4dcdcc7f2045f241656", + "id" : "3319302", + "profile" : { + "bust" : "71", + "height" : "143", + "hip" : "73", + "waist" : "58", + "weight" : "38" + } + }, { + "alias_name" : "乙女武将", + "alias_name_display" : "乙女武将", + "event" : [ { + "event_id" : 517, + "event_name" : "戦国公演 風来剣客伝" + } ], + "hash" : "9378c5e537cb2acc360dd0bdb0dfdd70", + "id" : "3221701", + "profile" : { + "bust" : "71", + "height" : "143", + "hip" : "73", + "waist" : "58", + "weight" : "38" + } + }, { + "alias_name" : "乙女武将", + "alias_name_display" : "乙女武将", + "event" : [ { + "event_id" : 517, + "event_name" : "戦国公演 風来剣客伝" + } ], + "hash" : "4c786bf74a7f7bf25daa7b91fe7c7e0a", + "id" : "3321702", + "profile" : { + "bust" : "71", + "height" : "143", + "hip" : "73", + "waist" : "58", + "weight" : "38" + } + }, { + "alias_name" : "サンタI.C", + "alias_name_display" : "サンタI.C", + "event" : [ { + "event_id" : 1208, + "event_name" : "目指せサンタクロース アイドルチャレンジ" + } ], + "hash" : "b7b438513131f3e40cd1bad252c38d1a", + "id" : "3326902", + "profile" : { + "bust" : "71", + "height" : "143", + "hip" : "73", + "waist" : "58", + "weight" : "38" + } + }, { + "alias_name" : "マーチングバンド", + "alias_name_display" : "マーチングバンド", + "hash" : "3e9ae5337b2b5222c5270c9561fbf0b8", + "id" : "3228301", + "profile" : { + "bust" : "71", + "height" : "143", + "hip" : "73", + "waist" : "58", + "weight" : "38" + } + }, { + "alias_name" : "マーチングバンド", + "alias_name_display" : "マーチングバンド", + "hash" : "1868d1975710558fe8bdea18220ce69f", + "id" : "3328302", + "profile" : { + "bust" : "71", + "height" : "143", + "hip" : "73", + "waist" : "58", + "weight" : "38" + } + }, { + "alias_name" : "セクシーパンサー", + "alias_name_display" : "セクシーパンサー", + "hash" : "8ad64acb66ae95edb5e955375d51b90b", + "id" : "3411801", + "profile" : { + "bust" : "71", + "height" : "143", + "hip" : "73", + "waist" : "58", + "weight" : "38" + } + }, { + "alias_name" : "セクシーパンサー", + "alias_name_display" : "セクシーパンサー", + "hash" : "5c68f5a84cbeaee1a887b7a1691577b4", + "id" : "3511802", + "profile" : { + "bust" : "71", + "height" : "143", + "hip" : "73", + "waist" : "58", + "weight" : "38" + } + }, { + "alias_name" : "スウィートハニーハート", + "alias_name_display" : "スウィートハニーハート", + "event" : [ { + "event_id" : "017", + "event_name" : "第17回プロダクションマッチフェスティバル" + } ], + "hash" : "5ab593bd5d05f2e496f088706687f7da", + "id" : "3414901", + "profile" : { + "bust" : "71", + "height" : "143", + "hip" : "73", + "waist" : "58", + "weight" : "38" + } + }, { + "alias_name" : "スウィートハニーハート", + "alias_name_display" : "スウィートハニーハート", + "event" : [ { + "event_id" : "017", + "event_name" : "第17回プロダクションマッチフェスティバル" + } ], + "hash" : "3a71223fc974c44985da17ab245e9401", + "id" : "3514902", + "profile" : { + "bust" : "71", + "height" : "143", + "hip" : "73", + "waist" : "58", + "weight" : "38" + } + }, { + "alias_name" : "ファントムレディ", + "alias_name_display" : "ファントムレディ", + "event" : [ { + "event_id" : 521, + "event_name" : "怪盗公演 美しき追跡者" + } ], + "hash" : "23c506cfa1119f316cd9b7e07e30b490", + "id" : "3425801", + "profile" : { + "bust" : "71", + "height" : "143", + "hip" : "73", + "waist" : "58", + "weight" : "38" + } + }, { + "alias_name" : "ファントムレディ", + "alias_name_display" : "ファントムレディ", + "event" : [ { + "event_id" : 521, + "event_name" : "怪盗公演 美しき追跡者" + } ], + "hash" : "c94eb2410c0f5c98643fa4cc5dc00a2d", + "id" : "3525802", + "profile" : { + "bust" : "71", + "height" : "143", + "hip" : "73", + "waist" : "58", + "weight" : "38" + } + }, { + "alias_name" : "どきどきクリスマス", + "alias_name_display" : "どきどきクリスマス", + "event" : [ { + "event_id" : 1208, + "event_name" : "目指せサンタクロース アイドルチャレンジ" + } ], + "hash" : "258f6b36adac5b6da65d8cf1ebf8a5a8", + "id" : "3428601", + "profile" : { + "bust" : "71", + "height" : "143", + "hip" : "73", + "waist" : "58", + "weight" : "38" + } + }, { + "alias_name" : "どきどきクリスマス", + "alias_name_display" : "どきどきクリスマス", + "event" : [ { + "event_id" : 1208, + "event_name" : "目指せサンタクロース アイドルチャレンジ" + } ], + "hash" : "3902966b6611ebad08386b3e8e1665c9", + "id" : "3528602", + "profile" : { + "bust" : "71", + "height" : "143", + "hip" : "73", + "waist" : "58", + "weight" : "38" + } + }, { + "alias_name" : "どきどきクリスマス・S", + "alias_name_display" : "どきどきクリスマス・S", + "event" : [ { + "event_id" : 1208, + "event_name" : "目指せサンタクロース アイドルチャレンジ" + } ], + "hash" : "9a8d92a67b66329fb01f13f151d0f9fb", + "id" : "3428701", + "profile" : { + "bust" : "71", + "height" : "143", + "hip" : "73", + "waist" : "58", + "weight" : "38" + } + }, { + "alias_name" : "どきどきクリスマス・S", + "alias_name_display" : "どきどきクリスマス・S", + "event" : [ { + "event_id" : 1208, + "event_name" : "目指せサンタクロース アイドルチャレンジ" + } ], + "hash" : "70e4a170e6d8ac1de9f6f103c9c3dfd1", + "id" : "3528702", + "profile" : { + "bust" : "71", + "height" : "143", + "hip" : "73", + "waist" : "58", + "weight" : "38" + } + }, { + "alias_name" : "オトメのポリシー", + "alias_name_display" : "オトメのポリシー", + "event" : [ { + "event_id" : 1409, + "event_name" : "第9回ぷちデレラコレクション" + } ], + "hash" : "64698d63ae6f12f30ac46ff5e61550f7", + "id" : "3435701", + "profile" : { + "bust" : "71", + "height" : "143", + "hip" : "73", + "waist" : "58", + "weight" : "38" + } + }, { + "alias_name" : "オトメのポリシー", + "alias_name_display" : "オトメのポリシー", + "event" : [ { + "event_id" : 1409, + "event_name" : "第9回ぷちデレラコレクション" + } ], + "hash" : "8311d865f81f1063978d094431e038d4", + "id" : "3535702", + "profile" : { + "bust" : "71", + "height" : "143", + "hip" : "73", + "waist" : "58", + "weight" : "38" + } + }, { + "alias_name" : "プラウディスポット", + "alias_name_display" : "プラウディスポット", + "hash" : "0bfee936f43c4008bb7446d70950d81a", + "id" : "3439501", + "profile" : { + "bust" : "71", + "height" : "143", + "hip" : "73", + "waist" : "58", + "weight" : "38" + } + }, { + "alias_name" : "プラウディスポット", + "alias_name_display" : "プラウディスポット", + "hash" : "076ff2416464383dd10c0895f1118c57", + "id" : "3539502", + "profile" : { + "bust" : "71", + "height" : "143", + "hip" : "73", + "waist" : "58", + "weight" : "38" + } + } ], + "idol_id" : 160, + "idol_name" : "的場梨沙", + "idol_name_display" : "的場梨沙", + "units" : [ { + "id" : "45", + "name" : "ビートシューター" + }, { + "id" : "98", + "name" : "ニューイヤースタイル" + }, { + "id" : "104", + "name" : "ももぺあべりー" + }, { + "id" : "177", + "name" : "桜舞隊" + }, { + "id" : "214", + "name" : "L.M.B.G" + } ] +}, { + "aliases" : [ { + "hash" : "d1aa3bc716ff2f22ebf41c1fe9b83266", + "id" : "3003601", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "55", + "weight" : "46" + } + }, { + "hash" : "c0f2d0167e0d5623f5bbc035eb412c26", + "id" : "3103602", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "55", + "weight" : "46" + } + }, { + "alias_name" : "ロワイヤルスタイルNP", + "alias_name_display" : "ロワイヤルスタイルNP", + "event" : [ { + "event_id" : 804, + "event_name" : "第4回アイドルLIVEロワイヤル" + } ], + "hash" : "15bad0e239396c14ba25c714bfdc9f9e", + "id" : "3216201", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "55", + "weight" : "46" + } + }, { + "alias_name" : "ロワイヤルスタイルNP", + "alias_name_display" : "ロワイヤルスタイルNP", + "event" : [ { + "event_id" : 804, + "event_name" : "第4回アイドルLIVEロワイヤル" + } ], + "hash" : "a878dde61487baf7b31c28093da0df1b", + "id" : "3316202", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "55", + "weight" : "46" + } + }, { + "alias_name" : "スクールガール", + "alias_name_display" : "スクールガール", + "hash" : "e99733454b58967e0160ccf1959de480", + "id" : "3219701", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "55", + "weight" : "46" + } + }, { + "alias_name" : "スクールガール", + "alias_name_display" : "スクールガール", + "hash" : "3675545fba8738750a3f60c573dde3a6", + "id" : "3319702", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "55", + "weight" : "46" + } + }, { + "alias_name" : "レディタイラント", + "alias_name_display" : "レディタイラント", + "hash" : "5e137bfe353c3f0d1425e32982c8f226", + "id" : "3221101", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "55", + "weight" : "46" + } + }, { + "alias_name" : "レディタイラント", + "alias_name_display" : "レディタイラント", + "hash" : "37865a0f7f25d1f9f20b1b0932fd0a15", + "id" : "3321102", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "55", + "weight" : "46" + } + }, { + "alias_name" : "サマービーチ", + "alias_name_display" : "サマービーチ", + "hash" : "8b9fcba48ed38f79114879a280024fd9", + "id" : "3230001", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "55", + "weight" : "46" + } + }, { + "alias_name" : "サマービーチ", + "alias_name_display" : "サマービーチ", + "hash" : "4ea2df5004456c968bdc36873337f71a", + "id" : "3330002", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "55", + "weight" : "46" + } + }, { + "alias_name" : "マジェスティックオーダー", + "alias_name_display" : "マジェスティックオーダー", + "hash" : "62e0388dff948bed0191ad5a3bbdc629", + "id" : "3232701", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "55", + "weight" : "46" + } + }, { + "alias_name" : "マジェスティックオーダー", + "alias_name_display" : "マジェスティックオーダー", + "hash" : "3ae8b4914157e90a7e0070f39d0afc10", + "id" : "3332702", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "55", + "weight" : "46" + } + }, { + "alias_name" : "メディアの女王", + "alias_name_display" : "メディアの女王", + "event" : [ { + "event_id" : 1102, + "event_name" : "第2回プロダクション対抗トークバトルショー" + } ], + "hash" : "79028ffc2d4dc2ab861d09cdaba8ba68", + "id" : "3414101", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "55", + "weight" : "46" + } + }, { + "alias_name" : "メディアの女王", + "alias_name_display" : "メディアの女王", + "event" : [ { + "event_id" : 1102, + "event_name" : "第2回プロダクション対抗トークバトルショー" + } ], + "hash" : "838a4c6a770f35ab005c376a6e480316", + "id" : "3514102", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "55", + "weight" : "46" + } + }, { + "alias_name" : "ベルベットクイーン", + "alias_name_display" : "ベルベットクイーン", + "hash" : "8b0c9ce3e5eb4ae076626729c5476784", + "id" : "3423501", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "55", + "weight" : "46" + } + }, { + "alias_name" : "ベルベットクイーン", + "alias_name_display" : "ベルベットクイーン", + "hash" : "d2c90e9e8f108c4d9d7e373ff21da35b", + "id" : "3523502", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "55", + "weight" : "46" + } + }, { + "alias_name" : "ドミネイトクリスマス", + "alias_name_display" : "ドミネイトクリスマス", + "hash" : "19df0dce995f785d6347b7905879b11d", + "id" : "3428301", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "55", + "weight" : "46" + } + }, { + "alias_name" : "ドミネイトクリスマス", + "alias_name_display" : "ドミネイトクリスマス", + "hash" : "7ade063367ad652bc5d05aa008a75237", + "id" : "3528302", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "55", + "weight" : "46" + } + } ], + "idol_id" : 161, + "idol_name" : "財前時子", + "idol_name_display" : "財前時子", + "units" : [ { + "id" : "209", + "name" : "ロワイヤルスタイルNP" + } ] +}, { + "aliases" : [ { + "hash" : "ddf7d3e8d751523496c1bb75a1aa2124", + "id" : "3003801", + "profile" : { + "bust" : "73", + "height" : "151", + "hip" : "73", + "waist" : "53", + "weight" : "40" + } + }, { + "hash" : "3217691d80f41d408aa0def73b17b549", + "id" : "3103802", + "profile" : { + "bust" : "73", + "height" : "151", + "hip" : "73", + "waist" : "53", + "weight" : "40" + } + }, { + "alias_name" : "T.B.チアーズ", + "alias_name_display" : "T.B.チアーズ", + "event" : [ { + "event_id" : 1104, + "event_name" : "プロダクション対抗トークバトルショーinSUMMER" + } ], + "hash" : "351c45b33901b324a5a827d191de82f4", + "id" : "3218601", + "profile" : { + "bust" : "73", + "height" : "151", + "hip" : "73", + "waist" : "53", + "weight" : "40" + } + }, { + "alias_name" : "T.B.チアーズ", + "alias_name_display" : "T.B.チアーズ", + "event" : [ { + "event_id" : 1104, + "event_name" : "プロダクション対抗トークバトルショーinSUMMER" + } ], + "hash" : "d7d7bfee2160054f5bd522c3f2d212af", + "id" : "3318602", + "profile" : { + "bust" : "73", + "height" : "151", + "hip" : "73", + "waist" : "53", + "weight" : "40" + } + }, { + "alias_name" : "ラブリーメイド", + "alias_name_display" : "ラブリーメイド", + "hash" : "481689442ba6392b4f7f7c1abf423cb1", + "id" : "3224901", + "profile" : { + "bust" : "73", + "height" : "151", + "hip" : "73", + "waist" : "53", + "weight" : "40" + } + }, { + "alias_name" : "ラブリーメイド", + "alias_name_display" : "ラブリーメイド", + "hash" : "640c775e1aa6d19d4498c15ab3d52875", + "id" : "3324902", + "profile" : { + "bust" : "73", + "height" : "151", + "hip" : "73", + "waist" : "53", + "weight" : "40" + } + }, { + "alias_name" : "湯浴みの踊子", + "alias_name_display" : "湯浴みの踊子", + "hash" : "fbb5477c8bd9c2c96d1ab988bc13176a", + "id" : "3418501", + "profile" : { + "bust" : "73", + "height" : "151", + "hip" : "73", + "waist" : "53", + "weight" : "40" + } + }, { + "alias_name" : "湯浴みの踊子", + "alias_name_display" : "湯浴みの踊子", + "hash" : "4774371e15f23136d1bd20eb453c9c17", + "id" : "3518502", + "profile" : { + "bust" : "73", + "height" : "151", + "hip" : "73", + "waist" : "53", + "weight" : "40" + } + }, { + "alias_name" : "詩詠みの赤ずきん", + "alias_name_display" : "詩詠みの赤ずきん", + "event" : [ { + "event_id" : 518, + "event_name" : "御伽公演 ふれあい狼と小さな赤ずきんちゃん" + } ], + "hash" : "959f6f75f20bd4127d4bf753ddbe6190", + "id" : "3422801", + "profile" : { + "bust" : "73", + "height" : "151", + "hip" : "73", + "waist" : "53", + "weight" : "40" + } + }, { + "alias_name" : "詩詠みの赤ずきん", + "alias_name_display" : "詩詠みの赤ずきん", + "event" : [ { + "event_id" : 518, + "event_name" : "御伽公演 ふれあい狼と小さな赤ずきんちゃん" + } ], + "hash" : "680348a16a23bd1ab4b7a2bca513b4fb", + "id" : "3522802", + "profile" : { + "bust" : "73", + "height" : "151", + "hip" : "73", + "waist" : "53", + "weight" : "40" + } + }, { + "alias_name" : "春光の少女", + "alias_name_display" : "春光の少女", + "hash" : "3f57a6b17e176fb96686d081f79e3231", + "id" : "3429001", + "profile" : { + "bust" : "73", + "height" : "151", + "hip" : "73", + "waist" : "53", + "weight" : "40" + } + }, { + "alias_name" : "春光の少女", + "alias_name_display" : "春光の少女", + "hash" : "38f60f4a3ee2a8ada8fed10044b64ea4", + "id" : "3529002", + "profile" : { + "bust" : "73", + "height" : "151", + "hip" : "73", + "waist" : "53", + "weight" : "40" + } + }, { + "alias_name" : "ひと結び", + "alias_name_display" : "ひと結び", + "event" : [ { + "event_id" : 720, + "event_name" : "第20回ドリームLIVEフェスティバル" + } ], + "hash" : "5bc53e5cbba34aff18f7009d50c17f0e", + "id" : "3431501", + "profile" : { + "bust" : "73", + "height" : "151", + "hip" : "73", + "waist" : "53", + "weight" : "40" + } + }, { + "alias_name" : "ひと結び", + "alias_name_display" : "ひと結び", + "event" : [ { + "event_id" : 720, + "event_name" : "第20回ドリームLIVEフェスティバル" + } ], + "hash" : "db65dbfc1d0326aaacab3176a4160e90", + "id" : "3531502", + "profile" : { + "bust" : "73", + "height" : "151", + "hip" : "73", + "waist" : "53", + "weight" : "40" + } + }, { + "alias_name" : "黄昏の映し人", + "alias_name_display" : "黄昏の映し人", + "hash" : "10e4d88969fd0d9e4b366ea9e3fccdb7", + "id" : "3435201", + "profile" : { + "bust" : "73", + "height" : "151", + "hip" : "73", + "waist" : "53", + "weight" : "40" + } + }, { + "alias_name" : "黄昏の映し人", + "alias_name_display" : "黄昏の映し人", + "hash" : "86045c8c5c85b81aa51156dbcdb0e1a5", + "id" : "3535202", + "profile" : { + "bust" : "73", + "height" : "151", + "hip" : "73", + "waist" : "53", + "weight" : "40" + } + } ], + "idol_id" : 162, + "idol_name" : "依田芳乃", + "idol_name_display" : "依田芳乃", + "units" : [ { + "id" : "20", + "name" : "山紫水明" + }, { + "id" : "179", + "name" : "春霞" + } ] +}, { + "aliases" : [ { + "hash" : "af64f16df0293b28f4bd8fd8e213b98a", + "id" : "3200101", + "profile" : { + "bust" : "81", + "height" : "158", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "hash" : "4f7f75478ec8088e7b44680ccf69e601", + "id" : "3300102", + "profile" : { + "bust" : "81", + "height" : "158", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "フラワーブーケ", + "alias_name_display" : "フラワーブーケ", + "hash" : "ea1c96b7284f8fbf531f1c7a17565d01", + "id" : "3204301", + "profile" : { + "bust" : "81", + "height" : "158", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "フラワーブーケ", + "alias_name_display" : "フラワーブーケ", + "hash" : "7c983cf4f268272d5ff3fbc72e20477f", + "id" : "3304302", + "profile" : { + "bust" : "81", + "height" : "158", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "ガーリースタイルブルー", + "alias_name_display" : "ガーリースタイルブルー", + "event" : [ { + "event_id" : 107, + "event_name" : "秋夜のお月見会" + } ], + "hash" : "91bf66e462541654840ad63b590f7a92", + "id" : "3206201", + "profile" : { + "bust" : "81", + "height" : "158", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "ガーリースタイルピンク", + "alias_name_display" : "ガーリースタイルピンク", + "event" : [ { + "event_id" : 107, + "event_name" : "秋夜のお月見会" + } ], + "hash" : "cc13b2455d70284fa028ffbc71109f3c", + "id" : "3206202", + "profile" : { + "bust" : "81", + "height" : "158", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "ガーリースタイルグリーン", + "alias_name_display" : "ガーリースタイルグリーン", + "event" : [ { + "event_id" : 107, + "event_name" : "秋夜のお月見会" + } ], + "hash" : "a004ebf66be0062d592367afaa9df9c6", + "id" : "3206203", + "profile" : { + "bust" : "81", + "height" : "158", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "ガーリースタイルホワイト", + "alias_name_display" : "ガーリースタイルホワイト", + "event" : [ { + "event_id" : 107, + "event_name" : "秋夜のお月見会" + } ], + "hash" : "e2d746d67b2f486c24276cfdd6c04b91", + "id" : "3206204", + "profile" : { + "bust" : "81", + "height" : "158", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "スタイルセレクトヴァイオレット", + "alias_name_display" : "スタイルセレクトヴァイオレット", + "event" : [ { + "event_id" : 107, + "event_name" : "秋夜のお月見会" + } ], + "hash" : "bc13d4418e9a47ce43493ee837c079f7", + "id" : "3306205", + "profile" : { + "bust" : "81", + "height" : "158", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "スタイルセレクトピンク", + "alias_name_display" : "スタイルセレクトピンク", + "event" : [ { + "event_id" : 107, + "event_name" : "秋夜のお月見会" + } ], + "hash" : "a145b90c3b7a076a742f1243fc934c36", + "id" : "3306206", + "profile" : { + "bust" : "81", + "height" : "158", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "スタイルセレクトグレー", + "alias_name_display" : "スタイルセレクトグレー", + "event" : [ { + "event_id" : 107, + "event_name" : "秋夜のお月見会" + } ], + "hash" : "88d68028d63bd897115d57cb468133a2", + "id" : "3306207", + "profile" : { + "bust" : "81", + "height" : "158", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "スタイルセレクトパープル", + "alias_name_display" : "スタイルセレクトパープル", + "event" : [ { + "event_id" : 107, + "event_name" : "秋夜のお月見会" + } ], + "hash" : "b55a300ec52c0ede5b78a0870d2cfe53", + "id" : "3306208", + "profile" : { + "bust" : "81", + "height" : "158", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "スタイルセレクトホワイト", + "alias_name_display" : "スタイルセレクトホワイト", + "event" : [ { + "event_id" : 107, + "event_name" : "秋夜のお月見会" + } ], + "hash" : "5de0ef2c7289a92299b5870d38c2e290", + "id" : "3306209", + "profile" : { + "bust" : "81", + "height" : "158", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "ニューイヤー", + "alias_name_display" : "ニューイヤー", + "event" : [ { + "event_id" : 404, + "event_name" : "新春アイドルプロデュース" + } ], + "hash" : "6d85e7f52925d9aeb18f207ea86023de", + "id" : "3208001", + "profile" : { + "bust" : "81", + "height" : "158", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "ニューイヤー", + "alias_name_display" : "ニューイヤー", + "event" : [ { + "event_id" : 404, + "event_name" : "新春アイドルプロデュース" + } ], + "hash" : "e387585b395a759ba2774b9a49921303", + "id" : "3308002", + "profile" : { + "bust" : "81", + "height" : "158", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "ムーンライトフラワー", + "alias_name_display" : "ムーンライトフラワー", + "event" : [ { + "event_id" : 107, + "event_name" : "秋夜のお月見会" + } ], + "hash" : "142f146366609731aa64a5c2c2a1a912", + "id" : "3403101", + "profile" : { + "bust" : "81", + "height" : "158", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "ムーンライトフラワー", + "alias_name_display" : "ムーンライトフラワー", + "event" : [ { + "event_id" : 107, + "event_name" : "秋夜のお月見会" + } ], + "hash" : "33f1fa5b1d518cf7c16da1d7d9090aa8", + "id" : "3503102", + "profile" : { + "bust" : "81", + "height" : "158", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "真夏のフラワーガール", + "alias_name_display" : "真夏のフラワーガール", + "hash" : "9e89c636ff5da917444ca1cabe028fc9", + "id" : "3408001", + "profile" : { + "bust" : "81", + "height" : "158", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "真夏のフラワーガール", + "alias_name_display" : "真夏のフラワーガール", + "hash" : "37589decfcf637e2c37feeee7ddc5ad8", + "id" : "3508002", + "profile" : { + "bust" : "81", + "height" : "158", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "甘い花束", + "alias_name_display" : "甘い花束", + "event" : [ { + "event_id" : 411, + "event_name" : "アイドルプロデュース チョコレートフォーユー!" + } ], + "hash" : "05977029f17dd39831b673314a817238", + "id" : "3411501", + "profile" : { + "bust" : "81", + "height" : "158", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "甘い花束", + "alias_name_display" : "甘い花束", + "event" : [ { + "event_id" : 411, + "event_name" : "アイドルプロデュース チョコレートフォーユー!" + } ], + "hash" : "172930f3ec38def704b5d886c7109aa6", + "id" : "3511502", + "profile" : { + "bust" : "81", + "height" : "158", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "花の小悪魔", + "alias_name_display" : "花の小悪魔", + "hash" : "ab9d06b633142cecac28895ff15b7106", + "id" : "3418301", + "profile" : { + "bust" : "81", + "height" : "158", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "花の小悪魔", + "alias_name_display" : "花の小悪魔", + "hash" : "27dc4499bc995e764ee5277377a7ad11", + "id" : "3518302", + "profile" : { + "bust" : "81", + "height" : "158", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "さくらふわり", + "alias_name_display" : "さくらふわり", + "hash" : "5bc2eb8496976790007a468b9029038b", + "id" : "3422601", + "profile" : { + "bust" : "81", + "height" : "158", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "さくらふわり", + "alias_name_display" : "さくらふわり", + "hash" : "a1a5ad34d1f639456d074faf6cbee8fd", + "id" : "3522602", + "profile" : { + "bust" : "81", + "height" : "158", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "ふんわり花乙女", + "alias_name_display" : "ふんわり花乙女", + "hash" : "e60349af525f22282f0cce54d5ddfc39", + "id" : "3425701", + "profile" : { + "bust" : "81", + "height" : "158", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "ふんわり花乙女", + "alias_name_display" : "ふんわり花乙女", + "hash" : "3b24b0c37eaa7e5b936d38660580ddeb", + "id" : "3525702", + "profile" : { + "bust" : "81", + "height" : "158", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "スプリングフラワー", + "alias_name_display" : "スプリングフラワー", + "event" : [ { + "event_id" : 719, + "event_name" : "ドリームLIVEフェスティバル 節分SP" + } ], + "hash" : "ba6e73113054aad2140a54f733256d17", + "id" : "3429601", + "profile" : { + "bust" : "81", + "height" : "158", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "スプリングフラワー", + "alias_name_display" : "スプリングフラワー", + "event" : [ { + "event_id" : 719, + "event_name" : "ドリームLIVEフェスティバル 節分SP" + } ], + "hash" : "3ee0da58a0a9b42484666b12293bcc11", + "id" : "3529602", + "profile" : { + "bust" : "81", + "height" : "158", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "37c34a83da57161eb7ebe0ad62d4b144", + "id" : "3430801", + "profile" : { + "bust" : "81", + "height" : "158", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "1fc18af0c5a0f3b65e228e7d5abfd54e", + "id" : "3530802", + "profile" : { + "bust" : "81", + "height" : "158", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "花しずく", + "alias_name_display" : "花しずく", + "hash" : "1fd2e753404d29ba95066c277f752db7", + "id" : "3434801", + "profile" : { + "bust" : "81", + "height" : "158", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + }, { + "alias_name" : "花しずく", + "alias_name_display" : "花しずく", + "hash" : "eff3e13dd30475d420b7f95ce86c2bc4", + "id" : "3534802", + "profile" : { + "bust" : "81", + "height" : "158", + "hip" : "80", + "waist" : "57", + "weight" : "42" + } + } ], + "idol_id" : 163, + "idol_name" : "相葉夕美", + "idol_name_display" : "相葉夕美", + "units" : [ { + "id" : "51", + "name" : "フィオレンティナ" + }, { + "id" : "57", + "name" : "ミステリックガーデン" + }, { + "id" : "75", + "name" : "Flowery" + }, { + "id" : "189", + "name" : "アインフェリア" + }, { + "id" : "202", + "name" : "サンフラワー" + } ] +}, { + "aliases" : [ { + "hash" : "bb90dd3425c2e096e9b48a928e734b8b", + "id" : "3200201", + "profile" : { + "bust" : "84", + "height" : "157", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "hash" : "91a74c8b18e013ecb8a341d4586aa8f5", + "id" : "3300202", + "profile" : { + "bust" : "84", + "height" : "157", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "イタリアンスタイル", + "alias_name_display" : "イタリアンスタイル", + "event" : [ { + "event_id" : 503, + "event_name" : "アイドルLIVEツアーinイタリア" + } ], + "hash" : "a2b68b8474b5286d60a33891113e57df", + "id" : "3209201", + "profile" : { + "bust" : "84", + "height" : "157", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "イタリアンスタイル", + "alias_name_display" : "イタリアンスタイル", + "event" : [ { + "event_id" : 503, + "event_name" : "アイドルLIVEツアーinイタリア" + } ], + "hash" : "e1e647efe2dc11ccc84bd244ced05c06", + "id" : "3309202", + "profile" : { + "bust" : "84", + "height" : "157", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ロワイヤルスタイル", + "alias_name_display" : "ロワイヤルスタイル", + "event" : [ { + "event_id" : 801, + "event_name" : "アイドルLIVEロワイヤル" + } ], + "hash" : "9305d01a77298c6ccd1dc85c31312ed6", + "id" : "3212901", + "profile" : { + "bust" : "84", + "height" : "157", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ロワイヤルスタイル", + "alias_name_display" : "ロワイヤルスタイル", + "event" : [ { + "event_id" : 801, + "event_name" : "アイドルLIVEロワイヤル" + } ], + "hash" : "bf38507a985eb502dc11b0669c035668", + "id" : "3312902", + "profile" : { + "bust" : "84", + "height" : "157", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "はっぴーはっぴー", + "alias_name_display" : "はっぴーはっぴー", + "hash" : "76e96d82a4a7800e7f41379167f70830", + "id" : "3215101", + "profile" : { + "bust" : "84", + "height" : "157", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "はっぴーはっぴー", + "alias_name_display" : "はっぴーはっぴー", + "hash" : "ba7243eb399089267666d8b44f3eb6a2", + "id" : "3315102", + "profile" : { + "bust" : "84", + "height" : "157", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "T.B.ハロウィン", + "alias_name_display" : "T.B.ハロウィン", + "event" : [ { + "event_id" : 1106, + "event_name" : "プロダクション対抗トークバトルショー ハロウィンSP" + } ], + "hash" : "2dbac60081ce8d246d03957ff5c8337d", + "id" : "3219901", + "profile" : { + "bust" : "84", + "height" : "157", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "T.B.ハロウィン", + "alias_name_display" : "T.B.ハロウィン", + "event" : [ { + "event_id" : 1106, + "event_name" : "プロダクション対抗トークバトルショー ハロウィンSP" + } ], + "hash" : "cd3b73854b58929671aa432ab259417e", + "id" : "3319902", + "profile" : { + "bust" : "84", + "height" : "157", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ラブリーメイド", + "alias_name_display" : "ラブリーメイド", + "hash" : "152e419be9a216a353b9297511456a15", + "id" : "3225001", + "profile" : { + "bust" : "84", + "height" : "157", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ラブリーメイド", + "alias_name_display" : "ラブリーメイド", + "hash" : "ac84d4d34bca1fb65b66233fc5b864b6", + "id" : "3325002", + "profile" : { + "bust" : "84", + "height" : "157", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "フライトバラエティ", + "alias_name_display" : "フライトバラエティ", + "event" : [ { + "event_id" : 1803, + "event_name" : "アイドルバラエティ 大空への挑戦 ~Fly me to the Sky~" + } ], + "hash" : "7ef301dfd58f3bb7ce5d82667ade6bf4", + "id" : "3329002", + "profile" : { + "bust" : "84", + "height" : "157", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ろでお☆がーる", + "alias_name_display" : "ろでお☆がーる", + "event" : [ { + "event_id" : 512, + "event_name" : "西部公演 ガンスリンガージャーニー" + } ], + "hash" : "5a3f49b98c1c6eed21a5554324df93a4", + "id" : "3414701", + "profile" : { + "bust" : "84", + "height" : "157", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ろでお☆がーる", + "alias_name_display" : "ろでお☆がーる", + "event" : [ { + "event_id" : 512, + "event_name" : "西部公演 ガンスリンガージャーニー" + } ], + "hash" : "4549aa1570a45b094e0c93f87e7456a8", + "id" : "3514702", + "profile" : { + "bust" : "84", + "height" : "157", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "わいるどしゃうと", + "alias_name_display" : "わいるどしゃうと", + "event" : [ { + "event_id" : "021", + "event_name" : "第21回プロダクションマッチフェスティバル" + } ], + "hash" : "ac00fc26dcf39db7b99b0dbd25fba25d", + "id" : "3423001", + "profile" : { + "bust" : "84", + "height" : "157", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "わいるどしゃうと", + "alias_name_display" : "わいるどしゃうと", + "event" : [ { + "event_id" : "021", + "event_name" : "第21回プロダクションマッチフェスティバル" + } ], + "hash" : "9f7bcd2b186da54f58a6c708b6673e2b", + "id" : "3523002", + "profile" : { + "bust" : "84", + "height" : "157", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ぷりむすたいる", + "alias_name_display" : "ぷりむすたいる", + "event" : [ { + "event_id" : 1410, + "event_name" : "第10回ぷちデレラコレクション" + } ], + "hash" : "c9ff2aa64967a2cbc5455bb32ebc02ec", + "id" : "3437101", + "profile" : { + "bust" : "84", + "height" : "157", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ぷりむすたいる", + "alias_name_display" : "ぷりむすたいる", + "event" : [ { + "event_id" : 1410, + "event_name" : "第10回ぷちデレラコレクション" + } ], + "hash" : "3c9777fee6bd72b52c4700f384987b3a", + "id" : "3537102", + "profile" : { + "bust" : "84", + "height" : "157", + "hip" : "85", + "waist" : "57", + "weight" : "46" + } + } ], + "idol_id" : 164, + "idol_name" : "野々村そら", + "idol_name_display" : "野々村そら", + "units" : [ { + "id" : "86", + "name" : "イタリアンスタイル" + }, { + "id" : "208", + "name" : "ロワイヤルスタイル" + } ] +}, { + "aliases" : [ { + "hash" : "7fa02e42c440b57785448072345ef8e0", + "id" : "3200301", + "profile" : { + "bust" : "92", + "height" : "168", + "hip" : "85", + "waist" : "58", + "weight" : "50" + } + }, { + "hash" : "a3ccb7b3c841ae42ca70437699830a6b", + "id" : "3300302", + "profile" : { + "bust" : "92", + "height" : "168", + "hip" : "85", + "waist" : "58", + "weight" : "50" + } + }, { + "alias_name" : "浴衣祭り", + "alias_name_display" : "浴衣祭り", + "hash" : "5041107d9f74a0719ed4c66d7945f270", + "id" : "3205301", + "profile" : { + "bust" : "92", + "height" : "168", + "hip" : "85", + "waist" : "58", + "weight" : "50" + } + }, { + "alias_name" : "浴衣祭り", + "alias_name_display" : "浴衣祭り", + "hash" : "da62089ea524fd4255801e539746c146", + "id" : "3305302", + "profile" : { + "bust" : "92", + "height" : "168", + "hip" : "85", + "waist" : "58", + "weight" : "50" + } + }, { + "alias_name" : "エレガントJKT", + "alias_name_display" : "エレガントJKT", + "hash" : "18303720c0d458d42f75000b7a801f94", + "id" : "3213301", + "profile" : { + "bust" : "92", + "height" : "168", + "hip" : "85", + "waist" : "58", + "weight" : "50" + } + }, { + "alias_name" : "エレガントJKT", + "alias_name_display" : "エレガントJKT", + "hash" : "1c2b58322ae59b405e3147536884ac99", + "id" : "3313302", + "profile" : { + "bust" : "92", + "height" : "168", + "hip" : "85", + "waist" : "58", + "weight" : "50" + } + }, { + "alias_name" : "ビーチサイド", + "alias_name_display" : "ビーチサイド", + "hash" : "fb666de8cb248a5cb534465aad1a1ee6", + "id" : "3217801", + "profile" : { + "bust" : "92", + "height" : "168", + "hip" : "85", + "waist" : "58", + "weight" : "50" + } + }, { + "alias_name" : "ビーチサイド", + "alias_name_display" : "ビーチサイド", + "hash" : "3c1c4486f502c31f1da9502917400d14", + "id" : "3317802", + "profile" : { + "bust" : "92", + "height" : "168", + "hip" : "85", + "waist" : "58", + "weight" : "50" + } + }, { + "alias_name" : "ジョッキースタイル", + "alias_name_display" : "ジョッキースタイル", + "hash" : "a0e1b3d2ecd96234e3477d67e302d240", + "id" : "3222501", + "profile" : { + "bust" : "92", + "height" : "168", + "hip" : "85", + "waist" : "58", + "weight" : "50" + } + }, { + "alias_name" : "ジョッキースタイル", + "alias_name_display" : "ジョッキースタイル", + "hash" : "53b5cd0bd501f09c4c6a209b3b2ef963", + "id" : "3322502", + "profile" : { + "bust" : "92", + "height" : "168", + "hip" : "85", + "waist" : "58", + "weight" : "50" + } + }, { + "alias_name" : "クッキングバラエティ", + "alias_name_display" : "クッキングバラエティ", + "event" : [ { + "event_id" : 1801, + "event_name" : "アイドルバラエティ 究極のショートケーキを作ろう!" + } ], + "hash" : "9db33f824b8d4ecb038436a2e7399d57", + "id" : "3325302", + "profile" : { + "bust" : "92", + "height" : "168", + "hip" : "85", + "waist" : "58", + "weight" : "50" + } + }, { + "alias_name" : "自信の裏側", + "alias_name_display" : "自信の裏側", + "hash" : "098b55088316d0bd6eb28bdea008654d", + "id" : "3227901", + "profile" : { + "bust" : "92", + "height" : "168", + "hip" : "85", + "waist" : "58", + "weight" : "50" + } + }, { + "alias_name" : "自信の裏側", + "alias_name_display" : "自信の裏側", + "hash" : "c1f3b08ee2f0a1121be49b71b54bd721", + "id" : "3327902", + "profile" : { + "bust" : "92", + "height" : "168", + "hip" : "85", + "waist" : "58", + "weight" : "50" + } + }, { + "alias_name" : "サマーガール", + "alias_name_display" : "サマーガール", + "event" : [ { + "event_id" : 722, + "event_name" : "夏祭りDEドリームLIVEフェスティバル" + } ], + "hash" : "e82a880bb685e3fd108f1720cdc27959", + "id" : "3229501", + "profile" : { + "bust" : "92", + "height" : "168", + "hip" : "85", + "waist" : "58", + "weight" : "50" + } + }, { + "alias_name" : "サマーガール", + "alias_name_display" : "サマーガール", + "event" : [ { + "event_id" : 722, + "event_name" : "夏祭りDEドリームLIVEフェスティバル" + } ], + "hash" : "df4914c7a9d1da0c7113ff56dfff3175", + "id" : "3329502", + "profile" : { + "bust" : "92", + "height" : "168", + "hip" : "85", + "waist" : "58", + "weight" : "50" + } + }, { + "alias_name" : "ハイカラガンナー", + "alias_name_display" : "ハイカラガンナー", + "event" : [ { + "event_id" : 1907, + "event_name" : "ディアリースタークエスト ~夜桜奇譚~" + } ], + "hash" : "dec1007c6dc06d01e61a7bf2ff65e44b", + "id" : "3333802", + "profile" : { + "bust" : "92", + "height" : "168", + "hip" : "85", + "waist" : "58", + "weight" : "50" + } + }, { + "alias_name" : "セクシーディーヴァ", + "alias_name_display" : "セクシーディーヴァ", + "event" : [ { + "event_id" : 504, + "event_name" : "アイドルLIVEツアーinスペイン" + } ], + "hash" : "bd8544d7fee8e557f5b223836d20ff0d", + "id" : "3406401", + "profile" : { + "bust" : "92", + "height" : "168", + "hip" : "85", + "waist" : "58", + "weight" : "50" + } + }, { + "alias_name" : "セクシーディーヴァ", + "alias_name_display" : "セクシーディーヴァ", + "event" : [ { + "event_id" : 504, + "event_name" : "アイドルLIVEツアーinスペイン" + } ], + "hash" : "447b6056924998cacf744688697a4f1d", + "id" : "3506402", + "profile" : { + "bust" : "92", + "height" : "168", + "hip" : "85", + "waist" : "58", + "weight" : "50" + } + }, { + "alias_name" : "パナシェ・ロワイヤル", + "alias_name_display" : "パナシェ・ロワイヤル", + "event" : [ { + "event_id" : 807, + "event_name" : "第7回アイドルLIVEロワイヤル" + } ], + "hash" : "688413c83d5f09927ee6ab46b0247988", + "id" : "3418001", + "profile" : { + "bust" : "92", + "height" : "168", + "hip" : "85", + "waist" : "58", + "weight" : "50" + } + }, { + "alias_name" : "パナシェ・ロワイヤル", + "alias_name_display" : "パナシェ・ロワイヤル", + "event" : [ { + "event_id" : 807, + "event_name" : "第7回アイドルLIVEロワイヤル" + } ], + "hash" : "0ff15c0dd87a8d2bed9916f45007d884", + "id" : "3518002", + "profile" : { + "bust" : "92", + "height" : "168", + "hip" : "85", + "waist" : "58", + "weight" : "50" + } + }, { + "alias_name" : "アンルーリィチアー", + "alias_name_display" : "アンルーリィチアー", + "event" : [ { + "event_id" : 1509, + "event_name" : "第9回チーム対抗トークバトルショー" + } ], + "hash" : "e8a3517e4e352e1a355526953320449b", + "id" : "3436001", + "profile" : { + "bust" : "92", + "height" : "168", + "hip" : "85", + "waist" : "58", + "weight" : "50" + } + }, { + "alias_name" : "アンルーリィチアー", + "alias_name_display" : "アンルーリィチアー", + "event" : [ { + "event_id" : 1509, + "event_name" : "第9回チーム対抗トークバトルショー" + } ], + "hash" : "aa9f7f62858b8a7afc5bf79a5d8bb989", + "id" : "3536002", + "profile" : { + "bust" : "92", + "height" : "168", + "hip" : "85", + "waist" : "58", + "weight" : "50" + } + } ], + "idol_id" : 165, + "idol_name" : "浜川愛結奈", + "idol_name_display" : "浜川愛結奈", + "units" : [ { + "id" : "118", + "name" : "ビューティーアリュール" + } ] +}, { + "aliases" : [ { + "hash" : "bf61ef00c0f50870767799b93134aed8", + "id" : "3200401", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "hash" : "aeed90627f00bd22dca766f74cba96b7", + "id" : "3300402", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "パジャマパーティー", + "alias_name_display" : "パジャマパーティー", + "hash" : "131c89b09553e3b1adf8211a825bef94", + "id" : "3204501", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "パジャマパーティー", + "alias_name_display" : "パジャマパーティー", + "hash" : "108bc0c3aa328e2ac67782b356672155", + "id" : "3304502", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "バレンタインパーティー", + "alias_name_display" : "バレンタインパーティー", + "hash" : "5804656c2c53a974b9dfd2df368f4309", + "id" : "3208501", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "バレンタインパーティー", + "alias_name_display" : "バレンタインパーティー", + "hash" : "ec7057af8940d714ad8af9f3ae8300ea", + "id" : "3308502", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "サマーバケーション", + "alias_name_display" : "サマーバケーション", + "event" : [ { + "event_id" : 211, + "event_name" : "アイドルサバイバルinサマーバケーション" + } ], + "hash" : "f08432b1b1ed5f779e4a05950da2869b", + "id" : "3212401", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "サマーバケーション", + "alias_name_display" : "サマーバケーション", + "event" : [ { + "event_id" : 211, + "event_name" : "アイドルサバイバルinサマーバケーション" + } ], + "hash" : "38d77ce3afc38411d2dae8c5fe362cd9", + "id" : "3312402", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "青春のありか", + "alias_name_display" : "青春のありか", + "event" : [ { + "event_id" : 708, + "event_name" : "第8回ドリームLIVEフェスティバル" + } ], + "hash" : "ad51b71ac5197e926d54027ee34c5439", + "id" : "3218901", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "青春のありか", + "alias_name_display" : "青春のありか", + "event" : [ { + "event_id" : 708, + "event_name" : "第8回ドリームLIVEフェスティバル" + } ], + "hash" : "53ef3721dd9737e2ff8d88136230886b", + "id" : "3318902", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ネクサスガール", + "alias_name_display" : "ネクサスガール", + "hash" : "752bf582313e7183b20823fdcfaf64db", + "id" : "3223901", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ネクサスガール", + "alias_name_display" : "ネクサスガール", + "hash" : "2c4e927cadd73b11da5c722e6b32019a", + "id" : "3323902", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "スクールプール", + "alias_name_display" : "スクールプール", + "hash" : "4fb0aa129a4ecd3a5ae5fb262c77dd5a", + "id" : "3229601", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "スクールプール", + "alias_name_display" : "スクールプール", + "hash" : "22177b0b3d43621ab1f291b07ad87c2f", + "id" : "3329602", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ロワイヤルスタイルND", + "alias_name_display" : "ロワイヤルスタイルND", + "event" : [ { + "event_id" : 821, + "event_name" : "第21回アイドルLIVEロワイヤル" + } ], + "hash" : "9c9bd76b06bada99f133ffe795d63d51", + "id" : "3232301", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ロワイヤルスタイルND", + "alias_name_display" : "ロワイヤルスタイルND", + "event" : [ { + "event_id" : 821, + "event_name" : "第21回アイドルLIVEロワイヤル" + } ], + "hash" : "95eca02219ea79f8580e430b77051710", + "id" : "3332302", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "フレッシュチアガール", + "alias_name_display" : "フレッシュチアガール", + "hash" : "cdb51d58743eed84230167094b26d0e1", + "id" : "3405601", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "フレッシュチアガール", + "alias_name_display" : "フレッシュチアガール", + "hash" : "00bea124dc35973d55b52fa765ad9668", + "id" : "3505602", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ハッピーチアー", + "alias_name_display" : "ハッピーチアー", + "event" : [ { + "event_id" : 509, + "event_name" : "新春LIVEツアーカーニバル" + } ], + "hash" : "83d9e2030ef0d1c4ab0f46e104bebe2d", + "id" : "3410701", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "ハッピーチアー", + "alias_name_display" : "ハッピーチアー", + "event" : [ { + "event_id" : 509, + "event_name" : "新春LIVEツアーカーニバル" + } ], + "hash" : "0a37155927a181d59ee7979bf5f98698", + "id" : "3510702", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "チアフル・ロワイヤル", + "alias_name_display" : "チアフル・ロワイヤル", + "event" : [ { + "event_id" : 811, + "event_name" : "第11回アイドルLIVEロワイヤル" + } ], + "hash" : "fd801652029b6d929ee53d416b4e8ec0", + "id" : "3422401", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "チアフル・ロワイヤル", + "alias_name_display" : "チアフル・ロワイヤル", + "event" : [ { + "event_id" : 811, + "event_name" : "第11回アイドルLIVEロワイヤル" + } ], + "hash" : "d072b96acd476cccdb2b94bd8199a5d8", + "id" : "3522402", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "春うらら", + "alias_name_display" : "春うらら", + "event" : [ { + "event_id" : "026", + "event_name" : "第26回プロダクションマッチフェスティバル" + } ], + "hash" : "097f3b60e7f177c70488cb8d993b77fa", + "id" : "3430201", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + }, { + "alias_name" : "春うらら", + "alias_name_display" : "春うらら", + "event" : [ { + "event_id" : "026", + "event_name" : "第26回プロダクションマッチフェスティバル" + } ], + "hash" : "90acff12db7ec8895021c3726ee2ab58", + "id" : "3530202", + "profile" : { + "bust" : "82", + "height" : "156", + "hip" : "83", + "waist" : "57", + "weight" : "45" + } + } ], + "idol_id" : 166, + "idol_name" : "若林智香", + "idol_name_display" : "若林智香", + "units" : [ { + "id" : "148", + "name" : "チアフルボンバーズ" + }, { + "id" : "150", + "name" : "ヒートアップ☆チアーズ" + }, { + "id" : "210", + "name" : "ロワイヤルスタイルND" + } ] +}, { + "aliases" : [ { + "hash" : "73eea87bdec62f29de318e50e84f021d", + "id" : "3200501", + "profile" : { + "bust" : "80", + "height" : "162", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "hash" : "61a1dfc4c713b5d5a094a19923bacc08", + "id" : "3300502", + "profile" : { + "bust" : "80", + "height" : "162", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "ギャルブロッサム", + "alias_name_display" : "ギャルブロッサム", + "event" : [ { + "event_id" : 712, + "event_name" : "花見DEドリームLIVEフェスティバル" + } ], + "hash" : "c407e2e483b9ff36689e486dfbd847e4", + "id" : "3222201", + "profile" : { + "bust" : "80", + "height" : "162", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "ギャルブロッサム", + "alias_name_display" : "ギャルブロッサム", + "event" : [ { + "event_id" : 712, + "event_name" : "花見DEドリームLIVEフェスティバル" + } ], + "hash" : "4f4bc793b515a5c802b9ab7e0a9198e8", + "id" : "3322202", + "profile" : { + "bust" : "80", + "height" : "162", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "ニューヴォーグ", + "alias_name_display" : "ニューヴォーグ", + "hash" : "d6fdc4c2a992ea8b249d6015d1186e6c", + "id" : "3230401", + "profile" : { + "bust" : "80", + "height" : "162", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "ニューヴォーグ", + "alias_name_display" : "ニューヴォーグ", + "hash" : "7fe0b25036ad4318f240e85827e4ba96", + "id" : "3330402", + "profile" : { + "bust" : "80", + "height" : "162", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "カリスマギャル", + "alias_name_display" : "カリスマギャル", + "hash" : "30fe4887cbc082bf375169d6f83a1ffa", + "id" : "3402201", + "profile" : { + "bust" : "80", + "height" : "162", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "カリスマギャル", + "alias_name_display" : "カリスマギャル", + "hash" : "6ccf37a6cfdd206dc34434a1be3d56b8", + "id" : "3502202", + "profile" : { + "bust" : "80", + "height" : "162", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "7af6cc3d2ca1f5d15230f2366280a444", + "id" : "3402701", + "profile" : { + "bust" : "80", + "height" : "162", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "53a89429c64132c4d0058aea4b233fca", + "id" : "3502702", + "profile" : { + "bust" : "80", + "height" : "162", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "シークレット★ハート", + "alias_name_display" : "シークレット★ハート", + "hash" : "f6e5a4e341770463ef088e55921596fa", + "id" : "3404701", + "profile" : { + "bust" : "80", + "height" : "162", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "シークレット★ハート", + "alias_name_display" : "シークレット★ハート", + "hash" : "f9385a42acabcfae3013c79d5466edf4", + "id" : "3504702", + "profile" : { + "bust" : "80", + "height" : "162", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "ラブ★クリスマス", + "alias_name_display" : "ラブ★クリスマス", + "hash" : "c34d79efd9030ebf948a18cbf9df7bf3", + "id" : "3410201", + "profile" : { + "bust" : "80", + "height" : "162", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "ラブ★クリスマス", + "alias_name_display" : "ラブ★クリスマス", + "hash" : "70ca98bb88391ddbaf3841e5912c7367", + "id" : "3510202", + "profile" : { + "bust" : "80", + "height" : "162", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "ワンダフルマジック", + "alias_name_display" : "ワンダフルマジック", + "hash" : "4a3abe4cfb93b694333cddf0c8521f64", + "id" : "3412801", + "profile" : { + "bust" : "80", + "height" : "162", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "ワンダフルマジック", + "alias_name_display" : "ワンダフルマジック", + "hash" : "e204975f21b0e3374a0633d0522f1b19", + "id" : "3512802", + "profile" : { + "bust" : "80", + "height" : "162", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "夏のユウワク", + "alias_name_display" : "夏のユウワク", + "hash" : "76c2eb6eac6f3d975264dfaac44157c7", + "id" : "3416301", + "profile" : { + "bust" : "80", + "height" : "162", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "夏のユウワク", + "alias_name_display" : "夏のユウワク", + "hash" : "eb38818dc3fd59a5cae7f69a4f743f6c", + "id" : "3516302", + "profile" : { + "bust" : "80", + "height" : "162", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "3rdアニバーサリー", + "alias_name_display" : "3rdアニバーサリー", + "event" : [ { + "event_id" : 415, + "event_name" : "アイドルプロデュース the 3rd Anniversary" + } ], + "hash" : "21886e4c2903ab6da97230b772c6804f", + "id" : "3419401", + "profile" : { + "bust" : "80", + "height" : "162", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "3rdアニバーサリー", + "alias_name_display" : "3rdアニバーサリー", + "event" : [ { + "event_id" : 415, + "event_name" : "アイドルプロデュース the 3rd Anniversary" + } ], + "hash" : "5f0ff7b6385298516aedd9b4e334a018", + "id" : "3519402", + "profile" : { + "bust" : "80", + "height" : "162", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "3rdアニバーサリー・S", + "alias_name_display" : "3rdアニバーサリー・S", + "event" : [ { + "event_id" : 415, + "event_name" : "アイドルプロデュース the 3rd Anniversary" + } ], + "hash" : "942ee9cb2a6140de3f7f35122ebe7e00", + "id" : "3419501", + "profile" : { + "bust" : "80", + "height" : "162", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "3rdアニバーサリー・S", + "alias_name_display" : "3rdアニバーサリー・S", + "event" : [ { + "event_id" : 415, + "event_name" : "アイドルプロデュース the 3rd Anniversary" + } ], + "hash" : "e6bafa973570753123cd686c18c2b975", + "id" : "3519502", + "profile" : { + "bust" : "80", + "height" : "162", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "ラブ★サマーナイト", + "alias_name_display" : "ラブ★サマーナイト", + "hash" : "3ea30b1c14dafc422ae4b4eb46aaa54e", + "id" : "3424801", + "profile" : { + "bust" : "80", + "height" : "162", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "ラブ★サマーナイト", + "alias_name_display" : "ラブ★サマーナイト", + "hash" : "f84e6d3c1d11b46d7efe8e53e1013eb4", + "id" : "3524802", + "profile" : { + "bust" : "80", + "height" : "162", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "G4U!", + "alias_name_display" : "G4U!", + "hash" : "8d9c26ea00d4d16b952f129ce7c80034", + "id" : "3530502", + "profile" : { + "bust" : "80", + "height" : "162", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "ラブ★ドクター", + "alias_name_display" : "ラブ★ドクター", + "hash" : "7523568f90f1dabbcacf633f6f178729", + "id" : "3430601", + "profile" : { + "bust" : "80", + "height" : "162", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "ラブ★ドクター", + "alias_name_display" : "ラブ★ドクター", + "hash" : "61497838f9a33ff6592fa0e11c4c2c1a", + "id" : "3530602", + "profile" : { + "bust" : "80", + "height" : "162", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "ユア★ウォーム", + "alias_name_display" : "ユア★ウォーム", + "hash" : "4de072a494475aa83d7ee9eca92de2bb", + "id" : "3437501", + "profile" : { + "bust" : "80", + "height" : "162", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "ユア★ウォーム", + "alias_name_display" : "ユア★ウォーム", + "hash" : "cd1aaa15207932e56aaa449c14daa578", + "id" : "3537502", + "profile" : { + "bust" : "80", + "height" : "162", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + }, { + "alias_name" : "たたいてご褒美", + "alias_name_display" : "たたいてご褒美", + "hash" : "062f663090a8424fca1a20133b774120", + "id" : "3538702", + "profile" : { + "bust" : "80", + "height" : "162", + "hip" : "82", + "waist" : "56", + "weight" : "43" + } + } ], + "idol_id" : 167, + "idol_name" : "城ヶ崎美嘉", + "idol_name_display" : "城ヶ崎美嘉", + "units" : [ { + "id" : "50", + "name" : "ファミリアツイン" + }, { + "id" : "113", + "name" : "セクシーギャルズ" + }, { + "id" : "185", + "name" : "LiPPS" + }, { + "id" : "204", + "name" : "トロピカル☆スターズ" + }, { + "id" : "212", + "name" : "CINDERELLA GIRLS" + } ] +}, { + "aliases" : [ { + "hash" : "959bc006631151106b824edd21901161", + "id" : "3200601", + "profile" : { + "bust" : "72", + "height" : "149", + "hip" : "75", + "waist" : "54", + "weight" : "36" + } + }, { + "hash" : "2e78f311230052d2ccf604dc941ebc8c", + "id" : "3300602", + "profile" : { + "bust" : "72", + "height" : "149", + "hip" : "75", + "waist" : "54", + "weight" : "36" + } + }, { + "alias_name" : "夏休み", + "alias_name_display" : "夏休み", + "event" : [ { + "event_id" : 413, + "event_name" : "みんなのなつやすみ" + } ], + "hash" : "d8d930d28b4ce932041240e81f907905", + "id" : "3218101", + "profile" : { + "bust" : "72", + "height" : "149", + "hip" : "75", + "waist" : "54", + "weight" : "36" + } + }, { + "alias_name" : "夏休み", + "alias_name_display" : "夏休み", + "event" : [ { + "event_id" : 413, + "event_name" : "みんなのなつやすみ" + } ], + "hash" : "78f52e2a15799e1e06822dfe51d3eaa3", + "id" : "3318102", + "profile" : { + "bust" : "72", + "height" : "149", + "hip" : "75", + "waist" : "54", + "weight" : "36" + } + }, { + "alias_name" : "笑顔の夏休み", + "alias_name_display" : "笑顔の夏休み", + "event" : [ { + "event_id" : 413, + "event_name" : "みんなのなつやすみ" + } ], + "hash" : "7adcfc7258831785ce0f855a13f244a6", + "id" : "3218201", + "profile" : { + "bust" : "72", + "height" : "149", + "hip" : "75", + "waist" : "54", + "weight" : "36" + } + }, { + "alias_name" : "笑顔の夏休み", + "alias_name_display" : "笑顔の夏休み", + "event" : [ { + "event_id" : 413, + "event_name" : "みんなのなつやすみ" + } ], + "hash" : "a8164aee777ecd0f1802e98e5acaeaef", + "id" : "3318202", + "profile" : { + "bust" : "72", + "height" : "149", + "hip" : "75", + "waist" : "54", + "weight" : "36" + } + }, { + "alias_name" : "ハイカラサクラ", + "alias_name_display" : "ハイカラサクラ", + "hash" : "fb731622d7dbb239f5877d838b883c02", + "id" : "3222301", + "profile" : { + "bust" : "72", + "height" : "149", + "hip" : "75", + "waist" : "54", + "weight" : "36" + } + }, { + "alias_name" : "ハイカラサクラ", + "alias_name_display" : "ハイカラサクラ", + "hash" : "5013bb8c3861ccf38077eb5222cb2282", + "id" : "3322302", + "profile" : { + "bust" : "72", + "height" : "149", + "hip" : "75", + "waist" : "54", + "weight" : "36" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "6ea43f0179614b007603260b8bdf8fe1", + "id" : "3401401", + "profile" : { + "bust" : "72", + "height" : "149", + "hip" : "75", + "waist" : "54", + "weight" : "36" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "f4a121eb8de314497224aed4155c7291", + "id" : "3501402", + "profile" : { + "bust" : "72", + "height" : "149", + "hip" : "75", + "waist" : "54", + "weight" : "36" + } + }, { + "alias_name" : "カリスマちびギャル", + "alias_name_display" : "カリスマちびギャル", + "hash" : "98998d4de666be93b4e9667965b80808", + "id" : "3402301", + "profile" : { + "bust" : "72", + "height" : "149", + "hip" : "75", + "waist" : "54", + "weight" : "36" + } + }, { + "alias_name" : "カリスマちびギャル", + "alias_name_display" : "カリスマちびギャル", + "hash" : "ae8fb02e54bda306eb45dd2ecf875185", + "id" : "3502302", + "profile" : { + "bust" : "72", + "height" : "149", + "hip" : "75", + "waist" : "54", + "weight" : "36" + } + }, { + "alias_name" : "ハッピー☆クリスマス", + "alias_name_display" : "ハッピー☆クリスマス", + "hash" : "d9b090bc9ba7b6b5cf9004ac1014fde3", + "id" : "3404101", + "profile" : { + "bust" : "72", + "height" : "149", + "hip" : "75", + "waist" : "54", + "weight" : "36" + } + }, { + "alias_name" : "ハッピー☆クリスマス", + "alias_name_display" : "ハッピー☆クリスマス", + "hash" : "59b6132bdb66f678941338690c3eca2f", + "id" : "3504102", + "profile" : { + "bust" : "72", + "height" : "149", + "hip" : "75", + "waist" : "54", + "weight" : "36" + } + }, { + "alias_name" : "シークレット☆モード", + "alias_name_display" : "シークレット☆モード", + "hash" : "5f884308996c7f7369f304379ac028cc", + "id" : "3409401", + "profile" : { + "bust" : "72", + "height" : "149", + "hip" : "75", + "waist" : "54", + "weight" : "36" + } + }, { + "alias_name" : "シークレット☆モード", + "alias_name_display" : "シークレット☆モード", + "hash" : "e3990a65bbb99ede5a0fd7cd3ce57100", + "id" : "3509402", + "profile" : { + "bust" : "72", + "height" : "149", + "hip" : "75", + "waist" : "54", + "weight" : "36" + } + }, { + "alias_name" : "ワンダフルマジック", + "alias_name_display" : "ワンダフルマジック", + "hash" : "4ecd248e0f400d89b150c7d9c6f125ae", + "id" : "3412601", + "profile" : { + "bust" : "72", + "height" : "149", + "hip" : "75", + "waist" : "54", + "weight" : "36" + } + }, { + "alias_name" : "ワンダフルマジック", + "alias_name_display" : "ワンダフルマジック", + "hash" : "45e3224de0e8d9b80d0739e4dbc6e523", + "id" : "3512602", + "profile" : { + "bust" : "72", + "height" : "149", + "hip" : "75", + "waist" : "54", + "weight" : "36" + } + }, { + "alias_name" : "ウィンター☆モード", + "alias_name_display" : "ウィンター☆モード", + "hash" : "5ae975e8058ac9fa8dfe9fdabe6d9249", + "id" : "3420001", + "profile" : { + "bust" : "72", + "height" : "149", + "hip" : "75", + "waist" : "54", + "weight" : "36" + } + }, { + "alias_name" : "ウィンター☆モード", + "alias_name_display" : "ウィンター☆モード", + "hash" : "b67b9f2b0751ff7104544f92e91151b9", + "id" : "3520002", + "profile" : { + "bust" : "72", + "height" : "149", + "hip" : "75", + "waist" : "54", + "weight" : "36" + } + }, { + "alias_name" : "DONDOKOリズム", + "alias_name_display" : "DONDOKOリズム", + "hash" : "c412e6116df1c59a54a022a2e4c0ae2a", + "id" : "3521002", + "profile" : { + "bust" : "72", + "height" : "149", + "hip" : "75", + "waist" : "54", + "weight" : "36" + } + }, { + "alias_name" : "凸レーション", + "alias_name_display" : "凸レーション", + "hash" : "79455fc3b740c160d1c1dc6d652b551a", + "id" : "3525502", + "profile" : { + "bust" : "72", + "height" : "149", + "hip" : "75", + "waist" : "54", + "weight" : "36" + } + }, { + "alias_name" : "G4U!", + "alias_name_display" : "G4U!", + "hash" : "4850054db6e522f5a192e1bbef55e563", + "id" : "3526002", + "profile" : { + "bust" : "72", + "height" : "149", + "hip" : "75", + "waist" : "54", + "weight" : "36" + } + }, { + "alias_name" : "ナイト☆バニーギャル", + "alias_name_display" : "ナイト☆バニーギャル", + "hash" : "1cf8e7776ccc0f5695f30fc7fced834d", + "id" : "3426401", + "profile" : { + "bust" : "72", + "height" : "149", + "hip" : "75", + "waist" : "54", + "weight" : "36" + } + }, { + "alias_name" : "ナイト☆バニーギャル", + "alias_name_display" : "ナイト☆バニーギャル", + "hash" : "e254aad0347bd2ef9680f7313b26dbe9", + "id" : "3526402", + "profile" : { + "bust" : "72", + "height" : "149", + "hip" : "75", + "waist" : "54", + "weight" : "36" + } + }, { + "alias_name" : "ちょこっと☆ギャル", + "alias_name_display" : "ちょこっと☆ギャル", + "hash" : "8bcbc5887f1256838f7ea35c8cd3d351", + "id" : "3429801", + "profile" : { + "bust" : "72", + "height" : "149", + "hip" : "75", + "waist" : "54", + "weight" : "36" + } + }, { + "alias_name" : "ちょこっと☆ギャル", + "alias_name_display" : "ちょこっと☆ギャル", + "hash" : "efc88c60acb3ff739690c459246d436b", + "id" : "3529802", + "profile" : { + "bust" : "72", + "height" : "149", + "hip" : "75", + "waist" : "54", + "weight" : "36" + } + }, { + "alias_name" : "シンデレラドリーム", + "alias_name_display" : "シンデレラドリーム", + "hash" : "71e2444ffa964bc4222f3afcb11af6b7", + "id" : "3433301", + "profile" : { + "bust" : "72", + "height" : "149", + "hip" : "75", + "waist" : "54", + "weight" : "36" + } + }, { + "alias_name" : "シンデレラドリーム", + "alias_name_display" : "シンデレラドリーム", + "hash" : "10b54a98f80b3573f8a64e1f4f1517e8", + "id" : "3533302", + "profile" : { + "bust" : "72", + "height" : "149", + "hip" : "75", + "waist" : "54", + "weight" : "36" + } + }, { + "alias_name" : "とびきり☆ニューイヤー", + "alias_name_display" : "とびきり☆ニューイヤー", + "event" : [ { + "event_id" : 726, + "event_name" : "ドリームLIVEフェスティバル新春SP" + } ], + "hash" : "44d249234243ecd62758f1119e59670e", + "id" : "3437201", + "profile" : { + "bust" : "72", + "height" : "149", + "hip" : "75", + "waist" : "54", + "weight" : "36" + } + }, { + "alias_name" : "とびきり☆ニューイヤー", + "alias_name_display" : "とびきり☆ニューイヤー", + "event" : [ { + "event_id" : 726, + "event_name" : "ドリームLIVEフェスティバル新春SP" + } ], + "hash" : "2c6f68904c5e8c886b60fcc1c01682df", + "id" : "3537202", + "profile" : { + "bust" : "72", + "height" : "149", + "hip" : "75", + "waist" : "54", + "weight" : "36" + } + } ], + "idol_id" : 168, + "idol_name" : "城ヶ崎莉嘉", + "idol_name_display" : "城ヶ崎莉嘉", + "units" : [ { + "id" : "50", + "name" : "ファミリアツイン" + }, { + "id" : "107", + "name" : "ロッキングガール" + }, { + "id" : "149", + "name" : "凸レーション" + }, { + "id" : "158", + "name" : "ハイカラサクラ" + }, { + "id" : "186", + "name" : "LittlePOPS" + }, { + "id" : "204", + "name" : "トロピカル☆スターズ" + }, { + "id" : "213", + "name" : "CINDERELLA PROJECT" + } ] +}, { + "aliases" : [ { + "hash" : "9ffc7c24c1e76bcb922e7b8c1b40fd66", + "id" : "3200701", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "hash" : "d76f5e3183e18f6bdc72e2c29842942b", + "id" : "3300702", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "UKスタイル", + "alias_name_display" : "UKスタイル", + "event" : [ { + "event_id" : 502, + "event_name" : "アイドルLIVEツアーinイギリス" + } ], + "hash" : "95f215e70e1bcf2d255ba093a53fc51a", + "id" : "3208401", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "UKスタイル", + "alias_name_display" : "UKスタイル", + "event" : [ { + "event_id" : 502, + "event_name" : "アイドルLIVEツアーinイギリス" + } ], + "hash" : "908dafec84548cbf8c75842184023c91", + "id" : "3308402", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "ロワイヤルスタイル", + "alias_name_display" : "ロワイヤルスタイル", + "event" : [ { + "event_id" : 802, + "event_name" : "第2回アイドルLIVEロワイヤル" + } ], + "hash" : "fde23288979f4580f5deedef60cb501a", + "id" : "3214501", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "ロワイヤルスタイル", + "alias_name_display" : "ロワイヤルスタイル", + "event" : [ { + "event_id" : 802, + "event_name" : "第2回アイドルLIVEロワイヤル" + } ], + "hash" : "cb50684de885349d4aa14adf1dadd9b4", + "id" : "3314502", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "スリーピースパンクス", + "alias_name_display" : "スリーピースパンクス", + "hash" : "1eb173041b3bf713cef78c219d521b76", + "id" : "3217401", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "スリーピースパンクス", + "alias_name_display" : "スリーピースパンクス", + "hash" : "e3ac8ab38a64054351d2e1299a9c6e3f", + "id" : "3317402", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "秋色温泉", + "alias_name_display" : "秋色温泉", + "hash" : "287daffde22b976c189b75a094c22f5f", + "id" : "3220101", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "秋色温泉", + "alias_name_display" : "秋色温泉", + "hash" : "6a8b35f08771019784ec87e3be87d16f", + "id" : "3320102", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "ハウリングダンサー", + "alias_name_display" : "ハウリングダンサー", + "event" : [ { + "event_id" : "024", + "event_name" : "第24回プロダクションマッチフェスティバル" + } ], + "hash" : "5b35d5a564068d9a4eabb7d3e29fd334", + "id" : "3325802", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "T.B.オーシャン", + "alias_name_display" : "T.B.オーシャン", + "event" : [ { + "event_id" : 1508, + "event_name" : "チーム対抗トークバトルショー in SUMMER" + } ], + "hash" : "492f86962e67178c2c2faf2915bc2dd9", + "id" : "3230201", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "T.B.オーシャン", + "alias_name_display" : "T.B.オーシャン", + "event" : [ { + "event_id" : 1508, + "event_name" : "チーム対抗トークバトルショー in SUMMER" + } ], + "hash" : "4400c05573122de64ed14d39a7bdcbc9", + "id" : "3330202", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "ゴーフォーヴィクトリー", + "alias_name_display" : "ゴーフォーヴィクトリー", + "hash" : "1a488f8bab8e0efae8f777f10b21dc6a", + "id" : "3233001", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "ゴーフォーヴィクトリー", + "alias_name_display" : "ゴーフォーヴィクトリー", + "hash" : "da406e1470dbda90d69b49c622d235fb", + "id" : "3333002", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "アッパーテンション", + "alias_name_display" : "アッパーテンション", + "event" : [ { + "event_id" : 505, + "event_name" : "アイドルLIVEツアーinバリ島" + } ], + "hash" : "7f26f3f44be087e5e97f699666dacd54", + "id" : "3407601", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "アッパーテンション", + "alias_name_display" : "アッパーテンション", + "event" : [ { + "event_id" : 505, + "event_name" : "アイドルLIVEツアーinバリ島" + } ], + "hash" : "5106e3a24d812aa9ed097708c9166f18", + "id" : "3507602", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "パワフル・ロワイヤル", + "alias_name_display" : "パワフル・ロワイヤル", + "event" : [ { + "event_id" : 812, + "event_name" : "第12回アイドルLIVEロワイヤル" + } ], + "hash" : "884598c99e835d4c6306f2dac9e083a5", + "id" : "3423701", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "パワフル・ロワイヤル", + "alias_name_display" : "パワフル・ロワイヤル", + "event" : [ { + "event_id" : 812, + "event_name" : "第12回アイドルLIVEロワイヤル" + } ], + "hash" : "35d6ff804d2fa7642da6cf413c94feed", + "id" : "3523702", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "クルーエルクロウ", + "alias_name_display" : "クルーエルクロウ", + "event" : [ { + "event_id" : 1901, + "event_name" : "童話公演 気まぐれアリスと不思議の国" + } ], + "hash" : "922f70e6284cac4909124ad587aad82f", + "id" : "3431201", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "クルーエルクロウ", + "alias_name_display" : "クルーエルクロウ", + "event" : [ { + "event_id" : 1901, + "event_name" : "童話公演 気まぐれアリスと不思議の国" + } ], + "hash" : "1ee716e4411265ade87048be92422d1d", + "id" : "3531202", + "profile" : { + "bust" : "81", + "height" : "156", + "hip" : "81", + "waist" : "55", + "weight" : "45" + } + } ], + "idol_id" : 169, + "idol_name" : "仙崎恵磨", + "idol_name_display" : "仙崎恵磨", + "units" : [ { + "id" : "112", + "name" : "ギャルズパーティー" + }, { + "id" : "154", + "name" : "秋色温泉" + }, { + "id" : "170", + "name" : "UKスタイル" + }, { + "id" : "208", + "name" : "ロワイヤルスタイル" + } ] +}, { + "aliases" : [ { + "hash" : "2ba9aa6bf49a8d75a1cf6ae3a131de74", + "id" : "3200801", + "profile" : { + "bust" : "80", + "height" : "148", + "hip" : "82", + "waist" : "60", + "weight" : "40" + } + }, { + "hash" : "3d0085be5f6add9c2d1eb2b484a02fbf", + "id" : "3300802", + "profile" : { + "bust" : "80", + "height" : "148", + "hip" : "82", + "waist" : "60", + "weight" : "40" + } + }, { + "alias_name" : "湯けむり紀行", + "alias_name_display" : "湯けむり紀行", + "hash" : "0fea5846d80145b07c4a992b77c85922", + "id" : "3231301", + "profile" : { + "bust" : "80", + "height" : "148", + "hip" : "82", + "waist" : "60", + "weight" : "40" + } + }, { + "alias_name" : "湯けむり紀行", + "alias_name_display" : "湯けむり紀行", + "hash" : "d963e9624da72e02228195db55a89219", + "id" : "3331302", + "profile" : { + "bust" : "80", + "height" : "148", + "hip" : "82", + "waist" : "60", + "weight" : "40" + } + }, { + "alias_name" : "全力熱血", + "alias_name_display" : "全力熱血", + "hash" : "5d7f41615b787cc7d3ab3a1f377fd936", + "id" : "3402801", + "profile" : { + "bust" : "80", + "height" : "148", + "hip" : "82", + "waist" : "60", + "weight" : "40" + } + }, { + "alias_name" : "全力熱血", + "alias_name_display" : "全力熱血", + "hash" : "363a16627a484afd5d6a40db7fc761e8", + "id" : "3502802", + "profile" : { + "bust" : "80", + "height" : "148", + "hip" : "82", + "waist" : "60", + "weight" : "40" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "36ba64d4547b90ed4a529998022f112f", + "id" : "3406701", + "profile" : { + "bust" : "80", + "height" : "148", + "hip" : "82", + "waist" : "60", + "weight" : "40" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "3c7d9f82c5984e67fc79749cfe3869cc", + "id" : "3506702", + "profile" : { + "bust" : "80", + "height" : "148", + "hip" : "82", + "waist" : "60", + "weight" : "40" + } + }, { + "alias_name" : "暴走☆花嫁", + "alias_name_display" : "暴走☆花嫁", + "hash" : "8f54ab4a77270d5799c31edff371e945", + "id" : "3407101", + "profile" : { + "bust" : "80", + "height" : "148", + "hip" : "82", + "waist" : "60", + "weight" : "40" + } + }, { + "alias_name" : "暴走☆花嫁", + "alias_name_display" : "暴走☆花嫁", + "hash" : "1d1b4eba1b4f97930d41cd9bd6e8c45e", + "id" : "3507102", + "profile" : { + "bust" : "80", + "height" : "148", + "hip" : "82", + "waist" : "60", + "weight" : "40" + } + }, { + "alias_name" : "バーニングハート", + "alias_name_display" : "バーニングハート", + "hash" : "1a41c58580b5f380f9ae1080f1bd01c5", + "id" : "3410101", + "profile" : { + "bust" : "80", + "height" : "148", + "hip" : "82", + "waist" : "60", + "weight" : "40" + } + }, { + "alias_name" : "バーニングハート", + "alias_name_display" : "バーニングハート", + "hash" : "1c048cc1b02c25f972f8147b14c2c19b", + "id" : "3510102", + "profile" : { + "bust" : "80", + "height" : "148", + "hip" : "82", + "waist" : "60", + "weight" : "40" + } + }, { + "alias_name" : "プールサイドクイーン", + "alias_name_display" : "プールサイドクイーン", + "hash" : "0a49238fa8e0451304135adbc957705c", + "id" : "3415601", + "profile" : { + "bust" : "80", + "height" : "148", + "hip" : "82", + "waist" : "60", + "weight" : "40" + } + }, { + "alias_name" : "プールサイドクイーン", + "alias_name_display" : "プールサイドクイーン", + "hash" : "50a3f572c3c17067f6a37ba5b2b58da4", + "id" : "3515602", + "profile" : { + "bust" : "80", + "height" : "148", + "hip" : "82", + "waist" : "60", + "weight" : "40" + } + }, { + "alias_name" : "3rdアニバーサリー", + "alias_name_display" : "3rdアニバーサリー", + "event" : [ { + "event_id" : 415, + "event_name" : "アイドルプロデュース the 3rd Anniversary" + } ], + "hash" : "99e843a15f7f2073232bb045f5f59baf", + "id" : "3419601", + "profile" : { + "bust" : "80", + "height" : "148", + "hip" : "82", + "waist" : "60", + "weight" : "40" + } + }, { + "alias_name" : "3rdアニバーサリー", + "alias_name_display" : "3rdアニバーサリー", + "event" : [ { + "event_id" : 415, + "event_name" : "アイドルプロデュース the 3rd Anniversary" + } ], + "hash" : "b5432fa0d132d27b02039aea00da87d3", + "id" : "3519602", + "profile" : { + "bust" : "80", + "height" : "148", + "hip" : "82", + "waist" : "60", + "weight" : "40" + } + }, { + "alias_name" : "3rdアニバーサリー・S", + "alias_name_display" : "3rdアニバーサリー・S", + "event" : [ { + "event_id" : 415, + "event_name" : "アイドルプロデュース the 3rd Anniversary" + } ], + "hash" : "bd500c4da4d4b7e1ca5e54f813177ed6", + "id" : "3419701", + "profile" : { + "bust" : "80", + "height" : "148", + "hip" : "82", + "waist" : "60", + "weight" : "40" + } + }, { + "alias_name" : "3rdアニバーサリー・S", + "alias_name_display" : "3rdアニバーサリー・S", + "event" : [ { + "event_id" : 415, + "event_name" : "アイドルプロデュース the 3rd Anniversary" + } ], + "hash" : "e27d096696fd3ffd8baaf504f526864d", + "id" : "3519702", + "profile" : { + "bust" : "80", + "height" : "148", + "hip" : "82", + "waist" : "60", + "weight" : "40" + } + }, { + "alias_name" : "放課後トライ", + "alias_name_display" : "放課後トライ", + "event" : [ { + "event_id" : "022", + "event_name" : "第22回プロダクションマッチフェスティバル" + } ], + "hash" : "bdc9cebae8d2f4aa75cbe2ac77876726", + "id" : "3424301", + "profile" : { + "bust" : "80", + "height" : "148", + "hip" : "82", + "waist" : "60", + "weight" : "40" + } + }, { + "alias_name" : "放課後トライ", + "alias_name_display" : "放課後トライ", + "event" : [ { + "event_id" : "022", + "event_name" : "第22回プロダクションマッチフェスティバル" + } ], + "hash" : "40577520ba74911e5233e36f28eac68d", + "id" : "3524302", + "profile" : { + "bust" : "80", + "height" : "148", + "hip" : "82", + "waist" : "60", + "weight" : "40" + } + }, { + "alias_name" : "シンデレラドリーム", + "alias_name_display" : "シンデレラドリーム", + "hash" : "c3eca737aebfe22448304ff91b552b4e", + "id" : "3429701", + "profile" : { + "bust" : "80", + "height" : "148", + "hip" : "82", + "waist" : "60", + "weight" : "40" + } + }, { + "alias_name" : "シンデレラドリーム", + "alias_name_display" : "シンデレラドリーム", + "hash" : "a90865f4f336e89e69fe55f45137c05d", + "id" : "3529702", + "profile" : { + "bust" : "80", + "height" : "148", + "hip" : "82", + "waist" : "60", + "weight" : "40" + } + }, { + "alias_name" : "シャイニーブルーム", + "alias_name_display" : "シャイニーブルーム", + "hash" : "2149410a8b10577676fd93962e65e72d", + "id" : "3432401", + "profile" : { + "bust" : "80", + "height" : "148", + "hip" : "82", + "waist" : "60", + "weight" : "40" + } + }, { + "alias_name" : "シャイニーブルーム", + "alias_name_display" : "シャイニーブルーム", + "hash" : "9c04faffee708181d50dca5884d3fb1e", + "id" : "3532402", + "profile" : { + "bust" : "80", + "height" : "148", + "hip" : "82", + "waist" : "60", + "weight" : "40" + } + } ], + "idol_id" : 170, + "idol_name" : "日野茜", + "idol_name_display" : "日野茜", + "units" : [ { + "id" : "15", + "name" : "サイキックヒーツ" + }, { + "id" : "148", + "name" : "チアフルボンバーズ" + }, { + "id" : "153", + "name" : "Positive Passion" + }, { + "id" : "190", + "name" : "サマプリ" + }, { + "id" : "203", + "name" : "ゼッケンズ" + }, { + "id" : "212", + "name" : "CINDERELLA GIRLS" + } ] +}, { + "aliases" : [ { + "hash" : "e36b10a6274efaa7836e5b54f9a47ffa", + "id" : "3200901", + "profile" : { + "bust" : "91", + "height" : "182", + "hip" : "86", + "waist" : "64", + "weight" : "60" + } + }, { + "hash" : "67fb7b5c31807c904c0fac573a185733", + "id" : "3300902", + "profile" : { + "bust" : "91", + "height" : "184", + "hip" : "87", + "waist" : "65", + "weight" : "61" + } + }, { + "alias_name" : "京町乙女", + "alias_name_display" : "京町乙女", + "event" : [ { + "event_id" : 402, + "event_name" : "アイドルプロデュース京町編" + } ], + "hash" : "27768e59fb3f6273046deb807ed464d1", + "id" : "3206801", + "profile" : { + "bust" : "92", + "height" : "186", + "hip" : "87", + "waist" : "65", + "weight" : "61.5" + } + }, { + "alias_name" : "京町乙女", + "alias_name_display" : "京町乙女", + "event" : [ { + "event_id" : 402, + "event_name" : "アイドルプロデュース京町編" + } ], + "hash" : "d114ead173608ffaaa6d3865c7cf001b", + "id" : "3306802", + "profile" : { + "bust" : "92", + "height" : "186.2", + "hip" : "87", + "waist" : "65", + "weight" : "61.5" + } + }, { + "alias_name" : "ナイトパーティー", + "alias_name_display" : "ナイトパーティー", + "hash" : "bf0808c3848632a3eae9e4f9ac3b2d2d", + "id" : "3224001", + "profile" : { + "bust" : "92", + "height" : "186.2", + "hip" : "87", + "waist" : "65", + "weight" : "61.5" + } + }, { + "alias_name" : "ナイトパーティー", + "alias_name_display" : "ナイトパーティー", + "hash" : "91323eeabe7830ac1134cb7cd640abed", + "id" : "3324002", + "profile" : { + "bust" : "92", + "height" : "186.2", + "hip" : "87", + "waist" : "65", + "weight" : "61.5" + } + }, { + "alias_name" : "ラブリープリンセス", + "alias_name_display" : "ラブリープリンセス", + "event" : [ { + "event_id" : 201, + "event_name" : "アイドルサバイバル" + } ], + "hash" : "13d35f865ec01a0b67bd9298ce18fde1", + "id" : "3400801", + "profile" : { + "bust" : "91", + "height" : "184.5", + "hip" : "86", + "waist" : "64", + "weight" : "61" + } + }, { + "alias_name" : "ラブリープリンセス", + "alias_name_display" : "ラブリープリンセス", + "event" : [ { + "event_id" : 201, + "event_name" : "アイドルサバイバル" + } ], + "hash" : "8d11496014d025ce5a9d6b29798cbb28", + "id" : "3500802", + "profile" : { + "bust" : "91", + "height" : "185", + "hip" : "87", + "waist" : "65", + "weight" : "61.5" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "98e1c97f110919d0776c498088d498a2", + "id" : "3402601", + "profile" : { + "bust" : "91", + "height" : "182", + "hip" : "86", + "waist" : "64", + "weight" : "60" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "805521caf23ffffe33935a44a3c3bb9f", + "id" : "3502602", + "profile" : { + "bust" : "91", + "height" : "184", + "hip" : "87", + "waist" : "65", + "weight" : "61" + } + }, { + "alias_name" : "キューティーメイド", + "alias_name_display" : "キューティーメイド", + "hash" : "681565d6931e8942e07aa96914bae78a", + "id" : "3403001", + "profile" : { + "bust" : "92", + "height" : "185.5", + "hip" : "87", + "waist" : "65", + "weight" : "61" + } + }, { + "alias_name" : "キューティーメイド", + "alias_name_display" : "キューティーメイド", + "hash" : "c838c2b59f98bf1c5a788e6f735da0b1", + "id" : "3503002", + "profile" : { + "bust" : "92", + "height" : "186", + "hip" : "87", + "waist" : "65", + "weight" : "61.5" + } + }, { + "alias_name" : "ゴシックプリンセス", + "alias_name_display" : "ゴシックプリンセス", + "hash" : "f4932a6e93017b3dde0189c4b2c765af", + "id" : "3405301", + "profile" : { + "bust" : "92", + "height" : "186", + "hip" : "87", + "waist" : "65", + "weight" : "61.5" + } + }, { + "alias_name" : "ゴシックプリンセス", + "alias_name_display" : "ゴシックプリンセス", + "hash" : "4ce06aedcdc3452d744898d33dacf148", + "id" : "3505302", + "profile" : { + "bust" : "92", + "height" : "186.2", + "hip" : "87", + "waist" : "65", + "weight" : "61.5" + } + }, { + "alias_name" : "ニューイヤープリンセス", + "alias_name_display" : "ニューイヤープリンセス", + "hash" : "a913d3efecf382ac9179ba1073df905c", + "id" : "3410801", + "profile" : { + "bust" : "92", + "height" : "186.2", + "hip" : "87", + "waist" : "65", + "weight" : "61.5" + } + }, { + "alias_name" : "ニューイヤープリンセス", + "alias_name_display" : "ニューイヤープリンセス", + "hash" : "eccdc3e012a96c6c4f69cebfb8774946", + "id" : "3510802", + "profile" : { + "bust" : "92", + "height" : "186.2", + "hip" : "87", + "waist" : "65", + "weight" : "61.5" + } + }, { + "alias_name" : "ワンダフルマジック", + "alias_name_display" : "ワンダフルマジック", + "hash" : "e4cf30032d3151909b22ee89cdc5a16d", + "id" : "3412401", + "profile" : { + "bust" : "92", + "height" : "186.2", + "hip" : "87", + "waist" : "65", + "weight" : "61.5" + } + }, { + "alias_name" : "ワンダフルマジック", + "alias_name_display" : "ワンダフルマジック", + "hash" : "5dda31240aff8ba47ce49dc2b381009e", + "id" : "3512402", + "profile" : { + "bust" : "92", + "height" : "186.2", + "hip" : "87", + "waist" : "65", + "weight" : "61.5" + } + }, { + "alias_name" : "びびっど☆モデル", + "alias_name_display" : "びびっど☆モデル", + "event" : [ { + "event_id" : 1203, + "event_name" : "目指せきらきらモデル アイドルチャレンジ" + } ], + "hash" : "3f3e317ba9be747dc17321a725664108", + "id" : "3417601", + "profile" : { + "bust" : "92", + "height" : "186.2", + "hip" : "87", + "waist" : "65", + "weight" : "61.5" + } + }, { + "alias_name" : "びびっど☆モデル", + "alias_name_display" : "びびっど☆モデル", + "event" : [ { + "event_id" : 1203, + "event_name" : "目指せきらきらモデル アイドルチャレンジ" + } ], + "hash" : "90977ab9ab78e092fa509d5313e532b4", + "id" : "3517602", + "profile" : { + "bust" : "92", + "height" : "186.2", + "hip" : "87", + "waist" : "65", + "weight" : "61.5" + } + }, { + "alias_name" : "はぴはぴデビル", + "alias_name_display" : "はぴはぴデビル", + "hash" : "db62b848e999ac5f02979ed4a00c2f9e", + "id" : "3421201", + "profile" : { + "bust" : "92", + "height" : "186.2", + "hip" : "87", + "waist" : "65", + "weight" : "61.5" + } + }, { + "alias_name" : "はぴはぴデビル", + "alias_name_display" : "はぴはぴデビル", + "hash" : "c10030d3b38bd695450f91a5177e5eb4", + "id" : "3521202", + "profile" : { + "bust" : "92", + "height" : "186.2", + "hip" : "87", + "waist" : "65", + "weight" : "61.5" + } + }, { + "alias_name" : "凸レーション", + "alias_name_display" : "凸レーション", + "hash" : "a289fc73aa922d84f7917c8eb21428e0", + "id" : "3522702", + "profile" : { + "bust" : "91", + "height" : "185", + "hip" : "87", + "waist" : "65", + "weight" : "61.5" + } + }, { + "alias_name" : "ぐれいと博士", + "alias_name_display" : "ぐれいと博士", + "event" : [ { + "event_id" : 523, + "event_name" : "鋼鉄公演 きらりんロボ -襲来!コスメティア帝国-" + } ], + "hash" : "8318239c3aa1500c359147deafe04495", + "id" : "3429101", + "profile" : { + "bust" : "92", + "height" : "186.2", + "hip" : "87", + "waist" : "65", + "weight" : "61.5" + } + }, { + "alias_name" : "ぐれいと博士", + "alias_name_display" : "ぐれいと博士", + "event" : [ { + "event_id" : 523, + "event_name" : "鋼鉄公演 きらりんロボ -襲来!コスメティア帝国-" + } ], + "hash" : "2d2bd33c37a21e558eb0c9fab16a8776", + "id" : "3529102", + "profile" : { + "bust" : "92", + "height" : "186.2", + "hip" : "87", + "waist" : "65", + "weight" : "61.5" + } + }, { + "alias_name" : "はぴはぴウェディング", + "alias_name_display" : "はぴはぴウェディング", + "hash" : "885b27d2b03761b4a9dc6fbaa438b094", + "id" : "3432901", + "profile" : { + "bust" : "92", + "height" : "186.2", + "hip" : "87", + "waist" : "65", + "weight" : "61.5" + } + }, { + "alias_name" : "はぴはぴウェディング", + "alias_name_display" : "はぴはぴウェディング", + "hash" : "076806b1ad6aeae0acb06132c6bb6929", + "id" : "3532902", + "profile" : { + "bust" : "92", + "height" : "186.2", + "hip" : "87", + "waist" : "65", + "weight" : "61.5" + } + }, { + "alias_name" : "ぷちっと☆スウィート", + "alias_name_display" : "ぷちっと☆スウィート", + "hash" : "45cb660714f8f59460d315604f53b314", + "id" : "3435601", + "profile" : { + "bust" : "92", + "height" : "186.2", + "hip" : "87", + "waist" : "65", + "weight" : "61.5" + } + }, { + "alias_name" : "ぷちっと☆スウィート", + "alias_name_display" : "ぷちっと☆スウィート", + "hash" : "ded71c9bb18c1052fb0640e53f40ea04", + "id" : "3535602", + "profile" : { + "bust" : "92", + "height" : "186.2", + "hip" : "87", + "waist" : "65", + "weight" : "61.5" + } + }, { + "alias_name" : "ろまんすジェット", + "alias_name_display" : "ろまんすジェット", + "event" : [ { + "event_id" : "034", + "event_name" : "第34回プロダクションマッチフェスティバル" + } ], + "hash" : "e34a8cecd07eb4a178c622a6d45f7f50", + "id" : "3438801", + "profile" : { + "bust" : "92", + "height" : "186.2", + "hip" : "87", + "waist" : "65", + "weight" : "61.5" + } + }, { + "alias_name" : "ろまんすジェット", + "alias_name_display" : "ろまんすジェット", + "event" : [ { + "event_id" : "034", + "event_name" : "第34回プロダクションマッチフェスティバル" + } ], + "hash" : "d5d01a505a212461f49c618591073cf5", + "id" : "3538802", + "profile" : { + "bust" : "92", + "height" : "186.2", + "hip" : "87", + "waist" : "65", + "weight" : "61.5" + } + } ], + "idol_id" : 171, + "idol_name" : "諸星きらり", + "idol_name_display" : "諸星きらり", + "units" : [ { + "id" : "76", + "name" : "HappyHappyTwin" + }, { + "id" : "91", + "name" : "京町乙女" + }, { + "id" : "149", + "name" : "凸レーション" + }, { + "id" : "191", + "name" : "Love Yell" + }, { + "id" : "204", + "name" : "トロピカル☆スターズ" + }, { + "id" : "213", + "name" : "CINDERELLA PROJECT" + } ] +}, { + "aliases" : [ { + "hash" : "2af54b80c9be9ffde43904089069d877", + "id" : "3201001", + "profile" : { + "bust" : "86", + "height" : "161", + "hip" : "88", + "waist" : "58", + "weight" : "46" + } + }, { + "hash" : "7fedbb6c9f01d1ac667ae1978cc2b3f5", + "id" : "3301002", + "profile" : { + "bust" : "86", + "height" : "161", + "hip" : "88", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "ビーチガール", + "alias_name_display" : "ビーチガール", + "event" : [ { + "event_id" : 1703, + "event_name" : "アイドルプロデュース おいでよ!海の家" + } ], + "hash" : "342e254d0cc96070e10c97f6cb744832", + "id" : "3324402", + "profile" : { + "bust" : "88", + "height" : "161", + "hip" : "88", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "ビーチガール・S", + "alias_name_display" : "ビーチガール・S", + "event" : [ { + "event_id" : 1703, + "event_name" : "アイドルプロデュース おいでよ!海の家" + } ], + "hash" : "d8a1b40c7f18b184bf206fef877eb34b", + "id" : "3324502", + "profile" : { + "bust" : "88", + "height" : "161", + "hip" : "88", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "スイートバレンタイン", + "alias_name_display" : "スイートバレンタイン", + "event" : [ { + "event_id" : 103, + "event_name" : "バレンタインパーティー" + } ], + "hash" : "ff99cc10da22220420bd52ef92a8d135", + "id" : "3400901", + "profile" : { + "bust" : "86", + "height" : "161", + "hip" : "88", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "スイートバレンタイン", + "alias_name_display" : "スイートバレンタイン", + "event" : [ { + "event_id" : 103, + "event_name" : "バレンタインパーティー" + } ], + "hash" : "bab8fa10fde7b5a62fbd398303d36b79", + "id" : "3500902", + "profile" : { + "bust" : "86", + "height" : "161", + "hip" : "88", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "シンデレラガール", + "alias_name_display" : "シンデレラガール", + "hash" : "034377942c947a0ecf549e21e8b0c6be", + "id" : "3403201", + "profile" : { + "bust" : "88", + "height" : "161", + "hip" : "88", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "シンデレラガール", + "alias_name_display" : "シンデレラガール", + "hash" : "9c90f735aa3431dd6c1d78ed0fd2e4e1", + "id" : "3503202", + "profile" : { + "bust" : "88", + "height" : "161", + "hip" : "88", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "アニバーサリープリンセス", + "alias_name_display" : "アニバーサリープリンセス", + "event" : [ { + "event_id" : 403, + "event_name" : "アイドルプロデュース the 1st Anniversary" + } ], + "hash" : "11a50ed020b2340a327caced00b51b5c", + "id" : "3403901", + "profile" : { + "bust" : "88", + "height" : "161", + "hip" : "88", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "アニバーサリープリンセス", + "alias_name_display" : "アニバーサリープリンセス", + "event" : [ { + "event_id" : 403, + "event_name" : "アイドルプロデュース the 1st Anniversary" + } ], + "hash" : "f769e6ce429482fbbdcde602a3c3309f", + "id" : "3503902", + "profile" : { + "bust" : "88", + "height" : "161", + "hip" : "88", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "25d5b934facd2e7774950f0739677c73", + "id" : "3404801", + "profile" : { + "bust" : "86", + "height" : "161", + "hip" : "88", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "06aed4cfdfc8300c80e61e7baca31e71", + "id" : "3504802", + "profile" : { + "bust" : "86", + "height" : "161", + "hip" : "88", + "waist" : "58", + "weight" : "46" + } + }, { + "alias_name" : "プリンセスバニー", + "alias_name_display" : "プリンセスバニー", + "hash" : "4d4a2e681beeaef1858015166d1f9f5d", + "id" : "3408501", + "profile" : { + "bust" : "88", + "height" : "161", + "hip" : "88", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "プリンセスバニー", + "alias_name_display" : "プリンセスバニー", + "hash" : "7fbb40e99cb6fea16823cf3fc7c50cd1", + "id" : "3508502", + "profile" : { + "bust" : "88", + "height" : "161", + "hip" : "88", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "ふわふわメイド", + "alias_name_display" : "ふわふわメイド", + "hash" : "7efecb6b29255582379ee2a4256047e9", + "id" : "3412001", + "profile" : { + "bust" : "88", + "height" : "161", + "hip" : "88", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "ふわふわメイド", + "alias_name_display" : "ふわふわメイド", + "hash" : "4aa960584fafb8410e3ed44ae8ca26b2", + "id" : "3512002", + "profile" : { + "bust" : "88", + "height" : "161", + "hip" : "88", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "シンデレラドリーム", + "alias_name_display" : "シンデレラドリーム", + "hash" : "d7ca177e2b83a24a67c781c249182925", + "id" : "3416701", + "profile" : { + "bust" : "88", + "height" : "161", + "hip" : "88", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "シンデレラドリーム", + "alias_name_display" : "シンデレラドリーム", + "hash" : "faa98701e195ebc5d0d2da415e0e0d73", + "id" : "3516702", + "profile" : { + "bust" : "88", + "height" : "161", + "hip" : "88", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "スウィートトゥスウィート", + "alias_name_display" : "スウィートトゥスウィート", + "hash" : "db8c193960aff622a0cec3ce39ee9989", + "id" : "3419001", + "profile" : { + "bust" : "88", + "height" : "161", + "hip" : "88", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "スウィートトゥスウィート", + "alias_name_display" : "スウィートトゥスウィート", + "hash" : "1a77b2cd5134093cda454212e9c4847e", + "id" : "3519002", + "profile" : { + "bust" : "88", + "height" : "161", + "hip" : "88", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "いっしょにえいっ!", + "alias_name_display" : "いっしょにえいっ!", + "hash" : "2c022714d96cafa06555dd9f20f40835", + "id" : "3423201", + "profile" : { + "bust" : "88", + "height" : "161", + "hip" : "88", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "いっしょにえいっ!", + "alias_name_display" : "いっしょにえいっ!", + "hash" : "55ddccc958d486c8347c694072d1d5cc", + "id" : "3523202", + "profile" : { + "bust" : "88", + "height" : "161", + "hip" : "88", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "夏のお届け", + "alias_name_display" : "夏のお届け", + "event" : [ { + "event_id" : 1703, + "event_name" : "アイドルプロデュース おいでよ!海の家" + } ], + "hash" : "e82f2ce53d0dcc09860e503516407b62", + "id" : "3425301", + "profile" : { + "bust" : "88", + "height" : "161", + "hip" : "88", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "夏のお届け", + "alias_name_display" : "夏のお届け", + "event" : [ { + "event_id" : 1703, + "event_name" : "アイドルプロデュース おいでよ!海の家" + } ], + "hash" : "7dd0c60d4ab37295a9201125ad8c178c", + "id" : "3525302", + "profile" : { + "bust" : "88", + "height" : "161", + "hip" : "88", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "スウィートサマーナイト", + "alias_name_display" : "スウィートサマーナイト", + "event" : [ { + "event_id" : 722, + "event_name" : "夏祭りDEドリームLIVEフェスティバル" + } ], + "hash" : "a3ba1315b2d8f4e7feee004b53c16b49", + "id" : "3433401", + "profile" : { + "bust" : "88", + "height" : "161", + "hip" : "88", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "スウィートサマーナイト", + "alias_name_display" : "スウィートサマーナイト", + "event" : [ { + "event_id" : 722, + "event_name" : "夏祭りDEドリームLIVEフェスティバル" + } ], + "hash" : "8f7c91d9148d3f3651eaa326b49052d9", + "id" : "3533402", + "profile" : { + "bust" : "88", + "height" : "161", + "hip" : "88", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "ホーリーリゾートナイト", + "alias_name_display" : "ホーリーリゾートナイト", + "hash" : "eea0e747d0a7d87755a66d81a80348ae", + "id" : "3437001", + "profile" : { + "bust" : "88", + "height" : "161", + "hip" : "88", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "ホーリーリゾートナイト", + "alias_name_display" : "ホーリーリゾートナイト", + "hash" : "b188b901992026dee7ba0b274a118a60", + "id" : "3537002", + "profile" : { + "bust" : "88", + "height" : "161", + "hip" : "88", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "空のおくりもの", + "alias_name_display" : "空のおくりもの", + "hash" : "0b19c1ca9b7472477bc293eed4ce1cee", + "id" : "3440101", + "profile" : { + "bust" : "88", + "height" : "161", + "hip" : "88", + "waist" : "57", + "weight" : "47" + } + }, { + "alias_name" : "空のおくりもの", + "alias_name_display" : "空のおくりもの", + "hash" : "36516e31833083116be887f5b74985ab", + "id" : "3540102", + "profile" : { + "bust" : "88", + "height" : "161", + "hip" : "88", + "waist" : "57", + "weight" : "47" + } + } ], + "idol_id" : 172, + "idol_name" : "十時愛梨", + "idol_name_display" : "十時愛梨", + "units" : [ { + "id" : "25", + "name" : "スウィートラヴァーズ" + }, { + "id" : "69", + "name" : "Ai's" + }, { + "id" : "188", + "name" : "Sweetches" + }, { + "id" : "203", + "name" : "ゼッケンズ" + }, { + "id" : "205", + "name" : "シンデレラガール" + }, { + "id" : "212", + "name" : "CINDERELLA GIRLS" + } ] +}, { + "aliases" : [ { + "hash" : "f382a774439acb0a89167e8d2923b630", + "id" : "3201101", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "86", + "waist" : "55", + "weight" : "43" + } + }, { + "hash" : "6099b368b8bf9782cebecb0e44a41232", + "id" : "3301102", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "86", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "聖夜", + "alias_name_display" : "聖夜", + "event" : [ { + "event_id" : 101, + "event_name" : "星降るクリスマス" + } ], + "hash" : "440a03665b455c7bcfd3dc0d98b824ff", + "id" : "3202101", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "86", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "聖夜", + "alias_name_display" : "聖夜", + "event" : [ { + "event_id" : 101, + "event_name" : "星降るクリスマス" + } ], + "hash" : "266144cbb02edc5958e0568f11557c93", + "id" : "3302102", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "86", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "トラベルスタイル ブラウン", + "alias_name_display" : "トラベルスタイル ブラウン", + "hash" : "efa6d6607cc1a82d8a87acf0a8169655", + "id" : "3206901", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "86", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "トラベルスタイル グリーン", + "alias_name_display" : "トラベルスタイル グリーン", + "hash" : "4c715aaa8d5e67763d6331346aa91542", + "id" : "3206902", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "86", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "トラベルスタイル ピンク", + "alias_name_display" : "トラベルスタイル ピンク", + "hash" : "6f18bdce1306af0aee712f91b24e5dab", + "id" : "3206903", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "86", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "トラベルスタイル ブラック", + "alias_name_display" : "トラベルスタイル ブラック", + "hash" : "b5b11e6049d261c4d9dba48f90a74c4a", + "id" : "3206904", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "86", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "アラビアンドレス グリーン", + "alias_name_display" : "アラビアンドレス グリーン", + "hash" : "1df9b2a1e81a015409d89ec644398a92", + "id" : "3306905", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "86", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "アラビアンドレス ブルー", + "alias_name_display" : "アラビアンドレス ブルー", + "hash" : "3272befd917e2a1d74d75acb4a64ce7f", + "id" : "3306906", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "86", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "アラビアンドレス レッド", + "alias_name_display" : "アラビアンドレス レッド", + "hash" : "16ddd10637f3d70cd0d3b670be191dc3", + "id" : "3306907", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "86", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "アラビアンドレス ブラック", + "alias_name_display" : "アラビアンドレス ブラック", + "hash" : "7a208c090db9ec7b3dab29117f4346a5", + "id" : "3306908", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "86", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "アラビアンドレス ゴールド", + "alias_name_display" : "アラビアンドレス ゴールド", + "hash" : "e7643a2c9f27cad76554e8aab9c3bb93", + "id" : "3306909", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "86", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "新春コレクション", + "alias_name_display" : "新春コレクション", + "hash" : "2021128f14e5bfcadd20a0973ba8258f", + "id" : "3214801", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "86", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "新春コレクション", + "alias_name_display" : "新春コレクション", + "hash" : "5be5890f3317c441ebc4e2ad70cf75ae", + "id" : "3314802", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "86", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ファーバースタイル", + "alias_name_display" : "ファーバースタイル", + "hash" : "282db7b7a41863a84f27da47ee75e6ad", + "id" : "3227301", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "86", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ファーバースタイル", + "alias_name_display" : "ファーバースタイル", + "hash" : "f2b082328617efad27ef7189c8f93e41", + "id" : "3327302", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "86", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ハッピーブライダル", + "alias_name_display" : "ハッピーブライダル", + "event" : [ { + "event_id" : 105, + "event_name" : "きらめくブライダルショー" + } ], + "hash" : "bd67c595320eec896b20adab8246cb8e", + "id" : "3401801", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "86", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ハッピーブライダル", + "alias_name_display" : "ハッピーブライダル", + "event" : [ { + "event_id" : 105, + "event_name" : "きらめくブライダルショー" + } ], + "hash" : "f6e881bd45b483f16c9c307a6f5fa9d5", + "id" : "3501802", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "86", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "千夜一夜舞姫", + "alias_name_display" : "千夜一夜舞姫", + "hash" : "1724e54c47dc1c5ea2665d24939bf5ae", + "id" : "3403510", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "86", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "千夜一夜舞姫", + "alias_name_display" : "千夜一夜舞姫", + "hash" : "21fe7b8165a5785bf25cce6710551f3d", + "id" : "3503511", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "86", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "カーニバルスター", + "alias_name_display" : "カーニバルスター", + "hash" : "b5a925908f8d9e107c00ed5da3053525", + "id" : "3407301", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "86", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "カーニバルスター", + "alias_name_display" : "カーニバルスター", + "hash" : "22df606bb7b17d4cf58ace3ebcfcc1b2", + "id" : "3507302", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "86", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ヴォヤージュ・プリンセス", + "alias_name_display" : "ヴォヤージュ・プリンセス", + "event" : [ { + "event_id" : 511, + "event_name" : "幻想公演 黒薔薇姫のヴォヤージュ" + } ], + "hash" : "98eb2fe3e133b3729a7da417a389d155", + "id" : "3413201", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "86", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "ヴォヤージュ・プリンセス", + "alias_name_display" : "ヴォヤージュ・プリンセス", + "event" : [ { + "event_id" : 511, + "event_name" : "幻想公演 黒薔薇姫のヴォヤージュ" + } ], + "hash" : "e565c552c27db943ad6db5ba2a7240da", + "id" : "3513202", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "86", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "南国オニむすめ", + "alias_name_display" : "南国オニむすめ", + "event" : [ { + "event_id" : 711, + "event_name" : "福は内DEドリームLIVEフェスティバル" + } ], + "hash" : "186891067486fac1d3dd32ee5d8f60ec", + "id" : "3421101", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "86", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "南国オニむすめ", + "alias_name_display" : "南国オニむすめ", + "event" : [ { + "event_id" : 711, + "event_name" : "福は内DEドリームLIVEフェスティバル" + } ], + "hash" : "e03ea585a3b44cc59e7f35e478f6aad6", + "id" : "3521102", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "86", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "熱情のメイド", + "alias_name_display" : "熱情のメイド", + "hash" : "641de8e01bf4bcb53165e17e145c394c", + "id" : "3426201", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "86", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "熱情のメイド", + "alias_name_display" : "熱情のメイド", + "hash" : "930037884bb22ac36fac0509dba6b7c1", + "id" : "3526202", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "86", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "おいしい体験", + "alias_name_display" : "おいしい体験", + "event" : [ { + "event_id" : 1706, + "event_name" : "アイドルプロデュース 北の大地と夜さりの祭" + } ], + "hash" : "6324dade2fc264bb093679995e739ce4", + "id" : "3432701", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "86", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "おいしい体験", + "alias_name_display" : "おいしい体験", + "event" : [ { + "event_id" : 1706, + "event_name" : "アイドルプロデュース 北の大地と夜さりの祭" + } ], + "hash" : "110ecffefb66009043e02b1e6a502ee8", + "id" : "3532702", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "86", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "おいしい笑顔", + "alias_name_display" : "おいしい笑顔", + "event" : [ { + "event_id" : 1706, + "event_name" : "アイドルプロデュース 北の大地と夜さりの祭" + } ], + "hash" : "af2db88bb0e5382e09ddab757998481c", + "id" : "3432801", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "86", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "おいしい笑顔", + "alias_name_display" : "おいしい笑顔", + "event" : [ { + "event_id" : 1706, + "event_name" : "アイドルプロデュース 北の大地と夜さりの祭" + } ], + "hash" : "eb1010945d948fdbdef7deff5dd0f069", + "id" : "3532802", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "86", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "真冬の太陽", + "alias_name_display" : "真冬の太陽", + "event" : [ { + "event_id" : 1510, + "event_name" : "チーム対抗トークバトルショー オールスターSP" + } ], + "hash" : "7c92b21376459ee6864ed24def650fcf", + "id" : "3436901", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "86", + "waist" : "55", + "weight" : "43" + } + }, { + "alias_name" : "真冬の太陽", + "alias_name_display" : "真冬の太陽", + "event" : [ { + "event_id" : 1510, + "event_name" : "チーム対抗トークバトルショー オールスターSP" + } ], + "hash" : "6dc2df6837dff054aaaf63c93f92256b", + "id" : "3536902", + "profile" : { + "bust" : "84", + "height" : "155", + "hip" : "86", + "waist" : "55", + "weight" : "43" + } + } ], + "idol_id" : 173, + "idol_name" : "ナターリア", + "idol_name_display" : "ナターリア", + "units" : [ { + "id" : "31", + "name" : "ソル・カマル" + }, { + "id" : "125", + "name" : "ユア・フレンズ" + } ] +}, { + "aliases" : [ { + "hash" : "df8b4a9675f16bdc8379a8e5f59a20ad", + "id" : "3201201", + "profile" : { + "bust" : "83", + "height" : "160", + "hip" : "89", + "waist" : "60", + "weight" : "46" + } + }, { + "hash" : "ba2d9fc0c2d88014e875358f245b6e05", + "id" : "3301202", + "profile" : { + "bust" : "83", + "height" : "160", + "hip" : "89", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "ストイックビューティ", + "alias_name_display" : "ストイックビューティ", + "hash" : "54f6c52057b1ee155af0f9b3d9675a25", + "id" : "3207901", + "profile" : { + "bust" : "83", + "height" : "160", + "hip" : "89", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "ストイックビューティ", + "alias_name_display" : "ストイックビューティ", + "hash" : "f00fcf5ddeafeaa2451d5ba27d270ba8", + "id" : "3307902", + "profile" : { + "bust" : "83", + "height" : "160", + "hip" : "89", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "バニーガール", + "alias_name_display" : "バニーガール", + "hash" : "014c596e3f63a4268e1b08f577c7e4aa", + "id" : "3212501", + "profile" : { + "bust" : "83", + "height" : "160", + "hip" : "89", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "バニーガール", + "alias_name_display" : "バニーガール", + "hash" : "8693753c14c0e5dbff7021c880c8b4ad", + "id" : "3312502", + "profile" : { + "bust" : "83", + "height" : "160", + "hip" : "89", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "アダルティフェミニン", + "alias_name_display" : "アダルティフェミニン", + "hash" : "29afbffb42d6fabb1c7cd796b1bec5db", + "id" : "3217501", + "profile" : { + "bust" : "83", + "height" : "160", + "hip" : "89", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "アダルティフェミニン", + "alias_name_display" : "アダルティフェミニン", + "hash" : "f36f9067bd023981ae6ec8081920ac3c", + "id" : "3317502", + "profile" : { + "bust" : "83", + "height" : "160", + "hip" : "89", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "T.B.チアーズ", + "alias_name_display" : "T.B.チアーズ", + "event" : [ { + "event_id" : 1504, + "event_name" : "第4回チーム対抗トークバトルショー" + } ], + "hash" : "dacd3782cc330619e7b2505008e4527a", + "id" : "3225601", + "profile" : { + "bust" : "83", + "height" : "160", + "hip" : "89", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "T.B.チアーズ", + "alias_name_display" : "T.B.チアーズ", + "event" : [ { + "event_id" : 1504, + "event_name" : "第4回チーム対抗トークバトルショー" + } ], + "hash" : "cdc01ceb8c597ab043e4a0c4b1d611f5", + "id" : "3325602", + "profile" : { + "bust" : "83", + "height" : "160", + "hip" : "89", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "ビター&スウィート", + "alias_name_display" : "ビター&スウィート", + "hash" : "08c8021dd356090cf6e6c67ce364c6c5", + "id" : "3227601", + "profile" : { + "bust" : "83", + "height" : "160", + "hip" : "89", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "ビター&スウィート", + "alias_name_display" : "ビター&スウィート", + "hash" : "52f9319275299caf7bea5eeb1617c8fe", + "id" : "3327602", + "profile" : { + "bust" : "83", + "height" : "160", + "hip" : "89", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "サマービーチ", + "alias_name_display" : "サマービーチ", + "hash" : "73aafeafe35337515de4a8ea14811e4b", + "id" : "3230101", + "profile" : { + "bust" : "83", + "height" : "160", + "hip" : "89", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "サマービーチ", + "alias_name_display" : "サマービーチ", + "hash" : "2dff8b1eb623fe157e9994f11a8c4272", + "id" : "3330102", + "profile" : { + "bust" : "83", + "height" : "160", + "hip" : "89", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "湯けむり紀行", + "alias_name_display" : "湯けむり紀行", + "hash" : "5cdaef85b672564c81aae4d446c0d1fe", + "id" : "3233301", + "profile" : { + "bust" : "83", + "height" : "160", + "hip" : "89", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "湯けむり紀行", + "alias_name_display" : "湯けむり紀行", + "hash" : "cae2391c1b618fc95dd8b35d508b240e", + "id" : "3333302", + "profile" : { + "bust" : "83", + "height" : "160", + "hip" : "89", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "明日へのフライト", + "alias_name_display" : "明日へのフライト", + "event" : [ { + "event_id" : "015", + "event_name" : "第15回プロダクションマッチフェスティバル" + } ], + "hash" : "caa77dc7a7f1de14f95233f4f6fab724", + "id" : "3411701", + "profile" : { + "bust" : "83", + "height" : "160", + "hip" : "89", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "明日へのフライト", + "alias_name_display" : "明日へのフライト", + "event" : [ { + "event_id" : "015", + "event_name" : "第15回プロダクションマッチフェスティバル" + } ], + "hash" : "1b437d9ca380059cc9b380c5f2354511", + "id" : "3511702", + "profile" : { + "bust" : "83", + "height" : "160", + "hip" : "89", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "紅葉色の風", + "alias_name_display" : "紅葉色の風", + "event" : [ { + "event_id" : 709, + "event_name" : "第9回ドリームLIVEフェスティバル" + } ], + "hash" : "9086936700dd75591e0cfa109819e211", + "id" : "3418401", + "profile" : { + "bust" : "83", + "height" : "160", + "hip" : "89", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "紅葉色の風", + "alias_name_display" : "紅葉色の風", + "event" : [ { + "event_id" : 709, + "event_name" : "第9回ドリームLIVEフェスティバル" + } ], + "hash" : "497bf3092363f016268cf298c5b99146", + "id" : "3518402", + "profile" : { + "bust" : "83", + "height" : "160", + "hip" : "89", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "ストイック・ロワイヤル", + "alias_name_display" : "ストイック・ロワイヤル", + "event" : [ { + "event_id" : 813, + "event_name" : "第13回アイドルLIVEロワイヤル" + } ], + "hash" : "f9c3a2a5ede2924c4dc5b9829481e789", + "id" : "3425101", + "profile" : { + "bust" : "83", + "height" : "160", + "hip" : "89", + "waist" : "60", + "weight" : "46" + } + }, { + "alias_name" : "ストイック・ロワイヤル", + "alias_name_display" : "ストイック・ロワイヤル", + "event" : [ { + "event_id" : 813, + "event_name" : "第13回アイドルLIVEロワイヤル" + } ], + "hash" : "53c6e0d594d07c777aa0cceeb7e425b8", + "id" : "3525102", + "profile" : { + "bust" : "83", + "height" : "160", + "hip" : "89", + "waist" : "60", + "weight" : "46" + } + } ], + "idol_id" : 174, + "idol_name" : "相馬夏美", + "idol_name_display" : "相馬夏美", + "units" : [ { + "id" : "159", + "name" : "パステル・カクテル" + }, { + "id" : "167", + "name" : "ロマンティックツアーズ" + } ] +}, { + "aliases" : [ { + "hash" : "631512ff6dcc396969055e90d1430a6d", + "id" : "3201301", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "91", + "waist" : "57", + "weight" : "46" + } + }, { + "hash" : "569f02751f9ff485931fd93d5c1c81a3", + "id" : "3301302", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "91", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "メイドコレクション", + "alias_name_display" : "メイドコレクション", + "hash" : "25efbdc5d98716f254d4b615ab27b120", + "id" : "3206101", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "91", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "メイドコレクション", + "alias_name_display" : "メイドコレクション", + "hash" : "e5c75d9bfc61b4443d47ab881673d791", + "id" : "3306102", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "91", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "バリスタイル", + "alias_name_display" : "バリスタイル", + "event" : [ { + "event_id" : 505, + "event_name" : "アイドルLIVEツアーinバリ島" + } ], + "hash" : "da57276b8114b62e0baf4b45abe791c1", + "id" : "3211101", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "91", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "バリスタイル", + "alias_name_display" : "バリスタイル", + "event" : [ { + "event_id" : 505, + "event_name" : "アイドルLIVEツアーinバリ島" + } ], + "hash" : "d961c9e96664a1780df29863d264ac1f", + "id" : "3311102", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "91", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ティーフレーバーメイド", + "alias_name_display" : "ティーフレーバーメイド", + "hash" : "a3b8047efc21fd4c75c213c46c6ef4ba", + "id" : "3214601", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "91", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ティーフレーバーメイド", + "alias_name_display" : "ティーフレーバーメイド", + "hash" : "8c102de57f48bcbcf728f33a178490ab", + "id" : "3314602", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "91", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "クリスマスプレゼント", + "alias_name_display" : "クリスマスプレゼント", + "hash" : "8d214505b61bc523bb8d2c961f6cc893", + "id" : "3220601", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "91", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "クリスマスプレゼント", + "alias_name_display" : "クリスマスプレゼント", + "hash" : "c7c70767452bba98330bdfe14af0138b", + "id" : "3320602", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "91", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "フレッシュライフ", + "alias_name_display" : "フレッシュライフ", + "hash" : "9627ead9b834427fda965a722669ff1f", + "id" : "3223601", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "91", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "フレッシュライフ", + "alias_name_display" : "フレッシュライフ", + "hash" : "c5f8a13d83c343ba3e671d9d48766c10", + "id" : "3323602", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "91", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "チェンジタイム", + "alias_name_display" : "チェンジタイム", + "hash" : "70c0319dc14965836d47b43a0eb0231b", + "id" : "3228601", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "91", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "チェンジタイム", + "alias_name_display" : "チェンジタイム", + "hash" : "219b941411f0d170137aa0dbc575da04", + "id" : "3328602", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "91", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ぷちぷちフレッシュ", + "alias_name_display" : "ぷちぷちフレッシュ", + "hash" : "d8cdf407e9f473221b46a24aefb9ff5f", + "id" : "3234001", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "91", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "ぷちぷちフレッシュ", + "alias_name_display" : "ぷちぷちフレッシュ", + "hash" : "b2b089c4cb75471d8e24873800d34d05", + "id" : "3334002", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "91", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "甘いひととき", + "alias_name_display" : "甘いひととき", + "event" : [ { + "event_id" : 805, + "event_name" : "第5回アイドルLIVEロワイヤル" + } ], + "hash" : "46622b85db85b604f09c7761c3c961e9", + "id" : "3415101", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "91", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "甘いひととき", + "alias_name_display" : "甘いひととき", + "event" : [ { + "event_id" : 805, + "event_name" : "第5回アイドルLIVEロワイヤル" + } ], + "hash" : "a109b84c1e6b327f91f5844d4ae07435", + "id" : "3515102", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "91", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "小悪魔ヴァンパイア", + "alias_name_display" : "小悪魔ヴァンパイア", + "event" : [ { + "event_id" : 522, + "event_name" : "魔界公演 幽鬱女王とハロウィンの祝祭" + } ], + "hash" : "28333045bbce33e1dc610922ae42c0b3", + "id" : "3427301", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "91", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "小悪魔ヴァンパイア", + "alias_name_display" : "小悪魔ヴァンパイア", + "event" : [ { + "event_id" : 522, + "event_name" : "魔界公演 幽鬱女王とハロウィンの祝祭" + } ], + "hash" : "c4aec86eca5285bc73297ce6233f9afc", + "id" : "3527302", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "91", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "至福のボリューム", + "alias_name_display" : "至福のボリューム", + "hash" : "045dd1edac3495d38bb59e44b36b637e", + "id" : "3436201", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "91", + "waist" : "57", + "weight" : "46" + } + }, { + "alias_name" : "至福のボリューム", + "alias_name_display" : "至福のボリューム", + "hash" : "fdce336ae18237fdf6e8811aa42d5444", + "id" : "3536202", + "profile" : { + "bust" : "86", + "height" : "162", + "hip" : "91", + "waist" : "57", + "weight" : "46" + } + } ], + "idol_id" : 175, + "idol_name" : "槙原志保", + "idol_name_display" : "槙原志保", + "units" : [ { + "id" : "42", + "name" : "バリスタイル" + }, { + "id" : "119", + "name" : "フランメ・ルージュ" + }, { + "id" : "183", + "name" : "メイドコレクション" + } ] +}, { + "aliases" : [ { + "hash" : "e01a1807c67d2fc57825c3acbb06bb0f", + "id" : "3201401", + "profile" : { + "bust" : "81", + "height" : "155", + "hip" : "81", + "waist" : "56", + "weight" : "42" + } + }, { + "hash" : "48bd1e2b725fbcbabf8836f901a797c9", + "id" : "3301402", + "profile" : { + "bust" : "81", + "height" : "155", + "hip" : "81", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "制服ブルー", + "alias_name_display" : "制服ブルー", + "hash" : "e6e076765046fdfe473b17ecce87b081", + "id" : "3203901", + "profile" : { + "bust" : "81", + "height" : "155", + "hip" : "81", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "制服レッド", + "alias_name_display" : "制服レッド", + "hash" : "a64b6c62e587d382e6b7f13898f731b1", + "id" : "3203902", + "profile" : { + "bust" : "81", + "height" : "155", + "hip" : "81", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "制服グリーン", + "alias_name_display" : "制服グリーン", + "hash" : "dd098abcaa327e6d1b3e87f5ae0ca630", + "id" : "3203903", + "profile" : { + "bust" : "81", + "height" : "155", + "hip" : "81", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "制服ベージュ", + "alias_name_display" : "制服ベージュ", + "hash" : "f55b11ed9a3bae507601e01b808d7fcd", + "id" : "3203904", + "profile" : { + "bust" : "81", + "height" : "155", + "hip" : "81", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "ピンクダイヤモンド765", + "alias_name_display" : "ピンクダイヤモンド765", + "hash" : "14b07aa0c4c86609327f71c9fe3234a7", + "id" : "3303905", + "profile" : { + "bust" : "81", + "height" : "155", + "hip" : "81", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "パウダースノーホワイティ", + "alias_name_display" : "パウダースノーホワイティ", + "hash" : "ccbf1bef431de35d49f91b4b33e1c071", + "id" : "3303906", + "profile" : { + "bust" : "81", + "height" : "155", + "hip" : "81", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "ファイアオパール76ct", + "alias_name_display" : "ファイアオパール76ct", + "hash" : "67304a52ef511f0a1d867ed94bc34733", + "id" : "3303907", + "profile" : { + "bust" : "81", + "height" : "155", + "hip" : "81", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "メイデンインブラック", + "alias_name_display" : "メイデンインブラック", + "hash" : "8a7da5a3b073b6a34f903f467c226483", + "id" : "3303908", + "profile" : { + "bust" : "81", + "height" : "155", + "hip" : "81", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "ギルデッドマドモアゼル", + "alias_name_display" : "ギルデッドマドモアゼル", + "hash" : "4361c6d74eb62bd54389b51636065de7", + "id" : "3303909", + "profile" : { + "bust" : "81", + "height" : "155", + "hip" : "81", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "臆病な天使", + "alias_name_display" : "臆病な天使", + "hash" : "06dafddc14d8e0d892dd9894823096bb", + "id" : "3400201", + "profile" : { + "bust" : "81", + "height" : "155", + "hip" : "81", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "臆病な天使", + "alias_name_display" : "臆病な天使", + "hash" : "f1e541422f10cf882ca4a0193ceafbcb", + "id" : "3500202", + "profile" : { + "bust" : "81", + "height" : "155", + "hip" : "81", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "癒しの天使", + "alias_name_display" : "癒しの天使", + "hash" : "cf3f8b4f5eb92c82d7db89d358fbb222", + "id" : "3401310", + "profile" : { + "bust" : "81", + "height" : "155", + "hip" : "81", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "癒しの天使", + "alias_name_display" : "癒しの天使", + "hash" : "0621e2c41675c75cc29d0b2a6a3fad12", + "id" : "3501311", + "profile" : { + "bust" : "81", + "height" : "155", + "hip" : "81", + "waist" : "56", + "weight" : "42" + } + }, { + "alias_name" : "アニス衣装", + "alias_name_display" : "アニス衣装", + "hash" : "a627c4d6e7a223402aa99e1d174dd7ce", + "id" : "3501902", + "profile" : { + "bust" : "81", + "height" : "155", + "hip" : "81", + "waist" : "56", + "weight" : "42" + } + } ], + "idol_id" : 176, + "idol_name" : "萩原雪歩", + "idol_name_display" : "萩原雪歩" +}, { + "aliases" : [ { + "hash" : "c161cb226474f58f3393e3d6aabfc9b2", + "id" : "3201501", + "profile" : { + "bust" : "78", + "height" : "158", + "hip" : "77", + "waist" : "55", + "weight" : "42" + } + }, { + "hash" : "11db690ef5aec1cd0cd9c9e2aedfb2cd", + "id" : "3301502", + "profile" : { + "bust" : "78", + "height" : "158", + "hip" : "77", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "パワフル双子妹", + "alias_name_display" : "パワフル双子妹", + "hash" : "65b0cc4a2afc8a4e9e4c194b4aecd267", + "id" : "3401001", + "profile" : { + "bust" : "78", + "height" : "158", + "hip" : "77", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "パワフル双子妹", + "alias_name_display" : "パワフル双子妹", + "hash" : "d604961da03fd554556bf5ec24eae13a", + "id" : "3501002", + "profile" : { + "bust" : "78", + "height" : "158", + "hip" : "77", + "waist" : "55", + "weight" : "42" + } + } ], + "idol_id" : 177, + "idol_name" : "双海亜美", + "idol_name_display" : "双海亜美" +}, { + "aliases" : [ { + "hash" : "421870a18b78ade223c811fe38edf51e", + "id" : "3201601", + "profile" : { + "bust" : "78", + "height" : "158", + "hip" : "77", + "waist" : "55", + "weight" : "42" + } + }, { + "hash" : "ee397ecc1f873bb6d986acb05e5b9916", + "id" : "3301602", + "profile" : { + "bust" : "78", + "height" : "158", + "hip" : "77", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "パワフル双子姉", + "alias_name_display" : "パワフル双子姉", + "hash" : "cb92615dedf1df3d4b4971b256254d39", + "id" : "3401101", + "profile" : { + "bust" : "78", + "height" : "158", + "hip" : "77", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "パワフル双子姉", + "alias_name_display" : "パワフル双子姉", + "hash" : "7174c14b3213a89f45cc5375eb1fff5a", + "id" : "3501102", + "profile" : { + "bust" : "78", + "height" : "158", + "hip" : "77", + "waist" : "55", + "weight" : "42" + } + } ], + "idol_id" : 178, + "idol_name" : "双海真美", + "idol_name_display" : "双海真美" +}, { + "aliases" : [ { + "hash" : "0fd395f1fae53b17c20854465439ca1d", + "id" : "3201701", + "profile" : { + "bust" : "86", + "height" : "161", + "hip" : "83", + "waist" : "55", + "weight" : "45" + } + }, { + "hash" : "8370a885b84e453d5dc557005de4fd17", + "id" : "3301702", + "profile" : { + "bust" : "86", + "height" : "161", + "hip" : "83", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "制服オレンジ", + "alias_name_display" : "制服オレンジ", + "hash" : "ebb522ecfbd377353069ebd81c91fb16", + "id" : "3202801", + "profile" : { + "bust" : "86", + "height" : "161", + "hip" : "83", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "制服レッド", + "alias_name_display" : "制服レッド", + "hash" : "6b3065f0a962d20cff5d955a3dbc4314", + "id" : "3202802", + "profile" : { + "bust" : "86", + "height" : "161", + "hip" : "83", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "制服ブルー", + "alias_name_display" : "制服ブルー", + "hash" : "04c878def0b7d2bb8dda5f2f756ab53d", + "id" : "3202803", + "profile" : { + "bust" : "86", + "height" : "161", + "hip" : "83", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "制服グリーン", + "alias_name_display" : "制服グリーン", + "hash" : "a79af47eae779e8bea9e4d779616fb2f", + "id" : "3202804", + "profile" : { + "bust" : "86", + "height" : "161", + "hip" : "83", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "ピンクダイヤモンド765", + "alias_name_display" : "ピンクダイヤモンド765", + "hash" : "5831bf84cae2c72d1e14475a3d10a4fd", + "id" : "3302805", + "profile" : { + "bust" : "86", + "height" : "161", + "hip" : "83", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "ギルデッドマドモアゼル", + "alias_name_display" : "ギルデッドマドモアゼル", + "hash" : "a9ed29a9f57923d25c99a7439136e26d", + "id" : "3302806", + "profile" : { + "bust" : "86", + "height" : "161", + "hip" : "83", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "メイデンインブラック", + "alias_name_display" : "メイデンインブラック", + "hash" : "9ba2da0a155f2a20df7aa61826b2883c", + "id" : "3302807", + "profile" : { + "bust" : "86", + "height" : "161", + "hip" : "83", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "ベイビーブルージャガー", + "alias_name_display" : "ベイビーブルージャガー", + "hash" : "ff56ed5787d63f5a6a73ab567452cd49", + "id" : "3302808", + "profile" : { + "bust" : "86", + "height" : "161", + "hip" : "83", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "トワイライトサファリ", + "alias_name_display" : "トワイライトサファリ", + "hash" : "ff83137129b578d3c62b7fc2a984de58", + "id" : "3302809", + "profile" : { + "bust" : "86", + "height" : "161", + "hip" : "83", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "才能無限大", + "alias_name_display" : "才能無限大", + "hash" : "5ee38ca4a88f80c624feb7fb5cec0ba7", + "id" : "3400710", + "profile" : { + "bust" : "86", + "height" : "161", + "hip" : "83", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "才能無限大", + "alias_name_display" : "才能無限大", + "hash" : "92102c96222350216184f02f45dc7d84", + "id" : "3500711", + "profile" : { + "bust" : "86", + "height" : "161", + "hip" : "83", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "眠れる姫君", + "alias_name_display" : "眠れる姫君", + "hash" : "3c0f40fdeba208d3fc9eee9cd90d8843", + "id" : "3401601", + "profile" : { + "bust" : "86", + "height" : "161", + "hip" : "83", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "眠れる姫君", + "alias_name_display" : "眠れる姫君", + "hash" : "d68e4b36d3e506fbbb958c0bf1434867", + "id" : "3501602", + "profile" : { + "bust" : "86", + "height" : "161", + "hip" : "83", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "1stセレブレイト", + "alias_name_display" : "1stセレブレイト", + "hash" : "76b1355f3c75a11675d5e5fbd7477c36", + "id" : "3504202", + "profile" : { + "bust" : "86", + "height" : "161", + "hip" : "83", + "waist" : "55", + "weight" : "45" + } + }, { + "alias_name" : "ワンフォーオール", + "alias_name_display" : "ワンフォーオール", + "hash" : "c504c5f878ac85da8d9ccb70ef44fbe4", + "id" : "3514302", + "profile" : { + "bust" : "86", + "height" : "161", + "hip" : "83", + "waist" : "55", + "weight" : "45" + } + } ], + "idol_id" : 179, + "idol_name" : "星井美希", + "idol_name_display" : "星井美希" +}, { + "aliases" : [ { + "hash" : "20f58f004dad13ba670869c921dc32b9", + "id" : "3201801", + "profile" : { + "bust" : "95", + "height" : "163", + "hip" : "87", + "waist" : "60", + "weight" : "53" + } + }, { + "hash" : "25ddc32b1b3797057b29bf5fb6de3092", + "id" : "3301802", + "profile" : { + "bust" : "95", + "height" : "163", + "hip" : "87", + "waist" : "58", + "weight" : "51" + } + }, { + "alias_name" : "姉御肌", + "alias_name_display" : "姉御肌", + "hash" : "092c5efbc6e0e566958d7fc507821e0d", + "id" : "3204701", + "profile" : { + "bust" : "95", + "height" : "163", + "hip" : "87", + "waist" : "58", + "weight" : "51" + } + }, { + "alias_name" : "姉御肌", + "alias_name_display" : "姉御肌", + "hash" : "9457d1172204c626ec30cfe67f0bdb32", + "id" : "3304702", + "profile" : { + "bust" : "95", + "height" : "163", + "hip" : "87", + "waist" : "58", + "weight" : "51" + } + }, { + "alias_name" : "ビーチパラダイス", + "alias_name_display" : "ビーチパラダイス", + "hash" : "92248cecce1bf62b838a10634aac23b8", + "id" : "3212001", + "profile" : { + "bust" : "95", + "height" : "163", + "hip" : "87", + "waist" : "58", + "weight" : "51" + } + }, { + "alias_name" : "ビーチパラダイス", + "alias_name_display" : "ビーチパラダイス", + "hash" : "7a94d2b2aa7c63db4e6653313a31546a", + "id" : "3312002", + "profile" : { + "bust" : "95", + "height" : "163", + "hip" : "87", + "waist" : "58", + "weight" : "51" + } + }, { + "alias_name" : "硬派乙女", + "alias_name_display" : "硬派乙女", + "hash" : "0e90856cd6e941b956af90027490d868", + "id" : "3403401", + "profile" : { + "bust" : "95", + "height" : "163", + "hip" : "87", + "waist" : "58", + "weight" : "51" + } + }, { + "alias_name" : "硬派乙女", + "alias_name_display" : "硬派乙女", + "hash" : "f3186c8e8aafb4bc748f8eb08ced1d45", + "id" : "3503402", + "profile" : { + "bust" : "95", + "height" : "163", + "hip" : "87", + "waist" : "58", + "weight" : "51" + } + }, { + "alias_name" : "はにかみバレンタイン", + "alias_name_display" : "はにかみバレンタイン", + "event" : [ { + "event_id" : 405, + "event_name" : "アイドルプロデュース バレンタイン編" + } ], + "hash" : "918ea661dcd0221ad5cb7a69c5f3822d", + "id" : "3405101", + "profile" : { + "bust" : "95", + "height" : "163", + "hip" : "87", + "waist" : "58", + "weight" : "51" + } + }, { + "alias_name" : "はにかみバレンタイン", + "alias_name_display" : "はにかみバレンタイン", + "event" : [ { + "event_id" : 405, + "event_name" : "アイドルプロデュース バレンタイン編" + } ], + "hash" : "f87ee02a7edd0c6e4ec18b561de3979d", + "id" : "3505102", + "profile" : { + "bust" : "95", + "height" : "163", + "hip" : "87", + "waist" : "58", + "weight" : "51" + } + }, { + "alias_name" : "走志走愛", + "alias_name_display" : "走志走愛", + "event" : [ { + "event_id" : 510, + "event_name" : "ひな祭りLIVEツアーカーニバル" + } ], + "hash" : "232fa3d7136a3427103cbcf6e5ba7e2f", + "id" : "3411901", + "profile" : { + "bust" : "95", + "height" : "163", + "hip" : "87", + "waist" : "58", + "weight" : "51" + } + }, { + "alias_name" : "走志走愛", + "alias_name_display" : "走志走愛", + "event" : [ { + "event_id" : 510, + "event_name" : "ひな祭りLIVEツアーカーニバル" + } ], + "hash" : "66bd2e19f6654df596306b2b8602b1d2", + "id" : "3511902", + "profile" : { + "bust" : "95", + "height" : "163", + "hip" : "87", + "waist" : "58", + "weight" : "51" + } + }, { + "alias_name" : "百獣の女王", + "alias_name_display" : "百獣の女王", + "hash" : "a017f0aeb84bba360795e5c8ff59bcdd", + "id" : "3417001", + "profile" : { + "bust" : "95", + "height" : "163", + "hip" : "87", + "waist" : "58", + "weight" : "51" + } + }, { + "alias_name" : "百獣の女王", + "alias_name_display" : "百獣の女王", + "hash" : "b9b7cc2cbce8aaf53fe3bda1a44996ff", + "id" : "3517002", + "profile" : { + "bust" : "95", + "height" : "163", + "hip" : "87", + "waist" : "58", + "weight" : "51" + } + }, { + "alias_name" : "初日の出変装", + "alias_name_display" : "初日の出変装", + "hash" : "348d7861a7a71b576d14599b1c55f26c", + "id" : "3420601", + "profile" : { + "bust" : "95", + "height" : "163", + "hip" : "87", + "waist" : "58", + "weight" : "51" + } + }, { + "alias_name" : "初日の出変装", + "alias_name_display" : "初日の出変装", + "hash" : "1ba2870e74e721957e0a2730047f9ce7", + "id" : "3520602", + "profile" : { + "bust" : "95", + "height" : "163", + "hip" : "87", + "waist" : "58", + "weight" : "51" + } + }, { + "alias_name" : "炎天の女王", + "alias_name_display" : "炎天の女王", + "hash" : "c59fb577d23dbfce5a08c9b53e6947c8", + "id" : "3425401", + "profile" : { + "bust" : "95", + "height" : "163", + "hip" : "87", + "waist" : "58", + "weight" : "51" + } + }, { + "alias_name" : "炎天の女王", + "alias_name_display" : "炎天の女王", + "hash" : "f00fb6b6b7eb49b5ebaae24580a0b917", + "id" : "3525402", + "profile" : { + "bust" : "95", + "height" : "163", + "hip" : "87", + "waist" : "58", + "weight" : "51" + } + }, { + "alias_name" : "4thアニバーサリー", + "alias_name_display" : "4thアニバーサリー", + "event" : [ { + "event_id" : 1704, + "event_name" : "アイドルプロデュース the 4th Anniversary" + } ], + "hash" : "62558d3fb34d3585e7d45da67c3a796e", + "id" : "3428001", + "profile" : { + "bust" : "95", + "height" : "163", + "hip" : "87", + "waist" : "58", + "weight" : "51" + } + }, { + "alias_name" : "4thアニバーサリー", + "alias_name_display" : "4thアニバーサリー", + "event" : [ { + "event_id" : 1704, + "event_name" : "アイドルプロデュース the 4th Anniversary" + } ], + "hash" : "1c907965f5315da790eee90f018e1662", + "id" : "3528002", + "profile" : { + "bust" : "95", + "height" : "163", + "hip" : "87", + "waist" : "58", + "weight" : "51" + } + }, { + "alias_name" : "4thアニバーサリー・S", + "alias_name_display" : "4thアニバーサリー・S", + "event" : [ { + "event_id" : 1704, + "event_name" : "アイドルプロデュース the 4th Anniversary" + } ], + "hash" : "b0f137bebf1a85a9e07a83ee645abae2", + "id" : "3428101", + "profile" : { + "bust" : "95", + "height" : "163", + "hip" : "87", + "waist" : "58", + "weight" : "51" + } + }, { + "alias_name" : "4thアニバーサリー・S", + "alias_name_display" : "4thアニバーサリー・S", + "event" : [ { + "event_id" : 1704, + "event_name" : "アイドルプロデュース the 4th Anniversary" + } ], + "hash" : "d1cadffd8525c34cf2351c5c99b288a5", + "id" : "3528102", + "profile" : { + "bust" : "95", + "height" : "163", + "hip" : "87", + "waist" : "58", + "weight" : "51" + } + }, { + "alias_name" : "ワン・サマー・カーニバル", + "alias_name_display" : "ワン・サマー・カーニバル", + "hash" : "7315e47ffb4d283653056bb6cf405b6b", + "id" : "3434001", + "profile" : { + "bust" : "95", + "height" : "163", + "hip" : "87", + "waist" : "58", + "weight" : "51" + } + }, { + "alias_name" : "ワン・サマー・カーニバル", + "alias_name_display" : "ワン・サマー・カーニバル", + "hash" : "edecc7f8cfda4fdf6274a9bd2754d2b8", + "id" : "3534002", + "profile" : { + "bust" : "95", + "height" : "163", + "hip" : "87", + "waist" : "58", + "weight" : "51" + } + }, { + "alias_name" : "シンデレラドリーム", + "alias_name_display" : "シンデレラドリーム", + "hash" : "c7083266edd7edc700f07c910f77b6f3", + "id" : "3437701", + "profile" : { + "bust" : "95", + "height" : "163", + "hip" : "87", + "waist" : "58", + "weight" : "51" + } + }, { + "alias_name" : "シンデレラドリーム", + "alias_name_display" : "シンデレラドリーム", + "hash" : "2198eb80f3fc029ca19d09a514a66a30", + "id" : "3537702", + "profile" : { + "bust" : "95", + "height" : "163", + "hip" : "87", + "waist" : "58", + "weight" : "51" + } + } ], + "idol_id" : 180, + "idol_name" : "向井拓海", + "idol_name_display" : "向井拓海", + "units" : [ { + "id" : "39", + "name" : "ノーティギャルズ" + }, { + "id" : "123", + "name" : "マッシブライダース" + }, { + "id" : "176", + "name" : "炎陣" + } ] +}, { + "aliases" : [ { + "hash" : "5d06736b102de0b7c12dc2ff98d00eec", + "id" : "3201901", + "profile" : { + "bust" : "77", + "height" : "153", + "hip" : "79", + "waist" : "54", + "weight" : "40" + } + }, { + "hash" : "3ad04e62905e3fac4f2c1a40ec0b80a8", + "id" : "3301902", + "profile" : { + "bust" : "77", + "height" : "153", + "hip" : "79", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "高飛車お嬢様", + "alias_name_display" : "高飛車お嬢様", + "hash" : "953571fbea83b361e8d2a0ee086b71bb", + "id" : "3400101", + "profile" : { + "bust" : "77", + "height" : "153", + "hip" : "79", + "waist" : "54", + "weight" : "40" + } + }, { + "alias_name" : "高飛車お嬢様", + "alias_name_display" : "高飛車お嬢様", + "hash" : "933333b6f15c88a6e8564a2dee2f125a", + "id" : "3500102", + "profile" : { + "bust" : "77", + "height" : "153", + "hip" : "79", + "waist" : "54", + "weight" : "40" + } + } ], + "idol_id" : 181, + "idol_name" : "水瀬伊織", + "idol_name_display" : "水瀬伊織" +}, { + "aliases" : [ { + "event" : [ { + "event_id" : 303, + "event_name" : "アイドル強化合宿" + } ], + "hash" : "b0fca5a125b526c755eeec59253e3bb3", + "id" : "3202001", + "profile" : { + "bust" : "83", + "height" : "163", + "hip" : "84", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "聖夜", + "alias_name_display" : "聖夜", + "hash" : "c7b48696b8c78ad11d3fb0f898b1343b", + "id" : "3202201", + "profile" : { + "bust" : "83", + "height" : "163", + "hip" : "84", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "新春", + "alias_name_display" : "新春", + "hash" : "16df3c000e1bd9af11046666963cfdb9", + "id" : "3202401", + "profile" : { + "bust" : "83", + "height" : "163", + "hip" : "84", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "バレンタイン", + "alias_name_display" : "バレンタイン", + "hash" : "313b271eddfdc8c9d223cfc16fc55eb9", + "id" : "3203301", + "profile" : { + "bust" : "83", + "height" : "163", + "hip" : "84", + "waist" : "56", + "weight" : "45" + } + } ], + "idol_id" : 182, + "idol_name" : "ベテラントレーナー", + "idol_name_display" : "ベテラントレーナー" +}, { + "aliases" : [ { + "event" : [ { + "event_id" : 102, + "event_name" : "アイドルおもちつき大会" + } ], + "hash" : "461c0f642b5623fcd0df84af1de98fc7", + "id" : "3202501", + "profile" : { + "bust" : "61", + "height" : "128", + "hip" : "67", + "waist" : "57", + "weight" : "29" + } + }, { + "event" : [ { + "event_id" : 102, + "event_name" : "アイドルおもちつき大会" + } ], + "hash" : "101a6b754f02d297fac368dd7644cc16", + "id" : "3302502", + "profile" : { + "bust" : "62", + "height" : "129", + "hip" : "67", + "waist" : "58", + "weight" : "30" + } + }, { + "alias_name" : "アニマルパーク", + "alias_name_display" : "アニマルパーク", + "event" : [ { + "event_id" : 204, + "event_name" : "アイドルサバイバルin動物園" + } ], + "hash" : "16c84938d5bc45ce243e3c42a00ca98f", + "id" : "3205001", + "profile" : { + "bust" : "62", + "height" : "129", + "hip" : "67", + "waist" : "58", + "weight" : "30" + } + }, { + "alias_name" : "アニマルパーク", + "alias_name_display" : "アニマルパーク", + "event" : [ { + "event_id" : 204, + "event_name" : "アイドルサバイバルin動物園" + } ], + "hash" : "373178c8cac8f998af6b1b10e5b65754", + "id" : "3305002", + "profile" : { + "bust" : "62", + "height" : "129", + "hip" : "67", + "waist" : "58", + "weight" : "30" + } + }, { + "alias_name" : "きぐるみもふもふ", + "alias_name_display" : "きぐるみもふもふ", + "event" : [ { + "event_id" : "007", + "event_name" : "第7回プロダクションマッチフェスティバル" + } ], + "hash" : "a6babedb100170e974c49456628b367f", + "id" : "3404501", + "profile" : { + "bust" : "62", + "height" : "129", + "hip" : "67", + "waist" : "58", + "weight" : "30" + } + }, { + "alias_name" : "きぐるみもふもふ", + "alias_name_display" : "きぐるみもふもふ", + "event" : [ { + "event_id" : "007", + "event_name" : "第7回プロダクションマッチフェスティバル" + } ], + "hash" : "5482291c15f4a0b26b81eac4702b255b", + "id" : "3504502", + "profile" : { + "bust" : "62", + "height" : "129", + "hip" : "67", + "waist" : "58", + "weight" : "30" + } + }, { + "alias_name" : "うみのいきもの", + "alias_name_display" : "うみのいきもの", + "event" : [ { + "event_id" : 702, + "event_name" : "水着DEドリームLIVEフェスティバル" + } ], + "hash" : "c4d48bdb3ffa6f6d408619a0a34fe9f4", + "id" : "3408101", + "profile" : { + "bust" : "62", + "height" : "129", + "hip" : "67", + "waist" : "58", + "weight" : "30" + } + }, { + "alias_name" : "うみのいきもの", + "alias_name_display" : "うみのいきもの", + "event" : [ { + "event_id" : 702, + "event_name" : "水着DEドリームLIVEフェスティバル" + } ], + "hash" : "18a4aaa5bcd5dc6fddd2d01ec7e0f526", + "id" : "3508102", + "profile" : { + "bust" : "62", + "height" : "129", + "hip" : "67", + "waist" : "58", + "weight" : "30" + } + }, { + "alias_name" : "にゅーきぐるみ", + "alias_name_display" : "にゅーきぐるみ", + "event" : [ { + "event_id" : "014", + "event_name" : "第14回プロダクションマッチフェスティバル" + } ], + "hash" : "7644ffcf30392370091e558404adcc6a", + "id" : "3410901", + "profile" : { + "bust" : "62", + "height" : "129", + "hip" : "67", + "waist" : "58", + "weight" : "30" + } + }, { + "alias_name" : "にゅーきぐるみ", + "alias_name_display" : "にゅーきぐるみ", + "event" : [ { + "event_id" : "014", + "event_name" : "第14回プロダクションマッチフェスティバル" + } ], + "hash" : "5c393f00c7cca8fffb369c91099f15d4", + "id" : "3510902", + "profile" : { + "bust" : "62", + "height" : "129", + "hip" : "67", + "waist" : "58", + "weight" : "30" + } + }, { + "alias_name" : "きぐるみわーく", + "alias_name_display" : "きぐるみわーく", + "hash" : "81ce951e49b513921c0fc0aa91889e59", + "id" : "3417201", + "profile" : { + "bust" : "62", + "height" : "129", + "hip" : "67", + "waist" : "58", + "weight" : "30" + } + }, { + "alias_name" : "きぐるみわーく", + "alias_name_display" : "きぐるみわーく", + "hash" : "d8f0b946466ef70a0f705364696a8b09", + "id" : "3517202", + "profile" : { + "bust" : "62", + "height" : "129", + "hip" : "67", + "waist" : "58", + "weight" : "30" + } + }, { + "alias_name" : "にゅーいやー", + "alias_name_display" : "にゅーいやー", + "hash" : "a79bdcc89bd7b9fdcd59f0c3e42caddc", + "id" : "3420401", + "profile" : { + "bust" : "62", + "height" : "129", + "hip" : "67", + "waist" : "58", + "weight" : "30" + } + }, { + "alias_name" : "にゅーいやー", + "alias_name_display" : "にゅーいやー", + "hash" : "9ce5c63b01d63ae3a72544427e599088", + "id" : "3520402", + "profile" : { + "bust" : "62", + "height" : "129", + "hip" : "67", + "waist" : "58", + "weight" : "30" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "dfbef98b0d7c10d4053b30906c38c351", + "id" : "3421401", + "profile" : { + "bust" : "61", + "height" : "128", + "hip" : "67", + "waist" : "57", + "weight" : "29" + } + }, { + "alias_name" : "CDデビュー", + "alias_name_display" : "CDデビュー", + "hash" : "6b7b27756e32560ebd97a01021ce4b9d", + "id" : "3521402", + "profile" : { + "bust" : "61", + "height" : "128", + "hip" : "67", + "waist" : "57", + "weight" : "29" + } + }, { + "alias_name" : "わくわくきゃんぷ", + "alias_name_display" : "わくわくきゃんぷ", + "event" : [ { + "event_id" : 1701, + "event_name" : "アイドルプロデュース はじめてのキャンプ" + } ], + "hash" : "1676fb40ccf5df3f3ee58a16e2cddae6", + "id" : "3423301", + "profile" : { + "bust" : "62", + "height" : "129", + "hip" : "67", + "waist" : "58", + "weight" : "30" + } + }, { + "alias_name" : "わくわくきゃんぷ", + "alias_name_display" : "わくわくきゃんぷ", + "event" : [ { + "event_id" : 1701, + "event_name" : "アイドルプロデュース はじめてのキャンプ" + } ], + "hash" : "320a45ed640a34b288113d3745e88f70", + "id" : "3523302", + "profile" : { + "bust" : "62", + "height" : "129", + "hip" : "67", + "waist" : "58", + "weight" : "30" + } + }, { + "alias_name" : "うきうききゃんぷ", + "alias_name_display" : "うきうききゃんぷ", + "event" : [ { + "event_id" : 1701, + "event_name" : "アイドルプロデュース はじめてのキャンプ" + } ], + "hash" : "190125c60157b1943b89c47e92fe6493", + "id" : "3423401", + "profile" : { + "bust" : "62", + "height" : "129", + "hip" : "67", + "waist" : "58", + "weight" : "30" + } + }, { + "alias_name" : "うきうききゃんぷ", + "alias_name_display" : "うきうききゃんぷ", + "event" : [ { + "event_id" : 1701, + "event_name" : "アイドルプロデュース はじめてのキャンプ" + } ], + "hash" : "fcad0b83c13c9d2ce611c181a8ac16f8", + "id" : "3523402", + "profile" : { + "bust" : "62", + "height" : "129", + "hip" : "67", + "waist" : "58", + "weight" : "30" + } + }, { + "alias_name" : "もふもふうぃんたー", + "alias_name_display" : "もふもふうぃんたー", + "hash" : "89df1bfca5012ae06d8b214eedba6a73", + "id" : "3430101", + "profile" : { + "bust" : "62", + "height" : "129", + "hip" : "67", + "waist" : "58", + "weight" : "30" + } + }, { + "alias_name" : "もふもふうぃんたー", + "alias_name_display" : "もふもふうぃんたー", + "hash" : "966af1bfc59670c22a6005a9ea61670d", + "id" : "3530102", + "profile" : { + "bust" : "62", + "height" : "129", + "hip" : "67", + "waist" : "58", + "weight" : "30" + } + }, { + "alias_name" : "わんつー☆マーチング", + "alias_name_display" : "わんつー☆マーチング", + "hash" : "18197892c34249d75d985645aec8e49f", + "id" : "3434501", + "profile" : { + "bust" : "62", + "height" : "129", + "hip" : "67", + "waist" : "58", + "weight" : "30" + } + }, { + "alias_name" : "わんつー☆マーチング", + "alias_name_display" : "わんつー☆マーチング", + "hash" : "ea3503c100442dae6d2bd0959a68046e", + "id" : "3534502", + "profile" : { + "bust" : "62", + "height" : "129", + "hip" : "67", + "waist" : "58", + "weight" : "30" + } + }, { + "alias_name" : "はるかぜぶんぶん", + "alias_name_display" : "はるかぜぶんぶん", + "event" : [ { + "event_id" : 728, + "event_name" : "ドリームLIVEフェスティバル スプリングSP" + } ], + "hash" : "6b23c2fa9aaa385717a346f4bbb6d6b6", + "id" : "3439201", + "profile" : { + "bust" : "62", + "height" : "129", + "hip" : "67", + "waist" : "58", + "weight" : "30" + } + }, { + "alias_name" : "はるかぜぶんぶん", + "alias_name_display" : "はるかぜぶんぶん", + "event" : [ { + "event_id" : 728, + "event_name" : "ドリームLIVEフェスティバル スプリングSP" + } ], + "hash" : "f8e4f10ef977349e598b44f6ca5f0141", + "id" : "3539202", + "profile" : { + "bust" : "62", + "height" : "129", + "hip" : "67", + "waist" : "58", + "weight" : "30" + } + } ], + "idol_id" : 183, + "idol_name" : "市原仁奈", + "idol_name_display" : "市原仁奈", + "units" : [ { + "id" : "4", + "name" : "イカバラプリンセス" + }, { + "id" : "84", + "name" : "アニマルパーク" + }, { + "id" : "202", + "name" : "サンフラワー" + }, { + "id" : "214", + "name" : "L.M.B.G" + } ] +}, { + "aliases" : [ { + "hash" : "35ed8cc4e33cec53aea016cb9e2f0f22", + "id" : "3202701", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "78", + "waist" : "56", + "weight" : "38" + } + }, { + "hash" : "64ba99c6d5b579d020a5a2e8731648d4", + "id" : "3302702", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "78", + "waist" : "56", + "weight" : "38" + } + }, { + "alias_name" : "花火祭り", + "alias_name_display" : "花火祭り", + "event" : [ { + "event_id" : 408, + "event_name" : "アイドルプロデュース 夜空に咲く花火編" + } ], + "hash" : "d43d25a428dd282462276f7ea893e15c", + "id" : "3211601", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "78", + "waist" : "56", + "weight" : "38" + } + }, { + "alias_name" : "花火祭り", + "alias_name_display" : "花火祭り", + "event" : [ { + "event_id" : 408, + "event_name" : "アイドルプロデュース 夜空に咲く花火編" + } ], + "hash" : "b1e253723b1b2b4a276636717e943356", + "id" : "3311602", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "78", + "waist" : "56", + "weight" : "38" + } + }, { + "alias_name" : "花火祭りスマイル", + "alias_name_display" : "花火祭りスマイル", + "event" : [ { + "event_id" : 408, + "event_name" : "アイドルプロデュース 夜空に咲く花火編" + } ], + "hash" : "de01bd005756ddc45569087214ffa088", + "id" : "3211701", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "78", + "waist" : "56", + "weight" : "38" + } + }, { + "alias_name" : "花火祭りスマイル", + "alias_name_display" : "花火祭りスマイル", + "event" : [ { + "event_id" : 408, + "event_name" : "アイドルプロデュース 夜空に咲く花火編" + } ], + "hash" : "71bf844f9d6bba187861e9a94c4d1a2a", + "id" : "3311702", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "78", + "waist" : "56", + "weight" : "38" + } + }, { + "alias_name" : "グリッターステージ", + "alias_name_display" : "グリッターステージ", + "hash" : "283f95982e58cb966d2a07d4fb85ca94", + "id" : "3216301", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "78", + "waist" : "56", + "weight" : "38" + } + }, { + "alias_name" : "グリッターステージ", + "alias_name_display" : "グリッターステージ", + "hash" : "0de6cb9fa2f79c444b5a8bc6c80b126b", + "id" : "3316302", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "78", + "waist" : "56", + "weight" : "38" + } + }, { + "alias_name" : "ドリームペイント", + "alias_name_display" : "ドリームペイント", + "hash" : "82abdf981278d1ac8db9caf12c77fd3d", + "id" : "3219401", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "78", + "waist" : "56", + "weight" : "38" + } + }, { + "alias_name" : "ドリームペイント", + "alias_name_display" : "ドリームペイント", + "hash" : "965f5c538bbd1baa8ba16e8a092d0921", + "id" : "3319402", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "78", + "waist" : "56", + "weight" : "38" + } + }, { + "alias_name" : "ふらふら☆トリッパー", + "alias_name_display" : "ふらふら☆トリッパー", + "hash" : "07030bb9c263382fb19cde7b091561a8", + "id" : "3232001", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "78", + "waist" : "56", + "weight" : "38" + } + }, { + "alias_name" : "ふらふら☆トリッパー", + "alias_name_display" : "ふらふら☆トリッパー", + "hash" : "c1bb3d0591ba0ff7d0f8c6d3aaf19186", + "id" : "3332002", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "78", + "waist" : "56", + "weight" : "38" + } + }, { + "alias_name" : "妄想お姫様", + "alias_name_display" : "妄想お姫様", + "event" : [ { + "event_id" : 203, + "event_name" : "アイドルサバイバルinテーマパーク" + } ], + "hash" : "bddbbf700738b76daca74173b181733a", + "id" : "3401501", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "78", + "waist" : "56", + "weight" : "38" + } + }, { + "alias_name" : "妄想お姫様", + "alias_name_display" : "妄想お姫様", + "event" : [ { + "event_id" : 203, + "event_name" : "アイドルサバイバルinテーマパーク" + } ], + "hash" : "7ff7bf1dca35b8b2572ca73a0caecc49", + "id" : "3501502", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "78", + "waist" : "56", + "weight" : "38" + } + }, { + "alias_name" : "妄想☆暴走★", + "alias_name_display" : "妄想☆暴走★", + "hash" : "1a1d4bdd3145e5fec11094585f8d5e25", + "id" : "3403701", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "78", + "waist" : "56", + "weight" : "38" + } + }, { + "alias_name" : "妄想☆暴走★", + "alias_name_display" : "妄想☆暴走★", + "hash" : "d02f7c4e0e91862a3732593aede41145", + "id" : "3503702", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "78", + "waist" : "56", + "weight" : "38" + } + }, { + "alias_name" : "ビューティフルドリーマー", + "alias_name_display" : "ビューティフルドリーマー", + "event" : [ { + "event_id" : 802, + "event_name" : "第2回アイドルLIVEロワイヤル" + } ], + "hash" : "2282ba15a285c7df2a7f85f1bd3365b5", + "id" : "3410401", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "78", + "waist" : "56", + "weight" : "38" + } + }, { + "alias_name" : "ビューティフルドリーマー", + "alias_name_display" : "ビューティフルドリーマー", + "event" : [ { + "event_id" : 802, + "event_name" : "第2回アイドルLIVEロワイヤル" + } ], + "hash" : "dc63d553aea48ddd20cb3623f8a85308", + "id" : "3510402", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "78", + "waist" : "56", + "weight" : "38" + } + }, { + "alias_name" : "妄想☆わんだふる", + "alias_name_display" : "妄想☆わんだふる", + "event" : [ { + "event_id" : 1109, + "event_name" : "第9回プロダクション対抗トークバトルショー" + } ], + "hash" : "fec2cb1b8c1742c4551d262e56f2dfd3", + "id" : "3422101", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "78", + "waist" : "56", + "weight" : "38" + } + }, { + "alias_name" : "妄想☆わんだふる", + "alias_name_display" : "妄想☆わんだふる", + "event" : [ { + "event_id" : 1109, + "event_name" : "第9回プロダクション対抗トークバトルショー" + } ], + "hash" : "8885845534e6d6e29cb32c72d6eb2165", + "id" : "3522102", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "78", + "waist" : "56", + "weight" : "38" + } + }, { + "alias_name" : "ワンダフルブライド", + "alias_name_display" : "ワンダフルブライド", + "hash" : "cd55b9e1c5d5063cc373eeaee5edf646", + "id" : "3427201", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "78", + "waist" : "56", + "weight" : "38" + } + }, { + "alias_name" : "ワンダフルブライド", + "alias_name_display" : "ワンダフルブライド", + "hash" : "ed70d31790fd506b7a5a966d1f441028", + "id" : "3527202", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "78", + "waist" : "56", + "weight" : "38" + } + }, { + "alias_name" : "ひらひらふわり", + "alias_name_display" : "ひらひらふわり", + "event" : [ { + "event_id" : "030", + "event_name" : "第30回プロダクションマッチフェスティバル" + } ], + "hash" : "b3b1fa6ac4889d1847f4af965b3fe390", + "id" : "3433601", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "78", + "waist" : "56", + "weight" : "38" + } + }, { + "alias_name" : "ひらひらふわり", + "alias_name_display" : "ひらひらふわり", + "event" : [ { + "event_id" : "030", + "event_name" : "第30回プロダクションマッチフェスティバル" + } ], + "hash" : "2b84984d9d6c5a8c0520fe96a7ba45d6", + "id" : "3533602", + "profile" : { + "bust" : "78", + "height" : "151", + "hip" : "78", + "waist" : "56", + "weight" : "38" + } + } ], + "idol_id" : 184, + "idol_name" : "喜多日菜子", + "idol_name_display" : "喜多日菜子", + "units" : [ { + "id" : "48", + "name" : "日菜子と愛海の妄想ワールド" + }, { + "id" : "151", + "name" : "ブエナ・スエルテ" + } ] +}, { + "aliases" : [ { + "hash" : "6edab62ef4c1db15158c13d522310985", + "id" : "3202601", + "profile" : { + "bust" : "88", + "height" : "162", + "hip" : "86", + "waist" : "58", + "weight" : "45" + } + }, { + "hash" : "6b619f987d78ad43e4b7a872c7af6f45", + "id" : "3302602", + "profile" : { + "bust" : "88", + "height" : "162", + "hip" : "86", + "waist" : "58", + "weight" : "45" + } + }, { + "alias_name" : "メルヘン&ゴシック", + "alias_name_display" : "メルヘン&ゴシック", + "hash" : "0a9233d5c36f67535bc550c2a37a160b", + "id" : "3209101", + "profile" : { + "bust" : "88", + "height" : "162", + "hip" : "86", + "waist" : "58", + "weight" : "45" + } + }, { + "alias_name" : "メルヘン&ゴシック", + "alias_name_display" : "メルヘン&ゴシック", + "hash" : "3d7ae831c66c150cd8df504d9ec2726c", + "id" : "3309102", + "profile" : { + "bust" : "88", + "height" : "162", + "hip" : "86", + "waist" : "58", + "weight" : "45" + } + }, { + "alias_name" : "エキゾチックダンサー", + "alias_name_display" : "エキゾチックダンサー", + "hash" : "506c7af5dd9e88a07d624b02e8b10477", + "id" : "3210901", + "profile" : { + "bust" : "88", + "height" : "162", + "hip" : "86", + "waist" : "58", + "weight" : "45" + } + }, { + "alias_name" : "エキゾチックダンサー", + "alias_name_display" : "エキゾチックダンサー", + "hash" : "1f24f868254f226ca4d9cb49821353d8", + "id" : "3310902", + "profile" : { + "bust" : "88", + "height" : "162", + "hip" : "86", + "waist" : "58", + "weight" : "45" + } + }, { + "alias_name" : "ほのかな甘さ", + "alias_name_display" : "ほのかな甘さ", + "hash" : "795d079f6a4cae7c0e83302f07753de1", + "id" : "3218301", + "profile" : { + "bust" : "88", + "height" : "162", + "hip" : "86", + "waist" : "58", + "weight" : "45" + } + }, { + "alias_name" : "ほのかな甘さ", + "alias_name_display" : "ほのかな甘さ", + "hash" : "6b44a9f0dd3b99a82ab313a0ae0a6959", + "id" : "3318302", + "profile" : { + "bust" : "88", + "height" : "162", + "hip" : "86", + "waist" : "58", + "weight" : "45" + } + }, { + "alias_name" : "エスニックタイガー", + "alias_name_display" : "エスニックタイガー", + "event" : [ { + "event_id" : 711, + "event_name" : "福は内DEドリームLIVEフェスティバル" + } ], + "hash" : "d8ff0d484c0b918e0b7d9c175a50fe7f", + "id" : "3221301", + "profile" : { + "bust" : "88", + "height" : "162", + "hip" : "86", + "waist" : "58", + "weight" : "45" + } + }, { + "alias_name" : "エスニックタイガー", + "alias_name_display" : "エスニックタイガー", + "event" : [ { + "event_id" : 711, + "event_name" : "福は内DEドリームLIVEフェスティバル" + } ], + "hash" : "92ec6bdec324e9f28ed76acfdf0b6689", + "id" : "3321302", + "profile" : { + "bust" : "88", + "height" : "162", + "hip" : "86", + "waist" : "58", + "weight" : "45" + } + }, { + "alias_name" : "テンダーハート", + "alias_name_display" : "テンダーハート", + "event" : [ { + "event_id" : "025", + "event_name" : "第25回プロダクションマッチフェスティバル" + } ], + "hash" : "14e16ee65ada054132b63a298a16f969", + "id" : "3227101", + "profile" : { + "bust" : "88", + "height" : "162", + "hip" : "86", + "waist" : "58", + "weight" : "45" + } + }, { + "alias_name" : "テンダーハート", + "alias_name_display" : "テンダーハート", + "event" : [ { + "event_id" : "025", + "event_name" : "第25回プロダクションマッチフェスティバル" + } ], + "hash" : "b6062625d2b3926c7ff59586fabf9a59", + "id" : "3327102", + "profile" : { + "bust" : "88", + "height" : "162", + "hip" : "86", + "waist" : "58", + "weight" : "45" + } + }, { + "alias_name" : "ほっこりゲン担ぎ", + "alias_name_display" : "ほっこりゲン担ぎ", + "event" : [ { + "event_id" : 726, + "event_name" : "ドリームLIVEフェスティバル新春SP" + } ], + "hash" : "daa724181b0eaabdb0703cf6d8511879", + "id" : "3232101", + "profile" : { + "bust" : "88", + "height" : "162", + "hip" : "86", + "waist" : "58", + "weight" : "45" + } + }, { + "alias_name" : "ほっこりゲン担ぎ", + "alias_name_display" : "ほっこりゲン担ぎ", + "event" : [ { + "event_id" : 726, + "event_name" : "ドリームLIVEフェスティバル新春SP" + } ], + "hash" : "39c3ae689cbc1723753ab102b3420b34", + "id" : "3332102", + "profile" : { + "bust" : "88", + "height" : "162", + "hip" : "86", + "waist" : "58", + "weight" : "45" + } + }, { + "alias_name" : "エキゾチックサーファー", + "alias_name_display" : "エキゾチックサーファー", + "event" : [ { + "event_id" : 804, + "event_name" : "第4回アイドルLIVEロワイヤル" + } ], + "hash" : "55ad3fbb5d19ca6c12a8262cc9596cef", + "id" : "3412701", + "profile" : { + "bust" : "88", + "height" : "162", + "hip" : "86", + "waist" : "58", + "weight" : "45" + } + }, { + "alias_name" : "エキゾチックサーファー", + "alias_name_display" : "エキゾチックサーファー", + "event" : [ { + "event_id" : 804, + "event_name" : "第4回アイドルLIVEロワイヤル" + } ], + "hash" : "b82a9987c891d3e29b18d15d90c7d884", + "id" : "3512702", + "profile" : { + "bust" : "88", + "height" : "162", + "hip" : "86", + "waist" : "58", + "weight" : "45" + } + }, { + "alias_name" : "夏色情緒", + "alias_name_display" : "夏色情緒", + "event" : [ { + "event_id" : 714, + "event_name" : "夏祭りDEドリームLIVEフェスティバル" + } ], + "hash" : "b15a029083439aac358a12f9e5c48ea5", + "id" : "3424601", + "profile" : { + "bust" : "88", + "height" : "162", + "hip" : "86", + "waist" : "58", + "weight" : "45" + } + }, { + "alias_name" : "夏色情緒", + "alias_name_display" : "夏色情緒", + "event" : [ { + "event_id" : 714, + "event_name" : "夏祭りDEドリームLIVEフェスティバル" + } ], + "hash" : "caa08ae235a5cb1fcacdac027f8f9f2a", + "id" : "3524602", + "profile" : { + "bust" : "88", + "height" : "162", + "hip" : "86", + "waist" : "58", + "weight" : "45" + } + }, { + "alias_name" : "エキゾチックドレッサー", + "alias_name_display" : "エキゾチックドレッサー", + "event" : [ { + "event_id" : 1407, + "event_name" : "第7回ぷちデレラコレクション" + } ], + "hash" : "ac452a8f4078b9c8a4e2df386eefe0c9", + "id" : "3433001", + "profile" : { + "bust" : "88", + "height" : "162", + "hip" : "86", + "waist" : "58", + "weight" : "45" + } + }, { + "alias_name" : "エキゾチックドレッサー", + "alias_name_display" : "エキゾチックドレッサー", + "event" : [ { + "event_id" : 1407, + "event_name" : "第7回ぷちデレラコレクション" + } ], + "hash" : "26a0294ebbd82d18425173f46b4d8860", + "id" : "3533002", + "profile" : { + "bust" : "88", + "height" : "162", + "hip" : "86", + "waist" : "58", + "weight" : "45" + } + } ], + "idol_id" : 185, + "idol_name" : "杉坂海", + "idol_name_display" : "杉坂海", + "units" : [ { + "id" : "100", + "name" : "ハートウォーマー" + }, { + "id" : "165", + "name" : "メルヘンゴシック" + } ] +}, { + "aliases" : [ { + "event" : [ { + "event_id" : 201, + "event_name" : "アイドルサバイバル" + } ], + "hash" : "ded225525d77bc5e164da6ec41d0342e", + "id" : "3202901", + "profile" : { + "bust" : "75", + "height" : "158", + "hip" : "79", + "waist" : "57", + "weight" : "43" + } + }, { + "event" : [ { + "event_id" : 201, + "event_name" : "アイドルサバイバル" + } ], + "hash" : "f17d6bd4caee1e6ace28eb66c2c0160c", + "id" : "3302902", + "profile" : { + "bust" : "75", + "height" : "158", + "hip" : "79", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "スポーツ祭", + "alias_name_display" : "スポーツ祭", + "hash" : "5d9bbfe79fb467cff5efcc33fe949228", + "id" : "3204901", + "profile" : { + "bust" : "75", + "height" : "158", + "hip" : "79", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "スポーツ祭", + "alias_name_display" : "スポーツ祭", + "hash" : "a49d2ce44927c252d39b05c3ec553044", + "id" : "3304902", + "profile" : { + "bust" : "75", + "height" : "158", + "hip" : "79", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "スポーティガール", + "alias_name_display" : "スポーティガール", + "hash" : "c37466d224d79ec5b4582a2e05865f5c", + "id" : "3209301", + "profile" : { + "bust" : "75", + "height" : "158", + "hip" : "79", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "スポーティガール", + "alias_name_display" : "スポーティガール", + "hash" : "f0627779554f7932ca75fba796816000", + "id" : "3309302", + "profile" : { + "bust" : "75", + "height" : "158", + "hip" : "79", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "ひな祭り", + "alias_name_display" : "ひな祭り", + "event" : [ { + "event_id" : 510, + "event_name" : "ひな祭りLIVEツアーカーニバル" + } ], + "hash" : "53b74090a5ced2280a40b699017e80d2", + "id" : "3215901", + "profile" : { + "bust" : "75", + "height" : "158", + "hip" : "79", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "ひな祭り", + "alias_name_display" : "ひな祭り", + "event" : [ { + "event_id" : 510, + "event_name" : "ひな祭りLIVEツアーカーニバル" + } ], + "hash" : "c2cee09440f26baf18469aa365b2df73", + "id" : "3315902", + "profile" : { + "bust" : "75", + "height" : "158", + "hip" : "79", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "メルヘンアニマルズ", + "alias_name_display" : "メルヘンアニマルズ", + "hash" : "90f843c2f09a7ddc764aacce7fa7074f", + "id" : "3219001", + "profile" : { + "bust" : "75", + "height" : "158", + "hip" : "79", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "メルヘンアニマルズ", + "alias_name_display" : "メルヘンアニマルズ", + "hash" : "c4cbadee96999cfe3a34797d3ccff9a1", + "id" : "3319002", + "profile" : { + "bust" : "75", + "height" : "158", + "hip" : "79", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "ごきげんスターター", + "alias_name_display" : "ごきげんスターター", + "hash" : "276fb5e876944d35f8f7261be7464d58", + "id" : "3229101", + "profile" : { + "bust" : "75", + "height" : "158", + "hip" : "79", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "ごきげんスターター", + "alias_name_display" : "ごきげんスターター", + "hash" : "c700626ff44e2158a1e3917f0c60d934", + "id" : "3329102", + "profile" : { + "bust" : "75", + "height" : "158", + "hip" : "79", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "ディアンドルガール", + "alias_name_display" : "ディアンドルガール", + "event" : [ { + "event_id" : 507, + "event_name" : "LIVEツアーカーニバルinドイツ" + } ], + "hash" : "3f15212a15a1422e0a5cebff2094ee3a", + "id" : "3408401", + "profile" : { + "bust" : "75", + "height" : "158", + "hip" : "79", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "ディアンドルガール", + "alias_name_display" : "ディアンドルガール", + "event" : [ { + "event_id" : 507, + "event_name" : "LIVEツアーカーニバルinドイツ" + } ], + "hash" : "7ec7936571af537a32f0c8256789ab73", + "id" : "3508402", + "profile" : { + "bust" : "75", + "height" : "158", + "hip" : "79", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "ジョイフル・ロワイヤル", + "alias_name_display" : "ジョイフル・ロワイヤル", + "event" : [ { + "event_id" : 811, + "event_name" : "第11回アイドルLIVEロワイヤル" + } ], + "hash" : "178edad79aa9ee2b9cbbd9bdaf003b52", + "id" : "3422301", + "profile" : { + "bust" : "75", + "height" : "158", + "hip" : "79", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "ジョイフル・ロワイヤル", + "alias_name_display" : "ジョイフル・ロワイヤル", + "event" : [ { + "event_id" : 811, + "event_name" : "第11回アイドルLIVEロワイヤル" + } ], + "hash" : "5a260e4dd152105385c08cf8fc4904ff", + "id" : "3522302", + "profile" : { + "bust" : "75", + "height" : "158", + "hip" : "79", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "バイタルシャウト", + "alias_name_display" : "バイタルシャウト", + "event" : [ { + "event_id" : 716, + "event_name" : "第16回ドリームLIVEフェスティバル" + } ], + "hash" : "6facfc1c890c01ada655add731f9d797", + "id" : "3426901", + "profile" : { + "bust" : "75", + "height" : "158", + "hip" : "79", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "バイタルシャウト", + "alias_name_display" : "バイタルシャウト", + "event" : [ { + "event_id" : 716, + "event_name" : "第16回ドリームLIVEフェスティバル" + } ], + "hash" : "bccd086a6baf5aa7c9836b1744b2961b", + "id" : "3526902", + "profile" : { + "bust" : "75", + "height" : "158", + "hip" : "79", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "ダッシュ・ロワイヤル", + "alias_name_display" : "ダッシュ・ロワイヤル", + "event" : [ { + "event_id" : 820, + "event_name" : "第20回アイドルLIVEロワイヤル" + } ], + "hash" : "caa40a2b61e26c6bc67b7e8e19ef0050", + "id" : "3436301", + "profile" : { + "bust" : "75", + "height" : "158", + "hip" : "79", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "ダッシュ・ロワイヤル", + "alias_name_display" : "ダッシュ・ロワイヤル", + "event" : [ { + "event_id" : 820, + "event_name" : "第20回アイドルLIVEロワイヤル" + } ], + "hash" : "73510215f3daefbf89a05623b83e3fd8", + "id" : "3536302", + "profile" : { + "bust" : "75", + "height" : "158", + "hip" : "79", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "ペッピーウォーキン☆", + "alias_name_display" : "ペッピーウォーキン☆", + "event" : [ { + "event_id" : 1412, + "event_name" : "第12回ぷちデレラコレクション" + } ], + "hash" : "152d472f4e2ac23df690fde0685bb3f6", + "id" : "3439401", + "profile" : { + "bust" : "75", + "height" : "158", + "hip" : "79", + "waist" : "57", + "weight" : "43" + } + }, { + "alias_name" : "ペッピーウォーキン☆", + "alias_name_display" : "ペッピーウォーキン☆", + "event" : [ { + "event_id" : 1412, + "event_name" : "第12回ぷちデレラコレクション" + } ], + "hash" : "b24f3818f1e1073ea376f64f62004d15", + "id" : "3539402", + "profile" : { + "bust" : "75", + "height" : "158", + "hip" : "79", + "waist" : "57", + "weight" : "43" + } + } ], + "idol_id" : 186, + "idol_name" : "北川真尋", + "idol_name_display" : "北川真尋", + "units" : [ { + "id" : "97", + "name" : "ドイツスタイル" + }, { + "id" : "166", + "name" : "メルヘンアニマルズ" + }, { + "id" : "181", + "name" : "フレッシュアスリーテス" + }, { + "id" : "211", + "name" : "ワンダー・フル" + } ] +}, { + "aliases" : [ { + "alias_name" : "水泳大会", + "alias_name_display" : "水泳大会", + "event" : [ { + "event_id" : 106, + "event_name" : "アイドル水泳大会 水着のシンデレラ" + } ], + "hash" : "886e0e6ddf996f029d572480ab02dd81", + "id" : "3003001", + "profile" : { + "bust" : "71", + "height" : "152", + "hip" : "73", + "waist" : "59", + "weight" : "41" + } + }, { + "alias_name" : "水泳大会", + "alias_name_display" : "水泳大会", + "event" : [ { + "event_id" : 106, + "event_name" : "アイドル水泳大会 水着のシンデレラ" + } ], + "hash" : "3e0a6ce679f6f028f72df476ee639a2d", + "id" : "3103002", + "profile" : { + "bust" : "71", + "height" : "152", + "hip" : "73", + "waist" : "59", + "weight" : "41" + } + }, { + "hash" : "18489764f5cbce4a977c80ee9d7783a1", + "id" : "3203001", + "profile" : { + "bust" : "70", + "height" : "150", + "hip" : "72", + "waist" : "58", + "weight" : "40" + } + }, { + "hash" : "65101cc645b1b98eba948fe54046ff6f", + "id" : "3303002", + "profile" : { + "bust" : "71", + "height" : "152", + "hip" : "73", + "waist" : "59", + "weight" : "41" + } + }, { + "alias_name" : "湯けむり温泉", + "alias_name_display" : "湯けむり温泉", + "hash" : "bd4274434813bd239fc7ea3c76f536c5", + "id" : "3207101", + "profile" : { + "bust" : "71", + "height" : "152", + "hip" : "73", + "waist" : "59", + "weight" : "41" + } + }, { + "alias_name" : "湯けむり温泉", + "alias_name_display" : "湯けむり温泉", + "hash" : "e94f806191848660212e2e8d5cf8e788", + "id" : "3307102", + "profile" : { + "bust" : "71", + "height" : "152", + "hip" : "73", + "waist" : "59", + "weight" : "41" + } + }, { + "alias_name" : "リトルアクトレス", + "alias_name_display" : "リトルアクトレス", + "hash" : "d26384fd64b2ba4dd1c1d86cfb67b8a0", + "id" : "3211401", + "profile" : { + "bust" : "71", + "height" : "152", + "hip" : "73", + "waist" : "59", + "weight" : "41" + } + }, { + "alias_name" : "リトルアクトレス", + "alias_name_display" : "リトルアクトレス", + "hash" : "4651350df55caf44e7f2cab5de005a4e", + "id" : "3311402", + "profile" : { + "bust" : "71", + "height" : "152", + "hip" : "73", + "waist" : "59", + "weight" : "41" + } + }, { + "alias_name" : "ブライダルセレクション", + "alias_name_display" : "ブライダルセレクション", + "hash" : "dee7d5cc58fb28e3a1e115ca1c86fd4c", + "id" : "3223301", + "profile" : { + "bust" : "71", + "height" : "152", + "hip" : "73", + "waist" : "59", + "weight" : "41" + } + }, { + "alias_name" : "ブライダルセレクション", + "alias_name_display" : "ブライダルセレクション", + "hash" : "e92cc31ad73eaa57f553a47e360d33cf", + "id" : "3323302", + "profile" : { + "bust" : "71", + "height" : "152", + "hip" : "73", + "waist" : "59", + "weight" : "41" + } + }, { + "alias_name" : "レディスタイル", + "alias_name_display" : "レディスタイル", + "event" : [ { + "event_id" : "029", + "event_name" : "第29回プロダクションマッチフェスティバル" + } ], + "hash" : "75e021f7d250349ad9200dc8a41078cc", + "id" : "3229401", + "profile" : { + "bust" : "71", + "height" : "152", + "hip" : "73", + "waist" : "59", + "weight" : "41" + } + }, { + "alias_name" : "レディスタイル", + "alias_name_display" : "レディスタイル", + "event" : [ { + "event_id" : "029", + "event_name" : "第29回プロダクションマッチフェスティバル" + } ], + "hash" : "f07ac41e9accff6a007922b58505d2a5", + "id" : "3329402", + "profile" : { + "bust" : "71", + "height" : "152", + "hip" : "73", + "waist" : "59", + "weight" : "41" + } + }, { + "alias_name" : "マーチングバンド", + "alias_name_display" : "マーチングバンド", + "hash" : "bf401761087be840072f8fabc7f3b073", + "id" : "3231601", + "profile" : { + "bust" : "71", + "height" : "152", + "hip" : "73", + "waist" : "59", + "weight" : "41" + } + }, { + "alias_name" : "マーチングバンド", + "alias_name_display" : "マーチングバンド", + "hash" : "f2661e2d6e1a47730b985c6d3346b2bd", + "id" : "3331602", + "profile" : { + "bust" : "71", + "height" : "152", + "hip" : "73", + "waist" : "59", + "weight" : "41" + } + }, { + "alias_name" : "おませなリトルガール", + "alias_name_display" : "おませなリトルガール", + "event" : [ { + "event_id" : 502, + "event_name" : "アイドルLIVEツアーinイギリス" + } ], + "hash" : "eabcfd8ee79889adba48d73ad1f69c79", + "id" : "3404601", + "profile" : { + "bust" : "71", + "height" : "152", + "hip" : "73", + "waist" : "59", + "weight" : "41" + } + }, { + "alias_name" : "おませなリトルガール", + "alias_name_display" : "おませなリトルガール", + "event" : [ { + "event_id" : 502, + "event_name" : "アイドルLIVEツアーinイギリス" + } ], + "hash" : "3390b977532c2288bfeaf47e57853643", + "id" : "3504602", + "profile" : { + "bust" : "71", + "height" : "152", + "hip" : "73", + "waist" : "59", + "weight" : "41" + } + }, { + "alias_name" : "オトメのお勉強", + "alias_name_display" : "オトメのお勉強", + "hash" : "382b58a89b0ff8b39f719704e4723e44", + "id" : "3411201", + "profile" : { + "bust" : "71", + "height" : "152", + "hip" : "73", + "waist" : "59", + "weight" : "41" + } + }, { + "alias_name" : "オトメのお勉強", + "alias_name_display" : "オトメのお勉強", + "hash" : "92fb772d2d95efadf4b23d64a88d9598", + "id" : "3511202", + "profile" : { + "bust" : "71", + "height" : "152", + "hip" : "73", + "waist" : "59", + "weight" : "41" + } + }, { + "alias_name" : "学園の魔女", + "alias_name_display" : "学園の魔女", + "event" : [ { + "event_id" : 412, + "event_name" : "聖靴学園の七不思議" + } ], + "hash" : "dec0c48fb7ff2cea33acedc86d60ed77", + "id" : "3413801", + "profile" : { + "bust" : "71", + "height" : "152", + "hip" : "73", + "waist" : "59", + "weight" : "41" + } + }, { + "alias_name" : "学園の魔女", + "alias_name_display" : "学園の魔女", + "event" : [ { + "event_id" : 412, + "event_name" : "聖靴学園の七不思議" + } ], + "hash" : "860470aa8c2a41e31fb01ef84b3ff1fa", + "id" : "3513802", + "profile" : { + "bust" : "71", + "height" : "152", + "hip" : "73", + "waist" : "59", + "weight" : "41" + } + }, { + "alias_name" : "学園の魔女・S", + "alias_name_display" : "学園の魔女・S", + "event" : [ { + "event_id" : 412, + "event_name" : "聖靴学園の七不思議" + } ], + "hash" : "81f2b25fee15cd052eb46e500a139a58", + "id" : "3413901", + "profile" : { + "bust" : "71", + "height" : "152", + "hip" : "73", + "waist" : "59", + "weight" : "41" + } + }, { + "alias_name" : "学園の魔女・S", + "alias_name_display" : "学園の魔女・S", + "event" : [ { + "event_id" : 412, + "event_name" : "聖靴学園の七不思議" + } ], + "hash" : "1a5a05e3855800ce1bd8a029a381d3ae", + "id" : "3513902", + "profile" : { + "bust" : "71", + "height" : "152", + "hip" : "73", + "waist" : "59", + "weight" : "41" + } + }, { + "alias_name" : "碧眼の姫君", + "alias_name_display" : "碧眼の姫君", + "hash" : "990199c5bd44be16361a787dda7e5ec2", + "id" : "3418801", + "profile" : { + "bust" : "71", + "height" : "152", + "hip" : "73", + "waist" : "59", + "weight" : "41" + } + }, { + "alias_name" : "碧眼の姫君", + "alias_name_display" : "碧眼の姫君", + "hash" : "1cff2e692e16e4a5080e58d376ac647a", + "id" : "3518802", + "profile" : { + "bust" : "71", + "height" : "152", + "hip" : "73", + "waist" : "59", + "weight" : "41" + } + }, { + "alias_name" : "スーパーリトルヒーロー", + "alias_name_display" : "スーパーリトルヒーロー", + "event" : [ { + "event_id" : 523, + "event_name" : "鋼鉄公演 きらりんロボ -襲来!コスメティア帝国-" + } ], + "hash" : "21aedb74f5d55532af0ec8d9405eb4d7", + "id" : "3429301", + "profile" : { + "bust" : "71", + "height" : "152", + "hip" : "73", + "waist" : "59", + "weight" : "41" + } + }, { + "alias_name" : "スーパーリトルヒーロー", + "alias_name_display" : "スーパーリトルヒーロー", + "event" : [ { + "event_id" : 523, + "event_name" : "鋼鉄公演 きらりんロボ -襲来!コスメティア帝国-" + } ], + "hash" : "f9e2aa124e090e96d8f60f125f9ff172", + "id" : "3529302", + "profile" : { + "bust" : "71", + "height" : "152", + "hip" : "73", + "waist" : "59", + "weight" : "41" + } + }, { + "alias_name" : "プリティブロンド", + "alias_name_display" : "プリティブロンド", + "event" : [ { + "event_id" : 823, + "event_name" : "第23回アイドルLIVEロワイヤル" + } ], + "hash" : "571191f721985c5482bbb81971f25b98", + "id" : "3440001", + "profile" : { + "bust" : "71", + "height" : "152", + "hip" : "73", + "waist" : "59", + "weight" : "41" + } + }, { + "alias_name" : "プリティブロンド", + "alias_name_display" : "プリティブロンド", + "event" : [ { + "event_id" : 823, + "event_name" : "第23回アイドルLIVEロワイヤル" + } ], + "hash" : "cda5c513974a4e22bdafa7fb7e662c56", + "id" : "3540002", + "profile" : { + "bust" : "71", + "height" : "152", + "hip" : "73", + "waist" : "59", + "weight" : "41" + } + } ], + "idol_id" : 187, + "idol_name" : "メアリー・コクラン", + "idol_name_display" : "メアリー・コクラン", + "units" : [ { + "id" : "125", + "name" : "ユア・フレンズ" + }, { + "id" : "162", + "name" : "ブライダルセレクション" + }, { + "id" : "170", + "name" : "UKスタイル" + }, { + "id" : "214", + "name" : "L.M.B.G" + } ] +}, { + "aliases" : [ { + "hash" : "981843c62010419ba465420262c9550f", + "id" : "3203101", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "88", + "waist" : "59", + "weight" : "48" + } + }, { + "hash" : "f5c48d566baf361906d0951ebfdc9234", + "id" : "3303102", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "88", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "学園祭", + "alias_name_display" : "学園祭", + "event" : [ { + "event_id" : 206, + "event_name" : "アイドルサバイバルin学園祭" + } ], + "hash" : "71acc3f7453e1a9821d89a1d545f5c94", + "id" : "3206401", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "88", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "学園祭", + "alias_name_display" : "学園祭", + "event" : [ { + "event_id" : 206, + "event_name" : "アイドルサバイバルin学園祭" + } ], + "hash" : "d82c7d5601b6218d47b3f619d13bfe55", + "id" : "3306402", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "88", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "ハッピーバレンタイン", + "alias_name_display" : "ハッピーバレンタイン", + "event" : [ { + "event_id" : 405, + "event_name" : "アイドルプロデュース バレンタイン編" + } ], + "hash" : "230c5b5ec92445aaed128c7508cb8356", + "id" : "3208701", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "88", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "ハッピーバレンタイン", + "alias_name_display" : "ハッピーバレンタイン", + "event" : [ { + "event_id" : 405, + "event_name" : "アイドルプロデュース バレンタイン編" + } ], + "hash" : "220f83f980eec9c9351bed10645e0405", + "id" : "3308702", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "88", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "スマイルバレンタイン", + "alias_name_display" : "スマイルバレンタイン", + "event" : [ { + "event_id" : 405, + "event_name" : "アイドルプロデュース バレンタイン編" + } ], + "hash" : "fbbfc8130fff846c3e712282ca7f841b", + "id" : "3208801", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "88", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "スマイルバレンタイン", + "alias_name_display" : "スマイルバレンタイン", + "event" : [ { + "event_id" : 405, + "event_name" : "アイドルプロデュース バレンタイン編" + } ], + "hash" : "66a35e542777658570fd3b0579538e63", + "id" : "3308802", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "88", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "ダンシングブライド", + "alias_name_display" : "ダンシングブライド", + "hash" : "d8bc3c2d3dc0cff584279852792d7a95", + "id" : "3213901", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "88", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "ダンシングブライド", + "alias_name_display" : "ダンシングブライド", + "hash" : "3a2aa4fc0fb6337f9451d4efad5b9916", + "id" : "3313902", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "88", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "カジュアル&フリル", + "alias_name_display" : "カジュアル&フリル", + "hash" : "dfb65b80dbdb7746d7eb0b0037744684", + "id" : "3216101", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "88", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "カジュアル&フリル", + "alias_name_display" : "カジュアル&フリル", + "hash" : "7dc7df39668d17d3e6aefc45dad172c8", + "id" : "3316102", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "88", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "さわやかスポーツ", + "alias_name_display" : "さわやかスポーツ", + "hash" : "2ed81a3a0badd66417a9d8dac2380dcd", + "id" : "3222901", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "88", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "さわやかスポーツ", + "alias_name_display" : "さわやかスポーツ", + "hash" : "2f113b28d941cd9250d02f9491e2425a", + "id" : "3322902", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "88", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "ディライトタイム", + "alias_name_display" : "ディライトタイム", + "event" : [ { + "event_id" : 717, + "event_name" : "第17回ドリームLIVEフェスティバル" + } ], + "hash" : "e026a9a2e9fdd0cb527ab89ce1ac8b62", + "id" : "3326102", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "88", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "サバゲーI.C", + "alias_name_display" : "サバゲーI.C", + "event" : [ { + "event_id" : 1210, + "event_name" : "アイドルチャレンジ サバイバルゲーム編" + } ], + "hash" : "0dbc072b0335f879d112086ca78ad77a", + "id" : "3328502", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "88", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "ストリートスパークル", + "alias_name_display" : "ストリートスパークル", + "hash" : "94bff0502f041e4baae4b676e3468a23", + "id" : "3233501", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "88", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "ストリートスパークル", + "alias_name_display" : "ストリートスパークル", + "hash" : "804b115656386639daea4c52420f7105", + "id" : "3333502", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "88", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "トロピカルダンサー", + "alias_name_display" : "トロピカルダンサー", + "event" : [ { + "event_id" : 505, + "event_name" : "アイドルLIVEツアーinバリ島" + } ], + "hash" : "664ca1e6850282545e40668063e9f05d", + "id" : "3407401", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "88", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "トロピカルダンサー", + "alias_name_display" : "トロピカルダンサー", + "event" : [ { + "event_id" : 505, + "event_name" : "アイドルLIVEツアーinバリ島" + } ], + "hash" : "08cd13a051d1962fee067b9e38acd6c4", + "id" : "3507402", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "88", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "フェイバリット☆タイム", + "alias_name_display" : "フェイバリット☆タイム", + "hash" : "56fb7869be014b15e2daccaf1dc6d4dc", + "id" : "3417501", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "88", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "フェイバリット☆タイム", + "alias_name_display" : "フェイバリット☆タイム", + "hash" : "1af95abc44fe62d8324257c1f6290018", + "id" : "3517502", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "88", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "フレッシュソルジャー", + "alias_name_display" : "フレッシュソルジャー", + "event" : [ { + "event_id" : 1210, + "event_name" : "アイドルチャレンジ サバイバルゲーム編" + } ], + "hash" : "d23f88fda4981caa35655e6be23fc54c", + "id" : "3431901", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "88", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "フレッシュソルジャー", + "alias_name_display" : "フレッシュソルジャー", + "event" : [ { + "event_id" : 1210, + "event_name" : "アイドルチャレンジ サバイバルゲーム編" + } ], + "hash" : "64765fd2a7760ab7c85ff530a7ee1014", + "id" : "3531902", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "88", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "フレッシュソルジャー・S", + "alias_name_display" : "フレッシュソルジャー・S", + "event" : [ { + "event_id" : 1210, + "event_name" : "アイドルチャレンジ サバイバルゲーム編" + } ], + "hash" : "14b9f5fc5395420c5fba5f8f9b6982ae", + "id" : "3432001", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "88", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "フレッシュソルジャー・S", + "alias_name_display" : "フレッシュソルジャー・S", + "event" : [ { + "event_id" : 1210, + "event_name" : "アイドルチャレンジ サバイバルゲーム編" + } ], + "hash" : "93ff417b98647caf533179ef85083542", + "id" : "3532002", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "88", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "月夜のダンサー", + "alias_name_display" : "月夜のダンサー", + "event" : [ { + "event_id" : 819, + "event_name" : "アイドルLIVEロワイヤル お月見SP" + } ], + "hash" : "c49c6d77d6640d6be62d4f0043739f4f", + "id" : "3435001", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "88", + "waist" : "59", + "weight" : "48" + } + }, { + "alias_name" : "月夜のダンサー", + "alias_name_display" : "月夜のダンサー", + "event" : [ { + "event_id" : 819, + "event_name" : "アイドルLIVEロワイヤル お月見SP" + } ], + "hash" : "74726c9cfa072e384c992e8d8bde9ff9", + "id" : "3535002", + "profile" : { + "bust" : "85", + "height" : "165", + "hip" : "88", + "waist" : "59", + "weight" : "48" + } + } ], + "idol_id" : 188, + "idol_name" : "小松伊吹", + "idol_name_display" : "小松伊吹", + "units" : [ { + "id" : "2", + "name" : "アーティスター" + }, { + "id" : "119", + "name" : "フランメ・ルージュ" + }, { + "id" : "160", + "name" : "ハッピーバレンタイン" + } ] +}, { + "aliases" : [ { + "hash" : "74a5d336821a3ccbb0e27083910eb4a2", + "id" : "3203401", + "profile" : { + "bust" : "75", + "height" : "149", + "hip" : "80", + "waist" : "56", + "weight" : "39" + } + }, { + "hash" : "6975abbc1acbd11dc0761db34100eeff", + "id" : "3303402", + "profile" : { + "bust" : "75", + "height" : "149", + "hip" : "80", + "waist" : "56", + "weight" : "39" + } + }, { + "alias_name" : "サマーライブ", + "alias_name_display" : "サマーライブ", + "event" : [ { + "event_id" : 205, + "event_name" : "アイドルサバイバルinサマーライブ" + } ], + "hash" : "a2c76c7c3d6cd4ed9bfae16a519606e3", + "id" : "3205501", + "profile" : { + "bust" : "75", + "height" : "149", + "hip" : "80", + "waist" : "56", + "weight" : "39" + } + }, { + "alias_name" : "サマーライブ", + "alias_name_display" : "サマーライブ", + "event" : [ { + "event_id" : 205, + "event_name" : "アイドルサバイバルinサマーライブ" + } ], + "hash" : "55f4201ee5b5f40f49f375d912ca5a48", + "id" : "3305502", + "profile" : { + "bust" : "75", + "height" : "149", + "hip" : "80", + "waist" : "56", + "weight" : "39" + } + }, { + "alias_name" : "バレンタインパーティー", + "alias_name_display" : "バレンタインパーティー", + "hash" : "a912475f262c6610d16fd01a89b67b4f", + "id" : "3208601", + "profile" : { + "bust" : "75", + "height" : "149", + "hip" : "80", + "waist" : "56", + "weight" : "39" + } + }, { + "alias_name" : "バレンタインパーティー", + "alias_name_display" : "バレンタインパーティー", + "hash" : "035f0fe78149312386a6359970285410", + "id" : "3308602", + "profile" : { + "bust" : "75", + "height" : "149", + "hip" : "80", + "waist" : "56", + "weight" : "39" + } + }, { + "alias_name" : "ドリームプレイヤー", + "alias_name_display" : "ドリームプレイヤー", + "hash" : "ec9534560df91355b8d8237b6ac478d2", + "id" : "3210401", + "profile" : { + "bust" : "75", + "height" : "149", + "hip" : "80", + "waist" : "56", + "weight" : "39" + } + }, { + "alias_name" : "ドリームプレイヤー", + "alias_name_display" : "ドリームプレイヤー", + "hash" : "39462197c42755367ed51077cd00d7d0", + "id" : "3310402", + "profile" : { + "bust" : "75", + "height" : "149", + "hip" : "80", + "waist" : "56", + "weight" : "39" + } + }, { + "alias_name" : "ロワイヤルスタイル", + "alias_name_display" : "ロワイヤルスタイル", + "event" : [ { + "event_id" : 803, + "event_name" : "第3回アイドルLIVEロワイヤル" + } ], + "hash" : "a16bd6a20aae0e2a289296b10faa0816", + "id" : "3215001", + "profile" : { + "bust" : "75", + "height" : "149", + "hip" : "80", + "waist" : "56", + "weight" : "39" + } + }, { + "alias_name" : "ロワイヤルスタイル", + "alias_name_display" : "ロワイヤルスタイル", + "event" : [ { + "event_id" : 803, + "event_name" : "第3回アイドルLIVEロワイヤル" + } ], + "hash" : "7eadf1a32f2acd16c352cc821d3edd11", + "id" : "3315002", + "profile" : { + "bust" : "75", + "height" : "149", + "hip" : "80", + "waist" : "56", + "weight" : "39" + } + }, { + "alias_name" : "ビーチサイド", + "alias_name_display" : "ビーチサイド", + "hash" : "1a49f2b52578fca59c62611f515030ea", + "id" : "3217701", + "profile" : { + "bust" : "75", + "height" : "149", + "hip" : "80", + "waist" : "56", + "weight" : "39" + } + }, { + "alias_name" : "ビーチサイド", + "alias_name_display" : "ビーチサイド", + "hash" : "ebb3ac001f3f27dd4ae4303f9a68bb0d", + "id" : "3317702", + "profile" : { + "bust" : "75", + "height" : "149", + "hip" : "80", + "waist" : "56", + "weight" : "39" + } + }, { + "alias_name" : "春キャンプ", + "alias_name_display" : "春キャンプ", + "event" : [ { + "event_id" : 1701, + "event_name" : "アイドルプロデュース はじめてのキャンプ" + } ], + "hash" : "d1603fa7ad370e35126a6d5c7aa76111", + "id" : "3222601", + "profile" : { + "bust" : "75", + "height" : "149", + "hip" : "80", + "waist" : "56", + "weight" : "39" + } + }, { + "alias_name" : "春キャンプ", + "alias_name_display" : "春キャンプ", + "event" : [ { + "event_id" : 1701, + "event_name" : "アイドルプロデュース はじめてのキャンプ" + } ], + "hash" : "1ef60a5f56267922ef2c087e52328d28", + "id" : "3322602", + "profile" : { + "bust" : "75", + "height" : "149", + "hip" : "80", + "waist" : "56", + "weight" : "39" + } + }, { + "alias_name" : "笑顔でキャンプ", + "alias_name_display" : "笑顔でキャンプ", + "event" : [ { + "event_id" : 1701, + "event_name" : "アイドルプロデュース はじめてのキャンプ" + } ], + "hash" : "5e70ce9f10f6cceae13ad3ab5b62cdff", + "id" : "3222701", + "profile" : { + "bust" : "75", + "height" : "149", + "hip" : "80", + "waist" : "56", + "weight" : "39" + } + }, { + "alias_name" : "笑顔でキャンプ", + "alias_name_display" : "笑顔でキャンプ", + "event" : [ { + "event_id" : 1701, + "event_name" : "アイドルプロデュース はじめてのキャンプ" + } ], + "hash" : "bc4fe5771be756b951a3bfe654de6c1a", + "id" : "3322702", + "profile" : { + "bust" : "75", + "height" : "149", + "hip" : "80", + "waist" : "56", + "weight" : "39" + } + }, { + "alias_name" : "コレクションスタイル", + "alias_name_display" : "コレクションスタイル", + "event" : [ { + "event_id" : 1403, + "event_name" : "第3回ぷちデレラコレクション" + } ], + "hash" : "3941f572ab28142e287098298b0dc886", + "id" : "3324602", + "profile" : { + "bust" : "75", + "height" : "149", + "hip" : "80", + "waist" : "56", + "weight" : "39" + } + }, { + "alias_name" : "秋の学園祭", + "alias_name_display" : "秋の学園祭", + "hash" : "e491607723ee289413421eb50c7865ad", + "id" : "3231001", + "profile" : { + "bust" : "75", + "height" : "149", + "hip" : "80", + "waist" : "56", + "weight" : "39" + } + }, { + "alias_name" : "秋の学園祭", + "alias_name_display" : "秋の学園祭", + "hash" : "0188bc58f63647f0b7862f81905b8698", + "id" : "3331002", + "profile" : { + "bust" : "75", + "height" : "149", + "hip" : "80", + "waist" : "56", + "weight" : "39" + } + }, { + "alias_name" : "ピコピコ☆ゲーマー", + "alias_name_display" : "ピコピコ☆ゲーマー", + "hash" : "7e318d7290da68dd33c9c312042da379", + "id" : "3408301", + "profile" : { + "bust" : "75", + "height" : "149", + "hip" : "80", + "waist" : "56", + "weight" : "39" + } + }, { + "alias_name" : "ピコピコ☆ゲーマー", + "alias_name_display" : "ピコピコ☆ゲーマー", + "hash" : "4a13052e4c41d9c815300df353359412", + "id" : "3508302", + "profile" : { + "bust" : "75", + "height" : "149", + "hip" : "80", + "waist" : "56", + "weight" : "39" + } + }, { + "alias_name" : "ゲームトークナイト", + "alias_name_display" : "ゲームトークナイト", + "event" : [ { + "event_id" : 1106, + "event_name" : "プロダクション対抗トークバトルショー ハロウィンSP" + } ], + "hash" : "8e9bd7c98e4c86491db3a28af15d607b", + "id" : "3418201", + "profile" : { + "bust" : "75", + "height" : "149", + "hip" : "80", + "waist" : "56", + "weight" : "39" + } + }, { + "alias_name" : "ゲームトークナイト", + "alias_name_display" : "ゲームトークナイト", + "event" : [ { + "event_id" : 1106, + "event_name" : "プロダクション対抗トークバトルショー ハロウィンSP" + } ], + "hash" : "1b31aa81142324e6e5817be4e32a26a8", + "id" : "3518202", + "profile" : { + "bust" : "75", + "height" : "149", + "hip" : "80", + "waist" : "56", + "weight" : "39" + } + }, { + "alias_name" : "ミッション☆コンプリート", + "alias_name_display" : "ミッション☆コンプリート", + "event" : [ { + "event_id" : 1802, + "event_name" : "アイドルバラエティ 手作りライブプロジェクト!" + } ], + "hash" : "008dfb4279896adf547835f3f11a408f", + "id" : "3427801", + "profile" : { + "bust" : "75", + "height" : "149", + "hip" : "80", + "waist" : "56", + "weight" : "39" + } + }, { + "alias_name" : "ミッション☆コンプリート", + "alias_name_display" : "ミッション☆コンプリート", + "event" : [ { + "event_id" : 1802, + "event_name" : "アイドルバラエティ 手作りライブプロジェクト!" + } ], + "hash" : "dca3fed6718b0a88528a6c1482136d79", + "id" : "3527802", + "profile" : { + "bust" : "75", + "height" : "149", + "hip" : "80", + "waist" : "56", + "weight" : "39" + } + }, { + "alias_name" : "冒険者", + "alias_name_display" : "冒険者", + "hash" : "12294135f86976c08cd019bd74bb9617", + "id" : "3431301", + "profile" : { + "bust" : "75", + "height" : "149", + "hip" : "80", + "waist" : "56", + "weight" : "39" + } + }, { + "alias_name" : "冒険者", + "alias_name_display" : "冒険者", + "hash" : "5caedbb13727f0afdd234d8e73a40a32", + "id" : "3531302", + "profile" : { + "bust" : "75", + "height" : "149", + "hip" : "80", + "waist" : "56", + "weight" : "39" + } + } ], + "idol_id" : 189, + "idol_name" : "三好紗南", + "idol_name_display" : "三好紗南", + "units" : [ { + "id" : "93", + "name" : "サマーライブセーラー" + }, { + "id" : "208", + "name" : "ロワイヤルスタイル" + } ] +}, { + "aliases" : [ { + "hash" : "b3484b86731fa47b0a59f2d1fb3af249", + "id" : "3203501", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "56", + "weight" : "49" + } + }, { + "hash" : "b8843d1031f4438aba54223452579b4d", + "id" : "3303502", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "56", + "weight" : "49" + } + }, { + "alias_name" : "新春コレクション", + "alias_name_display" : "新春コレクション", + "hash" : "03e13b764bf732aa5f4f075a2d1e95b2", + "id" : "3208101", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "56", + "weight" : "49" + } + }, { + "alias_name" : "新春コレクション", + "alias_name_display" : "新春コレクション", + "hash" : "a687207d5948158046e24f5fb94f6821", + "id" : "3308102", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "56", + "weight" : "49" + } + }, { + "alias_name" : "フレッシュマンダリン", + "alias_name_display" : "フレッシュマンダリン", + "hash" : "b625f2e8a25e839e2e5cb9664fb71b7a", + "id" : "3210501", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "56", + "weight" : "49" + } + }, { + "alias_name" : "フレッシュマンダリン", + "alias_name_display" : "フレッシュマンダリン", + "hash" : "ab2bb97e46e8102de86579aff4b90518", + "id" : "3310502", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "56", + "weight" : "49" + } + }, { + "alias_name" : "ガンスリンガー", + "alias_name_display" : "ガンスリンガー", + "event" : [ { + "event_id" : 512, + "event_name" : "西部公演 ガンスリンガージャーニー" + } ], + "hash" : "afe03e20c836f8ff906a253a56ee26b4", + "id" : "3217301", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "56", + "weight" : "49" + } + }, { + "alias_name" : "ガンスリンガー", + "alias_name_display" : "ガンスリンガー", + "event" : [ { + "event_id" : 512, + "event_name" : "西部公演 ガンスリンガージャーニー" + } ], + "hash" : "b8ebb0a9955fa101aa15e6e1a5783a91", + "id" : "3317302", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "56", + "weight" : "49" + } + }, { + "alias_name" : "お笑いスタイル", + "alias_name_display" : "お笑いスタイル", + "hash" : "f5f8259dc3787f4f8b0f206197fcf841", + "id" : "3219801", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "56", + "weight" : "49" + } + }, { + "alias_name" : "お笑いスタイル", + "alias_name_display" : "お笑いスタイル", + "hash" : "8f06d715ec61652d3319aa6b5b598985", + "id" : "3319802", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "56", + "weight" : "49" + } + }, { + "alias_name" : "オータムコレクション", + "alias_name_display" : "オータムコレクション", + "hash" : "cbfeca48ab63abe8384f4ad14fafb16d", + "id" : "3225501", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "56", + "weight" : "49" + } + }, { + "alias_name" : "オータムコレクション", + "alias_name_display" : "オータムコレクション", + "hash" : "d1f3863d47e6b365bfcaa26abc17bfd7", + "id" : "3325502", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "56", + "weight" : "49" + } + }, { + "alias_name" : "ウェディングセレモニー", + "alias_name_display" : "ウェディングセレモニー", + "hash" : "05fce5bf386ef6017a6682a7d150b3b2", + "id" : "3229201", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "56", + "weight" : "49" + } + }, { + "alias_name" : "ウェディングセレモニー", + "alias_name_display" : "ウェディングセレモニー", + "hash" : "d5499ca5008c269d303d65621dc37893", + "id" : "3329202", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "56", + "weight" : "49" + } + }, { + "alias_name" : "スクールプール", + "alias_name_display" : "スクールプール", + "hash" : "99ad862dd87829dfeea90bff61767a6d", + "id" : "3231501", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "56", + "weight" : "49" + } + }, { + "alias_name" : "スクールプール", + "alias_name_display" : "スクールプール", + "hash" : "6ba750a1ecbc961392b6751f7a1bf65e", + "id" : "3331502", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "56", + "weight" : "49" + } + }, { + "alias_name" : "ベーカリーI.C", + "alias_name_display" : "ベーカリーI.C", + "hash" : "42ca5290aba119f9e690b169d75aedd8", + "id" : "3334302", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "56", + "weight" : "49" + } + }, { + "alias_name" : "スペーススター", + "alias_name_display" : "スペーススター", + "event" : [ { + "event_id" : 508, + "event_name" : "LIVEツアーカーニバルinスペースワールド" + } ], + "hash" : "2dcce81c8d5ba61f3f882ed5dc1bb7c2", + "id" : "3409601", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "56", + "weight" : "49" + } + }, { + "alias_name" : "スペーススター", + "alias_name_display" : "スペーススター", + "event" : [ { + "event_id" : 508, + "event_name" : "LIVEツアーカーニバルinスペースワールド" + } ], + "hash" : "273db82fa4d3ec9a7b8065f541094314", + "id" : "3509602", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "56", + "weight" : "49" + } + }, { + "alias_name" : "お喋りチアー", + "alias_name_display" : "お喋りチアー", + "event" : [ { + "event_id" : 1108, + "event_name" : "第8回プロダクション対抗トークバトルショー" + } ], + "hash" : "63b3d81129e7a3f06f0c2057752eeace", + "id" : "3420901", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "56", + "weight" : "49" + } + }, { + "alias_name" : "お喋りチアー", + "alias_name_display" : "お喋りチアー", + "event" : [ { + "event_id" : 1108, + "event_name" : "第8回プロダクション対抗トークバトルショー" + } ], + "hash" : "608a40ac8502a9e202ff4a4e94172e1e", + "id" : "3520902", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "56", + "weight" : "49" + } + }, { + "alias_name" : "ラフ&ガーリー", + "alias_name_display" : "ラフ&ガーリー", + "event" : [ { + "event_id" : 1405, + "event_name" : "第5回ぷちデレラコレクション" + } ], + "hash" : "e1da7a5efed1a5603f126ce01d6b7190", + "id" : "3429501", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "56", + "weight" : "49" + } + }, { + "alias_name" : "ラフ&ガーリー", + "alias_name_display" : "ラフ&ガーリー", + "event" : [ { + "event_id" : 1405, + "event_name" : "第5回ぷちデレラコレクション" + } ], + "hash" : "afd21d0607cc0a99723267c0a5ca4625", + "id" : "3529502", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "56", + "weight" : "49" + } + }, { + "alias_name" : "ジョイフルベーカー", + "alias_name_display" : "ジョイフルベーカー", + "event" : [ { + "event_id" : 1216, + "event_name" : "先生と一緒に♪目指せおいしいパン作り アイドルチャレンジ" + } ], + "hash" : "1770ac1f502f862edc4e9d03bc2f26ea", + "id" : "3440201", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "56", + "weight" : "49" + } + }, { + "alias_name" : "ジョイフルベーカー", + "alias_name_display" : "ジョイフルベーカー", + "event" : [ { + "event_id" : 1216, + "event_name" : "先生と一緒に♪目指せおいしいパン作り アイドルチャレンジ" + } ], + "hash" : "0851d1fa2ae859921bc702b404c67de7", + "id" : "3540202", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "56", + "weight" : "49" + } + }, { + "alias_name" : "にっこりベーカー", + "alias_name_display" : "にっこりベーカー", + "hash" : "786235d566b59592b81ca34c53c5668b", + "id" : "3440301", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "56", + "weight" : "49" + } + }, { + "alias_name" : "にっこりベーカー", + "alias_name_display" : "にっこりベーカー", + "hash" : "7257d04c6b64058492bc0279c5b1da20", + "id" : "3540302", + "profile" : { + "bust" : "83", + "height" : "168", + "hip" : "85", + "waist" : "56", + "weight" : "49" + } + } ], + "idol_id" : 190, + "idol_name" : "キャシー・グラハム", + "idol_name_display" : "キャシー・グラハム", + "units" : [ { + "id" : "73", + "name" : "ERICATHY" + } ] +}, { + "aliases" : [ { + "hash" : "462788ef215a343a2f7ea3cdf5a79fd3", + "id" : "3203701", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "hash" : "0c755957e7a21af1c343c8976620b90e", + "id" : "3303702", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ハロウィンパーティー", + "alias_name_display" : "ハロウィンパーティー", + "hash" : "0802e6c069e5eb587b99f54a91c3b35f", + "id" : "3206601", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ハロウィンパーティー", + "alias_name_display" : "ハロウィンパーティー", + "hash" : "91d84bb565062b321b0656140a64229e", + "id" : "3306602", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "メデタイガール", + "alias_name_display" : "メデタイガール", + "hash" : "f4520ebc0eb2a8f9c7604e6dd5d1ff2c", + "id" : "3214701", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "メデタイガール", + "alias_name_display" : "メデタイガール", + "hash" : "2c534b1284f41395baad36dfe778d53f", + "id" : "3314702", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ロワイヤルスタイルNP", + "alias_name_display" : "ロワイヤルスタイルNP", + "event" : [ { + "event_id" : 808, + "event_name" : "第8回アイドルLIVEロワイヤル" + } ], + "hash" : "407561052d14f76e674387a9bf26ae21", + "id" : "3220401", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "ロワイヤルスタイルNP", + "alias_name_display" : "ロワイヤルスタイルNP", + "event" : [ { + "event_id" : 808, + "event_name" : "第8回アイドルLIVEロワイヤル" + } ], + "hash" : "14fe0cc1973b33542f4cd53504468157", + "id" : "3320402", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "サマーバケーション", + "alias_name_display" : "サマーバケーション", + "hash" : "fb3a18ab728bd89b803f635d1dcbe2ee", + "id" : "3224301", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "サマーバケーション", + "alias_name_display" : "サマーバケーション", + "hash" : "2248a6d3a1dc713c0369a1d7341e6086", + "id" : "3324302", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "コレクションスタイル", + "alias_name_display" : "コレクションスタイル", + "event" : [ { + "event_id" : 1404, + "event_name" : "第4回ぷちデレラコレクション" + } ], + "hash" : "7c668cd224c4b1481a50265b2fad07ba", + "id" : "3326302", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "湯けむり紀行", + "alias_name_display" : "湯けむり紀行", + "hash" : "0b90d9ced62058b2ebd6346f901ee365", + "id" : "3231401", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "湯けむり紀行", + "alias_name_display" : "湯けむり紀行", + "hash" : "aebaafab9c096221c76d6f101a84bcab", + "id" : "3331402", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "浪速の派手娘", + "alias_name_display" : "浪速の派手娘", + "event" : [ { + "event_id" : 701, + "event_name" : "ドリームLIVEフェスティバル" + } ], + "hash" : "201ebec439117f0f54102f5846e86c12", + "id" : "3407201", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "浪速の派手娘", + "alias_name_display" : "浪速の派手娘", + "event" : [ { + "event_id" : 701, + "event_name" : "ドリームLIVEフェスティバル" + } ], + "hash" : "06ab397c7df69732c1952897a4b3a7f8", + "id" : "3507202", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "お笑い☆伝道師", + "alias_name_display" : "お笑い☆伝道師", + "hash" : "0811dd9530eb29e539e0eaec1b603a30", + "id" : "3414601", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "お笑い☆伝道師", + "alias_name_display" : "お笑い☆伝道師", + "hash" : "52c8883ccd2ca956eaa81d9b55b4c04b", + "id" : "3514602", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "爆笑チアー", + "alias_name_display" : "爆笑チアー", + "event" : [ { + "event_id" : 1505, + "event_name" : "チーム対抗トークバトルショー ウィンターSP" + } ], + "hash" : "2d77fd6c9641905d6751667510c2b70e", + "id" : "3429401", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "爆笑チアー", + "alias_name_display" : "爆笑チアー", + "event" : [ { + "event_id" : 1505, + "event_name" : "チーム対抗トークバトルショー ウィンターSP" + } ], + "hash" : "7ca0bf3dd109857d28f794f7772d3729", + "id" : "3529402", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "花盛り☆乙女", + "alias_name_display" : "花盛り☆乙女", + "event" : [ { + "event_id" : 817, + "event_name" : "アイドルLIVEロワイヤル お花見SP" + } ], + "hash" : "00f30f05193ace2cf45ee2e131248543", + "id" : "3431701", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "花盛り☆乙女", + "alias_name_display" : "花盛り☆乙女", + "event" : [ { + "event_id" : 817, + "event_name" : "アイドルLIVEロワイヤル お花見SP" + } ], + "hash" : "557803a0324c4d494b78d83b42174e61", + "id" : "3531702", + "profile" : { + "bust" : "82", + "height" : "158", + "hip" : "80", + "waist" : "56", + "weight" : "45" + } + } ], + "idol_id" : 191, + "idol_name" : "難波笑美", + "idol_name_display" : "難波笑美", + "units" : [ { + "id" : "6", + "name" : "笑美と鈴帆の爆笑エブリデイ" + }, { + "id" : "128", + "name" : "ラビュー☆アイス☆マウンテン" + }, { + "id" : "152", + "name" : "B.B.ロワイヤル" + }, { + "id" : "180", + "name" : "ハロウィンパーティー" + }, { + "id" : "190", + "name" : "サマプリ" + }, { + "id" : "209", + "name" : "ロワイヤルスタイルNP" + } ] +}, { + "aliases" : [ { + "hash" : "ca56d3f1c3dfddc86c3e2d5c12c12747", + "id" : "3204201", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "42" + } + }, { + "hash" : "792bcdf081da623dd1fdbac58b9e4399", + "id" : "3304202", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "くのいち忍ドル", + "alias_name_display" : "くのいち忍ドル", + "event" : [ { + "event_id" : "006", + "event_name" : "第6回プロダクションマッチフェスティバル" + } ], + "hash" : "9f221e53168c21925ff336e2c2331eff", + "id" : "3207201", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "くのいち忍ドル", + "alias_name_display" : "くのいち忍ドル", + "event" : [ { + "event_id" : "006", + "event_name" : "第6回プロダクションマッチフェスティバル" + } ], + "hash" : "159060b683d4e8bea49d2c90753f61c7", + "id" : "3307202", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "制服コレクション", + "alias_name_display" : "制服コレクション", + "hash" : "66004323a3b953d2e44968f078de54ab", + "id" : "3209601", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "制服コレクション", + "alias_name_display" : "制服コレクション", + "hash" : "7b0a05b33bd4ab2cff635918cdf66049", + "id" : "3309602", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "リゾート忍ドル", + "alias_name_display" : "リゾート忍ドル", + "hash" : "16912bf56b6bdeb5720986c2865f0c9d", + "id" : "3221201", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "リゾート忍ドル", + "alias_name_display" : "リゾート忍ドル", + "hash" : "0f1161d9c1966cb505756ca600be8d8e", + "id" : "3321202", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "春風スポーツ", + "alias_name_display" : "春風スポーツ", + "hash" : "aeae61e9c8eadfbaa9a18d4d1957f02c", + "id" : "3228401", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "春風スポーツ", + "alias_name_display" : "春風スポーツ", + "hash" : "8bb4775d1c95510634789152546fb595", + "id" : "3328402", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "ロコガール", + "alias_name_display" : "ロコガール", + "event" : [ { + "event_id" : 1707, + "event_name" : "アイドルプロデュース アロハ!常夏の楽園" + } ], + "hash" : "aba42cf3647de7baed67ea72dfafe288", + "id" : "3230501", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "ロコガール", + "alias_name_display" : "ロコガール", + "event" : [ { + "event_id" : 1707, + "event_name" : "アイドルプロデュース アロハ!常夏の楽園" + } ], + "hash" : "cdfbd3cc796f86bd72bfbc59ddb0d37a", + "id" : "3330502", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "オリ・ロコガール", + "alias_name_display" : "オリ・ロコガール", + "event" : [ { + "event_id" : 1707, + "event_name" : "アイドルプロデュース アロハ!常夏の楽園" + } ], + "hash" : "346bf79369d960b64b2687a91743526d", + "id" : "3230601", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "オリ・ロコガール", + "alias_name_display" : "オリ・ロコガール", + "event" : [ { + "event_id" : 1707, + "event_name" : "アイドルプロデュース アロハ!常夏の楽園" + } ], + "hash" : "b2f583b8ab6e0e38ff6b5eac684b30fc", + "id" : "3330602", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "華麗なくのいち", + "alias_name_display" : "華麗なくのいち", + "hash" : "006b31b74f05473ef9f96d9da18aad5b", + "id" : "3407701", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "華麗なくのいち", + "alias_name_display" : "華麗なくのいち", + "hash" : "71558cd2e1d7a1664f22956ce2b3a358", + "id" : "3507702", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "筆術くのいち", + "alias_name_display" : "筆術くのいち", + "event" : [ { + "event_id" : "013", + "event_name" : "第13回プロダクションマッチフェスティバル" + } ], + "hash" : "b0fed18f01b130a35af0a63a73c34e5f", + "id" : "3409801", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "筆術くのいち", + "alias_name_display" : "筆術くのいち", + "event" : [ { + "event_id" : "013", + "event_name" : "第13回プロダクションマッチフェスティバル" + } ], + "hash" : "8479a11885622091deeb77207c85c369", + "id" : "3509802", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "助太刀☆チアー", + "alias_name_display" : "助太刀☆チアー", + "event" : [ { + "event_id" : 1101, + "event_name" : "プロダクション対抗トークバトルショー" + } ], + "hash" : "bb55ef853d7164b8b6d29a4b28be3c3e", + "id" : "3412301", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "助太刀☆チアー", + "alias_name_display" : "助太刀☆チアー", + "event" : [ { + "event_id" : 1101, + "event_name" : "プロダクション対抗トークバトルショー" + } ], + "hash" : "889a7a96129faba04a608bf55171c80c", + "id" : "3512302", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "海風の使者", + "alias_name_display" : "海風の使者", + "hash" : "56297f6f253dada7215cdc52fa5ecbe5", + "id" : "3415801", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "海風の使者", + "alias_name_display" : "海風の使者", + "hash" : "eae651188d4cdbac6e4773e9587cdd77", + "id" : "3515802", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "秘伝☆くのいち", + "alias_name_display" : "秘伝☆くのいち", + "event" : [ { + "event_id" : 713, + "event_name" : "第13回ドリームLIVEフェスティバル" + } ], + "hash" : "0c892e7b0943a2914287dfa8bb44bc9b", + "id" : "3423901", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "秘伝☆くのいち", + "alias_name_display" : "秘伝☆くのいち", + "event" : [ { + "event_id" : 713, + "event_name" : "第13回ドリームLIVEフェスティバル" + } ], + "hash" : "bafd37229535e91c6103b32b90bbd970", + "id" : "3523902", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "純真☆変化", + "alias_name_display" : "純真☆変化", + "hash" : "6ce3af540ca2b7a1c77c6fc26794a4cc", + "id" : "3426801", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "純真☆変化", + "alias_name_display" : "純真☆変化", + "hash" : "ac99882834472fa2caf60e75690f8aca", + "id" : "3526802", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "月影の刺客", + "alias_name_display" : "月影の刺客", + "event" : [ { + "event_id" : 1214, + "event_name" : "目指せくのいち アイドルチャレンジ" + } ], + "hash" : "1d71db748957b5c2a6d9e01a4757a7f9", + "id" : "3437401", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "42" + } + }, { + "alias_name" : "月影の刺客", + "alias_name_display" : "月影の刺客", + "event" : [ { + "event_id" : 1214, + "event_name" : "目指せくのいち アイドルチャレンジ" + } ], + "hash" : "fc4b0d7524dab986a0d4a97f5eab93ff", + "id" : "3537402", + "profile" : { + "bust" : "78", + "height" : "154", + "hip" : "80", + "waist" : "55", + "weight" : "42" + } + } ], + "idol_id" : 192, + "idol_name" : "浜口あやめ", + "idol_name_display" : "浜口あやめ", + "units" : [ { + "id" : "0", + "name" : "くノ一あやめ忍法帖" + }, { + "id" : "19", + "name" : "さつきの頃" + }, { + "id" : "30", + "name" : "センゴク☆ランブ" + }, { + "id" : "38", + "name" : "忍武☆繚乱" + }, { + "id" : "156", + "name" : "センゴク☆華☆ランブ" + }, { + "id" : "179", + "name" : "春霞" + } ] +}, { + "aliases" : [ { + "hash" : "52a9739a10a91ce69139bb28d742e99e", + "id" : "3205101", + "profile" : { + "bust" : "74", + "height" : "146", + "hip" : "76", + "waist" : "53", + "weight" : "37" + } + }, { + "hash" : "e104bb799ff765c82e1be6be6fba6291", + "id" : "3305102", + "profile" : { + "bust" : "74", + "height" : "146", + "hip" : "76", + "waist" : "53", + "weight" : "37" + } + }, { + "alias_name" : "緋桜お嬢", + "alias_name_display" : "緋桜お嬢", + "event" : [ { + "event_id" : "005", + "event_name" : "第5回プロダクションマッチフェスティバル" + } ], + "hash" : "9229fa2ac5d27d5ff9cb61c3edd49baa", + "id" : "3206701", + "profile" : { + "bust" : "74", + "height" : "146", + "hip" : "76", + "waist" : "53", + "weight" : "37" + } + }, { + "alias_name" : "緋桜お嬢", + "alias_name_display" : "緋桜お嬢", + "event" : [ { + "event_id" : "005", + "event_name" : "第5回プロダクションマッチフェスティバル" + } ], + "hash" : "324a9f368dfba1870822807887b3ba7f", + "id" : "3306702", + "profile" : { + "bust" : "74", + "height" : "146", + "hip" : "76", + "waist" : "53", + "weight" : "37" + } + }, { + "alias_name" : "クリスマスパーティー", + "alias_name_display" : "クリスマスパーティー", + "hash" : "063ffec0aa97792c72174763408ba1fb", + "id" : "3214401", + "profile" : { + "bust" : "74", + "height" : "146", + "hip" : "76", + "waist" : "53", + "weight" : "37" + } + }, { + "alias_name" : "クリスマスパーティー", + "alias_name_display" : "クリスマスパーティー", + "hash" : "1b8738bbc354106b60524b170c267ff3", + "id" : "3314402", + "profile" : { + "bust" : "74", + "height" : "146", + "hip" : "76", + "waist" : "53", + "weight" : "37" + } + }, { + "alias_name" : "セレクトメイド", + "alias_name_display" : "セレクトメイド", + "hash" : "c6dac2259d77a69bee5cdc6948f96642", + "id" : "3218701", + "profile" : { + "bust" : "74", + "height" : "146", + "hip" : "76", + "waist" : "53", + "weight" : "37" + } + }, { + "alias_name" : "セレクトメイド", + "alias_name_display" : "セレクトメイド", + "hash" : "ca6c5513c5e2fa0020de3baca8b6a0ef", + "id" : "3318702", + "profile" : { + "bust" : "74", + "height" : "146", + "hip" : "76", + "waist" : "53", + "weight" : "37" + } + }, { + "alias_name" : "クライムI.C", + "alias_name_display" : "クライムI.C", + "event" : [ { + "event_id" : 1211, + "event_name" : "目指せ山頂! アイドルチャレンジ" + } ], + "hash" : "9322735592db663dcc49f60e49f3183f", + "id" : "3329802", + "profile" : { + "bust" : "74", + "height" : "146", + "hip" : "76", + "waist" : "53", + "weight" : "37" + } + }, { + "alias_name" : "新春花道", + "alias_name_display" : "新春花道", + "hash" : "7c46a92d5aed4d00fadb147482537d7b", + "id" : "3404401", + "profile" : { + "bust" : "74", + "height" : "146", + "hip" : "76", + "waist" : "53", + "weight" : "37" + } + }, { + "alias_name" : "新春花道", + "alias_name_display" : "新春花道", + "hash" : "a357bf9e03b66e27cbfe061765e9d1cc", + "id" : "3504402", + "profile" : { + "bust" : "74", + "height" : "146", + "hip" : "76", + "waist" : "53", + "weight" : "37" + } + }, { + "alias_name" : "緋色のプリンセス", + "alias_name_display" : "緋色のプリンセス", + "event" : [ { + "event_id" : 506, + "event_name" : "アイドルLIVEツアーinハワイ" + } ], + "hash" : "0f82f32aefe18696235be44d706de892", + "id" : "3407901", + "profile" : { + "bust" : "74", + "height" : "146", + "hip" : "76", + "waist" : "53", + "weight" : "37" + } + }, { + "alias_name" : "緋色のプリンセス", + "alias_name_display" : "緋色のプリンセス", + "event" : [ { + "event_id" : 506, + "event_name" : "アイドルLIVEツアーinハワイ" + } ], + "hash" : "b1fedfbdbeb47a1cd00a555204dc42bc", + "id" : "3507902", + "profile" : { + "bust" : "74", + "height" : "146", + "hip" : "76", + "waist" : "53", + "weight" : "37" + } + }, { + "alias_name" : "緋色の一皿", + "alias_name_display" : "緋色の一皿", + "event" : [ { + "event_id" : 706, + "event_name" : "第6回ドリームLIVEフェスティバル" + } ], + "hash" : "9ea724a88193776de79ef5f2dc68deed", + "id" : "3412901", + "profile" : { + "bust" : "74", + "height" : "146", + "hip" : "76", + "waist" : "53", + "weight" : "37" + } + }, { + "alias_name" : "緋色の一皿", + "alias_name_display" : "緋色の一皿", + "event" : [ { + "event_id" : 706, + "event_name" : "第6回ドリームLIVEフェスティバル" + } ], + "hash" : "204d94633810b7fc3d886f04802acadd", + "id" : "3512902", + "profile" : { + "bust" : "74", + "height" : "146", + "hip" : "76", + "waist" : "53", + "weight" : "37" + } + }, { + "alias_name" : "紅の一指し", + "alias_name_display" : "紅の一指し", + "hash" : "bede574c4a9a90ab62205799fd9139ef", + "id" : "3419201", + "profile" : { + "bust" : "74", + "height" : "146", + "hip" : "76", + "waist" : "53", + "weight" : "37" + } + }, { + "alias_name" : "紅の一指し", + "alias_name_display" : "紅の一指し", + "hash" : "4bea26175c846e829776dea3b708ea5e", + "id" : "3519202", + "profile" : { + "bust" : "74", + "height" : "146", + "hip" : "76", + "waist" : "53", + "weight" : "37" + } + }, { + "alias_name" : "緋桜宵一刻", + "alias_name_display" : "緋桜宵一刻", + "event" : [ { + "event_id" : 712, + "event_name" : "花見DEドリームLIVEフェスティバル" + } ], + "hash" : "1bbf65958a8b15249f7b3ded9686ba8a", + "id" : "3422501", + "profile" : { + "bust" : "74", + "height" : "146", + "hip" : "76", + "waist" : "53", + "weight" : "37" + } + }, { + "alias_name" : "緋桜宵一刻", + "alias_name_display" : "緋桜宵一刻", + "event" : [ { + "event_id" : 712, + "event_name" : "花見DEドリームLIVEフェスティバル" + } ], + "hash" : "08507b1415aac3425a832f673c3de275", + "id" : "3522502", + "profile" : { + "bust" : "74", + "height" : "146", + "hip" : "76", + "waist" : "53", + "weight" : "37" + } + }, { + "alias_name" : "紅染まる情景", + "alias_name_display" : "紅染まる情景", + "event" : [ { + "event_id" : 717, + "event_name" : "第17回ドリームLIVEフェスティバル" + } ], + "hash" : "f61ce6f523670d1df4811683c3d88932", + "id" : "3427401", + "profile" : { + "bust" : "74", + "height" : "146", + "hip" : "76", + "waist" : "53", + "weight" : "37" + } + }, { + "alias_name" : "紅染まる情景", + "alias_name_display" : "紅染まる情景", + "event" : [ { + "event_id" : 717, + "event_name" : "第17回ドリームLIVEフェスティバル" + } ], + "hash" : "9ed607c190b8f31085a90adb4b333564", + "id" : "3527402", + "profile" : { + "bust" : "74", + "height" : "146", + "hip" : "76", + "waist" : "53", + "weight" : "37" + } + }, { + "alias_name" : "情熱クライマー", + "alias_name_display" : "情熱クライマー", + "event" : [ { + "event_id" : 1211, + "event_name" : "目指せ山頂! アイドルチャレンジ" + } ], + "hash" : "0274b29c98fd5fb1b83903f2b6a184d6", + "id" : "3433801", + "profile" : { + "bust" : "74", + "height" : "146", + "hip" : "76", + "waist" : "53", + "weight" : "37" + } + }, { + "alias_name" : "情熱クライマー", + "alias_name_display" : "情熱クライマー", + "event" : [ { + "event_id" : 1211, + "event_name" : "目指せ山頂! アイドルチャレンジ" + } ], + "hash" : "9f856d31ab13638093c2bae804bda29d", + "id" : "3533802", + "profile" : { + "bust" : "74", + "height" : "146", + "hip" : "76", + "waist" : "53", + "weight" : "37" + } + }, { + "alias_name" : "笑顔でクライマー", + "alias_name_display" : "笑顔でクライマー", + "event" : [ { + "event_id" : 1211, + "event_name" : "目指せ山頂! アイドルチャレンジ" + } ], + "hash" : "56d28fdbe680efdacbfee5769b324d16", + "id" : "3433901", + "profile" : { + "bust" : "74", + "height" : "146", + "hip" : "76", + "waist" : "53", + "weight" : "37" + } + }, { + "alias_name" : "笑顔でクライマー", + "alias_name_display" : "笑顔でクライマー", + "event" : [ { + "event_id" : 1211, + "event_name" : "目指せ山頂! アイドルチャレンジ" + } ], + "hash" : "83b53b4dceb9b7022e17587ced38dc4e", + "id" : "3533902", + "profile" : { + "bust" : "74", + "height" : "146", + "hip" : "76", + "waist" : "53", + "weight" : "37" + } + }, { + "alias_name" : "義理と愛情", + "alias_name_display" : "義理と愛情", + "hash" : "d663200d41b0a9411ce984ffa964cfc5", + "id" : "3437901", + "profile" : { + "bust" : "74", + "height" : "146", + "hip" : "76", + "waist" : "53", + "weight" : "37" + } + }, { + "alias_name" : "義理と愛情", + "alias_name_display" : "義理と愛情", + "hash" : "1c6ff2bbe0458219764965de70302d56", + "id" : "3537902", + "profile" : { + "bust" : "74", + "height" : "146", + "hip" : "76", + "waist" : "53", + "weight" : "37" + } + } ], + "idol_id" : 193, + "idol_name" : "村上巴", + "idol_name_display" : "村上巴", + "units" : [ { + "id" : "52", + "name" : "フォーリンシーサイド" + }, { + "id" : "66", + "name" : "レッドベリィズ" + }, { + "id" : "152", + "name" : "B.B.ロワイヤル" + }, { + "id" : "177", + "name" : "桜舞隊" + } ] +}, { + "aliases" : [ { + "alias_name" : "ニューウェーブ", + "alias_name_display" : "ニューウェーブ", + "event" : [ { + "event_id" : 401, + "event_name" : "新人アイドルプロデュース" + } ], + "hash" : "84775bd2804d19b99d77eddeaa86a02c", + "id" : "3205901", + "profile" : { + "bust" : "85", + "height" : "156", + "hip" : "83", + "waist" : "54", + "weight" : "42" + } + }, { + "alias_name" : "ニューウェーブ", + "alias_name_display" : "ニューウェーブ", + "event" : [ { + "event_id" : 401, + "event_name" : "新人アイドルプロデュース" + } ], + "hash" : "2e4405c20b2ef8458796c8efe0e0a592", + "id" : "3305902", + "profile" : { + "bust" : "85", + "height" : "156", + "hip" : "83", + "waist" : "54", + "weight" : "42" + } + }, { + "alias_name" : "アメリカンスタイル", + "alias_name_display" : "アメリカンスタイル", + "event" : [ { + "event_id" : 501, + "event_name" : "アイドルLIVEツアーinUSA" + } ], + "hash" : "b22058d3eb900c919dc0c48711d34618", + "id" : "3207301", + "profile" : { + "bust" : "85", + "height" : "156", + "hip" : "83", + "waist" : "54", + "weight" : "42" + } + }, { + "alias_name" : "アメリカンスタイル", + "alias_name_display" : "アメリカンスタイル", + "event" : [ { + "event_id" : 501, + "event_name" : "アイドルLIVEツアーinUSA" + } ], + "hash" : "07288a321d758444cb8b4d80bcb77948", + "id" : "3307302", + "profile" : { + "bust" : "85", + "height" : "156", + "hip" : "83", + "waist" : "54", + "weight" : "42" + } + }, { + "alias_name" : "ジューンブライド", + "alias_name_display" : "ジューンブライド", + "hash" : "a37cd388993bc752c3145e815649c566", + "id" : "3210801", + "profile" : { + "bust" : "85", + "height" : "156", + "hip" : "83", + "waist" : "54", + "weight" : "42" + } + }, { + "alias_name" : "ジューンブライド", + "alias_name_display" : "ジューンブライド", + "hash" : "2c344452271d9b3ace6f5f815025a7a7", + "id" : "3310802", + "profile" : { + "bust" : "85", + "height" : "156", + "hip" : "83", + "waist" : "54", + "weight" : "42" + } + }, { + "alias_name" : "サルファーブライト", + "alias_name_display" : "サルファーブライト", + "hash" : "90653f94871586fd61fb3c1f3a6363ef", + "id" : "3215801", + "profile" : { + "bust" : "85", + "height" : "156", + "hip" : "83", + "waist" : "54", + "weight" : "42" + } + }, { + "alias_name" : "サルファーブライト", + "alias_name_display" : "サルファーブライト", + "hash" : "80452b67b1eed6240a01c5b71b98f539", + "id" : "3315802", + "profile" : { + "bust" : "85", + "height" : "156", + "hip" : "83", + "waist" : "54", + "weight" : "42" + } + }, { + "alias_name" : "振袖まつり", + "alias_name_display" : "振袖まつり", + "hash" : "2d1449e0672588d77f37bd725f5cd491", + "id" : "3221001", + "profile" : { + "bust" : "85", + "height" : "156", + "hip" : "83", + "waist" : "54", + "weight" : "42" + } + }, { + "alias_name" : "振袖まつり", + "alias_name_display" : "振袖まつり", + "hash" : "94d5a2817b51f852833622f3c84f06b0", + "id" : "3321002", + "profile" : { + "bust" : "85", + "height" : "156", + "hip" : "83", + "waist" : "54", + "weight" : "42" + } + }, { + "alias_name" : "LIVEバラエティ", + "alias_name_display" : "LIVEバラエティ", + "event" : [ { + "event_id" : 1802, + "event_name" : "アイドルバラエティ 手作りライブプロジェクト!" + } ], + "hash" : "474d81de241426873715c3d2e2a7d006", + "id" : "3326402", + "profile" : { + "bust" : "85", + "height" : "156", + "hip" : "83", + "waist" : "54", + "weight" : "42" + } + }, { + "alias_name" : "ファンサーキット", + "alias_name_display" : "ファンサーキット", + "hash" : "ccf090e74a63bbd02c4adbcc61062c0c", + "id" : "3228701", + "profile" : { + "bust" : "85", + "height" : "156", + "hip" : "83", + "waist" : "54", + "weight" : "42" + } + }, { + "alias_name" : "ファンサーキット", + "alias_name_display" : "ファンサーキット", + "hash" : "6bd4684e21d43d1bd95105c7501ea253", + "id" : "3328702", + "profile" : { + "bust" : "85", + "height" : "156", + "hip" : "83", + "waist" : "54", + "weight" : "42" + } + }, { + "alias_name" : "サルファージョリー", + "alias_name_display" : "サルファージョリー", + "event" : [ { + "event_id" : 728, + "event_name" : "ドリームLIVEフェスティバル スプリングSP" + } ], + "hash" : "8d0283221223adb708f446581e51ca4d", + "id" : "3233601", + "profile" : { + "bust" : "85", + "height" : "156", + "hip" : "83", + "waist" : "54", + "weight" : "42" + } + }, { + "alias_name" : "サルファージョリー", + "alias_name_display" : "サルファージョリー", + "event" : [ { + "event_id" : 728, + "event_name" : "ドリームLIVEフェスティバル スプリングSP" + } ], + "hash" : "ba8adbf8b689ab078caddbc7cba45fd6", + "id" : "3333602", + "profile" : { + "bust" : "85", + "height" : "156", + "hip" : "83", + "waist" : "54", + "weight" : "42" + } + }, { + "alias_name" : "サルファーウェーブ", + "alias_name_display" : "サルファーウェーブ", + "event" : [ { + "event_id" : 801, + "event_name" : "アイドルLIVEロワイヤル" + } ], + "hash" : "cc587b5c006d330d28dd586f5aa01ab5", + "id" : "3409101", + "profile" : { + "bust" : "85", + "height" : "156", + "hip" : "83", + "waist" : "54", + "weight" : "42" + } + }, { + "alias_name" : "サルファーウェーブ", + "alias_name_display" : "サルファーウェーブ", + "event" : [ { + "event_id" : 801, + "event_name" : "アイドルLIVEロワイヤル" + } ], + "hash" : "40b0bf0485405d6fe0253371c92c0932", + "id" : "3509102", + "profile" : { + "bust" : "85", + "height" : "156", + "hip" : "83", + "waist" : "54", + "weight" : "42" + } + }, { + "alias_name" : "黄金の好運", + "alias_name_display" : "黄金の好運", + "hash" : "67e21e4b8d91d5a75e1810c40a58f2d2", + "id" : "3415301", + "profile" : { + "bust" : "85", + "height" : "156", + "hip" : "83", + "waist" : "54", + "weight" : "42" + } + }, { + "alias_name" : "黄金の好運", + "alias_name_display" : "黄金の好運", + "hash" : "dea4197fb41bc0d916debf2f4263c8a5", + "id" : "3515302", + "profile" : { + "bust" : "85", + "height" : "156", + "hip" : "83", + "waist" : "54", + "weight" : "42" + } + }, { + "alias_name" : "シャイニーチアー", + "alias_name_display" : "シャイニーチアー", + "event" : [ { + "event_id" : 1502, + "event_name" : "チーム対抗雨の日トークバトルショー" + } ], + "hash" : "d0511dd81329bcff9ae0bd87dd0f7daf", + "id" : "3424501", + "profile" : { + "bust" : "85", + "height" : "156", + "hip" : "83", + "waist" : "54", + "weight" : "42" + } + }, { + "alias_name" : "シャイニーチアー", + "alias_name_display" : "シャイニーチアー", + "event" : [ { + "event_id" : 1502, + "event_name" : "チーム対抗雨の日トークバトルショー" + } ], + "hash" : "17a8da8f1b09741e0cad2f3f5ccd323e", + "id" : "3524502", + "profile" : { + "bust" : "85", + "height" : "156", + "hip" : "83", + "waist" : "54", + "weight" : "42" + } + }, { + "alias_name" : "魔科学ドクトル", + "alias_name_display" : "魔科学ドクトル", + "event" : [ { + "event_id" : 1904, + "event_name" : "魔界公演 妖艶魔女と消えたハロウィン" + } ], + "hash" : "9b8c49c88c689859176c103c9624c131", + "id" : "3435301", + "profile" : { + "bust" : "85", + "height" : "156", + "hip" : "83", + "waist" : "54", + "weight" : "42" + } + }, { + "alias_name" : "魔科学ドクトル", + "alias_name_display" : "魔科学ドクトル", + "event" : [ { + "event_id" : 1904, + "event_name" : "魔界公演 妖艶魔女と消えたハロウィン" + } ], + "hash" : "bd055ba043dc7166491f48b3587b1984", + "id" : "3535302", + "profile" : { + "bust" : "85", + "height" : "156", + "hip" : "83", + "waist" : "54", + "weight" : "42" + } + } ], + "idol_id" : 194, + "idol_name" : "土屋亜子", + "idol_name_display" : "土屋亜子", + "units" : [ { + "id" : "99", + "name" : "ニューウェーブ" + }, { + "id" : "151", + "name" : "ブエナ・スエルテ" + } ] +}, { + "aliases" : [ { + "hash" : "43868973b8854862d7c02d14e3c03740", + "id" : "3206301", + "profile" : { + "bust" : "73", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "hash" : "cf3952309d0a044864fe64891a138a49", + "id" : "3306302", + "profile" : { + "bust" : "73", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "ひな祭り", + "alias_name_display" : "ひな祭り", + "event" : [ { + "event_id" : 209, + "event_name" : "アイドルサバイバルひな祭り2013" + } ], + "hash" : "029c39ffd4a7437d563d418abb957075", + "id" : "3209001", + "profile" : { + "bust" : "73", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "ひな祭り", + "alias_name_display" : "ひな祭り", + "event" : [ { + "event_id" : 209, + "event_name" : "アイドルサバイバルひな祭り2013" + } ], + "hash" : "d453b8b6edc12b7d723e1a1a2969d007", + "id" : "3309002", + "profile" : { + "bust" : "73", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "はいから料理娘", + "alias_name_display" : "はいから料理娘", + "hash" : "a428515798abc1514df83ae3066cb0c6", + "id" : "3211001", + "profile" : { + "bust" : "73", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "はいから料理娘", + "alias_name_display" : "はいから料理娘", + "hash" : "f8f9d86199c34e4684ba54d055d9bcfd", + "id" : "3311002", + "profile" : { + "bust" : "73", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "グリッターステージ", + "alias_name_display" : "グリッターステージ", + "hash" : "6f89d22c276f688ac37de02735b6e0a9", + "id" : "3216401", + "profile" : { + "bust" : "73", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "グリッターステージ", + "alias_name_display" : "グリッターステージ", + "hash" : "d52d6627d5a0add014631032375ae337", + "id" : "3316402", + "profile" : { + "bust" : "73", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "新春I.C", + "alias_name_display" : "新春I.C", + "event" : [ { + "event_id" : 1204, + "event_name" : "新年かくし芸SP アイドルチャレンジ" + } ], + "hash" : "8079dc0e0dea63c3571ae36597c62b20", + "id" : "3320902", + "profile" : { + "bust" : "73", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "パワフルメイト", + "alias_name_display" : "パワフルメイト", + "event" : [ { + "event_id" : 520, + "event_name" : "青春公演 シング・ア・ソング" + } ], + "hash" : "a788612caf23b550865996cab821698f", + "id" : "3323802", + "profile" : { + "bust" : "73", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "まごころ若女将", + "alias_name_display" : "まごころ若女将", + "event" : [ { + "event_id" : 703, + "event_name" : "第3回ドリームLIVEフェスティバル" + } ], + "hash" : "740d796bdc3fe5bc331f25df386164e4", + "id" : "3409201", + "profile" : { + "bust" : "73", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "まごころ若女将", + "alias_name_display" : "まごころ若女将", + "event" : [ { + "event_id" : 703, + "event_name" : "第3回ドリームLIVEフェスティバル" + } ], + "hash" : "62fbdf5d61178972214ab660b8b71541", + "id" : "3509202", + "profile" : { + "bust" : "73", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "手鞠の芸達者", + "alias_name_display" : "手鞠の芸達者", + "event" : [ { + "event_id" : 1204, + "event_name" : "新年かくし芸SP アイドルチャレンジ" + } ], + "hash" : "f359083d4dd5ab80912ac670b4fcfa2a", + "id" : "3420201", + "profile" : { + "bust" : "73", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "手鞠の芸達者", + "alias_name_display" : "手鞠の芸達者", + "event" : [ { + "event_id" : 1204, + "event_name" : "新年かくし芸SP アイドルチャレンジ" + } ], + "hash" : "914aa8f542329e1039dd149af2501faa", + "id" : "3520202", + "profile" : { + "bust" : "73", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "手鞠の芸達者・S", + "alias_name_display" : "手鞠の芸達者・S", + "event" : [ { + "event_id" : 1204, + "event_name" : "新年かくし芸SP アイドルチャレンジ" + } ], + "hash" : "67e86f423d1bd82990e21e6e99d88425", + "id" : "3420301", + "profile" : { + "bust" : "73", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "手鞠の芸達者・S", + "alias_name_display" : "手鞠の芸達者・S", + "event" : [ { + "event_id" : 1204, + "event_name" : "新年かくし芸SP アイドルチャレンジ" + } ], + "hash" : "702c4529eb6c6a90f7800123193d10eb", + "id" : "3520302", + "profile" : { + "bust" : "73", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "チャーミー・ロワイヤル", + "alias_name_display" : "チャーミー・ロワイヤル", + "event" : [ { + "event_id" : 815, + "event_name" : "アイドルLIVEロワイヤル クリスマスSP" + } ], + "hash" : "b91dddc951d13df4f5901c66b653a248", + "id" : "3428401", + "profile" : { + "bust" : "73", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "チャーミー・ロワイヤル", + "alias_name_display" : "チャーミー・ロワイヤル", + "event" : [ { + "event_id" : 815, + "event_name" : "アイドルLIVEロワイヤル クリスマスSP" + } ], + "hash" : "f7457ada3cc849fac7b99099be1206b6", + "id" : "3528402", + "profile" : { + "bust" : "73", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "サマージャンピン", + "alias_name_display" : "サマージャンピン", + "event" : [ { + "event_id" : 723, + "event_name" : "水着DEドリームLIVEフェスティバル" + } ], + "hash" : "4a8c3fded5624bb3fd188663949c599f", + "id" : "3434101", + "profile" : { + "bust" : "73", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "サマージャンピン", + "alias_name_display" : "サマージャンピン", + "event" : [ { + "event_id" : 723, + "event_name" : "水着DEドリームLIVEフェスティバル" + } ], + "hash" : "a288f6905fe80b48ac93124a6ed086e2", + "id" : "3534102", + "profile" : { + "bust" : "73", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "チャキチャキ☆晴れ娘", + "alias_name_display" : "チャキチャキ☆晴れ娘", + "hash" : "eea58dceca065bf2321c38cb03194094", + "id" : "3438901", + "profile" : { + "bust" : "73", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + }, { + "alias_name" : "チャキチャキ☆晴れ娘", + "alias_name_display" : "チャキチャキ☆晴れ娘", + "hash" : "b55c0b1bb4d08a833d7ae0fbbd248731", + "id" : "3538902", + "profile" : { + "bust" : "73", + "height" : "145", + "hip" : "75", + "waist" : "53", + "weight" : "39" + } + } ], + "idol_id" : 195, + "idol_name" : "首藤葵", + "idol_name_display" : "首藤葵", + "units" : [ { + "id" : "102", + "name" : "パワフルヒーラーズ" + }, { + "id" : "156", + "name" : "センゴク☆華☆ランブ" + } ] +}, { + "aliases" : [ { + "hash" : "697e19df704f2ef4b9aca8fb57aa39d2", + "id" : "3211501", + "profile" : { + "bust" : "76", + "height" : "153", + "hip" : "78", + "waist" : "58", + "weight" : "43" + } + }, { + "hash" : "a795675b428cf7cc384eedde31c6258a", + "id" : "3311502", + "profile" : { + "bust" : "76", + "height" : "153", + "hip" : "78", + "waist" : "58", + "weight" : "43" + } + }, { + "alias_name" : "湯けむり月夜", + "alias_name_display" : "湯けむり月夜", + "hash" : "0b195865a262327e4732c68aeff5456c", + "id" : "3213601", + "profile" : { + "bust" : "76", + "height" : "153", + "hip" : "78", + "waist" : "58", + "weight" : "43" + } + }, { + "alias_name" : "湯けむり月夜", + "alias_name_display" : "湯けむり月夜", + "hash" : "748d86d7610287f202ac26a1d4195269", + "id" : "3313602", + "profile" : { + "bust" : "76", + "height" : "153", + "hip" : "78", + "waist" : "58", + "weight" : "43" + } + }, { + "alias_name" : "ショコラフレーバー", + "alias_name_display" : "ショコラフレーバー", + "event" : [ { + "event_id" : 411, + "event_name" : "アイドルプロデュース チョコレートフォーユー!" + } ], + "hash" : "096e063d60b4b7702c871871d66b4519", + "id" : "3215301", + "profile" : { + "bust" : "76", + "height" : "153", + "hip" : "78", + "waist" : "58", + "weight" : "43" + } + }, { + "alias_name" : "ショコラフレーバー", + "alias_name_display" : "ショコラフレーバー", + "event" : [ { + "event_id" : 411, + "event_name" : "アイドルプロデュース チョコレートフォーユー!" + } ], + "hash" : "60aac231822dea54e7042584603fc4d8", + "id" : "3315302", + "profile" : { + "bust" : "76", + "height" : "153", + "hip" : "78", + "waist" : "58", + "weight" : "43" + } + }, { + "alias_name" : "ショコラフレーバー・S", + "alias_name_display" : "ショコラフレーバー・S", + "event" : [ { + "event_id" : 411, + "event_name" : "アイドルプロデュース チョコレートフォーユー!" + } ], + "hash" : "e96c0d9f1bc2c591042ff10001a3e28e", + "id" : "3215401", + "profile" : { + "bust" : "76", + "height" : "153", + "hip" : "78", + "waist" : "58", + "weight" : "43" + } + }, { + "alias_name" : "ショコラフレーバー・S", + "alias_name_display" : "ショコラフレーバー・S", + "event" : [ { + "event_id" : 411, + "event_name" : "アイドルプロデュース チョコレートフォーユー!" + } ], + "hash" : "7a3d5393fa60cfe4bf872cbcde7bd740", + "id" : "3315402", + "profile" : { + "bust" : "76", + "height" : "153", + "hip" : "78", + "waist" : "58", + "weight" : "43" + } + }, { + "alias_name" : "ロックI.C", + "alias_name_display" : "ロックI.C", + "event" : [ { + "event_id" : 1202, + "event_name" : "目指せロックスター アイドルチャレンジ" + } ], + "hash" : "1d8fc0d491ca864c126ce13cff71e55b", + "id" : "3318402", + "profile" : { + "bust" : "76", + "height" : "153", + "hip" : "78", + "waist" : "58", + "weight" : "43" + } + }, { + "alias_name" : "アイドル取締係", + "alias_name_display" : "アイドル取締係", + "hash" : "8917cbf796fc48c5a8e55d383339eba5", + "id" : "3223101", + "profile" : { + "bust" : "76", + "height" : "153", + "hip" : "78", + "waist" : "58", + "weight" : "43" + } + }, { + "alias_name" : "アイドル取締係", + "alias_name_display" : "アイドル取締係", + "hash" : "39802652866ea5548a61d257a6d787c3", + "id" : "3323102", + "profile" : { + "bust" : "76", + "height" : "153", + "hip" : "78", + "waist" : "58", + "weight" : "43" + } + }, { + "alias_name" : "タラン・アナリーズ", + "alias_name_display" : "タラン・アナリーズ", + "hash" : "94c08885da41d1fc80e33b8e7e23ea6b", + "id" : "3230701", + "profile" : { + "bust" : "76", + "height" : "153", + "hip" : "78", + "waist" : "58", + "weight" : "43" + } + }, { + "alias_name" : "タラン・アナリーズ", + "alias_name_display" : "タラン・アナリーズ", + "hash" : "f9adb6b00e178dc8dbddd07a8c9d3629", + "id" : "3330702", + "profile" : { + "bust" : "76", + "height" : "153", + "hip" : "78", + "waist" : "58", + "weight" : "43" + } + }, { + "alias_name" : "学園の超☆新星", + "alias_name_display" : "学園の超☆新星", + "hash" : "8dd85e79dbfde7f5888c4aabd5805d4b", + "id" : "3413501", + "profile" : { + "bust" : "76", + "height" : "153", + "hip" : "78", + "waist" : "58", + "weight" : "43" + } + }, { + "alias_name" : "学園の超☆新星", + "alias_name_display" : "学園の超☆新星", + "hash" : "789218d49debfd49fe6ea42ed26e7839", + "id" : "3513502", + "profile" : { + "bust" : "76", + "height" : "153", + "hip" : "78", + "waist" : "58", + "weight" : "43" + } + }, { + "alias_name" : "ガールズロッカー", + "alias_name_display" : "ガールズロッカー", + "event" : [ { + "event_id" : 1202, + "event_name" : "目指せロックスター アイドルチャレンジ" + } ], + "hash" : "65358f57a96b392c90e1b573723939e1", + "id" : "3416101", + "profile" : { + "bust" : "76", + "height" : "153", + "hip" : "78", + "waist" : "58", + "weight" : "43" + } + }, { + "alias_name" : "ガールズロッカー", + "alias_name_display" : "ガールズロッカー", + "event" : [ { + "event_id" : 1202, + "event_name" : "目指せロックスター アイドルチャレンジ" + } ], + "hash" : "db755eae0641bef500fb12fda1026268", + "id" : "3516102", + "profile" : { + "bust" : "76", + "height" : "153", + "hip" : "78", + "waist" : "58", + "weight" : "43" + } + }, { + "alias_name" : "ガールズロッカー・S", + "alias_name_display" : "ガールズロッカー・S", + "event" : [ { + "event_id" : 1202, + "event_name" : "目指せロックスター アイドルチャレンジ" + } ], + "hash" : "b5912188c743433a82f5866f9e473ff9", + "id" : "3416201", + "profile" : { + "bust" : "76", + "height" : "153", + "hip" : "78", + "waist" : "58", + "weight" : "43" + } + }, { + "alias_name" : "ガールズロッカー・S", + "alias_name_display" : "ガールズロッカー・S", + "event" : [ { + "event_id" : 1202, + "event_name" : "目指せロックスター アイドルチャレンジ" + } ], + "hash" : "f913a86dcbf8a9c3d60cc4c3beac9944", + "id" : "3516202", + "profile" : { + "bust" : "76", + "height" : "153", + "hip" : "78", + "waist" : "58", + "weight" : "43" + } + }, { + "alias_name" : "ベリーメリーチアー", + "alias_name_display" : "ベリーメリーチアー", + "event" : [ { + "event_id" : 1107, + "event_name" : "プロダクション対抗トークバトルショー クリスマスSP" + } ], + "hash" : "07e0aefc7c9c5fbb79cca7355977460e", + "id" : "3420101", + "profile" : { + "bust" : "76", + "height" : "153", + "hip" : "78", + "waist" : "58", + "weight" : "43" + } + }, { + "alias_name" : "ベリーメリーチアー", + "alias_name_display" : "ベリーメリーチアー", + "event" : [ { + "event_id" : 1107, + "event_name" : "プロダクション対抗トークバトルショー クリスマスSP" + } ], + "hash" : "8e832b807804f4f50dc1bba42ef61426", + "id" : "3520102", + "profile" : { + "bust" : "76", + "height" : "153", + "hip" : "78", + "waist" : "58", + "weight" : "43" + } + }, { + "alias_name" : "超☆スーパーモデル", + "alias_name_display" : "超☆スーパーモデル", + "event" : [ { + "event_id" : 1406, + "event_name" : "第6回ぷちデレラコレクション" + } ], + "hash" : "2b63b7e0ec092dfd36a67f809c36a5a9", + "id" : "3431101", + "profile" : { + "bust" : "76", + "height" : "153", + "hip" : "78", + "waist" : "58", + "weight" : "43" + } + }, { + "alias_name" : "超☆スーパーモデル", + "alias_name_display" : "超☆スーパーモデル", + "event" : [ { + "event_id" : 1406, + "event_name" : "第6回ぷちデレラコレクション" + } ], + "hash" : "795be75c072fbeca019121e5a065f41b", + "id" : "3531102", + "profile" : { + "bust" : "76", + "height" : "153", + "hip" : "78", + "waist" : "58", + "weight" : "43" + } + }, { + "alias_name" : "超☆風紀・ロワイヤル", + "alias_name_display" : "超☆風紀・ロワイヤル", + "event" : [ { + "event_id" : 822, + "event_name" : "第22回アイドルLIVEロワイヤル" + } ], + "hash" : "ed713f3796903b39b2859de02333692e", + "id" : "3438601", + "profile" : { + "bust" : "76", + "height" : "153", + "hip" : "78", + "waist" : "58", + "weight" : "43" + } + }, { + "alias_name" : "超☆風紀・ロワイヤル", + "alias_name_display" : "超☆風紀・ロワイヤル", + "event" : [ { + "event_id" : 822, + "event_name" : "第22回アイドルLIVEロワイヤル" + } ], + "hash" : "d6be32a4312ef65e6697fbd4da5b3926", + "id" : "3538602", + "profile" : { + "bust" : "76", + "height" : "153", + "hip" : "78", + "waist" : "58", + "weight" : "43" + } + } ], + "idol_id" : 196, + "idol_name" : "冴島清美", + "idol_name_display" : "冴島清美", + "units" : [ { + "id" : "169", + "name" : "FOUR PIECE" + }, { + "id" : "211", + "name" : "ワンダー・フル" + } ] +}, { + "aliases" : [ { + "hash" : "d9a0ec5b2f49514b8f6fdbc2b3771f44", + "id" : "3215601", + "profile" : { + "bust" : "ぼんっ", + "height" : "166", + "hip" : "ぼんっ♪", + "waist" : "きゅっ", + "weight" : "ダイエットちゅう" + } + }, { + "hash" : "340ab00d64a6d94dfc46bdc4ceb2cc5f", + "id" : "3315602", + "profile" : { + "bust" : "ぼんっ", + "height" : "166", + "hip" : "ぼんっ♪", + "waist" : "きゅっ", + "weight" : "ダイエットちゅう" + } + }, { + "alias_name" : "T.B.スウィーティー", + "alias_name_display" : "T.B.スウィーティー", + "event" : [ { + "event_id" : 1103, + "event_name" : "第3回プロダクション対抗トークバトルショー" + } ], + "hash" : "c9e9b869be6e4d8b500f800793636dce", + "id" : "3217601", + "profile" : { + "bust" : "ぼんっ", + "height" : "166", + "hip" : "ぼんっ♪", + "waist" : "きゅっ", + "weight" : "ダイエットちゅう" + } + }, { + "alias_name" : "T.B.スウィーティー", + "alias_name_display" : "T.B.スウィーティー", + "event" : [ { + "event_id" : 1103, + "event_name" : "第3回プロダクション対抗トークバトルショー" + } ], + "hash" : "97f9fb8f9bf728f75d26d1c22f49477c", + "id" : "3317602", + "profile" : { + "bust" : "ぼんっ", + "height" : "166", + "hip" : "ぼんっ♪", + "waist" : "きゅっ", + "weight" : "ダイエットちゅう" + } + }, { + "alias_name" : "ネクストスターI.C", + "alias_name_display" : "ネクストスターI.C", + "event" : [ { + "event_id" : 1203, + "event_name" : "目指せきらきらモデル アイドルチャレンジ" + } ], + "hash" : "2d067cd983148c41ec37a279bfa8486d", + "id" : "3319602", + "profile" : { + "bust" : "ぼんっ", + "height" : "166", + "hip" : "ぼんっ♪", + "waist" : "きゅっ", + "weight" : "ダイエットちゅう" + } + }, { + "alias_name" : "ワーキング・スウィーティー", + "alias_name_display" : "ワーキング・スウィーティー", + "hash" : "6385fb5d76d87acc8a5ba8595a7acf6d", + "id" : "3228201", + "profile" : { + "bust" : "ぼんっ", + "height" : "166", + "hip" : "ぼんっ♪", + "waist" : "きゅっ", + "weight" : "ダイエットちゅう" + } + }, { + "alias_name" : "ワーキング・スウィーティー", + "alias_name_display" : "ワーキング・スウィーティー", + "hash" : "e1488e5ae3ac05066a970d9944e8a3a9", + "id" : "3328202", + "profile" : { + "bust" : "ぼんっ", + "height" : "166", + "hip" : "ぼんっ♪", + "waist" : "きゅっ", + "weight" : "ダイエットちゅう" + } + }, { + "alias_name" : "チクッとスウィーティー", + "alias_name_display" : "チクッとスウィーティー", + "hash" : "7fce9acadfec04fbcaeffd38ee89a37c", + "id" : "3232401", + "profile" : { + "bust" : "ぼんっ", + "height" : "166", + "hip" : "ぼんっ♪", + "waist" : "きゅっ", + "weight" : "ダイエットちゅう" + } + }, { + "alias_name" : "チクッとスウィーティー", + "alias_name_display" : "チクッとスウィーティー", + "hash" : "b4f0b6752da23051ae62d105fd8e635a", + "id" : "3332402", + "profile" : { + "bust" : "ぼんっ", + "height" : "166", + "hip" : "ぼんっ♪", + "waist" : "きゅっ", + "weight" : "ダイエットちゅう" + } + }, { + "alias_name" : "ハート・モデル", + "alias_name_display" : "ハート・モデル", + "event" : [ { + "event_id" : 1203, + "event_name" : "目指せきらきらモデル アイドルチャレンジ" + } ], + "hash" : "694a57d1825e26a2132b02becd9912ed", + "id" : "3417701", + "profile" : { + "bust" : "ぼんっ", + "height" : "166", + "hip" : "ぼんっ♪", + "waist" : "きゅっ", + "weight" : "ダイエットちゅう" + } + }, { + "alias_name" : "ハート・モデル", + "alias_name_display" : "ハート・モデル", + "event" : [ { + "event_id" : 1203, + "event_name" : "目指せきらきらモデル アイドルチャレンジ" + } ], + "hash" : "44f999f95a88e0041b321292f5db456c", + "id" : "3517702", + "profile" : { + "bust" : "ぼんっ", + "height" : "166", + "hip" : "ぼんっ♪", + "waist" : "きゅっ", + "weight" : "ダイエットちゅう" + } + }, { + "alias_name" : "ハート・モデル・S", + "alias_name_display" : "ハート・モデル・S", + "event" : [ { + "event_id" : 1203, + "event_name" : "目指せきらきらモデル アイドルチャレンジ" + } ], + "hash" : "e35da96f170e1b96f8e95725f0134d1a", + "id" : "3417801", + "profile" : { + "bust" : "ぼんっ", + "height" : "166", + "hip" : "ぼんっ♪", + "waist" : "きゅっ", + "weight" : "ダイエットちゅう" + } + }, { + "alias_name" : "ハート・モデル・S", + "alias_name_display" : "ハート・モデル・S", + "event" : [ { + "event_id" : 1203, + "event_name" : "目指せきらきらモデル アイドルチャレンジ" + } ], + "hash" : "fdf75acee757844ae1c7ec62cc122b95", + "id" : "3517802", + "profile" : { + "bust" : "ぼんっ", + "height" : "166", + "hip" : "ぼんっ♪", + "waist" : "きゅっ", + "weight" : "ダイエットちゅう" + } + }, { + "alias_name" : "えんじぇるはぁと", + "alias_name_display" : "えんじぇるはぁと", + "hash" : "e4312ec25c1a71e1e6a6f813ee481471", + "id" : "3420801", + "profile" : { + "bust" : "ぼんっ", + "height" : "166", + "hip" : "ぼんっ♪", + "waist" : "きゅっ", + "weight" : "ダイエットちゅう" + } + }, { + "alias_name" : "えんじぇるはぁと", + "alias_name_display" : "えんじぇるはぁと", + "hash" : "789f1a503d40faaf26a0035c6cc3c407", + "id" : "3520802", + "profile" : { + "bust" : "ぼんっ", + "height" : "166", + "hip" : "ぼんっ♪", + "waist" : "きゅっ", + "weight" : "ダイエットちゅう" + } + }, { + "alias_name" : "はぁとの嫁入り", + "alias_name_display" : "はぁとの嫁入り", + "hash" : "70d4fbc5a0fdde7d00431fcebd27ef00", + "id" : "3424001", + "profile" : { + "bust" : "ぼんっ", + "height" : "166", + "hip" : "ぼんっ♪", + "waist" : "きゅっ", + "weight" : "ダイエットちゅう" + } + }, { + "alias_name" : "はぁとの嫁入り", + "alias_name_display" : "はぁとの嫁入り", + "hash" : "f5507a6ede55324eade6917c61cf9d95", + "id" : "3524002", + "profile" : { + "bust" : "ぼんっ", + "height" : "166", + "hip" : "ぼんっ♪", + "waist" : "きゅっ", + "weight" : "ダイエットちゅう" + } + }, { + "alias_name" : "スウィーティー・ロワイヤル", + "alias_name_display" : "スウィーティー・ロワイヤル", + "event" : [ { + "event_id" : 814, + "event_name" : "第14回アイドルLIVEロワイヤル" + } ], + "hash" : "494edfe064b8fb4d35d104020969742d", + "id" : "3427601", + "profile" : { + "bust" : "ぼんっ", + "height" : "166", + "hip" : "ぼんっ♪", + "waist" : "きゅっ", + "weight" : "ダイエットちゅう" + } + }, { + "alias_name" : "スウィーティー・ロワイヤル", + "alias_name_display" : "スウィーティー・ロワイヤル", + "event" : [ { + "event_id" : 814, + "event_name" : "第14回アイドルLIVEロワイヤル" + } ], + "hash" : "6c4b16f4c3351cd74d4f757ba7e67a5e", + "id" : "3527602", + "profile" : { + "bust" : "ぼんっ", + "height" : "166", + "hip" : "ぼんっ♪", + "waist" : "きゅっ", + "weight" : "ダイエットちゅう" + } + }, { + "alias_name" : "常夏パラダイス", + "alias_name_display" : "常夏パラダイス", + "hash" : "bdcb6defb92cad18920c35ced7e4d272", + "id" : "3434201", + "profile" : { + "bust" : "ぼんっ", + "height" : "166", + "hip" : "ぼんっ♪", + "waist" : "きゅっ", + "weight" : "ダイエットちゅう" + } + }, { + "alias_name" : "常夏パラダイス", + "alias_name_display" : "常夏パラダイス", + "hash" : "00a73075d65a7d0c56ceef9dd11c7a06", + "id" : "3534202", + "profile" : { + "bust" : "ぼんっ", + "height" : "166", + "hip" : "ぼんっ♪", + "waist" : "きゅっ", + "weight" : "ダイエットちゅう" + } + } ], + "idol_id" : 197, + "idol_name" : "佐藤心", + "idol_name_display" : "佐藤心", + "units" : [ { + "id" : "7", + "name" : "エターナルレディエイト" + }, { + "id" : "13", + "name" : "カワスウィーティーなボクはぁと(仮)" + }, { + "id" : "23", + "name" : "しゅがしゅが☆み~ん" + }, { + "id" : "184", + "name" : "宵乙女" + }, { + "id" : "207", + "name" : "ムーランルージュ" + } ] +}, { + "aliases" : [ { + "alias_name" : "等身大の素顔", + "alias_name_display" : "等身大の素顔", + "hash" : "8e9bb5d91c1612e5a4962aed94f45a78", + "id" : "3213001", + "profile" : { + "bust" : "79", + "height" : "140", + "hip" : "80", + "waist" : "58", + "weight" : "41" + } + }, { + "alias_name" : "等身大の素顔", + "alias_name_display" : "等身大の素顔", + "hash" : "3c3c58aa3056c75b8139189c71d2afa5", + "id" : "3313002", + "profile" : { + "bust" : "79", + "height" : "140", + "hip" : "80", + "waist" : "58", + "weight" : "41" + } + }, { + "alias_name" : "レジェンドシーフ", + "alias_name_display" : "レジェンドシーフ", + "event" : [ { + "event_id" : 521, + "event_name" : "怪盗公演 美しき追跡者" + } ], + "hash" : "c59d82869331715bcd9d9f0a8b9a1c06", + "id" : "3324702", + "profile" : { + "bust" : "79", + "height" : "140", + "hip" : "80", + "waist" : "58", + "weight" : "41" + } + }, { + "alias_name" : "マーチングバンド", + "alias_name_display" : "マーチングバンド", + "hash" : "ab06c2777617f9bcff312f943cc6f866", + "id" : "3226501", + "profile" : { + "bust" : "79", + "height" : "140", + "hip" : "80", + "waist" : "58", + "weight" : "41" + } + }, { + "alias_name" : "マーチングバンド", + "alias_name_display" : "マーチングバンド", + "hash" : "469b6a4ccbd38b20234c7709cfa14637", + "id" : "3326502", + "profile" : { + "bust" : "79", + "height" : "140", + "hip" : "80", + "waist" : "58", + "weight" : "41" + } + }, { + "alias_name" : "まごころメイド", + "alias_name_display" : "まごころメイド", + "hash" : "5c67bd0d15b98bd30c121d41d898805d", + "id" : "3234201", + "profile" : { + "bust" : "79", + "height" : "140", + "hip" : "80", + "waist" : "58", + "weight" : "41" + } + }, { + "alias_name" : "まごころメイド", + "alias_name_display" : "まごころメイド", + "hash" : "a2a18aad6f03d8eff6eb539a3f7d1b63", + "id" : "3334202", + "profile" : { + "bust" : "79", + "height" : "140", + "hip" : "80", + "waist" : "58", + "weight" : "41" + } + }, { + "alias_name" : "小さな英雄", + "alias_name_display" : "小さな英雄", + "hash" : "abbbabfa5e9a819053742de3ca99ba21", + "id" : "3400401", + "profile" : { + "bust" : "79", + "height" : "140", + "hip" : "80", + "waist" : "58", + "weight" : "41" + } + }, { + "alias_name" : "小さな英雄", + "alias_name_display" : "小さな英雄", + "hash" : "91439894ec4fdaed270c83fc0e6d6dfb", + "id" : "3500402", + "profile" : { + "bust" : "79", + "height" : "140", + "hip" : "80", + "waist" : "58", + "weight" : "41" + } + }, { + "alias_name" : "ミンナノミカタ", + "alias_name_display" : "ミンナノミカタ", + "event" : [ { + "event_id" : 1103, + "event_name" : "第3回プロダクション対抗トークバトルショー" + } ], + "hash" : "c9de774c074706e3b00f4c57bcaf19fb", + "id" : "3415201", + "profile" : { + "bust" : "79", + "height" : "140", + "hip" : "80", + "waist" : "58", + "weight" : "41" + } + }, { + "alias_name" : "ミンナノミカタ", + "alias_name_display" : "ミンナノミカタ", + "event" : [ { + "event_id" : 1103, + "event_name" : "第3回プロダクション対抗トークバトルショー" + } ], + "hash" : "bbcc7d08ecafb83fa87d6eb23346d512", + "id" : "3515202", + "profile" : { + "bust" : "79", + "height" : "140", + "hip" : "80", + "waist" : "58", + "weight" : "41" + } + }, { + "alias_name" : "無限大の夢", + "alias_name_display" : "無限大の夢", + "hash" : "90704fe71aac46fb8a34b98a0d4dd7f4", + "id" : "3430301", + "profile" : { + "bust" : "79", + "height" : "140", + "hip" : "80", + "waist" : "58", + "weight" : "41" + } + }, { + "alias_name" : "無限大の夢", + "alias_name_display" : "無限大の夢", + "hash" : "a3697dced0815fc5f72fdbabdcc000ff", + "id" : "3530302", + "profile" : { + "bust" : "79", + "height" : "140", + "hip" : "80", + "waist" : "58", + "weight" : "41" + } + }, { + "alias_name" : "ジャスティスブレイズ", + "alias_name_display" : "ジャスティスブレイズ", + "event" : [ { + "event_id" : "032", + "event_name" : "第32回プロダクションマッチフェスティバル" + } ], + "hash" : "afc890c6cbb5ba31bd2c0b60baa3fb15", + "id" : "3436101", + "profile" : { + "bust" : "79", + "height" : "140", + "hip" : "80", + "waist" : "58", + "weight" : "41" + } + }, { + "alias_name" : "ジャスティスブレイズ", + "alias_name_display" : "ジャスティスブレイズ", + "event" : [ { + "event_id" : "032", + "event_name" : "第32回プロダクションマッチフェスティバル" + } ], + "hash" : "6cdda5b7a8549133166ba9eb9be99096", + "id" : "3536102", + "profile" : { + "bust" : "79", + "height" : "140", + "hip" : "80", + "waist" : "58", + "weight" : "41" + } + } ], + "idol_id" : 198, + "idol_name" : "南条光", + "idol_name_display" : "南条光", + "units" : [ { + "id" : "46", + "name" : "ヒーローヴァーサス" + }, { + "id" : "64", + "name" : "リトルヒーロー" + }, { + "id" : "214", + "name" : "L.M.B.G" + } ] +}, { + "aliases" : [ { + "hash" : "24d5423d9fe8deb825e29b8a516d39de", + "id" : "3400501", + "profile" : { + "bust" : "82", + "height" : "166", + "hip" : "83", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "スペシャルテクニック", + "alias_name_display" : "スペシャルテクニック", + "event" : [ { + "event_id" : 303, + "event_name" : "アイドル強化合宿" + } ], + "hash" : "e9c8869f89f20e106098b24f222d9769", + "id" : "3402401", + "profile" : { + "bust" : "82", + "height" : "166", + "hip" : "83", + "waist" : "56", + "weight" : "45" + } + }, { + "alias_name" : "地獄の特訓", + "alias_name_display" : "地獄の特訓", + "hash" : "6681d3a0c30f354a44317608a1d68971", + "id" : "3412201", + "profile" : { + "bust" : "82", + "height" : "166", + "hip" : "83", + "waist" : "56", + "weight" : "45" + } + } ], + "idol_id" : 199, + "idol_name" : "マスタートレーナー", + "idol_name_display" : "マスタートレーナー" +}, { + "aliases" : [ { + "alias_name" : "ホーリーガール", + "alias_name_display" : "ホーリーガール", + "hash" : "f8c5c2664ca76f4aa84b267300290d54", + "id" : "3229901", + "profile" : { + "bust" : "81", + "height" : "165", + "hip" : "80", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "ホーリーガール", + "alias_name_display" : "ホーリーガール", + "hash" : "b886108b5b598273662056ff15dc76cb", + "id" : "3329902", + "profile" : { + "bust" : "81", + "height" : "165", + "hip" : "80", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "聖夜の使者", + "alias_name_display" : "聖夜の使者", + "event" : [ { + "event_id" : 101, + "event_name" : "星降るクリスマス" + } ], + "hash" : "49f6fd4549adcb500dcc21d87297e5bb", + "id" : "3400601", + "profile" : { + "bust" : "81", + "height" : "165", + "hip" : "80", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "聖夜の使者", + "alias_name_display" : "聖夜の使者", + "event" : [ { + "event_id" : 101, + "event_name" : "星降るクリスマス" + } ], + "hash" : "106db7ae8a02839fbaac3658a11cf2b9", + "id" : "3500602", + "profile" : { + "bust" : "81", + "height" : "165", + "hip" : "80", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "渚のマーメイド", + "alias_name_display" : "渚のマーメイド", + "hash" : "4aecdc034fc76ca31243603d3fdfbca8", + "id" : "3402501", + "profile" : { + "bust" : "81", + "height" : "165", + "hip" : "80", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "渚のマーメイド", + "alias_name_display" : "渚のマーメイド", + "hash" : "c9d1b3f76a38a9e4b8897028c4430754", + "id" : "3502502", + "profile" : { + "bust" : "81", + "height" : "165", + "hip" : "80", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "温泉郷の救世主", + "alias_name_display" : "温泉郷の救世主", + "hash" : "657a35f18d07f00a1dc67170ef05ca36", + "id" : "3406001", + "profile" : { + "bust" : "81", + "height" : "165", + "hip" : "80", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "温泉郷の救世主", + "alias_name_display" : "温泉郷の救世主", + "hash" : "266483313283264643bb92cfdb9b520f", + "id" : "3506002", + "profile" : { + "bust" : "81", + "height" : "165", + "hip" : "80", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "ハッピーホーリーナイト", + "alias_name_display" : "ハッピーホーリーナイト", + "event" : [ { + "event_id" : 1001, + "event_name" : "プロダクション対抗ドリームLIVEフェスティバル" + } ], + "hash" : "ead06a92514b67ede47e8b0ff2d7ec36", + "id" : "3410501", + "profile" : { + "bust" : "81", + "height" : "165", + "hip" : "80", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "ハッピーホーリーナイト", + "alias_name_display" : "ハッピーホーリーナイト", + "event" : [ { + "event_id" : 1001, + "event_name" : "プロダクション対抗ドリームLIVEフェスティバル" + } ], + "hash" : "9aa5c47cb237eca12686c8310a9a1617", + "id" : "3510502", + "profile" : { + "bust" : "81", + "height" : "165", + "hip" : "80", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "ふわふわホーリーナイト", + "alias_name_display" : "ふわふわホーリーナイト", + "event" : [ { + "event_id" : 710, + "event_name" : "サンタDEドリームLIVEフェスティバル" + } ], + "hash" : "13cd8e91ab44bed6a0eb3ad73ac98d55", + "id" : "3419901", + "profile" : { + "bust" : "81", + "height" : "165", + "hip" : "80", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "ふわふわホーリーナイト", + "alias_name_display" : "ふわふわホーリーナイト", + "event" : [ { + "event_id" : 710, + "event_name" : "サンタDEドリームLIVEフェスティバル" + } ], + "hash" : "86e560efafce2bd5b91d2da5fa9a9649", + "id" : "3519902", + "profile" : { + "bust" : "81", + "height" : "165", + "hip" : "80", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "マジカルホーリーナイト", + "alias_name_display" : "マジカルホーリーナイト", + "event" : [ { + "event_id" : 1208, + "event_name" : "目指せサンタクロース アイドルチャレンジ" + } ], + "hash" : "8700eb37ea90c08296384294dcba8f0b", + "id" : "3428501", + "profile" : { + "bust" : "81", + "height" : "165", + "hip" : "80", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "マジカルホーリーナイト", + "alias_name_display" : "マジカルホーリーナイト", + "event" : [ { + "event_id" : 1208, + "event_name" : "目指せサンタクロース アイドルチャレンジ" + } ], + "hash" : "b4157ceea09c89490bcefdf47e81f2c8", + "id" : "3528502", + "profile" : { + "bust" : "81", + "height" : "165", + "hip" : "80", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "幸せのお届け人", + "alias_name_display" : "幸せのお届け人", + "hash" : "7b4c4efa720fb207fccb3a7161c73360", + "id" : "3436601", + "profile" : { + "bust" : "81", + "height" : "165", + "hip" : "80", + "waist" : "56", + "weight" : "44" + } + }, { + "alias_name" : "幸せのお届け人", + "alias_name_display" : "幸せのお届け人", + "hash" : "876fb43ce5ef639022ddf7ce233a859a", + "id" : "3536602", + "profile" : { + "bust" : "81", + "height" : "165", + "hip" : "80", + "waist" : "56", + "weight" : "44" + } + } ], + "idol_id" : 200, + "idol_name" : "イヴ・サンタクロース", + "idol_name_display" : "イヴ・サンタクロース" +}, { + "aliases" : [ { + "alias_name" : "ラブキュンバレンタイン", + "alias_name_display" : "ラブキュンバレンタイン", + "event" : [ { + "event_id" : 1906, + "event_name" : "ディアリースターハート ~ラブキュンバレンタイン~" + } ], + "hash" : "5b85ccd2e62127d71edeb18ca68a43b6", + "id" : "1232001", + "profile" : { + "bust" : "78", + "height" : "149", + "hip" : "79", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "ラブキュンバレンタイン", + "alias_name_display" : "ラブキュンバレンタイン", + "event" : [ { + "event_id" : 1906, + "event_name" : "ディアリースターハート ~ラブキュンバレンタイン~" + } ], + "hash" : "caa9df35d41ce022727122458d34a5b3", + "id" : "1332002", + "profile" : { + "bust" : "78", + "height" : "149", + "hip" : "79", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "夜桜奇譚", + "alias_name_display" : "夜桜奇譚", + "event" : [ { + "event_id" : 1907, + "event_name" : "ディアリースタークエスト ~夜桜奇譚~" + } ], + "hash" : "c3dc039dbb8e4e3b2ea2ce70dcc0279a", + "id" : "1232701", + "profile" : { + "bust" : "78", + "height" : "149", + "hip" : "79", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "夜桜奇譚", + "alias_name_display" : "夜桜奇譚", + "event" : [ { + "event_id" : 1907, + "event_name" : "ディアリースタークエスト ~夜桜奇譚~" + } ], + "hash" : "acb21dca7cfc523e0a041f32c92f0c8e", + "id" : "1332702", + "profile" : { + "bust" : "78", + "height" : "149", + "hip" : "79", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "聖夜のキセキ", + "alias_name_display" : "聖夜のキセキ", + "event" : [ { + "event_id" : 1905, + "event_name" : "ディアリースターナイト ~聖夜のキセキ~" + } ], + "hash" : "4270223bf3b0fa1fe9ad07050b397f65", + "id" : "1437201", + "profile" : { + "bust" : "78", + "height" : "149", + "hip" : "79", + "waist" : "55", + "weight" : "40" + } + }, { + "alias_name" : "聖夜のキセキ", + "alias_name_display" : "聖夜のキセキ", + "event" : [ { + "event_id" : 1905, + "event_name" : "ディアリースターナイト ~聖夜のキセキ~" + } ], + "hash" : "e39015d925db23fa7c4a5fbfeaf09534", + "id" : "1537202", + "profile" : { + "bust" : "78", + "height" : "149", + "hip" : "79", + "waist" : "55", + "weight" : "40" + } + } ], + "idol_id" : 201, + "idol_name" : "日高愛", + "idol_name_display" : "日高愛" +}, { + "aliases" : [ { + "alias_name" : "聖夜のキセキ", + "alias_name_display" : "聖夜のキセキ", + "event" : [ { + "event_id" : 1905, + "event_name" : "ディアリースターナイト ~聖夜のキセキ~" + } ], + "hash" : "addeb97fac43f59ea040b91102e7a6fd", + "id" : "2229601", + "profile" : { + "bust" : "82", + "height" : "152", + "hip" : "76", + "waist" : "53", + "weight" : "36" + } + }, { + "alias_name" : "聖夜のキセキ", + "alias_name_display" : "聖夜のキセキ", + "event" : [ { + "event_id" : 1905, + "event_name" : "ディアリースターナイト ~聖夜のキセキ~" + } ], + "hash" : "4ff1e97c188a31e681f47940481fd2e4", + "id" : "2329602", + "profile" : { + "bust" : "82", + "height" : "152", + "hip" : "76", + "waist" : "53", + "weight" : "36" + } + }, { + "alias_name" : "ラブキュンバレンタイン", + "alias_name_display" : "ラブキュンバレンタイン", + "event" : [ { + "event_id" : 1906, + "event_name" : "ディアリースターハート ~ラブキュンバレンタイン~" + } ], + "hash" : "e9e3e22a50cb40f14e8af378610d8827", + "id" : "2230501", + "profile" : { + "bust" : "82", + "height" : "152", + "hip" : "76", + "waist" : "53", + "weight" : "36" + } + }, { + "alias_name" : "ラブキュンバレンタイン", + "alias_name_display" : "ラブキュンバレンタイン", + "event" : [ { + "event_id" : 1906, + "event_name" : "ディアリースターハート ~ラブキュンバレンタイン~" + } ], + "hash" : "70927bba624b93645c5e3d510c8efa69", + "id" : "2330502", + "profile" : { + "bust" : "82", + "height" : "152", + "hip" : "76", + "waist" : "53", + "weight" : "36" + } + }, { + "alias_name" : "夜桜奇譚", + "alias_name_display" : "夜桜奇譚", + "event" : [ { + "event_id" : 1907, + "event_name" : "ディアリースタークエスト ~夜桜奇譚~" + } ], + "hash" : "7ad6bd146fe2c0a9d7f4d1d70e85339a", + "id" : "2439301", + "profile" : { + "bust" : "82", + "height" : "152", + "hip" : "76", + "waist" : "53", + "weight" : "36" + } + }, { + "alias_name" : "夜桜奇譚", + "alias_name_display" : "夜桜奇譚", + "event" : [ { + "event_id" : 1907, + "event_name" : "ディアリースタークエスト ~夜桜奇譚~" + } ], + "hash" : "2c578bcb320f60bfd692e097bff03291", + "id" : "2539302", + "profile" : { + "bust" : "82", + "height" : "152", + "hip" : "76", + "waist" : "53", + "weight" : "36" + } + } ], + "idol_id" : 202, + "idol_name" : "水谷絵理", + "idol_name_display" : "水谷絵理" +}, { + "aliases" : [ { + "alias_name" : "聖夜のキセキ", + "alias_name_display" : "聖夜のキセキ", + "event" : [ { + "event_id" : 1905, + "event_name" : "ディアリースターナイト ~聖夜のキセキ~" + } ], + "hash" : "74bfb36578411126f56d04baeb48212d", + "id" : "3231901", + "profile" : { + "bust" : "80", + "height" : "162", + "hip" : "80", + "waist" : "59", + "weight" : "54" + } + }, { + "alias_name" : "聖夜のキセキ", + "alias_name_display" : "聖夜のキセキ", + "event" : [ { + "event_id" : 1905, + "event_name" : "ディアリースターナイト ~聖夜のキセキ~" + } ], + "hash" : "c79b5a90e44cbca6c6b31c566e8b0878", + "id" : "3331902", + "profile" : { + "bust" : "80", + "height" : "162", + "hip" : "80", + "waist" : "59", + "weight" : "54" + } + }, { + "alias_name" : "夜桜奇譚", + "alias_name_display" : "夜桜奇譚", + "event" : [ { + "event_id" : 1907, + "event_name" : "ディアリースタークエスト ~夜桜奇譚~" + } ], + "hash" : "8528eab7689a81e088cc8b537a7308b3", + "id" : "3233901", + "profile" : { + "bust" : "80", + "height" : "162", + "hip" : "80", + "waist" : "59", + "weight" : "54" + } + }, { + "alias_name" : "夜桜奇譚", + "alias_name_display" : "夜桜奇譚", + "event" : [ { + "event_id" : 1907, + "event_name" : "ディアリースタークエスト ~夜桜奇譚~" + } ], + "hash" : "9ec1db535f6c5277ab50ffd22d33953c", + "id" : "3333902", + "profile" : { + "bust" : "80", + "height" : "162", + "hip" : "80", + "waist" : "59", + "weight" : "54" + } + }, { + "alias_name" : "ラブキュンバレンタイン", + "alias_name_display" : "ラブキュンバレンタイン", + "event" : [ { + "event_id" : 1906, + "event_name" : "ディアリースターハート ~ラブキュンバレンタイン~" + } ], + "hash" : "3b618f0273fecf8b47e9c4b5fd9366a4", + "id" : "3438101", + "profile" : { + "bust" : "80", + "height" : "162", + "hip" : "80", + "waist" : "59", + "weight" : "54" + } + }, { + "alias_name" : "ラブキュンバレンタイン", + "alias_name_display" : "ラブキュンバレンタイン", + "event" : [ { + "event_id" : 1906, + "event_name" : "ディアリースターハート ~ラブキュンバレンタイン~" + } ], + "hash" : "cb10db1e0bcf18c7ae8b49edee29eea2", + "id" : "3538102", + "profile" : { + "bust" : "80", + "height" : "162", + "hip" : "80", + "waist" : "59", + "weight" : "54" + } + } ], + "idol_id" : 203, + "idol_name" : "秋月涼", + "idol_name_display" : "秋月涼" +} ] diff --git a/resource/db/master/core/dere_overview-export.json b/resource/db/master/core/dere_overview-export.json new file mode 100644 index 0000000..cda0b8c --- /dev/null +++ b/resource/db/master/core/dere_overview-export.json @@ -0,0 +1,1220 @@ +{ + "アナスタシア" : { + "id" : "127", + "kana" : "あなすたしあ", + "latest_hash" : "c0e1d6f4481ba3fabd64f9c6c9675156", + "name" : "アナスタシア" + }, + "イヴ・サンタクロース" : { + "id" : "200", + "kana" : "いヴ・さんたくろーす", + "latest_hash" : "876fb43ce5ef639022ddf7ce233a859a", + "name" : "イヴ・サンタクロース" + }, + "キャシー・グラハム" : { + "id" : "190", + "kana" : "きゃしー・ぐらはむ", + "latest_hash" : "7257d04c6b64058492bc0279c5b1da20", + "name" : "キャシー・グラハム" + }, + "クラリス" : { + "id" : "58", + "kana" : "くらりす", + "latest_hash" : "982a1fa17a690105cf07772a7d5bc5a4", + "name" : "クラリス" + }, + "ケイト" : { + "id" : "102", + "kana" : "けいと", + "latest_hash" : "e931ed75eb91bcd9735bc590a92c07d6", + "name" : "ケイト" + }, + "トレーナー" : { + "id" : "148", + "kana" : "とれーなー", + "latest_hash" : "35298581105317744d50303a73e59816", + "name" : "トレーナー" + }, + "ナターリア" : { + "id" : "173", + "kana" : "なたーりあ", + "latest_hash" : "6dc2df6837dff054aaaf63c93f92256b", + "name" : "ナターリア" + }, + "ヘレン" : { + "id" : "93", + "kana" : "へれん", + "latest_hash" : "cc0698a6cf2cb1334013fe8b8ade9708", + "name" : "ヘレン" + }, + "ベテラントレーナー" : { + "id" : "182", + "kana" : "べてらんとれーなー", + "latest_hash" : "313b271eddfdc8c9d223cfc16fc55eb9", + "name" : "ベテラントレーナー" + }, + "マスタートレーナー" : { + "id" : "199", + "kana" : "ますたーとれーなー", + "latest_hash" : "6681d3a0c30f354a44317608a1d68971", + "name" : "マスタートレーナー" + }, + "メアリー・コクラン" : { + "id" : "187", + "kana" : "めありー・こくらん", + "latest_hash" : "cda5c513974a4e22bdafa7fb7e662c56", + "name" : "メアリー・コクラン" + }, + "ライラ" : { + "id" : "91", + "kana" : "らいら", + "latest_hash" : "d5736287d3ece82c8ab060128aeceaeb", + "name" : "ライラ" + }, + "ルーキートレーナー" : { + "id" : "152", + "kana" : "るーきーとれーなー", + "latest_hash" : "36e37884b950605dc92c789b5b270b37", + "name" : "ルーキートレーナー" + }, + "一ノ瀬志希" : { + "id" : "26", + "kana" : "いちのせこころざしのぞみ", + "latest_hash" : "bb156a253fc247462a87b20eee8770f5", + "name" : "一ノ瀬志希" + }, + "三好紗南" : { + "id" : "189", + "kana" : "みよしさな", + "latest_hash" : "5caedbb13727f0afdd234d8e73a40a32", + "name" : "三好紗南" + }, + "三村かな子" : { + "id" : "8", + "kana" : "みむらかなこ", + "latest_hash" : "c8c44f8080c9c5fe57633092232f5dee", + "name" : "三村かな子" + }, + "三浦あずさ" : { + "id" : "107", + "kana" : "みうらあずさ", + "latest_hash" : "035141c2768cddbab1153b2dcbcb3013", + "name" : "三浦あずさ" + }, + "三船美優" : { + "id" : "81", + "kana" : "みふねみゅう", + "latest_hash" : "be6c919489145ab6fcf4735fccad0f5c", + "name" : "三船美優" + }, + "上条春菜" : { + "id" : "75", + "kana" : "かみじょうはるな", + "latest_hash" : "895adb42cedd503a357282110c7c92c9", + "name" : "上条春菜" + }, + "上田鈴帆" : { + "id" : "150", + "kana" : "うえだすずほ", + "latest_hash" : "ddf643f7944b7f55b9867bb33c17e9c6", + "name" : "上田鈴帆" + }, + "並木芽衣子" : { + "id" : "136", + "kana" : "なみきめいこ", + "latest_hash" : "9a07422c4498c97ae7b7a9d9117fe9fd", + "name" : "並木芽衣子" + }, + "中野有香" : { + "id" : "2", + "kana" : "なかのゆか", + "latest_hash" : "b1976493a44373a42a7087ea012da84a", + "name" : "中野有香" + }, + "丹羽仁美" : { + "id" : "40", + "kana" : "にわひとみ", + "latest_hash" : "9392cd6501637b7e2d621e7459fc742f", + "name" : "丹羽仁美" + }, + "乙倉悠貴" : { + "id" : "64", + "kana" : "おつくらゆき", + "latest_hash" : "ad1d9695914de9d5464ffe838872530f", + "name" : "乙倉悠貴" + }, + "二宮飛鳥" : { + "id" : "130", + "kana" : "にのみやあすか", + "latest_hash" : "3f93733e01fed8506d57f0c5894586f6", + "name" : "二宮飛鳥" + }, + "五十嵐響子" : { + "id" : "13", + "kana" : "いがらしきょうこ", + "latest_hash" : "0bacaa88e323666ac8790a16a2ac46ee", + "name" : "五十嵐響子" + }, + "井村雪菜" : { + "id" : "47", + "kana" : "いむらゆきな", + "latest_hash" : "9394a74e8344967cbf42eb20eae12ab5", + "name" : "井村雪菜" + }, + "今井加奈" : { + "id" : "6", + "kana" : "いまいかな", + "latest_hash" : "2ed07d073761b8d9b26106a1bebea34a", + "name" : "今井加奈" + }, + "仙崎恵磨" : { + "id" : "169", + "kana" : "せんざきめぐみま", + "latest_hash" : "1ee716e4411265ade87048be92422d1d", + "name" : "仙崎恵磨" + }, + "伊集院惠" : { + "id" : "99", + "kana" : "いじゅういんめぐみ", + "latest_hash" : "2b04d07128e9d3935b7505599d21f522", + "name" : "伊集院惠" + }, + "佐々木千枝" : { + "id" : "80", + "kana" : "ささきちえ", + "latest_hash" : "54022827f6129503d2444697e275e075", + "name" : "佐々木千枝" + }, + "佐久間まゆ" : { + "id" : "59", + "kana" : "さくままゆ", + "latest_hash" : "992e3ae2a449f25bc4678f9bde5e327d", + "name" : "佐久間まゆ" + }, + "佐城雪美" : { + "id" : "105", + "kana" : "さじょうゆきみ", + "latest_hash" : "674f4cb361e967bca336653539ed6613", + "name" : "佐城雪美" + }, + "佐藤心" : { + "id" : "197", + "kana" : "さとうしん", + "latest_hash" : "00a73075d65a7d0c56ceef9dd11c7a06", + "name" : "佐藤心" + }, + "依田芳乃" : { + "id" : "162", + "kana" : "よだよしの", + "latest_hash" : "86045c8c5c85b81aa51156dbcdb0e1a5", + "name" : "依田芳乃" + }, + "八神マキノ" : { + "id" : "90", + "kana" : "やがみまきの", + "latest_hash" : "615b301570633d1f4eeb36d15fa9c890", + "name" : "八神マキノ" + }, + "兵藤レナ" : { + "id" : "39", + "kana" : "ひょうどうれな", + "latest_hash" : "9cf74ba99862e8a7d52677bca5e48c3b", + "name" : "兵藤レナ" + }, + "冴島清美" : { + "id" : "196", + "kana" : "さえじまきよみ", + "latest_hash" : "d6be32a4312ef65e6697fbd4da5b3926", + "name" : "冴島清美" + }, + "前川みく" : { + "id" : "27", + "kana" : "まえかわみく", + "latest_hash" : "e863deaf923d0239d7d118503386c7c4", + "name" : "前川みく" + }, + "北川真尋" : { + "id" : "186", + "kana" : "きたがわまひろ", + "latest_hash" : "b24f3818f1e1073ea376f64f62004d15", + "name" : "北川真尋" + }, + "北条加蓮" : { + "id" : "101", + "kana" : "ほうじょうかれん", + "latest_hash" : "846cbe9ab87264c80ab22de8776c78a9", + "name" : "北条加蓮" + }, + "十時愛梨" : { + "id" : "172", + "kana" : "とときえり", + "latest_hash" : "36516e31833083116be887f5b74985ab", + "name" : "十時愛梨" + }, + "南条光" : { + "id" : "198", + "kana" : "なんじょうひかり", + "latest_hash" : "6cdda5b7a8549133166ba9eb9be99096", + "name" : "南条光" + }, + "原田美世" : { + "id" : "65", + "kana" : "はらだみせい", + "latest_hash" : "1be46e70f136716b759b15340806be70", + "name" : "原田美世" + }, + "及川雫" : { + "id" : "153", + "kana" : "おいかわしずく", + "latest_hash" : "8f67ec464f14c69c9abff99d4e5c4eae", + "name" : "及川雫" + }, + "双海亜美" : { + "id" : "177", + "kana" : "ふたみあみ", + "latest_hash" : "d604961da03fd554556bf5ec24eae13a", + "name" : "双海亜美" + }, + "双海真美" : { + "id" : "178", + "kana" : "ふたみまみ", + "latest_hash" : "7174c14b3213a89f45cc5375eb1fff5a", + "name" : "双海真美" + }, + "双葉杏" : { + "id" : "34", + "kana" : "ふたばあんず", + "latest_hash" : "458454502049072b7c4f264362088614", + "name" : "双葉杏" + }, + "古澤頼子" : { + "id" : "87", + "kana" : "ふるさわよりこ", + "latest_hash" : "0fdb985e97611cb4df916563d6e7a27b", + "name" : "古澤頼子" + }, + "古賀小春" : { + "id" : "57", + "kana" : "こがこはる", + "latest_hash" : "50a0bb6a83031685c407e03c4bd7d5b1", + "name" : "古賀小春" + }, + "吉岡沙紀" : { + "id" : "112", + "kana" : "よしおかさき", + "latest_hash" : "c3a21b688770def90cda930429d9d580", + "name" : "吉岡沙紀" + }, + "向井拓海" : { + "id" : "180", + "kana" : "むかいたくみ", + "latest_hash" : "2198eb80f3fc029ca19d09a514a66a30", + "name" : "向井拓海" + }, + "和久井留美" : { + "id" : "111", + "kana" : "わくいるみ", + "latest_hash" : "303643dbb839ee0d48bfb7def91c193f", + "name" : "和久井留美" + }, + "喜多日菜子" : { + "id" : "184", + "kana" : "きたひなこ", + "latest_hash" : "2b84984d9d6c5a8c0520fe96a7ba45d6", + "name" : "喜多日菜子" + }, + "喜多見柚" : { + "id" : "149", + "kana" : "きたみゆ", + "latest_hash" : "d2f0b1423a844ac537fa255c1e383b22", + "name" : "喜多見柚" + }, + "四条貴音" : { + "id" : "109", + "kana" : "しじょうたかね", + "latest_hash" : "166fb623aae4d975387c3fbc8770a099", + "name" : "四条貴音" + }, + "土屋亜子" : { + "id" : "194", + "kana" : "つちやあこ", + "latest_hash" : "bd055ba043dc7166491f48b3587b1984", + "name" : "土屋亜子" + }, + "城ヶ崎美嘉" : { + "id" : "167", + "kana" : "じょうがさきみか", + "latest_hash" : "062f663090a8424fca1a20133b774120", + "name" : "城ヶ崎美嘉" + }, + "城ヶ崎莉嘉" : { + "id" : "168", + "kana" : "じょうがさきりか", + "latest_hash" : "2c6f68904c5e8c886b60fcc1c01682df", + "name" : "城ヶ崎莉嘉" + }, + "堀裕子" : { + "id" : "158", + "kana" : "ほりゆうこ", + "latest_hash" : "64bfd146a17bcae9c53f47b939d3199a", + "name" : "堀裕子" + }, + "塩見周子" : { + "id" : "120", + "kana" : "しおみしゅうこ", + "latest_hash" : "e02867846f13e03eb619cb5e9bddae89", + "name" : "塩見周子" + }, + "多田李衣菜" : { + "id" : "78", + "kana" : "ただりいな", + "latest_hash" : "4a688e97246cf40a0e8850db9199e694", + "name" : "多田李衣菜" + }, + "大原みちる" : { + "id" : "23", + "kana" : "おおはらみちる", + "latest_hash" : "6982bf46c7bfa21df65e8b12044e9555", + "name" : "大原みちる" + }, + "大和亜季" : { + "id" : "128", + "kana" : "やまとあき", + "latest_hash" : "3fd70cf35e090606cfb1d891b35fb013", + "name" : "大和亜季" + }, + "大槻唯" : { + "id" : "146", + "kana" : "おおつきゆい", + "latest_hash" : "3989619894f357d64debb55929ca0edc", + "name" : "大槻唯" + }, + "大沼くるみ" : { + "id" : "25", + "kana" : "おおぬまくるみ", + "latest_hash" : "d76492cb5a1cc1202e993013da0e48cd", + "name" : "大沼くるみ" + }, + "大石泉" : { + "id" : "124", + "kana" : "おおいしいずみ", + "latest_hash" : "ea24d74d3d4603863842d1464a3f82dd", + "name" : "大石泉" + }, + "大西由里子" : { + "id" : "53", + "kana" : "おおにしゆりこ", + "latest_hash" : "493a01e58a43693352fd7343e3987069", + "name" : "大西由里子" + }, + "天海春香" : { + "id" : "46", + "kana" : "あまみはるか", + "latest_hash" : "eb10c4da293f3f132f146989bd997f64", + "name" : "天海春香" + }, + "太田優" : { + "id" : "20", + "kana" : "おおたゆう", + "latest_hash" : "2763a2afd43cf1d265c968e8a9711692", + "name" : "太田優" + }, + "奥山沙織" : { + "id" : "9", + "kana" : "おくやまさおり", + "latest_hash" : "d5524d87d135dae077956ca332579a7e", + "name" : "奥山沙織" + }, + "如月千早" : { + "id" : "106", + "kana" : "きさらぎちはや", + "latest_hash" : "dfe34529a4dc472ca44c6ad923e44b5b", + "name" : "如月千早" + }, + "姫川友紀" : { + "id" : "147", + "kana" : "ひめかわゆき", + "latest_hash" : "85688ae1cb65177f8acc8c407901267b", + "name" : "姫川友紀" + }, + "安斎都" : { + "id" : "51", + "kana" : "あんざいみやこ", + "latest_hash" : "0da70e0edc3ce8b0d0fcf9caf198d7d6", + "name" : "安斎都" + }, + "安部菜々" : { + "id" : "54", + "kana" : "あべさい々", + "latest_hash" : "4646da2024bcd18a3334ba0c06a7770d", + "name" : "安部菜々" + }, + "宮本フレデリカ" : { + "id" : "31", + "kana" : "みやもとふれでりか", + "latest_hash" : "09346bd07794d16a01ebdf62ea8fd570", + "name" : "宮本フレデリカ" + }, + "小室千奈美" : { + "id" : "95", + "kana" : "こむろちなみ", + "latest_hash" : "5adfeb655cf51c970156064c22dfb037", + "name" : "小室千奈美" + }, + "小日向美穂" : { + "id" : "11", + "kana" : "おびなたみほ", + "latest_hash" : "6c7bab6998ae7b616fc1598308ba201b", + "name" : "小日向美穂" + }, + "小早川紗枝" : { + "id" : "32", + "kana" : "こばやかわさえ", + "latest_hash" : "76301262a0d6d164f8d35b6148bc96cb", + "name" : "小早川紗枝" + }, + "小松伊吹" : { + "id" : "188", + "kana" : "こまついぶき", + "latest_hash" : "74726c9cfa072e384c992e8d8bde9ff9", + "name" : "小松伊吹" + }, + "小関麗奈" : { + "id" : "154", + "kana" : "こせきれな", + "latest_hash" : "f6119202da4cb7287258017f533e28a7", + "name" : "小関麗奈" + }, + "岡崎泰葉" : { + "id" : "122", + "kana" : "おかざきやすは", + "latest_hash" : "4753beff820055994390f5d38cd6c31e", + "name" : "岡崎泰葉" + }, + "岸部彩華" : { + "id" : "115", + "kana" : "きしべいろは", + "latest_hash" : "2c67e5e41d85f043ffc99b92a4873ae1", + "name" : "岸部彩華" + }, + "島村卯月" : { + "id" : "1", + "kana" : "しまむらうづき", + "latest_hash" : "1338de950f95214e111dad2943f191c8", + "name" : "島村卯月" + }, + "川島瑞樹" : { + "id" : "73", + "kana" : "かわしまみずき", + "latest_hash" : "f8290c4530003b664115639282feddd3", + "name" : "川島瑞樹" + }, + "工藤忍" : { + "id" : "55", + "kana" : "くどうしのぶ", + "latest_hash" : "dd3cbc7d99d27b18163a05c94d5fcbd1", + "name" : "工藤忍" + }, + "市原仁奈" : { + "id" : "183", + "kana" : "いちはらひとしな", + "latest_hash" : "f8e4f10ef977349e598b44f6ca5f0141", + "name" : "市原仁奈" + }, + "愛野渚" : { + "id" : "144", + "kana" : "あいのなぎさ", + "latest_hash" : "b3c0ab815b7dae87ea9a636433655d89", + "name" : "愛野渚" + }, + "成宮由愛" : { + "id" : "118", + "kana" : "なるみやゆめ", + "latest_hash" : "3a91b3c21892380bf9febb395bf4baa5", + "name" : "成宮由愛" + }, + "我那覇響" : { + "id" : "44", + "kana" : "がなはひびき", + "latest_hash" : "c5e1fe7ef2b387eb27a9adbb9d9dfa6c", + "name" : "我那覇響" + }, + "持田亜里沙" : { + "id" : "7", + "kana" : "もちだありさ", + "latest_hash" : "baf115536838f243cc9a52df9853fb22", + "name" : "持田亜里沙" + }, + "斉藤洋子" : { + "id" : "140", + "kana" : "さいとうようこ", + "latest_hash" : "1013f20a456ce20449239b3e587bb424", + "name" : "斉藤洋子" + }, + "新田美波" : { + "id" : "85", + "kana" : "にったみなみ", + "latest_hash" : "05967e0044c4828455e8547b98df1d06", + "name" : "新田美波" + }, + "日下部若葉" : { + "id" : "48", + "kana" : "くさかべわかば", + "latest_hash" : "16b3f7c98071fcc566c63e350f6d6755", + "name" : "日下部若葉" + }, + "日野茜" : { + "id" : "170", + "kana" : "ひのあかね", + "latest_hash" : "9c04faffee708181d50dca5884d3fb1e", + "name" : "日野茜" + }, + "日高愛" : { + "id" : "201", + "kana" : "ひだかあい", + "latest_hash" : "e39015d925db23fa7c4a5fbfeaf09534", + "name" : "日高愛" + }, + "早坂美玲" : { + "id" : "62", + "kana" : "はやさかみれい", + "latest_hash" : "1aea545811f830d6c6baad2453571a96", + "name" : "早坂美玲" + }, + "星井美希" : { + "id" : "179", + "kana" : "ほしいみき", + "latest_hash" : "c504c5f878ac85da8d9ccb70ef44fbe4", + "name" : "星井美希" + }, + "星輝子" : { + "id" : "156", + "kana" : "ほしてるこ", + "latest_hash" : "22aced971fa5898c838516e6f15fe27d", + "name" : "星輝子" + }, + "月宮雅" : { + "id" : "38", + "kana" : "つきみやまさし", + "latest_hash" : "ea6ea7bc7bb994ee3f40bf04f6126ec8", + "name" : "月宮雅" + }, + "有浦柑奈" : { + "id" : "63", + "kana" : "ゆううらかんな", + "latest_hash" : "23ad85825d08c2b01758a0a95eee45d2", + "name" : "有浦柑奈" + }, + "服部瞳子" : { + "id" : "82", + "kana" : "はっとりとうこ", + "latest_hash" : "8c428918c3def67003cdb73be7eb1b85", + "name" : "服部瞳子" + }, + "望月聖" : { + "id" : "132", + "kana" : "もちづききよし", + "latest_hash" : "3e6deec005701d78f54d7108ff35df41", + "name" : "望月聖" + }, + "木場真奈美" : { + "id" : "83", + "kana" : "こばまなみ", + "latest_hash" : "a53f598eea9637e74b08e76c96d18d4b", + "name" : "木場真奈美" + }, + "木村夏樹" : { + "id" : "138", + "kana" : "きむらなつき", + "latest_hash" : "f3a9f6ffd1b7e0ed7bad2d27cb3604af", + "name" : "木村夏樹" + }, + "本田未央" : { + "id" : "134", + "kana" : "ほんだみお", + "latest_hash" : "fdda617ed4a59a8d1127c50336535a52", + "name" : "本田未央" + }, + "杉坂海" : { + "id" : "185", + "kana" : "すぎさかうみ", + "latest_hash" : "26a0294ebbd82d18425173f46b4d8860", + "name" : "杉坂海" + }, + "村上巴" : { + "id" : "193", + "kana" : "むらかみともえ", + "latest_hash" : "1c6ff2bbe0458219764965de70302d56", + "name" : "村上巴" + }, + "村松さくら" : { + "id" : "60", + "kana" : "むらまつさくら", + "latest_hash" : "f3a647752b0e6c8f4d4938a2a5bbd308", + "name" : "村松さくら" + }, + "東郷あい" : { + "id" : "77", + "kana" : "とうごうあい", + "latest_hash" : "18587c946f96cd9c273730176ecbcec8", + "name" : "東郷あい" + }, + "松原早耶" : { + "id" : "29", + "kana" : "まつばらさや", + "latest_hash" : "eab519121d4491eb02a6ba19010da935", + "name" : "松原早耶" + }, + "松尾千鶴" : { + "id" : "125", + "kana" : "まつおちづる", + "latest_hash" : "49313322c5fd3c9bed6e752b20b7dcd9", + "name" : "松尾千鶴" + }, + "松山久美子" : { + "id" : "139", + "kana" : "まつやまくみこ", + "latest_hash" : "e23409154c61e745d3e92fe075d8d7e8", + "name" : "松山久美子" + }, + "松本沙理奈" : { + "id" : "69", + "kana" : "まつもとさりな", + "latest_hash" : "2e3a40d67d49dc6574282976c7ede024", + "name" : "松本沙理奈" + }, + "松永涼" : { + "id" : "94", + "kana" : "まつながりょう", + "latest_hash" : "7c6d691dff4f6353fdf2ab67ccea3e35", + "name" : "松永涼" + }, + "柊志乃" : { + "id" : "100", + "kana" : "ひいらぎしの", + "latest_hash" : "eebf9cbe74825c11552fc61be114e2cc", + "name" : "柊志乃" + }, + "柳清良" : { + "id" : "45", + "kana" : "やなぎきよしりょう", + "latest_hash" : "5889d8f072f2fac046d4e3b55e2ac4ce", + "name" : "柳清良" + }, + "柳瀬美由紀" : { + "id" : "14", + "kana" : "やなせみゆき", + "latest_hash" : "12c2c842a331db791b909c0003a105ba", + "name" : "柳瀬美由紀" + }, + "栗原ネネ" : { + "id" : "56", + "kana" : "くりはらねね", + "latest_hash" : "7a9fe2cd8a14757af1ce02c24ab770e4", + "name" : "栗原ネネ" + }, + "桃井あずき" : { + "id" : "36", + "kana" : "ももいあずき", + "latest_hash" : "cf166d5c57c0446980b7393d66318f22", + "name" : "桃井あずき" + }, + "桐生つかさ" : { + "id" : "131", + "kana" : "きりゅうつかさ", + "latest_hash" : "bf5c1105baa37c752c0733f015513f75", + "name" : "桐生つかさ" + }, + "桐野アヤ" : { + "id" : "70", + "kana" : "きりのあや", + "latest_hash" : "81fd47cf40cbfb59f9dc779f0b2e6258", + "name" : "桐野アヤ" + }, + "梅木音葉" : { + "id" : "113", + "kana" : "うめきおとは", + "latest_hash" : "725a7367f2c8c08fa9f88fb14c58786a", + "name" : "梅木音葉" + }, + "棟方愛海" : { + "id" : "21", + "kana" : "むなかたあいうみ", + "latest_hash" : "6266ac4f14b93b3859953ec5f6e94cb4", + "name" : "棟方愛海" + }, + "森久保乃々" : { + "id" : "126", + "kana" : "もりくぼの々", + "latest_hash" : "323901218db4adb11070ca80dbaa2339", + "name" : "森久保乃々" + }, + "椎名法子" : { + "id" : "5", + "kana" : "しいなのりこ", + "latest_hash" : "6e42fd90357609b6d27c0afa237f117b", + "name" : "椎名法子" + }, + "楊菲菲" : { + "id" : "35", + "kana" : "よううすうす", + "latest_hash" : "6f2cef2655f476d2f3f6ea80d8f481ec", + "name" : "楊菲菲" + }, + "榊原里美" : { + "id" : "49", + "kana" : "さかきばらさとみ", + "latest_hash" : "f5513ccc6e9fbd159a8a1c770341ca42", + "name" : "榊原里美" + }, + "槙原志保" : { + "id" : "175", + "kana" : "まきはらしほ", + "latest_hash" : "fdce336ae18237fdf6e8811aa42d5444", + "name" : "槙原志保" + }, + "横山千佳" : { + "id" : "18", + "kana" : "よこやまちか", + "latest_hash" : "d02199911575371c301fa3f8d1f937fe", + "name" : "横山千佳" + }, + "橘ありす" : { + "id" : "88", + "kana" : "たちばなありす", + "latest_hash" : "abfa3a0acdc184e3339b139c308eef21", + "name" : "橘ありす" + }, + "櫻井桃華" : { + "id" : "15", + "kana" : "さくらいももか", + "latest_hash" : "d32d219a3c0ad6dc84734d1fc3f9f94e", + "name" : "櫻井桃華" + }, + "氏家むつみ" : { + "id" : "116", + "kana" : "うじいえむつみ", + "latest_hash" : "b0a88d8ab733b0a8b4603a9ed1905b9a", + "name" : "氏家むつみ" + }, + "水木聖來" : { + "id" : "79", + "kana" : "みずきせいら", + "latest_hash" : "ba06248f504e77b5b221773f218ea8a2", + "name" : "水木聖來" + }, + "水本ゆかり" : { + "id" : "3", + "kana" : "みずもとゆかり", + "latest_hash" : "0ae0b50138bbf05741509420d5324943", + "name" : "水本ゆかり" + }, + "水瀬伊織" : { + "id" : "181", + "kana" : "みなせいおり", + "latest_hash" : "933333b6f15c88a6e8564a2dee2f125a", + "name" : "水瀬伊織" + }, + "水谷絵理" : { + "id" : "202", + "kana" : "みずたにえり", + "latest_hash" : "2c578bcb320f60bfd692e097bff03291", + "name" : "水谷絵理" + }, + "水野翠" : { + "id" : "86", + "kana" : "みずのみどり", + "latest_hash" : "cff720f0338a7ae16dc936a802809a2f", + "name" : "水野翠" + }, + "江上椿" : { + "id" : "16", + "kana" : "えがみつばき", + "latest_hash" : "beba5121254d967e0be4895fbe2fac3c", + "name" : "江上椿" + }, + "池袋晶葉" : { + "id" : "66", + "kana" : "いけぶくろあきらよう", + "latest_hash" : "f14270b8f9920a77b665767587d06b48", + "name" : "池袋晶葉" + }, + "沢田麻理菜" : { + "id" : "141", + "kana" : "さわだまりな", + "latest_hash" : "1714cda17ded0f8215ee4c0f217a2c91", + "name" : "沢田麻理菜" + }, + "浅利七海" : { + "id" : "92", + "kana" : "あさりななうみ", + "latest_hash" : "3680d1991b44b9d38b902639964525ed", + "name" : "浅利七海" + }, + "浅野風香" : { + "id" : "52", + "kana" : "あさのふうかおる", + "latest_hash" : "3e11cdda3fb461943a95a243ccb16db8", + "name" : "浅野風香" + }, + "浜口あやめ" : { + "id" : "192", + "kana" : "はまぐちあやめ", + "latest_hash" : "fc4b0d7524dab986a0d4a97f5eab93ff", + "name" : "浜口あやめ" + }, + "浜川愛結奈" : { + "id" : "165", + "kana" : "はまかわあいゆいな", + "latest_hash" : "aa9f7f62858b8a7afc5bf79a5d8bb989", + "name" : "浜川愛結奈" + }, + "海老原菜帆" : { + "id" : "151", + "kana" : "えびはらなほ", + "latest_hash" : "f918315bf0b28276e87d685d545c8145", + "name" : "海老原菜帆" + }, + "涼宮星花" : { + "id" : "37", + "kana" : "すずみやせいか", + "latest_hash" : "a27419ca801cfd72eb2a724f82cdaf55", + "name" : "涼宮星花" + }, + "渋谷凛" : { + "id" : "67", + "kana" : "しぶたにりん", + "latest_hash" : "4ebbcc60acba9e2760af8a5be417782d", + "name" : "渋谷凛" + }, + "瀬名詩織" : { + "id" : "103", + "kana" : "せなしおり", + "latest_hash" : "8518eb7db20611b6e579e44780f6fe24", + "name" : "瀬名詩織" + }, + "片桐早苗" : { + "id" : "157", + "kana" : "かたぎりさなえ", + "latest_hash" : "c28e1707af95249b5b67568cfb748a50", + "name" : "片桐早苗" + }, + "白坂小梅" : { + "id" : "114", + "kana" : "しらさかこうめ", + "latest_hash" : "8760de4f1ffcd5454f63f3332535bb24", + "name" : "白坂小梅" + }, + "白菊ほたる" : { + "id" : "61", + "kana" : "しらぎくほたる", + "latest_hash" : "9024cb32c76078e8f0e4850151c007ba", + "name" : "白菊ほたる" + }, + "的場梨沙" : { + "id" : "160", + "kana" : "まとばりさ", + "latest_hash" : "076ff2416464383dd10c0895f1118c57", + "name" : "的場梨沙" + }, + "相原雪乃" : { + "id" : "30", + "kana" : "あいはらゆきの", + "latest_hash" : "cfc329e650e8c8f39600ad33229d97db", + "name" : "相原雪乃" + }, + "相川千夏" : { + "id" : "72", + "kana" : "あいかわちなつ", + "latest_hash" : "4028037887d8707827e2a749bb925d5d", + "name" : "相川千夏" + }, + "相葉夕美" : { + "id" : "163", + "kana" : "あいばゆみ", + "latest_hash" : "eff3e13dd30475d420b7f95ce86c2bc4", + "name" : "相葉夕美" + }, + "相馬夏美" : { + "id" : "174", + "kana" : "そうまなつみ", + "latest_hash" : "53c6e0d594d07c777aa0cceeb7e425b8", + "name" : "相馬夏美" + }, + "真鍋いつき" : { + "id" : "145", + "kana" : "まなべいつき", + "latest_hash" : "83aa3c1928c1a0b2055c71ccd32ef090", + "name" : "真鍋いつき" + }, + "矢口美羽" : { + "id" : "142", + "kana" : "やぐちみわ", + "latest_hash" : "c0bb1ce2f048f36f6397fc8dd094cc23", + "name" : "矢口美羽" + }, + "神崎蘭子" : { + "id" : "98", + "kana" : "かんざきらんこ", + "latest_hash" : "5f1dd0a32dcb32f9b8e3ea9aa58a1e40", + "name" : "神崎蘭子" + }, + "神谷奈緒" : { + "id" : "74", + "kana" : "かみやなお", + "latest_hash" : "8511ad8903a41ce65a867c7d1d9fb90a", + "name" : "神谷奈緒" + }, + "福山舞" : { + "id" : "4", + "kana" : "ふくやままい", + "latest_hash" : "02a5755a9e817844b01702bd71f8a68f", + "name" : "福山舞" + }, + "秋月律子" : { + "id" : "108", + "kana" : "あきづきりつこ", + "latest_hash" : "1b3a397157d4c390983480f0b8ebb2a1", + "name" : "秋月律子" + }, + "秋月涼" : { + "id" : "203", + "kana" : "あきづきりょう", + "latest_hash" : "cb10db1e0bcf18c7ae8b49edee29eea2", + "name" : "秋月涼" + }, + "篠原礼" : { + "id" : "110", + "kana" : "しのはられい", + "latest_hash" : "084e23921a2680662428a561923bb395", + "name" : "篠原礼" + }, + "結城晴" : { + "id" : "129", + "kana" : "ゆうきはれ", + "latest_hash" : "f3b9ea014c6bc64c930947cc9221d3c9", + "name" : "結城晴" + }, + "綾瀬穂乃香" : { + "id" : "104", + "kana" : "あやせほのか", + "latest_hash" : "2c7b6d96a1fb1e0ca98ca465fa67c848", + "name" : "綾瀬穂乃香" + }, + "緒方智絵里" : { + "id" : "12", + "kana" : "おがたちえり", + "latest_hash" : "aab77d68d6c72c73efda675edbd387a8", + "name" : "緒方智絵里" + }, + "脇山珠美" : { + "id" : "121", + "kana" : "わきやまたまみ", + "latest_hash" : "65c1d041ea9ed32748e96188870b56f5", + "name" : "脇山珠美" + }, + "若林智香" : { + "id" : "166", + "kana" : "わかばやしともか", + "latest_hash" : "90acff12db7ec8895021c3726ee2ab58", + "name" : "若林智香" + }, + "荒木比奈" : { + "id" : "76", + "kana" : "あらきひな", + "latest_hash" : "df6fa045d58337acbd9725d8a940d1b4", + "name" : "荒木比奈" + }, + "菊地真" : { + "id" : "43", + "kana" : "きくちまこと", + "latest_hash" : "2838e5d36d4e11a09fac86270dcf63a4", + "name" : "菊地真" + }, + "萩原雪歩" : { + "id" : "176", + "kana" : "はぎわらゆきほ", + "latest_hash" : "a627c4d6e7a223402aa99e1d174dd7ce", + "name" : "萩原雪歩" + }, + "藤原肇" : { + "id" : "84", + "kana" : "ふじわらはじめ", + "latest_hash" : "eb1d57f9b906de305439f9ab26c6cdcf", + "name" : "藤原肇" + }, + "藤居朋" : { + "id" : "119", + "kana" : "ふじいとも", + "latest_hash" : "cc04b9fd7b06293b952152aef32f4561", + "name" : "藤居朋" + }, + "藤本里奈" : { + "id" : "22", + "kana" : "ふじもとりな", + "latest_hash" : "746f35295f4f371ec9b71219fb1224ce", + "name" : "藤本里奈" + }, + "衛藤美紗希" : { + "id" : "155", + "kana" : "えとうみさき", + "latest_hash" : "7b95eee4202b9c3265ba5a41194b1d34", + "name" : "衛藤美紗希" + }, + "西園寺琴歌" : { + "id" : "33", + "kana" : "さいおんじことか", + "latest_hash" : "37f641a6738f8d5735db957a37b781ae", + "name" : "西園寺琴歌" + }, + "西島櫂" : { + "id" : "159", + "kana" : "にしじまかい", + "latest_hash" : "dd34bfe74931aeab10c7aaafe2832d86", + "name" : "西島櫂" + }, + "西川保奈美" : { + "id" : "117", + "kana" : "にしかわほなみ", + "latest_hash" : "148c761bd9f2699953da23d185cfed2b", + "name" : "西川保奈美" + }, + "諸星きらり" : { + "id" : "171", + "kana" : "もろほしきらり", + "latest_hash" : "d5d01a505a212461f49c618591073cf5", + "name" : "諸星きらり" + }, + "財前時子" : { + "id" : "161", + "kana" : "ざいぜんときこ", + "latest_hash" : "7ade063367ad652bc5d05aa008a75237", + "name" : "財前時子" + }, + "赤城みりあ" : { + "id" : "143", + "kana" : "あかぎみりあ", + "latest_hash" : "f2713603ccfb1afc09437a853b864ccd", + "name" : "赤城みりあ" + }, + "赤西瑛梨華" : { + "id" : "28", + "kana" : "あかにしえいりか", + "latest_hash" : "2fc28fdf3ff00656454cd265ac6ff260", + "name" : "赤西瑛梨華" + }, + "輿水幸子" : { + "id" : "50", + "kana" : "こしみずさちこ", + "latest_hash" : "6510a11da53b691ab9031a461560116d", + "name" : "輿水幸子" + }, + "速水奏" : { + "id" : "123", + "kana" : "はやみそう", + "latest_hash" : "95d9d50a1d7378f34aaa25491b1fd0ec", + "name" : "速水奏" + }, + "遊佐こずえ" : { + "id" : "24", + "kana" : "ゆさこずえ", + "latest_hash" : "687b4206d88a37c16864b8f4d507f2cb", + "name" : "遊佐こずえ" + }, + "道明寺歌鈴" : { + "id" : "41", + "kana" : "どうみょうじうたすず", + "latest_hash" : "d9be7d1d689f9e143ff27dd1063a0040", + "name" : "道明寺歌鈴" + }, + "野々村そら" : { + "id" : "164", + "kana" : "ののむらそら", + "latest_hash" : "3c9777fee6bd72b52c4700f384987b3a", + "name" : "野々村そら" + }, + "長富蓮実" : { + "id" : "17", + "kana" : "ながとみはすみ", + "latest_hash" : "cd8477548a634299e065cc223b70eb74", + "name" : "長富蓮実" + }, + "間中美里" : { + "id" : "10", + "kana" : "まなかみさと", + "latest_hash" : "bd77e3aa1b781fed0b474a070e939eab", + "name" : "間中美里" + }, + "関裕美" : { + "id" : "19", + "kana" : "せきゆみ", + "latest_hash" : "6f26798de79180c3bc5aad8a14b31b34", + "name" : "関裕美" + }, + "難波笑美" : { + "id" : "191", + "kana" : "なんばえみ", + "latest_hash" : "557803a0324c4d494b78d83b42174e61", + "name" : "難波笑美" + }, + "首藤葵" : { + "id" : "195", + "kana" : "すどうあおい", + "latest_hash" : "b55c0b1bb4d08a833d7ae0fbbd248731", + "name" : "首藤葵" + }, + "高垣楓" : { + "id" : "97", + "kana" : "たかがきかえで", + "latest_hash" : "8f043af6f6c5ee0f0e01cd50a36a2f66", + "name" : "高垣楓" + }, + "高峯のあ" : { + "id" : "96", + "kana" : "たかみねのあ", + "latest_hash" : "eacc9bc4fe9128ac315bf016a2c356c4", + "name" : "高峯のあ" + }, + "高森藍子" : { + "id" : "135", + "kana" : "たかもりあいこ", + "latest_hash" : "4d91dd57c123958c50421bb04076c240", + "name" : "高森藍子" + }, + "高槻やよい" : { + "id" : "42", + "kana" : "たかつきやよい", + "latest_hash" : "404957c126156e54750231e4e58221ad", + "name" : "高槻やよい" + }, + "高橋礼子" : { + "id" : "71", + "kana" : "たかはしれいこ", + "latest_hash" : "79b7221bfb5db0a94baf512abe1eb5eb", + "name" : "高橋礼子" + }, + "鷹富士茄子" : { + "id" : "133", + "kana" : "たかふじなす", + "latest_hash" : "715b793aa4d3b15051658c0100f70bde", + "name" : "鷹富士茄子" + }, + "鷺沢文香" : { + "id" : "89", + "kana" : "さぎさわふみか", + "latest_hash" : "bd02113f22c12494c713a43bcc0c8e90", + "name" : "鷺沢文香" + }, + "黒川千秋" : { + "id" : "68", + "kana" : "くろかわちあき", + "latest_hash" : "1b13a47f1e86ec39ecf4974fe3049ff9", + "name" : "黒川千秋" + }, + "龍崎薫" : { + "id" : "137", + "kana" : "りゅうざきかおる", + "latest_hash" : "3d60bd5856309ade51e8d694c9ce0f57", + "name" : "龍崎薫" + } +} diff --git a/resource/db/master/core/unit_list-export.json b/resource/db/master/core/unit_list-export.json new file mode 100644 index 0000000..ff403e2 --- /dev/null +++ b/resource/db/master/core/unit_list-export.json @@ -0,0 +1,865 @@ +[ { + "id" : "0", + "member" : [ "浜口あやめ" ], + "name" : "くノ一あやめ忍法帖" +}, { + "id" : "1", + "member" : [ "神崎蘭子" ], + "name" : "Rosenburg Engel" +}, { + "id" : "2", + "member" : [ "吉岡沙紀", "小松伊吹" ], + "name" : "アーティスター" +}, { + "id" : "3", + "member" : [ "アナスタシア", "前川みく" ], + "name" : "あーにゃんみくにゃん" +}, { + "id" : "4", + "member" : [ "櫻井桃華", "市原仁奈" ], + "name" : "イカバラプリンセス" +}, { + "id" : "5", + "member" : [ "高森藍子", "道明寺歌鈴" ], + "name" : "インディゴ・ベル" +}, { + "id" : "6", + "member" : [ "難波笑美", "上田鈴帆" ], + "name" : "笑美と鈴帆の爆笑エブリデイ" +}, { + "id" : "7", + "member" : [ "佐藤心", "沢田麻理菜" ], + "name" : "エターナルレディエイト" +}, { + "id" : "8", + "member" : [ "江上椿", "片桐早苗" ], + "name" : "越後小町" +}, { + "id" : "9", + "member" : [ "白坂小梅", "松永涼" ], + "name" : "エルドリッチ・ロアテラー" +}, { + "id" : "10", + "member" : [ "和久井留美", "東郷あい" ], + "name" : "エレガントインモラリスト" +}, { + "id" : "11", + "member" : [ "今井加奈", "三村かな子" ], + "name" : "かな☆かな☆ふぁんしー" +}, { + "id" : "12", + "member" : [ "大西由里子", "荒木比奈" ], + "name" : "壁サーの花" +}, { + "id" : "13", + "member" : [ "輿水幸子", "佐藤心" ], + "name" : "カワスウィーティーなボクはぁと(仮)" +}, { + "id" : "14", + "member" : [ "藤原肇", "鷺沢文香" ], + "name" : "月下氷姫" +}, { + "id" : "15", + "member" : [ "日野茜", "堀裕子" ], + "name" : "サイキックヒーツ" +}, { + "id" : "16", + "member" : [ "上条春菜", "荒木比奈" ], + "name" : "サイバーグラス" +}, { + "id" : "17", + "member" : [ "森久保乃々", "星輝子" ], + "name" : "サイレントスクリーマー" +}, { + "id" : "18", + "member" : [ "大槻唯", "相川千夏" ], + "name" : "サクラブロッサム" +}, { + "id" : "19", + "member" : [ "浜口あやめ", "片桐早苗" ], + "name" : "さつきの頃" +}, { + "id" : "20", + "member" : [ "藤原肇", "依田芳乃" ], + "name" : "山紫水明" +}, { + "id" : "21", + "member" : [ "島村卯月", "本田未央" ], + "name" : "ジェネレーションオブサマー" +}, { + "id" : "22", + "member" : [ "三船美優", "安部菜々" ], + "name" : "シャイニー・アーリーデイズ" +}, { + "id" : "23", + "member" : [ "佐藤心", "安部菜々" ], + "name" : "しゅがしゅが☆み~ん" +}, { + "id" : "24", + "member" : [ "有浦柑奈", "梅木音葉" ], + "name" : "シンフォニック・ワールド" +}, { + "id" : "25", + "member" : [ "十時愛梨", "三村かな子" ], + "name" : "スウィートラヴァーズ" +}, { + "id" : "26", + "member" : [ "矢口美羽", "楊菲菲" ], + "name" : "スクールガールフレンズ" +}, { + "id" : "27", + "member" : [ "中野有香", "水本ゆかり" ], + "name" : "ストレートフルート" +}, { + "id" : "28", + "member" : [ "堀裕子", "氏家むつみ" ], + "name" : "スパニッシュスタイル" +}, { + "id" : "29", + "member" : [ "水木聖來", "松本沙理奈" ], + "name" : "セーラーマリナー" +}, { + "id" : "30", + "member" : [ "丹羽仁美", "浜口あやめ" ], + "name" : "センゴク☆ランブ" +}, { + "id" : "31", + "member" : [ "ナターリア", "ライラ" ], + "name" : "ソル・カマル" +}, { + "id" : "32", + "member" : [ "二宮飛鳥", "神崎蘭子" ], + "name" : "ダークイルミネイト" +}, { + "id" : "33", + "member" : [ "椎名法子", "大原みちる" ], + "name" : "チーム・フラワー" +}, { + "id" : "34", + "member" : [ "速水奏", "新田美波" ], + "name" : "デア・アウローラ" +}, { + "id" : "35", + "member" : [ "安斎都", "古澤頼子" ], + "name" : "ディテクティブヴァーサス" +}, { + "id" : "36", + "member" : [ "塩見周子", "宮本フレデリカ" ], + "name" : "テンプテーション・アイズ" +}, { + "id" : "37", + "member" : [ "伊集院惠", "ケイト" ], + "name" : "ナイトブルーレザー" +}, { + "id" : "38", + "member" : [ "浜口あやめ", "脇山珠美" ], + "name" : "忍武☆繚乱" +}, { + "id" : "39", + "member" : [ "向井拓海", "藤本里奈" ], + "name" : "ノーティギャルズ" +}, { + "id" : "40", + "member" : [ "五十嵐響子", "吉岡沙紀" ], + "name" : "ハートハーモナイズ" +}, { + "id" : "41", + "member" : [ "小早川紗枝", "塩見周子" ], + "name" : "羽衣小町" +}, { + "id" : "42", + "member" : [ "桐野アヤ", "槙原志保" ], + "name" : "バリスタイル" +}, { + "id" : "43", + "member" : [ "小早川紗枝", "小日向美穂" ], + "name" : "春色姫君" +}, { + "id" : "44", + "member" : [ "棟方愛海", "矢口美羽" ], + "name" : "ハワイアンツイン" +}, { + "id" : "45", + "member" : [ "結城晴", "的場梨沙" ], + "name" : "ビートシューター" +}, { + "id" : "46", + "member" : [ "小関麗奈", "南条光" ], + "name" : "ヒーローヴァーサス" +}, { + "id" : "47", + "member" : [ "古賀小春", "結城晴" ], + "name" : "ひつじさんとうさぎさん" +}, { + "id" : "48", + "member" : [ "棟方愛海", "喜多日菜子" ], + "name" : "日菜子と愛海の妄想ワールド" +}, { + "id" : "49", + "member" : [ "浅野風香", "奥山沙織" ], + "name" : "ピュアリーツイン" +}, { + "id" : "50", + "member" : [ "城ヶ崎美嘉", "城ヶ崎莉嘉" ], + "name" : "ファミリアツイン" +}, { + "id" : "51", + "member" : [ "相葉夕美", "西園寺琴歌" ], + "name" : "フィオレンティナ" +}, { + "id" : "52", + "member" : [ "川島瑞樹", "村上巴" ], + "name" : "フォーリンシーサイド" +}, { + "id" : "53", + "member" : [ "黒川千秋", "水野翠" ], + "name" : "ブリヤント・ノワール" +}, { + "id" : "54", + "member" : [ "姫川友紀", "結城晴" ], + "name" : "ボール・フレンズ" +}, { + "id" : "55", + "member" : [ "速水奏", "高垣楓" ], + "name" : "ミステリアスアイズ" +}, { + "id" : "56", + "member" : [ "藤居朋", "堀裕子" ], + "name" : "ミステリアスガールズ" +}, { + "id" : "57", + "member" : [ "二宮飛鳥", "相葉夕美" ], + "name" : "ミステリックガーデン" +}, { + "id" : "58", + "member" : [ "白菊ほたる", "鷹富士茄子" ], + "name" : "ミス・フォーチュン" +}, { + "id" : "59", + "member" : [ "古賀小春", "小関麗奈" ], + "name" : "ムシバレイナと小春ちゃん" +}, { + "id" : "60", + "member" : [ "速水奏", "北条加蓮" ], + "name" : "モノクロームリリィ" +}, { + "id" : "61", + "member" : [ "櫻井桃華", "橘ありす" ], + "name" : "ももべりー" +}, { + "id" : "62", + "member" : [ "桐野アヤ", "遊佐こずえ" ], + "name" : "ようせいさんとおねえさん" +}, { + "id" : "63", + "member" : [ "高垣楓", "並木芽衣子" ], + "name" : "ラブリーダイナーズ" +}, { + "id" : "64", + "member" : [ "南条光", "横山千佳" ], + "name" : "リトルヒーロー" +}, { + "id" : "65", + "member" : [ "宮本フレデリカ", "一ノ瀬志希" ], + "name" : "レイジー・レイジー" +}, { + "id" : "66", + "member" : [ "橘ありす", "村上巴" ], + "name" : "レッドベリィズ" +}, { + "id" : "67", + "member" : [ "高橋礼子", "木場真奈美" ], + "name" : "レディビースト" +}, { + "id" : "68", + "member" : [ "池袋晶葉", "ライラ" ], + "name" : "ロボフレンズ" +}, { + "id" : "69", + "member" : [ "高森藍子", "十時愛梨" ], + "name" : "Ai's" +}, { + "id" : "70", + "member" : [ "前川みく", "多田李衣菜" ], + "name" : "*(Asterisk)" +}, { + "id" : "71", + "member" : [ "及川雫", "大沼くるみ" ], + "name" : "B.B" +}, { + "id" : "72", + "member" : [ "一ノ瀬志希", "二宮飛鳥" ], + "name" : "Dimension-3" +}, { + "id" : "73", + "member" : [ "赤西瑛梨華", "キャシー・グラハム" ], + "name" : "ERICATHY" +}, { + "id" : "74", + "member" : [ "宮本フレデリカ", "速水奏" ], + "name" : "FrenchKisS" +}, { + "id" : "75", + "member" : [ "高森藍子", "相葉夕美" ], + "name" : "Flowery" +}, { + "id" : "76", + "member" : [ "双葉杏", "諸星きらり" ], + "name" : "HappyHappyTwin" +}, { + "id" : "77", + "member" : [ "赤城みりあ", "白坂小梅" ], + "name" : "Jumpin'Joker" +}, { + "id" : "78", + "member" : [ "新田美波", "アナスタシア" ], + "name" : "LOVE LAIKA" +}, { + "id" : "79", + "member" : [ "星輝子", "白坂小梅" ], + "name" : "NiGHT ENCOUNTER" +}, { + "id" : "80", + "member" : [ "堀裕子", "安部菜々" ], + "name" : "P・U" +}, { + "id" : "81", + "member" : [ "多田李衣菜", "木村夏樹" ], + "name" : "Rock the Beat" +}, { + "id" : "82", + "member" : [ "白坂小梅", "神崎蘭子" ], + "name" : "Rosenburg Alptraum" +}, { + "id" : "83", + "member" : [ "藤本里奈", "早坂美玲" ], + "name" : "Shock'in Pink!" +}, { + "id" : "84", + "member" : [ "日下部若葉", "三船美優", "市原仁奈" ], + "name" : "アニマルパーク" +}, { + "id" : "85", + "member" : [ "森久保乃々", "星輝子", "佐久間まゆ" ], + "name" : "アンダーザデスク" +}, { + "id" : "86", + "member" : [ "榊原里美", "ヘレン", "野々村そら" ], + "name" : "イタリアンスタイル" +}, { + "id" : "87", + "member" : [ "原田美世", "鷹富士茄子", "姫川友紀" ], + "name" : "ウィンター・F・ドライバーズ" +}, { + "id" : "88", + "member" : [ "桃井あずき", "東郷あい", "片桐早苗" ], + "name" : "桜花小町" +}, { + "id" : "89", + "member" : [ "月宮雅", "岸部彩華", "衛藤美紗希" ], + "name" : "ガールズ・パワー" +}, { + "id" : "90", + "member" : [ "輿水幸子", "白坂小梅", "星輝子" ], + "name" : "カワイイボクと142's" +}, { + "id" : "91", + "member" : [ "緒方智絵里", "神谷奈緒", "諸星きらり" ], + "name" : "京町乙女" +}, { + "id" : "92", + "member" : [ "龍崎薫", "有浦柑奈", "藤居朋" ], + "name" : "ゴスペルシスターズ" +}, { + "id" : "93", + "member" : [ "栗原ネネ", "新田美波", "三好紗南" ], + "name" : "サマーライブセーラー" +}, { + "id" : "94", + "member" : [ "星輝子", "神谷奈緒", "緒方智絵里" ], + "name" : "シャイニングゴッドチェリー" +}, { + "id" : "95", + "member" : [ "遊佐こずえ", "吉岡沙紀", "西島櫂" ], + "name" : "スペーススタイル" +}, { + "id" : "96", + "member" : [ "西園寺琴歌", "橘ありす", "姫川友紀" ], + "name" : "チャレンジクッキング" +}, { + "id" : "97", + "member" : [ "大原みちる", "伊集院惠", "北川真尋" ], + "name" : "ドイツスタイル" +}, { + "id" : "98", + "member" : [ "池袋晶葉", "ライラ", "的場梨沙" ], + "name" : "ニューイヤースタイル" +}, { + "id" : "99", + "member" : [ "村松さくら", "大石泉", "土屋亜子" ], + "name" : "ニューウェーブ" +}, { + "id" : "100", + "member" : [ "井村雪菜", "藤居朋", "杉坂海" ], + "name" : "ハートウォーマー" +}, { + "id" : "101", + "member" : [ "関裕美", "木場真奈美", "喜多見柚" ], + "name" : "ハロウィンヴァンパイア" +}, { + "id" : "102", + "member" : [ "池袋晶葉", "首藤葵", "岡崎泰葉" ], + "name" : "パワフルヒーラーズ" +}, { + "id" : "103", + "member" : [ "今井加奈", "藤原肇", "高森藍子" ], + "name" : "ビビッドカラーエイジ" +}, { + "id" : "104", + "member" : [ "櫻井桃華", "的場梨沙", "橘ありす" ], + "name" : "ももぺあべりー" +}, { + "id" : "105", + "member" : [ "岡崎泰葉", "櫻井桃華", "龍崎薫" ], + "name" : "リトルチェリーブロッサム" +}, { + "id" : "106", + "member" : [ "原田美世", "脇山珠美", "大槻唯" ], + "name" : "レインドロップ" +}, { + "id" : "107", + "member" : [ "多田李衣菜", "三村かな子", "城ヶ崎莉嘉" ], + "name" : "ロッキングガール" +}, { + "id" : "108", + "member" : [ "森久保乃々", "星輝子", "早坂美玲" ], + "name" : "individuals" +}, { + "id" : "109", + "member" : [ "島村卯月", "渋谷凛", "本田未央" ], + "name" : "new generations" +}, { + "id" : "110", + "member" : [ "水木聖來", "松本沙理奈", "太田優" ], + "name" : "アップトゥデイト" +}, { + "id" : "111", + "member" : [ "木場真奈美", "星輝子", "水木聖來" ], + "name" : "アンチェイン・シグナル" +}, { + "id" : "112", + "member" : [ "仙崎恵磨", "藤本里奈", "大槻唯" ], + "name" : "ギャルズパーティー" +}, { + "id" : "113", + "member" : [ "大槻唯", "城ヶ崎美嘉", "藤本里奈" ], + "name" : "セクシーギャルズ" +}, { + "id" : "114", + "member" : [ "成宮由愛", "望月聖", "古賀小春" ], + "name" : "ドリームホープスプリング" +}, { + "id" : "115", + "member" : [ "神谷奈緒", "荒木比奈", "安部菜々" ], + "name" : "虹色ドリーマー" +}, { + "id" : "116", + "member" : [ "前川みく", "高峯のあ", "アナスタシア" ], + "name" : "にゃん・にゃん・にゃん" +}, { + "id" : "117", + "member" : [ "木場真奈美", "吉岡沙紀", "木村夏樹" ], + "name" : "ハードメテオライツ" +}, { + "id" : "118", + "member" : [ "小室千奈美", "松山久美子", "浜川愛結奈" ], + "name" : "ビューティーアリュール" +}, { + "id" : "119", + "member" : [ "桐野アヤ", "小松伊吹", "槙原志保" ], + "name" : "フランメ・ルージュ" +}, { + "id" : "120", + "member" : [ "氏家むつみ", "成宮由愛", "古賀小春" ], + "name" : "ブルームジャーニー" +}, { + "id" : "121", + "member" : [ "大和亜季", "栗原ネネ", "涼宮星花" ], + "name" : "ヘルシーサバイブ" +}, { + "id" : "122", + "member" : [ "西島櫂", "愛野渚", "吉岡沙紀" ], + "name" : "ホットアートジャンピン" +}, { + "id" : "123", + "member" : [ "木村夏樹", "向井拓海", "藤本里奈" ], + "name" : "マッシブライダース" +}, { + "id" : "124", + "member" : [ "高垣楓", "片桐早苗", "川島瑞樹" ], + "name" : "女神たちの夏宴" +}, { + "id" : "125", + "member" : [ "ナターリア", "ケイト", "メアリー・コクラン" ], + "name" : "ユア・フレンズ" +}, { + "id" : "126", + "member" : [ "一ノ瀬志希", "宮本フレデリカ", "塩見周子" ], + "name" : "誘惑イビル" +}, { + "id" : "127", + "member" : [ "佐久間まゆ", "白坂小梅", "北条加蓮" ], + "name" : "落花流水" +}, { + "id" : "128", + "member" : [ "榊原里美", "棟方愛海", "難波笑美" ], + "name" : "ラビュー☆アイス☆マウンテン" +}, { + "id" : "129", + "member" : [ "関裕美", "白菊ほたる", "森久保乃々" ], + "name" : "ワンステップス" +}, { + "id" : "130", + "member" : [ "関裕美", "白菊ほたる", "松尾千鶴" ], + "name" : "GIRLS BE" +}, { + "id" : "131", + "member" : [ "輿水幸子", "小早川紗枝", "姫川友紀" ], + "name" : "KBYD" +}, { + "id" : "132", + "member" : [ "有浦柑奈", "二宮飛鳥", "瀬名詩織" ], + "name" : "thinE/Dasein" +}, { + "id" : "133", + "member" : [ "村松さくら", "大原みちる", "今井加奈" ], + "name" : "スケルツォ・プリマヴェーラ" +}, { + "id" : "134", + "member" : [ "水本ゆかり", "涼宮星花", "西園寺琴歌" ], + "name" : "ノーブルセレブリティ" +}, { + "id" : "135", + "member" : [ "島村卯月", "小日向美穂", "緒方智絵里" ], + "name" : "ピンキーキュート" +}, { + "id" : "136", + "member" : [ "中野有香", "水本ゆかり", "椎名法子" ], + "name" : "メロウ・イエロー" +}, { + "id" : "137", + "member" : [ "三村かな子", "双葉杏", "緒方智絵里" ], + "name" : "CANDY ISLAND" +}, { + "id" : "138", + "member" : [ "島村卯月", "小日向美穂", "五十嵐響子" ], + "name" : "ピンクチェックスクール" +}, { + "id" : "139", + "member" : [ "前川みく", "安部菜々", "緒方智絵里" ], + "name" : "397cherry" +}, { + "id" : "140", + "member" : [ "東郷あい", "川島瑞樹", "吉岡沙紀" ], + "name" : "アイドルミズキ with AS" +}, { + "id" : "141", + "member" : [ "アナスタシア", "鷺沢文香", "高垣楓" ], + "name" : "トランクィル・ウィスパー" +}, { + "id" : "142", + "member" : [ "和久井留美", "服部瞳子", "三船美優" ], + "name" : "バレンタイン反省会" +}, { + "id" : "143", + "member" : [ "大石泉", "浅利七海", "八神マキノ" ], + "name" : "ファタ・モルガーナ" +}, { + "id" : "144", + "member" : [ "渋谷凛", "神谷奈緒", "北条加蓮" ], + "name" : "Triad Primus" +}, { + "id" : "145", + "member" : [ "新田美波", "アナスタシア", "神崎蘭子" ], + "name" : "LOVE LAIKA with Rosenburg Engel" +}, { + "id" : "146", + "member" : [ "本田未央", "矢口美羽", "松山久美子" ], + "name" : "サンセットノスタルジー" +}, { + "id" : "147", + "member" : [ "及川雫", "片桐早苗", "堀裕子" ], + "name" : "セクシーギルティ" +}, { + "id" : "148", + "member" : [ "日野茜", "姫川友紀", "若林智香" ], + "name" : "チアフルボンバーズ" +}, { + "id" : "149", + "member" : [ "諸星きらり", "城ヶ崎莉嘉", "赤城みりあ" ], + "name" : "凸レーション" +}, { + "id" : "150", + "member" : [ "若林智香", "斉藤洋子", "真鍋いつき" ], + "name" : "ヒートアップ☆チアーズ" +}, { + "id" : "151", + "member" : [ "土屋亜子", "矢口美羽", "喜多日菜子" ], + "name" : "ブエナ・スエルテ" +}, { + "id" : "152", + "member" : [ "姫川友紀", "難波笑美", "村上巴" ], + "name" : "B.B.ロワイヤル" +}, { + "id" : "153", + "member" : [ "本田未央", "日野茜", "高森藍子" ], + "name" : "Positive Passion" +}, { + "id" : "154", + "member" : [ "江上椿", "八神マキノ", "小関麗奈", "仙崎恵磨" ], + "name" : "秋色温泉" +}, { + "id" : "155", + "member" : [ "速水奏", "大槻唯", "アナスタシア", "宮本フレデリカ" ], + "name" : "セレクテッド" +}, { + "id" : "156", + "member" : [ "丹羽仁美", "脇山珠美", "浜口あやめ", "首藤葵" ], + "name" : "センゴク☆華☆ランブ" +}, { + "id" : "157", + "member" : [ "柳清良", "棟方愛海", "佐々木千枝", "海老原菜帆" ], + "name" : "デビリッシュゴシック" +}, { + "id" : "158", + "member" : [ "双葉杏", "前川みく", "新田美波", "城ヶ崎莉嘉" ], + "name" : "ハイカラサクラ" +}, { + "id" : "159", + "member" : [ "黒川千秋", "沢田麻理菜", "相馬夏美", "間中美里" ], + "name" : "パステル・カクテル" +}, { + "id" : "160", + "member" : [ "椎名法子", "速水奏", "小松伊吹", "中野有香" ], + "name" : "ハッピーバレンタイン" +}, { + "id" : "161", + "member" : [ "丹羽仁美", "篠原礼", "森久保乃々", "上田鈴帆" ], + "name" : "ハロウィンナイト" +}, { + "id" : "162", + "member" : [ "白菊ほたる", "小室千奈美", "結城晴", "メアリー・コクラン" ], + "name" : "ブライダルセレクション" +}, { + "id" : "163", + "member" : [ "工藤忍", "綾瀬穂乃香", "喜多見柚", "桃井あずき" ], + "name" : "フリルドスクエア" +}, { + "id" : "164", + "member" : [ "横山千佳", "福山舞", "成宮由愛", "小関麗奈" ], + "name" : "マジカルテット" +}, { + "id" : "165", + "member" : [ "櫻井桃華", "大西由里子", "森久保乃々", "杉坂海" ], + "name" : "メルヘンゴシック" +}, { + "id" : "166", + "member" : [ "乙倉悠貴", "相川千夏", "岡崎泰葉", "北川真尋" ], + "name" : "メルヘンアニマルズ" +}, { + "id" : "167", + "member" : [ "伊集院惠", "相馬夏美", "並木芽衣子", "江上椿" ], + "name" : "ロマンティックツアーズ" +}, { + "id" : "168", + "member" : [ "前川みく", "多田李衣菜", "木村夏樹", "安部菜々" ], + "name" : "*(Asterisk) with なつなな" +}, { + "id" : "169", + "member" : [ "多田李衣菜", "ライラ", "冴島清美", "涼宮星花" ], + "name" : "FOUR PIECE" +}, { + "id" : "170", + "member" : [ "涼宮星花", "ケイト", "仙崎恵磨", "メアリー・コクラン" ], + "name" : "UKスタイル" +}, { + "id" : "171", + "member" : [ "東郷あい", "浅野風香", "櫻井桃華", "瀬名詩織" ], + "name" : "Black/White-Roses" +}, { + "id" : "172", + "member" : [ "関裕美", "白菊ほたる", "松尾千鶴", "岡崎泰葉" ], + "name" : "GIRLS BE NEXT STEP" +}, { + "id" : "173", + "member" : [ "三村かな子", "持田亜里沙", "緒方智絵里", "柳瀬美由紀" ], + "name" : "ピンクドットバルーン" +}, { + "id" : "174", + "member" : [ "大槻唯", "姫川友紀", "愛野渚", "龍崎薫" ], + "name" : "カナリアサマー" +}, { + "id" : "175", + "member" : [ "木村夏樹", "沢田麻理菜", "斉藤洋子", "真鍋いつき" ], + "name" : "ライトグリーンセーフ" +}, { + "id" : "176", + "member" : [ "向井拓海", "藤本里奈", "松永涼", "大和亜季", "木村夏樹" ], + "name" : "炎陣" +}, { + "id" : "177", + "member" : [ "古賀小春", "福山舞", "的場梨沙", "村上巴", "結城晴" ], + "name" : "桜舞隊" +}, { + "id" : "178", + "member" : [ "海老原菜帆", "柳瀬美由紀", "脇山珠美", "楊菲菲", "長富蓮実" ], + "name" : "からぱれ" +}, { + "id" : "179", + "member" : [ "道明寺歌鈴", "浜口あやめ", "脇山珠美", "小早川紗枝", "依田芳乃" ], + "name" : "春霞" +}, { + "id" : "180", + "member" : [ "佐久間まゆ", "松永涼", "梅木音葉", "上田鈴帆", "難波笑美" ], + "name" : "ハロウィンパーティー" +}, { + "id" : "181", + "member" : [ "今井加奈", "桐野アヤ", "小室千奈美", "沢田麻理菜", "北川真尋" ], + "name" : "フレッシュアスリーテス" +}, { + "id" : "182", + "member" : [ "横山千佳", "五十嵐響子", "水木聖來", "瀬名詩織", "及川雫" ], + "name" : "マーメイドパラダイス" +}, { + "id" : "183", + "member" : [ "クラリス", "東郷あい", "白坂小梅", "並木芽衣子", "槙原志保" ], + "name" : "メイドコレクション" +}, { + "id" : "184", + "member" : [ "高垣楓", "佐藤心", "安部菜々", "三船美優", "片桐早苗" ], + "name" : "宵乙女" +}, { + "id" : "185", + "member" : [ "速水奏", "塩見周子", "宮本フレデリカ", "一ノ瀬志希", "城ヶ崎美嘉" ], + "name" : "LiPPS" +}, { + "id" : "186", + "member" : [ "双葉杏", "城ヶ崎莉嘉", "二宮飛鳥", "早坂美玲", "白坂小梅" ], + "name" : "LittlePOPS" +}, { + "id" : "187", + "member" : [ "アナスタシア", "神谷奈緒", "中野有香", "前川みく", "星輝子" ], + "name" : "NEX-US" +}, { + "id" : "188", + "member" : [ "三村かな子", "椎名法子", "十時愛梨", "及川雫", "森久保乃々" ], + "name" : "Sweetches" +}, { + "id" : "189", + "member" : [ "新田美波", "鷺沢文香", "橘ありす", "高森藍子", "相葉夕美" ], + "name" : "アインフェリア" +}, { + "id" : "190", + "member" : [ "川島瑞樹", "日野茜", "堀裕子", "上田鈴帆", "難波笑美" ], + "name" : "サマプリ" +}, { + "id" : "191", + "member" : [ "五十嵐響子", "姫川友紀", "水本ゆかり", "諸星きらり", "乙倉悠貴" ], + "name" : "Love Yell" +}, { + "id" : "192", + "member" : [ "佐久間まゆ", "北条加蓮", "小日向美穂", "多田李衣菜", "緒方智絵里" ], + "name" : "Masque:Rade" +}, { + "id" : "193", + "member" : [ "間中美里", "中野有香", "椎名法子", "水本ゆかり", "今井加奈" ], + "name" : "イエローリリー" +}, { + "id" : "194", + "member" : [ "三村かな子", "緒方智絵里", "輿水幸子", "佐久間まゆ", "小早川紗枝" ], + "name" : "サクヤヒメ" +}, { + "id" : "195", + "member" : [ "安部菜々", "島村卯月", "小日向美穂", "双葉杏", "前川みく" ], + "name" : "C5" +}, { + "id" : "196", + "member" : [ "宮本フレデリカ", "一ノ瀬志希", "櫻井桃華", "中野有香", "五十嵐響子" ], + "name" : "la Roseraie" +}, { + "id" : "197", + "member" : [ "渋谷凛", "高垣楓", "神崎蘭子", "多田李衣菜", "新田美波" ], + "name" : "アズール・ムジカ" +}, { + "id" : "198", + "member" : [ "佐々木千枝", "荒木比奈", "川島瑞樹", "上条春菜", "松本沙理奈" ], + "name" : "ブルーナポレオン" +}, { + "id" : "199", + "member" : [ "東郷あい", "桐野アヤ", "相川千夏", "高橋礼子", "黒川千秋" ], + "name" : "レッドバラード" +}, { + "id" : "200", + "member" : [ "鷺沢文香", "速水奏", "橘ありす", "塩見周子", "二宮飛鳥" ], + "name" : "CAERULA" +}, { + "id" : "201", + "member" : [ "アナスタシア", "川島瑞樹", "白坂小梅", "神谷奈緒", "北条加蓮" ], + "name" : "Caskets" +}, { + "id" : "202", + "member" : [ "姫川友紀", "市原仁奈", "片桐早苗", "大槻唯", "相葉夕美" ], + "name" : "サンフラワー" +}, { + "id" : "203", + "member" : [ "十時愛梨", "日野茜", "高森藍子", "星輝子", "堀裕子" ], + "name" : "ゼッケンズ" +}, { + "id" : "204", + "member" : [ "城ヶ崎莉嘉", "諸星きらり", "城ヶ崎美嘉", "本田未央", "赤城みりあ" ], + "name" : "トロピカル☆スターズ" +}, { + "id" : "205", + "member" : [ "十時愛梨", "神崎蘭子", "渋谷凛", "塩見周子", "島村卯月" ], + "name" : "シンデレラガール" +}, { + "id" : "206", + "member" : [ "松本沙理奈", "海老原菜帆", "間中美里", "篠原礼", "兵藤レナ", "西川保奈美" ], + "name" : "セクシーボンデージ" +}, { + "id" : "207", + "member" : [ "柳清良", "佐藤心", "柊志乃", "斉藤洋子", "水野翠", "高橋礼子", "間中美里" ], + "name" : "ムーランルージュ" +}, { + "id" : "208", + "member" : [ "相川千夏", "兵藤レナ", "野々村そら", "仙崎恵磨", "古賀小春", "三好紗南", "大和亜季" ], + "name" : "ロワイヤルスタイル" +}, { + "id" : "209", + "member" : [ "椎名法子", "結城晴", "財前時子", "大原みちる", "吉岡沙紀", "難波笑美", "黒川千秋", "長富蓮実", "桐野アヤ", "藤原肇", "間中美里" ], + "name" : "ロワイヤルスタイルNP" +}, { + "id" : "210", + "member" : [ "クラリス", "服部瞳子", "栗原ネネ", "丹羽仁美", "松本沙理奈", "八神マキノ", "篠原礼", "柳瀬美由紀", "若林智香", "古澤頼子", "福山舞", "衛藤美紗希" ], + "name" : "ロワイヤルスタイルND" +}, { + "id" : "211", + "member" : [ "上田鈴帆", "村松さくら", "北川真尋", "佐城雪美", "冴島清美", "浅野風香" ], + "name" : "ワンダー・フル" +}, { + "id" : "212", + "member" : [ "小日向美穂", "佐久間まゆ", "輿水幸子", "川島瑞樹", "高垣楓", "白坂小梅", "十時愛梨", "城ヶ崎美嘉", "日野茜" ], + "name" : "CINDERELLA GIRLS" +}, { + "id" : "213", + "member" : [ "島村卯月", "渋谷凛", "本田未央", "赤城みりあ", "アナスタシア", "緒方智絵里", "神崎蘭子", "城ヶ崎莉嘉", "多田李衣菜", "新田美波", "双葉杏", "前川みく", "三村かな子", "諸星きらり" ], + "name" : "CINDERELLA PROJECT" +}, { + "id" : "214", + "member" : [ "佐々木千枝", "横山千佳", "福山舞", "龍崎薫", "古賀小春", "橘ありす", "成宮由愛", "日下部若葉", "佐城雪美", "小関麗奈", "柳瀬美由紀", "南条光", "大沼くるみ", "的場梨沙", "市原仁奈", "赤城みりあ", "櫻井桃華", "メアリー・コクラン" ], + "name" : "L.M.B.G" +}, { + "id" : "215", + "member" : [ "速水奏", "塩見周子", "宮本フレデリカ", "鷺沢文香", "大槻唯", "橘ありす", "アナスタシア", "渋谷凛", "神谷奈緒", "北条加蓮" ], + "name" : "Project:Krone" +} ] diff --git a/resource/db/master/dere_overview.json b/resource/db/master/dere_overview.json deleted file mode 100644 index 8c46379..0000000 --- a/resource/db/master/dere_overview.json +++ /dev/null @@ -1,1220 +0,0 @@ -{ - "島村卯月": { - "id": "1", - "name": "島村卯月", - "kana": "しまむらうづき", - "latest_hash": "1338de950f95214e111dad2943f191c8" - }, - "中野有香": { - "id": "2", - "name": "中野有香", - "kana": "なかのゆか", - "latest_hash": "b1976493a44373a42a7087ea012da84a" - }, - "水本ゆかり": { - "id": "3", - "name": "水本ゆかり", - "kana": "みずもとゆかり", - "latest_hash": "0ae0b50138bbf05741509420d5324943" - }, - "福山舞": { - "id": "4", - "name": "福山舞", - "kana": "ふくやままい", - "latest_hash": "02a5755a9e817844b01702bd71f8a68f" - }, - "椎名法子": { - "id": "5", - "name": "椎名法子", - "kana": "しいなのりこ", - "latest_hash": "6e42fd90357609b6d27c0afa237f117b" - }, - "今井加奈": { - "id": "6", - "name": "今井加奈", - "kana": "いまいかな", - "latest_hash": "2ed07d073761b8d9b26106a1bebea34a" - }, - "持田亜里沙": { - "id": "7", - "name": "持田亜里沙", - "kana": "もちだありさ", - "latest_hash": "baf115536838f243cc9a52df9853fb22" - }, - "三村かな子": { - "id": "8", - "name": "三村かな子", - "kana": "みむらかなこ", - "latest_hash": "c8c44f8080c9c5fe57633092232f5dee" - }, - "奥山沙織": { - "id": "9", - "name": "奥山沙織", - "kana": "おくやまさおり", - "latest_hash": "d5524d87d135dae077956ca332579a7e" - }, - "間中美里": { - "id": "10", - "name": "間中美里", - "kana": "まなかみさと", - "latest_hash": "bd77e3aa1b781fed0b474a070e939eab" - }, - "小日向美穂": { - "id": "11", - "name": "小日向美穂", - "kana": "おびなたみほ", - "latest_hash": "6c7bab6998ae7b616fc1598308ba201b" - }, - "緒方智絵里": { - "id": "12", - "name": "緒方智絵里", - "kana": "おがたちえり", - "latest_hash": "aab77d68d6c72c73efda675edbd387a8" - }, - "五十嵐響子": { - "id": "13", - "name": "五十嵐響子", - "kana": "いがらしきょうこ", - "latest_hash": "0bacaa88e323666ac8790a16a2ac46ee" - }, - "柳瀬美由紀": { - "id": "14", - "name": "柳瀬美由紀", - "kana": "やなせみゆき", - "latest_hash": "12c2c842a331db791b909c0003a105ba" - }, - "櫻井桃華": { - "id": "15", - "name": "櫻井桃華", - "kana": "さくらいももか", - "latest_hash": "d32d219a3c0ad6dc84734d1fc3f9f94e" - }, - "江上椿": { - "id": "16", - "name": "江上椿", - "kana": "えがみつばき", - "latest_hash": "beba5121254d967e0be4895fbe2fac3c" - }, - "長富蓮実": { - "id": "17", - "name": "長富蓮実", - "kana": "ながとみはすみ", - "latest_hash": "cd8477548a634299e065cc223b70eb74" - }, - "横山千佳": { - "id": "18", - "name": "横山千佳", - "kana": "よこやまちか", - "latest_hash": "d02199911575371c301fa3f8d1f937fe" - }, - "関裕美": { - "id": "19", - "name": "関裕美", - "kana": "せきゆみ", - "latest_hash": "6f26798de79180c3bc5aad8a14b31b34" - }, - "太田優": { - "id": "20", - "name": "太田優", - "kana": "おおたゆう", - "latest_hash": "2763a2afd43cf1d265c968e8a9711692" - }, - "棟方愛海": { - "id": "21", - "name": "棟方愛海", - "kana": "むなかたあいうみ", - "latest_hash": "6266ac4f14b93b3859953ec5f6e94cb4" - }, - "藤本里奈": { - "id": "22", - "name": "藤本里奈", - "kana": "ふじもとりな", - "latest_hash": "746f35295f4f371ec9b71219fb1224ce" - }, - "大原みちる": { - "id": "23", - "name": "大原みちる", - "kana": "おおはらみちる", - "latest_hash": "6982bf46c7bfa21df65e8b12044e9555" - }, - "遊佐こずえ": { - "id": "24", - "name": "遊佐こずえ", - "kana": "ゆさこずえ", - "latest_hash": "687b4206d88a37c16864b8f4d507f2cb" - }, - "大沼くるみ": { - "id": "25", - "name": "大沼くるみ", - "kana": "おおぬまくるみ", - "latest_hash": "d76492cb5a1cc1202e993013da0e48cd" - }, - "一ノ瀬志希": { - "id": "26", - "name": "一ノ瀬志希", - "kana": "いちのせこころざしのぞみ", - "latest_hash": "bb156a253fc247462a87b20eee8770f5" - }, - "前川みく": { - "id": "27", - "name": "前川みく", - "kana": "まえかわみく", - "latest_hash": "e863deaf923d0239d7d118503386c7c4" - }, - "赤西瑛梨華": { - "id": "28", - "name": "赤西瑛梨華", - "kana": "あかにしえいりか", - "latest_hash": "2fc28fdf3ff00656454cd265ac6ff260" - }, - "松原早耶": { - "id": "29", - "name": "松原早耶", - "kana": "まつばらさや", - "latest_hash": "eab519121d4491eb02a6ba19010da935" - }, - "相原雪乃": { - "id": "30", - "name": "相原雪乃", - "kana": "あいはらゆきの", - "latest_hash": "cfc329e650e8c8f39600ad33229d97db" - }, - "宮本フレデリカ": { - "id": "31", - "name": "宮本フレデリカ", - "kana": "みやもとふれでりか", - "latest_hash": "09346bd07794d16a01ebdf62ea8fd570" - }, - "小早川紗枝": { - "id": "32", - "name": "小早川紗枝", - "kana": "こばやかわさえ", - "latest_hash": "76301262a0d6d164f8d35b6148bc96cb" - }, - "西園寺琴歌": { - "id": "33", - "name": "西園寺琴歌", - "kana": "さいおんじことか", - "latest_hash": "37f641a6738f8d5735db957a37b781ae" - }, - "双葉杏": { - "id": "34", - "name": "双葉杏", - "kana": "ふたばあんず", - "latest_hash": "458454502049072b7c4f264362088614" - }, - "楊菲菲": { - "id": "35", - "name": "楊菲菲", - "kana": "よううすうす", - "latest_hash": "6f2cef2655f476d2f3f6ea80d8f481ec" - }, - "桃井あずき": { - "id": "36", - "name": "桃井あずき", - "kana": "ももいあずき", - "latest_hash": "cf166d5c57c0446980b7393d66318f22" - }, - "涼宮星花": { - "id": "37", - "name": "涼宮星花", - "kana": "すずみやせいか", - "latest_hash": "a27419ca801cfd72eb2a724f82cdaf55" - }, - "月宮雅": { - "id": "38", - "name": "月宮雅", - "kana": "つきみやまさし", - "latest_hash": "ea6ea7bc7bb994ee3f40bf04f6126ec8" - }, - "兵藤レナ": { - "id": "39", - "name": "兵藤レナ", - "kana": "ひょうどうれな", - "latest_hash": "9cf74ba99862e8a7d52677bca5e48c3b" - }, - "丹羽仁美": { - "id": "40", - "name": "丹羽仁美", - "kana": "にわひとみ", - "latest_hash": "9392cd6501637b7e2d621e7459fc742f" - }, - "道明寺歌鈴": { - "id": "41", - "name": "道明寺歌鈴", - "kana": "どうみょうじうたすず", - "latest_hash": "d9be7d1d689f9e143ff27dd1063a0040" - }, - "高槻やよい": { - "id": "42", - "name": "高槻やよい", - "kana": "たかつきやよい", - "latest_hash": "404957c126156e54750231e4e58221ad" - }, - "菊地真": { - "id": "43", - "name": "菊地真", - "kana": "きくちまこと", - "latest_hash": "2838e5d36d4e11a09fac86270dcf63a4" - }, - "我那覇響": { - "id": "44", - "name": "我那覇響", - "kana": "がなはひびき", - "latest_hash": "c5e1fe7ef2b387eb27a9adbb9d9dfa6c" - }, - "柳清良": { - "id": "45", - "name": "柳清良", - "kana": "やなぎきよしりょう", - "latest_hash": "5889d8f072f2fac046d4e3b55e2ac4ce" - }, - "天海春香": { - "id": "46", - "name": "天海春香", - "kana": "あまみはるか", - "latest_hash": "eb10c4da293f3f132f146989bd997f64" - }, - "井村雪菜": { - "id": "47", - "name": "井村雪菜", - "kana": "いむらゆきな", - "latest_hash": "9394a74e8344967cbf42eb20eae12ab5" - }, - "日下部若葉": { - "id": "48", - "name": "日下部若葉", - "kana": "くさかべわかば", - "latest_hash": "16b3f7c98071fcc566c63e350f6d6755" - }, - "榊原里美": { - "id": "49", - "name": "榊原里美", - "kana": "さかきばらさとみ", - "latest_hash": "f5513ccc6e9fbd159a8a1c770341ca42" - }, - "輿水幸子": { - "id": "50", - "name": "輿水幸子", - "kana": "こしみずさちこ", - "latest_hash": "6510a11da53b691ab9031a461560116d" - }, - "安斎都": { - "id": "51", - "name": "安斎都", - "kana": "あんざいみやこ", - "latest_hash": "0da70e0edc3ce8b0d0fcf9caf198d7d6" - }, - "浅野風香": { - "id": "52", - "name": "浅野風香", - "kana": "あさのふうかおる", - "latest_hash": "3e11cdda3fb461943a95a243ccb16db8" - }, - "大西由里子": { - "id": "53", - "name": "大西由里子", - "kana": "おおにしゆりこ", - "latest_hash": "493a01e58a43693352fd7343e3987069" - }, - "安部菜々": { - "id": "54", - "name": "安部菜々", - "kana": "あべさい々", - "latest_hash": "4646da2024bcd18a3334ba0c06a7770d" - }, - "工藤忍": { - "id": "55", - "name": "工藤忍", - "kana": "くどうしのぶ", - "latest_hash": "dd3cbc7d99d27b18163a05c94d5fcbd1" - }, - "栗原ネネ": { - "id": "56", - "name": "栗原ネネ", - "kana": "くりはらねね", - "latest_hash": "7a9fe2cd8a14757af1ce02c24ab770e4" - }, - "古賀小春": { - "id": "57", - "name": "古賀小春", - "kana": "こがこはる", - "latest_hash": "50a0bb6a83031685c407e03c4bd7d5b1" - }, - "クラリス": { - "id": "58", - "name": "クラリス", - "kana": "くらりす", - "latest_hash": "982a1fa17a690105cf07772a7d5bc5a4" - }, - "佐久間まゆ": { - "id": "59", - "name": "佐久間まゆ", - "kana": "さくままゆ", - "latest_hash": "992e3ae2a449f25bc4678f9bde5e327d" - }, - "村松さくら": { - "id": "60", - "name": "村松さくら", - "kana": "むらまつさくら", - "latest_hash": "f3a647752b0e6c8f4d4938a2a5bbd308" - }, - "白菊ほたる": { - "id": "61", - "name": "白菊ほたる", - "kana": "しらぎくほたる", - "latest_hash": "9024cb32c76078e8f0e4850151c007ba" - }, - "早坂美玲": { - "id": "62", - "name": "早坂美玲", - "kana": "はやさかみれい", - "latest_hash": "1aea545811f830d6c6baad2453571a96" - }, - "有浦柑奈": { - "id": "63", - "name": "有浦柑奈", - "kana": "ゆううらかんな", - "latest_hash": "23ad85825d08c2b01758a0a95eee45d2" - }, - "乙倉悠貴": { - "id": "64", - "name": "乙倉悠貴", - "kana": "おつくらゆき", - "latest_hash": "ad1d9695914de9d5464ffe838872530f" - }, - "原田美世": { - "id": "65", - "name": "原田美世", - "kana": "はらだみせい", - "latest_hash": "1be46e70f136716b759b15340806be70" - }, - "池袋晶葉": { - "id": "66", - "name": "池袋晶葉", - "kana": "いけぶくろあきらよう", - "latest_hash": "f14270b8f9920a77b665767587d06b48" - }, - "渋谷凛": { - "id": "67", - "name": "渋谷凛", - "kana": "しぶたにりん", - "latest_hash": "4ebbcc60acba9e2760af8a5be417782d" - }, - "黒川千秋": { - "id": "68", - "name": "黒川千秋", - "kana": "くろかわちあき", - "latest_hash": "1b13a47f1e86ec39ecf4974fe3049ff9" - }, - "松本沙理奈": { - "id": "69", - "name": "松本沙理奈", - "kana": "まつもとさりな", - "latest_hash": "2e3a40d67d49dc6574282976c7ede024" - }, - "桐野アヤ": { - "id": "70", - "name": "桐野アヤ", - "kana": "きりのあや", - "latest_hash": "81fd47cf40cbfb59f9dc779f0b2e6258" - }, - "高橋礼子": { - "id": "71", - "name": "高橋礼子", - "kana": "たかはしれいこ", - "latest_hash": "79b7221bfb5db0a94baf512abe1eb5eb" - }, - "相川千夏": { - "id": "72", - "name": "相川千夏", - "kana": "あいかわちなつ", - "latest_hash": "4028037887d8707827e2a749bb925d5d" - }, - "川島瑞樹": { - "id": "73", - "name": "川島瑞樹", - "kana": "かわしまみずき", - "latest_hash": "f8290c4530003b664115639282feddd3" - }, - "神谷奈緒": { - "id": "74", - "name": "神谷奈緒", - "kana": "かみやなお", - "latest_hash": "8511ad8903a41ce65a867c7d1d9fb90a" - }, - "上条春菜": { - "id": "75", - "name": "上条春菜", - "kana": "かみじょうはるな", - "latest_hash": "895adb42cedd503a357282110c7c92c9" - }, - "荒木比奈": { - "id": "76", - "name": "荒木比奈", - "kana": "あらきひな", - "latest_hash": "df6fa045d58337acbd9725d8a940d1b4" - }, - "東郷あい": { - "id": "77", - "name": "東郷あい", - "kana": "とうごうあい", - "latest_hash": "18587c946f96cd9c273730176ecbcec8" - }, - "多田李衣菜": { - "id": "78", - "name": "多田李衣菜", - "kana": "ただりいな", - "latest_hash": "4a688e97246cf40a0e8850db9199e694" - }, - "水木聖來": { - "id": "79", - "name": "水木聖來", - "kana": "みずきせいら", - "latest_hash": "ba06248f504e77b5b221773f218ea8a2" - }, - "佐々木千枝": { - "id": "80", - "name": "佐々木千枝", - "kana": "ささきちえ", - "latest_hash": "54022827f6129503d2444697e275e075" - }, - "三船美優": { - "id": "81", - "name": "三船美優", - "kana": "みふねみゅう", - "latest_hash": "be6c919489145ab6fcf4735fccad0f5c" - }, - "服部瞳子": { - "id": "82", - "name": "服部瞳子", - "kana": "はっとりとうこ", - "latest_hash": "8c428918c3def67003cdb73be7eb1b85" - }, - "木場真奈美": { - "id": "83", - "name": "木場真奈美", - "kana": "こばまなみ", - "latest_hash": "a53f598eea9637e74b08e76c96d18d4b" - }, - "藤原肇": { - "id": "84", - "name": "藤原肇", - "kana": "ふじわらはじめ", - "latest_hash": "eb1d57f9b906de305439f9ab26c6cdcf" - }, - "新田美波": { - "id": "85", - "name": "新田美波", - "kana": "にったみなみ", - "latest_hash": "05967e0044c4828455e8547b98df1d06" - }, - "水野翠": { - "id": "86", - "name": "水野翠", - "kana": "みずのみどり", - "latest_hash": "cff720f0338a7ae16dc936a802809a2f" - }, - "古澤頼子": { - "id": "87", - "name": "古澤頼子", - "kana": "ふるさわよりこ", - "latest_hash": "0fdb985e97611cb4df916563d6e7a27b" - }, - "橘ありす": { - "id": "88", - "name": "橘ありす", - "kana": "たちばなありす", - "latest_hash": "abfa3a0acdc184e3339b139c308eef21" - }, - "鷺沢文香": { - "id": "89", - "name": "鷺沢文香", - "kana": "さぎさわふみか", - "latest_hash": "bd02113f22c12494c713a43bcc0c8e90" - }, - "八神マキノ": { - "id": "90", - "name": "八神マキノ", - "kana": "やがみまきの", - "latest_hash": "615b301570633d1f4eeb36d15fa9c890" - }, - "ライラ": { - "id": "91", - "name": "ライラ", - "kana": "らいら", - "latest_hash": "d5736287d3ece82c8ab060128aeceaeb" - }, - "浅利七海": { - "id": "92", - "name": "浅利七海", - "kana": "あさりななうみ", - "latest_hash": "3680d1991b44b9d38b902639964525ed" - }, - "ヘレン": { - "id": "93", - "name": "ヘレン", - "kana": "へれん", - "latest_hash": "cc0698a6cf2cb1334013fe8b8ade9708" - }, - "松永涼": { - "id": "94", - "name": "松永涼", - "kana": "まつながりょう", - "latest_hash": "7c6d691dff4f6353fdf2ab67ccea3e35" - }, - "小室千奈美": { - "id": "95", - "name": "小室千奈美", - "kana": "こむろちなみ", - "latest_hash": "5adfeb655cf51c970156064c22dfb037" - }, - "高峯のあ": { - "id": "96", - "name": "高峯のあ", - "kana": "たかみねのあ", - "latest_hash": "eacc9bc4fe9128ac315bf016a2c356c4" - }, - "高垣楓": { - "id": "97", - "name": "高垣楓", - "kana": "たかがきかえで", - "latest_hash": "8f043af6f6c5ee0f0e01cd50a36a2f66" - }, - "神崎蘭子": { - "id": "98", - "name": "神崎蘭子", - "kana": "かんざきらんこ", - "latest_hash": "5f1dd0a32dcb32f9b8e3ea9aa58a1e40" - }, - "伊集院惠": { - "id": "99", - "name": "伊集院惠", - "kana": "いじゅういんめぐみ", - "latest_hash": "2b04d07128e9d3935b7505599d21f522" - }, - "柊志乃": { - "id": "100", - "name": "柊志乃", - "kana": "ひいらぎしの", - "latest_hash": "eebf9cbe74825c11552fc61be114e2cc" - }, - "北条加蓮": { - "id": "101", - "name": "北条加蓮", - "kana": "ほうじょうかれん", - "latest_hash": "846cbe9ab87264c80ab22de8776c78a9" - }, - "ケイト": { - "id": "102", - "name": "ケイト", - "kana": "けいと", - "latest_hash": "e931ed75eb91bcd9735bc590a92c07d6" - }, - "瀬名詩織": { - "id": "103", - "name": "瀬名詩織", - "kana": "せなしおり", - "latest_hash": "8518eb7db20611b6e579e44780f6fe24" - }, - "綾瀬穂乃香": { - "id": "104", - "name": "綾瀬穂乃香", - "kana": "あやせほのか", - "latest_hash": "2c7b6d96a1fb1e0ca98ca465fa67c848" - }, - "佐城雪美": { - "id": "105", - "name": "佐城雪美", - "kana": "さじょうゆきみ", - "latest_hash": "674f4cb361e967bca336653539ed6613" - }, - "如月千早": { - "id": "106", - "name": "如月千早", - "kana": "きさらぎちはや", - "latest_hash": "dfe34529a4dc472ca44c6ad923e44b5b" - }, - "三浦あずさ": { - "id": "107", - "name": "三浦あずさ", - "kana": "みうらあずさ", - "latest_hash": "035141c2768cddbab1153b2dcbcb3013" - }, - "秋月律子": { - "id": "108", - "name": "秋月律子", - "kana": "あきづきりつこ", - "latest_hash": "1b3a397157d4c390983480f0b8ebb2a1" - }, - "四条貴音": { - "id": "109", - "name": "四条貴音", - "kana": "しじょうたかね", - "latest_hash": "166fb623aae4d975387c3fbc8770a099" - }, - "篠原礼": { - "id": "110", - "name": "篠原礼", - "kana": "しのはられい", - "latest_hash": "084e23921a2680662428a561923bb395" - }, - "和久井留美": { - "id": "111", - "name": "和久井留美", - "kana": "わくいるみ", - "latest_hash": "303643dbb839ee0d48bfb7def91c193f" - }, - "吉岡沙紀": { - "id": "112", - "name": "吉岡沙紀", - "kana": "よしおかさき", - "latest_hash": "c3a21b688770def90cda930429d9d580" - }, - "梅木音葉": { - "id": "113", - "name": "梅木音葉", - "kana": "うめきおとは", - "latest_hash": "725a7367f2c8c08fa9f88fb14c58786a" - }, - "白坂小梅": { - "id": "114", - "name": "白坂小梅", - "kana": "しらさかこうめ", - "latest_hash": "8760de4f1ffcd5454f63f3332535bb24" - }, - "岸部彩華": { - "id": "115", - "name": "岸部彩華", - "kana": "きしべいろは", - "latest_hash": "2c67e5e41d85f043ffc99b92a4873ae1" - }, - "氏家むつみ": { - "id": "116", - "name": "氏家むつみ", - "kana": "うじいえむつみ", - "latest_hash": "b0a88d8ab733b0a8b4603a9ed1905b9a" - }, - "西川保奈美": { - "id": "117", - "name": "西川保奈美", - "kana": "にしかわほなみ", - "latest_hash": "148c761bd9f2699953da23d185cfed2b" - }, - "成宮由愛": { - "id": "118", - "name": "成宮由愛", - "kana": "なるみやゆめ", - "latest_hash": "3a91b3c21892380bf9febb395bf4baa5" - }, - "藤居朋": { - "id": "119", - "name": "藤居朋", - "kana": "ふじいとも", - "latest_hash": "cc04b9fd7b06293b952152aef32f4561" - }, - "塩見周子": { - "id": "120", - "name": "塩見周子", - "kana": "しおみしゅうこ", - "latest_hash": "e02867846f13e03eb619cb5e9bddae89" - }, - "脇山珠美": { - "id": "121", - "name": "脇山珠美", - "kana": "わきやまたまみ", - "latest_hash": "65c1d041ea9ed32748e96188870b56f5" - }, - "岡崎泰葉": { - "id": "122", - "name": "岡崎泰葉", - "kana": "おかざきやすは", - "latest_hash": "4753beff820055994390f5d38cd6c31e" - }, - "速水奏": { - "id": "123", - "name": "速水奏", - "kana": "はやみそう", - "latest_hash": "95d9d50a1d7378f34aaa25491b1fd0ec" - }, - "大石泉": { - "id": "124", - "name": "大石泉", - "kana": "おおいしいずみ", - "latest_hash": "ea24d74d3d4603863842d1464a3f82dd" - }, - "松尾千鶴": { - "id": "125", - "name": "松尾千鶴", - "kana": "まつおちづる", - "latest_hash": "49313322c5fd3c9bed6e752b20b7dcd9" - }, - "森久保乃々": { - "id": "126", - "name": "森久保乃々", - "kana": "もりくぼの々", - "latest_hash": "323901218db4adb11070ca80dbaa2339" - }, - "アナスタシア": { - "id": "127", - "name": "アナスタシア", - "kana": "あなすたしあ", - "latest_hash": "c0e1d6f4481ba3fabd64f9c6c9675156" - }, - "大和亜季": { - "id": "128", - "name": "大和亜季", - "kana": "やまとあき", - "latest_hash": "3fd70cf35e090606cfb1d891b35fb013" - }, - "結城晴": { - "id": "129", - "name": "結城晴", - "kana": "ゆうきはれ", - "latest_hash": "f3b9ea014c6bc64c930947cc9221d3c9" - }, - "二宮飛鳥": { - "id": "130", - "name": "二宮飛鳥", - "kana": "にのみやあすか", - "latest_hash": "3f93733e01fed8506d57f0c5894586f6" - }, - "桐生つかさ": { - "id": "131", - "name": "桐生つかさ", - "kana": "きりゅうつかさ", - "latest_hash": "bf5c1105baa37c752c0733f015513f75" - }, - "望月聖": { - "id": "132", - "name": "望月聖", - "kana": "もちづききよし", - "latest_hash": "3e6deec005701d78f54d7108ff35df41" - }, - "鷹富士茄子": { - "id": "133", - "name": "鷹富士茄子", - "kana": "たかふじなす", - "latest_hash": "715b793aa4d3b15051658c0100f70bde" - }, - "本田未央": { - "id": "134", - "name": "本田未央", - "kana": "ほんだみお", - "latest_hash": "fdda617ed4a59a8d1127c50336535a52" - }, - "高森藍子": { - "id": "135", - "name": "高森藍子", - "kana": "たかもりあいこ", - "latest_hash": "4d91dd57c123958c50421bb04076c240" - }, - "並木芽衣子": { - "id": "136", - "name": "並木芽衣子", - "kana": "なみきめいこ", - "latest_hash": "9a07422c4498c97ae7b7a9d9117fe9fd" - }, - "龍崎薫": { - "id": "137", - "name": "龍崎薫", - "kana": "りゅうざきかおる", - "latest_hash": "3d60bd5856309ade51e8d694c9ce0f57" - }, - "木村夏樹": { - "id": "138", - "name": "木村夏樹", - "kana": "きむらなつき", - "latest_hash": "f3a9f6ffd1b7e0ed7bad2d27cb3604af" - }, - "松山久美子": { - "id": "139", - "name": "松山久美子", - "kana": "まつやまくみこ", - "latest_hash": "e23409154c61e745d3e92fe075d8d7e8" - }, - "斉藤洋子": { - "id": "140", - "name": "斉藤洋子", - "kana": "さいとうようこ", - "latest_hash": "1013f20a456ce20449239b3e587bb424" - }, - "沢田麻理菜": { - "id": "141", - "name": "沢田麻理菜", - "kana": "さわだまりな", - "latest_hash": "1714cda17ded0f8215ee4c0f217a2c91" - }, - "矢口美羽": { - "id": "142", - "name": "矢口美羽", - "kana": "やぐちみわ", - "latest_hash": "c0bb1ce2f048f36f6397fc8dd094cc23" - }, - "赤城みりあ": { - "id": "143", - "name": "赤城みりあ", - "kana": "あかぎみりあ", - "latest_hash": "f2713603ccfb1afc09437a853b864ccd" - }, - "愛野渚": { - "id": "144", - "name": "愛野渚", - "kana": "あいのなぎさ", - "latest_hash": "b3c0ab815b7dae87ea9a636433655d89" - }, - "真鍋いつき": { - "id": "145", - "name": "真鍋いつき", - "kana": "まなべいつき", - "latest_hash": "83aa3c1928c1a0b2055c71ccd32ef090" - }, - "大槻唯": { - "id": "146", - "name": "大槻唯", - "kana": "おおつきゆい", - "latest_hash": "3989619894f357d64debb55929ca0edc" - }, - "姫川友紀": { - "id": "147", - "name": "姫川友紀", - "kana": "ひめかわゆき", - "latest_hash": "85688ae1cb65177f8acc8c407901267b" - }, - "トレーナー": { - "id": "148", - "name": "トレーナー", - "kana": "とれーなー", - "latest_hash": "35298581105317744d50303a73e59816" - }, - "喜多見柚": { - "id": "149", - "name": "喜多見柚", - "kana": "きたみゆ", - "latest_hash": "d2f0b1423a844ac537fa255c1e383b22" - }, - "上田鈴帆": { - "id": "150", - "name": "上田鈴帆", - "kana": "うえだすずほ", - "latest_hash": "ddf643f7944b7f55b9867bb33c17e9c6" - }, - "海老原菜帆": { - "id": "151", - "name": "海老原菜帆", - "kana": "えびはらなほ", - "latest_hash": "f918315bf0b28276e87d685d545c8145" - }, - "ルーキートレーナー": { - "id": "152", - "name": "ルーキートレーナー", - "kana": "るーきーとれーなー", - "latest_hash": "36e37884b950605dc92c789b5b270b37" - }, - "及川雫": { - "id": "153", - "name": "及川雫", - "kana": "おいかわしずく", - "latest_hash": "8f67ec464f14c69c9abff99d4e5c4eae" - }, - "小関麗奈": { - "id": "154", - "name": "小関麗奈", - "kana": "こせきれな", - "latest_hash": "f6119202da4cb7287258017f533e28a7" - }, - "衛藤美紗希": { - "id": "155", - "name": "衛藤美紗希", - "kana": "えとうみさき", - "latest_hash": "7b95eee4202b9c3265ba5a41194b1d34" - }, - "星輝子": { - "id": "156", - "name": "星輝子", - "kana": "ほしてるこ", - "latest_hash": "22aced971fa5898c838516e6f15fe27d" - }, - "片桐早苗": { - "id": "157", - "name": "片桐早苗", - "kana": "かたぎりさなえ", - "latest_hash": "c28e1707af95249b5b67568cfb748a50" - }, - "堀裕子": { - "id": "158", - "name": "堀裕子", - "kana": "ほりゆうこ", - "latest_hash": "64bfd146a17bcae9c53f47b939d3199a" - }, - "西島櫂": { - "id": "159", - "name": "西島櫂", - "kana": "にしじまかい", - "latest_hash": "dd34bfe74931aeab10c7aaafe2832d86" - }, - "的場梨沙": { - "id": "160", - "name": "的場梨沙", - "kana": "まとばりさ", - "latest_hash": "076ff2416464383dd10c0895f1118c57" - }, - "財前時子": { - "id": "161", - "name": "財前時子", - "kana": "ざいぜんときこ", - "latest_hash": "7ade063367ad652bc5d05aa008a75237" - }, - "依田芳乃": { - "id": "162", - "name": "依田芳乃", - "kana": "よだよしの", - "latest_hash": "86045c8c5c85b81aa51156dbcdb0e1a5" - }, - "相葉夕美": { - "id": "163", - "name": "相葉夕美", - "kana": "あいばゆみ", - "latest_hash": "eff3e13dd30475d420b7f95ce86c2bc4" - }, - "野々村そら": { - "id": "164", - "name": "野々村そら", - "kana": "ののむらそら", - "latest_hash": "3c9777fee6bd72b52c4700f384987b3a" - }, - "浜川愛結奈": { - "id": "165", - "name": "浜川愛結奈", - "kana": "はまかわあいゆいな", - "latest_hash": "aa9f7f62858b8a7afc5bf79a5d8bb989" - }, - "若林智香": { - "id": "166", - "name": "若林智香", - "kana": "わかばやしともか", - "latest_hash": "90acff12db7ec8895021c3726ee2ab58" - }, - "城ヶ崎美嘉": { - "id": "167", - "name": "城ヶ崎美嘉", - "kana": "じょうがさきみか", - "latest_hash": "062f663090a8424fca1a20133b774120" - }, - "城ヶ崎莉嘉": { - "id": "168", - "name": "城ヶ崎莉嘉", - "kana": "じょうがさきりか", - "latest_hash": "2c6f68904c5e8c886b60fcc1c01682df" - }, - "仙崎恵磨": { - "id": "169", - "name": "仙崎恵磨", - "kana": "せんざきめぐみま", - "latest_hash": "1ee716e4411265ade87048be92422d1d" - }, - "日野茜": { - "id": "170", - "name": "日野茜", - "kana": "ひのあかね", - "latest_hash": "9c04faffee708181d50dca5884d3fb1e" - }, - "諸星きらり": { - "id": "171", - "name": "諸星きらり", - "kana": "もろほしきらり", - "latest_hash": "d5d01a505a212461f49c618591073cf5" - }, - "十時愛梨": { - "id": "172", - "name": "十時愛梨", - "kana": "とときえり", - "latest_hash": "36516e31833083116be887f5b74985ab" - }, - "ナターリア": { - "id": "173", - "name": "ナターリア", - "kana": "なたーりあ", - "latest_hash": "6dc2df6837dff054aaaf63c93f92256b" - }, - "相馬夏美": { - "id": "174", - "name": "相馬夏美", - "kana": "そうまなつみ", - "latest_hash": "53c6e0d594d07c777aa0cceeb7e425b8" - }, - "槙原志保": { - "id": "175", - "name": "槙原志保", - "kana": "まきはらしほ", - "latest_hash": "fdce336ae18237fdf6e8811aa42d5444" - }, - "萩原雪歩": { - "id": "176", - "name": "萩原雪歩", - "kana": "はぎわらゆきほ", - "latest_hash": "a627c4d6e7a223402aa99e1d174dd7ce" - }, - "双海亜美": { - "id": "177", - "name": "双海亜美", - "kana": "ふたみあみ", - "latest_hash": "d604961da03fd554556bf5ec24eae13a" - }, - "双海真美": { - "id": "178", - "name": "双海真美", - "kana": "ふたみまみ", - "latest_hash": "7174c14b3213a89f45cc5375eb1fff5a" - }, - "星井美希": { - "id": "179", - "name": "星井美希", - "kana": "ほしいみき", - "latest_hash": "c504c5f878ac85da8d9ccb70ef44fbe4" - }, - "向井拓海": { - "id": "180", - "name": "向井拓海", - "kana": "むかいたくみ", - "latest_hash": "2198eb80f3fc029ca19d09a514a66a30" - }, - "水瀬伊織": { - "id": "181", - "name": "水瀬伊織", - "kana": "みなせいおり", - "latest_hash": "933333b6f15c88a6e8564a2dee2f125a" - }, - "ベテラントレーナー": { - "id": "182", - "name": "ベテラントレーナー", - "kana": "べてらんとれーなー", - "latest_hash": "313b271eddfdc8c9d223cfc16fc55eb9" - }, - "市原仁奈": { - "id": "183", - "name": "市原仁奈", - "kana": "いちはらひとしな", - "latest_hash": "f8e4f10ef977349e598b44f6ca5f0141" - }, - "喜多日菜子": { - "id": "184", - "name": "喜多日菜子", - "kana": "きたひなこ", - "latest_hash": "2b84984d9d6c5a8c0520fe96a7ba45d6" - }, - "杉坂海": { - "id": "185", - "name": "杉坂海", - "kana": "すぎさかうみ", - "latest_hash": "26a0294ebbd82d18425173f46b4d8860" - }, - "北川真尋": { - "id": "186", - "name": "北川真尋", - "kana": "きたがわまひろ", - "latest_hash": "b24f3818f1e1073ea376f64f62004d15" - }, - "メアリー・コクラン": { - "id": "187", - "name": "メアリー・コクラン", - "kana": "めありー・こくらん", - "latest_hash": "cda5c513974a4e22bdafa7fb7e662c56" - }, - "小松伊吹": { - "id": "188", - "name": "小松伊吹", - "kana": "こまついぶき", - "latest_hash": "74726c9cfa072e384c992e8d8bde9ff9" - }, - "三好紗南": { - "id": "189", - "name": "三好紗南", - "kana": "みよしさな", - "latest_hash": "5caedbb13727f0afdd234d8e73a40a32" - }, - "キャシー・グラハム": { - "id": "190", - "name": "キャシー・グラハム", - "kana": "きゃしー・ぐらはむ", - "latest_hash": "7257d04c6b64058492bc0279c5b1da20" - }, - "難波笑美": { - "id": "191", - "name": "難波笑美", - "kana": "なんばえみ", - "latest_hash": "557803a0324c4d494b78d83b42174e61" - }, - "浜口あやめ": { - "id": "192", - "name": "浜口あやめ", - "kana": "はまぐちあやめ", - "latest_hash": "fc4b0d7524dab986a0d4a97f5eab93ff" - }, - "村上巴": { - "id": "193", - "name": "村上巴", - "kana": "むらかみともえ", - "latest_hash": "1c6ff2bbe0458219764965de70302d56" - }, - "土屋亜子": { - "id": "194", - "name": "土屋亜子", - "kana": "つちやあこ", - "latest_hash": "bd055ba043dc7166491f48b3587b1984" - }, - "首藤葵": { - "id": "195", - "name": "首藤葵", - "kana": "すどうあおい", - "latest_hash": "b55c0b1bb4d08a833d7ae0fbbd248731" - }, - "冴島清美": { - "id": "196", - "name": "冴島清美", - "kana": "さえじまきよみ", - "latest_hash": "d6be32a4312ef65e6697fbd4da5b3926" - }, - "佐藤心": { - "id": "197", - "name": "佐藤心", - "kana": "さとうしん", - "latest_hash": "00a73075d65a7d0c56ceef9dd11c7a06" - }, - "南条光": { - "id": "198", - "name": "南条光", - "kana": "なんじょうひかり", - "latest_hash": "6cdda5b7a8549133166ba9eb9be99096" - }, - "マスタートレーナー": { - "id": "199", - "name": "マスタートレーナー", - "kana": "ますたーとれーなー", - "latest_hash": "6681d3a0c30f354a44317608a1d68971" - }, - "イヴ・サンタクロース": { - "id": "200", - "name": "イヴ・サンタクロース", - "kana": "いヴ・さんたくろーす", - "latest_hash": "876fb43ce5ef639022ddf7ce233a859a" - }, - "日高愛": { - "id": "201", - "name": "日高愛", - "kana": "ひだかあい", - "latest_hash": "e39015d925db23fa7c4a5fbfeaf09534" - }, - "水谷絵理": { - "id": "202", - "name": "水谷絵理", - "kana": "みずたにえり", - "latest_hash": "2c578bcb320f60bfd692e097bff03291" - }, - "秋月涼": { - "id": "203", - "name": "秋月涼", - "kana": "あきづきりょう", - "latest_hash": "cb10db1e0bcf18c7ae8b49edee29eea2" - } -} \ No newline at end of file diff --git a/resource/db/master/person_in_units.json b/resource/db/master/person_in_units.json deleted file mode 100644 index 7fa1316..0000000 --- a/resource/db/master/person_in_units.json +++ /dev/null @@ -1,3216 +0,0 @@ -{ - "浜口あやめ": [ - { - "id": "0", - "name": "くノ一あやめ忍法帖" - }, - { - "id": "19", - "name": "さつきの頃" - }, - { - "id": "30", - "name": "センゴク☆ランブ" - }, - { - "id": "38", - "name": "忍武☆繚乱" - }, - { - "id": "156", - "name": "センゴク☆華☆ランブ" - }, - { - "id": "179", - "name": "春霞" - } - ], - "神崎蘭子": [ - { - "id": "1", - "name": "Rosenburg Engel" - }, - { - "id": "32", - "name": "ダークイルミネイト" - }, - { - "id": "82", - "name": "Rosenburg Alptraum" - }, - { - "id": "145", - "name": "LOVE LAIKA with Rosenburg Engel" - }, - { - "id": "197", - "name": "アズール・ムジカ" - }, - { - "id": "205", - "name": "シンデレラガール" - }, - { - "id": "213", - "name": "CINDERELLA PROJECT" - } - ], - "吉岡沙紀": [ - { - "id": "2", - "name": "アーティスター" - }, - { - "id": "40", - "name": "ハートハーモナイズ" - }, - { - "id": "95", - "name": "スペーススタイル" - }, - { - "id": "117", - "name": "ハードメテオライツ" - }, - { - "id": "122", - "name": "ホットアートジャンピン" - }, - { - "id": "140", - "name": "アイドルミズキ with AS" - }, - { - "id": "209", - "name": "ロワイヤルスタイルNP" - } - ], - "小松伊吹": [ - { - "id": "2", - "name": "アーティスター" - }, - { - "id": "119", - "name": "フランメ・ルージュ" - }, - { - "id": "160", - "name": "ハッピーバレンタイン" - } - ], - "アナスタシア": [ - { - "id": "3", - "name": "あーにゃんみくにゃん" - }, - { - "id": "78", - "name": "LOVE LAIKA" - }, - { - "id": "116", - "name": "にゃん・にゃん・にゃん" - }, - { - "id": "141", - "name": "トランクィル・ウィスパー" - }, - { - "id": "145", - "name": "LOVE LAIKA with Rosenburg Engel" - }, - { - "id": "155", - "name": "セレクテッド" - }, - { - "id": "187", - "name": "NEX-US" - }, - { - "id": "201", - "name": "Caskets" - }, - { - "id": "213", - "name": "CINDERELLA PROJECT" - }, - { - "id": "215", - "name": "Project:Krone" - } - ], - "前川みく": [ - { - "id": "3", - "name": "あーにゃんみくにゃん" - }, - { - "id": "70", - "name": "*(Asterisk)" - }, - { - "id": "116", - "name": "にゃん・にゃん・にゃん" - }, - { - "id": "139", - "name": "397cherry" - }, - { - "id": "158", - "name": "ハイカラサクラ" - }, - { - "id": "168", - "name": "*(Asterisk) with なつなな" - }, - { - "id": "187", - "name": "NEX-US" - }, - { - "id": "195", - "name": "C5" - }, - { - "id": "213", - "name": "CINDERELLA PROJECT" - } - ], - "櫻井桃華": [ - { - "id": "4", - "name": "イカバラプリンセス" - }, - { - "id": "61", - "name": "ももべりー" - }, - { - "id": "104", - "name": "ももぺあべりー" - }, - { - "id": "105", - "name": "リトルチェリーブロッサム" - }, - { - "id": "165", - "name": "メルヘンゴシック" - }, - { - "id": "171", - "name": "Black/White-Roses" - }, - { - "id": "196", - "name": "la Roseraie" - }, - { - "id": "214", - "name": "L.M.B.G" - } - ], - "市原仁奈": [ - { - "id": "4", - "name": "イカバラプリンセス" - }, - { - "id": "84", - "name": "アニマルパーク" - }, - { - "id": "202", - "name": "サンフラワー" - }, - { - "id": "214", - "name": "L.M.B.G" - } - ], - "高森藍子": [ - { - "id": "5", - "name": "インディゴ・ベル" - }, - { - "id": "69", - "name": "Ai's" - }, - { - "id": "75", - "name": "Flowery" - }, - { - "id": "103", - "name": "ビビッドカラーエイジ" - }, - { - "id": "153", - "name": "Positive Passion" - }, - { - "id": "189", - "name": "アインフェリア" - }, - { - "id": "203", - "name": "ゼッケンズ" - } - ], - "道明寺歌鈴": [ - { - "id": "5", - "name": "インディゴ・ベル" - }, - { - "id": "179", - "name": "春霞" - } - ], - "難波笑美": [ - { - "id": "6", - "name": "笑美と鈴帆の爆笑エブリデイ" - }, - { - "id": "128", - "name": "ラビュー☆アイス☆マウンテン" - }, - { - "id": "152", - "name": "B.B.ロワイヤル" - }, - { - "id": "180", - "name": "ハロウィンパーティー" - }, - { - "id": "190", - "name": "サマプリ" - }, - { - "id": "209", - "name": "ロワイヤルスタイルNP" - } - ], - "上田鈴帆": [ - { - "id": "6", - "name": "笑美と鈴帆の爆笑エブリデイ" - }, - { - "id": "161", - "name": "ハロウィンナイト" - }, - { - "id": "180", - "name": "ハロウィンパーティー" - }, - { - "id": "190", - "name": "サマプリ" - }, - { - "id": "211", - "name": "ワンダー・フル" - } - ], - "佐藤心": [ - { - "id": "7", - "name": "エターナルレディエイト" - }, - { - "id": "13", - "name": "カワスウィーティーなボクはぁと(仮)" - }, - { - "id": "23", - "name": "しゅがしゅが☆み~ん" - }, - { - "id": "184", - "name": "宵乙女" - }, - { - "id": "207", - "name": "ムーランルージュ" - } - ], - "沢田麻理菜": [ - { - "id": "7", - "name": "エターナルレディエイト" - }, - { - "id": "159", - "name": "パステル・カクテル" - }, - { - "id": "175", - "name": "ライトグリーンセーフ" - }, - { - "id": "181", - "name": "フレッシュアスリーテス" - } - ], - "江上椿": [ - { - "id": "8", - "name": "越後小町" - }, - { - "id": "154", - "name": "秋色温泉" - }, - { - "id": "167", - "name": "ロマンティックツアーズ" - } - ], - "片桐早苗": [ - { - "id": "8", - "name": "越後小町" - }, - { - "id": "19", - "name": "さつきの頃" - }, - { - "id": "88", - "name": "桜花小町" - }, - { - "id": "124", - "name": "女神たちの夏宴" - }, - { - "id": "147", - "name": "セクシーギルティ" - }, - { - "id": "184", - "name": "宵乙女" - }, - { - "id": "202", - "name": "サンフラワー" - } - ], - "白坂小梅": [ - { - "id": "9", - "name": "エルドリッチ・ロアテラー" - }, - { - "id": "77", - "name": "Jumpin'Joker" - }, - { - "id": "79", - "name": "NiGHT ENCOUNTER" - }, - { - "id": "82", - "name": "Rosenburg Alptraum" - }, - { - "id": "90", - "name": "カワイイボクと142's" - }, - { - "id": "127", - "name": "落花流水" - }, - { - "id": "183", - "name": "メイドコレクション" - }, - { - "id": "186", - "name": "LittlePOPS" - }, - { - "id": "201", - "name": "Caskets" - }, - { - "id": "212", - "name": "CINDERELLA GIRLS" - } - ], - "松永涼": [ - { - "id": "9", - "name": "エルドリッチ・ロアテラー" - }, - { - "id": "176", - "name": "炎陣" - }, - { - "id": "180", - "name": "ハロウィンパーティー" - } - ], - "和久井留美": [ - { - "id": "10", - "name": "エレガントインモラリスト" - }, - { - "id": "142", - "name": "バレンタイン反省会" - } - ], - "東郷あい": [ - { - "id": "10", - "name": "エレガントインモラリスト" - }, - { - "id": "88", - "name": "桜花小町" - }, - { - "id": "140", - "name": "アイドルミズキ with AS" - }, - { - "id": "171", - "name": "Black/White-Roses" - }, - { - "id": "183", - "name": "メイドコレクション" - }, - { - "id": "199", - "name": "レッドバラード" - } - ], - "今井加奈": [ - { - "id": "11", - "name": "かな☆かな☆ふぁんしー" - }, - { - "id": "103", - "name": "ビビッドカラーエイジ" - }, - { - "id": "133", - "name": "スケルツォ・プリマヴェーラ" - }, - { - "id": "181", - "name": "フレッシュアスリーテス" - }, - { - "id": "193", - "name": "イエローリリー" - } - ], - "三村かな子": [ - { - "id": "11", - "name": "かな☆かな☆ふぁんしー" - }, - { - "id": "25", - "name": "スウィートラヴァーズ" - }, - { - "id": "107", - "name": "ロッキングガール" - }, - { - "id": "137", - "name": "CANDY ISLAND" - }, - { - "id": "173", - "name": "ピンクドットバルーン" - }, - { - "id": "188", - "name": "Sweetches" - }, - { - "id": "194", - "name": "サクヤヒメ" - }, - { - "id": "213", - "name": "CINDERELLA PROJECT" - } - ], - "大西由里子": [ - { - "id": "12", - "name": "壁サーの花" - }, - { - "id": "165", - "name": "メルヘンゴシック" - } - ], - "荒木比奈": [ - { - "id": "12", - "name": "壁サーの花" - }, - { - "id": "16", - "name": "サイバーグラス" - }, - { - "id": "115", - "name": "虹色ドリーマー" - }, - { - "id": "198", - "name": "ブルーナポレオン" - } - ], - "輿水幸子": [ - { - "id": "13", - "name": "カワスウィーティーなボクはぁと(仮)" - }, - { - "id": "90", - "name": "カワイイボクと142's" - }, - { - "id": "131", - "name": "KBYD" - }, - { - "id": "194", - "name": "サクヤヒメ" - }, - { - "id": "212", - "name": "CINDERELLA GIRLS" - } - ], - "藤原肇": [ - { - "id": "14", - "name": "月下氷姫" - }, - { - "id": "20", - "name": "山紫水明" - }, - { - "id": "103", - "name": "ビビッドカラーエイジ" - }, - { - "id": "209", - "name": "ロワイヤルスタイルNP" - } - ], - "鷺沢文香": [ - { - "id": "14", - "name": "月下氷姫" - }, - { - "id": "141", - "name": "トランクィル・ウィスパー" - }, - { - "id": "189", - "name": "アインフェリア" - }, - { - "id": "200", - "name": "CAERULA" - }, - { - "id": "215", - "name": "Project:Krone" - } - ], - "日野茜": [ - { - "id": "15", - "name": "サイキックヒーツ" - }, - { - "id": "148", - "name": "チアフルボンバーズ" - }, - { - "id": "153", - "name": "Positive Passion" - }, - { - "id": "190", - "name": "サマプリ" - }, - { - "id": "203", - "name": "ゼッケンズ" - }, - { - "id": "212", - "name": "CINDERELLA GIRLS" - } - ], - "堀裕子": [ - { - "id": "15", - "name": "サイキックヒーツ" - }, - { - "id": "28", - "name": "スパニッシュスタイル" - }, - { - "id": "56", - "name": "ミステリアスガールズ" - }, - { - "id": "80", - "name": "P・U" - }, - { - "id": "147", - "name": "セクシーギルティ" - }, - { - "id": "190", - "name": "サマプリ" - }, - { - "id": "203", - "name": "ゼッケンズ" - } - ], - "上条春菜": [ - { - "id": "16", - "name": "サイバーグラス" - }, - { - "id": "198", - "name": "ブルーナポレオン" - } - ], - "森久保乃々": [ - { - "id": "17", - "name": "サイレントスクリーマー" - }, - { - "id": "85", - "name": "アンダーザデスク" - }, - { - "id": "108", - "name": "individuals" - }, - { - "id": "129", - "name": "ワンステップス" - }, - { - "id": "161", - "name": "ハロウィンナイト" - }, - { - "id": "165", - "name": "メルヘンゴシック" - }, - { - "id": "188", - "name": "Sweetches" - } - ], - "星輝子": [ - { - "id": "17", - "name": "サイレントスクリーマー" - }, - { - "id": "79", - "name": "NiGHT ENCOUNTER" - }, - { - "id": "85", - "name": "アンダーザデスク" - }, - { - "id": "90", - "name": "カワイイボクと142's" - }, - { - "id": "94", - "name": "シャイニングゴッドチェリー" - }, - { - "id": "108", - "name": "individuals" - }, - { - "id": "111", - "name": "アンチェイン・シグナル" - }, - { - "id": "187", - "name": "NEX-US" - }, - { - "id": "203", - "name": "ゼッケンズ" - } - ], - "大槻唯": [ - { - "id": "18", - "name": "サクラブロッサム" - }, - { - "id": "106", - "name": "レインドロップ" - }, - { - "id": "112", - "name": "ギャルズパーティー" - }, - { - "id": "113", - "name": "セクシーギャルズ" - }, - { - "id": "155", - "name": "セレクテッド" - }, - { - "id": "174", - "name": "カナリアサマー" - }, - { - "id": "202", - "name": "サンフラワー" - }, - { - "id": "215", - "name": "Project:Krone" - } - ], - "相川千夏": [ - { - "id": "18", - "name": "サクラブロッサム" - }, - { - "id": "166", - "name": "メルヘンアニマルズ" - }, - { - "id": "199", - "name": "レッドバラード" - }, - { - "id": "208", - "name": "ロワイヤルスタイル" - } - ], - "依田芳乃": [ - { - "id": "20", - "name": "山紫水明" - }, - { - "id": "179", - "name": "春霞" - } - ], - "島村卯月": [ - { - "id": "21", - "name": "ジェネレーションオブサマー" - }, - { - "id": "109", - "name": "new generations" - }, - { - "id": "135", - "name": "ピンキーキュート" - }, - { - "id": "138", - "name": "ピンクチェックスクール" - }, - { - "id": "195", - "name": "C5" - }, - { - "id": "205", - "name": "シンデレラガール" - }, - { - "id": "213", - "name": "CINDERELLA PROJECT" - } - ], - "本田未央": [ - { - "id": "21", - "name": "ジェネレーションオブサマー" - }, - { - "id": "109", - "name": "new generations" - }, - { - "id": "146", - "name": "サンセットノスタルジー" - }, - { - "id": "153", - "name": "Positive Passion" - }, - { - "id": "204", - "name": "トロピカル☆スターズ" - }, - { - "id": "213", - "name": "CINDERELLA PROJECT" - } - ], - "三船美優": [ - { - "id": "22", - "name": "シャイニー・アーリーデイズ" - }, - { - "id": "84", - "name": "アニマルパーク" - }, - { - "id": "142", - "name": "バレンタイン反省会" - }, - { - "id": "184", - "name": "宵乙女" - } - ], - "安部菜々": [ - { - "id": "22", - "name": "シャイニー・アーリーデイズ" - }, - { - "id": "23", - "name": "しゅがしゅが☆み~ん" - }, - { - "id": "80", - "name": "P・U" - }, - { - "id": "115", - "name": "虹色ドリーマー" - }, - { - "id": "139", - "name": "397cherry" - }, - { - "id": "168", - "name": "*(Asterisk) with なつなな" - }, - { - "id": "184", - "name": "宵乙女" - }, - { - "id": "195", - "name": "C5" - } - ], - "有浦柑奈": [ - { - "id": "24", - "name": "シンフォニック・ワールド" - }, - { - "id": "92", - "name": "ゴスペルシスターズ" - }, - { - "id": "132", - "name": "thinE/Dasein" - } - ], - "梅木音葉": [ - { - "id": "24", - "name": "シンフォニック・ワールド" - }, - { - "id": "180", - "name": "ハロウィンパーティー" - } - ], - "十時愛梨": [ - { - "id": "25", - "name": "スウィートラヴァーズ" - }, - { - "id": "69", - "name": "Ai's" - }, - { - "id": "188", - "name": "Sweetches" - }, - { - "id": "203", - "name": "ゼッケンズ" - }, - { - "id": "205", - "name": "シンデレラガール" - }, - { - "id": "212", - "name": "CINDERELLA GIRLS" - } - ], - "矢口美羽": [ - { - "id": "26", - "name": "スクールガールフレンズ" - }, - { - "id": "44", - "name": "ハワイアンツイン" - }, - { - "id": "146", - "name": "サンセットノスタルジー" - }, - { - "id": "151", - "name": "ブエナ・スエルテ" - } - ], - "楊菲菲": [ - { - "id": "26", - "name": "スクールガールフレンズ" - }, - { - "id": "178", - "name": "からぱれ" - } - ], - "中野有香": [ - { - "id": "27", - "name": "ストレートフルート" - }, - { - "id": "136", - "name": "メロウ・イエロー" - }, - { - "id": "160", - "name": "ハッピーバレンタイン" - }, - { - "id": "187", - "name": "NEX-US" - }, - { - "id": "193", - "name": "イエローリリー" - }, - { - "id": "196", - "name": "la Roseraie" - } - ], - "水本ゆかり": [ - { - "id": "27", - "name": "ストレートフルート" - }, - { - "id": "134", - "name": "ノーブルセレブリティ" - }, - { - "id": "136", - "name": "メロウ・イエロー" - }, - { - "id": "191", - "name": "Love Yell" - }, - { - "id": "193", - "name": "イエローリリー" - } - ], - "氏家むつみ": [ - { - "id": "28", - "name": "スパニッシュスタイル" - }, - { - "id": "120", - "name": "ブルームジャーニー" - } - ], - "水木聖來": [ - { - "id": "29", - "name": "セーラーマリナー" - }, - { - "id": "110", - "name": "アップトゥデイト" - }, - { - "id": "111", - "name": "アンチェイン・シグナル" - }, - { - "id": "182", - "name": "マーメイドパラダイス" - } - ], - "松本沙理奈": [ - { - "id": "29", - "name": "セーラーマリナー" - }, - { - "id": "110", - "name": "アップトゥデイト" - }, - { - "id": "198", - "name": "ブルーナポレオン" - }, - { - "id": "206", - "name": "セクシーボンデージ" - }, - { - "id": "210", - "name": "ロワイヤルスタイルND" - } - ], - "丹羽仁美": [ - { - "id": "30", - "name": "センゴク☆ランブ" - }, - { - "id": "156", - "name": "センゴク☆華☆ランブ" - }, - { - "id": "161", - "name": "ハロウィンナイト" - }, - { - "id": "210", - "name": "ロワイヤルスタイルND" - } - ], - "ナターリア": [ - { - "id": "31", - "name": "ソル・カマル" - }, - { - "id": "125", - "name": "ユア・フレンズ" - } - ], - "ライラ": [ - { - "id": "31", - "name": "ソル・カマル" - }, - { - "id": "68", - "name": "ロボフレンズ" - }, - { - "id": "98", - "name": "ニューイヤースタイル" - }, - { - "id": "169", - "name": "FOUR PIECE" - } - ], - "二宮飛鳥": [ - { - "id": "32", - "name": "ダークイルミネイト" - }, - { - "id": "57", - "name": "ミステリックガーデン" - }, - { - "id": "72", - "name": "Dimension-3" - }, - { - "id": "132", - "name": "thinE/Dasein" - }, - { - "id": "186", - "name": "LittlePOPS" - }, - { - "id": "200", - "name": "CAERULA" - } - ], - "椎名法子": [ - { - "id": "33", - "name": "チーム・フラワー" - }, - { - "id": "136", - "name": "メロウ・イエロー" - }, - { - "id": "160", - "name": "ハッピーバレンタイン" - }, - { - "id": "188", - "name": "Sweetches" - }, - { - "id": "193", - "name": "イエローリリー" - }, - { - "id": "209", - "name": "ロワイヤルスタイルNP" - } - ], - "大原みちる": [ - { - "id": "33", - "name": "チーム・フラワー" - }, - { - "id": "97", - "name": "ドイツスタイル" - }, - { - "id": "133", - "name": "スケルツォ・プリマヴェーラ" - }, - { - "id": "209", - "name": "ロワイヤルスタイルNP" - } - ], - "速水奏": [ - { - "id": "34", - "name": "デア・アウローラ" - }, - { - "id": "55", - "name": "ミステリアスアイズ" - }, - { - "id": "60", - "name": "モノクロームリリィ" - }, - { - "id": "74", - "name": "FrenchKisS" - }, - { - "id": "155", - "name": "セレクテッド" - }, - { - "id": "160", - "name": "ハッピーバレンタイン" - }, - { - "id": "185", - "name": "LiPPS" - }, - { - "id": "200", - "name": "CAERULA" - }, - { - "id": "215", - "name": "Project:Krone" - } - ], - "新田美波": [ - { - "id": "34", - "name": "デア・アウローラ" - }, - { - "id": "78", - "name": "LOVE LAIKA" - }, - { - "id": "93", - "name": "サマーライブセーラー" - }, - { - "id": "145", - "name": "LOVE LAIKA with Rosenburg Engel" - }, - { - "id": "158", - "name": "ハイカラサクラ" - }, - { - "id": "189", - "name": "アインフェリア" - }, - { - "id": "197", - "name": "アズール・ムジカ" - }, - { - "id": "213", - "name": "CINDERELLA PROJECT" - } - ], - "安斎都": [ - { - "id": "35", - "name": "ディテクティブヴァーサス" - } - ], - "古澤頼子": [ - { - "id": "35", - "name": "ディテクティブヴァーサス" - }, - { - "id": "210", - "name": "ロワイヤルスタイルND" - } - ], - "塩見周子": [ - { - "id": "36", - "name": "テンプテーション・アイズ" - }, - { - "id": "41", - "name": "羽衣小町" - }, - { - "id": "126", - "name": "誘惑イビル" - }, - { - "id": "185", - "name": "LiPPS" - }, - { - "id": "200", - "name": "CAERULA" - }, - { - "id": "205", - "name": "シンデレラガール" - }, - { - "id": "215", - "name": "Project:Krone" - } - ], - "宮本フレデリカ": [ - { - "id": "36", - "name": "テンプテーション・アイズ" - }, - { - "id": "65", - "name": "レイジー・レイジー" - }, - { - "id": "74", - "name": "FrenchKisS" - }, - { - "id": "126", - "name": "誘惑イビル" - }, - { - "id": "155", - "name": "セレクテッド" - }, - { - "id": "185", - "name": "LiPPS" - }, - { - "id": "196", - "name": "la Roseraie" - }, - { - "id": "215", - "name": "Project:Krone" - } - ], - "伊集院惠": [ - { - "id": "37", - "name": "ナイトブルーレザー" - }, - { - "id": "97", - "name": "ドイツスタイル" - }, - { - "id": "167", - "name": "ロマンティックツアーズ" - } - ], - "ケイト": [ - { - "id": "37", - "name": "ナイトブルーレザー" - }, - { - "id": "125", - "name": "ユア・フレンズ" - }, - { - "id": "170", - "name": "UKスタイル" - } - ], - "脇山珠美": [ - { - "id": "38", - "name": "忍武☆繚乱" - }, - { - "id": "106", - "name": "レインドロップ" - }, - { - "id": "156", - "name": "センゴク☆華☆ランブ" - }, - { - "id": "178", - "name": "からぱれ" - }, - { - "id": "179", - "name": "春霞" - } - ], - "向井拓海": [ - { - "id": "39", - "name": "ノーティギャルズ" - }, - { - "id": "123", - "name": "マッシブライダース" - }, - { - "id": "176", - "name": "炎陣" - } - ], - "藤本里奈": [ - { - "id": "39", - "name": "ノーティギャルズ" - }, - { - "id": "83", - "name": "Shock'in Pink!" - }, - { - "id": "112", - "name": "ギャルズパーティー" - }, - { - "id": "113", - "name": "セクシーギャルズ" - }, - { - "id": "123", - "name": "マッシブライダース" - }, - { - "id": "176", - "name": "炎陣" - } - ], - "五十嵐響子": [ - { - "id": "40", - "name": "ハートハーモナイズ" - }, - { - "id": "138", - "name": "ピンクチェックスクール" - }, - { - "id": "182", - "name": "マーメイドパラダイス" - }, - { - "id": "191", - "name": "Love Yell" - }, - { - "id": "196", - "name": "la Roseraie" - } - ], - "小早川紗枝": [ - { - "id": "41", - "name": "羽衣小町" - }, - { - "id": "43", - "name": "春色姫君" - }, - { - "id": "131", - "name": "KBYD" - }, - { - "id": "179", - "name": "春霞" - }, - { - "id": "194", - "name": "サクヤヒメ" - } - ], - "桐野アヤ": [ - { - "id": "42", - "name": "バリスタイル" - }, - { - "id": "62", - "name": "ようせいさんとおねえさん" - }, - { - "id": "119", - "name": "フランメ・ルージュ" - }, - { - "id": "181", - "name": "フレッシュアスリーテス" - }, - { - "id": "199", - "name": "レッドバラード" - }, - { - "id": "209", - "name": "ロワイヤルスタイルNP" - } - ], - "槙原志保": [ - { - "id": "42", - "name": "バリスタイル" - }, - { - "id": "119", - "name": "フランメ・ルージュ" - }, - { - "id": "183", - "name": "メイドコレクション" - } - ], - "小日向美穂": [ - { - "id": "43", - "name": "春色姫君" - }, - { - "id": "135", - "name": "ピンキーキュート" - }, - { - "id": "138", - "name": "ピンクチェックスクール" - }, - { - "id": "192", - "name": "Masque:Rade" - }, - { - "id": "195", - "name": "C5" - }, - { - "id": "212", - "name": "CINDERELLA GIRLS" - } - ], - "棟方愛海": [ - { - "id": "44", - "name": "ハワイアンツイン" - }, - { - "id": "48", - "name": "日菜子と愛海の妄想ワールド" - }, - { - "id": "128", - "name": "ラビュー☆アイス☆マウンテン" - }, - { - "id": "157", - "name": "デビリッシュゴシック" - } - ], - "結城晴": [ - { - "id": "45", - "name": "ビートシューター" - }, - { - "id": "47", - "name": "ひつじさんとうさぎさん" - }, - { - "id": "54", - "name": "ボール・フレンズ" - }, - { - "id": "162", - "name": "ブライダルセレクション" - }, - { - "id": "177", - "name": "桜舞隊" - }, - { - "id": "209", - "name": "ロワイヤルスタイルNP" - } - ], - "的場梨沙": [ - { - "id": "45", - "name": "ビートシューター" - }, - { - "id": "98", - "name": "ニューイヤースタイル" - }, - { - "id": "104", - "name": "ももぺあべりー" - }, - { - "id": "177", - "name": "桜舞隊" - }, - { - "id": "214", - "name": "L.M.B.G" - } - ], - "小関麗奈": [ - { - "id": "46", - "name": "ヒーローヴァーサス" - }, - { - "id": "59", - "name": "ムシバレイナと小春ちゃん" - }, - { - "id": "154", - "name": "秋色温泉" - }, - { - "id": "164", - "name": "マジカルテット" - }, - { - "id": "214", - "name": "L.M.B.G" - } - ], - "南条光": [ - { - "id": "46", - "name": "ヒーローヴァーサス" - }, - { - "id": "64", - "name": "リトルヒーロー" - }, - { - "id": "214", - "name": "L.M.B.G" - } - ], - "古賀小春": [ - { - "id": "47", - "name": "ひつじさんとうさぎさん" - }, - { - "id": "59", - "name": "ムシバレイナと小春ちゃん" - }, - { - "id": "114", - "name": "ドリームホープスプリング" - }, - { - "id": "120", - "name": "ブルームジャーニー" - }, - { - "id": "177", - "name": "桜舞隊" - }, - { - "id": "208", - "name": "ロワイヤルスタイル" - }, - { - "id": "214", - "name": "L.M.B.G" - } - ], - "喜多日菜子": [ - { - "id": "48", - "name": "日菜子と愛海の妄想ワールド" - }, - { - "id": "151", - "name": "ブエナ・スエルテ" - } - ], - "浅野風香": [ - { - "id": "49", - "name": "ピュアリーツイン" - }, - { - "id": "171", - "name": "Black/White-Roses" - }, - { - "id": "211", - "name": "ワンダー・フル" - } - ], - "奥山沙織": [ - { - "id": "49", - "name": "ピュアリーツイン" - } - ], - "城ヶ崎美嘉": [ - { - "id": "50", - "name": "ファミリアツイン" - }, - { - "id": "113", - "name": "セクシーギャルズ" - }, - { - "id": "185", - "name": "LiPPS" - }, - { - "id": "204", - "name": "トロピカル☆スターズ" - }, - { - "id": "212", - "name": "CINDERELLA GIRLS" - } - ], - "城ヶ崎莉嘉": [ - { - "id": "50", - "name": "ファミリアツイン" - }, - { - "id": "107", - "name": "ロッキングガール" - }, - { - "id": "149", - "name": "凸レーション" - }, - { - "id": "158", - "name": "ハイカラサクラ" - }, - { - "id": "186", - "name": "LittlePOPS" - }, - { - "id": "204", - "name": "トロピカル☆スターズ" - }, - { - "id": "213", - "name": "CINDERELLA PROJECT" - } - ], - "相葉夕美": [ - { - "id": "51", - "name": "フィオレンティナ" - }, - { - "id": "57", - "name": "ミステリックガーデン" - }, - { - "id": "75", - "name": "Flowery" - }, - { - "id": "189", - "name": "アインフェリア" - }, - { - "id": "202", - "name": "サンフラワー" - } - ], - "西園寺琴歌": [ - { - "id": "51", - "name": "フィオレンティナ" - }, - { - "id": "96", - "name": "チャレンジクッキング" - }, - { - "id": "134", - "name": "ノーブルセレブリティ" - } - ], - "川島瑞樹": [ - { - "id": "52", - "name": "フォーリンシーサイド" - }, - { - "id": "124", - "name": "女神たちの夏宴" - }, - { - "id": "140", - "name": "アイドルミズキ with AS" - }, - { - "id": "190", - "name": "サマプリ" - }, - { - "id": "198", - "name": "ブルーナポレオン" - }, - { - "id": "201", - "name": "Caskets" - }, - { - "id": "212", - "name": "CINDERELLA GIRLS" - } - ], - "村上巴": [ - { - "id": "52", - "name": "フォーリンシーサイド" - }, - { - "id": "66", - "name": "レッドベリィズ" - }, - { - "id": "152", - "name": "B.B.ロワイヤル" - }, - { - "id": "177", - "name": "桜舞隊" - } - ], - "黒川千秋": [ - { - "id": "53", - "name": "ブリヤント・ノワール" - }, - { - "id": "159", - "name": "パステル・カクテル" - }, - { - "id": "199", - "name": "レッドバラード" - }, - { - "id": "209", - "name": "ロワイヤルスタイルNP" - } - ], - "水野翠": [ - { - "id": "53", - "name": "ブリヤント・ノワール" - }, - { - "id": "207", - "name": "ムーランルージュ" - } - ], - "姫川友紀": [ - { - "id": "54", - "name": "ボール・フレンズ" - }, - { - "id": "87", - "name": "ウィンター・F・ドライバーズ" - }, - { - "id": "96", - "name": "チャレンジクッキング" - }, - { - "id": "131", - "name": "KBYD" - }, - { - "id": "148", - "name": "チアフルボンバーズ" - }, - { - "id": "152", - "name": "B.B.ロワイヤル" - }, - { - "id": "174", - "name": "カナリアサマー" - }, - { - "id": "191", - "name": "Love Yell" - }, - { - "id": "202", - "name": "サンフラワー" - } - ], - "高垣楓": [ - { - "id": "55", - "name": "ミステリアスアイズ" - }, - { - "id": "63", - "name": "ラブリーダイナーズ" - }, - { - "id": "124", - "name": "女神たちの夏宴" - }, - { - "id": "141", - "name": "トランクィル・ウィスパー" - }, - { - "id": "184", - "name": "宵乙女" - }, - { - "id": "197", - "name": "アズール・ムジカ" - }, - { - "id": "212", - "name": "CINDERELLA GIRLS" - } - ], - "藤居朋": [ - { - "id": "56", - "name": "ミステリアスガールズ" - }, - { - "id": "92", - "name": "ゴスペルシスターズ" - }, - { - "id": "100", - "name": "ハートウォーマー" - } - ], - "白菊ほたる": [ - { - "id": "58", - "name": "ミス・フォーチュン" - }, - { - "id": "129", - "name": "ワンステップス" - }, - { - "id": "130", - "name": "GIRLS BE" - }, - { - "id": "162", - "name": "ブライダルセレクション" - }, - { - "id": "172", - "name": "GIRLS BE NEXT STEP" - } - ], - "鷹富士茄子": [ - { - "id": "58", - "name": "ミス・フォーチュン" - }, - { - "id": "87", - "name": "ウィンター・F・ドライバーズ" - } - ], - "北条加蓮": [ - { - "id": "60", - "name": "モノクロームリリィ" - }, - { - "id": "127", - "name": "落花流水" - }, - { - "id": "144", - "name": "Triad Primus" - }, - { - "id": "192", - "name": "Masque:Rade" - }, - { - "id": "201", - "name": "Caskets" - }, - { - "id": "215", - "name": "Project:Krone" - } - ], - "橘ありす": [ - { - "id": "61", - "name": "ももべりー" - }, - { - "id": "66", - "name": "レッドベリィズ" - }, - { - "id": "96", - "name": "チャレンジクッキング" - }, - { - "id": "104", - "name": "ももぺあべりー" - }, - { - "id": "189", - "name": "アインフェリア" - }, - { - "id": "200", - "name": "CAERULA" - }, - { - "id": "214", - "name": "L.M.B.G" - }, - { - "id": "215", - "name": "Project:Krone" - } - ], - "遊佐こずえ": [ - { - "id": "62", - "name": "ようせいさんとおねえさん" - }, - { - "id": "95", - "name": "スペーススタイル" - } - ], - "並木芽衣子": [ - { - "id": "63", - "name": "ラブリーダイナーズ" - }, - { - "id": "167", - "name": "ロマンティックツアーズ" - }, - { - "id": "183", - "name": "メイドコレクション" - } - ], - "横山千佳": [ - { - "id": "64", - "name": "リトルヒーロー" - }, - { - "id": "164", - "name": "マジカルテット" - }, - { - "id": "182", - "name": "マーメイドパラダイス" - }, - { - "id": "214", - "name": "L.M.B.G" - } - ], - "一ノ瀬志希": [ - { - "id": "65", - "name": "レイジー・レイジー" - }, - { - "id": "72", - "name": "Dimension-3" - }, - { - "id": "126", - "name": "誘惑イビル" - }, - { - "id": "185", - "name": "LiPPS" - }, - { - "id": "196", - "name": "la Roseraie" - } - ], - "高橋礼子": [ - { - "id": "67", - "name": "レディビースト" - }, - { - "id": "199", - "name": "レッドバラード" - }, - { - "id": "207", - "name": "ムーランルージュ" - } - ], - "木場真奈美": [ - { - "id": "67", - "name": "レディビースト" - }, - { - "id": "101", - "name": "ハロウィンヴァンパイア" - }, - { - "id": "111", - "name": "アンチェイン・シグナル" - }, - { - "id": "117", - "name": "ハードメテオライツ" - } - ], - "池袋晶葉": [ - { - "id": "68", - "name": "ロボフレンズ" - }, - { - "id": "98", - "name": "ニューイヤースタイル" - }, - { - "id": "102", - "name": "パワフルヒーラーズ" - } - ], - "多田李衣菜": [ - { - "id": "70", - "name": "*(Asterisk)" - }, - { - "id": "81", - "name": "Rock the Beat" - }, - { - "id": "107", - "name": "ロッキングガール" - }, - { - "id": "168", - "name": "*(Asterisk) with なつなな" - }, - { - "id": "169", - "name": "FOUR PIECE" - }, - { - "id": "192", - "name": "Masque:Rade" - }, - { - "id": "197", - "name": "アズール・ムジカ" - }, - { - "id": "213", - "name": "CINDERELLA PROJECT" - } - ], - "及川雫": [ - { - "id": "71", - "name": "B.B" - }, - { - "id": "147", - "name": "セクシーギルティ" - }, - { - "id": "182", - "name": "マーメイドパラダイス" - }, - { - "id": "188", - "name": "Sweetches" - } - ], - "大沼くるみ": [ - { - "id": "71", - "name": "B.B" - }, - { - "id": "214", - "name": "L.M.B.G" - } - ], - "赤西瑛梨華": [ - { - "id": "73", - "name": "ERICATHY" - } - ], - "キャシー・グラハム": [ - { - "id": "73", - "name": "ERICATHY" - } - ], - "双葉杏": [ - { - "id": "76", - "name": "HappyHappyTwin" - }, - { - "id": "137", - "name": "CANDY ISLAND" - }, - { - "id": "158", - "name": "ハイカラサクラ" - }, - { - "id": "186", - "name": "LittlePOPS" - }, - { - "id": "195", - "name": "C5" - }, - { - "id": "213", - "name": "CINDERELLA PROJECT" - } - ], - "諸星きらり": [ - { - "id": "76", - "name": "HappyHappyTwin" - }, - { - "id": "91", - "name": "京町乙女" - }, - { - "id": "149", - "name": "凸レーション" - }, - { - "id": "191", - "name": "Love Yell" - }, - { - "id": "204", - "name": "トロピカル☆スターズ" - }, - { - "id": "213", - "name": "CINDERELLA PROJECT" - } - ], - "赤城みりあ": [ - { - "id": "77", - "name": "Jumpin'Joker" - }, - { - "id": "149", - "name": "凸レーション" - }, - { - "id": "204", - "name": "トロピカル☆スターズ" - }, - { - "id": "213", - "name": "CINDERELLA PROJECT" - }, - { - "id": "214", - "name": "L.M.B.G" - } - ], - "木村夏樹": [ - { - "id": "81", - "name": "Rock the Beat" - }, - { - "id": "117", - "name": "ハードメテオライツ" - }, - { - "id": "123", - "name": "マッシブライダース" - }, - { - "id": "168", - "name": "*(Asterisk) with なつなな" - }, - { - "id": "175", - "name": "ライトグリーンセーフ" - }, - { - "id": "176", - "name": "炎陣" - } - ], - "早坂美玲": [ - { - "id": "83", - "name": "Shock'in Pink!" - }, - { - "id": "108", - "name": "individuals" - }, - { - "id": "186", - "name": "LittlePOPS" - } - ], - "日下部若葉": [ - { - "id": "84", - "name": "アニマルパーク" - }, - { - "id": "214", - "name": "L.M.B.G" - } - ], - "佐久間まゆ": [ - { - "id": "85", - "name": "アンダーザデスク" - }, - { - "id": "127", - "name": "落花流水" - }, - { - "id": "180", - "name": "ハロウィンパーティー" - }, - { - "id": "192", - "name": "Masque:Rade" - }, - { - "id": "194", - "name": "サクヤヒメ" - }, - { - "id": "212", - "name": "CINDERELLA GIRLS" - } - ], - "榊原里美": [ - { - "id": "86", - "name": "イタリアンスタイル" - }, - { - "id": "128", - "name": "ラビュー☆アイス☆マウンテン" - } - ], - "ヘレン": [ - { - "id": "86", - "name": "イタリアンスタイル" - } - ], - "野々村そら": [ - { - "id": "86", - "name": "イタリアンスタイル" - }, - { - "id": "208", - "name": "ロワイヤルスタイル" - } - ], - "原田美世": [ - { - "id": "87", - "name": "ウィンター・F・ドライバーズ" - }, - { - "id": "106", - "name": "レインドロップ" - } - ], - "桃井あずき": [ - { - "id": "88", - "name": "桜花小町" - }, - { - "id": "163", - "name": "フリルドスクエア" - } - ], - "月宮雅": [ - { - "id": "89", - "name": "ガールズ・パワー" - } - ], - "岸部彩華": [ - { - "id": "89", - "name": "ガールズ・パワー" - } - ], - "衛藤美紗希": [ - { - "id": "89", - "name": "ガールズ・パワー" - }, - { - "id": "210", - "name": "ロワイヤルスタイルND" - } - ], - "緒方智絵里": [ - { - "id": "91", - "name": "京町乙女" - }, - { - "id": "94", - "name": "シャイニングゴッドチェリー" - }, - { - "id": "135", - "name": "ピンキーキュート" - }, - { - "id": "137", - "name": "CANDY ISLAND" - }, - { - "id": "139", - "name": "397cherry" - }, - { - "id": "173", - "name": "ピンクドットバルーン" - }, - { - "id": "192", - "name": "Masque:Rade" - }, - { - "id": "194", - "name": "サクヤヒメ" - }, - { - "id": "213", - "name": "CINDERELLA PROJECT" - } - ], - "神谷奈緒": [ - { - "id": "91", - "name": "京町乙女" - }, - { - "id": "94", - "name": "シャイニングゴッドチェリー" - }, - { - "id": "115", - "name": "虹色ドリーマー" - }, - { - "id": "144", - "name": "Triad Primus" - }, - { - "id": "187", - "name": "NEX-US" - }, - { - "id": "201", - "name": "Caskets" - }, - { - "id": "215", - "name": "Project:Krone" - } - ], - "龍崎薫": [ - { - "id": "92", - "name": "ゴスペルシスターズ" - }, - { - "id": "105", - "name": "リトルチェリーブロッサム" - }, - { - "id": "174", - "name": "カナリアサマー" - }, - { - "id": "214", - "name": "L.M.B.G" - } - ], - "栗原ネネ": [ - { - "id": "93", - "name": "サマーライブセーラー" - }, - { - "id": "121", - "name": "ヘルシーサバイブ" - }, - { - "id": "210", - "name": "ロワイヤルスタイルND" - } - ], - "三好紗南": [ - { - "id": "93", - "name": "サマーライブセーラー" - }, - { - "id": "208", - "name": "ロワイヤルスタイル" - } - ], - "西島櫂": [ - { - "id": "95", - "name": "スペーススタイル" - }, - { - "id": "122", - "name": "ホットアートジャンピン" - } - ], - "北川真尋": [ - { - "id": "97", - "name": "ドイツスタイル" - }, - { - "id": "166", - "name": "メルヘンアニマルズ" - }, - { - "id": "181", - "name": "フレッシュアスリーテス" - }, - { - "id": "211", - "name": "ワンダー・フル" - } - ], - "村松さくら": [ - { - "id": "99", - "name": "ニューウェーブ" - }, - { - "id": "133", - "name": "スケルツォ・プリマヴェーラ" - }, - { - "id": "211", - "name": "ワンダー・フル" - } - ], - "大石泉": [ - { - "id": "99", - "name": "ニューウェーブ" - }, - { - "id": "143", - "name": "ファタ・モルガーナ" - } - ], - "土屋亜子": [ - { - "id": "99", - "name": "ニューウェーブ" - }, - { - "id": "151", - "name": "ブエナ・スエルテ" - } - ], - "井村雪菜": [ - { - "id": "100", - "name": "ハートウォーマー" - } - ], - "杉坂海": [ - { - "id": "100", - "name": "ハートウォーマー" - }, - { - "id": "165", - "name": "メルヘンゴシック" - } - ], - "関裕美": [ - { - "id": "101", - "name": "ハロウィンヴァンパイア" - }, - { - "id": "129", - "name": "ワンステップス" - }, - { - "id": "130", - "name": "GIRLS BE" - }, - { - "id": "172", - "name": "GIRLS BE NEXT STEP" - } - ], - "喜多見柚": [ - { - "id": "101", - "name": "ハロウィンヴァンパイア" - }, - { - "id": "163", - "name": "フリルドスクエア" - } - ], - "首藤葵": [ - { - "id": "102", - "name": "パワフルヒーラーズ" - }, - { - "id": "156", - "name": "センゴク☆華☆ランブ" - } - ], - "岡崎泰葉": [ - { - "id": "102", - "name": "パワフルヒーラーズ" - }, - { - "id": "105", - "name": "リトルチェリーブロッサム" - }, - { - "id": "166", - "name": "メルヘンアニマルズ" - }, - { - "id": "172", - "name": "GIRLS BE NEXT STEP" - } - ], - "渋谷凛": [ - { - "id": "109", - "name": "new generations" - }, - { - "id": "144", - "name": "Triad Primus" - }, - { - "id": "197", - "name": "アズール・ムジカ" - }, - { - "id": "205", - "name": "シンデレラガール" - }, - { - "id": "213", - "name": "CINDERELLA PROJECT" - }, - { - "id": "215", - "name": "Project:Krone" - } - ], - "太田優": [ - { - "id": "110", - "name": "アップトゥデイト" - } - ], - "仙崎恵磨": [ - { - "id": "112", - "name": "ギャルズパーティー" - }, - { - "id": "154", - "name": "秋色温泉" - }, - { - "id": "170", - "name": "UKスタイル" - }, - { - "id": "208", - "name": "ロワイヤルスタイル" - } - ], - "成宮由愛": [ - { - "id": "114", - "name": "ドリームホープスプリング" - }, - { - "id": "120", - "name": "ブルームジャーニー" - }, - { - "id": "164", - "name": "マジカルテット" - }, - { - "id": "214", - "name": "L.M.B.G" - } - ], - "望月聖": [ - { - "id": "114", - "name": "ドリームホープスプリング" - } - ], - "高峯のあ": [ - { - "id": "116", - "name": "にゃん・にゃん・にゃん" - } - ], - "小室千奈美": [ - { - "id": "118", - "name": "ビューティーアリュール" - }, - { - "id": "162", - "name": "ブライダルセレクション" - }, - { - "id": "181", - "name": "フレッシュアスリーテス" - } - ], - "松山久美子": [ - { - "id": "118", - "name": "ビューティーアリュール" - }, - { - "id": "146", - "name": "サンセットノスタルジー" - } - ], - "浜川愛結奈": [ - { - "id": "118", - "name": "ビューティーアリュール" - } - ], - "大和亜季": [ - { - "id": "121", - "name": "ヘルシーサバイブ" - }, - { - "id": "176", - "name": "炎陣" - }, - { - "id": "208", - "name": "ロワイヤルスタイル" - } - ], - "涼宮星花": [ - { - "id": "121", - "name": "ヘルシーサバイブ" - }, - { - "id": "134", - "name": "ノーブルセレブリティ" - }, - { - "id": "169", - "name": "FOUR PIECE" - }, - { - "id": "170", - "name": "UKスタイル" - } - ], - "愛野渚": [ - { - "id": "122", - "name": "ホットアートジャンピン" - }, - { - "id": "174", - "name": "カナリアサマー" - } - ], - "メアリー・コクラン": [ - { - "id": "125", - "name": "ユア・フレンズ" - }, - { - "id": "162", - "name": "ブライダルセレクション" - }, - { - "id": "170", - "name": "UKスタイル" - }, - { - "id": "214", - "name": "L.M.B.G" - } - ], - "松尾千鶴": [ - { - "id": "130", - "name": "GIRLS BE" - }, - { - "id": "172", - "name": "GIRLS BE NEXT STEP" - } - ], - "瀬名詩織": [ - { - "id": "132", - "name": "thinE/Dasein" - }, - { - "id": "171", - "name": "Black/White-Roses" - }, - { - "id": "182", - "name": "マーメイドパラダイス" - } - ], - "服部瞳子": [ - { - "id": "142", - "name": "バレンタイン反省会" - }, - { - "id": "210", - "name": "ロワイヤルスタイルND" - } - ], - "浅利七海": [ - { - "id": "143", - "name": "ファタ・モルガーナ" - } - ], - "八神マキノ": [ - { - "id": "143", - "name": "ファタ・モルガーナ" - }, - { - "id": "154", - "name": "秋色温泉" - }, - { - "id": "210", - "name": "ロワイヤルスタイルND" - } - ], - "若林智香": [ - { - "id": "148", - "name": "チアフルボンバーズ" - }, - { - "id": "150", - "name": "ヒートアップ☆チアーズ" - }, - { - "id": "210", - "name": "ロワイヤルスタイルND" - } - ], - "斉藤洋子": [ - { - "id": "150", - "name": "ヒートアップ☆チアーズ" - }, - { - "id": "175", - "name": "ライトグリーンセーフ" - }, - { - "id": "207", - "name": "ムーランルージュ" - } - ], - "真鍋いつき": [ - { - "id": "150", - "name": "ヒートアップ☆チアーズ" - }, - { - "id": "175", - "name": "ライトグリーンセーフ" - } - ], - "柳清良": [ - { - "id": "157", - "name": "デビリッシュゴシック" - }, - { - "id": "207", - "name": "ムーランルージュ" - } - ], - "佐々木千枝": [ - { - "id": "157", - "name": "デビリッシュゴシック" - }, - { - "id": "198", - "name": "ブルーナポレオン" - }, - { - "id": "214", - "name": "L.M.B.G" - } - ], - "海老原菜帆": [ - { - "id": "157", - "name": "デビリッシュゴシック" - }, - { - "id": "178", - "name": "からぱれ" - }, - { - "id": "206", - "name": "セクシーボンデージ" - } - ], - "相馬夏美": [ - { - "id": "159", - "name": "パステル・カクテル" - }, - { - "id": "167", - "name": "ロマンティックツアーズ" - } - ], - "間中美里": [ - { - "id": "159", - "name": "パステル・カクテル" - }, - { - "id": "193", - "name": "イエローリリー" - }, - { - "id": "206", - "name": "セクシーボンデージ" - }, - { - "id": "207", - "name": "ムーランルージュ" - }, - { - "id": "209", - "name": "ロワイヤルスタイルNP" - } - ], - "篠原礼": [ - { - "id": "161", - "name": "ハロウィンナイト" - }, - { - "id": "206", - "name": "セクシーボンデージ" - }, - { - "id": "210", - "name": "ロワイヤルスタイルND" - } - ], - "工藤忍": [ - { - "id": "163", - "name": "フリルドスクエア" - } - ], - "綾瀬穂乃香": [ - { - "id": "163", - "name": "フリルドスクエア" - } - ], - "福山舞": [ - { - "id": "164", - "name": "マジカルテット" - }, - { - "id": "177", - "name": "桜舞隊" - }, - { - "id": "210", - "name": "ロワイヤルスタイルND" - }, - { - "id": "214", - "name": "L.M.B.G" - } - ], - "乙倉悠貴": [ - { - "id": "166", - "name": "メルヘンアニマルズ" - }, - { - "id": "191", - "name": "Love Yell" - } - ], - "冴島清美": [ - { - "id": "169", - "name": "FOUR PIECE" - }, - { - "id": "211", - "name": "ワンダー・フル" - } - ], - "持田亜里沙": [ - { - "id": "173", - "name": "ピンクドットバルーン" - } - ], - "柳瀬美由紀": [ - { - "id": "173", - "name": "ピンクドットバルーン" - }, - { - "id": "178", - "name": "からぱれ" - }, - { - "id": "210", - "name": "ロワイヤルスタイルND" - }, - { - "id": "214", - "name": "L.M.B.G" - } - ], - "長富蓮実": [ - { - "id": "178", - "name": "からぱれ" - }, - { - "id": "209", - "name": "ロワイヤルスタイルNP" - } - ], - "クラリス": [ - { - "id": "183", - "name": "メイドコレクション" - }, - { - "id": "210", - "name": "ロワイヤルスタイルND" - } - ], - "兵藤レナ": [ - { - "id": "206", - "name": "セクシーボンデージ" - }, - { - "id": "208", - "name": "ロワイヤルスタイル" - } - ], - "西川保奈美": [ - { - "id": "206", - "name": "セクシーボンデージ" - } - ], - "柊志乃": [ - { - "id": "207", - "name": "ムーランルージュ" - } - ], - "財前時子": [ - { - "id": "209", - "name": "ロワイヤルスタイルNP" - } - ], - "佐城雪美": [ - { - "id": "211", - "name": "ワンダー・フル" - }, - { - "id": "214", - "name": "L.M.B.G" - } - ] -} \ No newline at end of file diff --git a/resource/db/master/unit_list.json b/resource/db/master/unit_list.json deleted file mode 100644 index b44e71d..0000000 --- a/resource/db/master/unit_list.json +++ /dev/null @@ -1,2012 +0,0 @@ -{ - "0": { - "id": "0", - "name": "くノ一あやめ忍法帖", - "member": [ - "浜口あやめ" - ] - }, - "1": { - "id": "1", - "name": "Rosenburg Engel", - "member": [ - "神崎蘭子" - ] - }, - "2": { - "id": "2", - "name": "アーティスター", - "member": [ - "吉岡沙紀", - "小松伊吹" - ] - }, - "3": { - "id": "3", - "name": "あーにゃんみくにゃん", - "member": [ - "アナスタシア", - "前川みく" - ] - }, - "4": { - "id": "4", - "name": "イカバラプリンセス", - "member": [ - "櫻井桃華", - "市原仁奈" - ] - }, - "5": { - "id": "5", - "name": "インディゴ・ベル", - "member": [ - "高森藍子", - "道明寺歌鈴" - ] - }, - "6": { - "id": "6", - "name": "笑美と鈴帆の爆笑エブリデイ", - "member": [ - "難波笑美", - "上田鈴帆" - ] - }, - "7": { - "id": "7", - "name": "エターナルレディエイト", - "member": [ - "佐藤心", - "沢田麻理菜" - ] - }, - "8": { - "id": "8", - "name": "越後小町", - "member": [ - "江上椿", - "片桐早苗" - ] - }, - "9": { - "id": "9", - "name": "エルドリッチ・ロアテラー", - "member": [ - "白坂小梅", - "松永涼" - ] - }, - "10": { - "id": "10", - "name": "エレガントインモラリスト", - "member": [ - "和久井留美", - "東郷あい" - ] - }, - "11": { - "id": "11", - "name": "かな☆かな☆ふぁんしー", - "member": [ - "今井加奈", - "三村かな子" - ] - }, - "12": { - "id": "12", - "name": "壁サーの花", - "member": [ - "大西由里子", - "荒木比奈" - ] - }, - "13": { - "id": "13", - "name": "カワスウィーティーなボクはぁと(仮)", - "member": [ - "輿水幸子", - "佐藤心" - ] - }, - "14": { - "id": "14", - "name": "月下氷姫", - "member": [ - "藤原肇", - "鷺沢文香" - ] - }, - "15": { - "id": "15", - "name": "サイキックヒーツ", - "member": [ - "日野茜", - "堀裕子" - ] - }, - "16": { - "id": "16", - "name": "サイバーグラス", - "member": [ - "上条春菜", - "荒木比奈" - ] - }, - "17": { - "id": "17", - "name": "サイレントスクリーマー", - "member": [ - "森久保乃々", - "星輝子" - ] - }, - "18": { - "id": "18", - "name": "サクラブロッサム", - "member": [ - "大槻唯", - "相川千夏" - ] - }, - "19": { - "id": "19", - "name": "さつきの頃", - "member": [ - "浜口あやめ", - "片桐早苗" - ] - }, - "20": { - "id": "20", - "name": "山紫水明", - "member": [ - "藤原肇", - "依田芳乃" - ] - }, - "21": { - "id": "21", - "name": "ジェネレーションオブサマー", - "member": [ - "島村卯月", - "本田未央" - ] - }, - "22": { - "id": "22", - "name": "シャイニー・アーリーデイズ", - "member": [ - "三船美優", - "安部菜々" - ] - }, - "23": { - "id": "23", - "name": "しゅがしゅが☆み~ん", - "member": [ - "佐藤心", - "安部菜々" - ] - }, - "24": { - "id": "24", - "name": "シンフォニック・ワールド", - "member": [ - "有浦柑奈", - "梅木音葉" - ] - }, - "25": { - "id": "25", - "name": "スウィートラヴァーズ", - "member": [ - "十時愛梨", - "三村かな子" - ] - }, - "26": { - "id": "26", - "name": "スクールガールフレンズ", - "member": [ - "矢口美羽", - "楊菲菲" - ] - }, - "27": { - "id": "27", - "name": "ストレートフルート", - "member": [ - "中野有香", - "水本ゆかり" - ] - }, - "28": { - "id": "28", - "name": "スパニッシュスタイル", - "member": [ - "堀裕子", - "氏家むつみ" - ] - }, - "29": { - "id": "29", - "name": "セーラーマリナー", - "member": [ - "水木聖來", - "松本沙理奈" - ] - }, - "30": { - "id": "30", - "name": "センゴク☆ランブ", - "member": [ - "丹羽仁美", - "浜口あやめ" - ] - }, - "31": { - "id": "31", - "name": "ソル・カマル", - "member": [ - "ナターリア", - "ライラ" - ] - }, - "32": { - "id": "32", - "name": "ダークイルミネイト", - "member": [ - "二宮飛鳥", - "神崎蘭子" - ] - }, - "33": { - "id": "33", - "name": "チーム・フラワー", - "member": [ - "椎名法子", - "大原みちる" - ] - }, - "34": { - "id": "34", - "name": "デア・アウローラ", - "member": [ - "速水奏", - "新田美波" - ] - }, - "35": { - "id": "35", - "name": "ディテクティブヴァーサス", - "member": [ - "安斎都", - "古澤頼子" - ] - }, - "36": { - "id": "36", - "name": "テンプテーション・アイズ", - "member": [ - "塩見周子", - "宮本フレデリカ" - ] - }, - "37": { - "id": "37", - "name": "ナイトブルーレザー", - "member": [ - "伊集院惠", - "ケイト" - ] - }, - "38": { - "id": "38", - "name": "忍武☆繚乱", - "member": [ - "浜口あやめ", - "脇山珠美" - ] - }, - "39": { - "id": "39", - "name": "ノーティギャルズ", - "member": [ - "向井拓海", - "藤本里奈" - ] - }, - "40": { - "id": "40", - "name": "ハートハーモナイズ", - "member": [ - "五十嵐響子", - "吉岡沙紀" - ] - }, - "41": { - "id": "41", - "name": "羽衣小町", - "member": [ - "小早川紗枝", - "塩見周子" - ] - }, - "42": { - "id": "42", - "name": "バリスタイル", - "member": [ - "桐野アヤ", - "槙原志保" - ] - }, - "43": { - "id": "43", - "name": "春色姫君", - "member": [ - "小早川紗枝", - "小日向美穂" - ] - }, - "44": { - "id": "44", - "name": "ハワイアンツイン", - "member": [ - "棟方愛海", - "矢口美羽" - ] - }, - "45": { - "id": "45", - "name": "ビートシューター", - "member": [ - "結城晴", - "的場梨沙" - ] - }, - "46": { - "id": "46", - "name": "ヒーローヴァーサス", - "member": [ - "小関麗奈", - "南条光" - ] - }, - "47": { - "id": "47", - "name": "ひつじさんとうさぎさん", - "member": [ - "古賀小春", - "結城晴" - ] - }, - "48": { - "id": "48", - "name": "日菜子と愛海の妄想ワールド", - "member": [ - "棟方愛海", - "喜多日菜子" - ] - }, - "49": { - "id": "49", - "name": "ピュアリーツイン", - "member": [ - "浅野風香", - "奥山沙織" - ] - }, - "50": { - "id": "50", - "name": "ファミリアツイン", - "member": [ - "城ヶ崎美嘉", - "城ヶ崎莉嘉" - ] - }, - "51": { - "id": "51", - "name": "フィオレンティナ", - "member": [ - "相葉夕美", - "西園寺琴歌" - ] - }, - "52": { - "id": "52", - "name": "フォーリンシーサイド", - "member": [ - "川島瑞樹", - "村上巴" - ] - }, - "53": { - "id": "53", - "name": "ブリヤント・ノワール", - "member": [ - "黒川千秋", - "水野翠" - ] - }, - "54": { - "id": "54", - "name": "ボール・フレンズ", - "member": [ - "姫川友紀", - "結城晴" - ] - }, - "55": { - "id": "55", - "name": "ミステリアスアイズ", - "member": [ - "速水奏", - "高垣楓" - ] - }, - "56": { - "id": "56", - "name": "ミステリアスガールズ", - "member": [ - "藤居朋", - "堀裕子" - ] - }, - "57": { - "id": "57", - "name": "ミステリックガーデン", - "member": [ - "二宮飛鳥", - "相葉夕美" - ] - }, - "58": { - "id": "58", - "name": "ミス・フォーチュン", - "member": [ - "白菊ほたる", - "鷹富士茄子" - ] - }, - "59": { - "id": "59", - "name": "ムシバレイナと小春ちゃん", - "member": [ - "古賀小春", - "小関麗奈" - ] - }, - "60": { - "id": "60", - "name": "モノクロームリリィ", - "member": [ - "速水奏", - "北条加蓮" - ] - }, - "61": { - "id": "61", - "name": "ももべりー", - "member": [ - "櫻井桃華", - "橘ありす" - ] - }, - "62": { - "id": "62", - "name": "ようせいさんとおねえさん", - "member": [ - "桐野アヤ", - "遊佐こずえ" - ] - }, - "63": { - "id": "63", - "name": "ラブリーダイナーズ", - "member": [ - "高垣楓", - "並木芽衣子" - ] - }, - "64": { - "id": "64", - "name": "リトルヒーロー", - "member": [ - "南条光", - "横山千佳" - ] - }, - "65": { - "id": "65", - "name": "レイジー・レイジー", - "member": [ - "宮本フレデリカ", - "一ノ瀬志希" - ] - }, - "66": { - "id": "66", - "name": "レッドベリィズ", - "member": [ - "橘ありす", - "村上巴" - ] - }, - "67": { - "id": "67", - "name": "レディビースト", - "member": [ - "高橋礼子", - "木場真奈美" - ] - }, - "68": { - "id": "68", - "name": "ロボフレンズ", - "member": [ - "池袋晶葉", - "ライラ" - ] - }, - "69": { - "id": "69", - "name": "Ai's", - "member": [ - "高森藍子", - "十時愛梨" - ] - }, - "70": { - "id": "70", - "name": "*(Asterisk)", - "member": [ - "前川みく", - "多田李衣菜" - ] - }, - "71": { - "id": "71", - "name": "B.B", - "member": [ - "及川雫", - "大沼くるみ" - ] - }, - "72": { - "id": "72", - "name": "Dimension-3", - "member": [ - "一ノ瀬志希", - "二宮飛鳥" - ] - }, - "73": { - "id": "73", - "name": "ERICATHY", - "member": [ - "赤西瑛梨華", - "キャシー・グラハム" - ] - }, - "74": { - "id": "74", - "name": "FrenchKisS", - "member": [ - "宮本フレデリカ", - "速水奏" - ] - }, - "75": { - "id": "75", - "name": "Flowery", - "member": [ - "高森藍子", - "相葉夕美" - ] - }, - "76": { - "id": "76", - "name": "HappyHappyTwin", - "member": [ - "双葉杏", - "諸星きらり" - ] - }, - "77": { - "id": "77", - "name": "Jumpin'Joker", - "member": [ - "赤城みりあ", - "白坂小梅" - ] - }, - "78": { - "id": "78", - "name": "LOVE LAIKA", - "member": [ - "新田美波", - "アナスタシア" - ] - }, - "79": { - "id": "79", - "name": "NiGHT ENCOUNTER", - "member": [ - "星輝子", - "白坂小梅" - ] - }, - "80": { - "id": "80", - "name": "P・U", - "member": [ - "堀裕子", - "安部菜々" - ] - }, - "81": { - "id": "81", - "name": "Rock the Beat", - "member": [ - "多田李衣菜", - "木村夏樹" - ] - }, - "82": { - "id": "82", - "name": "Rosenburg Alptraum", - "member": [ - "白坂小梅", - "神崎蘭子" - ] - }, - "83": { - "id": "83", - "name": "Shock'in Pink!", - "member": [ - "藤本里奈", - "早坂美玲" - ] - }, - "84": { - "id": "84", - "name": "アニマルパーク", - "member": [ - "日下部若葉", - "三船美優", - "市原仁奈" - ] - }, - "85": { - "id": "85", - "name": "アンダーザデスク", - "member": [ - "森久保乃々", - "星輝子", - "佐久間まゆ" - ] - }, - "86": { - "id": "86", - "name": "イタリアンスタイル", - "member": [ - "榊原里美", - "ヘレン", - "野々村そら" - ] - }, - "87": { - "id": "87", - "name": "ウィンター・F・ドライバーズ", - "member": [ - "原田美世", - "鷹富士茄子", - "姫川友紀" - ] - }, - "88": { - "id": "88", - "name": "桜花小町", - "member": [ - "桃井あずき", - "東郷あい", - "片桐早苗" - ] - }, - "89": { - "id": "89", - "name": "ガールズ・パワー", - "member": [ - "月宮雅", - "岸部彩華", - "衛藤美紗希" - ] - }, - "90": { - "id": "90", - "name": "カワイイボクと142's", - "member": [ - "輿水幸子", - "白坂小梅", - "星輝子" - ] - }, - "91": { - "id": "91", - "name": "京町乙女", - "member": [ - "緒方智絵里", - "神谷奈緒", - "諸星きらり" - ] - }, - "92": { - "id": "92", - "name": "ゴスペルシスターズ", - "member": [ - "龍崎薫", - "有浦柑奈", - "藤居朋" - ] - }, - "93": { - "id": "93", - "name": "サマーライブセーラー", - "member": [ - "栗原ネネ", - "新田美波", - "三好紗南" - ] - }, - "94": { - "id": "94", - "name": "シャイニングゴッドチェリー", - "member": [ - "星輝子", - "神谷奈緒", - "緒方智絵里" - ] - }, - "95": { - "id": "95", - "name": "スペーススタイル", - "member": [ - "遊佐こずえ", - "吉岡沙紀", - "西島櫂" - ] - }, - "96": { - "id": "96", - "name": "チャレンジクッキング", - "member": [ - "西園寺琴歌", - "橘ありす", - "姫川友紀" - ] - }, - "97": { - "id": "97", - "name": "ドイツスタイル", - "member": [ - "大原みちる", - "伊集院惠", - "北川真尋" - ] - }, - "98": { - "id": "98", - "name": "ニューイヤースタイル", - "member": [ - "池袋晶葉", - "ライラ", - "的場梨沙" - ] - }, - "99": { - "id": "99", - "name": "ニューウェーブ", - "member": [ - "村松さくら", - "大石泉", - "土屋亜子" - ] - }, - "100": { - "id": "100", - "name": "ハートウォーマー", - "member": [ - "井村雪菜", - "藤居朋", - "杉坂海" - ] - }, - "101": { - "id": "101", - "name": "ハロウィンヴァンパイア", - "member": [ - "関裕美", - "木場真奈美", - "喜多見柚" - ] - }, - "102": { - "id": "102", - "name": "パワフルヒーラーズ", - "member": [ - "池袋晶葉", - "首藤葵", - "岡崎泰葉" - ] - }, - "103": { - "id": "103", - "name": "ビビッドカラーエイジ", - "member": [ - "今井加奈", - "藤原肇", - "高森藍子" - ] - }, - "104": { - "id": "104", - "name": "ももぺあべりー", - "member": [ - "櫻井桃華", - "的場梨沙", - "橘ありす" - ] - }, - "105": { - "id": "105", - "name": "リトルチェリーブロッサム", - "member": [ - "岡崎泰葉", - "櫻井桃華", - "龍崎薫" - ] - }, - "106": { - "id": "106", - "name": "レインドロップ", - "member": [ - "原田美世", - "脇山珠美", - "大槻唯" - ] - }, - "107": { - "id": "107", - "name": "ロッキングガール", - "member": [ - "多田李衣菜", - "三村かな子", - "城ヶ崎莉嘉" - ] - }, - "108": { - "id": "108", - "name": "individuals", - "member": [ - "森久保乃々", - "星輝子", - "早坂美玲" - ] - }, - "109": { - "id": "109", - "name": "new generations", - "member": [ - "島村卯月", - "渋谷凛", - "本田未央" - ] - }, - "110": { - "id": "110", - "name": "アップトゥデイト", - "member": [ - "水木聖來", - "松本沙理奈", - "太田優" - ] - }, - "111": { - "id": "111", - "name": "アンチェイン・シグナル", - "member": [ - "木場真奈美", - "星輝子", - "水木聖來" - ] - }, - "112": { - "id": "112", - "name": "ギャルズパーティー", - "member": [ - "仙崎恵磨", - "藤本里奈", - "大槻唯" - ] - }, - "113": { - "id": "113", - "name": "セクシーギャルズ", - "member": [ - "大槻唯", - "城ヶ崎美嘉", - "藤本里奈" - ] - }, - "114": { - "id": "114", - "name": "ドリームホープスプリング", - "member": [ - "成宮由愛", - "望月聖", - "古賀小春" - ] - }, - "115": { - "id": "115", - "name": "虹色ドリーマー", - "member": [ - "神谷奈緒", - "荒木比奈", - "安部菜々" - ] - }, - "116": { - "id": "116", - "name": "にゃん・にゃん・にゃん", - "member": [ - "前川みく", - "高峯のあ", - "アナスタシア" - ] - }, - "117": { - "id": "117", - "name": "ハードメテオライツ", - "member": [ - "木場真奈美", - "吉岡沙紀", - "木村夏樹" - ] - }, - "118": { - "id": "118", - "name": "ビューティーアリュール", - "member": [ - "小室千奈美", - "松山久美子", - "浜川愛結奈" - ] - }, - "119": { - "id": "119", - "name": "フランメ・ルージュ", - "member": [ - "桐野アヤ", - "小松伊吹", - "槙原志保" - ] - }, - "120": { - "id": "120", - "name": "ブルームジャーニー", - "member": [ - "氏家むつみ", - "成宮由愛", - "古賀小春" - ] - }, - "121": { - "id": "121", - "name": "ヘルシーサバイブ", - "member": [ - "大和亜季", - "栗原ネネ", - "涼宮星花" - ] - }, - "122": { - "id": "122", - "name": "ホットアートジャンピン", - "member": [ - "西島櫂", - "愛野渚", - "吉岡沙紀" - ] - }, - "123": { - "id": "123", - "name": "マッシブライダース", - "member": [ - "木村夏樹", - "向井拓海", - "藤本里奈" - ] - }, - "124": { - "id": "124", - "name": "女神たちの夏宴", - "member": [ - "高垣楓", - "片桐早苗", - "川島瑞樹" - ] - }, - "125": { - "id": "125", - "name": "ユア・フレンズ", - "member": [ - "ナターリア", - "ケイト", - "メアリー・コクラン" - ] - }, - "126": { - "id": "126", - "name": "誘惑イビル", - "member": [ - "一ノ瀬志希", - "宮本フレデリカ", - "塩見周子" - ] - }, - "127": { - "id": "127", - "name": "落花流水", - "member": [ - "佐久間まゆ", - "白坂小梅", - "北条加蓮" - ] - }, - "128": { - "id": "128", - "name": "ラビュー☆アイス☆マウンテン", - "member": [ - "榊原里美", - "棟方愛海", - "難波笑美" - ] - }, - "129": { - "id": "129", - "name": "ワンステップス", - "member": [ - "関裕美", - "白菊ほたる", - "森久保乃々" - ] - }, - "130": { - "id": "130", - "name": "GIRLS BE", - "member": [ - "関裕美", - "白菊ほたる", - "松尾千鶴" - ] - }, - "131": { - "id": "131", - "name": "KBYD", - "member": [ - "輿水幸子", - "小早川紗枝", - "姫川友紀" - ] - }, - "132": { - "id": "132", - "name": "thinE/Dasein", - "member": [ - "有浦柑奈", - "二宮飛鳥", - "瀬名詩織" - ] - }, - "133": { - "id": "133", - "name": "スケルツォ・プリマヴェーラ", - "member": [ - "村松さくら", - "大原みちる", - "今井加奈" - ] - }, - "134": { - "id": "134", - "name": "ノーブルセレブリティ", - "member": [ - "水本ゆかり", - "涼宮星花", - "西園寺琴歌" - ] - }, - "135": { - "id": "135", - "name": "ピンキーキュート", - "member": [ - "島村卯月", - "小日向美穂", - "緒方智絵里" - ] - }, - "136": { - "id": "136", - "name": "メロウ・イエロー", - "member": [ - "中野有香", - "水本ゆかり", - "椎名法子" - ] - }, - "137": { - "id": "137", - "name": "CANDY ISLAND", - "member": [ - "三村かな子", - "双葉杏", - "緒方智絵里" - ] - }, - "138": { - "id": "138", - "name": "ピンクチェックスクール", - "member": [ - "島村卯月", - "小日向美穂", - "五十嵐響子" - ] - }, - "139": { - "id": "139", - "name": "397cherry", - "member": [ - "前川みく", - "安部菜々", - "緒方智絵里" - ] - }, - "140": { - "id": "140", - "name": "アイドルミズキ with AS", - "member": [ - "東郷あい", - "川島瑞樹", - "吉岡沙紀" - ] - }, - "141": { - "id": "141", - "name": "トランクィル・ウィスパー", - "member": [ - "アナスタシア", - "鷺沢文香", - "高垣楓" - ] - }, - "142": { - "id": "142", - "name": "バレンタイン反省会", - "member": [ - "和久井留美", - "服部瞳子", - "三船美優" - ] - }, - "143": { - "id": "143", - "name": "ファタ・モルガーナ", - "member": [ - "大石泉", - "浅利七海", - "八神マキノ" - ] - }, - "144": { - "id": "144", - "name": "Triad Primus", - "member": [ - "渋谷凛", - "神谷奈緒", - "北条加蓮" - ] - }, - "145": { - "id": "145", - "name": "LOVE LAIKA with Rosenburg Engel", - "member": [ - "新田美波", - "アナスタシア", - "神崎蘭子" - ] - }, - "146": { - "id": "146", - "name": "サンセットノスタルジー", - "member": [ - "本田未央", - "矢口美羽", - "松山久美子" - ] - }, - "147": { - "id": "147", - "name": "セクシーギルティ", - "member": [ - "及川雫", - "片桐早苗", - "堀裕子" - ] - }, - "148": { - "id": "148", - "name": "チアフルボンバーズ", - "member": [ - "日野茜", - "姫川友紀", - "若林智香" - ] - }, - "149": { - "id": "149", - "name": "凸レーション", - "member": [ - "諸星きらり", - "城ヶ崎莉嘉", - "赤城みりあ" - ] - }, - "150": { - "id": "150", - "name": "ヒートアップ☆チアーズ", - "member": [ - "若林智香", - "斉藤洋子", - "真鍋いつき" - ] - }, - "151": { - "id": "151", - "name": "ブエナ・スエルテ", - "member": [ - "土屋亜子", - "矢口美羽", - "喜多日菜子" - ] - }, - "152": { - "id": "152", - "name": "B.B.ロワイヤル", - "member": [ - "姫川友紀", - "難波笑美", - "村上巴" - ] - }, - "153": { - "id": "153", - "name": "Positive Passion", - "member": [ - "本田未央", - "日野茜", - "高森藍子" - ] - }, - "154": { - "id": "154", - "name": "秋色温泉", - "member": [ - "江上椿", - "八神マキノ", - "小関麗奈", - "仙崎恵磨" - ] - }, - "155": { - "id": "155", - "name": "セレクテッド", - "member": [ - "速水奏", - "大槻唯", - "アナスタシア", - "宮本フレデリカ" - ] - }, - "156": { - "id": "156", - "name": "センゴク☆華☆ランブ", - "member": [ - "丹羽仁美", - "脇山珠美", - "浜口あやめ", - "首藤葵" - ] - }, - "157": { - "id": "157", - "name": "デビリッシュゴシック", - "member": [ - "柳清良", - "棟方愛海", - "佐々木千枝", - "海老原菜帆" - ] - }, - "158": { - "id": "158", - "name": "ハイカラサクラ", - "member": [ - "双葉杏", - "前川みく", - "新田美波", - "城ヶ崎莉嘉" - ] - }, - "159": { - "id": "159", - "name": "パステル・カクテル", - "member": [ - "黒川千秋", - "沢田麻理菜", - "相馬夏美", - "間中美里" - ] - }, - "160": { - "id": "160", - "name": "ハッピーバレンタイン", - "member": [ - "椎名法子", - "速水奏", - "小松伊吹", - "中野有香" - ] - }, - "161": { - "id": "161", - "name": "ハロウィンナイト", - "member": [ - "丹羽仁美", - "篠原礼", - "森久保乃々", - "上田鈴帆" - ] - }, - "162": { - "id": "162", - "name": "ブライダルセレクション", - "member": [ - "白菊ほたる", - "小室千奈美", - "結城晴", - "メアリー・コクラン" - ] - }, - "163": { - "id": "163", - "name": "フリルドスクエア", - "member": [ - "工藤忍", - "綾瀬穂乃香", - "喜多見柚", - "桃井あずき" - ] - }, - "164": { - "id": "164", - "name": "マジカルテット", - "member": [ - "横山千佳", - "福山舞", - "成宮由愛", - "小関麗奈" - ] - }, - "165": { - "id": "165", - "name": "メルヘンゴシック", - "member": [ - "櫻井桃華", - "大西由里子", - "森久保乃々", - "杉坂海" - ] - }, - "166": { - "id": "166", - "name": "メルヘンアニマルズ", - "member": [ - "乙倉悠貴", - "相川千夏", - "岡崎泰葉", - "北川真尋" - ] - }, - "167": { - "id": "167", - "name": "ロマンティックツアーズ", - "member": [ - "伊集院惠", - "相馬夏美", - "並木芽衣子", - "江上椿" - ] - }, - "168": { - "id": "168", - "name": "*(Asterisk) with なつなな", - "member": [ - "前川みく", - "多田李衣菜", - "木村夏樹", - "安部菜々" - ] - }, - "169": { - "id": "169", - "name": "FOUR PIECE", - "member": [ - "多田李衣菜", - "ライラ", - "冴島清美", - "涼宮星花" - ] - }, - "170": { - "id": "170", - "name": "UKスタイル", - "member": [ - "涼宮星花", - "ケイト", - "仙崎恵磨", - "メアリー・コクラン" - ] - }, - "171": { - "id": "171", - "name": "Black/White-Roses", - "member": [ - "東郷あい", - "浅野風香", - "櫻井桃華", - "瀬名詩織" - ] - }, - "172": { - "id": "172", - "name": "GIRLS BE NEXT STEP", - "member": [ - "関裕美", - "白菊ほたる", - "松尾千鶴", - "岡崎泰葉" - ] - }, - "173": { - "id": "173", - "name": "ピンクドットバルーン", - "member": [ - "三村かな子", - "持田亜里沙", - "緒方智絵里", - "柳瀬美由紀" - ] - }, - "174": { - "id": "174", - "name": "カナリアサマー", - "member": [ - "大槻唯", - "姫川友紀", - "愛野渚", - "龍崎薫" - ] - }, - "175": { - "id": "175", - "name": "ライトグリーンセーフ", - "member": [ - "木村夏樹", - "沢田麻理菜", - "斉藤洋子", - "真鍋いつき" - ] - }, - "176": { - "id": "176", - "name": "炎陣", - "member": [ - "向井拓海", - "藤本里奈", - "松永涼", - "大和亜季", - "木村夏樹" - ] - }, - "177": { - "id": "177", - "name": "桜舞隊", - "member": [ - "古賀小春", - "福山舞", - "的場梨沙", - "村上巴", - "結城晴" - ] - }, - "178": { - "id": "178", - "name": "からぱれ", - "member": [ - "海老原菜帆", - "柳瀬美由紀", - "脇山珠美", - "楊菲菲", - "長富蓮実" - ] - }, - "179": { - "id": "179", - "name": "春霞", - "member": [ - "道明寺歌鈴", - "浜口あやめ", - "脇山珠美", - "小早川紗枝", - "依田芳乃" - ] - }, - "180": { - "id": "180", - "name": "ハロウィンパーティー", - "member": [ - "佐久間まゆ", - "松永涼", - "梅木音葉", - "上田鈴帆", - "難波笑美" - ] - }, - "181": { - "id": "181", - "name": "フレッシュアスリーテス", - "member": [ - "今井加奈", - "桐野アヤ", - "小室千奈美", - "沢田麻理菜", - "北川真尋" - ] - }, - "182": { - "id": "182", - "name": "マーメイドパラダイス", - "member": [ - "横山千佳", - "五十嵐響子", - "水木聖來", - "瀬名詩織", - "及川雫" - ] - }, - "183": { - "id": "183", - "name": "メイドコレクション", - "member": [ - "クラリス", - "東郷あい", - "白坂小梅", - "並木芽衣子", - "槙原志保" - ] - }, - "184": { - "id": "184", - "name": "宵乙女", - "member": [ - "高垣楓", - "佐藤心", - "安部菜々", - "三船美優", - "片桐早苗" - ] - }, - "185": { - "id": "185", - "name": "LiPPS", - "member": [ - "速水奏", - "塩見周子", - "宮本フレデリカ", - "一ノ瀬志希", - "城ヶ崎美嘉" - ] - }, - "186": { - "id": "186", - "name": "LittlePOPS", - "member": [ - "双葉杏", - "城ヶ崎莉嘉", - "二宮飛鳥", - "早坂美玲", - "白坂小梅" - ] - }, - "187": { - "id": "187", - "name": "NEX-US", - "member": [ - "アナスタシア", - "神谷奈緒", - "中野有香", - "前川みく", - "星輝子" - ] - }, - "188": { - "id": "188", - "name": "Sweetches", - "member": [ - "三村かな子", - "椎名法子", - "十時愛梨", - "及川雫", - "森久保乃々" - ] - }, - "189": { - "id": "189", - "name": "アインフェリア", - "member": [ - "新田美波", - "鷺沢文香", - "橘ありす", - "高森藍子", - "相葉夕美" - ] - }, - "190": { - "id": "190", - "name": "サマプリ", - "member": [ - "川島瑞樹", - "日野茜", - "堀裕子", - "上田鈴帆", - "難波笑美" - ] - }, - "191": { - "id": "191", - "name": "Love Yell", - "member": [ - "五十嵐響子", - "姫川友紀", - "水本ゆかり", - "諸星きらり", - "乙倉悠貴" - ] - }, - "192": { - "id": "192", - "name": "Masque:Rade", - "member": [ - "佐久間まゆ", - "北条加蓮", - "小日向美穂", - "多田李衣菜", - "緒方智絵里" - ] - }, - "193": { - "id": "193", - "name": "イエローリリー", - "member": [ - "間中美里", - "中野有香", - "椎名法子", - "水本ゆかり", - "今井加奈" - ] - }, - "194": { - "id": "194", - "name": "サクヤヒメ", - "member": [ - "三村かな子", - "緒方智絵里", - "輿水幸子", - "佐久間まゆ", - "小早川紗枝" - ] - }, - "195": { - "id": "195", - "name": "C5", - "member": [ - "安部菜々", - "島村卯月", - "小日向美穂", - "双葉杏", - "前川みく" - ] - }, - "196": { - "id": "196", - "name": "la Roseraie", - "member": [ - "宮本フレデリカ", - "一ノ瀬志希", - "櫻井桃華", - "中野有香", - "五十嵐響子" - ] - }, - "197": { - "id": "197", - "name": "アズール・ムジカ", - "member": [ - "渋谷凛", - "高垣楓", - "神崎蘭子", - "多田李衣菜", - "新田美波" - ] - }, - "198": { - "id": "198", - "name": "ブルーナポレオン", - "member": [ - "佐々木千枝", - "荒木比奈", - "川島瑞樹", - "上条春菜", - "松本沙理奈" - ] - }, - "199": { - "id": "199", - "name": "レッドバラード", - "member": [ - "東郷あい", - "桐野アヤ", - "相川千夏", - "高橋礼子", - "黒川千秋" - ] - }, - "200": { - "id": "200", - "name": "CAERULA", - "member": [ - "鷺沢文香", - "速水奏", - "橘ありす", - "塩見周子", - "二宮飛鳥" - ] - }, - "201": { - "id": "201", - "name": "Caskets", - "member": [ - "アナスタシア", - "川島瑞樹", - "白坂小梅", - "神谷奈緒", - "北条加蓮" - ] - }, - "202": { - "id": "202", - "name": "サンフラワー", - "member": [ - "姫川友紀", - "市原仁奈", - "片桐早苗", - "大槻唯", - "相葉夕美" - ] - }, - "203": { - "id": "203", - "name": "ゼッケンズ", - "member": [ - "十時愛梨", - "日野茜", - "高森藍子", - "星輝子", - "堀裕子" - ] - }, - "204": { - "id": "204", - "name": "トロピカル☆スターズ", - "member": [ - "城ヶ崎莉嘉", - "諸星きらり", - "城ヶ崎美嘉", - "本田未央", - "赤城みりあ" - ] - }, - "205": { - "id": "205", - "name": "シンデレラガール", - "member": [ - "十時愛梨", - "神崎蘭子", - "渋谷凛", - "塩見周子", - "島村卯月" - ] - }, - "206": { - "id": "206", - "name": "セクシーボンデージ", - "member": [ - "松本沙理奈", - "海老原菜帆", - "間中美里", - "篠原礼", - "兵藤レナ", - "西川保奈美" - ] - }, - "207": { - "id": "207", - "name": "ムーランルージュ", - "member": [ - "柳清良", - "佐藤心", - "柊志乃", - "斉藤洋子", - "水野翠", - "高橋礼子", - "間中美里" - ] - }, - "208": { - "id": "208", - "name": "ロワイヤルスタイル", - "member": [ - "相川千夏", - "兵藤レナ", - "野々村そら", - "仙崎恵磨", - "古賀小春", - "三好紗南", - "大和亜季" - ] - }, - "209": { - "id": "209", - "name": "ロワイヤルスタイルNP", - "member": [ - "椎名法子", - "結城晴", - "財前時子", - "大原みちる", - "吉岡沙紀", - "難波笑美", - "黒川千秋", - "長富蓮実", - "桐野アヤ", - "藤原肇", - "間中美里" - ] - }, - "210": { - "id": "210", - "name": "ロワイヤルスタイルND", - "member": [ - "クラリス", - "服部瞳子", - "栗原ネネ", - "丹羽仁美", - "松本沙理奈", - "八神マキノ", - "篠原礼", - "柳瀬美由紀", - "若林智香", - "古澤頼子", - "福山舞", - "衛藤美紗希" - ] - }, - "211": { - "id": "211", - "name": "ワンダー・フル", - "member": [ - "上田鈴帆", - "村松さくら", - "北川真尋", - "佐城雪美", - "冴島清美", - "浅野風香" - ] - }, - "212": { - "id": "212", - "name": "CINDERELLA GIRLS", - "member": [ - "小日向美穂", - "佐久間まゆ", - "輿水幸子", - "川島瑞樹", - "高垣楓", - "白坂小梅", - "十時愛梨", - "城ヶ崎美嘉", - "日野茜" - ] - }, - "213": { - "id": "213", - "name": "CINDERELLA PROJECT", - "member": [ - "島村卯月", - "渋谷凛", - "本田未央", - "赤城みりあ", - "アナスタシア", - "緒方智絵里", - "神崎蘭子", - "城ヶ崎莉嘉", - "多田李衣菜", - "新田美波", - "双葉杏", - "前川みく", - "三村かな子", - "諸星きらり" - ] - }, - "214": { - "id": "214", - "name": "L.M.B.G", - "member": [ - "佐々木千枝", - "横山千佳", - "福山舞", - "龍崎薫", - "古賀小春", - "橘ありす", - "成宮由愛", - "日下部若葉", - "佐城雪美", - "小関麗奈", - "柳瀬美由紀", - "南条光", - "大沼くるみ", - "的場梨沙", - "市原仁奈", - "赤城みりあ", - "櫻井桃華", - "メアリー・コクラン" - ] - }, - "215": { - "id": "215", - "name": "Project:Krone", - "member": [ - "速水奏", - "塩見周子", - "宮本フレデリカ", - "鷺沢文香", - "大槻唯", - "橘ありす", - "アナスタシア", - "渋谷凛", - "神谷奈緒", - "北条加蓮" - ] - } -} \ No newline at end of file diff --git a/resource/db/raw/firebase_db.json b/resource/db/raw/firebase_db.json deleted file mode 100644 index 365003b..0000000 --- a/resource/db/raw/firebase_db.json +++ /dev/null @@ -1,81057 +0,0 @@ -{ - "core": { - "dere_overview": { - "島村卯月": { - "id": "1", - "name": "島村卯月", - "kana": "しまむらうづき", - "latest_hash": "1338de950f95214e111dad2943f191c8" - }, - "中野有香": { - "id": "2", - "name": "中野有香", - "kana": "なかのゆか", - "latest_hash": "b1976493a44373a42a7087ea012da84a" - }, - "水本ゆかり": { - "id": "3", - "name": "水本ゆかり", - "kana": "みずもとゆかり", - "latest_hash": "0ae0b50138bbf05741509420d5324943" - }, - "福山舞": { - "id": "4", - "name": "福山舞", - "kana": "ふくやままい", - "latest_hash": "02a5755a9e817844b01702bd71f8a68f" - }, - "椎名法子": { - "id": "5", - "name": "椎名法子", - "kana": "しいなのりこ", - "latest_hash": "6e42fd90357609b6d27c0afa237f117b" - }, - "今井加奈": { - "id": "6", - "name": "今井加奈", - "kana": "いまいかな", - "latest_hash": "2ed07d073761b8d9b26106a1bebea34a" - }, - "持田亜里沙": { - "id": "7", - "name": "持田亜里沙", - "kana": "もちだありさ", - "latest_hash": "baf115536838f243cc9a52df9853fb22" - }, - "三村かな子": { - "id": "8", - "name": "三村かな子", - "kana": "みむらかなこ", - "latest_hash": "c8c44f8080c9c5fe57633092232f5dee" - }, - "奥山沙織": { - "id": "9", - "name": "奥山沙織", - "kana": "おくやまさおり", - "latest_hash": "d5524d87d135dae077956ca332579a7e" - }, - "間中美里": { - "id": "10", - "name": "間中美里", - "kana": "まなかみさと", - "latest_hash": "bd77e3aa1b781fed0b474a070e939eab" - }, - "小日向美穂": { - "id": "11", - "name": "小日向美穂", - "kana": "おびなたみほ", - "latest_hash": "6c7bab6998ae7b616fc1598308ba201b" - }, - "緒方智絵里": { - "id": "12", - "name": "緒方智絵里", - "kana": "おがたちえり", - "latest_hash": "aab77d68d6c72c73efda675edbd387a8" - }, - "五十嵐響子": { - "id": "13", - "name": "五十嵐響子", - "kana": "いがらしきょうこ", - "latest_hash": "0bacaa88e323666ac8790a16a2ac46ee" - }, - "柳瀬美由紀": { - "id": "14", - "name": "柳瀬美由紀", - "kana": "やなせみゆき", - "latest_hash": "12c2c842a331db791b909c0003a105ba" - }, - "櫻井桃華": { - "id": "15", - "name": "櫻井桃華", - "kana": "さくらいももか", - "latest_hash": "d32d219a3c0ad6dc84734d1fc3f9f94e" - }, - "江上椿": { - "id": "16", - "name": "江上椿", - "kana": "えがみつばき", - "latest_hash": "beba5121254d967e0be4895fbe2fac3c" - }, - "長富蓮実": { - "id": "17", - "name": "長富蓮実", - "kana": "ながとみはすみ", - "latest_hash": "cd8477548a634299e065cc223b70eb74" - }, - "横山千佳": { - "id": "18", - "name": "横山千佳", - "kana": "よこやまちか", - "latest_hash": "d02199911575371c301fa3f8d1f937fe" - }, - "関裕美": { - "id": "19", - "name": "関裕美", - "kana": "せきゆみ", - "latest_hash": "6f26798de79180c3bc5aad8a14b31b34" - }, - "太田優": { - "id": "20", - "name": "太田優", - "kana": "おおたゆう", - "latest_hash": "2763a2afd43cf1d265c968e8a9711692" - }, - "棟方愛海": { - "id": "21", - "name": "棟方愛海", - "kana": "むなかたあいうみ", - "latest_hash": "6266ac4f14b93b3859953ec5f6e94cb4" - }, - "藤本里奈": { - "id": "22", - "name": "藤本里奈", - "kana": "ふじもとりな", - "latest_hash": "746f35295f4f371ec9b71219fb1224ce" - }, - "大原みちる": { - "id": "23", - "name": "大原みちる", - "kana": "おおはらみちる", - "latest_hash": "6982bf46c7bfa21df65e8b12044e9555" - }, - "遊佐こずえ": { - "id": "24", - "name": "遊佐こずえ", - "kana": "ゆさこずえ", - "latest_hash": "687b4206d88a37c16864b8f4d507f2cb" - }, - "大沼くるみ": { - "id": "25", - "name": "大沼くるみ", - "kana": "おおぬまくるみ", - "latest_hash": "d76492cb5a1cc1202e993013da0e48cd" - }, - "一ノ瀬志希": { - "id": "26", - "name": "一ノ瀬志希", - "kana": "いちのせこころざしのぞみ", - "latest_hash": "bb156a253fc247462a87b20eee8770f5" - }, - "前川みく": { - "id": "27", - "name": "前川みく", - "kana": "まえかわみく", - "latest_hash": "e863deaf923d0239d7d118503386c7c4" - }, - "赤西瑛梨華": { - "id": "28", - "name": "赤西瑛梨華", - "kana": "あかにしえいりか", - "latest_hash": "2fc28fdf3ff00656454cd265ac6ff260" - }, - "松原早耶": { - "id": "29", - "name": "松原早耶", - "kana": "まつばらさや", - "latest_hash": "eab519121d4491eb02a6ba19010da935" - }, - "相原雪乃": { - "id": "30", - "name": "相原雪乃", - "kana": "あいはらゆきの", - "latest_hash": "cfc329e650e8c8f39600ad33229d97db" - }, - "宮本フレデリカ": { - "id": "31", - "name": "宮本フレデリカ", - "kana": "みやもとふれでりか", - "latest_hash": "09346bd07794d16a01ebdf62ea8fd570" - }, - "小早川紗枝": { - "id": "32", - "name": "小早川紗枝", - "kana": "こばやかわさえ", - "latest_hash": "76301262a0d6d164f8d35b6148bc96cb" - }, - "西園寺琴歌": { - "id": "33", - "name": "西園寺琴歌", - "kana": "さいおんじことか", - "latest_hash": "37f641a6738f8d5735db957a37b781ae" - }, - "双葉杏": { - "id": "34", - "name": "双葉杏", - "kana": "ふたばあんず", - "latest_hash": "458454502049072b7c4f264362088614" - }, - "楊菲菲": { - "id": "35", - "name": "楊菲菲", - "kana": "よううすうす", - "latest_hash": "6f2cef2655f476d2f3f6ea80d8f481ec" - }, - "桃井あずき": { - "id": "36", - "name": "桃井あずき", - "kana": "ももいあずき", - "latest_hash": "cf166d5c57c0446980b7393d66318f22" - }, - "涼宮星花": { - "id": "37", - "name": "涼宮星花", - "kana": "すずみやせいか", - "latest_hash": "a27419ca801cfd72eb2a724f82cdaf55" - }, - "月宮雅": { - "id": "38", - "name": "月宮雅", - "kana": "つきみやまさし", - "latest_hash": "ea6ea7bc7bb994ee3f40bf04f6126ec8" - }, - "兵藤レナ": { - "id": "39", - "name": "兵藤レナ", - "kana": "ひょうどうれな", - "latest_hash": "9cf74ba99862e8a7d52677bca5e48c3b" - }, - "丹羽仁美": { - "id": "40", - "name": "丹羽仁美", - "kana": "にわひとみ", - "latest_hash": "9392cd6501637b7e2d621e7459fc742f" - }, - "道明寺歌鈴": { - "id": "41", - "name": "道明寺歌鈴", - "kana": "どうみょうじうたすず", - "latest_hash": "d9be7d1d689f9e143ff27dd1063a0040" - }, - "高槻やよい": { - "id": "42", - "name": "高槻やよい", - "kana": "たかつきやよい", - "latest_hash": "404957c126156e54750231e4e58221ad" - }, - "菊地真": { - "id": "43", - "name": "菊地真", - "kana": "きくちまこと", - "latest_hash": "2838e5d36d4e11a09fac86270dcf63a4" - }, - "我那覇響": { - "id": "44", - "name": "我那覇響", - "kana": "がなはひびき", - "latest_hash": "c5e1fe7ef2b387eb27a9adbb9d9dfa6c" - }, - "柳清良": { - "id": "45", - "name": "柳清良", - "kana": "やなぎきよしりょう", - "latest_hash": "5889d8f072f2fac046d4e3b55e2ac4ce" - }, - "天海春香": { - "id": "46", - "name": "天海春香", - "kana": "あまみはるか", - "latest_hash": "eb10c4da293f3f132f146989bd997f64" - }, - "井村雪菜": { - "id": "47", - "name": "井村雪菜", - "kana": "いむらゆきな", - "latest_hash": "9394a74e8344967cbf42eb20eae12ab5" - }, - "日下部若葉": { - "id": "48", - "name": "日下部若葉", - "kana": "くさかべわかば", - "latest_hash": "16b3f7c98071fcc566c63e350f6d6755" - }, - "榊原里美": { - "id": "49", - "name": "榊原里美", - "kana": "さかきばらさとみ", - "latest_hash": "f5513ccc6e9fbd159a8a1c770341ca42" - }, - "輿水幸子": { - "id": "50", - "name": "輿水幸子", - "kana": "こしみずさちこ", - "latest_hash": "6510a11da53b691ab9031a461560116d" - }, - "安斎都": { - "id": "51", - "name": "安斎都", - "kana": "あんざいみやこ", - "latest_hash": "0da70e0edc3ce8b0d0fcf9caf198d7d6" - }, - "浅野風香": { - "id": "52", - "name": "浅野風香", - "kana": "あさのふうかおる", - "latest_hash": "3e11cdda3fb461943a95a243ccb16db8" - }, - "大西由里子": { - "id": "53", - "name": "大西由里子", - "kana": "おおにしゆりこ", - "latest_hash": "493a01e58a43693352fd7343e3987069" - }, - "安部菜々": { - "id": "54", - "name": "安部菜々", - "kana": "あべさい々", - "latest_hash": "4646da2024bcd18a3334ba0c06a7770d" - }, - "工藤忍": { - "id": "55", - "name": "工藤忍", - "kana": "くどうしのぶ", - "latest_hash": "dd3cbc7d99d27b18163a05c94d5fcbd1" - }, - "栗原ネネ": { - "id": "56", - "name": "栗原ネネ", - "kana": "くりはらねね", - "latest_hash": "7a9fe2cd8a14757af1ce02c24ab770e4" - }, - "古賀小春": { - "id": "57", - "name": "古賀小春", - "kana": "こがこはる", - "latest_hash": "50a0bb6a83031685c407e03c4bd7d5b1" - }, - "クラリス": { - "id": "58", - "name": "クラリス", - "kana": "くらりす", - "latest_hash": "982a1fa17a690105cf07772a7d5bc5a4" - }, - "佐久間まゆ": { - "id": "59", - "name": "佐久間まゆ", - "kana": "さくままゆ", - "latest_hash": "992e3ae2a449f25bc4678f9bde5e327d" - }, - "村松さくら": { - "id": "60", - "name": "村松さくら", - "kana": "むらまつさくら", - "latest_hash": "f3a647752b0e6c8f4d4938a2a5bbd308" - }, - "白菊ほたる": { - "id": "61", - "name": "白菊ほたる", - "kana": "しらぎくほたる", - "latest_hash": "9024cb32c76078e8f0e4850151c007ba" - }, - "早坂美玲": { - "id": "62", - "name": "早坂美玲", - "kana": "はやさかみれい", - "latest_hash": "1aea545811f830d6c6baad2453571a96" - }, - "有浦柑奈": { - "id": "63", - "name": "有浦柑奈", - "kana": "ゆううらかんな", - "latest_hash": "23ad85825d08c2b01758a0a95eee45d2" - }, - "乙倉悠貴": { - "id": "64", - "name": "乙倉悠貴", - "kana": "おつくらゆき", - "latest_hash": "ad1d9695914de9d5464ffe838872530f" - }, - "原田美世": { - "id": "65", - "name": "原田美世", - "kana": "はらだみせい", - "latest_hash": "1be46e70f136716b759b15340806be70" - }, - "池袋晶葉": { - "id": "66", - "name": "池袋晶葉", - "kana": "いけぶくろあきらよう", - "latest_hash": "f14270b8f9920a77b665767587d06b48" - }, - "渋谷凛": { - "id": "67", - "name": "渋谷凛", - "kana": "しぶたにりん", - "latest_hash": "4ebbcc60acba9e2760af8a5be417782d" - }, - "黒川千秋": { - "id": "68", - "name": "黒川千秋", - "kana": "くろかわちあき", - "latest_hash": "1b13a47f1e86ec39ecf4974fe3049ff9" - }, - "松本沙理奈": { - "id": "69", - "name": "松本沙理奈", - "kana": "まつもとさりな", - "latest_hash": "2e3a40d67d49dc6574282976c7ede024" - }, - "桐野アヤ": { - "id": "70", - "name": "桐野アヤ", - "kana": "きりのあや", - "latest_hash": "81fd47cf40cbfb59f9dc779f0b2e6258" - }, - "高橋礼子": { - "id": "71", - "name": "高橋礼子", - "kana": "たかはしれいこ", - "latest_hash": "79b7221bfb5db0a94baf512abe1eb5eb" - }, - "相川千夏": { - "id": "72", - "name": "相川千夏", - "kana": "あいかわちなつ", - "latest_hash": "4028037887d8707827e2a749bb925d5d" - }, - "川島瑞樹": { - "id": "73", - "name": "川島瑞樹", - "kana": "かわしまみずき", - "latest_hash": "f8290c4530003b664115639282feddd3" - }, - "神谷奈緒": { - "id": "74", - "name": "神谷奈緒", - "kana": "かみやなお", - "latest_hash": "8511ad8903a41ce65a867c7d1d9fb90a" - }, - "上条春菜": { - "id": "75", - "name": "上条春菜", - "kana": "かみじょうはるな", - "latest_hash": "895adb42cedd503a357282110c7c92c9" - }, - "荒木比奈": { - "id": "76", - "name": "荒木比奈", - "kana": "あらきひな", - "latest_hash": "df6fa045d58337acbd9725d8a940d1b4" - }, - "東郷あい": { - "id": "77", - "name": "東郷あい", - "kana": "とうごうあい", - "latest_hash": "18587c946f96cd9c273730176ecbcec8" - }, - "多田李衣菜": { - "id": "78", - "name": "多田李衣菜", - "kana": "ただりいな", - "latest_hash": "4a688e97246cf40a0e8850db9199e694" - }, - "水木聖來": { - "id": "79", - "name": "水木聖來", - "kana": "みずきせいら", - "latest_hash": "ba06248f504e77b5b221773f218ea8a2" - }, - "佐々木千枝": { - "id": "80", - "name": "佐々木千枝", - "kana": "ささきちえ", - "latest_hash": "54022827f6129503d2444697e275e075" - }, - "三船美優": { - "id": "81", - "name": "三船美優", - "kana": "みふねみゅう", - "latest_hash": "be6c919489145ab6fcf4735fccad0f5c" - }, - "服部瞳子": { - "id": "82", - "name": "服部瞳子", - "kana": "はっとりとうこ", - "latest_hash": "8c428918c3def67003cdb73be7eb1b85" - }, - "木場真奈美": { - "id": "83", - "name": "木場真奈美", - "kana": "こばまなみ", - "latest_hash": "a53f598eea9637e74b08e76c96d18d4b" - }, - "藤原肇": { - "id": "84", - "name": "藤原肇", - "kana": "ふじわらはじめ", - "latest_hash": "eb1d57f9b906de305439f9ab26c6cdcf" - }, - "新田美波": { - "id": "85", - "name": "新田美波", - "kana": "にったみなみ", - "latest_hash": "05967e0044c4828455e8547b98df1d06" - }, - "水野翠": { - "id": "86", - "name": "水野翠", - "kana": "みずのみどり", - "latest_hash": "cff720f0338a7ae16dc936a802809a2f" - }, - "古澤頼子": { - "id": "87", - "name": "古澤頼子", - "kana": "ふるさわよりこ", - "latest_hash": "0fdb985e97611cb4df916563d6e7a27b" - }, - "橘ありす": { - "id": "88", - "name": "橘ありす", - "kana": "たちばなありす", - "latest_hash": "abfa3a0acdc184e3339b139c308eef21" - }, - "鷺沢文香": { - "id": "89", - "name": "鷺沢文香", - "kana": "さぎさわふみか", - "latest_hash": "bd02113f22c12494c713a43bcc0c8e90" - }, - "八神マキノ": { - "id": "90", - "name": "八神マキノ", - "kana": "やがみまきの", - "latest_hash": "615b301570633d1f4eeb36d15fa9c890" - }, - "ライラ": { - "id": "91", - "name": "ライラ", - "kana": "らいら", - "latest_hash": "d5736287d3ece82c8ab060128aeceaeb" - }, - "浅利七海": { - "id": "92", - "name": "浅利七海", - "kana": "あさりななうみ", - "latest_hash": "3680d1991b44b9d38b902639964525ed" - }, - "ヘレン": { - "id": "93", - "name": "ヘレン", - "kana": "へれん", - "latest_hash": "cc0698a6cf2cb1334013fe8b8ade9708" - }, - "松永涼": { - "id": "94", - "name": "松永涼", - "kana": "まつながりょう", - "latest_hash": "7c6d691dff4f6353fdf2ab67ccea3e35" - }, - "小室千奈美": { - "id": "95", - "name": "小室千奈美", - "kana": "こむろちなみ", - "latest_hash": "5adfeb655cf51c970156064c22dfb037" - }, - "高峯のあ": { - "id": "96", - "name": "高峯のあ", - "kana": "たかみねのあ", - "latest_hash": "eacc9bc4fe9128ac315bf016a2c356c4" - }, - "高垣楓": { - "id": "97", - "name": "高垣楓", - "kana": "たかがきかえで", - "latest_hash": "8f043af6f6c5ee0f0e01cd50a36a2f66" - }, - "神崎蘭子": { - "id": "98", - "name": "神崎蘭子", - "kana": "かんざきらんこ", - "latest_hash": "5f1dd0a32dcb32f9b8e3ea9aa58a1e40" - }, - "伊集院惠": { - "id": "99", - "name": "伊集院惠", - "kana": "いじゅういんめぐみ", - "latest_hash": "2b04d07128e9d3935b7505599d21f522" - }, - "柊志乃": { - "id": "100", - "name": "柊志乃", - "kana": "ひいらぎしの", - "latest_hash": "eebf9cbe74825c11552fc61be114e2cc" - }, - "北条加蓮": { - "id": "101", - "name": "北条加蓮", - "kana": "ほうじょうかれん", - "latest_hash": "846cbe9ab87264c80ab22de8776c78a9" - }, - "ケイト": { - "id": "102", - "name": "ケイト", - "kana": "けいと", - "latest_hash": "e931ed75eb91bcd9735bc590a92c07d6" - }, - "瀬名詩織": { - "id": "103", - "name": "瀬名詩織", - "kana": "せなしおり", - "latest_hash": "8518eb7db20611b6e579e44780f6fe24" - }, - "綾瀬穂乃香": { - "id": "104", - "name": "綾瀬穂乃香", - "kana": "あやせほのか", - "latest_hash": "2c7b6d96a1fb1e0ca98ca465fa67c848" - }, - "佐城雪美": { - "id": "105", - "name": "佐城雪美", - "kana": "さじょうゆきみ", - "latest_hash": "674f4cb361e967bca336653539ed6613" - }, - "如月千早": { - "id": "106", - "name": "如月千早", - "kana": "きさらぎちはや", - "latest_hash": "dfe34529a4dc472ca44c6ad923e44b5b" - }, - "三浦あずさ": { - "id": "107", - "name": "三浦あずさ", - "kana": "みうらあずさ", - "latest_hash": "035141c2768cddbab1153b2dcbcb3013" - }, - "秋月律子": { - "id": "108", - "name": "秋月律子", - "kana": "あきづきりつこ", - "latest_hash": "1b3a397157d4c390983480f0b8ebb2a1" - }, - "四条貴音": { - "id": "109", - "name": "四条貴音", - "kana": "しじょうたかね", - "latest_hash": "166fb623aae4d975387c3fbc8770a099" - }, - "篠原礼": { - "id": "110", - "name": "篠原礼", - "kana": "しのはられい", - "latest_hash": "084e23921a2680662428a561923bb395" - }, - "和久井留美": { - "id": "111", - "name": "和久井留美", - "kana": "わくいるみ", - "latest_hash": "303643dbb839ee0d48bfb7def91c193f" - }, - "吉岡沙紀": { - "id": "112", - "name": "吉岡沙紀", - "kana": "よしおかさき", - "latest_hash": "c3a21b688770def90cda930429d9d580" - }, - "梅木音葉": { - "id": "113", - "name": "梅木音葉", - "kana": "うめきおとは", - "latest_hash": "725a7367f2c8c08fa9f88fb14c58786a" - }, - "白坂小梅": { - "id": "114", - "name": "白坂小梅", - "kana": "しらさかこうめ", - "latest_hash": "8760de4f1ffcd5454f63f3332535bb24" - }, - "岸部彩華": { - "id": "115", - "name": "岸部彩華", - "kana": "きしべいろは", - "latest_hash": "2c67e5e41d85f043ffc99b92a4873ae1" - }, - "氏家むつみ": { - "id": "116", - "name": "氏家むつみ", - "kana": "うじいえむつみ", - "latest_hash": "b0a88d8ab733b0a8b4603a9ed1905b9a" - }, - "西川保奈美": { - "id": "117", - "name": "西川保奈美", - "kana": "にしかわほなみ", - "latest_hash": "148c761bd9f2699953da23d185cfed2b" - }, - "成宮由愛": { - "id": "118", - "name": "成宮由愛", - "kana": "なるみやゆめ", - "latest_hash": "3a91b3c21892380bf9febb395bf4baa5" - }, - "藤居朋": { - "id": "119", - "name": "藤居朋", - "kana": "ふじいとも", - "latest_hash": "cc04b9fd7b06293b952152aef32f4561" - }, - "塩見周子": { - "id": "120", - "name": "塩見周子", - "kana": "しおみしゅうこ", - "latest_hash": "e02867846f13e03eb619cb5e9bddae89" - }, - "脇山珠美": { - "id": "121", - "name": "脇山珠美", - "kana": "わきやまたまみ", - "latest_hash": "65c1d041ea9ed32748e96188870b56f5" - }, - "岡崎泰葉": { - "id": "122", - "name": "岡崎泰葉", - "kana": "おかざきやすは", - "latest_hash": "4753beff820055994390f5d38cd6c31e" - }, - "速水奏": { - "id": "123", - "name": "速水奏", - "kana": "はやみそう", - "latest_hash": "95d9d50a1d7378f34aaa25491b1fd0ec" - }, - "大石泉": { - "id": "124", - "name": "大石泉", - "kana": "おおいしいずみ", - "latest_hash": "ea24d74d3d4603863842d1464a3f82dd" - }, - "松尾千鶴": { - "id": "125", - "name": "松尾千鶴", - "kana": "まつおちづる", - "latest_hash": "49313322c5fd3c9bed6e752b20b7dcd9" - }, - "森久保乃々": { - "id": "126", - "name": "森久保乃々", - "kana": "もりくぼの々", - "latest_hash": "323901218db4adb11070ca80dbaa2339" - }, - "アナスタシア": { - "id": "127", - "name": "アナスタシア", - "kana": "あなすたしあ", - "latest_hash": "c0e1d6f4481ba3fabd64f9c6c9675156" - }, - "大和亜季": { - "id": "128", - "name": "大和亜季", - "kana": "やまとあき", - "latest_hash": "3fd70cf35e090606cfb1d891b35fb013" - }, - "結城晴": { - "id": "129", - "name": "結城晴", - "kana": "ゆうきはれ", - "latest_hash": "f3b9ea014c6bc64c930947cc9221d3c9" - }, - "二宮飛鳥": { - "id": "130", - "name": "二宮飛鳥", - "kana": "にのみやあすか", - "latest_hash": "3f93733e01fed8506d57f0c5894586f6" - }, - "桐生つかさ": { - "id": "131", - "name": "桐生つかさ", - "kana": "きりゅうつかさ", - "latest_hash": "bf5c1105baa37c752c0733f015513f75" - }, - "望月聖": { - "id": "132", - "name": "望月聖", - "kana": "もちづききよし", - "latest_hash": "3e6deec005701d78f54d7108ff35df41" - }, - "鷹富士茄子": { - "id": "133", - "name": "鷹富士茄子", - "kana": "たかふじなす", - "latest_hash": "715b793aa4d3b15051658c0100f70bde" - }, - "本田未央": { - "id": "134", - "name": "本田未央", - "kana": "ほんだみお", - "latest_hash": "fdda617ed4a59a8d1127c50336535a52" - }, - "高森藍子": { - "id": "135", - "name": "高森藍子", - "kana": "たかもりあいこ", - "latest_hash": "4d91dd57c123958c50421bb04076c240" - }, - "並木芽衣子": { - "id": "136", - "name": "並木芽衣子", - "kana": "なみきめいこ", - "latest_hash": "9a07422c4498c97ae7b7a9d9117fe9fd" - }, - "龍崎薫": { - "id": "137", - "name": "龍崎薫", - "kana": "りゅうざきかおる", - "latest_hash": "3d60bd5856309ade51e8d694c9ce0f57" - }, - "木村夏樹": { - "id": "138", - "name": "木村夏樹", - "kana": "きむらなつき", - "latest_hash": "f3a9f6ffd1b7e0ed7bad2d27cb3604af" - }, - "松山久美子": { - "id": "139", - "name": "松山久美子", - "kana": "まつやまくみこ", - "latest_hash": "e23409154c61e745d3e92fe075d8d7e8" - }, - "斉藤洋子": { - "id": "140", - "name": "斉藤洋子", - "kana": "さいとうようこ", - "latest_hash": "1013f20a456ce20449239b3e587bb424" - }, - "沢田麻理菜": { - "id": "141", - "name": "沢田麻理菜", - "kana": "さわだまりな", - "latest_hash": "1714cda17ded0f8215ee4c0f217a2c91" - }, - "矢口美羽": { - "id": "142", - "name": "矢口美羽", - "kana": "やぐちみわ", - "latest_hash": "c0bb1ce2f048f36f6397fc8dd094cc23" - }, - "赤城みりあ": { - "id": "143", - "name": "赤城みりあ", - "kana": "あかぎみりあ", - "latest_hash": "f2713603ccfb1afc09437a853b864ccd" - }, - "愛野渚": { - "id": "144", - "name": "愛野渚", - "kana": "あいのなぎさ", - "latest_hash": "b3c0ab815b7dae87ea9a636433655d89" - }, - "真鍋いつき": { - "id": "145", - "name": "真鍋いつき", - "kana": "まなべいつき", - "latest_hash": "83aa3c1928c1a0b2055c71ccd32ef090" - }, - "大槻唯": { - "id": "146", - "name": "大槻唯", - "kana": "おおつきゆい", - "latest_hash": "3989619894f357d64debb55929ca0edc" - }, - "姫川友紀": { - "id": "147", - "name": "姫川友紀", - "kana": "ひめかわゆき", - "latest_hash": "85688ae1cb65177f8acc8c407901267b" - }, - "トレーナー": { - "id": "148", - "name": "トレーナー", - "kana": "とれーなー", - "latest_hash": "35298581105317744d50303a73e59816" - }, - "喜多見柚": { - "id": "149", - "name": "喜多見柚", - "kana": "きたみゆ", - "latest_hash": "d2f0b1423a844ac537fa255c1e383b22" - }, - "上田鈴帆": { - "id": "150", - "name": "上田鈴帆", - "kana": "うえだすずほ", - "latest_hash": "ddf643f7944b7f55b9867bb33c17e9c6" - }, - "海老原菜帆": { - "id": "151", - "name": "海老原菜帆", - "kana": "えびはらなほ", - "latest_hash": "f918315bf0b28276e87d685d545c8145" - }, - "ルーキートレーナー": { - "id": "152", - "name": "ルーキートレーナー", - "kana": "るーきーとれーなー", - "latest_hash": "36e37884b950605dc92c789b5b270b37" - }, - "及川雫": { - "id": "153", - "name": "及川雫", - "kana": "おいかわしずく", - "latest_hash": "8f67ec464f14c69c9abff99d4e5c4eae" - }, - "小関麗奈": { - "id": "154", - "name": "小関麗奈", - "kana": "こせきれな", - "latest_hash": "f6119202da4cb7287258017f533e28a7" - }, - "衛藤美紗希": { - "id": "155", - "name": "衛藤美紗希", - "kana": "えとうみさき", - "latest_hash": "7b95eee4202b9c3265ba5a41194b1d34" - }, - "星輝子": { - "id": "156", - "name": "星輝子", - "kana": "ほしてるこ", - "latest_hash": "22aced971fa5898c838516e6f15fe27d" - }, - "片桐早苗": { - "id": "157", - "name": "片桐早苗", - "kana": "かたぎりさなえ", - "latest_hash": "c28e1707af95249b5b67568cfb748a50" - }, - "堀裕子": { - "id": "158", - "name": "堀裕子", - "kana": "ほりゆうこ", - "latest_hash": "64bfd146a17bcae9c53f47b939d3199a" - }, - "西島櫂": { - "id": "159", - "name": "西島櫂", - "kana": "にしじまかい", - "latest_hash": "dd34bfe74931aeab10c7aaafe2832d86" - }, - "的場梨沙": { - "id": "160", - "name": "的場梨沙", - "kana": "まとばりさ", - "latest_hash": "076ff2416464383dd10c0895f1118c57" - }, - "財前時子": { - "id": "161", - "name": "財前時子", - "kana": "ざいぜんときこ", - "latest_hash": "7ade063367ad652bc5d05aa008a75237" - }, - "依田芳乃": { - "id": "162", - "name": "依田芳乃", - "kana": "よだよしの", - "latest_hash": "86045c8c5c85b81aa51156dbcdb0e1a5" - }, - "相葉夕美": { - "id": "163", - "name": "相葉夕美", - "kana": "あいばゆみ", - "latest_hash": "eff3e13dd30475d420b7f95ce86c2bc4" - }, - "野々村そら": { - "id": "164", - "name": "野々村そら", - "kana": "ののむらそら", - "latest_hash": "3c9777fee6bd72b52c4700f384987b3a" - }, - "浜川愛結奈": { - "id": "165", - "name": "浜川愛結奈", - "kana": "はまかわあいゆいな", - "latest_hash": "aa9f7f62858b8a7afc5bf79a5d8bb989" - }, - "若林智香": { - "id": "166", - "name": "若林智香", - "kana": "わかばやしともか", - "latest_hash": "90acff12db7ec8895021c3726ee2ab58" - }, - "城ヶ崎美嘉": { - "id": "167", - "name": "城ヶ崎美嘉", - "kana": "じょうがさきみか", - "latest_hash": "062f663090a8424fca1a20133b774120" - }, - "城ヶ崎莉嘉": { - "id": "168", - "name": "城ヶ崎莉嘉", - "kana": "じょうがさきりか", - "latest_hash": "2c6f68904c5e8c886b60fcc1c01682df" - }, - "仙崎恵磨": { - "id": "169", - "name": "仙崎恵磨", - "kana": "せんざきめぐみま", - "latest_hash": "1ee716e4411265ade87048be92422d1d" - }, - "日野茜": { - "id": "170", - "name": "日野茜", - "kana": "ひのあかね", - "latest_hash": "9c04faffee708181d50dca5884d3fb1e" - }, - "諸星きらり": { - "id": "171", - "name": "諸星きらり", - "kana": "もろほしきらり", - "latest_hash": "d5d01a505a212461f49c618591073cf5" - }, - "十時愛梨": { - "id": "172", - "name": "十時愛梨", - "kana": "とときえり", - "latest_hash": "36516e31833083116be887f5b74985ab" - }, - "ナターリア": { - "id": "173", - "name": "ナターリア", - "kana": "なたーりあ", - "latest_hash": "6dc2df6837dff054aaaf63c93f92256b" - }, - "相馬夏美": { - "id": "174", - "name": "相馬夏美", - "kana": "そうまなつみ", - "latest_hash": "53c6e0d594d07c777aa0cceeb7e425b8" - }, - "槙原志保": { - "id": "175", - "name": "槙原志保", - "kana": "まきはらしほ", - "latest_hash": "fdce336ae18237fdf6e8811aa42d5444" - }, - "萩原雪歩": { - "id": "176", - "name": "萩原雪歩", - "kana": "はぎわらゆきほ", - "latest_hash": "a627c4d6e7a223402aa99e1d174dd7ce" - }, - "双海亜美": { - "id": "177", - "name": "双海亜美", - "kana": "ふたみあみ", - "latest_hash": "d604961da03fd554556bf5ec24eae13a" - }, - "双海真美": { - "id": "178", - "name": "双海真美", - "kana": "ふたみまみ", - "latest_hash": "7174c14b3213a89f45cc5375eb1fff5a" - }, - "星井美希": { - "id": "179", - "name": "星井美希", - "kana": "ほしいみき", - "latest_hash": "c504c5f878ac85da8d9ccb70ef44fbe4" - }, - "向井拓海": { - "id": "180", - "name": "向井拓海", - "kana": "むかいたくみ", - "latest_hash": "2198eb80f3fc029ca19d09a514a66a30" - }, - "水瀬伊織": { - "id": "181", - "name": "水瀬伊織", - "kana": "みなせいおり", - "latest_hash": "933333b6f15c88a6e8564a2dee2f125a" - }, - "ベテラントレーナー": { - "id": "182", - "name": "ベテラントレーナー", - "kana": "べてらんとれーなー", - "latest_hash": "313b271eddfdc8c9d223cfc16fc55eb9" - }, - "市原仁奈": { - "id": "183", - "name": "市原仁奈", - "kana": "いちはらひとしな", - "latest_hash": "f8e4f10ef977349e598b44f6ca5f0141" - }, - "喜多日菜子": { - "id": "184", - "name": "喜多日菜子", - "kana": "きたひなこ", - "latest_hash": "2b84984d9d6c5a8c0520fe96a7ba45d6" - }, - "杉坂海": { - "id": "185", - "name": "杉坂海", - "kana": "すぎさかうみ", - "latest_hash": "26a0294ebbd82d18425173f46b4d8860" - }, - "北川真尋": { - "id": "186", - "name": "北川真尋", - "kana": "きたがわまひろ", - "latest_hash": "b24f3818f1e1073ea376f64f62004d15" - }, - "メアリー・コクラン": { - "id": "187", - "name": "メアリー・コクラン", - "kana": "めありー・こくらん", - "latest_hash": "cda5c513974a4e22bdafa7fb7e662c56" - }, - "小松伊吹": { - "id": "188", - "name": "小松伊吹", - "kana": "こまついぶき", - "latest_hash": "74726c9cfa072e384c992e8d8bde9ff9" - }, - "三好紗南": { - "id": "189", - "name": "三好紗南", - "kana": "みよしさな", - "latest_hash": "5caedbb13727f0afdd234d8e73a40a32" - }, - "キャシー・グラハム": { - "id": "190", - "name": "キャシー・グラハム", - "kana": "きゃしー・ぐらはむ", - "latest_hash": "7257d04c6b64058492bc0279c5b1da20" - }, - "難波笑美": { - "id": "191", - "name": "難波笑美", - "kana": "なんばえみ", - "latest_hash": "557803a0324c4d494b78d83b42174e61" - }, - "浜口あやめ": { - "id": "192", - "name": "浜口あやめ", - "kana": "はまぐちあやめ", - "latest_hash": "fc4b0d7524dab986a0d4a97f5eab93ff" - }, - "村上巴": { - "id": "193", - "name": "村上巴", - "kana": "むらかみともえ", - "latest_hash": "1c6ff2bbe0458219764965de70302d56" - }, - "土屋亜子": { - "id": "194", - "name": "土屋亜子", - "kana": "つちやあこ", - "latest_hash": "bd055ba043dc7166491f48b3587b1984" - }, - "首藤葵": { - "id": "195", - "name": "首藤葵", - "kana": "すどうあおい", - "latest_hash": "b55c0b1bb4d08a833d7ae0fbbd248731" - }, - "冴島清美": { - "id": "196", - "name": "冴島清美", - "kana": "さえじまきよみ", - "latest_hash": "d6be32a4312ef65e6697fbd4da5b3926" - }, - "佐藤心": { - "id": "197", - "name": "佐藤心", - "kana": "さとうしん", - "latest_hash": "00a73075d65a7d0c56ceef9dd11c7a06" - }, - "南条光": { - "id": "198", - "name": "南条光", - "kana": "なんじょうひかり", - "latest_hash": "6cdda5b7a8549133166ba9eb9be99096" - }, - "マスタートレーナー": { - "id": "199", - "name": "マスタートレーナー", - "kana": "ますたーとれーなー", - "latest_hash": "6681d3a0c30f354a44317608a1d68971" - }, - "イヴ・サンタクロース": { - "id": "200", - "name": "イヴ・サンタクロース", - "kana": "いヴ・さんたくろーす", - "latest_hash": "876fb43ce5ef639022ddf7ce233a859a" - }, - "日高愛": { - "id": "201", - "name": "日高愛", - "kana": "ひだかあい", - "latest_hash": "e39015d925db23fa7c4a5fbfeaf09534" - }, - "水谷絵理": { - "id": "202", - "name": "水谷絵理", - "kana": "みずたにえり", - "latest_hash": "2c578bcb320f60bfd692e097bff03291" - }, - "秋月涼": { - "id": "203", - "name": "秋月涼", - "kana": "あきづきりょう", - "latest_hash": "cb10db1e0bcf18c7ae8b49edee29eea2" - } - }, - "unit_list": { - "0": { - "id": "0", - "name": "くノ一あやめ忍法帖", - "member": [ - "浜口あやめ" - ] - }, - "1": { - "id": "1", - "name": "Rosenburg Engel", - "member": [ - "神崎蘭子" - ] - }, - "2": { - "id": "2", - "name": "アーティスター", - "member": [ - "吉岡沙紀", - "小松伊吹" - ] - }, - "3": { - "id": "3", - "name": "あーにゃんみくにゃん", - "member": [ - "アナスタシア", - "前川みく" - ] - }, - "4": { - "id": "4", - "name": "イカバラプリンセス", - "member": [ - "櫻井桃華", - "市原仁奈" - ] - }, - "5": { - "id": "5", - "name": "インディゴ・ベル", - "member": [ - "高森藍子", - "道明寺歌鈴" - ] - }, - "6": { - "id": "6", - "name": "笑美と鈴帆の爆笑エブリデイ", - "member": [ - "難波笑美", - "上田鈴帆" - ] - }, - "7": { - "id": "7", - "name": "エターナルレディエイト", - "member": [ - "佐藤心", - "沢田麻理菜" - ] - }, - "8": { - "id": "8", - "name": "越後小町", - "member": [ - "江上椿", - "片桐早苗" - ] - }, - "9": { - "id": "9", - "name": "エルドリッチ・ロアテラー", - "member": [ - "白坂小梅", - "松永涼" - ] - }, - "10": { - "id": "10", - "name": "エレガントインモラリスト", - "member": [ - "和久井留美", - "東郷あい" - ] - }, - "11": { - "id": "11", - "name": "かな☆かな☆ふぁんしー", - "member": [ - "今井加奈", - "三村かな子" - ] - }, - "12": { - "id": "12", - "name": "壁サーの花", - "member": [ - "大西由里子", - "荒木比奈" - ] - }, - "13": { - "id": "13", - "name": "カワスウィーティーなボクはぁと(仮)", - "member": [ - "輿水幸子", - "佐藤心" - ] - }, - "14": { - "id": "14", - "name": "月下氷姫", - "member": [ - "藤原肇", - "鷺沢文香" - ] - }, - "15": { - "id": "15", - "name": "サイキックヒーツ", - "member": [ - "日野茜", - "堀裕子" - ] - }, - "16": { - "id": "16", - "name": "サイバーグラス", - "member": [ - "上条春菜", - "荒木比奈" - ] - }, - "17": { - "id": "17", - "name": "サイレントスクリーマー", - "member": [ - "森久保乃々", - "星輝子" - ] - }, - "18": { - "id": "18", - "name": "サクラブロッサム", - "member": [ - "大槻唯", - "相川千夏" - ] - }, - "19": { - "id": "19", - "name": "さつきの頃", - "member": [ - "浜口あやめ", - "片桐早苗" - ] - }, - "20": { - "id": "20", - "name": "山紫水明", - "member": [ - "藤原肇", - "依田芳乃" - ] - }, - "21": { - "id": "21", - "name": "ジェネレーションオブサマー", - "member": [ - "島村卯月", - "本田未央" - ] - }, - "22": { - "id": "22", - "name": "シャイニー・アーリーデイズ", - "member": [ - "三船美優", - "安部菜々" - ] - }, - "23": { - "id": "23", - "name": "しゅがしゅが☆み~ん", - "member": [ - "佐藤心", - "安部菜々" - ] - }, - "24": { - "id": "24", - "name": "シンフォニック・ワールド", - "member": [ - "有浦柑奈", - "梅木音葉" - ] - }, - "25": { - "id": "25", - "name": "スウィートラヴァーズ", - "member": [ - "十時愛梨", - "三村かな子" - ] - }, - "26": { - "id": "26", - "name": "スクールガールフレンズ", - "member": [ - "矢口美羽", - "楊菲菲" - ] - }, - "27": { - "id": "27", - "name": "ストレートフルート", - "member": [ - "中野有香", - "水本ゆかり" - ] - }, - "28": { - "id": "28", - "name": "スパニッシュスタイル", - "member": [ - "堀裕子", - "氏家むつみ" - ] - }, - "29": { - "id": "29", - "name": "セーラーマリナー", - "member": [ - "水木聖來", - "松本沙理奈" - ] - }, - "30": { - "id": "30", - "name": "センゴク☆ランブ", - "member": [ - "丹羽仁美", - "浜口あやめ" - ] - }, - "31": { - "id": "31", - "name": "ソル・カマル", - "member": [ - "ナターリア", - "ライラ" - ] - }, - "32": { - "id": "32", - "name": "ダークイルミネイト", - "member": [ - "二宮飛鳥", - "神崎蘭子" - ] - }, - "33": { - "id": "33", - "name": "チーム・フラワー", - "member": [ - "椎名法子", - "大原みちる" - ] - }, - "34": { - "id": "34", - "name": "デア・アウローラ", - "member": [ - "速水奏", - "新田美波" - ] - }, - "35": { - "id": "35", - "name": "ディテクティブヴァーサス", - "member": [ - "安斎都", - "古澤頼子" - ] - }, - "36": { - "id": "36", - "name": "テンプテーション・アイズ", - "member": [ - "塩見周子", - "宮本フレデリカ" - ] - }, - "37": { - "id": "37", - "name": "ナイトブルーレザー", - "member": [ - "伊集院惠", - "ケイト" - ] - }, - "38": { - "id": "38", - "name": "忍武☆繚乱", - "member": [ - "浜口あやめ", - "脇山珠美" - ] - }, - "39": { - "id": "39", - "name": "ノーティギャルズ", - "member": [ - "向井拓海", - "藤本里奈" - ] - }, - "40": { - "id": "40", - "name": "ハートハーモナイズ", - "member": [ - "五十嵐響子", - "吉岡沙紀" - ] - }, - "41": { - "id": "41", - "name": "羽衣小町", - "member": [ - "小早川紗枝", - "塩見周子" - ] - }, - "42": { - "id": "42", - "name": "バリスタイル", - "member": [ - "桐野アヤ", - "槙原志保" - ] - }, - "43": { - "id": "43", - "name": "春色姫君", - "member": [ - "小早川紗枝", - "小日向美穂" - ] - }, - "44": { - "id": "44", - "name": "ハワイアンツイン", - "member": [ - "棟方愛海", - "矢口美羽" - ] - }, - "45": { - "id": "45", - "name": "ビートシューター", - "member": [ - "結城晴", - "的場梨沙" - ] - }, - "46": { - "id": "46", - "name": "ヒーローヴァーサス", - "member": [ - "小関麗奈", - "南条光" - ] - }, - "47": { - "id": "47", - "name": "ひつじさんとうさぎさん", - "member": [ - "古賀小春", - "結城晴" - ] - }, - "48": { - "id": "48", - "name": "日菜子と愛海の妄想ワールド", - "member": [ - "棟方愛海", - "喜多日菜子" - ] - }, - "49": { - "id": "49", - "name": "ピュアリーツイン", - "member": [ - "浅野風香", - "奥山沙織" - ] - }, - "50": { - "id": "50", - "name": "ファミリアツイン", - "member": [ - "城ヶ崎美嘉", - "城ヶ崎莉嘉" - ] - }, - "51": { - "id": "51", - "name": "フィオレンティナ", - "member": [ - "相葉夕美", - "西園寺琴歌" - ] - }, - "52": { - "id": "52", - "name": "フォーリンシーサイド", - "member": [ - "川島瑞樹", - "村上巴" - ] - }, - "53": { - "id": "53", - "name": "ブリヤント・ノワール", - "member": [ - "黒川千秋", - "水野翠" - ] - }, - "54": { - "id": "54", - "name": "ボール・フレンズ", - "member": [ - "姫川友紀", - "結城晴" - ] - }, - "55": { - "id": "55", - "name": "ミステリアスアイズ", - "member": [ - "速水奏", - "高垣楓" - ] - }, - "56": { - "id": "56", - "name": "ミステリアスガールズ", - "member": [ - "藤居朋", - "堀裕子" - ] - }, - "57": { - "id": "57", - "name": "ミステリックガーデン", - "member": [ - "二宮飛鳥", - "相葉夕美" - ] - }, - "58": { - "id": "58", - "name": "ミス・フォーチュン", - "member": [ - "白菊ほたる", - "鷹富士茄子" - ] - }, - "59": { - "id": "59", - "name": "ムシバレイナと小春ちゃん", - "member": [ - "古賀小春", - "小関麗奈" - ] - }, - "60": { - "id": "60", - "name": "モノクロームリリィ", - "member": [ - "速水奏", - "北条加蓮" - ] - }, - "61": { - "id": "61", - "name": "ももべりー", - "member": [ - "櫻井桃華", - "橘ありす" - ] - }, - "62": { - "id": "62", - "name": "ようせいさんとおねえさん", - "member": [ - "桐野アヤ", - "遊佐こずえ" - ] - }, - "63": { - "id": "63", - "name": "ラブリーダイナーズ", - "member": [ - "高垣楓", - "並木芽衣子" - ] - }, - "64": { - "id": "64", - "name": "リトルヒーロー", - "member": [ - "南条光", - "横山千佳" - ] - }, - "65": { - "id": "65", - "name": "レイジー・レイジー", - "member": [ - "宮本フレデリカ", - "一ノ瀬志希" - ] - }, - "66": { - "id": "66", - "name": "レッドベリィズ", - "member": [ - "橘ありす", - "村上巴" - ] - }, - "67": { - "id": "67", - "name": "レディビースト", - "member": [ - "高橋礼子", - "木場真奈美" - ] - }, - "68": { - "id": "68", - "name": "ロボフレンズ", - "member": [ - "池袋晶葉", - "ライラ" - ] - }, - "69": { - "id": "69", - "name": "Ai's", - "member": [ - "高森藍子", - "十時愛梨" - ] - }, - "70": { - "id": "70", - "name": "*(Asterisk)", - "member": [ - "前川みく", - "多田李衣菜" - ] - }, - "71": { - "id": "71", - "name": "B.B", - "member": [ - "及川雫", - "大沼くるみ" - ] - }, - "72": { - "id": "72", - "name": "Dimension-3", - "member": [ - "一ノ瀬志希", - "二宮飛鳥" - ] - }, - "73": { - "id": "73", - "name": "ERICATHY", - "member": [ - "赤西瑛梨華", - "キャシー・グラハム" - ] - }, - "74": { - "id": "74", - "name": "FrenchKisS", - "member": [ - "宮本フレデリカ", - "速水奏" - ] - }, - "75": { - "id": "75", - "name": "Flowery", - "member": [ - "高森藍子", - "相葉夕美" - ] - }, - "76": { - "id": "76", - "name": "HappyHappyTwin", - "member": [ - "双葉杏", - "諸星きらり" - ] - }, - "77": { - "id": "77", - "name": "Jumpin'Joker", - "member": [ - "赤城みりあ", - "白坂小梅" - ] - }, - "78": { - "id": "78", - "name": "LOVE LAIKA", - "member": [ - "新田美波", - "アナスタシア" - ] - }, - "79": { - "id": "79", - "name": "NiGHT ENCOUNTER", - "member": [ - "星輝子", - "白坂小梅" - ] - }, - "80": { - "id": "80", - "name": "P・U", - "member": [ - "堀裕子", - "安部菜々" - ] - }, - "81": { - "id": "81", - "name": "Rock the Beat", - "member": [ - "多田李衣菜", - "木村夏樹" - ] - }, - "82": { - "id": "82", - "name": "Rosenburg Alptraum", - "member": [ - "白坂小梅", - "神崎蘭子" - ] - }, - "83": { - "id": "83", - "name": "Shock'in Pink!", - "member": [ - "藤本里奈", - "早坂美玲" - ] - }, - "84": { - "id": "84", - "name": "アニマルパーク", - "member": [ - "日下部若葉", - "三船美優", - "市原仁奈" - ] - }, - "85": { - "id": "85", - "name": "アンダーザデスク", - "member": [ - "森久保乃々", - "星輝子", - "佐久間まゆ" - ] - }, - "86": { - "id": "86", - "name": "イタリアンスタイル", - "member": [ - "榊原里美", - "ヘレン", - "野々村そら" - ] - }, - "87": { - "id": "87", - "name": "ウィンター・F・ドライバーズ", - "member": [ - "原田美世", - "鷹富士茄子", - "姫川友紀" - ] - }, - "88": { - "id": "88", - "name": "桜花小町", - "member": [ - "桃井あずき", - "東郷あい", - "片桐早苗" - ] - }, - "89": { - "id": "89", - "name": "ガールズ・パワー", - "member": [ - "月宮雅", - "岸部彩華", - "衛藤美紗希" - ] - }, - "90": { - "id": "90", - "name": "カワイイボクと142's", - "member": [ - "輿水幸子", - "白坂小梅", - "星輝子" - ] - }, - "91": { - "id": "91", - "name": "京町乙女", - "member": [ - "緒方智絵里", - "神谷奈緒", - "諸星きらり" - ] - }, - "92": { - "id": "92", - "name": "ゴスペルシスターズ", - "member": [ - "龍崎薫", - "有浦柑奈", - "藤居朋" - ] - }, - "93": { - "id": "93", - "name": "サマーライブセーラー", - "member": [ - "栗原ネネ", - "新田美波", - "三好紗南" - ] - }, - "94": { - "id": "94", - "name": "シャイニングゴッドチェリー", - "member": [ - "星輝子", - "神谷奈緒", - "緒方智絵里" - ] - }, - "95": { - "id": "95", - "name": "スペーススタイル", - "member": [ - "遊佐こずえ", - "吉岡沙紀", - "西島櫂" - ] - }, - "96": { - "id": "96", - "name": "チャレンジクッキング", - "member": [ - "西園寺琴歌", - "橘ありす", - "姫川友紀" - ] - }, - "97": { - "id": "97", - "name": "ドイツスタイル", - "member": [ - "大原みちる", - "伊集院惠", - "北川真尋" - ] - }, - "98": { - "id": "98", - "name": "ニューイヤースタイル", - "member": [ - "池袋晶葉", - "ライラ", - "的場梨沙" - ] - }, - "99": { - "id": "99", - "name": "ニューウェーブ", - "member": [ - "村松さくら", - "大石泉", - "土屋亜子" - ] - }, - "100": { - "id": "100", - "name": "ハートウォーマー", - "member": [ - "井村雪菜", - "藤居朋", - "杉坂海" - ] - }, - "101": { - "id": "101", - "name": "ハロウィンヴァンパイア", - "member": [ - "関裕美", - "木場真奈美", - "喜多見柚" - ] - }, - "102": { - "id": "102", - "name": "パワフルヒーラーズ", - "member": [ - "池袋晶葉", - "首藤葵", - "岡崎泰葉" - ] - }, - "103": { - "id": "103", - "name": "ビビッドカラーエイジ", - "member": [ - "今井加奈", - "藤原肇", - "高森藍子" - ] - }, - "104": { - "id": "104", - "name": "ももぺあべりー", - "member": [ - "櫻井桃華", - "的場梨沙", - "橘ありす" - ] - }, - "105": { - "id": "105", - "name": "リトルチェリーブロッサム", - "member": [ - "岡崎泰葉", - "櫻井桃華", - "龍崎薫" - ] - }, - "106": { - "id": "106", - "name": "レインドロップ", - "member": [ - "原田美世", - "脇山珠美", - "大槻唯" - ] - }, - "107": { - "id": "107", - "name": "ロッキングガール", - "member": [ - "多田李衣菜", - "三村かな子", - "城ヶ崎莉嘉" - ] - }, - "108": { - "id": "108", - "name": "individuals", - "member": [ - "森久保乃々", - "星輝子", - "早坂美玲" - ] - }, - "109": { - "id": "109", - "name": "new generations", - "member": [ - "島村卯月", - "渋谷凛", - "本田未央" - ] - }, - "110": { - "id": "110", - "name": "アップトゥデイト", - "member": [ - "水木聖來", - "松本沙理奈", - "太田優" - ] - }, - "111": { - "id": "111", - "name": "アンチェイン・シグナル", - "member": [ - "木場真奈美", - "星輝子", - "水木聖來" - ] - }, - "112": { - "id": "112", - "name": "ギャルズパーティー", - "member": [ - "仙崎恵磨", - "藤本里奈", - "大槻唯" - ] - }, - "113": { - "id": "113", - "name": "セクシーギャルズ", - "member": [ - "大槻唯", - "城ヶ崎美嘉", - "藤本里奈" - ] - }, - "114": { - "id": "114", - "name": "ドリームホープスプリング", - "member": [ - "成宮由愛", - "望月聖", - "古賀小春" - ] - }, - "115": { - "id": "115", - "name": "虹色ドリーマー", - "member": [ - "神谷奈緒", - "荒木比奈", - "安部菜々" - ] - }, - "116": { - "id": "116", - "name": "にゃん・にゃん・にゃん", - "member": [ - "前川みく", - "高峯のあ", - "アナスタシア" - ] - }, - "117": { - "id": "117", - "name": "ハードメテオライツ", - "member": [ - "木場真奈美", - "吉岡沙紀", - "木村夏樹" - ] - }, - "118": { - "id": "118", - "name": "ビューティーアリュール", - "member": [ - "小室千奈美", - "松山久美子", - "浜川愛結奈" - ] - }, - "119": { - "id": "119", - "name": "フランメ・ルージュ", - "member": [ - "桐野アヤ", - "小松伊吹", - "槙原志保" - ] - }, - "120": { - "id": "120", - "name": "ブルームジャーニー", - "member": [ - "氏家むつみ", - "成宮由愛", - "古賀小春" - ] - }, - "121": { - "id": "121", - "name": "ヘルシーサバイブ", - "member": [ - "大和亜季", - "栗原ネネ", - "涼宮星花" - ] - }, - "122": { - "id": "122", - "name": "ホットアートジャンピン", - "member": [ - "西島櫂", - "愛野渚", - "吉岡沙紀" - ] - }, - "123": { - "id": "123", - "name": "マッシブライダース", - "member": [ - "木村夏樹", - "向井拓海", - "藤本里奈" - ] - }, - "124": { - "id": "124", - "name": "女神たちの夏宴", - "member": [ - "高垣楓", - "片桐早苗", - "川島瑞樹" - ] - }, - "125": { - "id": "125", - "name": "ユア・フレンズ", - "member": [ - "ナターリア", - "ケイト", - "メアリー・コクラン" - ] - }, - "126": { - "id": "126", - "name": "誘惑イビル", - "member": [ - "一ノ瀬志希", - "宮本フレデリカ", - "塩見周子" - ] - }, - "127": { - "id": "127", - "name": "落花流水", - "member": [ - "佐久間まゆ", - "白坂小梅", - "北条加蓮" - ] - }, - "128": { - "id": "128", - "name": "ラビュー☆アイス☆マウンテン", - "member": [ - "榊原里美", - "棟方愛海", - "難波笑美" - ] - }, - "129": { - "id": "129", - "name": "ワンステップス", - "member": [ - "関裕美", - "白菊ほたる", - "森久保乃々" - ] - }, - "130": { - "id": "130", - "name": "GIRLS BE", - "member": [ - "関裕美", - "白菊ほたる", - "松尾千鶴" - ] - }, - "131": { - "id": "131", - "name": "KBYD", - "member": [ - "輿水幸子", - "小早川紗枝", - "姫川友紀" - ] - }, - "132": { - "id": "132", - "name": "thinE/Dasein", - "member": [ - "有浦柑奈", - "二宮飛鳥", - "瀬名詩織" - ] - }, - "133": { - "id": "133", - "name": "スケルツォ・プリマヴェーラ", - "member": [ - "村松さくら", - "大原みちる", - "今井加奈" - ] - }, - "134": { - "id": "134", - "name": "ノーブルセレブリティ", - "member": [ - "水本ゆかり", - "涼宮星花", - "西園寺琴歌" - ] - }, - "135": { - "id": "135", - "name": "ピンキーキュート", - "member": [ - "島村卯月", - "小日向美穂", - "緒方智絵里" - ] - }, - "136": { - "id": "136", - "name": "メロウ・イエロー", - "member": [ - "中野有香", - "水本ゆかり", - "椎名法子" - ] - }, - "137": { - "id": "137", - "name": "CANDY ISLAND", - "member": [ - "三村かな子", - "双葉杏", - "緒方智絵里" - ] - }, - "138": { - "id": "138", - "name": "ピンクチェックスクール", - "member": [ - "島村卯月", - "小日向美穂", - "五十嵐響子" - ] - }, - "139": { - "id": "139", - "name": "397cherry", - "member": [ - "前川みく", - "安部菜々", - "緒方智絵里" - ] - }, - "140": { - "id": "140", - "name": "アイドルミズキ with AS", - "member": [ - "東郷あい", - "川島瑞樹", - "吉岡沙紀" - ] - }, - "141": { - "id": "141", - "name": "トランクィル・ウィスパー", - "member": [ - "アナスタシア", - "鷺沢文香", - "高垣楓" - ] - }, - "142": { - "id": "142", - "name": "バレンタイン反省会", - "member": [ - "和久井留美", - "服部瞳子", - "三船美優" - ] - }, - "143": { - "id": "143", - "name": "ファタ・モルガーナ", - "member": [ - "大石泉", - "浅利七海", - "八神マキノ" - ] - }, - "144": { - "id": "144", - "name": "Triad Primus", - "member": [ - "渋谷凛", - "神谷奈緒", - "北条加蓮" - ] - }, - "145": { - "id": "145", - "name": "LOVE LAIKA with Rosenburg Engel", - "member": [ - "新田美波", - "アナスタシア", - "神崎蘭子" - ] - }, - "146": { - "id": "146", - "name": "サンセットノスタルジー", - "member": [ - "本田未央", - "矢口美羽", - "松山久美子" - ] - }, - "147": { - "id": "147", - "name": "セクシーギルティ", - "member": [ - "及川雫", - "片桐早苗", - "堀裕子" - ] - }, - "148": { - "id": "148", - "name": "チアフルボンバーズ", - "member": [ - "日野茜", - "姫川友紀", - "若林智香" - ] - }, - "149": { - "id": "149", - "name": "凸レーション", - "member": [ - "諸星きらり", - "城ヶ崎莉嘉", - "赤城みりあ" - ] - }, - "150": { - "id": "150", - "name": "ヒートアップ☆チアーズ", - "member": [ - "若林智香", - "斉藤洋子", - "真鍋いつき" - ] - }, - "151": { - "id": "151", - "name": "ブエナ・スエルテ", - "member": [ - "土屋亜子", - "矢口美羽", - "喜多日菜子" - ] - }, - "152": { - "id": "152", - "name": "B.B.ロワイヤル", - "member": [ - "姫川友紀", - "難波笑美", - "村上巴" - ] - }, - "153": { - "id": "153", - "name": "Positive Passion", - "member": [ - "本田未央", - "日野茜", - "高森藍子" - ] - }, - "154": { - "id": "154", - "name": "秋色温泉", - "member": [ - "江上椿", - "八神マキノ", - "小関麗奈", - "仙崎恵磨" - ] - }, - "155": { - "id": "155", - "name": "セレクテッド", - "member": [ - "速水奏", - "大槻唯", - "アナスタシア", - "宮本フレデリカ" - ] - }, - "156": { - "id": "156", - "name": "センゴク☆華☆ランブ", - "member": [ - "丹羽仁美", - "脇山珠美", - "浜口あやめ", - "首藤葵" - ] - }, - "157": { - "id": "157", - "name": "デビリッシュゴシック", - "member": [ - "柳清良", - "棟方愛海", - "佐々木千枝", - "海老原菜帆" - ] - }, - "158": { - "id": "158", - "name": "ハイカラサクラ", - "member": [ - "双葉杏", - "前川みく", - "新田美波", - "城ヶ崎莉嘉" - ] - }, - "159": { - "id": "159", - "name": "パステル・カクテル", - "member": [ - "黒川千秋", - "沢田麻理菜", - "相馬夏美", - "間中美里" - ] - }, - "160": { - "id": "160", - "name": "ハッピーバレンタイン", - "member": [ - "椎名法子", - "速水奏", - "小松伊吹", - "中野有香" - ] - }, - "161": { - "id": "161", - "name": "ハロウィンナイト", - "member": [ - "丹羽仁美", - "篠原礼", - "森久保乃々", - "上田鈴帆" - ] - }, - "162": { - "id": "162", - "name": "ブライダルセレクション", - "member": [ - "白菊ほたる", - "小室千奈美", - "結城晴", - "メアリー・コクラン" - ] - }, - "163": { - "id": "163", - "name": "フリルドスクエア", - "member": [ - "工藤忍", - "綾瀬穂乃香", - "喜多見柚", - "桃井あずき" - ] - }, - "164": { - "id": "164", - "name": "マジカルテット", - "member": [ - "横山千佳", - "福山舞", - "成宮由愛", - "小関麗奈" - ] - }, - "165": { - "id": "165", - "name": "メルヘンゴシック", - "member": [ - "櫻井桃華", - "大西由里子", - "森久保乃々", - "杉坂海" - ] - }, - "166": { - "id": "166", - "name": "メルヘンアニマルズ", - "member": [ - "乙倉悠貴", - "相川千夏", - "岡崎泰葉", - "北川真尋" - ] - }, - "167": { - "id": "167", - "name": "ロマンティックツアーズ", - "member": [ - "伊集院惠", - "相馬夏美", - "並木芽衣子", - "江上椿" - ] - }, - "168": { - "id": "168", - "name": "*(Asterisk) with なつなな", - "member": [ - "前川みく", - "多田李衣菜", - "木村夏樹", - "安部菜々" - ] - }, - "169": { - "id": "169", - "name": "FOUR PIECE", - "member": [ - "多田李衣菜", - "ライラ", - "冴島清美", - "涼宮星花" - ] - }, - "170": { - "id": "170", - "name": "UKスタイル", - "member": [ - "涼宮星花", - "ケイト", - "仙崎恵磨", - "メアリー・コクラン" - ] - }, - "171": { - "id": "171", - "name": "Black/White-Roses", - "member": [ - "東郷あい", - "浅野風香", - "櫻井桃華", - "瀬名詩織" - ] - }, - "172": { - "id": "172", - "name": "GIRLS BE NEXT STEP", - "member": [ - "関裕美", - "白菊ほたる", - "松尾千鶴", - "岡崎泰葉" - ] - }, - "173": { - "id": "173", - "name": "ピンクドットバルーン", - "member": [ - "三村かな子", - "持田亜里沙", - "緒方智絵里", - "柳瀬美由紀" - ] - }, - "174": { - "id": "174", - "name": "カナリアサマー", - "member": [ - "大槻唯", - "姫川友紀", - "愛野渚", - "龍崎薫" - ] - }, - "175": { - "id": "175", - "name": "ライトグリーンセーフ", - "member": [ - "木村夏樹", - "沢田麻理菜", - "斉藤洋子", - "真鍋いつき" - ] - }, - "176": { - "id": "176", - "name": "炎陣", - "member": [ - "向井拓海", - "藤本里奈", - "松永涼", - "大和亜季", - "木村夏樹" - ] - }, - "177": { - "id": "177", - "name": "桜舞隊", - "member": [ - "古賀小春", - "福山舞", - "的場梨沙", - "村上巴", - "結城晴" - ] - }, - "178": { - "id": "178", - "name": "からぱれ", - "member": [ - "海老原菜帆", - "柳瀬美由紀", - "脇山珠美", - "楊菲菲", - "長富蓮実" - ] - }, - "179": { - "id": "179", - "name": "春霞", - "member": [ - "道明寺歌鈴", - "浜口あやめ", - "脇山珠美", - "小早川紗枝", - "依田芳乃" - ] - }, - "180": { - "id": "180", - "name": "ハロウィンパーティー", - "member": [ - "佐久間まゆ", - "松永涼", - "梅木音葉", - "上田鈴帆", - "難波笑美" - ] - }, - "181": { - "id": "181", - "name": "フレッシュアスリーテス", - "member": [ - "今井加奈", - "桐野アヤ", - "小室千奈美", - "沢田麻理菜", - "北川真尋" - ] - }, - "182": { - "id": "182", - "name": "マーメイドパラダイス", - "member": [ - "横山千佳", - "五十嵐響子", - "水木聖來", - "瀬名詩織", - "及川雫" - ] - }, - "183": { - "id": "183", - "name": "メイドコレクション", - "member": [ - "クラリス", - "東郷あい", - "白坂小梅", - "並木芽衣子", - "槙原志保" - ] - }, - "184": { - "id": "184", - "name": "宵乙女", - "member": [ - "高垣楓", - "佐藤心", - "安部菜々", - "三船美優", - "片桐早苗" - ] - }, - "185": { - "id": "185", - "name": "LiPPS", - "member": [ - "速水奏", - "塩見周子", - "宮本フレデリカ", - "一ノ瀬志希", - "城ヶ崎美嘉" - ] - }, - "186": { - "id": "186", - "name": "LittlePOPS", - "member": [ - "双葉杏", - "城ヶ崎莉嘉", - "二宮飛鳥", - "早坂美玲", - "白坂小梅" - ] - }, - "187": { - "id": "187", - "name": "NEX-US", - "member": [ - "アナスタシア", - "神谷奈緒", - "中野有香", - "前川みく", - "星輝子" - ] - }, - "188": { - "id": "188", - "name": "Sweetches", - "member": [ - "三村かな子", - "椎名法子", - "十時愛梨", - "及川雫", - "森久保乃々" - ] - }, - "189": { - "id": "189", - "name": "アインフェリア", - "member": [ - "新田美波", - "鷺沢文香", - "橘ありす", - "高森藍子", - "相葉夕美" - ] - }, - "190": { - "id": "190", - "name": "サマプリ", - "member": [ - "川島瑞樹", - "日野茜", - "堀裕子", - "上田鈴帆", - "難波笑美" - ] - }, - "191": { - "id": "191", - "name": "Love Yell", - "member": [ - "五十嵐響子", - "姫川友紀", - "水本ゆかり", - "諸星きらり", - "乙倉悠貴" - ] - }, - "192": { - "id": "192", - "name": "Masque:Rade", - "member": [ - "佐久間まゆ", - "北条加蓮", - "小日向美穂", - "多田李衣菜", - "緒方智絵里" - ] - }, - "193": { - "id": "193", - "name": "イエローリリー", - "member": [ - "間中美里", - "中野有香", - "椎名法子", - "水本ゆかり", - "今井加奈" - ] - }, - "194": { - "id": "194", - "name": "サクヤヒメ", - "member": [ - "三村かな子", - "緒方智絵里", - "輿水幸子", - "佐久間まゆ", - "小早川紗枝" - ] - }, - "195": { - "id": "195", - "name": "C5", - "member": [ - "安部菜々", - "島村卯月", - "小日向美穂", - "双葉杏", - "前川みく" - ] - }, - "196": { - "id": "196", - "name": "la Roseraie", - "member": [ - "宮本フレデリカ", - "一ノ瀬志希", - "櫻井桃華", - "中野有香", - "五十嵐響子" - ] - }, - "197": { - "id": "197", - "name": "アズール・ムジカ", - "member": [ - "渋谷凛", - "高垣楓", - "神崎蘭子", - "多田李衣菜", - "新田美波" - ] - }, - "198": { - "id": "198", - "name": "ブルーナポレオン", - "member": [ - "佐々木千枝", - "荒木比奈", - "川島瑞樹", - "上条春菜", - "松本沙理奈" - ] - }, - "199": { - "id": "199", - "name": "レッドバラード", - "member": [ - "東郷あい", - "桐野アヤ", - "相川千夏", - "高橋礼子", - "黒川千秋" - ] - }, - "200": { - "id": "200", - "name": "CAERULA", - "member": [ - "鷺沢文香", - "速水奏", - "橘ありす", - "塩見周子", - "二宮飛鳥" - ] - }, - "201": { - "id": "201", - "name": "Caskets", - "member": [ - "アナスタシア", - "川島瑞樹", - "白坂小梅", - "神谷奈緒", - "北条加蓮" - ] - }, - "202": { - "id": "202", - "name": "サンフラワー", - "member": [ - "姫川友紀", - "市原仁奈", - "片桐早苗", - "大槻唯", - "相葉夕美" - ] - }, - "203": { - "id": "203", - "name": "ゼッケンズ", - "member": [ - "十時愛梨", - "日野茜", - "高森藍子", - "星輝子", - "堀裕子" - ] - }, - "204": { - "id": "204", - "name": "トロピカル☆スターズ", - "member": [ - "城ヶ崎莉嘉", - "諸星きらり", - "城ヶ崎美嘉", - "本田未央", - "赤城みりあ" - ] - }, - "205": { - "id": "205", - "name": "シンデレラガール", - "member": [ - "十時愛梨", - "神崎蘭子", - "渋谷凛", - "塩見周子", - "島村卯月" - ] - }, - "206": { - "id": "206", - "name": "セクシーボンデージ", - "member": [ - "松本沙理奈", - "海老原菜帆", - "間中美里", - "篠原礼", - "兵藤レナ", - "西川保奈美" - ] - }, - "207": { - "id": "207", - "name": "ムーランルージュ", - "member": [ - "柳清良", - "佐藤心", - "柊志乃", - "斉藤洋子", - "水野翠", - "高橋礼子", - "間中美里" - ] - }, - "208": { - "id": "208", - "name": "ロワイヤルスタイル", - "member": [ - "相川千夏", - "兵藤レナ", - "野々村そら", - "仙崎恵磨", - "古賀小春", - "三好紗南", - "大和亜季" - ] - }, - "209": { - "id": "209", - "name": "ロワイヤルスタイルNP", - "member": [ - "椎名法子", - "結城晴", - "財前時子", - "大原みちる", - "吉岡沙紀", - "難波笑美", - "黒川千秋", - "長富蓮実", - "桐野アヤ", - "藤原肇", - "間中美里" - ] - }, - "210": { - "id": "210", - "name": "ロワイヤルスタイルND", - "member": [ - "クラリス", - "服部瞳子", - "栗原ネネ", - "丹羽仁美", - "松本沙理奈", - "八神マキノ", - "篠原礼", - "柳瀬美由紀", - "若林智香", - "古澤頼子", - "福山舞", - "衛藤美紗希" - ] - }, - "211": { - "id": "211", - "name": "ワンダー・フル", - "member": [ - "上田鈴帆", - "村松さくら", - "北川真尋", - "佐城雪美", - "冴島清美", - "浅野風香" - ] - }, - "212": { - "id": "212", - "name": "CINDERELLA GIRLS", - "member": [ - "小日向美穂", - "佐久間まゆ", - "輿水幸子", - "川島瑞樹", - "高垣楓", - "白坂小梅", - "十時愛梨", - "城ヶ崎美嘉", - "日野茜" - ] - }, - "213": { - "id": "213", - "name": "CINDERELLA PROJECT", - "member": [ - "島村卯月", - "渋谷凛", - "本田未央", - "赤城みりあ", - "アナスタシア", - "緒方智絵里", - "神崎蘭子", - "城ヶ崎莉嘉", - "多田李衣菜", - "新田美波", - "双葉杏", - "前川みく", - "三村かな子", - "諸星きらり" - ] - }, - "214": { - "id": "214", - "name": "L.M.B.G", - "member": [ - "佐々木千枝", - "横山千佳", - "福山舞", - "龍崎薫", - "古賀小春", - "橘ありす", - "成宮由愛", - "日下部若葉", - "佐城雪美", - "小関麗奈", - "柳瀬美由紀", - "南条光", - "大沼くるみ", - "的場梨沙", - "市原仁奈", - "赤城みりあ", - "櫻井桃華", - "メアリー・コクラン" - ] - }, - "215": { - "id": "215", - "name": "Project:Krone", - "member": [ - "速水奏", - "塩見周子", - "宮本フレデリカ", - "鷺沢文香", - "大槻唯", - "橘ありす", - "アナスタシア", - "渋谷凛", - "神谷奈緒", - "北条加蓮" - ] - } - }, - "dere_list": { - "1": { - "idol_id": 1, - "idol_name": "島村卯月", - "idol_name_display": "島村卯月", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1000101", - "hash": "0dabb79ff64691111a0abae2ffed01ce", - "profile": { - "height": "159", - "weight": "45", - "bust": "83", - "waist": "59", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1100102", - "hash": "798ed3093c682f20234934cef65c2106", - "profile": { - "height": "159", - "weight": "44", - "bust": "83", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "2ndアニバーサリー", - "alias_name_display": "2ndアニバーサリー", - "id": "1213201", - "hash": "250645af5bca76120314f21e69b0caca", - "profile": { - "height": "159", - "weight": "44", - "bust": "83", - "waist": "58", - "hip": "87" - }, - "event": [ - { - "event_id": 410, - "event_name": "アイドルプロデュース the 2nd Anniversary" - } - ] - }, - { - "alias_name": "2ndアニバーサリー", - "alias_name_display": "2ndアニバーサリー", - "id": "1313202", - "hash": "5ebb3e7bbe7fd6a46a5bfc3eab50097f", - "profile": { - "height": "159", - "weight": "44", - "bust": "83", - "waist": "58", - "hip": "87" - }, - "event": [ - { - "event_id": 410, - "event_name": "アイドルプロデュース the 2nd Anniversary" - } - ] - }, - { - "alias_name": "2ndアニバーサリー・スマイル", - "alias_name_display": "2ndアニバーサリー・スマイル", - "id": "1213301", - "hash": "61bde20d527ff4744e91729ffbd67058", - "profile": { - "height": "159", - "weight": "44", - "bust": "83", - "waist": "58", - "hip": "87" - }, - "event": [ - { - "event_id": 410, - "event_name": "アイドルプロデュース the 2nd Anniversary" - } - ] - }, - { - "alias_name": "2ndアニバーサリー・スマイル", - "alias_name_display": "2ndアニバーサリー・スマイル", - "id": "1313302", - "hash": "421e19ae69094b30d5edd8fa97e4d7bf", - "profile": { - "height": "159", - "weight": "44", - "bust": "83", - "waist": "58", - "hip": "87" - }, - "event": [ - { - "event_id": 410, - "event_name": "アイドルプロデュース the 2nd Anniversary" - } - ] - }, - { - "alias_name": "2ndアニバーサリー・ネコミミ", - "alias_name_display": "2ndアニバーサリー・ネコミミ", - "id": "1213401", - "hash": "7d7fa151dcc1e44e6aaeadb3fd14eab7", - "profile": { - "height": "159", - "weight": "44", - "bust": "83", - "waist": "58", - "hip": "87" - }, - "event": [ - { - "event_id": 410, - "event_name": "アイドルプロデュース the 2nd Anniversary" - } - ] - }, - { - "alias_name": "2ndアニバーサリー・ネコミミ", - "alias_name_display": "2ndアニバーサリー・ネコミミ", - "id": "1313402", - "hash": "09b1b846d0f89dc251b0bcac4e497e14", - "profile": { - "height": "159", - "weight": "44", - "bust": "83", - "waist": "58", - "hip": "87" - }, - "event": [ - { - "event_id": 410, - "event_name": "アイドルプロデュース the 2nd Anniversary" - } - ] - }, - { - "alias_name": "ニュージェネレーション", - "alias_name_display": "ニュージェネレーション", - "id": "1401801", - "hash": "00f4266728c5a057c338b3033a9aa17c", - "profile": { - "height": "159", - "weight": "44", - "bust": "83", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "ニュージェネレーション", - "alias_name_display": "ニュージェネレーション", - "id": "1501802", - "hash": "c33c2372ddc593434572ddc9265d64e4", - "profile": { - "height": "159", - "weight": "44", - "bust": "83", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "1402501", - "hash": "f69c865e5d5e3ef35843e5900ffad3be", - "profile": { - "height": "159", - "weight": "45", - "bust": "83", - "waist": "59", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "1502502", - "hash": "aa559b2b0e83b4b98c5372b171b2e9f7", - "profile": { - "height": "159", - "weight": "45", - "bust": "83", - "waist": "59", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "新春の華姫", - "alias_name_display": "新春の華姫", - "id": "1404501", - "hash": "6628f9feaa319f6b228fb52b057388d0", - "profile": { - "height": "159", - "weight": "44", - "bust": "83", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "新春の華姫", - "alias_name_display": "新春の華姫", - "id": "1504502", - "hash": "eb58e141b268cd2c22134a8572fb14bc", - "profile": { - "height": "159", - "weight": "44", - "bust": "83", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "はじけて♪サマー", - "alias_name_display": "はじけて♪サマー", - "id": "1411801", - "hash": "a8ac3c44eb75cd9b5b3b359cab9f3f31", - "profile": { - "height": "159", - "weight": "44", - "bust": "83", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "はじけて♪サマー", - "alias_name_display": "はじけて♪サマー", - "id": "1511802", - "hash": "15159f0ac1f58bdd90ddd0532faaa4d1", - "profile": { - "height": "159", - "weight": "44", - "bust": "83", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "ワンダフルマジック", - "alias_name_display": "ワンダフルマジック", - "id": "1413401", - "hash": "00a10e6b8e178ce3976b1b0456af74ca", - "profile": { - "height": "159", - "weight": "44", - "bust": "83", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "ワンダフルマジック", - "alias_name_display": "ワンダフルマジック", - "id": "1513402", - "hash": "865bdc197f5ee49d902694d6ebfc9022", - "profile": { - "height": "159", - "weight": "44", - "bust": "83", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "ウィーアーザフレンズ", - "alias_name_display": "ウィーアーザフレンズ", - "id": "1517002", - "hash": "f781ef4c14e675083bc0068d34e09386", - "profile": { - "height": "159", - "weight": "44", - "bust": "83", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "アニバーサリーフォーユー", - "alias_name_display": "アニバーサリーフォーユー", - "id": "1420301", - "hash": "a9377e14d83aad99d635f52da5bdaaee", - "profile": { - "height": "159", - "weight": "44", - "bust": "83", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "アニバーサリーフォーユー", - "alias_name_display": "アニバーサリーフォーユー", - "id": "1520302", - "hash": "616664284f3ddf53a42d0b626133a9f4", - "profile": { - "height": "159", - "weight": "44", - "bust": "83", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "ドリームストーリー", - "alias_name_display": "ドリームストーリー", - "id": "1521402", - "hash": "34e7b232ee8887d3561285595ce8ce8b", - "profile": { - "height": "159", - "weight": "44", - "bust": "83", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "G4U!", - "alias_name_display": "G4U!", - "id": "1523802", - "hash": "f28077a23bfe9608f2ee0971655cd492", - "profile": { - "height": "159", - "weight": "44", - "bust": "83", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "ワンダーメイド", - "alias_name_display": "ワンダーメイド", - "id": "1427201", - "hash": "c7424c2f32ffb2348a2fe5f7bb9d70ba", - "profile": { - "height": "159", - "weight": "44", - "bust": "83", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "ワンダーメイド", - "alias_name_display": "ワンダーメイド", - "id": "1527202", - "hash": "700fb803afd6413117dcd8d4b499745b", - "profile": { - "height": "159", - "weight": "44", - "bust": "83", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "笑顔の原点", - "alias_name_display": "笑顔の原点", - "id": "1432701", - "hash": "ba0bdaa1002fbe32da508725212d1f92", - "profile": { - "height": "159", - "weight": "44", - "bust": "83", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "笑顔の原点", - "alias_name_display": "笑顔の原点", - "id": "1532702", - "hash": "a366ceb2fcfda4f30ada58439dfc80c1", - "profile": { - "height": "159", - "weight": "44", - "bust": "83", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "シンデレラガール", - "alias_name_display": "シンデレラガール", - "id": "1434001", - "hash": "d42b08b2d8bccbfaa9324bbda41de0d1", - "profile": { - "height": "159", - "weight": "44", - "bust": "83", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "シンデレラガール", - "alias_name_display": "シンデレラガール", - "id": "1534002", - "hash": "2e4a0459415d8d8b8600bb80a777d85b", - "profile": { - "height": "159", - "weight": "44", - "bust": "83", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "アニバーサリープリンセス", - "alias_name_display": "アニバーサリープリンセス", - "id": "1436601", - "hash": "8b1ad6b6bd53c893b9107819c9bd0495", - "profile": { - "height": "159", - "weight": "44", - "bust": "83", - "waist": "58", - "hip": "87" - }, - "event": [ - { - "event_id": 1708, - "event_name": "アイドルプロデュース the 5th Anniversary" - } - ] - }, - { - "alias_name": "アニバーサリープリンセス", - "alias_name_display": "アニバーサリープリンセス", - "id": "1536602", - "hash": "1338de950f95214e111dad2943f191c8", - "profile": { - "height": "159", - "weight": "44", - "bust": "83", - "waist": "58", - "hip": "87" - }, - "event": [ - { - "event_id": 1708, - "event_name": "アイドルプロデュース the 5th Anniversary" - } - ] - } - ], - "units": [ - { - "id": "21", - "name": "ジェネレーションオブサマー" - }, - { - "id": "109", - "name": "new generations" - }, - { - "id": "135", - "name": "ピンキーキュート" - }, - { - "id": "138", - "name": "ピンクチェックスクール" - }, - { - "id": "195", - "name": "C5" - }, - { - "id": "205", - "name": "シンデレラガール" - }, - { - "id": "213", - "name": "CINDERELLA PROJECT" - } - ] - }, - "2": { - "idol_id": 2, - "idol_name": "中野有香", - "idol_name_display": "中野有香", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1000201", - "hash": "46c53f722dfaa05a4f4d36b7821a686a", - "profile": { - "height": "149", - "weight": "40", - "bust": "77", - "waist": "57", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1100202", - "hash": "929d8ba093d1be6624734173b6e5066a", - "profile": { - "height": "149", - "weight": "40", - "bust": "77", - "waist": "57", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "お花見", - "alias_name_display": "お花見", - "id": "1203701", - "hash": "22fd192e16f0ee5d1539b343a8f18925", - "profile": { - "height": "149", - "weight": "40", - "bust": "77", - "waist": "57", - "hip": "81" - }, - "event": [ - { - "event_id": 104, - "event_name": "桜舞う花見祭り" - } - ] - }, - { - "alias_name": "お花見", - "alias_name_display": "お花見", - "id": "1303702", - "hash": "2c97a783f38ff22d0a8a903358acf92a", - "profile": { - "height": "149", - "weight": "40", - "bust": "77", - "waist": "57", - "hip": "81" - }, - "event": [ - { - "event_id": 104, - "event_name": "桜舞う花見祭り" - } - ] - }, - { - "alias_name": "パワフル&スマイル", - "alias_name_display": "パワフル&スマイル", - "id": "1205701", - "hash": "5f74fa33d7f4d70270d5de88b9607222", - "profile": { - "height": "149", - "weight": "40", - "bust": "77", - "waist": "57", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "パワフル&スマイル", - "alias_name_display": "パワフル&スマイル", - "id": "1305702", - "hash": "e23e339b42039e29def1a1d3fb53f341", - "profile": { - "height": "149", - "weight": "40", - "bust": "77", - "waist": "57", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ビキニチャレンジ", - "alias_name_display": "ビキニチャレンジ", - "id": "1211201", - "hash": "2a44bb0f8a3f6056ee6ae93ce85d37e0", - "profile": { - "height": "149", - "weight": "40", - "bust": "77", - "waist": "57", - "hip": "81" - }, - "event": [ - { - "event_id": 702, - "event_name": "水着DEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ビキニチャレンジ", - "alias_name_display": "ビキニチャレンジ", - "id": "1311202", - "hash": "5728168713d43f6166617778d5383d17", - "profile": { - "height": "149", - "weight": "40", - "bust": "77", - "waist": "57", - "hip": "81" - }, - "event": [ - { - "event_id": 702, - "event_name": "水着DEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ナデシコI.C", - "alias_name_display": "ナデシコI.C", - "id": "1323702", - "hash": "c544cf8434aad3802004185664a27d82", - "profile": { - "height": "149", - "weight": "40", - "bust": "77", - "waist": "57", - "hip": "81" - }, - "event": [ - { - "event_id": 1207, - "event_name": "目指せ大和撫子 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "ウェディングセレモニー", - "alias_name_display": "ウェディングセレモニー", - "id": "1230301", - "hash": "036055e8855d54d50bf860b2e8e886c0", - "profile": { - "height": "149", - "weight": "40", - "bust": "77", - "waist": "57", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ウェディングセレモニー", - "alias_name_display": "ウェディングセレモニー", - "id": "1330302", - "hash": "887f02780b02259ae8143b985b2d7510", - "profile": { - "height": "149", - "weight": "40", - "bust": "77", - "waist": "57", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "プリティパティシエ", - "alias_name_display": "プリティパティシエ", - "id": "1405101", - "hash": "f93a42096ba8aa95b7c3bc45aa0a3003", - "profile": { - "height": "149", - "weight": "40", - "bust": "77", - "waist": "57", - "hip": "81" - }, - "event": [ - { - "event_id": 405, - "event_name": "アイドルプロデュース バレンタイン編" - } - ] - }, - { - "alias_name": "プリティパティシエ", - "alias_name_display": "プリティパティシエ", - "id": "1505102", - "hash": "f4391f44173bd50a0c6dd83065936908", - "profile": { - "height": "149", - "weight": "40", - "bust": "77", - "waist": "57", - "hip": "81" - }, - "event": [ - { - "event_id": 405, - "event_name": "アイドルプロデュース バレンタイン編" - } - ] - }, - { - "alias_name": "スマイルパティシエ", - "alias_name_display": "スマイルパティシエ", - "id": "1405201", - "hash": "070e8c432c9dbd4fa1b2fa926d307839", - "profile": { - "height": "149", - "weight": "40", - "bust": "77", - "waist": "57", - "hip": "81" - }, - "event": [ - { - "event_id": 405, - "event_name": "アイドルプロデュース バレンタイン編" - } - ] - }, - { - "alias_name": "スマイルパティシエ", - "alias_name_display": "スマイルパティシエ", - "id": "1505202", - "hash": "3bcf46aeeb08f4688e1bcd7cc505be95", - "profile": { - "height": "149", - "weight": "40", - "bust": "77", - "waist": "57", - "hip": "81" - }, - "event": [ - { - "event_id": 405, - "event_name": "アイドルプロデュース バレンタイン編" - } - ] - }, - { - "alias_name": "ファイティングチアー", - "alias_name_display": "ファイティングチアー", - "id": "1412801", - "hash": "c9aed64496ffbddde3dfe139f5821d81", - "profile": { - "height": "149", - "weight": "40", - "bust": "77", - "waist": "57", - "hip": "81" - }, - "event": [ - { - "event_id": 1101, - "event_name": "プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "ファイティングチアー", - "alias_name_display": "ファイティングチアー", - "id": "1512802", - "hash": "f1f5d41ea64dc5f21d2f22b17bf37972", - "profile": { - "height": "149", - "weight": "40", - "bust": "77", - "waist": "57", - "hip": "81" - }, - "event": [ - { - "event_id": 1101, - "event_name": "プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "流麗武闘", - "alias_name_display": "流麗武闘", - "id": "1418401", - "hash": "aee2ad73ab0ea320d72882ee5d3c12b5", - "profile": { - "height": "149", - "weight": "40", - "bust": "77", - "waist": "57", - "hip": "81" - }, - "event": [ - { - "event_id": 514, - "event_name": "功夫公演 香港大決戦" - } - ] - }, - { - "alias_name": "流麗武闘", - "alias_name_display": "流麗武闘", - "id": "1518402", - "hash": "1a647c3d7de9bc4ca3b5ec62c7a3d4f5", - "profile": { - "height": "149", - "weight": "40", - "bust": "77", - "waist": "57", - "hip": "81" - }, - "event": [ - { - "event_id": 514, - "event_name": "功夫公演 香港大決戦" - } - ] - }, - { - "alias_name": "日々鍛錬", - "alias_name_display": "日々鍛錬", - "id": "1423301", - "hash": "077286881073bf516cb65a8fa9aedaf2", - "profile": { - "height": "149", - "weight": "40", - "bust": "77", - "waist": "57", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "日々鍛錬", - "alias_name_display": "日々鍛錬", - "id": "1523302", - "hash": "026f207848544f8ddba5ca6743dc56f4", - "profile": { - "height": "149", - "weight": "40", - "bust": "77", - "waist": "57", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "舞踊の大和撫子", - "alias_name_display": "舞踊の大和撫子", - "id": "1427601", - "hash": "96c0809449a3a9c7eea157ffa9c586d7", - "profile": { - "height": "149", - "weight": "40", - "bust": "77", - "waist": "57", - "hip": "81" - }, - "event": [ - { - "event_id": 1207, - "event_name": "目指せ大和撫子 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "舞踊の大和撫子", - "alias_name_display": "舞踊の大和撫子", - "id": "1527602", - "hash": "bf895736a930908d3f6ccd71065ee6d8", - "profile": { - "height": "149", - "weight": "40", - "bust": "77", - "waist": "57", - "hip": "81" - }, - "event": [ - { - "event_id": 1207, - "event_name": "目指せ大和撫子 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "舞踊の大和撫子・S", - "alias_name_display": "舞踊の大和撫子・S", - "id": "1427701", - "hash": "742359412cdfd26e34574d29b931e81a", - "profile": { - "height": "149", - "weight": "40", - "bust": "77", - "waist": "57", - "hip": "81" - }, - "event": [ - { - "event_id": 1207, - "event_name": "目指せ大和撫子 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "舞踊の大和撫子・S", - "alias_name_display": "舞踊の大和撫子・S", - "id": "1527702", - "hash": "cd2ea844567cc89df463cc94e87ede48", - "profile": { - "height": "149", - "weight": "40", - "bust": "77", - "waist": "57", - "hip": "81" - }, - "event": [ - { - "event_id": 1207, - "event_name": "目指せ大和撫子 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "1431601", - "hash": "2a73950f13b4fe7b694e9ecbdf8e9216", - "profile": { - "height": "149", - "weight": "40", - "bust": "77", - "waist": "57", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "1531602", - "hash": "0b8aba8c0d1c322588c7786f420d0717", - "profile": { - "height": "149", - "weight": "40", - "bust": "77", - "waist": "57", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "パワフルチャージ", - "alias_name_display": "パワフルチャージ", - "id": "1432201", - "hash": "1e636fde2ac167157ac7a3110085f226", - "profile": { - "height": "149", - "weight": "40", - "bust": "77", - "waist": "57", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "パワフルチャージ", - "alias_name_display": "パワフルチャージ", - "id": "1532202", - "hash": "7fe5882d01aa44bbd57c2a3e4bf8307d", - "profile": { - "height": "149", - "weight": "40", - "bust": "77", - "waist": "57", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "湯の花乙女", - "alias_name_display": "湯の花乙女", - "id": "1439101", - "hash": "3822324e5238a535b49fd5be10e0f985", - "profile": { - "height": "149", - "weight": "40", - "bust": "77", - "waist": "57", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "湯の花乙女", - "alias_name_display": "湯の花乙女", - "id": "1539102", - "hash": "b1976493a44373a42a7087ea012da84a", - "profile": { - "height": "149", - "weight": "40", - "bust": "77", - "waist": "57", - "hip": "81" - }, - "event": [] - } - ], - "units": [ - { - "id": "27", - "name": "ストレートフルート" - }, - { - "id": "136", - "name": "メロウ・イエロー" - }, - { - "id": "160", - "name": "ハッピーバレンタイン" - }, - { - "id": "187", - "name": "NEX-US" - }, - { - "id": "193", - "name": "イエローリリー" - }, - { - "id": "196", - "name": "la Roseraie" - } - ] - }, - "3": { - "idol_id": 3, - "idol_name": "水本ゆかり", - "idol_name_display": "水本ゆかり", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1000301", - "hash": "5a32b53f2943c5c7b76b18c0e098f400", - "profile": { - "height": "155", - "weight": "42", - "bust": "81", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1100302", - "hash": "4b39f05563a8175f27b8d893561976ee", - "profile": { - "height": "155", - "weight": "42", - "bust": "81", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "純粋奏者", - "alias_name_display": "純粋奏者", - "id": "1203501", - "hash": "57c3dca535e8b78bb9ba031c065690ed", - "profile": { - "height": "155", - "weight": "42", - "bust": "81", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "純粋奏者", - "alias_name_display": "純粋奏者", - "id": "1303502", - "hash": "e3ae28f9dae9077d49ff85eedf90d38d", - "profile": { - "height": "155", - "weight": "42", - "bust": "81", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ヴォヤージュ・ヒーラー", - "alias_name_display": "ヴォヤージュ・ヒーラー", - "id": "1215401", - "hash": "12a16e06fe32d7bfec53eba8ca6f67de", - "profile": { - "height": "155", - "weight": "42", - "bust": "81", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 511, - "event_name": "幻想公演 黒薔薇姫のヴォヤージュ" - } - ] - }, - { - "alias_name": "ヴォヤージュ・ヒーラー", - "alias_name_display": "ヴォヤージュ・ヒーラー", - "id": "1315402", - "hash": "ce97613529cae736a80ecd5a24ff0c05", - "profile": { - "height": "155", - "weight": "42", - "bust": "81", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 511, - "event_name": "幻想公演 黒薔薇姫のヴォヤージュ" - } - ] - }, - { - "alias_name": "自然なテンポ", - "alias_name_display": "自然なテンポ", - "id": "1220901", - "hash": "99994fd85c91d0c29fe5531d99fcf38d", - "profile": { - "height": "155", - "weight": "42", - "bust": "81", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "自然なテンポ", - "alias_name_display": "自然なテンポ", - "id": "1320902", - "hash": "cdbe1c879b7bbb71c58e0d0b7d0161a1", - "profile": { - "height": "155", - "weight": "42", - "bust": "81", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ウェディングI.C", - "alias_name_display": "ウェディングI.C", - "id": "1322002", - "hash": "7d5aa18aec3123ba1e95812ef0561f39", - "profile": { - "height": "155", - "weight": "42", - "bust": "81", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 1206, - "event_name": "目指せウェディングモデル アイドルチャレンジ" - } - ] - }, - { - "alias_name": "スクールメロディー", - "alias_name_display": "スクールメロディー", - "id": "1232101", - "hash": "1068a0adedbd74a596f77200e983813f", - "profile": { - "height": "155", - "weight": "42", - "bust": "81", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "スクールメロディー", - "alias_name_display": "スクールメロディー", - "id": "1332102", - "hash": "801ae1b1b6aae6d32a62ae3f6e05f5f6", - "profile": { - "height": "155", - "weight": "42", - "bust": "81", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "清純令嬢", - "alias_name_display": "清純令嬢", - "id": "1404401", - "hash": "063b5513bbd62fb98cfab5b98edee7b6", - "profile": { - "height": "155", - "weight": "42", - "bust": "81", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "清純令嬢", - "alias_name_display": "清純令嬢", - "id": "1504402", - "hash": "39fcc8af5585b77a898d2b0a30ba7b9a", - "profile": { - "height": "155", - "weight": "42", - "bust": "81", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "素顔のお嬢様", - "alias_name_display": "素顔のお嬢様", - "id": "1409301", - "hash": "3916b51a4d2993ae85d4315532fb635c", - "profile": { - "height": "155", - "weight": "42", - "bust": "81", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 801, - "event_name": "アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "素顔のお嬢様", - "alias_name_display": "素顔のお嬢様", - "id": "1509302", - "hash": "65b1614f1d60f9654a0e57ed0e157409", - "profile": { - "height": "155", - "weight": "42", - "bust": "81", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 801, - "event_name": "アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "誠実なる花嫁", - "alias_name_display": "誠実なる花嫁", - "id": "1424901", - "hash": "36b04f9bf0aa3a07751364ba1660cddf", - "profile": { - "height": "155", - "weight": "42", - "bust": "81", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 1206, - "event_name": "目指せウェディングモデル アイドルチャレンジ" - } - ] - }, - { - "alias_name": "誠実なる花嫁", - "alias_name_display": "誠実なる花嫁", - "id": "1524902", - "hash": "4eac93743268759f36147deee87e59e9", - "profile": { - "height": "155", - "weight": "42", - "bust": "81", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 1206, - "event_name": "目指せウェディングモデル アイドルチャレンジ" - } - ] - }, - { - "alias_name": "誠実なる花嫁・S", - "alias_name_display": "誠実なる花嫁・S", - "id": "1425001", - "hash": "7fdbcc0917346497b8c7fbf9241e9ce1", - "profile": { - "height": "155", - "weight": "42", - "bust": "81", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 1206, - "event_name": "目指せウェディングモデル アイドルチャレンジ" - } - ] - }, - { - "alias_name": "誠実なる花嫁・S", - "alias_name_display": "誠実なる花嫁・S", - "id": "1525002", - "hash": "722d3107b2c4c73e3ca66ad25ba67cfa", - "profile": { - "height": "155", - "weight": "42", - "bust": "81", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 1206, - "event_name": "目指せウェディングモデル アイドルチャレンジ" - } - ] - }, - { - "alias_name": "冬のハーモニー", - "alias_name_display": "冬のハーモニー", - "id": "1430701", - "hash": "718d1b6bbb63606ba766256b8527b66c", - "profile": { - "height": "155", - "weight": "42", - "bust": "81", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 1505, - "event_name": "チーム対抗トークバトルショー ウィンターSP" - } - ] - }, - { - "alias_name": "冬のハーモニー", - "alias_name_display": "冬のハーモニー", - "id": "1530702", - "hash": "19dca795d6ca96446f8949d9619c441d", - "profile": { - "height": "155", - "weight": "42", - "bust": "81", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 1505, - "event_name": "チーム対抗トークバトルショー ウィンターSP" - } - ] - }, - { - "alias_name": "エフォートブリランテ", - "alias_name_display": "エフォートブリランテ", - "id": "1434701", - "hash": "4cb935f4cee9ad752573a9d41f34d024", - "profile": { - "height": "155", - "weight": "42", - "bust": "81", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "エフォートブリランテ", - "alias_name_display": "エフォートブリランテ", - "id": "1534702", - "hash": "0ae0b50138bbf05741509420d5324943", - "profile": { - "height": "155", - "weight": "42", - "bust": "81", - "waist": "56", - "hip": "82" - }, - "event": [] - } - ], - "units": [ - { - "id": "27", - "name": "ストレートフルート" - }, - { - "id": "134", - "name": "ノーブルセレブリティ" - }, - { - "id": "136", - "name": "メロウ・イエロー" - }, - { - "id": "191", - "name": "Love Yell" - }, - { - "id": "193", - "name": "イエローリリー" - } - ] - }, - "4": { - "idol_id": 4, - "idol_name": "福山舞", - "idol_name_display": "福山舞", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1000401", - "hash": "9e4c72332c4881ae0bdc40ed2ec88c89", - "profile": { - "height": "132", - "weight": "28", - "bust": "64", - "waist": "56", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1100402", - "hash": "4b7647610d30d56613fa83e5e9616afb", - "profile": { - "height": "132", - "weight": "28", - "bust": "64", - "waist": "56", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "ひな祭り", - "alias_name_display": "ひな祭り", - "id": "1203401", - "hash": "432ad39240f6444c7b5f475a40b94cdd", - "profile": { - "height": "132", - "weight": "28", - "bust": "64", - "waist": "56", - "hip": "70" - }, - "event": [ - { - "event_id": 202, - "event_name": "アイドルサバイバルひな祭り編" - } - ] - }, - { - "alias_name": "ひな祭り", - "alias_name_display": "ひな祭り", - "id": "1303402", - "hash": "c7e09d78076a52fe3585aea1c6a8cd22", - "profile": { - "height": "132", - "weight": "28", - "bust": "64", - "waist": "56", - "hip": "70" - }, - "event": [ - { - "event_id": 202, - "event_name": "アイドルサバイバルひな祭り編" - } - ] - }, - { - "alias_name": "ビーチパラダイス", - "alias_name_display": "ビーチパラダイス", - "id": "1211001", - "hash": "3bce49b8578a3244816aea3c4b946970", - "profile": { - "height": "132", - "weight": "28", - "bust": "64", - "waist": "56", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "ビーチパラダイス", - "alias_name_display": "ビーチパラダイス", - "id": "1311002", - "hash": "74fb1af8cf551785d0eb3c886169b29c", - "profile": { - "height": "132", - "weight": "28", - "bust": "64", - "waist": "56", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "マーチングバンド", - "alias_name_display": "マーチングバンド", - "id": "1213101", - "hash": "5f198336d9cb50f8ab727a22ec32aa97", - "profile": { - "height": "132", - "weight": "28", - "bust": "64", - "waist": "56", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "マーチングバンド", - "alias_name_display": "マーチングバンド", - "id": "1313102", - "hash": "12a280521ddf493e5f868b618494392a", - "profile": { - "height": "132", - "weight": "28", - "bust": "64", - "waist": "56", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "魔女っ娘I.C", - "alias_name_display": "魔女っ娘I.C", - "id": "1316202", - "hash": "7afc67a566bd72f23eedb3a19bb3a982", - "profile": { - "height": "132", - "weight": "28", - "bust": "64", - "waist": "56", - "hip": "70" - }, - "event": [ - { - "event_id": 1201, - "event_name": "目指せ魔女っ娘 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "フレンドシップ", - "alias_name_display": "フレンドシップ", - "id": "1220401", - "hash": "a626e8ea3402255c88c43fa7e35fb2ff", - "profile": { - "height": "132", - "weight": "28", - "bust": "64", - "waist": "56", - "hip": "70" - }, - "event": [ - { - "event_id": "020", - "event_name": "第20回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "フレンドシップ", - "alias_name_display": "フレンドシップ", - "id": "1320402", - "hash": "ba304a7ee476e2e6f34d1d1380710dcf", - "profile": { - "height": "132", - "weight": "28", - "bust": "64", - "waist": "56", - "hip": "70" - }, - "event": [ - { - "event_id": "020", - "event_name": "第20回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "クリスマスナイト", - "alias_name_display": "クリスマスナイト", - "id": "1224901", - "hash": "fd3ac0d9e8392a40fd5f88a0f8f4a135", - "profile": { - "height": "132", - "weight": "28", - "bust": "64", - "waist": "56", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "クリスマスナイト", - "alias_name_display": "クリスマスナイト", - "id": "1324902", - "hash": "ab388a028b0c06ac2b8ad7e5b87c14e9", - "profile": { - "height": "132", - "weight": "28", - "bust": "64", - "waist": "56", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "コレクションスタイル", - "alias_name_display": "コレクションスタイル", - "id": "1326902", - "hash": "b8f180aef3da364b62a7d9d94c49f790", - "profile": { - "height": "132", - "weight": "28", - "bust": "64", - "waist": "56", - "hip": "70" - }, - "event": [ - { - "event_id": 1406, - "event_name": "第6回ぷちデレラコレクション" - } - ] - }, - { - "alias_name": "ロワイヤルスタイルND", - "alias_name_display": "ロワイヤルスタイルND", - "id": "1233201", - "hash": "88261973e6dc33c1efcf5f13fd5024ad", - "profile": { - "height": "132", - "weight": "28", - "bust": "64", - "waist": "56", - "hip": "70" - }, - "event": [ - { - "event_id": 823, - "event_name": "第23回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ロワイヤルスタイルND", - "alias_name_display": "ロワイヤルスタイルND", - "id": "1333202", - "hash": "2ce3a5f3b4995d42f6e8e0687b189e11", - "profile": { - "height": "132", - "weight": "28", - "bust": "64", - "waist": "56", - "hip": "70" - }, - "event": [ - { - "event_id": 823, - "event_name": "第23回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "リトルプリンセス", - "alias_name_display": "リトルプリンセス", - "id": "1404701", - "hash": "d59c444656b4257c797792a85ea7087b", - "profile": { - "height": "132", - "weight": "28", - "bust": "64", - "waist": "56", - "hip": "70" - }, - "event": [ - { - "event_id": 502, - "event_name": "アイドルLIVEツアーinイギリス" - } - ] - }, - { - "alias_name": "リトルプリンセス", - "alias_name_display": "リトルプリンセス", - "id": "1504702", - "hash": "1795c63d5c362fe01f69b2ff03031d34", - "profile": { - "height": "132", - "weight": "28", - "bust": "64", - "waist": "56", - "hip": "70" - }, - "event": [ - { - "event_id": 502, - "event_name": "アイドルLIVEツアーinイギリス" - } - ] - }, - { - "alias_name": "マジカルガール・アクア", - "alias_name_display": "マジカルガール・アクア", - "id": "1414601", - "hash": "64ceb0a3aba19347f000e9ea2e320c3e", - "profile": { - "height": "132", - "weight": "28", - "bust": "64", - "waist": "56", - "hip": "70" - }, - "event": [ - { - "event_id": 1201, - "event_name": "目指せ魔女っ娘 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "マジカルガール・アクア", - "alias_name_display": "マジカルガール・アクア", - "id": "1514602", - "hash": "7bab85379544f5baa52a0c14e399b63a", - "profile": { - "height": "132", - "weight": "28", - "bust": "64", - "waist": "56", - "hip": "70" - }, - "event": [ - { - "event_id": 1201, - "event_name": "目指せ魔女っ娘 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "マジカルガールS・アクア", - "alias_name_display": "マジカルガールS・アクア", - "id": "1414701", - "hash": "f3a7e94a6dfa24bdaf63dde0c51184d6", - "profile": { - "height": "132", - "weight": "28", - "bust": "64", - "waist": "56", - "hip": "70" - }, - "event": [ - { - "event_id": 1201, - "event_name": "目指せ魔女っ娘 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "マジカルガールS・アクア", - "alias_name_display": "マジカルガールS・アクア", - "id": "1514702", - "hash": "186553b4e590e75736c7b2e3620abc8f", - "profile": { - "height": "132", - "weight": "28", - "bust": "64", - "waist": "56", - "hip": "70" - }, - "event": [ - { - "event_id": 1201, - "event_name": "目指せ魔女っ娘 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "からふるタイム", - "alias_name_display": "からふるタイム", - "id": "1425101", - "hash": "c141ec5c30df557ec8b4c70280222551", - "profile": { - "height": "132", - "weight": "28", - "bust": "64", - "waist": "56", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "からふるタイム", - "alias_name_display": "からふるタイム", - "id": "1525102", - "hash": "29b2e04c3b9aad43ab45f10697f24ee2", - "profile": { - "height": "132", - "weight": "28", - "bust": "64", - "waist": "56", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "ちいさな秋", - "alias_name_display": "ちいさな秋", - "id": "1435701", - "hash": "ebd6eb001f23da8db802a95ac4f0334f", - "profile": { - "height": "132", - "weight": "28", - "bust": "64", - "waist": "56", - "hip": "70" - }, - "event": [ - { - "event_id": 724, - "event_name": "第24回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ちいさな秋", - "alias_name_display": "ちいさな秋", - "id": "1535702", - "hash": "02a5755a9e817844b01702bd71f8a68f", - "profile": { - "height": "132", - "weight": "28", - "bust": "64", - "waist": "56", - "hip": "70" - }, - "event": [ - { - "event_id": 724, - "event_name": "第24回ドリームLIVEフェスティバル" - } - ] - } - ], - "units": [ - { - "id": "164", - "name": "マジカルテット" - }, - { - "id": "177", - "name": "桜舞隊" - }, - { - "id": "210", - "name": "ロワイヤルスタイルND" - }, - { - "id": "214", - "name": "L.M.B.G" - } - ] - }, - "5": { - "idol_id": 5, - "idol_name": "椎名法子", - "idol_name_display": "椎名法子", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1000501", - "hash": "2c27422ff05ee7bb687d23d68b8e5437", - "profile": { - "height": "147", - "weight": "38", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1100502", - "hash": "9afc857da9d69bf96e603bf8837a66ce", - "profile": { - "height": "147", - "weight": "38", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "バレンタイン", - "alias_name_display": "バレンタイン", - "id": "1001801", - "hash": "8d83c2c10b5dda3a24ab3fd2d2d5a65e", - "profile": { - "height": "147", - "weight": "38", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [ - { - "event_id": 103, - "event_name": "バレンタインパーティー" - } - ] - }, - { - "alias_name": "バレンタイン", - "alias_name_display": "バレンタイン", - "id": "1101802", - "hash": "93917a715e96a0ed275f0bc15236ce9d", - "profile": { - "height": "147", - "weight": "38", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [ - { - "event_id": 103, - "event_name": "バレンタインパーティー" - } - ] - }, - { - "alias_name": "ハッピーバレンタイン", - "alias_name_display": "ハッピーバレンタイン", - "id": "1207701", - "hash": "6a3760f4ae142edb4fa79c55c0711f16", - "profile": { - "height": "147", - "weight": "38", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [ - { - "event_id": 405, - "event_name": "アイドルプロデュース バレンタイン編" - } - ] - }, - { - "alias_name": "ハッピーバレンタイン", - "alias_name_display": "ハッピーバレンタイン", - "id": "1307702", - "hash": "f662c0d2f39ebe7c9f6f2b5801a5637f", - "profile": { - "height": "147", - "weight": "38", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [ - { - "event_id": 405, - "event_name": "アイドルプロデュース バレンタイン編" - } - ] - }, - { - "alias_name": "スマイルバレンタイン", - "alias_name_display": "スマイルバレンタイン", - "id": "1207801", - "hash": "600d9532a365f51b484cde2e1968dbb0", - "profile": { - "height": "147", - "weight": "38", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [ - { - "event_id": 405, - "event_name": "アイドルプロデュース バレンタイン編" - } - ] - }, - { - "alias_name": "スマイルバレンタイン", - "alias_name_display": "スマイルバレンタイン", - "id": "1307802", - "hash": "ed5efe1f4f7f8fab7501b684faa673f5", - "profile": { - "height": "147", - "weight": "38", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [ - { - "event_id": 405, - "event_name": "アイドルプロデュース バレンタイン編" - } - ] - }, - { - "alias_name": "ロワイヤルスタイルNP", - "alias_name_display": "ロワイヤルスタイルNP", - "id": "1215201", - "hash": "f342a9da146eba2799e8451dab7c0a22", - "profile": { - "height": "147", - "weight": "38", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [ - { - "event_id": 804, - "event_name": "第4回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ロワイヤルスタイルNP", - "alias_name_display": "ロワイヤルスタイルNP", - "id": "1315202", - "hash": "9ac4c4497893b1212e1a4b5fef670c74", - "profile": { - "height": "147", - "weight": "38", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [ - { - "event_id": 804, - "event_name": "第4回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "スクールガール", - "alias_name_display": "スクールガール", - "id": "1218601", - "hash": "5f4163ebaa3db4ae6a40335feeab9d05", - "profile": { - "height": "147", - "weight": "38", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "スクールガール", - "alias_name_display": "スクールガール", - "id": "1318602", - "hash": "5bd608ecda1c88289f543f740fa31798", - "profile": { - "height": "147", - "weight": "38", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "なかよし☆ドーナッツ", - "alias_name_display": "なかよし☆ドーナッツ", - "id": "1220801", - "hash": "df0842fcb37dca93468e740e24134f38", - "profile": { - "height": "147", - "weight": "38", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "なかよし☆ドーナッツ", - "alias_name_display": "なかよし☆ドーナッツ", - "id": "1320802", - "hash": "b830925d4da9a4ebb45aad7b456f68a6", - "profile": { - "height": "147", - "weight": "38", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "ハイカラガール", - "alias_name_display": "ハイカラガール", - "id": "1223001", - "hash": "59774669f6fd1ce8779b3ad085780d99", - "profile": { - "height": "147", - "weight": "38", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "ハイカラガール", - "alias_name_display": "ハイカラガール", - "id": "1323002", - "hash": "53aa3e20e3981711db5c1c9c00490217", - "profile": { - "height": "147", - "weight": "38", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "スイートサマー", - "alias_name_display": "スイートサマー", - "id": "1402201", - "hash": "75d17e59127cb32465dd5f4cf7a35f69", - "profile": { - "height": "147", - "weight": "38", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [ - { - "event_id": 205, - "event_name": "アイドルサバイバルinサマーライブ" - } - ] - }, - { - "alias_name": "スイートサマー", - "alias_name_display": "スイートサマー", - "id": "1502202", - "hash": "d4d7df4f74b6612da8f3b9256354039e", - "profile": { - "height": "147", - "weight": "38", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [ - { - "event_id": 205, - "event_name": "アイドルサバイバルinサマーライブ" - } - ] - }, - { - "alias_name": "ドーナッツ☆マーメイド", - "alias_name_display": "ドーナッツ☆マーメイド", - "id": "1408301", - "hash": "6639dfcca711df063ea40a7e8e423a5d", - "profile": { - "height": "147", - "weight": "38", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "ドーナッツ☆マーメイド", - "alias_name_display": "ドーナッツ☆マーメイド", - "id": "1508302", - "hash": "c5686d14889a1c7a421a38304dc8f88c", - "profile": { - "height": "147", - "weight": "38", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "目覚めし勇者", - "alias_name_display": "目覚めし勇者", - "id": "1420801", - "hash": "7a53687160966f6fc639e8581c961d45", - "profile": { - "height": "147", - "weight": "38", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [ - { - "event_id": 516, - "event_name": "幻想公演栄光のシュヴァリエ" - } - ] - }, - { - "alias_name": "目覚めし勇者", - "alias_name_display": "目覚めし勇者", - "id": "1520802", - "hash": "6d3ed0a7f03b9b5fd51721010eaf81f1", - "profile": { - "height": "147", - "weight": "38", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [ - { - "event_id": 516, - "event_name": "幻想公演栄光のシュヴァリエ" - } - ] - }, - { - "alias_name": "スウィートサークル", - "alias_name_display": "スウィートサークル", - "id": "1432101", - "hash": "380c5bc88f6fc5c34164164c8b721e66", - "profile": { - "height": "147", - "weight": "38", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [ - { - "event_id": 720, - "event_name": "第20回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "スウィートサークル", - "alias_name_display": "スウィートサークル", - "id": "1532102", - "hash": "4451be66b36f225beba93e12fa235f36", - "profile": { - "height": "147", - "weight": "38", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [ - { - "event_id": 720, - "event_name": "第20回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "あま~い★誘惑", - "alias_name_display": "あま~い★誘惑", - "id": "1436001", - "hash": "f2a2dfca90f836b1d98d889179daad59", - "profile": { - "height": "147", - "weight": "38", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [ - { - "event_id": 1213, - "event_name": "目指せお菓子なハロウィン アイドルチャレンジ" - } - ] - }, - { - "alias_name": "あま~い★誘惑", - "alias_name_display": "あま~い★誘惑", - "id": "1536002", - "hash": "06f18e9f5532d8fd04e01d1a64c16df4", - "profile": { - "height": "147", - "weight": "38", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [ - { - "event_id": 1213, - "event_name": "目指せお菓子なハロウィン アイドルチャレンジ" - } - ] - }, - { - "alias_name": "できたてシュガー", - "alias_name_display": "できたてシュガー", - "id": "1440001", - "hash": "c6e0e9ac726d8b09a19f833255f8ca38", - "profile": { - "height": "147", - "weight": "38", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "できたてシュガー", - "alias_name_display": "できたてシュガー", - "id": "1540002", - "hash": "6e42fd90357609b6d27c0afa237f117b", - "profile": { - "height": "147", - "weight": "38", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [] - } - ], - "units": [ - { - "id": "33", - "name": "チーム・フラワー" - }, - { - "id": "136", - "name": "メロウ・イエロー" - }, - { - "id": "160", - "name": "ハッピーバレンタイン" - }, - { - "id": "188", - "name": "Sweetches" - }, - { - "id": "193", - "name": "イエローリリー" - }, - { - "id": "209", - "name": "ロワイヤルスタイルNP" - } - ] - }, - "6": { - "idol_id": 6, - "idol_name": "今井加奈", - "idol_name_display": "今井加奈", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1000601", - "hash": "ed6aeeec0997ee6943d1791c228c1ec7", - "profile": { - "height": "153", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1100602", - "hash": "f3f2597ca67e9fc3058a86fc5394c6ef", - "profile": { - "height": "153", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "スポーツ祭", - "alias_name_display": "スポーツ祭", - "id": "1204401", - "hash": "ba32b49a158314a1fca1cc2183fccd4b", - "profile": { - "height": "153", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "スポーツ祭", - "alias_name_display": "スポーツ祭", - "id": "1304402", - "hash": "086e26928b30bbc058eb89c453157284", - "profile": { - "height": "153", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "クリスマスパーティー", - "alias_name_display": "クリスマスパーティー", - "id": "1213601", - "hash": "62618351b0bcde86f002c3bcec730148", - "profile": { - "height": "153", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "クリスマスパーティー", - "alias_name_display": "クリスマスパーティー", - "id": "1313602", - "hash": "898a7b7cee8c3554b096fb44fbf1c6e5", - "profile": { - "height": "153", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "フラワーガーデン", - "alias_name_display": "フラワーガーデン", - "id": "1215601", - "hash": "78c348ee69a886457da80ac238317a5c", - "profile": { - "height": "153", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "79" - }, - "event": [ - { - "event_id": 213, - "event_name": "アイドルサバイバルinフラワーガーデン" - } - ] - }, - { - "alias_name": "フラワーガーデン", - "alias_name_display": "フラワーガーデン", - "id": "1315602", - "hash": "2f5762635183f75a5be435de3a0c58b4", - "profile": { - "height": "153", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "79" - }, - "event": [ - { - "event_id": 213, - "event_name": "アイドルサバイバルinフラワーガーデン" - } - ] - }, - { - "alias_name": "ファンシーガール", - "alias_name_display": "ファンシーガール", - "id": "1406901", - "hash": "6b35883cb4c64cec7edbbbcffd5a3390", - "profile": { - "height": "153", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "ファンシーガール", - "alias_name_display": "ファンシーガール", - "id": "1506902", - "hash": "5d1e7b399154bdf492febc326a51a8bb", - "profile": { - "height": "153", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "こぼれるスマイル", - "alias_name_display": "こぼれるスマイル", - "id": "1419501", - "hash": "2c5a5b78471f6d6c40dbe61cd3e9900d", - "profile": { - "height": "153", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "79" - }, - "event": [ - { - "event_id": 709, - "event_name": "第9回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "こぼれるスマイル", - "alias_name_display": "こぼれるスマイル", - "id": "1519502", - "hash": "a445a50c0d5fb02ff4f82c959384d750", - "profile": { - "height": "153", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "79" - }, - "event": [ - { - "event_id": 709, - "event_name": "第9回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "フレンドリーチアー", - "alias_name_display": "フレンドリーチアー", - "id": "1423001", - "hash": "21aafbfb633a28a9bd5a24f0e75efe80", - "profile": { - "height": "153", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "79" - }, - "event": [ - { - "event_id": 1109, - "event_name": "第9回プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "フレンドリーチアー", - "alias_name_display": "フレンドリーチアー", - "id": "1523002", - "hash": "e84038818af54434a5dade1f5e257738", - "profile": { - "height": "153", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "79" - }, - "event": [ - { - "event_id": 1109, - "event_name": "第9回プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "コーラスリーダー", - "alias_name_display": "コーラスリーダー", - "id": "1425601", - "hash": "436039c361c04185b59793ac385a5d82", - "profile": { - "height": "153", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "79" - }, - "event": [ - { - "event_id": 520, - "event_name": "青春公演 シング・ア・ソング" - } - ] - }, - { - "alias_name": "コーラスリーダー", - "alias_name_display": "コーラスリーダー", - "id": "1525602", - "hash": "6d640f84d12ca279bca2fe4f10d6e4ec", - "profile": { - "height": "153", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "79" - }, - "event": [ - { - "event_id": 520, - "event_name": "青春公演 シング・ア・ソング" - } - ] - }, - { - "alias_name": "南国バケーション", - "alias_name_display": "南国バケーション", - "id": "1428901", - "hash": "9def754016201d226cdb8f58a13c294c", - "profile": { - "height": "153", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "南国バケーション", - "alias_name_display": "南国バケーション", - "id": "1528902", - "hash": "9525aeca682cb5138adfad2b93165509", - "profile": { - "height": "153", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "ライクアバッドガール", - "alias_name_display": "ライクアバッドガール", - "id": "1433401", - "hash": "0d75122abd7d6be852284b94fbedf2ea", - "profile": { - "height": "153", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "79" - }, - "event": [ - { - "event_id": 1407, - "event_name": "第7回ぷちデレラコレクション" - } - ] - }, - { - "alias_name": "ライクアバッドガール", - "alias_name_display": "ライクアバッドガール", - "id": "1533402", - "hash": "d4bee022093890359552c612a72b9b89", - "profile": { - "height": "153", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "79" - }, - "event": [ - { - "event_id": 1407, - "event_name": "第7回ぷちデレラコレクション" - } - ] - }, - { - "alias_name": "ワンダーホーリーナイト", - "alias_name_display": "ワンダーホーリーナイト", - "id": "1437001", - "hash": "db115e1ba38a17d275397d1b00513ddb", - "profile": { - "height": "153", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "ワンダーホーリーナイト", - "alias_name_display": "ワンダーホーリーナイト", - "id": "1537002", - "hash": "2ed07d073761b8d9b26106a1bebea34a", - "profile": { - "height": "153", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "79" - }, - "event": [] - } - ], - "units": [ - { - "id": "11", - "name": "かな☆かな☆ふぁんしー" - }, - { - "id": "103", - "name": "ビビッドカラーエイジ" - }, - { - "id": "133", - "name": "スケルツォ・プリマヴェーラ" - }, - { - "id": "181", - "name": "フレッシュアスリーテス" - }, - { - "id": "193", - "name": "イエローリリー" - } - ] - }, - "7": { - "idol_id": 7, - "idol_name": "持田亜里沙", - "idol_name_display": "持田亜里沙", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1000701", - "hash": "bb74192d2815e42c51cbf484f0e7c57b", - "profile": { - "height": "156", - "weight": "45", - "bust": "77", - "waist": "54", - "hip": "76" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1100702", - "hash": "590ea3d4692769eab56d96af4d5c6298", - "profile": { - "height": "156", - "weight": "45", - "bust": "77", - "waist": "54", - "hip": "76" - }, - "event": [] - }, - { - "alias_name": "ウサコちゃんと", - "alias_name_display": "ウサコちゃんと", - "id": "1204001", - "hash": "bb1565b0cc877336f3c836abbf54aa7e", - "profile": { - "height": "156", - "weight": "45", - "bust": "77", - "waist": "54", - "hip": "76" - }, - "event": [ - { - "event_id": 203, - "event_name": "アイドルサバイバルinテーマパーク" - } - ] - }, - { - "alias_name": "ウサコちゃんと", - "alias_name_display": "ウサコちゃんと", - "id": "1304002", - "hash": "2726872f85e9ca83e70c9897d833cbbe", - "profile": { - "height": "156", - "weight": "45", - "bust": "77", - "waist": "54", - "hip": "76" - }, - "event": [ - { - "event_id": 203, - "event_name": "アイドルサバイバルinテーマパーク" - } - ] - }, - { - "alias_name": "浴衣祭り", - "alias_name_display": "浴衣祭り", - "id": "1210401", - "hash": "c38e02af7867d399dc755701470f8fb6", - "profile": { - "height": "156", - "weight": "45", - "bust": "77", - "waist": "54", - "hip": "76" - }, - "event": [] - }, - { - "alias_name": "浴衣祭り", - "alias_name_display": "浴衣祭り", - "id": "1310402", - "hash": "393b6b1b2e28e60508ecfc9f13769c3c", - "profile": { - "height": "156", - "weight": "45", - "bust": "77", - "waist": "54", - "hip": "76" - }, - "event": [] - }, - { - "alias_name": "パラダイスリゾート", - "alias_name_display": "パラダイスリゾート", - "id": "1217701", - "hash": "28351f2aa36a19be5e71535a9da90df2", - "profile": { - "height": "156", - "weight": "45", - "bust": "77", - "waist": "54", - "hip": "76" - }, - "event": [] - }, - { - "alias_name": "パラダイスリゾート", - "alias_name_display": "パラダイスリゾート", - "id": "1317702", - "hash": "e62386d71c2fd0d5ad4dd47207df9b39", - "profile": { - "height": "156", - "weight": "45", - "bust": "77", - "waist": "54", - "hip": "76" - }, - "event": [] - }, - { - "alias_name": "オータムコレクション", - "alias_name_display": "オータムコレクション", - "id": "1223901", - "hash": "8e287b6e2675f27792f7c11ae46cdbcd", - "profile": { - "height": "156", - "weight": "45", - "bust": "77", - "waist": "54", - "hip": "76" - }, - "event": [] - }, - { - "alias_name": "オータムコレクション", - "alias_name_display": "オータムコレクション", - "id": "1323902", - "hash": "dfaef83aefde74600203a567895707b1", - "profile": { - "height": "156", - "weight": "45", - "bust": "77", - "waist": "54", - "hip": "76" - }, - "event": [] - }, - { - "alias_name": "クライムI.C", - "alias_name_display": "クライムI.C", - "id": "1329002", - "hash": "5284e8ed9804a5f52178ffad4654693c", - "profile": { - "height": "156", - "weight": "45", - "bust": "77", - "waist": "54", - "hip": "76" - }, - "event": [ - { - "event_id": 1211, - "event_name": "目指せ山頂! アイドルチャレンジ" - } - ] - }, - { - "alias_name": "ハロウィンクイーン", - "alias_name_display": "ハロウィンクイーン", - "id": "1403401", - "hash": "02e6e6ca1a87c6990997bd7e95004bf2", - "profile": { - "height": "156", - "weight": "45", - "bust": "77", - "waist": "54", - "hip": "76" - }, - "event": [ - { - "event_id": 207, - "event_name": "アイドルサバイバル ハロウィン編" - } - ] - }, - { - "alias_name": "ハロウィンクイーン", - "alias_name_display": "ハロウィンクイーン", - "id": "1503402", - "hash": "b4ce1229bd3669f873535993c78119a4", - "profile": { - "height": "156", - "weight": "45", - "bust": "77", - "waist": "54", - "hip": "76" - }, - "event": [ - { - "event_id": 207, - "event_name": "アイドルサバイバル ハロウィン編" - } - ] - }, - { - "alias_name": "うたのおねえさん", - "alias_name_display": "うたのおねえさん", - "id": "1412001", - "hash": "5b22bf84b28a80e6bc9bba507cb475ca", - "profile": { - "height": "156", - "weight": "45", - "bust": "77", - "waist": "54", - "hip": "76" - }, - "event": [] - }, - { - "alias_name": "うたのおねえさん", - "alias_name_display": "うたのおねえさん", - "id": "1512002", - "hash": "7ff72968fd3f03a494d52e24b597be01", - "profile": { - "height": "156", - "weight": "45", - "bust": "77", - "waist": "54", - "hip": "76" - }, - "event": [] - }, - { - "alias_name": "甲斐のウサトラ", - "alias_name_display": "甲斐のウサトラ", - "id": "1419701", - "hash": "3cc897e17eb9ec00935c3f09dd790b44", - "profile": { - "height": "156", - "weight": "45", - "bust": "77", - "waist": "54", - "hip": "76" - }, - "event": [ - { - "event_id": 515, - "event_name": "戦国公演 天魔の乱" - } - ] - }, - { - "alias_name": "甲斐のウサトラ", - "alias_name_display": "甲斐のウサトラ", - "id": "1519702", - "hash": "545f910a45bcaf27bf287cf9ae8149e5", - "profile": { - "height": "156", - "weight": "45", - "bust": "77", - "waist": "54", - "hip": "76" - }, - "event": [ - { - "event_id": 515, - "event_name": "戦国公演 天魔の乱" - } - ] - }, - { - "alias_name": "ウサコちゃんとチアー", - "alias_name_display": "ウサコちゃんとチアー", - "id": "1423901", - "hash": "1ca5b0c45103639cf0269381b7c00758", - "profile": { - "height": "156", - "weight": "45", - "bust": "77", - "waist": "54", - "hip": "76" - }, - "event": [ - { - "event_id": 1501, - "event_name": "チーム対抗トークバトルショー" - } - ] - }, - { - "alias_name": "ウサコちゃんとチアー", - "alias_name_display": "ウサコちゃんとチアー", - "id": "1523902", - "hash": "a4b95d602f54ab58070cacc27508ccc0", - "profile": { - "height": "156", - "weight": "45", - "bust": "77", - "waist": "54", - "hip": "76" - }, - "event": [ - { - "event_id": 1501, - "event_name": "チーム対抗トークバトルショー" - } - ] - }, - { - "alias_name": "たのしくクライマー", - "alias_name_display": "たのしくクライマー", - "id": "1434201", - "hash": "125e81ee1827f6f200d28b40aa1be60c", - "profile": { - "height": "156", - "weight": "45", - "bust": "77", - "waist": "54", - "hip": "76" - }, - "event": [ - { - "event_id": 1211, - "event_name": "目指せ山頂! アイドルチャレンジ" - } - ] - }, - { - "alias_name": "たのしくクライマー", - "alias_name_display": "たのしくクライマー", - "id": "1534202", - "hash": "ab230b11f6a1d816f09e09d220d47773", - "profile": { - "height": "156", - "weight": "45", - "bust": "77", - "waist": "54", - "hip": "76" - }, - "event": [ - { - "event_id": 1211, - "event_name": "目指せ山頂! アイドルチャレンジ" - } - ] - }, - { - "alias_name": "にこにこクライマー", - "alias_name_display": "にこにこクライマー", - "id": "1434301", - "hash": "64effa640e159e91df4d2536e9fb2ef1", - "profile": { - "height": "156", - "weight": "45", - "bust": "77", - "waist": "54", - "hip": "76" - }, - "event": [ - { - "event_id": 1211, - "event_name": "目指せ山頂! アイドルチャレンジ" - } - ] - }, - { - "alias_name": "にこにこクライマー", - "alias_name_display": "にこにこクライマー", - "id": "1534302", - "hash": "9d21319e84f61ca87cc24dfd1aa511dc", - "profile": { - "height": "156", - "weight": "45", - "bust": "77", - "waist": "54", - "hip": "76" - }, - "event": [ - { - "event_id": 1211, - "event_name": "目指せ山頂! アイドルチャレンジ" - } - ] - }, - { - "alias_name": "クラッシールージュ", - "alias_name_display": "クラッシールージュ", - "id": "1438401", - "hash": "0bafd8a70b95838077ee10b32b1c12e6", - "profile": { - "height": "156", - "weight": "45", - "bust": "77", - "waist": "54", - "hip": "76" - }, - "event": [ - { - "event_id": 1411, - "event_name": "第11回ぷちデレラコレクション" - } - ] - }, - { - "alias_name": "クラッシールージュ", - "alias_name_display": "クラッシールージュ", - "id": "1538402", - "hash": "baf115536838f243cc9a52df9853fb22", - "profile": { - "height": "156", - "weight": "45", - "bust": "77", - "waist": "54", - "hip": "76" - }, - "event": [ - { - "event_id": 1411, - "event_name": "第11回ぷちデレラコレクション" - } - ] - } - ], - "units": [ - { - "id": "173", - "name": "ピンクドットバルーン" - } - ] - }, - "8": { - "idol_id": 8, - "idol_name": "三村かな子", - "idol_name_display": "三村かな子", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1000801", - "hash": "9934868123e14bccac84dfb85f7ecd8a", - "profile": { - "height": "153", - "weight": "52", - "bust": "90", - "waist": "65", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1100802", - "hash": "4a82a002228540b7fb96ca744599f1b1", - "profile": { - "height": "153", - "weight": "51", - "bust": "90", - "waist": "63", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "春風スポーツ", - "alias_name_display": "春風スポーツ", - "id": "1227201", - "hash": "9c9fb21dc78b7642279e08ce560b9326", - "profile": { - "height": "153", - "weight": "51", - "bust": "90", - "waist": "63", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "春風スポーツ", - "alias_name_display": "春風スポーツ", - "id": "1327202", - "hash": "a4e16ebe27838b975e37bfe74c84ddc2", - "profile": { - "height": "153", - "weight": "51", - "bust": "90", - "waist": "63", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "ワイルドフレンズ", - "alias_name_display": "ワイルドフレンズ", - "id": "1232601", - "hash": "16d9293bf83ba6bf24a6852f8d34c0a7", - "profile": { - "height": "153", - "weight": "51", - "bust": "90", - "waist": "63", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "ワイルドフレンズ", - "alias_name_display": "ワイルドフレンズ", - "id": "1332602", - "hash": "82aa4935c95e87e5a62185d63a42dd2c", - "profile": { - "height": "153", - "weight": "51", - "bust": "90", - "waist": "63", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "ふわふわスマイル", - "alias_name_display": "ふわふわスマイル", - "id": "1401301", - "hash": "5bc1016a4121d230bcadb3e57ae9becc", - "profile": { - "height": "153", - "weight": "52", - "bust": "90", - "waist": "64", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "ふわふわスマイル", - "alias_name_display": "ふわふわスマイル", - "id": "1501302", - "hash": "a58abdbbc7258e54993ab40137c6cd78", - "profile": { - "height": "153", - "weight": "51", - "bust": "91", - "waist": "63", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "1401501", - "hash": "98d99f1382acbdcffbdf1f2c2b878c86", - "profile": { - "height": "153", - "weight": "52", - "bust": "90", - "waist": "65", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "1501502", - "hash": "207845571c37f60aa09865f7ad5684d4", - "profile": { - "height": "153", - "weight": "51", - "bust": "90", - "waist": "63", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "LIVEゲスト", - "alias_name_display": "LIVEゲスト", - "id": "1402601", - "hash": "5f3df9ce0891daba5ad5462315bc6542", - "profile": { - "height": "153", - "weight": "51", - "bust": "90", - "waist": "63", - "hip": "89" - }, - "event": [ - { - "event_id": 401, - "event_name": "新人アイドルプロデュース" - } - ] - }, - { - "alias_name": "LIVEゲスト", - "alias_name_display": "LIVEゲスト", - "id": "1502602", - "hash": "f055efc23fbee62b7f35ff7957efaf19", - "profile": { - "height": "153", - "weight": "51", - "bust": "90", - "waist": "63", - "hip": "89" - }, - "event": [ - { - "event_id": 401, - "event_name": "新人アイドルプロデュース" - } - ] - }, - { - "alias_name": "メルティスイート", - "alias_name_display": "メルティスイート", - "id": "1405401", - "hash": "1af7bfaac9ee148dd2e9046e761a5430", - "profile": { - "height": "153", - "weight": "51", - "bust": "90", - "waist": "63", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "メルティスイート", - "alias_name_display": "メルティスイート", - "id": "1505402", - "hash": "9d95cb4e0a29f5df3d19ce03bab584a5", - "profile": { - "height": "153", - "weight": "51", - "bust": "90", - "waist": "63", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "シンデレラドリーム", - "alias_name_display": "シンデレラドリーム", - "id": "1409101", - "hash": "9be2474eed1f4bb918def97edd402d7b", - "profile": { - "height": "153", - "weight": "51", - "bust": "90", - "waist": "63", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "シンデレラドリーム", - "alias_name_display": "シンデレラドリーム", - "id": "1509102", - "hash": "67f12e31fbef152f316ccab074033751", - "profile": { - "height": "153", - "weight": "51", - "bust": "90", - "waist": "63", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "LIVEゲスト・スマイル", - "alias_name_display": "LIVEゲスト・スマイル", - "id": "1410901", - "hash": "885560563387d31c9c3df18f4acf5b65", - "profile": { - "height": "153", - "weight": "51", - "bust": "90", - "waist": "63", - "hip": "89" - }, - "event": [ - { - "event_id": 401, - "event_name": "新人アイドルプロデュース" - } - ] - }, - { - "alias_name": "LIVEゲスト・スマイル", - "alias_name_display": "LIVEゲスト・スマイル", - "id": "1510902", - "hash": "70626858ff6676ee4f1eafbf6d52706f", - "profile": { - "height": "153", - "weight": "51", - "bust": "90", - "waist": "63", - "hip": "89" - }, - "event": [ - { - "event_id": 401, - "event_name": "新人アイドルプロデュース" - } - ] - }, - { - "alias_name": "ワンダフルマジック", - "alias_name_display": "ワンダフルマジック", - "id": "1412901", - "hash": "1690e6ca3699ea1491a93ac6ad33f835", - "profile": { - "height": "153", - "weight": "51", - "bust": "90", - "waist": "63", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "ワンダフルマジック", - "alias_name_display": "ワンダフルマジック", - "id": "1512902", - "hash": "29c61e62f922a8da71ff6782d757b18e", - "profile": { - "height": "153", - "weight": "51", - "bust": "90", - "waist": "63", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "桜色の華姫", - "alias_name_display": "桜色の華姫", - "id": "1419601", - "hash": "28bcf7054852b0cc022339a29fbab508", - "profile": { - "height": "153", - "weight": "51", - "bust": "90", - "waist": "63", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "桜色の華姫", - "alias_name_display": "桜色の華姫", - "id": "1519602", - "hash": "b3b00bc958af646c2c96a1c9235117ff", - "profile": { - "height": "153", - "weight": "51", - "bust": "90", - "waist": "63", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "キャンディアイランド", - "alias_name_display": "キャンディアイランド", - "id": "1523202", - "hash": "672ec165dd3a8a5cdfbf40fafafe20aa", - "profile": { - "height": "153", - "weight": "51", - "bust": "90", - "waist": "63", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "クリーミィトライフル", - "alias_name_display": "クリーミィトライフル", - "id": "1425301", - "hash": "a7c2006bb177f730e7b13d57fb1b5665", - "profile": { - "height": "153", - "weight": "51", - "bust": "90", - "waist": "63", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "クリーミィトライフル", - "alias_name_display": "クリーミィトライフル", - "id": "1525302", - "hash": "a96314dfbb8bddd68b73adaff44f5261", - "profile": { - "height": "153", - "weight": "51", - "bust": "90", - "waist": "63", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "メルティスノー", - "alias_name_display": "メルティスノー", - "id": "1430101", - "hash": "b0cc22595859cf3a35cb7fad726acf0c", - "profile": { - "height": "153", - "weight": "51", - "bust": "90", - "waist": "63", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "メルティスノー", - "alias_name_display": "メルティスノー", - "id": "1530102", - "hash": "de08ee30102b9de8473d24f8cab704d1", - "profile": { - "height": "153", - "weight": "51", - "bust": "90", - "waist": "63", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "スイートサマータイム", - "alias_name_display": "スイートサマータイム", - "id": "1434501", - "hash": "a971864b897eb298bf98410917dcff59", - "profile": { - "height": "153", - "weight": "51", - "bust": "90", - "waist": "63", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "スイートサマータイム", - "alias_name_display": "スイートサマータイム", - "id": "1534502", - "hash": "c8c44f8080c9c5fe57633092232f5dee", - "profile": { - "height": "153", - "weight": "51", - "bust": "90", - "waist": "63", - "hip": "89" - }, - "event": [] - } - ], - "units": [ - { - "id": "11", - "name": "かな☆かな☆ふぁんしー" - }, - { - "id": "25", - "name": "スウィートラヴァーズ" - }, - { - "id": "107", - "name": "ロッキングガール" - }, - { - "id": "137", - "name": "CANDY ISLAND" - }, - { - "id": "173", - "name": "ピンクドットバルーン" - }, - { - "id": "188", - "name": "Sweetches" - }, - { - "id": "194", - "name": "サクヤヒメ" - }, - { - "id": "213", - "name": "CINDERELLA PROJECT" - } - ] - }, - "9": { - "idol_id": 9, - "idol_name": "奥山沙織", - "idol_name_display": "奥山沙織", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1000901", - "hash": "2bc8b92d3444429e10e29e7fd056aaab", - "profile": { - "height": "156", - "weight": "47", - "bust": "83", - "waist": "57", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1100902", - "hash": "8617333c94b6505b0e39c62dbbd7239b", - "profile": { - "height": "156", - "weight": "47", - "bust": "83", - "waist": "57", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "浴衣祭り", - "alias_name_display": "浴衣祭り", - "id": "1204901", - "hash": "12a84ee0f8802a28922bea40d190b1d3", - "profile": { - "height": "156", - "weight": "47", - "bust": "83", - "waist": "57", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "浴衣祭り", - "alias_name_display": "浴衣祭り", - "id": "1304902", - "hash": "fd16eb68d5aa1b68d4301ade853b1b82", - "profile": { - "height": "156", - "weight": "47", - "bust": "83", - "waist": "57", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ライラックガーリー", - "alias_name_display": "ライラックガーリー", - "id": "1210201", - "hash": "80334ec678333541b423f0cfe2c6b8a4", - "profile": { - "height": "156", - "weight": "47", - "bust": "83", - "waist": "57", - "hip": "81" - }, - "event": [ - { - "event_id": 701, - "event_name": "ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ライラックガーリー", - "alias_name_display": "ライラックガーリー", - "id": "1310202", - "hash": "6bcc7d82ba156c52ffefe1389c7aa795", - "profile": { - "height": "156", - "weight": "47", - "bust": "83", - "waist": "57", - "hip": "81" - }, - "event": [ - { - "event_id": 701, - "event_name": "ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "学園の生徒", - "alias_name_display": "学園の生徒", - "id": "1215701", - "hash": "e2e9a35d29f0513a02423cb6d7655557", - "profile": { - "height": "156", - "weight": "47", - "bust": "83", - "waist": "57", - "hip": "81" - }, - "event": [ - { - "event_id": 412, - "event_name": "聖靴学園の七不思議" - } - ] - }, - { - "alias_name": "学園の生徒", - "alias_name_display": "学園の生徒", - "id": "1315702", - "hash": "0cc148d8ef200b2482c77d0b249d682f", - "profile": { - "height": "156", - "weight": "47", - "bust": "83", - "waist": "57", - "hip": "81" - }, - "event": [ - { - "event_id": 412, - "event_name": "聖靴学園の七不思議" - } - ] - }, - { - "alias_name": "学園の生徒・H", - "alias_name_display": "学園の生徒・H", - "id": "1215801", - "hash": "2d5c37db9e10793884e2649a98d18af1", - "profile": { - "height": "156", - "weight": "47", - "bust": "83", - "waist": "57", - "hip": "81" - }, - "event": [ - { - "event_id": 412, - "event_name": "聖靴学園の七不思議" - } - ] - }, - { - "alias_name": "学園の生徒・H", - "alias_name_display": "学園の生徒・H", - "id": "1315802", - "hash": "50127e06e323eda201d204a8ec4ae63d", - "profile": { - "height": "156", - "weight": "47", - "bust": "83", - "waist": "57", - "hip": "81" - }, - "event": [ - { - "event_id": 412, - "event_name": "聖靴学園の七不思議" - } - ] - }, - { - "alias_name": "T.B.チアーズ", - "alias_name_display": "T.B.チアーズ", - "id": "1222301", - "hash": "b3ef5644d3ea4f71b6c07f4b6ced0142", - "profile": { - "height": "156", - "weight": "47", - "bust": "83", - "waist": "57", - "hip": "81" - }, - "event": [ - { - "event_id": 1502, - "event_name": "チーム対抗雨の日トークバトルショー" - } - ] - }, - { - "alias_name": "T.B.チアーズ", - "alias_name_display": "T.B.チアーズ", - "id": "1322302", - "hash": "9d0e515e9a0f87f9fbf510d5db8972a0", - "profile": { - "height": "156", - "weight": "47", - "bust": "83", - "waist": "57", - "hip": "81" - }, - "event": [ - { - "event_id": 1502, - "event_name": "チーム対抗雨の日トークバトルショー" - } - ] - }, - { - "alias_name": "純朴ネズミ", - "alias_name_display": "純朴ネズミ", - "id": "1327002", - "hash": "cb38626d995af7e002dd35bb675d9094", - "profile": { - "height": "156", - "weight": "47", - "bust": "83", - "waist": "57", - "hip": "81" - }, - "event": [ - { - "event_id": 1901, - "event_name": "童話公演 気まぐれアリスと不思議の国" - } - ] - }, - { - "alias_name": "ブルーローゼス", - "alias_name_display": "ブルーローゼス", - "id": "1229901", - "hash": "1d00a1b541167b75e92acf127b30351a", - "profile": { - "height": "156", - "weight": "47", - "bust": "83", - "waist": "57", - "hip": "81" - }, - "event": [ - { - "event_id": "031", - "event_name": "第31回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "ブルーローゼス", - "alias_name_display": "ブルーローゼス", - "id": "1329902", - "hash": "499bcaf9ec86b7f1ebda4f6aff7b7815", - "profile": { - "height": "156", - "weight": "47", - "bust": "83", - "waist": "57", - "hip": "81" - }, - "event": [ - { - "event_id": "031", - "event_name": "第31回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "ポップスクリーン", - "alias_name_display": "ポップスクリーン", - "id": "1232901", - "hash": "968454d2d888cba54601af388d0bd810", - "profile": { - "height": "156", - "weight": "47", - "bust": "83", - "waist": "57", - "hip": "81" - }, - "event": [ - { - "event_id": 729, - "event_name": "ドリームLIVEフェスティバル ゴールデンウィークSP" - } - ] - }, - { - "alias_name": "ポップスクリーン", - "alias_name_display": "ポップスクリーン", - "id": "1332902", - "hash": "5b7e98ea91e703b48b6f44353c1933f8", - "profile": { - "height": "156", - "weight": "47", - "bust": "83", - "waist": "57", - "hip": "81" - }, - "event": [ - { - "event_id": 729, - "event_name": "ドリームLIVEフェスティバル ゴールデンウィークSP" - } - ] - }, - { - "alias_name": "ピュアリーガール", - "alias_name_display": "ピュアリーガール", - "id": "1409701", - "hash": "48f052c21de4a7b3f2414314364ccc40", - "profile": { - "height": "156", - "weight": "47", - "bust": "83", - "waist": "57", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ピュアリーガール", - "alias_name_display": "ピュアリーガール", - "id": "1509702", - "hash": "ce5c146a7f092ebd7b118ec5ad736c7d", - "profile": { - "height": "156", - "weight": "47", - "bust": "83", - "waist": "57", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ピュアリー・ロワイヤル", - "alias_name_display": "ピュアリー・ロワイヤル", - "id": "1419101", - "hash": "a6f51bce5e094052da09c95b382edbc8", - "profile": { - "height": "156", - "weight": "47", - "bust": "83", - "waist": "57", - "hip": "81" - }, - "event": [ - { - "event_id": 807, - "event_name": "第7回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ピュアリー・ロワイヤル", - "alias_name_display": "ピュアリー・ロワイヤル", - "id": "1519102", - "hash": "33c1f059acc1311a5f74820b875be8ba", - "profile": { - "height": "156", - "weight": "47", - "bust": "83", - "waist": "57", - "hip": "81" - }, - "event": [ - { - "event_id": 807, - "event_name": "第7回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "イノセントアミューズ", - "alias_name_display": "イノセントアミューズ", - "id": "1428601", - "hash": "f8fecd863bd847cb1a36312f50bca69c", - "profile": { - "height": "156", - "weight": "47", - "bust": "83", - "waist": "57", - "hip": "81" - }, - "event": [ - { - "event_id": 717, - "event_name": "第17回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "イノセントアミューズ", - "alias_name_display": "イノセントアミューズ", - "id": "1528602", - "hash": "d5524d87d135dae077956ca332579a7e", - "profile": { - "height": "156", - "weight": "47", - "bust": "83", - "waist": "57", - "hip": "81" - }, - "event": [ - { - "event_id": 717, - "event_name": "第17回ドリームLIVEフェスティバル" - } - ] - } - ], - "units": [ - { - "id": "49", - "name": "ピュアリーツイン" - } - ] - }, - "10": { - "idol_id": 10, - "idol_name": "間中美里", - "idol_name_display": "間中美里", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1001001", - "hash": "729dbe34998bc4505ec54c4a91d6274c", - "profile": { - "height": "160", - "weight": "46", - "bust": "84", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1101002", - "hash": "6655d43d8c1acde40cdc1740c3096403", - "profile": { - "height": "160", - "weight": "46", - "bust": "84", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "パジャマパーティー", - "alias_name_display": "パジャマパーティー", - "id": "1204201", - "hash": "2f69d0c03220e324a6ef7c3a6f3cddd0", - "profile": { - "height": "160", - "weight": "46", - "bust": "84", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "パジャマパーティー", - "alias_name_display": "パジャマパーティー", - "id": "1304202", - "hash": "e57b36e27f8f7a01204a79a4d8556424", - "profile": { - "height": "160", - "weight": "46", - "bust": "84", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "デビリッシュゴシック", - "alias_name_display": "デビリッシュゴシック", - "id": "1212501", - "hash": "da37673cb29940724a44320a4eb5b9c7", - "profile": { - "height": "160", - "weight": "46", - "bust": "84", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "デビリッシュゴシック", - "alias_name_display": "デビリッシュゴシック", - "id": "1312502", - "hash": "43257fa67c9e153c2342a7a9b3f68570", - "profile": { - "height": "160", - "weight": "46", - "bust": "84", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "スクールガール", - "alias_name_display": "スクールガール", - "id": "1218701", - "hash": "fb5049ce7e308b41e7b7ff194b4d4c8c", - "profile": { - "height": "160", - "weight": "46", - "bust": "84", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "スクールガール", - "alias_name_display": "スクールガール", - "id": "1318702", - "hash": "5070ff91ff6e35dfd983aaa23d49c4f8", - "profile": { - "height": "160", - "weight": "46", - "bust": "84", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ブライダルセレクション", - "alias_name_display": "ブライダルセレクション", - "id": "1224101", - "hash": "9f456971110744b4582cdc908daff847", - "profile": { - "height": "160", - "weight": "46", - "bust": "84", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ブライダルセレクション", - "alias_name_display": "ブライダルセレクション", - "id": "1324102", - "hash": "789d621e2350e2918f7de22eaa885ce5", - "profile": { - "height": "160", - "weight": "46", - "bust": "84", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ロワイヤルスタイルNP", - "alias_name_display": "ロワイヤルスタイルNP", - "id": "1227401", - "hash": "239a7383564dda0b8581c60fd9e91d19", - "profile": { - "height": "160", - "weight": "46", - "bust": "84", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 817, - "event_name": "アイドルLIVEロワイヤル お花見SP" - } - ] - }, - { - "alias_name": "ロワイヤルスタイルNP", - "alias_name_display": "ロワイヤルスタイルNP", - "id": "1327402", - "hash": "a008d980b8fa78799cba20ca9ca26ba1", - "profile": { - "height": "160", - "weight": "46", - "bust": "84", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 817, - "event_name": "アイドルLIVEロワイヤル お花見SP" - } - ] - }, - { - "alias_name": "プリティー助手", - "alias_name_display": "プリティー助手", - "id": "1330202", - "hash": "5910b23711ad9fad1d4b0422bdcb6e34", - "profile": { - "height": "160", - "weight": "46", - "bust": "84", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 1904, - "event_name": "魔界公演 妖艶魔女と消えたハロウィン" - } - ] - }, - { - "alias_name": "プリマヴェーラビアッジョ", - "alias_name_display": "プリマヴェーラビアッジョ", - "id": "1406001", - "hash": "98b0ed321a6ffcbd43865235bcddfeaf", - "profile": { - "height": "160", - "weight": "46", - "bust": "84", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 503, - "event_name": "アイドルLIVEツアーinイタリア" - } - ] - }, - { - "alias_name": "プリマヴェーラビアッジョ", - "alias_name_display": "プリマヴェーラビアッジョ", - "id": "1506002", - "hash": "5a92ba70490bbfcc2beb6da09a4bfe49", - "profile": { - "height": "160", - "weight": "46", - "bust": "84", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 503, - "event_name": "アイドルLIVEツアーinイタリア" - } - ] - }, - { - "alias_name": "ホワイトピクシー", - "alias_name_display": "ホワイトピクシー", - "id": "1421501", - "hash": "4e23cc6a906719f5abd9c071f6a951f3", - "profile": { - "height": "160", - "weight": "46", - "bust": "84", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 1303, - "event_name": "第3回プロダクションマッチフェスティバルS" - } - ] - }, - { - "alias_name": "ホワイトピクシー", - "alias_name_display": "ホワイトピクシー", - "id": "1521502", - "hash": "bd77e3aa1b781fed0b474a070e939eab", - "profile": { - "height": "160", - "weight": "46", - "bust": "84", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 1303, - "event_name": "第3回プロダクションマッチフェスティバルS" - } - ] - } - ], - "units": [ - { - "id": "159", - "name": "パステル・カクテル" - }, - { - "id": "193", - "name": "イエローリリー" - }, - { - "id": "206", - "name": "セクシーボンデージ" - }, - { - "id": "207", - "name": "ムーランルージュ" - }, - { - "id": "209", - "name": "ロワイヤルスタイルNP" - } - ] - }, - "11": { - "idol_id": 11, - "idol_name": "小日向美穂", - "idol_name_display": "小日向美穂", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1001101", - "hash": "bef9093335fbcbe9e92a41d2d68a206d", - "profile": { - "height": "155", - "weight": "42", - "bust": "82", - "waist": "59", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1101102", - "hash": "d25ce47acff65352ce0a24e20ff15178", - "profile": { - "height": "155", - "weight": "42", - "bust": "82", - "waist": "58", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "聖夜", - "alias_name_display": "聖夜", - "id": "1202001", - "hash": "4907a5097709ffb270d71d19a4535cee", - "profile": { - "height": "155", - "weight": "42", - "bust": "82", - "waist": "59", - "hip": "86" - }, - "event": [ - { - "event_id": 101, - "event_name": "星降るクリスマス" - } - ] - }, - { - "alias_name": "聖夜", - "alias_name_display": "聖夜", - "id": "1302002", - "hash": "892b6b0c9aa3f3edbf2ea1b05e3c70ea", - "profile": { - "height": "155", - "weight": "42", - "bust": "82", - "waist": "58", - "hip": "86" - }, - "event": [ - { - "event_id": 101, - "event_name": "星降るクリスマス" - } - ] - }, - { - "alias_name": "戦国姫", - "alias_name_display": "戦国姫", - "id": "1500902", - "hash": "2d5bc0c5df458224606809495dc1afcd", - "profile": { - "height": "155", - "weight": "42", - "bust": "82", - "waist": "58", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "はにかみ乙女", - "alias_name_display": "はにかみ乙女", - "id": "1402301", - "hash": "4f6605f1390ff27296abf8072f06d1a7", - "profile": { - "height": "155", - "weight": "42", - "bust": "82", - "waist": "59", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "はにかみ乙女", - "alias_name_display": "はにかみ乙女", - "id": "1502302", - "hash": "d6ddb3065b0006be872bc532d29297ec", - "profile": { - "height": "155", - "weight": "42", - "bust": "82", - "waist": "59", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "聖夜のプレゼント", - "alias_name_display": "聖夜のプレゼント", - "id": "1404301", - "hash": "94d3ea2fc6d661ab277e492432568e22", - "profile": { - "height": "155", - "weight": "42", - "bust": "82", - "waist": "59", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "聖夜のプレゼント", - "alias_name_display": "聖夜のプレゼント", - "id": "1504302", - "hash": "02fb1d61edfcf0ab6ea439807a8ad914", - "profile": { - "height": "155", - "weight": "42", - "bust": "82", - "waist": "59", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "1404801", - "hash": "255795031bff51e2289b75d660d2d292", - "profile": { - "height": "155", - "weight": "42", - "bust": "82", - "waist": "59", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "1504802", - "hash": "2a0ba73e0e08299a21d28ac6f7512b1d", - "profile": { - "height": "155", - "weight": "42", - "bust": "82", - "waist": "59", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "ハロウィンうぃっち", - "alias_name_display": "ハロウィンうぃっち", - "id": "1409501", - "hash": "4666ad388b7ba759654a7299eb302356", - "profile": { - "height": "155", - "weight": "42", - "bust": "82", - "waist": "59", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "ハロウィンうぃっち", - "alias_name_display": "ハロウィンうぃっち", - "id": "1509502", - "hash": "d8acf685442132547a1c399fd9d342bc", - "profile": { - "height": "155", - "weight": "42", - "bust": "82", - "waist": "59", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "ワンダフルマジック", - "alias_name_display": "ワンダフルマジック", - "id": "1413001", - "hash": "dfc136bcf818e927b74615613332e737", - "profile": { - "height": "155", - "weight": "42", - "bust": "82", - "waist": "59", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "ワンダフルマジック", - "alias_name_display": "ワンダフルマジック", - "id": "1513002", - "hash": "136657fa4a63321ec624a82fb10e97a4", - "profile": { - "height": "155", - "weight": "42", - "bust": "82", - "waist": "59", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "3rdアニバーサリー", - "alias_name_display": "3rdアニバーサリー", - "id": "1420101", - "hash": "8a42faefd560fa7d67825f9922b0a5c9", - "profile": { - "height": "155", - "weight": "42", - "bust": "82", - "waist": "59", - "hip": "86" - }, - "event": [ - { - "event_id": 415, - "event_name": "アイドルプロデュース the 3rd Anniversary" - } - ] - }, - { - "alias_name": "3rdアニバーサリー", - "alias_name_display": "3rdアニバーサリー", - "id": "1520102", - "hash": "086525ca98f96b889095348482203f98", - "profile": { - "height": "155", - "weight": "42", - "bust": "82", - "waist": "59", - "hip": "86" - }, - "event": [ - { - "event_id": 415, - "event_name": "アイドルプロデュース the 3rd Anniversary" - } - ] - }, - { - "alias_name": "3rdアニバーサリー・S", - "alias_name_display": "3rdアニバーサリー・S", - "id": "1420201", - "hash": "7a9aeb6c91fce6a201f9249503875b6e", - "profile": { - "height": "155", - "weight": "42", - "bust": "82", - "waist": "59", - "hip": "86" - }, - "event": [ - { - "event_id": 415, - "event_name": "アイドルプロデュース the 3rd Anniversary" - } - ] - }, - { - "alias_name": "3rdアニバーサリー・S", - "alias_name_display": "3rdアニバーサリー・S", - "id": "1520202", - "hash": "aa66da9ab10d44dc6b422f12befbfbb8", - "profile": { - "height": "155", - "weight": "42", - "bust": "82", - "waist": "59", - "hip": "86" - }, - "event": [ - { - "event_id": 415, - "event_name": "アイドルプロデュース the 3rd Anniversary" - } - ] - }, - { - "alias_name": "プレシャスエモーション", - "alias_name_display": "プレシャスエモーション", - "id": "1424201", - "hash": "b6c6287c284349785258a66ddf5cc487", - "profile": { - "height": "155", - "weight": "42", - "bust": "82", - "waist": "59", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "プレシャスエモーション", - "alias_name_display": "プレシャスエモーション", - "id": "1524202", - "hash": "3166f21cb4b0a33660bc162146a7d129", - "profile": { - "height": "155", - "weight": "42", - "bust": "82", - "waist": "59", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "ホワイトニューイヤー", - "alias_name_display": "ホワイトニューイヤー", - "id": "1430401", - "hash": "658b39b8d4cebd6c30cfc5e2d7dd04c6", - "profile": { - "height": "155", - "weight": "42", - "bust": "82", - "waist": "59", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "ホワイトニューイヤー", - "alias_name_display": "ホワイトニューイヤー", - "id": "1530402", - "hash": "4b4e748d60b9a1b78aec215fb49c2227", - "profile": { - "height": "155", - "weight": "42", - "bust": "82", - "waist": "59", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "シンデレラドリーム", - "alias_name_display": "シンデレラドリーム", - "id": "1433101", - "hash": "4b123c9565147d559a1900bc29cc143e", - "profile": { - "height": "155", - "weight": "42", - "bust": "82", - "waist": "59", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "シンデレラドリーム", - "alias_name_display": "シンデレラドリーム", - "id": "1533102", - "hash": "06634f09752a3c79a39c537123cd9f95", - "profile": { - "height": "155", - "weight": "42", - "bust": "82", - "waist": "59", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "キープオンゴーイング", - "alias_name_display": "キープオンゴーイング", - "id": "1436901", - "hash": "ed3895ce9f0156ac1a737b5f52c229e3", - "profile": { - "height": "155", - "weight": "42", - "bust": "82", - "waist": "59", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "キープオンゴーイング", - "alias_name_display": "キープオンゴーイング", - "id": "1536902", - "hash": "319223e824af7aed34094925be62c94c", - "profile": { - "height": "155", - "weight": "42", - "bust": "82", - "waist": "59", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "つなげてドロップス", - "alias_name_display": "つなげてドロップス", - "id": "1440201", - "hash": "9b6f3d979994b95c68ec9a6057ff9681", - "profile": { - "height": "155", - "weight": "42", - "bust": "82", - "waist": "59", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "つなげてドロップス", - "alias_name_display": "つなげてドロップス", - "id": "1540202", - "hash": "6c7bab6998ae7b616fc1598308ba201b", - "profile": { - "height": "155", - "weight": "42", - "bust": "82", - "waist": "59", - "hip": "86" - }, - "event": [] - } - ], - "units": [ - { - "id": "43", - "name": "春色姫君" - }, - { - "id": "135", - "name": "ピンキーキュート" - }, - { - "id": "138", - "name": "ピンクチェックスクール" - }, - { - "id": "192", - "name": "Masque:Rade" - }, - { - "id": "195", - "name": "C5" - }, - { - "id": "212", - "name": "CINDERELLA GIRLS" - } - ] - }, - "12": { - "idol_id": 12, - "idol_name": "緒方智絵里", - "idol_name_display": "緒方智絵里", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1001201", - "hash": "e0ac4f8b1faf39c137d2bef65559b5f5", - "profile": { - "height": "153", - "weight": "42", - "bust": "79", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1101202", - "hash": "fa69e322ed10a34ef9b35030d5250e4c", - "profile": { - "height": "153", - "weight": "41", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "バレンタイン", - "alias_name_display": "バレンタイン", - "id": "1202901", - "hash": "4c51173ad96349b44354060477ee821d", - "profile": { - "height": "153", - "weight": "41", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 103, - "event_name": "バレンタインパーティー" - } - ] - }, - { - "alias_name": "バレンタイン", - "alias_name_display": "バレンタイン", - "id": "1302902", - "hash": "a1efe353a69781c9b79c3755f2f39ed4", - "profile": { - "height": "153", - "weight": "41", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 103, - "event_name": "バレンタインパーティー" - } - ] - }, - { - "alias_name": "パジャマパーティー", - "alias_name_display": "パジャマパーティー", - "id": "1204101", - "hash": "76d8828c447915a4dc60fff5907a58a7", - "profile": { - "height": "153", - "weight": "41", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "パジャマパーティー", - "alias_name_display": "パジャマパーティー", - "id": "1304102", - "hash": "f6a64a87bff96b4a2e0f53edb6779af6", - "profile": { - "height": "153", - "weight": "41", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "京町乙女", - "alias_name_display": "京町乙女", - "id": "1205901", - "hash": "1c4243ff6b135d3a6ad27e1fa4bb3a2c", - "profile": { - "height": "153", - "weight": "41", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 402, - "event_name": "アイドルプロデュース京町編" - } - ] - }, - { - "alias_name": "京町乙女", - "alias_name_display": "京町乙女", - "id": "1305902", - "hash": "7b98a6c56f9eeb63d49689d3afa516e8", - "profile": { - "height": "153", - "weight": "41", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 402, - "event_name": "アイドルプロデュース京町編" - } - ] - }, - { - "alias_name": "バレンタインエンジェル", - "alias_name_display": "バレンタインエンジェル", - "id": "1405001", - "hash": "41da088536def062d420ebad260e37c2", - "profile": { - "height": "153", - "weight": "41", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "バレンタインエンジェル", - "alias_name_display": "バレンタインエンジェル", - "id": "1505002", - "hash": "56e0f5e7c766e4719720b824f51e5a55", - "profile": { - "height": "153", - "weight": "41", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "浴衣の華姫", - "alias_name_display": "浴衣の華姫", - "id": "1407601", - "hash": "5440e9e9c4cfbc57188213c0aff1639e", - "profile": { - "height": "153", - "weight": "41", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "浴衣の華姫", - "alias_name_display": "浴衣の華姫", - "id": "1507602", - "hash": "56b9e10a10d166583011ef60a58a9c82", - "profile": { - "height": "153", - "weight": "41", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "1410301", - "hash": "e0bc2a1ae04cb1a3e0045ece2eb6935f", - "profile": { - "height": "153", - "weight": "41", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "1510302", - "hash": "da5e0614a354a5c21a1afc915a91ba97", - "profile": { - "height": "153", - "weight": "41", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "冬のメロディー", - "alias_name_display": "冬のメロディー", - "id": "1410701", - "hash": "80d79214f75af36736b7bd2e55a76cc2", - "profile": { - "height": "153", - "weight": "41", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "冬のメロディー", - "alias_name_display": "冬のメロディー", - "id": "1510702", - "hash": "f3a4a141eb2c9ec791d984c1655ed24d", - "profile": { - "height": "153", - "weight": "41", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "クローバーエンジェル", - "alias_name_display": "クローバーエンジェル", - "id": "1413301", - "hash": "f9c770b61a35768542faa7ef959070e6", - "profile": { - "height": "153", - "weight": "41", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 706, - "event_name": "第6回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "クローバーエンジェル", - "alias_name_display": "クローバーエンジェル", - "id": "1513302", - "hash": "265938c96a3a1d74ccbc5cc7577fa546", - "profile": { - "height": "153", - "weight": "41", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 706, - "event_name": "第6回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ふわふわうさぎ", - "alias_name_display": "ふわふわうさぎ", - "id": "1417901", - "hash": "cdf131bfe5c184dbc3decfc85773a8fa", - "profile": { - "height": "153", - "weight": "41", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ふわふわうさぎ", - "alias_name_display": "ふわふわうさぎ", - "id": "1517902", - "hash": "5bc43718ce56eb04476f0e60a08eca4f", - "profile": { - "height": "153", - "weight": "41", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ブライダルエンジェル", - "alias_name_display": "ブライダルエンジェル", - "id": "1424801", - "hash": "fbf203c786aef175dc76a2aa8227a5d9", - "profile": { - "height": "153", - "weight": "41", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ブライダルエンジェル", - "alias_name_display": "ブライダルエンジェル", - "id": "1524802", - "hash": "fc04f9389656bde489e65ae8d36e6a2e", - "profile": { - "height": "153", - "weight": "41", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "キャンディアイランド", - "alias_name_display": "キャンディアイランド", - "id": "1526002", - "hash": "93dfb2c011a794668c1653f097a4b464", - "profile": { - "height": "153", - "weight": "41", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "はじめての太鼓", - "alias_name_display": "はじめての太鼓", - "id": "1528002", - "hash": "61f90183b1e6c59133ec8c0ae4d3f2cd", - "profile": { - "height": "153", - "weight": "41", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "G4U!", - "alias_name_display": "G4U!", - "id": "1530902", - "hash": "f32aa981899a3e4f8367b6346e59e8c8", - "profile": { - "height": "153", - "weight": "41", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ハピネスチューン", - "alias_name_display": "ハピネスチューン", - "id": "1431501", - "hash": "7b2d41d513acc6f434bc29bacca28529", - "profile": { - "height": "153", - "weight": "41", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ハピネスチューン", - "alias_name_display": "ハピネスチューン", - "id": "1531502", - "hash": "7881ef1cb6cf776ed071272ca3dbf5e7", - "profile": { - "height": "153", - "weight": "41", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "スクールデイズ", - "alias_name_display": "スクールデイズ", - "id": "1435801", - "hash": "277f54caf12509c27e2a04db25fb43c1", - "profile": { - "height": "153", - "weight": "41", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "スクールデイズ", - "alias_name_display": "スクールデイズ", - "id": "1535802", - "hash": "89d14a4ef29eabee5f88b05e4c133846", - "profile": { - "height": "153", - "weight": "41", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "シンデレラドリーム", - "alias_name_display": "シンデレラドリーム", - "id": "1439201", - "hash": "986579406645926e00ee0cf4857fb25d", - "profile": { - "height": "153", - "weight": "41", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "シンデレラドリーム", - "alias_name_display": "シンデレラドリーム", - "id": "1539202", - "hash": "aab77d68d6c72c73efda675edbd387a8", - "profile": { - "height": "153", - "weight": "41", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [] - } - ], - "units": [ - { - "id": "91", - "name": "京町乙女" - }, - { - "id": "94", - "name": "シャイニングゴッドチェリー" - }, - { - "id": "135", - "name": "ピンキーキュート" - }, - { - "id": "137", - "name": "CANDY ISLAND" - }, - { - "id": "139", - "name": "397cherry" - }, - { - "id": "173", - "name": "ピンクドットバルーン" - }, - { - "id": "192", - "name": "Masque:Rade" - }, - { - "id": "194", - "name": "サクヤヒメ" - }, - { - "id": "213", - "name": "CINDERELLA PROJECT" - } - ] - }, - "13": { - "idol_id": 13, - "idol_name": "五十嵐響子", - "idol_name_display": "五十嵐響子", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1001301", - "hash": "fb3b173c49703071b4dbdd5ed424640c", - "profile": { - "height": "154", - "weight": "43", - "bust": "81", - "waist": "58", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1101302", - "hash": "9e15861e6115bffdcce4d7115522857b", - "profile": { - "height": "154", - "weight": "43", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ジューンブライド", - "alias_name_display": "ジューンブライド", - "id": "1002101", - "hash": "fc3e9297dd790e8cf196c3aad44ac280", - "profile": { - "height": "154", - "weight": "43", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 105, - "event_name": "きらめくブライダルショー" - } - ] - }, - { - "alias_name": "ジューンブライド", - "alias_name_display": "ジューンブライド", - "id": "1102102", - "hash": "9f990b2be46d9594ff3fb547b07974de", - "profile": { - "height": "154", - "weight": "43", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 105, - "event_name": "きらめくブライダルショー" - } - ] - }, - { - "alias_name": "マーメイドパラダイス", - "alias_name_display": "マーメイドパラダイス", - "id": "1205201", - "hash": "2e581f1e6d6efc823c7c50f727df3515", - "profile": { - "height": "154", - "weight": "43", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "マーメイドパラダイス", - "alias_name_display": "マーメイドパラダイス", - "id": "1305202", - "hash": "d5667b3d3207d1cb3d7655fa13b969fd", - "profile": { - "height": "154", - "weight": "43", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ラブリーデイズ", - "alias_name_display": "ラブリーデイズ", - "id": "1221701", - "hash": "5f46af2a7cfc01c41a697f621c12a8fb", - "profile": { - "height": "154", - "weight": "43", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ラブリーデイズ", - "alias_name_display": "ラブリーデイズ", - "id": "1321702", - "hash": "a49399e42faba8f22952e1fbb066fdce", - "profile": { - "height": "154", - "weight": "43", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "タラン・サリュ", - "alias_name_display": "タラン・サリュ", - "id": "1229601", - "hash": "804fbc1bb11314fb878793df312736c6", - "profile": { - "height": "154", - "weight": "43", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "タラン・サリュ", - "alias_name_display": "タラン・サリュ", - "id": "1329602", - "hash": "49050a377ed2b834ec13a980739f1430", - "profile": { - "height": "154", - "weight": "43", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "スイートクリスマス", - "alias_name_display": "スイートクリスマス", - "id": "1404001", - "hash": "93ac99834f1bd8a4900266cee4fe87a3", - "profile": { - "height": "154", - "weight": "43", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "スイートクリスマス", - "alias_name_display": "スイートクリスマス", - "id": "1504002", - "hash": "3060e7a4d2ecc75ca60ec384e40eaa6f", - "profile": { - "height": "154", - "weight": "43", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "カラフルレインボー", - "alias_name_display": "カラフルレインボー", - "id": "1407001", - "hash": "aa88b658b8901cf3bb0af315c145248e", - "profile": { - "height": "154", - "weight": "43", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 407, - "event_name": "アイドルプロデュース 鎌倉あじさい巡り" - } - ] - }, - { - "alias_name": "カラフルレインボー", - "alias_name_display": "カラフルレインボー", - "id": "1507002", - "hash": "17159c03d3380ca6670329df4722b3e4", - "profile": { - "height": "154", - "weight": "43", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 407, - "event_name": "アイドルプロデュース 鎌倉あじさい巡り" - } - ] - }, - { - "alias_name": "ハートフルサービス", - "alias_name_display": "ハートフルサービス", - "id": "1411101", - "hash": "82977bbfbadf655998e449ebaa3f6b35", - "profile": { - "height": "154", - "weight": "43", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ハートフルサービス", - "alias_name_display": "ハートフルサービス", - "id": "1511102", - "hash": "973864636042aaedda0574601c8f2915", - "profile": { - "height": "154", - "weight": "43", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "学園の秘密", - "alias_name_display": "学園の秘密", - "id": "1414201", - "hash": "486dd74101ffb18ea9e915e62a56e5a4", - "profile": { - "height": "154", - "weight": "43", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 412, - "event_name": "聖靴学園の七不思議" - } - ] - }, - { - "alias_name": "学園の秘密", - "alias_name_display": "学園の秘密", - "id": "1514202", - "hash": "e1e37fcbbe67e706cb0bb336f9d972c5", - "profile": { - "height": "154", - "weight": "43", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 412, - "event_name": "聖靴学園の七不思議" - } - ] - }, - { - "alias_name": "学園の秘密・S", - "alias_name_display": "学園の秘密・S", - "id": "1414301", - "hash": "4aa2c8c878931a167d1a1d87a70442e4", - "profile": { - "height": "154", - "weight": "43", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 412, - "event_name": "聖靴学園の七不思議" - } - ] - }, - { - "alias_name": "学園の秘密・S", - "alias_name_display": "学園の秘密・S", - "id": "1514302", - "hash": "04fc73953bac772e2030c32bd86e66a2", - "profile": { - "height": "154", - "weight": "43", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 412, - "event_name": "聖靴学園の七不思議" - } - ] - }, - { - "alias_name": "ホームメイドハッピー", - "alias_name_display": "ホームメイドハッピー", - "id": "1417801", - "hash": "da958ba98f8b7ff456eabc29c82648a5", - "profile": { - "height": "154", - "weight": "43", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 708, - "event_name": "第8回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ホームメイドハッピー", - "alias_name_display": "ホームメイドハッピー", - "id": "1517802", - "hash": "2b63366b029c03f89a8d9d08ed27a091", - "profile": { - "height": "154", - "weight": "43", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 708, - "event_name": "第8回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ウィンターホリデーリゾート", - "alias_name_display": "ウィンターホリデーリゾート", - "id": "1421701", - "hash": "eea0ece9a3e1f4abc11b3c0314a1c3df", - "profile": { - "height": "154", - "weight": "43", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ウィンターホリデーリゾート", - "alias_name_display": "ウィンターホリデーリゾート", - "id": "1521702", - "hash": "a21cdf41a5909ce5afd832ee49a95cb5", - "profile": { - "height": "154", - "weight": "43", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "サマーメモリー", - "alias_name_display": "サマーメモリー", - "id": "1426101", - "hash": "fe4522316252c03ecf070a4ce8006420", - "profile": { - "height": "154", - "weight": "43", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 1304, - "event_name": "第4回プロダクションマッチフェスティバルS" - } - ] - }, - { - "alias_name": "サマーメモリー", - "alias_name_display": "サマーメモリー", - "id": "1526102", - "hash": "a9e1539ebecc3f6a7bd92247238517cb", - "profile": { - "height": "154", - "weight": "43", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 1304, - "event_name": "第4回プロダクションマッチフェスティバルS" - } - ] - }, - { - "alias_name": "ハートキャプチャー", - "alias_name_display": "ハートキャプチャー", - "id": "1431301", - "hash": "182d6a7355ec611af924f02f27c3b5cf", - "profile": { - "height": "154", - "weight": "43", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ハートキャプチャー", - "alias_name_display": "ハートキャプチャー", - "id": "1531302", - "hash": "198beec37ee1f0cf59423f1f5e674ce4", - "profile": { - "height": "154", - "weight": "43", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "1431701", - "hash": "42207079abfb5d0aae516e2774f5683c", - "profile": { - "height": "154", - "weight": "43", - "bust": "81", - "waist": "58", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "1531702", - "hash": "deb87e553eab1a1d04036d340c632d0c", - "profile": { - "height": "154", - "weight": "43", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ハートオブユニティ", - "alias_name_display": "ハートオブユニティ", - "id": "1437101", - "hash": "ef73d6963acf01c99f2b7e304c1f603c", - "profile": { - "height": "154", - "weight": "43", - "bust": "81", - "waist": "58", - "hip": "80" - }, - "event": [ - { - "event_id": 1905, - "event_name": "ディアリースターナイト ~聖夜のキセキ~" - } - ] - }, - { - "alias_name": "ハートオブユニティ", - "alias_name_display": "ハートオブユニティ", - "id": "1537102", - "hash": "0bacaa88e323666ac8790a16a2ac46ee", - "profile": { - "height": "154", - "weight": "43", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 1905, - "event_name": "ディアリースターナイト ~聖夜のキセキ~" - } - ] - } - ], - "units": [ - { - "id": "40", - "name": "ハートハーモナイズ" - }, - { - "id": "138", - "name": "ピンクチェックスクール" - }, - { - "id": "182", - "name": "マーメイドパラダイス" - }, - { - "id": "191", - "name": "Love Yell" - }, - { - "id": "196", - "name": "la Roseraie" - } - ] - }, - "14": { - "idol_id": 14, - "idol_name": "柳瀬美由紀", - "idol_name_display": "柳瀬美由紀", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1001401", - "hash": "64b53f490afd702be31de96b5ae28e36", - "profile": { - "height": "144", - "weight": "33", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1101402", - "hash": "1b1970e02f5855b63072777bcbb52293", - "profile": { - "height": "144", - "weight": "33", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "テーマパーク", - "alias_name_display": "テーマパーク", - "id": "1203901", - "hash": "9561157dddcfefb3edfcf2965e025edc", - "profile": { - "height": "144", - "weight": "33", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [ - { - "event_id": 203, - "event_name": "アイドルサバイバルinテーマパーク" - } - ] - }, - { - "alias_name": "テーマパーク", - "alias_name_display": "テーマパーク", - "id": "1303902", - "hash": "b76617a1099b216004254eeeaee57846", - "profile": { - "height": "144", - "weight": "33", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [ - { - "event_id": 203, - "event_name": "アイドルサバイバルinテーマパーク" - } - ] - }, - { - "alias_name": "プリティ☆ウィッチ", - "alias_name_display": "プリティ☆ウィッチ", - "id": "1208701", - "hash": "6a7eca54ae5c7fa44e5a6af92f3ae135", - "profile": { - "height": "144", - "weight": "33", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "プリティ☆ウィッチ", - "alias_name_display": "プリティ☆ウィッチ", - "id": "1308702", - "hash": "727ec3b14e0bede0acfde0c345314419", - "profile": { - "height": "144", - "weight": "33", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "ひな祭り", - "alias_name_display": "ひな祭り", - "id": "1214901", - "hash": "d85836d7aa213eeaa97637ced5f4c905", - "profile": { - "height": "144", - "weight": "33", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [ - { - "event_id": 510, - "event_name": "ひな祭りLIVEツアーカーニバル" - } - ] - }, - { - "alias_name": "ひな祭り", - "alias_name_display": "ひな祭り", - "id": "1314902", - "hash": "3f10e5b72b8ec50b7d0661ed47518e05", - "profile": { - "height": "144", - "weight": "33", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [ - { - "event_id": 510, - "event_name": "ひな祭りLIVEツアーカーニバル" - } - ] - }, - { - "alias_name": "カニ☆ピース", - "alias_name_display": "カニ☆ピース", - "id": "1218901", - "hash": "bc8c093931062396a2f92c167729fe61", - "profile": { - "height": "144", - "weight": "33", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [ - { - "event_id": 1302, - "event_name": "第2回プロダクションマッチフェスティバルS" - } - ] - }, - { - "alias_name": "カニ☆ピース", - "alias_name_display": "カニ☆ピース", - "id": "1318902", - "hash": "8cde5ff1e02d37e807792a6423c9537d", - "profile": { - "height": "144", - "weight": "33", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [ - { - "event_id": 1302, - "event_name": "第2回プロダクションマッチフェスティバルS" - } - ] - }, - { - "alias_name": "マーチングバンド", - "alias_name_display": "マーチングバンド", - "id": "1223601", - "hash": "81dacc4c39b0dc0b7e01c2b8e7e04887", - "profile": { - "height": "144", - "weight": "33", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "マーチングバンド", - "alias_name_display": "マーチングバンド", - "id": "1323602", - "hash": "a2b97d98b0f9ce2deec5a0e7cd0b8bc6", - "profile": { - "height": "144", - "weight": "33", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "ビターミルキー", - "alias_name_display": "ビターミルキー", - "id": "1228501", - "hash": "9df9b80b17154f73174f72929415acdd", - "profile": { - "height": "144", - "weight": "33", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "ビターミルキー", - "alias_name_display": "ビターミルキー", - "id": "1328502", - "hash": "326c2f9e2f203f305f9436112b522034", - "profile": { - "height": "144", - "weight": "33", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "ロワイヤルスタイルND", - "alias_name_display": "ロワイヤルスタイルND", - "id": "1230801", - "hash": "8ec6cfce021cf00090bec4fca426fe41", - "profile": { - "height": "144", - "weight": "33", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [ - { - "event_id": 820, - "event_name": "第20回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ロワイヤルスタイルND", - "alias_name_display": "ロワイヤルスタイルND", - "id": "1330802", - "hash": "a6c7fd38a0f375a571248af4be5f7302", - "profile": { - "height": "144", - "weight": "33", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [ - { - "event_id": 820, - "event_name": "第20回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "キラキラリコメンド", - "alias_name_display": "キラキラリコメンド", - "id": "1233401", - "hash": "a56a124013e06a0399fd43f5612bae90", - "profile": { - "height": "144", - "weight": "33", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "キラキラリコメンド", - "alias_name_display": "キラキラリコメンド", - "id": "1333402", - "hash": "face73d591e33ea649dfb00040334ed8", - "profile": { - "height": "144", - "weight": "33", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "夏色ガール", - "alias_name_display": "夏色ガール", - "id": "1408401", - "hash": "6a9e56a14c98a683a788a243c107c5be", - "profile": { - "height": "144", - "weight": "33", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [ - { - "event_id": 702, - "event_name": "水着DEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "夏色ガール", - "alias_name_display": "夏色ガール", - "id": "1508402", - "hash": "58176ddb838cc778720e4e3a388815ef", - "profile": { - "height": "144", - "weight": "33", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [ - { - "event_id": 702, - "event_name": "水着DEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "かわいいコックさん", - "alias_name_display": "かわいいコックさん", - "id": "1424301", - "hash": "ae0a204566199c5837bebf8fdd6173e7", - "profile": { - "height": "144", - "weight": "33", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [ - { - "event_id": 519, - "event_name": "美食公演 女神に捧ぐ御馳走" - } - ] - }, - { - "alias_name": "かわいいコックさん", - "alias_name_display": "かわいいコックさん", - "id": "1524302", - "hash": "12c2c842a331db791b909c0003a105ba", - "profile": { - "height": "144", - "weight": "33", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [ - { - "event_id": 519, - "event_name": "美食公演 女神に捧ぐ御馳走" - } - ] - } - ], - "units": [ - { - "id": "173", - "name": "ピンクドットバルーン" - }, - { - "id": "178", - "name": "からぱれ" - }, - { - "id": "210", - "name": "ロワイヤルスタイルND" - }, - { - "id": "214", - "name": "L.M.B.G" - } - ] - }, - "15": { - "idol_id": 15, - "idol_name": "櫻井桃華", - "idol_name_display": "櫻井桃華", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1001501", - "hash": "1cefdef7df7c14eca803910b67e61dfc", - "profile": { - "height": "145", - "weight": "39", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 101, - "event_name": "星降るクリスマス" - } - ] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1101502", - "hash": "fe2f3ecbf682014be99d3f94512a48bd", - "profile": { - "height": "145", - "weight": "39", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 101, - "event_name": "星降るクリスマス" - } - ] - }, - { - "alias_name": "メルヘン&ゴシック", - "alias_name_display": "メルヘン&ゴシック", - "id": "1208201", - "hash": "2b676cf6e1bd042f04a6e8367ac47fdd", - "profile": { - "height": "145", - "weight": "39", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "メルヘン&ゴシック", - "alias_name_display": "メルヘン&ゴシック", - "id": "1308202", - "hash": "21d48ab7d98d5800c7a8db34c89842cd", - "profile": { - "height": "145", - "weight": "39", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "迎春神楽", - "alias_name_display": "迎春神楽", - "id": "1231401", - "hash": "eb1d6cdcf74fa0b5467bb4479fbcb819", - "profile": { - "height": "145", - "weight": "39", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "迎春神楽", - "alias_name_display": "迎春神楽", - "id": "1331402", - "hash": "68e199a73566867818bddc1cea19666e", - "profile": { - "height": "145", - "weight": "39", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "薔薇色お姫様", - "alias_name_display": "薔薇色お姫様", - "id": "1401101", - "hash": "9e47b6134fcc68ce03f1e646032535f6", - "profile": { - "height": "145", - "weight": "39", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": "001", - "event_name": "プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "薔薇色お姫様", - "alias_name_display": "薔薇色お姫様", - "id": "1501102", - "hash": "188588430665ce152a5da1c7bef37766", - "profile": { - "height": "145", - "weight": "39", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": "001", - "event_name": "プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "絢爛紅葉", - "alias_name_display": "絢爛紅葉", - "id": "1403101", - "hash": "0f6309b3a564f81155784e21c8c92bfe", - "profile": { - "height": "145", - "weight": "39", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 402, - "event_name": "アイドルプロデュース京町編" - } - ] - }, - { - "alias_name": "絢爛紅葉", - "alias_name_display": "絢爛紅葉", - "id": "1503102", - "hash": "eebd6e6b152f50a6c3bc18fabb54a0a0", - "profile": { - "height": "145", - "weight": "39", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 402, - "event_name": "アイドルプロデュース京町編" - } - ] - }, - { - "alias_name": "薔薇色花嫁", - "alias_name_display": "薔薇色花嫁", - "id": "1407101", - "hash": "fe8cd968bd4ee6c8beaa758e650eee5d", - "profile": { - "height": "145", - "weight": "39", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "薔薇色花嫁", - "alias_name_display": "薔薇色花嫁", - "id": "1507102", - "hash": "d31209b053eb49962fdea278ece7e26b", - "profile": { - "height": "145", - "weight": "39", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "ロゼ・マドモアゼル", - "alias_name_display": "ロゼ・マドモアゼル", - "id": "1414801", - "hash": "b7284bd572e970f7140cef7484d47e4e", - "profile": { - "height": "145", - "weight": "39", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "ロゼ・マドモアゼル", - "alias_name_display": "ロゼ・マドモアゼル", - "id": "1514802", - "hash": "fd5714748c23dee73f43176c8bd71f29", - "profile": { - "height": "145", - "weight": "39", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "バレンタインスウィート", - "alias_name_display": "バレンタインスウィート", - "id": "1421901", - "hash": "1db672f026cfc1e8a82037549477dccf", - "profile": { - "height": "145", - "weight": "39", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "バレンタインスウィート", - "alias_name_display": "バレンタインスウィート", - "id": "1521902", - "hash": "81fc62c6d3dc7b6dd9ae05f2c9df4d31", - "profile": { - "height": "145", - "weight": "39", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "オープンハート", - "alias_name_display": "オープンハート", - "id": "1427101", - "hash": "287d93a6b5dcebe0774cc8dead51c237", - "profile": { - "height": "145", - "weight": "39", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 715, - "event_name": "第15回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "オープンハート", - "alias_name_display": "オープンハート", - "id": "1527102", - "hash": "45e1c5533ba0e0a103511f58ee17f850", - "profile": { - "height": "145", - "weight": "39", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 715, - "event_name": "第15回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "1429201", - "hash": "77155375be053699373b3e7271072d5b", - "profile": { - "height": "145", - "weight": "39", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "1529202", - "hash": "ffc736f0dd52509c5bc4724e6829d693", - "profile": { - "height": "145", - "weight": "39", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "4thアニバーサリー", - "alias_name_display": "4thアニバーサリー", - "id": "1429601", - "hash": "7ec7a2ad5161e9618958f951fd4752e4", - "profile": { - "height": "145", - "weight": "39", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 1704, - "event_name": "アイドルプロデュース the 4th Anniversary" - } - ] - }, - { - "alias_name": "4thアニバーサリー", - "alias_name_display": "4thアニバーサリー", - "id": "1529602", - "hash": "940e4561030b7cb18e6f6f1d612618b7", - "profile": { - "height": "145", - "weight": "39", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 1704, - "event_name": "アイドルプロデュース the 4th Anniversary" - } - ] - }, - { - "alias_name": "4thアニバーサリー・S", - "alias_name_display": "4thアニバーサリー・S", - "id": "1429701", - "hash": "555df2682110f80cc57e2a745e812661", - "profile": { - "height": "145", - "weight": "39", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 1704, - "event_name": "アイドルプロデュース the 4th Anniversary" - } - ] - }, - { - "alias_name": "4thアニバーサリー・S", - "alias_name_display": "4thアニバーサリー・S", - "id": "1529702", - "hash": "ee70a56e781ee96f461da009805f49a8", - "profile": { - "height": "145", - "weight": "39", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 1704, - "event_name": "アイドルプロデュース the 4th Anniversary" - } - ] - }, - { - "alias_name": "サマーマドモアゼル", - "alias_name_display": "サマーマドモアゼル", - "id": "1433801", - "hash": "f78ca58df1e12f7fdbed9f567a9dfdc0", - "profile": { - "height": "145", - "weight": "39", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "サマーマドモアゼル", - "alias_name_display": "サマーマドモアゼル", - "id": "1533802", - "hash": "d32d219a3c0ad6dc84734d1fc3f9f94e", - "profile": { - "height": "145", - "weight": "39", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [] - } - ], - "units": [ - { - "id": "4", - "name": "イカバラプリンセス" - }, - { - "id": "61", - "name": "ももべりー" - }, - { - "id": "104", - "name": "ももぺあべりー" - }, - { - "id": "105", - "name": "リトルチェリーブロッサム" - }, - { - "id": "165", - "name": "メルヘンゴシック" - }, - { - "id": "171", - "name": "Black/White-Roses" - }, - { - "id": "196", - "name": "la Roseraie" - }, - { - "id": "214", - "name": "L.M.B.G" - } - ] - }, - "16": { - "idol_id": 16, - "idol_name": "江上椿", - "idol_name_display": "江上椿", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1001601", - "hash": "1b52629f3463de549e9e776fb9be9c73", - "profile": { - "height": "161", - "weight": "46", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 102, - "event_name": "アイドルおもちつき大会" - } - ] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1101602", - "hash": "209c74c920b04b6aa1c88f2ae810c0ab", - "profile": { - "height": "161", - "weight": "46", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 102, - "event_name": "アイドルおもちつき大会" - } - ] - }, - { - "alias_name": "新春コレクション", - "alias_name_display": "新春コレクション", - "id": "1207101", - "hash": "ae6475b68a873a19cbf2008ac66d2c12", - "profile": { - "height": "161", - "weight": "46", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "新春コレクション", - "alias_name_display": "新春コレクション", - "id": "1307102", - "hash": "f172e8d5a8a50a8cecf29d9e939b015d", - "profile": { - "height": "161", - "weight": "46", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ハッピーメモリアル", - "alias_name_display": "ハッピーメモリアル", - "id": "1211501", - "hash": "40aa9ec43d952fd28e1cce41237b5622", - "profile": { - "height": "161", - "weight": "46", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ハッピーメモリアル", - "alias_name_display": "ハッピーメモリアル", - "id": "1311502", - "hash": "664c40149a8f2c88ea211c5e7ccc5857", - "profile": { - "height": "161", - "weight": "46", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "秋色温泉", - "alias_name_display": "秋色温泉", - "id": "1219101", - "hash": "5a01b67ab301b1c982c5fc6c2bb3bb01", - "profile": { - "height": "161", - "weight": "46", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "秋色温泉", - "alias_name_display": "秋色温泉", - "id": "1319102", - "hash": "b0bf971f90f59c9cfc79b6a166fe6aed", - "profile": { - "height": "161", - "weight": "46", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "シャイニーカーマイン", - "alias_name_display": "シャイニーカーマイン", - "id": "1323802", - "hash": "5d97a337e5c70a470e14a590a104ebed", - "profile": { - "height": "161", - "weight": "46", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 716, - "event_name": "第16回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "リレイトストーリー", - "alias_name_display": "リレイトストーリー", - "id": "1231701", - "hash": "0627d85acc8c4c074c16f85e2e638446", - "profile": { - "height": "161", - "weight": "46", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": "033", - "event_name": "第33回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "リレイトストーリー", - "alias_name_display": "リレイトストーリー", - "id": "1331702", - "hash": "3875503a08289671c8354eed6119eff3", - "profile": { - "height": "161", - "weight": "46", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": "033", - "event_name": "第33回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "ゆかしい花椿", - "alias_name_display": "ゆかしい花椿", - "id": "1412601", - "hash": "b8f040ade84d43170ba0ef6b2cde9e5a", - "profile": { - "height": "161", - "weight": "46", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ゆかしい花椿", - "alias_name_display": "ゆかしい花椿", - "id": "1512602", - "hash": "92b7a6ffc4084d14ed6af4dc45b41c92", - "profile": { - "height": "161", - "weight": "46", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "カメリア・ロワイヤル", - "alias_name_display": "カメリア・ロワイヤル", - "id": "1424601", - "hash": "f42b82c8b55c8379eea9ebd9f6aea00d", - "profile": { - "height": "161", - "weight": "46", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 812, - "event_name": "第12回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "カメリア・ロワイヤル", - "alias_name_display": "カメリア・ロワイヤル", - "id": "1524602", - "hash": "457370553d93e1da4d39ad3c2b742c27", - "profile": { - "height": "161", - "weight": "46", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 812, - "event_name": "第12回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "夏のゆらぎ", - "alias_name_display": "夏のゆらぎ", - "id": "1433701", - "hash": "f4d7801c6c3496ae294ad932267b26e6", - "profile": { - "height": "161", - "weight": "46", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 722, - "event_name": "夏祭りDEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "夏のゆらぎ", - "alias_name_display": "夏のゆらぎ", - "id": "1533702", - "hash": "beba5121254d967e0be4895fbe2fac3c", - "profile": { - "height": "161", - "weight": "46", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 722, - "event_name": "夏祭りDEドリームLIVEフェスティバル" - } - ] - } - ], - "units": [ - { - "id": "8", - "name": "越後小町" - }, - { - "id": "154", - "name": "秋色温泉" - }, - { - "id": "167", - "name": "ロマンティックツアーズ" - } - ] - }, - "17": { - "idol_id": 17, - "idol_name": "長富蓮実", - "idol_name_display": "長富蓮実", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1001701", - "hash": "4d2e995945e069c1c219d6c6b45edfce", - "profile": { - "height": "161", - "weight": "45", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1101702", - "hash": "2443422535f988e8e6a19e358b7232df", - "profile": { - "height": "161", - "weight": "45", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "湯けむり温泉", - "alias_name_display": "湯けむり温泉", - "id": "1206201", - "hash": "5f9fdc0febde1ca6beb90cfdbb90f565", - "profile": { - "height": "161", - "weight": "45", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "湯けむり温泉", - "alias_name_display": "湯けむり温泉", - "id": "1306202", - "hash": "8253386575ab1a9138e7d522620e42a4", - "profile": { - "height": "161", - "weight": "45", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "シャイニービーチ", - "alias_name_display": "シャイニービーチ", - "id": "1210601", - "hash": "6ab4b420570dd2342cb8807d5adcf179", - "profile": { - "height": "161", - "weight": "45", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "シャイニービーチ", - "alias_name_display": "シャイニービーチ", - "id": "1310602", - "hash": "7cf254cf32563bd2bba7b9b621085ca7", - "profile": { - "height": "161", - "weight": "45", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ロワイヤルスタイルNP", - "alias_name_display": "ロワイヤルスタイルNP", - "id": "1218801", - "hash": "81fcd084769a29d996613f500af1f511", - "profile": { - "height": "161", - "weight": "45", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 807, - "event_name": "第7回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ロワイヤルスタイルNP", - "alias_name_display": "ロワイヤルスタイルNP", - "id": "1318802", - "hash": "955aa295eb3a76e87605c67cc2042b9e", - "profile": { - "height": "161", - "weight": "45", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 807, - "event_name": "第7回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ウォーミングフラワー", - "alias_name_display": "ウォーミングフラワー", - "id": "1226301", - "hash": "6455518732d768b065bbd827ec98b400", - "profile": { - "height": "161", - "weight": "45", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": "026", - "event_name": "第26回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "ウォーミングフラワー", - "alias_name_display": "ウォーミングフラワー", - "id": "1326302", - "hash": "2c885ccae440c5c059ee8098121b620c", - "profile": { - "height": "161", - "weight": "45", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": "026", - "event_name": "第26回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "フェリーチェ・チョコラータ", - "alias_name_display": "フェリーチェ・チョコラータ", - "id": "1231901", - "hash": "9820c330da30a1f41d14f220a384af70", - "profile": { - "height": "161", - "weight": "45", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "フェリーチェ・チョコラータ", - "alias_name_display": "フェリーチェ・チョコラータ", - "id": "1331902", - "hash": "49f0f052f1dae481fa53872899b098ed", - "profile": { - "height": "161", - "weight": "45", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "フィーチャースイートピー", - "alias_name_display": "フィーチャースイートピー", - "id": "1411901", - "hash": "23e7989e812ce2c789242acd8b1d8472", - "profile": { - "height": "161", - "weight": "45", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 803, - "event_name": "第3回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "フィーチャースイートピー", - "alias_name_display": "フィーチャースイートピー", - "id": "1511902", - "hash": "129dff6ad85473683b876ba9171588bc", - "profile": { - "height": "161", - "weight": "45", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 803, - "event_name": "第3回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "素肌のチアー", - "alias_name_display": "素肌のチアー", - "id": "1426701", - "hash": "56070f7414e85b8412e83ccc0c78184a", - "profile": { - "height": "161", - "weight": "45", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 1503, - "event_name": "チーム対抗 夏だ!プールだ!トークバトルショー" - } - ] - }, - { - "alias_name": "素肌のチアー", - "alias_name_display": "素肌のチアー", - "id": "1526702", - "hash": "906f4fcae92953c83c522c36d5ff5fe9", - "profile": { - "height": "161", - "weight": "45", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 1503, - "event_name": "チーム対抗 夏だ!プールだ!トークバトルショー" - } - ] - }, - { - "alias_name": "コール・ミー・メイビー", - "alias_name_display": "コール・ミー・メイビー", - "id": "1433201", - "hash": "416e3e705b08bbf389a6f2f18f5c69d4", - "profile": { - "height": "161", - "weight": "45", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "コール・ミー・メイビー", - "alias_name_display": "コール・ミー・メイビー", - "id": "1533202", - "hash": "cd8477548a634299e065cc223b70eb74", - "profile": { - "height": "161", - "weight": "45", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [] - } - ], - "units": [ - { - "id": "178", - "name": "からぱれ" - }, - { - "id": "209", - "name": "ロワイヤルスタイルNP" - } - ] - }, - "18": { - "idol_id": 18, - "idol_name": "横山千佳", - "idol_name_display": "横山千佳", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1001901", - "hash": "33e0fe9d3980f8fcc0146acf93b1527c", - "profile": { - "height": "127", - "weight": "31", - "bust": "60", - "waist": "55", - "hip": "65" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1101902", - "hash": "a837b5db80a3b8a16ca290a20d18251d", - "profile": { - "height": "127", - "weight": "31", - "bust": "60", - "waist": "55", - "hip": "65" - }, - "event": [] - }, - { - "alias_name": "マーメイドパラダイス", - "alias_name_display": "マーメイドパラダイス", - "id": "1205101", - "hash": "0f9eefd5d70b48f20f8816530e6d7d73", - "profile": { - "height": "127", - "weight": "31", - "bust": "60", - "waist": "55", - "hip": "65" - }, - "event": [] - }, - { - "alias_name": "マーメイドパラダイス", - "alias_name_display": "マーメイドパラダイス", - "id": "1305102", - "hash": "d5afe53e9eb4629197f42e744720cfa8", - "profile": { - "height": "127", - "weight": "31", - "bust": "60", - "waist": "55", - "hip": "65" - }, - "event": [] - }, - { - "alias_name": "ラブリー魔女っ娘", - "alias_name_display": "ラブリー魔女っ娘", - "id": "1206101", - "hash": "0a55494fafe73df2035f17c70ed79af8", - "profile": { - "height": "127", - "weight": "31", - "bust": "60", - "waist": "55", - "hip": "65" - }, - "event": [] - }, - { - "alias_name": "ラブリー魔女っ娘", - "alias_name_display": "ラブリー魔女っ娘", - "id": "1306102", - "hash": "19e6e1f54b5b9fccc005269962b858d0", - "profile": { - "height": "127", - "weight": "31", - "bust": "60", - "waist": "55", - "hip": "65" - }, - "event": [] - }, - { - "alias_name": "マーチングバンド", - "alias_name_display": "マーチングバンド", - "id": "1211901", - "hash": "66e4c9f29760c0b9c779dae9cec7555b", - "profile": { - "height": "127", - "weight": "31", - "bust": "60", - "waist": "55", - "hip": "65" - }, - "event": [] - }, - { - "alias_name": "マーチングバンド", - "alias_name_display": "マーチングバンド", - "id": "1311902", - "hash": "a7e07a4479fdecf1f54fef8a23bf6bca", - "profile": { - "height": "127", - "weight": "31", - "bust": "60", - "waist": "55", - "hip": "65" - }, - "event": [] - }, - { - "alias_name": "T.B.チアーズ", - "alias_name_display": "T.B.チアーズ", - "id": "1225801", - "hash": "7df797b6cd664971b45bd3087277b078", - "profile": { - "height": "127", - "weight": "31", - "bust": "60", - "waist": "55", - "hip": "65" - }, - "event": [ - { - "event_id": 1505, - "event_name": "チーム対抗トークバトルショー ウィンターSP" - } - ] - }, - { - "alias_name": "T.B.チアーズ", - "alias_name_display": "T.B.チアーズ", - "id": "1325802", - "hash": "784b0d08e971844537fafc49e94341f8", - "profile": { - "height": "127", - "weight": "31", - "bust": "60", - "waist": "55", - "hip": "65" - }, - "event": [ - { - "event_id": 1505, - "event_name": "チーム対抗トークバトルショー ウィンターSP" - } - ] - }, - { - "alias_name": "ホーリーコーラス", - "alias_name_display": "ホーリーコーラス", - "id": "1231001", - "hash": "78c1db8e016621883e2b0dc239e8ebc0", - "profile": { - "height": "127", - "weight": "31", - "bust": "60", - "waist": "55", - "hip": "65" - }, - "event": [] - }, - { - "alias_name": "ホーリーコーラス", - "alias_name_display": "ホーリーコーラス", - "id": "1331002", - "hash": "911de1e40e95c58e35d00eff5fb783f0", - "profile": { - "height": "127", - "weight": "31", - "bust": "60", - "waist": "55", - "hip": "65" - }, - "event": [] - }, - { - "alias_name": "小さなおひな様", - "alias_name_display": "小さなおひな様", - "id": "1405701", - "hash": "d3ae6c8c118597de7131a46a7a98e3b8", - "profile": { - "height": "127", - "weight": "31", - "bust": "60", - "waist": "55", - "hip": "65" - }, - "event": [ - { - "event_id": 209, - "event_name": "アイドルサバイバルひな祭り2013" - } - ] - }, - { - "alias_name": "小さなおひな様", - "alias_name_display": "小さなおひな様", - "id": "1505702", - "hash": "e194a3fabb57c40d442a1922eb36d09a", - "profile": { - "height": "127", - "weight": "31", - "bust": "60", - "waist": "55", - "hip": "65" - }, - "event": [ - { - "event_id": 209, - "event_name": "アイドルサバイバルひな祭り2013" - } - ] - }, - { - "alias_name": "マジカル☆プリティーハート", - "alias_name_display": "マジカル☆プリティーハート", - "id": "1414501", - "hash": "8932419ffa9d909cd881aa9093b1e487", - "profile": { - "height": "127", - "weight": "31", - "bust": "60", - "waist": "55", - "hip": "65" - }, - "event": [ - { - "event_id": 1201, - "event_name": "目指せ魔女っ娘 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "マジカル☆プリティーハート", - "alias_name_display": "マジカル☆プリティーハート", - "id": "1514502", - "hash": "1a5c40592d5a168e785ff6ddb49ba6c3", - "profile": { - "height": "127", - "weight": "31", - "bust": "60", - "waist": "55", - "hip": "65" - }, - "event": [ - { - "event_id": 1201, - "event_name": "目指せ魔女っ娘 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "朱きツワモノ", - "alias_name_display": "朱きツワモノ", - "id": "1422401", - "hash": "c7e31c5643afd8ae07eca3b1ab6373a7", - "profile": { - "height": "127", - "weight": "31", - "bust": "60", - "waist": "55", - "hip": "65" - }, - "event": [ - { - "event_id": 517, - "event_name": "戦国公演 風来剣客伝" - } - ] - }, - { - "alias_name": "朱きツワモノ", - "alias_name_display": "朱きツワモノ", - "id": "1522402", - "hash": "6d85b413db065fb9ecbcd80f348d53e6", - "profile": { - "height": "127", - "weight": "31", - "bust": "60", - "waist": "55", - "hip": "65" - }, - "event": [ - { - "event_id": 517, - "event_name": "戦国公演 風来剣客伝" - } - ] - }, - { - "alias_name": "雨のまほう", - "alias_name_display": "雨のまほう", - "id": "1433501", - "hash": "f7024ca8bc11f488de049b9316cdae6b", - "profile": { - "height": "127", - "weight": "31", - "bust": "60", - "waist": "55", - "hip": "65" - }, - "event": [ - { - "event_id": 818, - "event_name": "アイドルLIVEロワイヤル 雨の日SP" - } - ] - }, - { - "alias_name": "雨のまほう", - "alias_name_display": "雨のまほう", - "id": "1533502", - "hash": "d02199911575371c301fa3f8d1f937fe", - "profile": { - "height": "127", - "weight": "31", - "bust": "60", - "waist": "55", - "hip": "65" - }, - "event": [ - { - "event_id": 818, - "event_name": "アイドルLIVEロワイヤル 雨の日SP" - } - ] - } - ], - "units": [ - { - "id": "64", - "name": "リトルヒーロー" - }, - { - "id": "164", - "name": "マジカルテット" - }, - { - "id": "182", - "name": "マーメイドパラダイス" - }, - { - "id": "214", - "name": "L.M.B.G" - } - ] - }, - "19": { - "idol_id": 19, - "idol_name": "関裕美", - "idol_name_display": "関裕美", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1002001", - "hash": "a62ddac0bbdf7507192e5ed73698a4be", - "profile": { - "height": "155", - "weight": "43", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1102002", - "hash": "c2f5b454d115252ca5b31db8454abd31", - "profile": { - "height": "155", - "weight": "43", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ハロウィンヴァンパイア", - "alias_name_display": "ハロウィンヴァンパイア", - "id": "1206001", - "hash": "dc62bf6ee089d872b8e4701d8b0f536e", - "profile": { - "height": "155", - "weight": "43", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 207, - "event_name": "アイドルサバイバル ハロウィン編" - } - ] - }, - { - "alias_name": "ハロウィンヴァンパイア", - "alias_name_display": "ハロウィンヴァンパイア", - "id": "1306002", - "hash": "d4ebad4f68b4f6c1d3e14aedd0e1fb70", - "profile": { - "height": "155", - "weight": "43", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 207, - "event_name": "アイドルサバイバル ハロウィン編" - } - ] - }, - { - "alias_name": "ファンシースパイリーア", - "alias_name_display": "ファンシースパイリーア", - "id": "1214201", - "hash": "b98d47d489c846fcbb6b94a8632231ee", - "profile": { - "height": "155", - "weight": "43", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ファンシースパイリーア", - "alias_name_display": "ファンシースパイリーア", - "id": "1314202", - "hash": "c2796e3d650b904810108ee398953baf", - "profile": { - "height": "155", - "weight": "43", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "夏休み", - "alias_name_display": "夏休み", - "id": "1217201", - "hash": "fe7a70caed6fe7087a172ca4d1545f7c", - "profile": { - "height": "155", - "weight": "43", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 413, - "event_name": "みんなのなつやすみ" - } - ] - }, - { - "alias_name": "夏休み", - "alias_name_display": "夏休み", - "id": "1317202", - "hash": "d85152d27e941ab28409e1ce28515aa0", - "profile": { - "height": "155", - "weight": "43", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 413, - "event_name": "みんなのなつやすみ" - } - ] - }, - { - "alias_name": "笑顔の夏休み", - "alias_name_display": "笑顔の夏休み", - "id": "1217301", - "hash": "8555c01eca24269514623464e978ebd7", - "profile": { - "height": "155", - "weight": "43", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 413, - "event_name": "みんなのなつやすみ" - } - ] - }, - { - "alias_name": "笑顔の夏休み", - "alias_name_display": "笑顔の夏休み", - "id": "1317302", - "hash": "cd6dbe35df150439d6641aefa0eae7a9", - "profile": { - "height": "155", - "weight": "43", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 413, - "event_name": "みんなのなつやすみ" - } - ] - }, - { - "alias_name": "ラブリーメイド", - "alias_name_display": "ラブリーメイド", - "id": "1223401", - "hash": "37214f0d7ec9a461beda96125f9071cf", - "profile": { - "height": "155", - "weight": "43", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ラブリーメイド", - "alias_name_display": "ラブリーメイド", - "id": "1323402", - "hash": "5ca334dd65bac13411c63caa54f0227f", - "profile": { - "height": "155", - "weight": "43", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "スパニッシュダンサー", - "alias_name_display": "スパニッシュダンサー", - "id": "1406301", - "hash": "eaaecb4e719c48f55b564a275f4eb705", - "profile": { - "height": "155", - "weight": "43", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 504, - "event_name": "アイドルLIVEツアーinスペイン" - } - ] - }, - { - "alias_name": "スパニッシュダンサー", - "alias_name_display": "スパニッシュダンサー", - "id": "1506302", - "hash": "49ece644aa45d424edba7b9c1fdef6c5", - "profile": { - "height": "155", - "weight": "43", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 504, - "event_name": "アイドルLIVEツアーinスペイン" - } - ] - }, - { - "alias_name": "フォーチュンバニー", - "alias_name_display": "フォーチュンバニー", - "id": "1408801", - "hash": "8254b5bd71ea17452086dba763e4844f", - "profile": { - "height": "155", - "weight": "43", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "フォーチュンバニー", - "alias_name_display": "フォーチュンバニー", - "id": "1508802", - "hash": "e30940ae9dcda36d0d5b06baec45646d", - "profile": { - "height": "155", - "weight": "43", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "イノセントブライド", - "alias_name_display": "イノセントブライド", - "id": "1419001", - "hash": "312b2c5020efdf60d43ba04e2830e58c", - "profile": { - "height": "155", - "weight": "43", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "イノセントブライド", - "alias_name_display": "イノセントブライド", - "id": "1519002", - "hash": "ae708b4006b536e7c436f68dc046479b", - "profile": { - "height": "155", - "weight": "43", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ハピネスプリズム", - "alias_name_display": "ハピネスプリズム", - "id": "1423601", - "hash": "3656160c6a0de5035d0ce51801b17929", - "profile": { - "height": "155", - "weight": "43", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": "021", - "event_name": "第21回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "ハピネスプリズム", - "alias_name_display": "ハピネスプリズム", - "id": "1523602", - "hash": "5301aa1b9c5b7f0acdad5d280323b120", - "profile": { - "height": "155", - "weight": "43", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": "021", - "event_name": "第21回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "手のひらの宝物", - "alias_name_display": "手のひらの宝物", - "id": "1430601", - "hash": "839f27df591c223de347c63503e44191", - "profile": { - "height": "155", - "weight": "43", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "手のひらの宝物", - "alias_name_display": "手のひらの宝物", - "id": "1530602", - "hash": "18e29d6f25535be40fa370323e9e899e", - "profile": { - "height": "155", - "weight": "43", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "笑顔のガーディアン", - "alias_name_display": "笑顔のガーディアン", - "id": "1435201", - "hash": "66b1b474a97ac4e1b17d8522254223ce", - "profile": { - "height": "155", - "weight": "43", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "笑顔のガーディアン", - "alias_name_display": "笑顔のガーディアン", - "id": "1535202", - "hash": "c34d484a61ea8f7be3cfc5ede01b11e3", - "profile": { - "height": "155", - "weight": "43", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ショコラドゥエタメール", - "alias_name_display": "ショコラドゥエタメール", - "id": "1438301", - "hash": "7a16a01f4a544cba2168a69382f3de40", - "profile": { - "height": "155", - "weight": "43", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 1906, - "event_name": "ディアリースターハート ~ラブキュンバレンタイン~" - } - ] - }, - { - "alias_name": "ショコラドゥエタメール", - "alias_name_display": "ショコラドゥエタメール", - "id": "1538302", - "hash": "6f26798de79180c3bc5aad8a14b31b34", - "profile": { - "height": "155", - "weight": "43", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 1906, - "event_name": "ディアリースターハート ~ラブキュンバレンタイン~" - } - ] - } - ], - "units": [ - { - "id": "101", - "name": "ハロウィンヴァンパイア" - }, - { - "id": "129", - "name": "ワンステップス" - }, - { - "id": "130", - "name": "GIRLS BE" - }, - { - "id": "172", - "name": "GIRLS BE NEXT STEP" - } - ] - }, - "20": { - "idol_id": 20, - "idol_name": "太田優", - "idol_name_display": "太田優", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1002301", - "hash": "54ae8e0c640c6a7b14cb72b9395ea0fd", - "profile": { - "height": "159", - "weight": "45", - "bust": "89", - "waist": "57", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1102302", - "hash": "753e3e1d55fec03ac0355d390ecab888", - "profile": { - "height": "159", - "weight": "45", - "bust": "89", - "waist": "57", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "スプリングスイートピー", - "alias_name_display": "スプリングスイートピー", - "id": "1208401", - "hash": "f4d6767aeb7dd02ac99f8e6f35f3fb17", - "profile": { - "height": "159", - "weight": "45", - "bust": "89", - "waist": "57", - "hip": "87" - }, - "event": [ - { - "event_id": 209, - "event_name": "アイドルサバイバルひな祭り2013" - } - ] - }, - { - "alias_name": "スプリングスイートピー", - "alias_name_display": "スプリングスイートピー", - "id": "1308402", - "hash": "c68e3249a192693c4f6b0f09eee97624", - "profile": { - "height": "159", - "weight": "45", - "bust": "89", - "waist": "57", - "hip": "87" - }, - "event": [ - { - "event_id": 209, - "event_name": "アイドルサバイバルひな祭り2013" - } - ] - }, - { - "alias_name": "バニーガール", - "alias_name_display": "バニーガール", - "id": "1211701", - "hash": "5b400c51e77b1d23d6aa5b163c72356a", - "profile": { - "height": "159", - "weight": "45", - "bust": "89", - "waist": "57", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "バニーガール", - "alias_name_display": "バニーガール", - "id": "1311702", - "hash": "4c47dddab9272c5836546473bce0bc56", - "profile": { - "height": "159", - "weight": "45", - "bust": "89", - "waist": "57", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "バレンタインデビル", - "alias_name_display": "バレンタインデビル", - "id": "1220301", - "hash": "aac128fdb81a96c932708fd67bde9f9e", - "profile": { - "height": "159", - "weight": "45", - "bust": "89", - "waist": "57", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "バレンタインデビル", - "alias_name_display": "バレンタインデビル", - "id": "1320302", - "hash": "4e34fc26b435f80d3bbba9f8bd0d7045", - "profile": { - "height": "159", - "weight": "45", - "bust": "89", - "waist": "57", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "アップトゥデイト", - "alias_name_display": "アップトゥデイト", - "id": "1224801", - "hash": "3301ddcd3460f7d6e8525580ec595ec5", - "profile": { - "height": "159", - "weight": "45", - "bust": "89", - "waist": "57", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "アップトゥデイト", - "alias_name_display": "アップトゥデイト", - "id": "1324802", - "hash": "f9a1ac1703ec5ddf5a2a55a5c94191c3", - "profile": { - "height": "159", - "weight": "45", - "bust": "89", - "waist": "57", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "レディダウト", - "alias_name_display": "レディダウト", - "id": "1328802", - "hash": "7e62b71f86c28b8b0d275eb1e3d2c6ac", - "profile": { - "height": "159", - "weight": "45", - "bust": "89", - "waist": "57", - "hip": "87" - }, - "event": [ - { - "event_id": 1902, - "event_name": "御伽公演 おてんば姫とまぢヤバな魔法のランプ" - } - ] - }, - { - "alias_name": "プリティーニューイヤー", - "alias_name_display": "プリティーニューイヤー", - "id": "1411501", - "hash": "da6a8f7bf3ca40bab81dd29416beeb29", - "profile": { - "height": "159", - "weight": "45", - "bust": "89", - "waist": "57", - "hip": "87" - }, - "event": [ - { - "event_id": 509, - "event_name": "新春LIVEツアーカーニバル" - } - ] - }, - { - "alias_name": "プリティーニューイヤー", - "alias_name_display": "プリティーニューイヤー", - "id": "1511502", - "hash": "4d9a24cc8b10be07a95dfaf48f9f3320", - "profile": { - "height": "159", - "weight": "45", - "bust": "89", - "waist": "57", - "hip": "87" - }, - "event": [ - { - "event_id": 509, - "event_name": "新春LIVEツアーカーニバル" - } - ] - }, - { - "alias_name": "わんダフルチアー", - "alias_name_display": "わんダフルチアー", - "id": "1414401", - "hash": "bb0cd321a47256a75dbb32b021e9f0a4", - "profile": { - "height": "159", - "weight": "45", - "bust": "89", - "waist": "57", - "hip": "87" - }, - "event": [ - { - "event_id": 1102, - "event_name": "第2回プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "わんダフルチアー", - "alias_name_display": "わんダフルチアー", - "id": "1514402", - "hash": "6f373139364ab88fb2546aa671e71ac2", - "profile": { - "height": "159", - "weight": "45", - "bust": "89", - "waist": "57", - "hip": "87" - }, - "event": [ - { - "event_id": 1102, - "event_name": "第2回プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "ラブリーマイベイビー", - "alias_name_display": "ラブリーマイベイビー", - "id": "1437301", - "hash": "7bb355ad1b34e66736bcf328c92dfa6b", - "profile": { - "height": "159", - "weight": "45", - "bust": "89", - "waist": "57", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "ラブリーマイベイビー", - "alias_name_display": "ラブリーマイベイビー", - "id": "1537302", - "hash": "2763a2afd43cf1d265c968e8a9711692", - "profile": { - "height": "159", - "weight": "45", - "bust": "89", - "waist": "57", - "hip": "87" - }, - "event": [] - } - ], - "units": [ - { - "id": "110", - "name": "アップトゥデイト" - } - ] - }, - "21": { - "idol_id": 21, - "idol_name": "棟方愛海", - "idol_name_display": "棟方愛海", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1002401", - "hash": "668df5f627110fb638fed98ab6f0efdb", - "profile": { - "height": "151", - "weight": "41", - "bust": "73", - "waist": "56", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1102402", - "hash": "dffba4af62e6c806706ae927d6aa3a63", - "profile": { - "height": "151", - "weight": "41", - "bust": "73", - "waist": "56", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "デビリッシュゴシック", - "alias_name_display": "デビリッシュゴシック", - "id": "1209301", - "hash": "73728f37f018acb8ac26efd204e3ebd1", - "profile": { - "height": "151", - "weight": "41", - "bust": "73", - "waist": "56", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "デビリッシュゴシック", - "alias_name_display": "デビリッシュゴシック", - "id": "1309302", - "hash": "e3a357bb24fc6171859cc7d79ff8ebb1", - "profile": { - "height": "151", - "weight": "41", - "bust": "73", - "waist": "56", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "ハワイアンスタイル", - "alias_name_display": "ハワイアンスタイル", - "id": "1210901", - "hash": "6705b0f6fa31815de3a3a9a24186c172", - "profile": { - "height": "151", - "weight": "41", - "bust": "73", - "waist": "56", - "hip": "75" - }, - "event": [ - { - "event_id": 506, - "event_name": "アイドルLIVEツアーinハワイ" - } - ] - }, - { - "alias_name": "ハワイアンスタイル", - "alias_name_display": "ハワイアンスタイル", - "id": "1310902", - "hash": "21ae6f0acb669b55fe9470adf2d7781d", - "profile": { - "height": "151", - "weight": "41", - "bust": "73", - "waist": "56", - "hip": "75" - }, - "event": [ - { - "event_id": 506, - "event_name": "アイドルLIVEツアーinハワイ" - } - ] - }, - { - "alias_name": "ワーキング・おさわり", - "alias_name_display": "ワーキング・おさわり", - "id": "1215901", - "hash": "c5859dbe3018a61d6edafe6d4adff04d", - "profile": { - "height": "151", - "weight": "41", - "bust": "73", - "waist": "56", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "ワーキング・おさわり", - "alias_name_display": "ワーキング・おさわり", - "id": "1315902", - "hash": "428e1ebab8c7e5ebec444ddd9c702208", - "profile": { - "height": "151", - "weight": "41", - "bust": "73", - "waist": "56", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "イケナイオオカミ", - "alias_name_display": "イケナイオオカミ", - "id": "1221201", - "hash": "6e82ddd934172c1ddfd40da18b541538", - "profile": { - "height": "151", - "weight": "41", - "bust": "73", - "waist": "56", - "hip": "75" - }, - "event": [ - { - "event_id": 518, - "event_name": "御伽公演 ふれあい狼と小さな赤ずきんちゃん" - } - ] - }, - { - "alias_name": "イケナイオオカミ", - "alias_name_display": "イケナイオオカミ", - "id": "1321202", - "hash": "24c92596b0ec15c3144510f5a0e1a931", - "profile": { - "height": "151", - "weight": "41", - "bust": "73", - "waist": "56", - "hip": "75" - }, - "event": [ - { - "event_id": 518, - "event_name": "御伽公演 ふれあい狼と小さな赤ずきんちゃん" - } - ] - }, - { - "alias_name": "あなたのエンジェル", - "alias_name_display": "あなたのエンジェル", - "id": "1223101", - "hash": "ac6cb9ba823f5c86e410d6b1982c5a91", - "profile": { - "height": "151", - "weight": "41", - "bust": "73", - "waist": "56", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "あなたのエンジェル", - "alias_name_display": "あなたのエンジェル", - "id": "1323102", - "hash": "0657fcbc084dbe53351150271defb5a4", - "profile": { - "height": "151", - "weight": "41", - "bust": "73", - "waist": "56", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "サンタI.C", - "alias_name_display": "サンタI.C", - "id": "1325102", - "hash": "4278a96f12fa7a381b660192cd958f3f", - "profile": { - "height": "151", - "weight": "41", - "bust": "73", - "waist": "56", - "hip": "75" - }, - "event": [ - { - "event_id": 1208, - "event_name": "目指せサンタクロース アイドルチャレンジ" - } - ] - }, - { - "alias_name": "わきわきハンター", - "alias_name_display": "わきわきハンター", - "id": "1410401", - "hash": "d3ee0211663368dab63f46d1a466ff68", - "profile": { - "height": "151", - "weight": "41", - "bust": "73", - "waist": "56", - "hip": "75" - }, - "event": [ - { - "event_id": 704, - "event_name": "第4回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "わきわきハンター", - "alias_name_display": "わきわきハンター", - "id": "1510402", - "hash": "74f8f1da4f14be396b8e97914b4394d5", - "profile": { - "height": "151", - "weight": "41", - "bust": "73", - "waist": "56", - "hip": "75" - }, - "event": [ - { - "event_id": 704, - "event_name": "第4回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "愛の手", - "alias_name_display": "愛の手", - "id": "1419801", - "hash": "45a7902898278b46aeb15740845d9471", - "profile": { - "height": "151", - "weight": "41", - "bust": "73", - "waist": "56", - "hip": "75" - }, - "event": [ - { - "event_id": "019", - "event_name": "第19回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "愛の手", - "alias_name_display": "愛の手", - "id": "1519802", - "hash": "69fe9277fb8bad6c807c0fcb58ec7f4c", - "profile": { - "height": "151", - "weight": "41", - "bust": "73", - "waist": "56", - "hip": "75" - }, - "event": [ - { - "event_id": "019", - "event_name": "第19回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "わきわきクリスマス", - "alias_name_display": "わきわきクリスマス", - "id": "1429901", - "hash": "23924fe986972d26ed597b7116b81d70", - "profile": { - "height": "151", - "weight": "41", - "bust": "73", - "waist": "56", - "hip": "75" - }, - "event": [ - { - "event_id": 1208, - "event_name": "目指せサンタクロース アイドルチャレンジ" - } - ] - }, - { - "alias_name": "わきわきクリスマス", - "alias_name_display": "わきわきクリスマス", - "id": "1529902", - "hash": "8428e141a0f19853238dd295ba9c8122", - "profile": { - "height": "151", - "weight": "41", - "bust": "73", - "waist": "56", - "hip": "75" - }, - "event": [ - { - "event_id": 1208, - "event_name": "目指せサンタクロース アイドルチャレンジ" - } - ] - }, - { - "alias_name": "わきわきクリスマス・S", - "alias_name_display": "わきわきクリスマス・S", - "id": "1430001", - "hash": "297cab43151aa6dacc6873fb79fe7c25", - "profile": { - "height": "151", - "weight": "41", - "bust": "73", - "waist": "56", - "hip": "75" - }, - "event": [ - { - "event_id": 1208, - "event_name": "目指せサンタクロース アイドルチャレンジ" - } - ] - }, - { - "alias_name": "わきわきクリスマス・S", - "alias_name_display": "わきわきクリスマス・S", - "id": "1530002", - "hash": "e46d59be9f46daa789cb0fac05660407", - "profile": { - "height": "151", - "weight": "41", - "bust": "73", - "waist": "56", - "hip": "75" - }, - "event": [ - { - "event_id": 1208, - "event_name": "目指せサンタクロース アイドルチャレンジ" - } - ] - }, - { - "alias_name": "やわらかな夢", - "alias_name_display": "やわらかな夢", - "id": "1432601", - "hash": "3a0dc8a0ffb83f0e7d739b9b38dacd2b", - "profile": { - "height": "151", - "weight": "41", - "bust": "73", - "waist": "56", - "hip": "75" - }, - "event": [ - { - "event_id": 721, - "event_name": "第21回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "やわらかな夢", - "alias_name_display": "やわらかな夢", - "id": "1532602", - "hash": "00a24b06c95da5f54b0b000c9eed1c7c", - "profile": { - "height": "151", - "weight": "41", - "bust": "73", - "waist": "56", - "hip": "75" - }, - "event": [ - { - "event_id": 721, - "event_name": "第21回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "おさわりチアー", - "alias_name_display": "おさわりチアー", - "id": "1436401", - "hash": "7eed576c2e8dbd09f8240ec36f8bd6d7", - "profile": { - "height": "151", - "weight": "41", - "bust": "73", - "waist": "56", - "hip": "75" - }, - "event": [ - { - "event_id": 1509, - "event_name": "第9回チーム対抗トークバトルショー" - } - ] - }, - { - "alias_name": "おさわりチアー", - "alias_name_display": "おさわりチアー", - "id": "1536402", - "hash": "6266ac4f14b93b3859953ec5f6e94cb4", - "profile": { - "height": "151", - "weight": "41", - "bust": "73", - "waist": "56", - "hip": "75" - }, - "event": [ - { - "event_id": 1509, - "event_name": "第9回チーム対抗トークバトルショー" - } - ] - } - ], - "units": [ - { - "id": "44", - "name": "ハワイアンツイン" - }, - { - "id": "48", - "name": "日菜子と愛海の妄想ワールド" - }, - { - "id": "128", - "name": "ラビュー☆アイス☆マウンテン" - }, - { - "id": "157", - "name": "デビリッシュゴシック" - } - ] - }, - "22": { - "idol_id": 22, - "idol_name": "藤本里奈", - "idol_name_display": "藤本里奈", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1002501", - "hash": "d2e5c0c476cfc344fce7fe03c8c9a4fb", - "profile": { - "height": "154", - "weight": "41", - "bust": "77", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1102502", - "hash": "c896423b38ed849a1ef973c5c7f369de", - "profile": { - "height": "154", - "weight": "41", - "bust": "77", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ラヴリーギャル", - "alias_name_display": "ラヴリーギャル", - "id": "1209701", - "hash": "673b753d25d3f34cc74f4e66ff70a5ef", - "profile": { - "height": "154", - "weight": "41", - "bust": "77", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": "010", - "event_name": "第10回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "ラヴリーギャル", - "alias_name_display": "ラヴリーギャル", - "id": "1309702", - "hash": "ab24ce09e254e16c0644ea40dc1382f9", - "profile": { - "height": "154", - "weight": "41", - "bust": "77", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": "010", - "event_name": "第10回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "ビーチパラダイス", - "alias_name_display": "ビーチパラダイス", - "id": "1211101", - "hash": "1099c469420259169802a9a27d79ff58", - "profile": { - "height": "154", - "weight": "41", - "bust": "77", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ビーチパラダイス", - "alias_name_display": "ビーチパラダイス", - "id": "1311102", - "hash": "550797c200a26c62d2a2d27fbfff83fa", - "profile": { - "height": "154", - "weight": "41", - "bust": "77", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "クリスマスプレゼント", - "alias_name_display": "クリスマスプレゼント", - "id": "1219301", - "hash": "25d34e8c4e8e6db5267c90e5d66ff8c8", - "profile": { - "height": "154", - "weight": "41", - "bust": "77", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "クリスマスプレゼント", - "alias_name_display": "クリスマスプレゼント", - "id": "1319302", - "hash": "f23d11db5595c69dfba4380215f437b3", - "profile": { - "height": "154", - "weight": "41", - "bust": "77", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "夏フェス☆ギャル", - "alias_name_display": "夏フェス☆ギャル", - "id": "1222801", - "hash": "ef7004b6df4b22ebdd71f04a4f820b83", - "profile": { - "height": "154", - "weight": "41", - "bust": "77", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "夏フェス☆ギャル", - "alias_name_display": "夏フェス☆ギャル", - "id": "1322802", - "hash": "c89cbf65ba71e62e7dcde1ad925c3c28", - "profile": { - "height": "154", - "weight": "41", - "bust": "77", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ちーぷり☆テイスト", - "alias_name_display": "ちーぷり☆テイスト", - "id": "1231601", - "hash": "f0b132cb5b9924dd4b152fb7be41e15d", - "profile": { - "height": "154", - "weight": "41", - "bust": "77", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ちーぷり☆テイスト", - "alias_name_display": "ちーぷり☆テイスト", - "id": "1331602", - "hash": "5ae401df521201e18964635c8e00ce27", - "profile": { - "height": "154", - "weight": "41", - "bust": "77", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ラヴリー☆ハート", - "alias_name_display": "ラヴリー☆ハート", - "id": "1411701", - "hash": "2319725cfcde4156036a3da376d0e304", - "profile": { - "height": "154", - "weight": "41", - "bust": "77", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 803, - "event_name": "第3回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ラヴリー☆ハート", - "alias_name_display": "ラヴリー☆ハート", - "id": "1511702", - "hash": "a98cd69ad87bc017b0b7a5ab1719bbb7", - "profile": { - "height": "154", - "weight": "41", - "bust": "77", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 803, - "event_name": "第3回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ラヴリー☆ライダー", - "alias_name_display": "ラヴリー☆ライダー", - "id": "1415101", - "hash": "560a5de9054af39652fb3b48a1c22bc1", - "profile": { - "height": "154", - "weight": "41", - "bust": "77", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ラヴリー☆ライダー", - "alias_name_display": "ラヴリー☆ライダー", - "id": "1515102", - "hash": "7fd49e81f5b5d24cc99f84316ae4b149", - "profile": { - "height": "154", - "weight": "41", - "bust": "77", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ラヴリー・ロワイヤル", - "alias_name_display": "ラヴリー・ロワイヤル", - "id": "1423101", - "hash": "807e430846171e03e0490d4519e44b8c", - "profile": { - "height": "154", - "weight": "41", - "bust": "77", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 811, - "event_name": "第11回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ラヴリー・ロワイヤル", - "alias_name_display": "ラヴリー・ロワイヤル", - "id": "1523102", - "hash": "f4988f022dff8ff4dedfec2e679c0407", - "profile": { - "height": "154", - "weight": "41", - "bust": "77", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 811, - "event_name": "第11回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "4thアニバーサリー", - "alias_name_display": "4thアニバーサリー", - "id": "1429301", - "hash": "1f1da81fa810a213dc4f0ed50aed6119", - "profile": { - "height": "154", - "weight": "41", - "bust": "77", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 1704, - "event_name": "アイドルプロデュース the 4th Anniversary" - } - ] - }, - { - "alias_name": "4thアニバーサリー", - "alias_name_display": "4thアニバーサリー", - "id": "1529302", - "hash": "9e83c80d3589ef5b8f21452a1d5288cd", - "profile": { - "height": "154", - "weight": "41", - "bust": "77", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 1704, - "event_name": "アイドルプロデュース the 4th Anniversary" - } - ] - }, - { - "alias_name": "4thアニバーサリー・S", - "alias_name_display": "4thアニバーサリー・S", - "id": "1429401", - "hash": "ab7bfa84426b3b43094252eb65d41ab8", - "profile": { - "height": "154", - "weight": "41", - "bust": "77", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 1704, - "event_name": "アイドルプロデュース the 4th Anniversary" - } - ] - }, - { - "alias_name": "4thアニバーサリー・S", - "alias_name_display": "4thアニバーサリー・S", - "id": "1529402", - "hash": "e4a4576044b3998542c3e03cba2b5ce0", - "profile": { - "height": "154", - "weight": "41", - "bust": "77", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 1704, - "event_name": "アイドルプロデュース the 4th Anniversary" - } - ] - }, - { - "alias_name": "砂漠のプリンセス", - "alias_name_display": "砂漠のプリンセス", - "id": "1433901", - "hash": "2fbab4bbe8033bf12ae330ad3013e932", - "profile": { - "height": "154", - "weight": "41", - "bust": "77", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 1902, - "event_name": "御伽公演 おてんば姫とまぢヤバな魔法のランプ" - } - ] - }, - { - "alias_name": "砂漠のプリンセス", - "alias_name_display": "砂漠のプリンセス", - "id": "1533902", - "hash": "746f35295f4f371ec9b71219fb1224ce", - "profile": { - "height": "154", - "weight": "41", - "bust": "77", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 1902, - "event_name": "御伽公演 おてんば姫とまぢヤバな魔法のランプ" - } - ] - } - ], - "units": [ - { - "id": "39", - "name": "ノーティギャルズ" - }, - { - "id": "83", - "name": "Shock'in Pink!" - }, - { - "id": "112", - "name": "ギャルズパーティー" - }, - { - "id": "113", - "name": "セクシーギャルズ" - }, - { - "id": "123", - "name": "マッシブライダース" - }, - { - "id": "176", - "name": "炎陣" - } - ] - }, - "23": { - "idol_id": 23, - "idol_name": "大原みちる", - "idol_name_display": "大原みちる", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1002601", - "hash": "6b068f0f0e900fe2dd9026fc45e69c73", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1102602", - "hash": "dfa5a36128104882b3a46258220c6701", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ドイツスタイル", - "alias_name_display": "ドイツスタイル", - "id": "1211601", - "hash": "60af5036a77f2f8269fb6e88d920497f", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 507, - "event_name": "LIVEツアーカーニバルinドイツ" - } - ] - }, - { - "alias_name": "ドイツスタイル", - "alias_name_display": "ドイツスタイル", - "id": "1311602", - "hash": "d51d5eadd272f1b876ba341d6382868f", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 507, - "event_name": "LIVEツアーカーニバルinドイツ" - } - ] - }, - { - "alias_name": "ロワイヤルスタイルNP", - "alias_name_display": "ロワイヤルスタイルNP", - "id": "1216801", - "hash": "15eb02199aecce5e6f44cc03aedc29ac", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 805, - "event_name": "第5回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ロワイヤルスタイルNP", - "alias_name_display": "ロワイヤルスタイルNP", - "id": "1316802", - "hash": "286e0026f19374de60af40a8a7e0d06a", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 805, - "event_name": "第5回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "サマーシーズン", - "alias_name_display": "サマーシーズン", - "id": "1222601", - "hash": "7edc3a0dfceed19ff46f0ebda96b8ee0", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "サマーシーズン", - "alias_name_display": "サマーシーズン", - "id": "1322602", - "hash": "46961adee0f631616278501c02e47d1b", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ノルウェー紀行", - "alias_name_display": "ノルウェー紀行", - "id": "1226401", - "hash": "be964026db56c2a6d7451db1085a5c15", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 1705, - "event_name": "アイドルプロデュース きらめくオーロラ紀行" - } - ] - }, - { - "alias_name": "ノルウェー紀行", - "alias_name_display": "ノルウェー紀行", - "id": "1326402", - "hash": "dfa5c5f04a0c8af6c6df3838046c8c31", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 1705, - "event_name": "アイドルプロデュース きらめくオーロラ紀行" - } - ] - }, - { - "alias_name": "ノルウェー紀行・S", - "alias_name_display": "ノルウェー紀行・S", - "id": "1226501", - "hash": "1268aaec4763af5b7c453126ee0877ce", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 1705, - "event_name": "アイドルプロデュース きらめくオーロラ紀行" - } - ] - }, - { - "alias_name": "ノルウェー紀行・S", - "alias_name_display": "ノルウェー紀行・S", - "id": "1326502", - "hash": "158f8d12822a0557a7a615e28bc434ea", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 1705, - "event_name": "アイドルプロデュース きらめくオーロラ紀行" - } - ] - }, - { - "alias_name": "ウェディングセレモニー", - "alias_name_display": "ウェディングセレモニー", - "id": "1228301", - "hash": "c023db21214e7ae05e530ff7c55c58d5", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ウェディングセレモニー", - "alias_name_display": "ウェディングセレモニー", - "id": "1328302", - "hash": "b46221f37a06227726085fb255739bc4", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ノーブレッドノーライフ", - "alias_name_display": "ノーブレッドノーライフ", - "id": "1230701", - "hash": "0d022f6519fd7b401d70de6a2f8251c1", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": "032", - "event_name": "第32回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "ノーブレッドノーライフ", - "alias_name_display": "ノーブレッドノーライフ", - "id": "1330702", - "hash": "d24d7d1c13fa222394adeb1b8143c884", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": "032", - "event_name": "第32回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "モグモグバレンタイン", - "alias_name_display": "モグモグバレンタイン", - "id": "1412201", - "hash": "8166a4e7c07c118ab7202278f32bf89a", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "モグモグバレンタイン", - "alias_name_display": "モグモグバレンタイン", - "id": "1512202", - "hash": "a154707291de46fdc9e9ec2c9d10055b", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "パンプキンチアー", - "alias_name_display": "パンプキンチアー", - "id": "1419401", - "hash": "d87837c56b1403c8047a7194db02a869", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 1106, - "event_name": "プロダクション対抗トークバトルショー ハロウィンSP" - } - ] - }, - { - "alias_name": "パンプキンチアー", - "alias_name_display": "パンプキンチアー", - "id": "1519402", - "hash": "32a2e1707518845648d1684210fce934", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 1106, - "event_name": "プロダクション対抗トークバトルショー ハロウィンSP" - } - ] - }, - { - "alias_name": "モグモグオータム", - "alias_name_display": "モグモグオータム", - "id": "1428801", - "hash": "65844372377e2a3527d49cf506b2f6fc", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 814, - "event_name": "第14回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "モグモグオータム", - "alias_name_display": "モグモグオータム", - "id": "1528802", - "hash": "77af3dbc70020d39d0731237345f44cf", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 814, - "event_name": "第14回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "焼きたてハピネス", - "alias_name_display": "焼きたてハピネス", - "id": "1440101", - "hash": "ebf9935d9b73a4244db58227f97d8d2b", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 1216, - "event_name": "先生と一緒に♪目指せおいしいパン作り アイドルチャレンジ" - } - ] - }, - { - "alias_name": "焼きたてハピネス", - "alias_name_display": "焼きたてハピネス", - "id": "1540102", - "hash": "6982bf46c7bfa21df65e8b12044e9555", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 1216, - "event_name": "先生と一緒に♪目指せおいしいパン作り アイドルチャレンジ" - } - ] - } - ], - "units": [ - { - "id": "33", - "name": "チーム・フラワー" - }, - { - "id": "97", - "name": "ドイツスタイル" - }, - { - "id": "133", - "name": "スケルツォ・プリマヴェーラ" - }, - { - "id": "209", - "name": "ロワイヤルスタイルNP" - } - ] - }, - "24": { - "idol_id": 24, - "idol_name": "遊佐こずえ", - "idol_name_display": "遊佐こずえ", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1002701", - "hash": "45e99d9c3367c228d33f71058dd2f738", - "profile": { - "height": "130", - "weight": "28", - "bust": "62", - "waist": "50", - "hip": "65" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1102702", - "hash": "3144d1c17608aeeee8313c6cd507f9fb", - "profile": { - "height": "130", - "weight": "28", - "bust": "62", - "waist": "50", - "hip": "65" - }, - "event": [] - }, - { - "alias_name": "スペーススタイル", - "alias_name_display": "スペーススタイル", - "id": "1212801", - "hash": "d9f37d6cf95addd1b3965a4f0ce9b614", - "profile": { - "height": "130", - "weight": "28", - "bust": "62", - "waist": "50", - "hip": "65" - }, - "event": [ - { - "event_id": 508, - "event_name": "LIVEツアーカーニバルinスペースワールド" - } - ] - }, - { - "alias_name": "スペーススタイル", - "alias_name_display": "スペーススタイル", - "id": "1312802", - "hash": "9d26767ec2bee81a2d044b4dfbf1d047", - "profile": { - "height": "130", - "weight": "28", - "bust": "62", - "waist": "50", - "hip": "65" - }, - "event": [ - { - "event_id": 508, - "event_name": "LIVEツアーカーニバルinスペースワールド" - } - ] - }, - { - "alias_name": "紅葉温泉", - "alias_name_display": "紅葉温泉", - "id": "1224401", - "hash": "3c51dba58851ac10b8c11fed3d7c089f", - "profile": { - "height": "130", - "weight": "28", - "bust": "62", - "waist": "50", - "hip": "65" - }, - "event": [] - }, - { - "alias_name": "紅葉温泉", - "alias_name_display": "紅葉温泉", - "id": "1324402", - "hash": "aa2469f1804965e38a2a14d945c62b2a", - "profile": { - "height": "130", - "weight": "28", - "bust": "62", - "waist": "50", - "hip": "65" - }, - "event": [] - }, - { - "alias_name": "ふしぎなちから", - "alias_name_display": "ふしぎなちから", - "id": "1229501", - "hash": "3432d1de0c9fbb642ed0d612ea5525bc", - "profile": { - "height": "130", - "weight": "28", - "bust": "62", - "waist": "50", - "hip": "65" - }, - "event": [] - }, - { - "alias_name": "ふしぎなちから", - "alias_name_display": "ふしぎなちから", - "id": "1329502", - "hash": "16c97cfaf2b0ed17ac59a0c545c80286", - "profile": { - "height": "130", - "weight": "28", - "bust": "62", - "waist": "50", - "hip": "65" - }, - "event": [] - }, - { - "alias_name": "マジカルエンジェル", - "alias_name_display": "マジカルエンジェル", - "id": "1412501", - "hash": "efe818609edadb7a799cd5318a803c06", - "profile": { - "height": "130", - "weight": "28", - "bust": "62", - "waist": "50", - "hip": "65" - }, - "event": [ - { - "event_id": "015", - "event_name": "第15回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "マジカルエンジェル", - "alias_name_display": "マジカルエンジェル", - "id": "1512502", - "hash": "113a747db67955abdf42f480d82bfd0c", - "profile": { - "height": "130", - "weight": "28", - "bust": "62", - "waist": "50", - "hip": "65" - }, - "event": [ - { - "event_id": "015", - "event_name": "第15回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "スウィートフェアリー", - "alias_name_display": "スウィートフェアリー", - "id": "1416001", - "hash": "692f101a35f8d44b5cfdab20db41d07c", - "profile": { - "height": "130", - "weight": "28", - "bust": "62", - "waist": "50", - "hip": "65" - }, - "event": [] - }, - { - "alias_name": "スウィートフェアリー", - "alias_name_display": "スウィートフェアリー", - "id": "1516002", - "hash": "8d6a51322763437b0285d0014de453e1", - "profile": { - "height": "130", - "weight": "28", - "bust": "62", - "waist": "50", - "hip": "65" - }, - "event": [] - }, - { - "alias_name": "はじめていっぱい", - "alias_name_display": "はじめていっぱい", - "id": "1424101", - "hash": "48ad4413bb8682b45c9dba484b79127d", - "profile": { - "height": "130", - "weight": "28", - "bust": "62", - "waist": "50", - "hip": "65" - }, - "event": [ - { - "event_id": 1701, - "event_name": "アイドルプロデュース はじめてのキャンプ" - } - ] - }, - { - "alias_name": "はじめていっぱい", - "alias_name_display": "はじめていっぱい", - "id": "1524102", - "hash": "da45338f44ff37ffe855b752bf0abbd3", - "profile": { - "height": "130", - "weight": "28", - "bust": "62", - "waist": "50", - "hip": "65" - }, - "event": [ - { - "event_id": 1701, - "event_name": "アイドルプロデュース はじめてのキャンプ" - } - ] - }, - { - "alias_name": "ホワイトテイル", - "alias_name_display": "ホワイトテイル", - "id": "1430801", - "hash": "f54882d2d097483a70a35a82c42d40be", - "profile": { - "height": "130", - "weight": "28", - "bust": "62", - "waist": "50", - "hip": "65" - }, - "event": [] - }, - { - "alias_name": "ホワイトテイル", - "alias_name_display": "ホワイトテイル", - "id": "1530802", - "hash": "c50e292d766463d6113e97ee03cc6a38", - "profile": { - "height": "130", - "weight": "28", - "bust": "62", - "waist": "50", - "hip": "65" - }, - "event": [] - }, - { - "alias_name": "無垢なる魔王", - "alias_name_display": "無垢なる魔王", - "id": "1437801", - "hash": "51d28dcc1cffaf374a73ed53f77e9476", - "profile": { - "height": "130", - "weight": "28", - "bust": "62", - "waist": "50", - "hip": "65" - }, - "event": [] - }, - { - "alias_name": "無垢なる魔王", - "alias_name_display": "無垢なる魔王", - "id": "1537802", - "hash": "687b4206d88a37c16864b8f4d507f2cb", - "profile": { - "height": "130", - "weight": "28", - "bust": "62", - "waist": "50", - "hip": "65" - }, - "event": [] - } - ], - "units": [ - { - "id": "62", - "name": "ようせいさんとおねえさん" - }, - { - "id": "95", - "name": "スペーススタイル" - } - ] - }, - "25": { - "idol_id": 25, - "idol_name": "大沼くるみ", - "idol_name_display": "大沼くるみ", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1002801", - "hash": "28789186bef61a4dcdd8eff8ef59fe7f", - "profile": { - "height": "145", - "weight": "40", - "bust": "おっきい", - "waist": "ふつう", - "hip": "まぁまぁ" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1102802", - "hash": "98e729ca168828acbf2ba02d89feda8b", - "profile": { - "height": "145", - "weight": "40", - "bust": "おっきい", - "waist": "ふつう", - "hip": "まぁまぁ" - }, - "event": [] - }, - { - "alias_name": "トークLIVEチアガール", - "alias_name_display": "トークLIVEチアガール", - "id": "1215101", - "hash": "4d1ca7f4ecb2d1c02e68551e9bba2ab3", - "profile": { - "height": "145", - "weight": "40", - "bust": "おっきい", - "waist": "ふつう", - "hip": "まぁまぁ" - }, - "event": [ - { - "event_id": 1101, - "event_name": "プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "トークLIVEチアガール", - "alias_name_display": "トークLIVEチアガール", - "id": "1315102", - "hash": "d37d6a4498910c156f63189e2d40d6ed", - "profile": { - "height": "145", - "weight": "40", - "bust": "おっきい", - "waist": "ふつう", - "hip": "まぁまぁ" - }, - "event": [ - { - "event_id": 1101, - "event_name": "プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "大粒のドロップ", - "alias_name_display": "大粒のドロップ", - "id": "1218001", - "hash": "66f135ec677fc6141ada012bbfcd01d7", - "profile": { - "height": "145", - "weight": "40", - "bust": "おっきい", - "waist": "ふつう", - "hip": "まぁまぁ" - }, - "event": [ - { - "event_id": "018", - "event_name": "第18回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "大粒のドロップ", - "alias_name_display": "大粒のドロップ", - "id": "1318002", - "hash": "6131913e660db86e1a50099c16bc325d", - "profile": { - "height": "145", - "weight": "40", - "bust": "おっきい", - "waist": "ふつう", - "hip": "まぁまぁ" - }, - "event": [ - { - "event_id": "018", - "event_name": "第18回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "マーチングバンド", - "alias_name_display": "マーチングバンド", - "id": "1226001", - "hash": "e0e1f48b20530c999a6b5a9559d6af6a", - "profile": { - "height": "145", - "weight": "40", - "bust": "おっきい", - "waist": "ふつう", - "hip": "まぁまぁ" - }, - "event": [] - }, - { - "alias_name": "マーチングバンド", - "alias_name_display": "マーチングバンド", - "id": "1326002", - "hash": "2ad0b3283dc5a010db5f158eb287e9fc", - "profile": { - "height": "145", - "weight": "40", - "bust": "おっきい", - "waist": "ふつう", - "hip": "まぁまぁ" - }, - "event": [] - }, - { - "alias_name": "まごころメイド", - "alias_name_display": "まごころメイド", - "id": "1233101", - "hash": "239499574a3170f40fa617e5e007ad72", - "profile": { - "height": "145", - "weight": "40", - "bust": "おっきい", - "waist": "ふつう", - "hip": "まぁまぁ" - }, - "event": [] - }, - { - "alias_name": "まごころメイド", - "alias_name_display": "まごころメイド", - "id": "1333102", - "hash": "9e651b1f7f469561931f12fc9a3b3e01", - "profile": { - "height": "145", - "weight": "40", - "bust": "おっきい", - "waist": "ふつう", - "hip": "まぁまぁ" - }, - "event": [] - }, - { - "alias_name": "だだもれエモーション", - "alias_name_display": "だだもれエモーション", - "id": "1418901", - "hash": "a4bbadf9252089f4d2d9ebd59b48ce7d", - "profile": { - "height": "145", - "weight": "40", - "bust": "おっきい", - "waist": "ふつう", - "hip": "まぁまぁ" - }, - "event": [ - { - "event_id": 807, - "event_name": "第7回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "だだもれエモーション", - "alias_name_display": "だだもれエモーション", - "id": "1518902", - "hash": "ceb069e649a43f33fcd76f03df331740", - "profile": { - "height": "145", - "weight": "40", - "bust": "おっきい", - "waist": "ふつう", - "hip": "まぁまぁ" - }, - "event": [ - { - "event_id": 807, - "event_name": "第7回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ぷるんぷるんB.B", - "alias_name_display": "ぷるんぷるんB.B", - "id": "1422201", - "hash": "0b09d531c78b583e59cf03cef7673ea8", - "profile": { - "height": "145", - "weight": "40", - "bust": "おっきい", - "waist": "ふつう", - "hip": "まぁまぁ" - }, - "event": [] - }, - { - "alias_name": "ぷるんぷるんB.B", - "alias_name_display": "ぷるんぷるんB.B", - "id": "1522202", - "hash": "38bcfcacb8cd201a38eda17602d517df", - "profile": { - "height": "145", - "weight": "40", - "bust": "おっきい", - "waist": "ふつう", - "hip": "まぁまぁ" - }, - "event": [] - }, - { - "alias_name": "もぎたてビーチガール", - "alias_name_display": "もぎたてビーチガール", - "id": "1426301", - "hash": "3e40fa8beb3a767790257137865215b1", - "profile": { - "height": "145", - "weight": "40", - "bust": "おっきい", - "waist": "ふつう", - "hip": "まぁまぁ" - }, - "event": [ - { - "event_id": 1703, - "event_name": "アイドルプロデュース おいでよ!海の家" - } - ] - }, - { - "alias_name": "もぎたてビーチガール", - "alias_name_display": "もぎたてビーチガール", - "id": "1526302", - "hash": "16bcdd3845d6e3e7329a87b63e487adb", - "profile": { - "height": "145", - "weight": "40", - "bust": "おっきい", - "waist": "ふつう", - "hip": "まぁまぁ" - }, - "event": [ - { - "event_id": 1703, - "event_name": "アイドルプロデュース おいでよ!海の家" - } - ] - }, - { - "alias_name": "きらきらビーチガール", - "alias_name_display": "きらきらビーチガール", - "id": "1426401", - "hash": "1d9706dbe3ab49249cc85a75865ce80e", - "profile": { - "height": "145", - "weight": "40", - "bust": "おっきい", - "waist": "ふつう", - "hip": "まぁまぁ" - }, - "event": [ - { - "event_id": 1703, - "event_name": "アイドルプロデュース おいでよ!海の家" - } - ] - }, - { - "alias_name": "きらきらビーチガール", - "alias_name_display": "きらきらビーチガール", - "id": "1526402", - "hash": "2c56ab3ad72b1f245847fcc4e0bc94c8", - "profile": { - "height": "145", - "weight": "40", - "bust": "おっきい", - "waist": "ふつう", - "hip": "まぁまぁ" - }, - "event": [ - { - "event_id": 1703, - "event_name": "アイドルプロデュース おいでよ!海の家" - } - ] - }, - { - "alias_name": "大輪の華", - "alias_name_display": "大輪の華", - "id": "1434801", - "hash": "a80b7a3dce6c300c9bf3d0f0dd7d415e", - "profile": { - "height": "145", - "weight": "40", - "bust": "おっきい", - "waist": "ふつう", - "hip": "まぁまぁ" - }, - "event": [ - { - "event_id": 1408, - "event_name": "第8回ぷちデレラコレクション" - } - ] - }, - { - "alias_name": "大輪の華", - "alias_name_display": "大輪の華", - "id": "1534802", - "hash": "d76492cb5a1cc1202e993013da0e48cd", - "profile": { - "height": "145", - "weight": "40", - "bust": "おっきい", - "waist": "ふつう", - "hip": "まぁまぁ" - }, - "event": [ - { - "event_id": 1408, - "event_name": "第8回ぷちデレラコレクション" - } - ] - } - ], - "units": [ - { - "id": "71", - "name": "B.B" - }, - { - "id": "214", - "name": "L.M.B.G" - } - ] - }, - "26": { - "idol_id": 26, - "idol_name": "一ノ瀬志希", - "idol_name_display": "一ノ瀬志希", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1002901", - "hash": "dad249d2193e48fede1efb6b86ce152f", - "profile": { - "height": "161", - "weight": "43", - "bust": "83", - "waist": "57", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1102902", - "hash": "b9e2f6db7e3b84a0319b31c875323c03", - "profile": { - "height": "161", - "weight": "43", - "bust": "83", - "waist": "57", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ガンスリンガー", - "alias_name_display": "ガンスリンガー", - "id": "1216501", - "hash": "749918764164a20ffd9548b6e3329cb7", - "profile": { - "height": "161", - "weight": "43", - "bust": "83", - "waist": "57", - "hip": "82" - }, - "event": [ - { - "event_id": 512, - "event_name": "西部公演 ガンスリンガージャーニー" - } - ] - }, - { - "alias_name": "ガンスリンガー", - "alias_name_display": "ガンスリンガー", - "id": "1316502", - "hash": "06e634647cb9db3a1ae3cd4f0f8c1fdc", - "profile": { - "height": "161", - "weight": "43", - "bust": "83", - "waist": "57", - "hip": "82" - }, - "event": [ - { - "event_id": 512, - "event_name": "西部公演 ガンスリンガージャーニー" - } - ] - }, - { - "alias_name": "ダンシングガール", - "alias_name_display": "ダンシングガール", - "id": "1228101", - "hash": "87b9ce294ee324ef107117cd775e3e41", - "profile": { - "height": "161", - "weight": "43", - "bust": "83", - "waist": "57", - "hip": "82" - }, - "event": [ - { - "event_id": 1706, - "event_name": "アイドルプロデュース 北の大地と夜さりの祭" - } - ] - }, - { - "alias_name": "ダンシングガール", - "alias_name_display": "ダンシングガール", - "id": "1328102", - "hash": "8bd62d14e7ae5a19612cb4f63e7bc910", - "profile": { - "height": "161", - "weight": "43", - "bust": "83", - "waist": "57", - "hip": "82" - }, - "event": [ - { - "event_id": 1706, - "event_name": "アイドルプロデュース 北の大地と夜さりの祭" - } - ] - }, - { - "alias_name": "ダンシングガール・S", - "alias_name_display": "ダンシングガール・S", - "id": "1228201", - "hash": "46b8c7e64644fefca3f9c7836f2c8f40", - "profile": { - "height": "161", - "weight": "43", - "bust": "83", - "waist": "57", - "hip": "82" - }, - "event": [ - { - "event_id": 1706, - "event_name": "アイドルプロデュース 北の大地と夜さりの祭" - } - ] - }, - { - "alias_name": "ダンシングガール・S", - "alias_name_display": "ダンシングガール・S", - "id": "1328202", - "hash": "ae2a65d68ad26995c036e4a212c15f18", - "profile": { - "height": "161", - "weight": "43", - "bust": "83", - "waist": "57", - "hip": "82" - }, - "event": [ - { - "event_id": 1706, - "event_name": "アイドルプロデュース 北の大地と夜さりの祭" - } - ] - }, - { - "alias_name": "セブンスヘブン", - "alias_name_display": "セブンスヘブン", - "id": "1417301", - "hash": "3055dffe2520e6a28427482ae61582e9", - "profile": { - "height": "161", - "weight": "43", - "bust": "83", - "waist": "57", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "セブンスヘブン", - "alias_name_display": "セブンスヘブン", - "id": "1517302", - "hash": "5f3a262bdcb15fd59261d1d67eed56e3", - "profile": { - "height": "161", - "weight": "43", - "bust": "83", - "waist": "57", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "パフュームトリッパー", - "alias_name_display": "パフュームトリッパー", - "id": "1419901", - "hash": "403297028737ce2c944bfc812dba6c94", - "profile": { - "height": "161", - "weight": "43", - "bust": "83", - "waist": "57", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "パフュームトリッパー", - "alias_name_display": "パフュームトリッパー", - "id": "1519902", - "hash": "be20e1ce2d5b116f0b9fecbecf298a48", - "profile": { - "height": "161", - "weight": "43", - "bust": "83", - "waist": "57", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "文明開花", - "alias_name_display": "文明開花", - "id": "1423501", - "hash": "af0f233de4c2dfbac1e5a8bf1768dcf6", - "profile": { - "height": "161", - "weight": "43", - "bust": "83", - "waist": "57", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "文明開花", - "alias_name_display": "文明開花", - "id": "1523502", - "hash": "c827cb0a7ab82a4395250ab254d6fbcf", - "profile": { - "height": "161", - "weight": "43", - "bust": "83", - "waist": "57", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "1429101", - "hash": "fdf5b5e967d72bb2b7acf1b43953dbd2", - "profile": { - "height": "161", - "weight": "43", - "bust": "83", - "waist": "57", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "1529102", - "hash": "aa3d9312403ed3e40e7f92b771676ea9", - "profile": { - "height": "161", - "weight": "43", - "bust": "83", - "waist": "57", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "夜の匂い", - "alias_name_display": "夜の匂い", - "id": "1429801", - "hash": "f4add4b54fc6ff462caf154441e049cf", - "profile": { - "height": "161", - "weight": "43", - "bust": "83", - "waist": "57", - "hip": "82" - }, - "event": [ - { - "event_id": 815, - "event_name": "アイドルLIVEロワイヤル クリスマスSP" - } - ] - }, - { - "alias_name": "夜の匂い", - "alias_name_display": "夜の匂い", - "id": "1529802", - "hash": "abe06fbcf68900a285b0f2244403214e", - "profile": { - "height": "161", - "weight": "43", - "bust": "83", - "waist": "57", - "hip": "82" - }, - "event": [ - { - "event_id": 815, - "event_name": "アイドルLIVEロワイヤル クリスマスSP" - } - ] - }, - { - "alias_name": "新春パルファム", - "alias_name_display": "新春パルファム", - "id": "1437601", - "hash": "44b0359478c5fbc5a8dcb0d7d91a3776", - "profile": { - "height": "161", - "weight": "43", - "bust": "83", - "waist": "57", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "新春パルファム", - "alias_name_display": "新春パルファム", - "id": "1537602", - "hash": "bb156a253fc247462a87b20eee8770f5", - "profile": { - "height": "161", - "weight": "43", - "bust": "83", - "waist": "57", - "hip": "82" - }, - "event": [] - } - ], - "units": [ - { - "id": "65", - "name": "レイジー・レイジー" - }, - { - "id": "72", - "name": "Dimension-3" - }, - { - "id": "126", - "name": "誘惑イビル" - }, - { - "id": "185", - "name": "LiPPS" - }, - { - "id": "196", - "name": "la Roseraie" - } - ] - }, - "27": { - "idol_id": 27, - "idol_name": "前川みく", - "idol_name_display": "前川みく", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1200101", - "hash": "eb2571c3f125aa3fcadb1468b6a4dbee", - "profile": { - "height": "152", - "weight": "45", - "bust": "85", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1300102", - "hash": "b22b6d458e6da02da4717fee2cbb5095", - "profile": { - "height": "152", - "weight": "45", - "bust": "85", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ハイカラサクラ", - "alias_name_display": "ハイカラサクラ", - "id": "1221101", - "hash": "4355a0e400d64478e92262d218a2c1bf", - "profile": { - "height": "152", - "weight": "45", - "bust": "85", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ハイカラサクラ", - "alias_name_display": "ハイカラサクラ", - "id": "1321102", - "hash": "521d08134bd68c69fb0393e8c264af7a", - "profile": { - "height": "152", - "weight": "45", - "bust": "85", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ブラックキャット", - "alias_name_display": "ブラックキャット", - "id": "1232801", - "hash": "b47ef631aaaa60b10106b8f2d9b53481", - "profile": { - "height": "152", - "weight": "45", - "bust": "85", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ブラックキャット", - "alias_name_display": "ブラックキャット", - "id": "1332802", - "hash": "d4756fbf7ff04813ee44a35a24c776f2", - "profile": { - "height": "152", - "weight": "45", - "bust": "85", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "セクシーキャット", - "alias_name_display": "セクシーキャット", - "id": "1400401", - "hash": "ccebb088023a6049836772db68a1d7f6", - "profile": { - "height": "152", - "weight": "45", - "bust": "85", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "セクシーキャット", - "alias_name_display": "セクシーキャット", - "id": "1500402", - "hash": "fe6e6f03157fbdd74ec000f057c601cb", - "profile": { - "height": "152", - "weight": "45", - "bust": "85", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "1402401", - "hash": "069cfeda079f531b4a0d33f4c9e226ba", - "profile": { - "height": "152", - "weight": "45", - "bust": "85", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "1502402", - "hash": "c6de2d6bb237d224734e0448ae6f153a", - "profile": { - "height": "152", - "weight": "45", - "bust": "85", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "チャーミングキャット", - "alias_name_display": "チャーミングキャット", - "id": "1403901", - "hash": "c9f7539dc29fc32ea84e5d86153ec745", - "profile": { - "height": "152", - "weight": "45", - "bust": "85", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "チャーミングキャット", - "alias_name_display": "チャーミングキャット", - "id": "1503902", - "hash": "6866eec24a7825980b3325dfc6297b33", - "profile": { - "height": "152", - "weight": "45", - "bust": "85", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "シーサイドキャット", - "alias_name_display": "シーサイドキャット", - "id": "1408101", - "hash": "f369a4d2863096f6482270bf86392140", - "profile": { - "height": "152", - "weight": "45", - "bust": "85", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "シーサイドキャット", - "alias_name_display": "シーサイドキャット", - "id": "1508102", - "hash": "583d7a939c2f8d984fd5a45328019764", - "profile": { - "height": "152", - "weight": "45", - "bust": "85", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "アニバーサリーキャット", - "alias_name_display": "アニバーサリーキャット", - "id": "1410501", - "hash": "3e410534ed3ae72de2a38d8f0c8caa13", - "profile": { - "height": "152", - "weight": "45", - "bust": "85", - "waist": "55", - "hip": "81" - }, - "event": [ - { - "event_id": 410, - "event_name": "アイドルプロデュース the 2nd Anniversary" - } - ] - }, - { - "alias_name": "アニバーサリーキャット", - "alias_name_display": "アニバーサリーキャット", - "id": "1510502", - "hash": "6c41f4d6efea96e2fb3f34e6fea1de77", - "profile": { - "height": "152", - "weight": "45", - "bust": "85", - "waist": "55", - "hip": "81" - }, - "event": [ - { - "event_id": 410, - "event_name": "アイドルプロデュース the 2nd Anniversary" - } - ] - }, - { - "alias_name": "アニバーサリーキャット・S", - "alias_name_display": "アニバーサリーキャット・S", - "id": "1410601", - "hash": "fa0ecd35b0feef83d385a13de23d7234", - "profile": { - "height": "152", - "weight": "45", - "bust": "85", - "waist": "55", - "hip": "81" - }, - "event": [ - { - "event_id": 410, - "event_name": "アイドルプロデュース the 2nd Anniversary" - } - ] - }, - { - "alias_name": "アニバーサリーキャット・S", - "alias_name_display": "アニバーサリーキャット・S", - "id": "1510602", - "hash": "4aa6cbe5d08e58debf0adfd32f3c5dcd", - "profile": { - "height": "152", - "weight": "45", - "bust": "85", - "waist": "55", - "hip": "81" - }, - "event": [ - { - "event_id": 410, - "event_name": "アイドルプロデュース the 2nd Anniversary" - } - ] - }, - { - "alias_name": "シンデレラドリーム", - "alias_name_display": "シンデレラドリーム", - "id": "1413801", - "hash": "665a9ad6cf25489e7e4a11429abed954", - "profile": { - "height": "152", - "weight": "45", - "bust": "85", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "シンデレラドリーム", - "alias_name_display": "シンデレラドリーム", - "id": "1513802", - "hash": "0fb854d9551451b3f1cd518348c520f4", - "profile": { - "height": "152", - "weight": "45", - "bust": "85", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "マジメ/ネコチャン", - "alias_name_display": "マジメ/ネコチャン", - "id": "1418701", - "hash": "bb2eb7f4b69f14c0cf2e438079234201", - "profile": { - "height": "152", - "weight": "45", - "bust": "85", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "マジメ/ネコチャン", - "alias_name_display": "マジメ/ネコチャン", - "id": "1518702", - "hash": "14e6c94e4cc163ffedd84a8ebba62e90", - "profile": { - "height": "152", - "weight": "45", - "bust": "85", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ムーンナイトキャット", - "alias_name_display": "ムーンナイトキャット", - "id": "1425801", - "hash": "cbf6c6a6ba50576f7be5b9f273d0484d", - "profile": { - "height": "152", - "weight": "45", - "bust": "85", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ムーンナイトキャット", - "alias_name_display": "ムーンナイトキャット", - "id": "1525802", - "hash": "34a453e835e1cf2f197a43cdc18c0c65", - "profile": { - "height": "152", - "weight": "45", - "bust": "85", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "アスタリスク", - "alias_name_display": "アスタリスク", - "id": "1526602", - "hash": "f0f2405e8f2bbf462ed96d2a47eac58b", - "profile": { - "height": "152", - "weight": "45", - "bust": "85", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "まちぶせキャット", - "alias_name_display": "まちぶせキャット", - "id": "1431101", - "hash": "f78629c8772962a9690611d3b3363906", - "profile": { - "height": "152", - "weight": "45", - "bust": "85", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "まちぶせキャット", - "alias_name_display": "まちぶせキャット", - "id": "1531102", - "hash": "8a73c424553e716484886472e9ef92f9", - "profile": { - "height": "152", - "weight": "45", - "bust": "85", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "フマジメ/ネコチャン", - "alias_name_display": "フマジメ/ネコチャン", - "id": "1435601", - "hash": "92e0e3e2f3feede92f76570968a1b2b4", - "profile": { - "height": "152", - "weight": "45", - "bust": "85", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "フマジメ/ネコチャン", - "alias_name_display": "フマジメ/ネコチャン", - "id": "1535602", - "hash": "e863deaf923d0239d7d118503386c7c4", - "profile": { - "height": "152", - "weight": "45", - "bust": "85", - "waist": "55", - "hip": "81" - }, - "event": [] - } - ], - "units": [ - { - "id": "3", - "name": "あーにゃんみくにゃん" - }, - { - "id": "70", - "name": "*(Asterisk)" - }, - { - "id": "116", - "name": "にゃん・にゃん・にゃん" - }, - { - "id": "139", - "name": "397cherry" - }, - { - "id": "158", - "name": "ハイカラサクラ" - }, - { - "id": "168", - "name": "*(Asterisk) with なつなな" - }, - { - "id": "187", - "name": "NEX-US" - }, - { - "id": "195", - "name": "C5" - }, - { - "id": "213", - "name": "CINDERELLA PROJECT" - } - ] - }, - "28": { - "idol_id": 28, - "idol_name": "赤西瑛梨華", - "idol_name_display": "赤西瑛梨華", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1200201", - "hash": "2cd48b54401ff3ef8a81a753318705a9", - "profile": { - "height": "154", - "weight": "55", - "bust": "92", - "waist": "59", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1300202", - "hash": "d3f5730a559b84333df073acc29d094d", - "profile": { - "height": "154", - "weight": "53", - "bust": "92", - "waist": "57", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "ラブリー☆バラドル", - "alias_name_display": "ラブリー☆バラドル", - "id": "1209401", - "hash": "13e6f261e13f120522d4a4675d3f38a9", - "profile": { - "height": "154", - "weight": "53", - "bust": "92", - "waist": "57", - "hip": "88" - }, - "event": [ - { - "event_id": 505, - "event_name": "アイドルLIVEツアーinバリ島" - } - ] - }, - { - "alias_name": "ラブリー☆バラドル", - "alias_name_display": "ラブリー☆バラドル", - "id": "1309402", - "hash": "d85e306970e5cfe01adfe4f222014191", - "profile": { - "height": "154", - "weight": "53", - "bust": "92", - "waist": "57", - "hip": "88" - }, - "event": [ - { - "event_id": 505, - "event_name": "アイドルLIVEツアーinバリ島" - } - ] - }, - { - "alias_name": "おひろめポーズ", - "alias_name_display": "おひろめポーズ", - "id": "1217901", - "hash": "c488c3d6c04ad92b2bd5cc54b24855c9", - "profile": { - "height": "154", - "weight": "53", - "bust": "92", - "waist": "57", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "おひろめポーズ", - "alias_name_display": "おひろめポーズ", - "id": "1317902", - "hash": "9629738a808b833c3c0d28938bf132e0", - "profile": { - "height": "154", - "weight": "53", - "bust": "92", - "waist": "57", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "T.B.サーカス", - "alias_name_display": "T.B.サーカス", - "id": "1220201", - "hash": "6d515e6022088598ee53e452e64eadfd", - "profile": { - "height": "154", - "weight": "53", - "bust": "92", - "waist": "57", - "hip": "88" - }, - "event": [ - { - "event_id": 1108, - "event_name": "第8回プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "T.B.サーカス", - "alias_name_display": "T.B.サーカス", - "id": "1320202", - "hash": "0522d77ea44cb013c8debaf5b042e606", - "profile": { - "height": "154", - "weight": "53", - "bust": "92", - "waist": "57", - "hip": "88" - }, - "event": [ - { - "event_id": 1108, - "event_name": "第8回プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "フライトバラエティ", - "alias_name_display": "フライトバラエティ", - "id": "1327902", - "hash": "0855654e3e72cb7a3920e2e064e8d204", - "profile": { - "height": "154", - "weight": "53", - "bust": "92", - "waist": "57", - "hip": "88" - }, - "event": [ - { - "event_id": 1803, - "event_name": "アイドルバラエティ 大空への挑戦 ~Fly me to the Sky~" - } - ] - }, - { - "alias_name": "PROのオシゴト☆", - "alias_name_display": "PROのオシゴト☆", - "id": "1231201", - "hash": "646d02993ce1aa9172a63d9e1fd68e0b", - "profile": { - "height": "154", - "weight": "53", - "bust": "92", - "waist": "57", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "PROのオシゴト☆", - "alias_name_display": "PROのオシゴト☆", - "id": "1331202", - "hash": "c2d987590968cc303bc14c008db97d75", - "profile": { - "height": "154", - "weight": "53", - "bust": "92", - "waist": "57", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "ぷるるんスポーティ", - "alias_name_display": "ぷるるんスポーティ", - "id": "1409801", - "hash": "54e1a4a8f49210862d05524ef607b0f0", - "profile": { - "height": "154", - "weight": "53", - "bust": "92", - "waist": "57", - "hip": "88" - }, - "event": [ - { - "event_id": 212, - "event_name": "アイドルサバイバル 秋の大運動会" - } - ] - }, - { - "alias_name": "ぷるるんスポーティ", - "alias_name_display": "ぷるるんスポーティ", - "id": "1509802", - "hash": "488ac97d9598d5f6b5ff26028d4a9fc8", - "profile": { - "height": "154", - "weight": "53", - "bust": "92", - "waist": "57", - "hip": "88" - }, - "event": [ - { - "event_id": 212, - "event_name": "アイドルサバイバル 秋の大運動会" - } - ] - }, - { - "alias_name": "吸血貴族", - "alias_name_display": "吸血貴族", - "id": "1428501", - "hash": "70053db7dd59312f3f5f2af3bd8fcbf5", - "profile": { - "height": "154", - "weight": "53", - "bust": "92", - "waist": "57", - "hip": "88" - }, - "event": [ - { - "event_id": 522, - "event_name": "魔界公演 幽鬱女王とハロウィンの祝祭" - } - ] - }, - { - "alias_name": "吸血貴族", - "alias_name_display": "吸血貴族", - "id": "1528502", - "hash": "2fc28fdf3ff00656454cd265ac6ff260", - "profile": { - "height": "154", - "weight": "53", - "bust": "92", - "waist": "57", - "hip": "88" - }, - "event": [ - { - "event_id": 522, - "event_name": "魔界公演 幽鬱女王とハロウィンの祝祭" - } - ] - } - ], - "units": [ - { - "id": "73", - "name": "ERICATHY" - } - ] - }, - "29": { - "idol_id": 29, - "idol_name": "松原早耶", - "idol_name_display": "松原早耶", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1200301", - "hash": "510b48227148c9164ac281f46083d2c5", - "profile": { - "height": "156", - "weight": "43", - "bust": "83", - "waist": "58", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1300302", - "hash": "7e2a4f08a73c0bd5bf11ff7e387fc149", - "profile": { - "height": "156", - "weight": "43", - "bust": "83", - "waist": "58", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "スウィートドリーマー", - "alias_name_display": "スウィートドリーマー", - "id": "1210101", - "hash": "9bff0a176fb7cc6ec70aa1851267c223", - "profile": { - "height": "156", - "weight": "43", - "bust": "83", - "waist": "58", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "スウィートドリーマー", - "alias_name_display": "スウィートドリーマー", - "id": "1310102", - "hash": "eab228023c103ead474b39feec6f2a62", - "profile": { - "height": "156", - "weight": "43", - "bust": "83", - "waist": "58", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "自慢のボディ", - "alias_name_display": "自慢のボディ", - "id": "1216701", - "hash": "a31c4b789e163d6300b58fe77258e56a", - "profile": { - "height": "156", - "weight": "43", - "bust": "83", - "waist": "58", - "hip": "86" - }, - "event": [ - { - "event_id": "017", - "event_name": "第17回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "自慢のボディ", - "alias_name_display": "自慢のボディ", - "id": "1316702", - "hash": "d11715682b54f3741316f3bc52ae3435", - "profile": { - "height": "156", - "weight": "43", - "bust": "83", - "waist": "58", - "hip": "86" - }, - "event": [ - { - "event_id": "017", - "event_name": "第17回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "おねだりガール", - "alias_name_display": "おねだりガール", - "id": "1220501", - "hash": "aae1c18ddab7a1cb39d017984294b8bc", - "profile": { - "height": "156", - "weight": "43", - "bust": "83", - "waist": "58", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "おねだりガール", - "alias_name_display": "おねだりガール", - "id": "1320502", - "hash": "a031a837934a23cd130171507ec1f055", - "profile": { - "height": "156", - "weight": "43", - "bust": "83", - "waist": "58", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "LIVEバラエティ", - "alias_name_display": "LIVEバラエティ", - "id": "1324702", - "hash": "31deca7910d4feaa0b6cfc3af4c9e231", - "profile": { - "height": "156", - "weight": "43", - "bust": "83", - "waist": "58", - "hip": "86" - }, - "event": [ - { - "event_id": 1802, - "event_name": "アイドルバラエティ 手作りライブプロジェクト!" - } - ] - }, - { - "alias_name": "かんぺきプラン", - "alias_name_display": "かんぺきプラン", - "id": "1230501", - "hash": "be69d241fbd6bc8e3c465ce10a4f903d", - "profile": { - "height": "156", - "weight": "43", - "bust": "83", - "waist": "58", - "hip": "86" - }, - "event": [ - { - "event_id": 725, - "event_name": "第25回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "かんぺきプラン", - "alias_name_display": "かんぺきプラン", - "id": "1330502", - "hash": "c73c7d84c4ec2b59495f658ee6e9f4fa", - "profile": { - "height": "156", - "weight": "43", - "bust": "83", - "waist": "58", - "hip": "86" - }, - "event": [ - { - "event_id": 725, - "event_name": "第25回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "カラフルリフレッシュ", - "alias_name_display": "カラフルリフレッシュ", - "id": "1233301", - "hash": "25ed69d5934054eb837213ce9373c0c3", - "profile": { - "height": "156", - "weight": "43", - "bust": "83", - "waist": "58", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "カラフルリフレッシュ", - "alias_name_display": "カラフルリフレッシュ", - "id": "1333302", - "hash": "d5ee7f424c9e5017b44623633cf2a1a1", - "profile": { - "height": "156", - "weight": "43", - "bust": "83", - "waist": "58", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "ロワイヤルハート", - "alias_name_display": "ロワイヤルハート", - "id": "1411001", - "hash": "8cfe9ef767466eb45c547062a317718b", - "profile": { - "height": "156", - "weight": "43", - "bust": "83", - "waist": "58", - "hip": "86" - }, - "event": [ - { - "event_id": 802, - "event_name": "第2回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ロワイヤルハート", - "alias_name_display": "ロワイヤルハート", - "id": "1511002", - "hash": "a7cc8e895c42ead2442b9492e36223d5", - "profile": { - "height": "156", - "weight": "43", - "bust": "83", - "waist": "58", - "hip": "86" - }, - "event": [ - { - "event_id": 802, - "event_name": "第2回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "キューティーチアー", - "alias_name_display": "キューティーチアー", - "id": "1431801", - "hash": "f4138dc94327dbcd4649e994dfa8cad0", - "profile": { - "height": "156", - "weight": "43", - "bust": "83", - "waist": "58", - "hip": "86" - }, - "event": [ - { - "event_id": 1506, - "event_name": "第6回チーム対抗トークバトルショー" - } - ] - }, - { - "alias_name": "キューティーチアー", - "alias_name_display": "キューティーチアー", - "id": "1531802", - "hash": "eab519121d4491eb02a6ba19010da935", - "profile": { - "height": "156", - "weight": "43", - "bust": "83", - "waist": "58", - "hip": "86" - }, - "event": [ - { - "event_id": 1506, - "event_name": "第6回チーム対抗トークバトルショー" - } - ] - } - ] - }, - "30": { - "idol_id": 30, - "idol_name": "相原雪乃", - "idol_name_display": "相原雪乃", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1200401", - "hash": "fe1ec011929547cd07d17bfa91432bd3", - "profile": { - "height": "160", - "weight": "51", - "bust": "92", - "waist": "58", - "hip": "90" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1300402", - "hash": "da2577c3c6e142e7d0e4de14bee28538", - "profile": { - "height": "160", - "weight": "51", - "bust": "92", - "waist": "58", - "hip": "90" - }, - "event": [] - }, - { - "alias_name": "ゴスペルドレス", - "alias_name_display": "ゴスペルドレス", - "id": "1206801", - "hash": "8feac8e96c99be975a2dcedd499734d3", - "profile": { - "height": "160", - "weight": "51", - "bust": "92", - "waist": "58", - "hip": "90" - }, - "event": [ - { - "event_id": 208, - "event_name": "アイドルサバイバル聖歌響くクリスマス" - } - ] - }, - { - "alias_name": "ゴスペルドレス", - "alias_name_display": "ゴスペルドレス", - "id": "1306802", - "hash": "8bf6d88f7be269f26ecc0a82120d6c0d", - "profile": { - "height": "160", - "weight": "51", - "bust": "92", - "waist": "58", - "hip": "90" - }, - "event": [ - { - "event_id": 208, - "event_name": "アイドルサバイバル聖歌響くクリスマス" - } - ] - }, - { - "alias_name": "スウィートスノー", - "alias_name_display": "スウィートスノー", - "id": "1213801", - "hash": "13c9b6c8cc387ff80d3dd1197d827093", - "profile": { - "height": "160", - "weight": "51", - "bust": "92", - "waist": "58", - "hip": "90" - }, - "event": [] - }, - { - "alias_name": "スウィートスノー", - "alias_name_display": "スウィートスノー", - "id": "1313802", - "hash": "68945ac1a86d518a4ba0d7d3b6cf4242", - "profile": { - "height": "160", - "weight": "51", - "bust": "92", - "waist": "58", - "hip": "90" - }, - "event": [] - }, - { - "alias_name": "チャーミングメイト", - "alias_name_display": "チャーミングメイト", - "id": "1322702", - "hash": "3ea19a7a283d7ccf8d67ebcecb3e9b03", - "profile": { - "height": "160", - "weight": "51", - "bust": "92", - "waist": "58", - "hip": "90" - }, - "event": [ - { - "event_id": 520, - "event_name": "青春公演 シング・ア・ソング" - } - ] - }, - { - "alias_name": "タラン・アフェール", - "alias_name_display": "タラン・アフェール", - "id": "1229701", - "hash": "cf38d99062a9637022571c1f26584083", - "profile": { - "height": "160", - "weight": "51", - "bust": "92", - "waist": "58", - "hip": "90" - }, - "event": [] - }, - { - "alias_name": "タラン・アフェール", - "alias_name_display": "タラン・アフェール", - "id": "1329702", - "hash": "110c4dcacd7c8645e9dd950465d5c451", - "profile": { - "height": "160", - "weight": "51", - "bust": "92", - "waist": "58", - "hip": "90" - }, - "event": [] - }, - { - "alias_name": "フリルドウェスタン", - "alias_name_display": "フリルドウェスタン", - "id": "1414901", - "hash": "379f16f5b227b81c72e2ccc4994bc538", - "profile": { - "height": "160", - "weight": "51", - "bust": "92", - "waist": "58", - "hip": "90" - }, - "event": [ - { - "event_id": 512, - "event_name": "西部公演 ガンスリンガージャーニー" - } - ] - }, - { - "alias_name": "フリルドウェスタン", - "alias_name_display": "フリルドウェスタン", - "id": "1514902", - "hash": "b948b75ab52fd655f62eae3a3556e5ac", - "profile": { - "height": "160", - "weight": "51", - "bust": "92", - "waist": "58", - "hip": "90" - }, - "event": [ - { - "event_id": 512, - "event_name": "西部公演 ガンスリンガージャーニー" - } - ] - }, - { - "alias_name": "エレガント・ロワイヤル", - "alias_name_display": "エレガント・ロワイヤル", - "id": "1422101", - "hash": "2e42528040b5fad260f931b71e04f0f4", - "profile": { - "height": "160", - "weight": "51", - "bust": "92", - "waist": "58", - "hip": "90" - }, - "event": [ - { - "event_id": 810, - "event_name": "アイドルLIVEロワイヤル バレンタインSP" - } - ] - }, - { - "alias_name": "エレガント・ロワイヤル", - "alias_name_display": "エレガント・ロワイヤル", - "id": "1522102", - "hash": "58a0923135a9fcd5da1cedc3ccace8ba", - "profile": { - "height": "160", - "weight": "51", - "bust": "92", - "waist": "58", - "hip": "90" - }, - "event": [ - { - "event_id": 810, - "event_name": "アイドルLIVEロワイヤル バレンタインSP" - } - ] - }, - { - "alias_name": "笑門福来", - "alias_name_display": "笑門福来", - "id": "1431001", - "hash": "b19bd4403fc12200e4ebb45a72a949bf", - "profile": { - "height": "160", - "weight": "51", - "bust": "92", - "waist": "58", - "hip": "90" - }, - "event": [ - { - "event_id": 719, - "event_name": "ドリームLIVEフェスティバル 節分SP" - } - ] - }, - { - "alias_name": "笑門福来", - "alias_name_display": "笑門福来", - "id": "1531002", - "hash": "d6058e099d434e6a55b6c7db8011f43e", - "profile": { - "height": "160", - "weight": "51", - "bust": "92", - "waist": "58", - "hip": "90" - }, - "event": [ - { - "event_id": 719, - "event_name": "ドリームLIVEフェスティバル 節分SP" - } - ] - }, - { - "alias_name": "エレガントチアー", - "alias_name_display": "エレガントチアー", - "id": "1438601", - "hash": "4dca0c21e5859981c0e9c239dc90f1ab", - "profile": { - "height": "160", - "weight": "51", - "bust": "92", - "waist": "58", - "hip": "90" - }, - "event": [ - { - "event_id": 1511, - "event_name": "第11回チーム対抗トークバトルショー" - } - ] - }, - { - "alias_name": "エレガントチアー", - "alias_name_display": "エレガントチアー", - "id": "1538602", - "hash": "cfc329e650e8c8f39600ad33229d97db", - "profile": { - "height": "160", - "weight": "51", - "bust": "92", - "waist": "58", - "hip": "90" - }, - "event": [ - { - "event_id": 1511, - "event_name": "第11回チーム対抗トークバトルショー" - } - ] - } - ] - }, - "31": { - "idol_id": 31, - "idol_name": "宮本フレデリカ", - "idol_name_display": "宮本フレデリカ", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1200501", - "hash": "1593bfefaa649ce28d0b586bbcee2c81", - "profile": { - "height": "164", - "weight": "46", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1300502", - "hash": "f80b6b94319b514fc4da98bd63edf140", - "profile": { - "height": "164", - "weight": "46", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "湯けむり月夜", - "alias_name_display": "湯けむり月夜", - "id": "1212901", - "hash": "653b56a1fafbb180fe1bc54e289e6168", - "profile": { - "height": "164", - "weight": "46", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "湯けむり月夜", - "alias_name_display": "湯けむり月夜", - "id": "1312902", - "hash": "8e14eb789abc0919c31084da84df7dfd", - "profile": { - "height": "164", - "weight": "46", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "新春ガール", - "alias_name_display": "新春ガール", - "id": "1225401", - "hash": "8b2b95f91390863d0aefcce275216963", - "profile": { - "height": "164", - "weight": "46", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "新春ガール", - "alias_name_display": "新春ガール", - "id": "1325402", - "hash": "f34fc01bea3aa407c5ce2a6d3f9bd90d", - "profile": { - "height": "164", - "weight": "46", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "小悪魔メイド", - "alias_name_display": "小悪魔メイド", - "id": "1402801", - "hash": "98ba7be0650ef8626d67e2402aa665eb", - "profile": { - "height": "164", - "weight": "46", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "小悪魔メイド", - "alias_name_display": "小悪魔メイド", - "id": "1502802", - "hash": "85c3f8d385513b9044698c7bd20056de", - "profile": { - "height": "164", - "weight": "46", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ショコラバレンタイン", - "alias_name_display": "ショコラバレンタイン", - "id": "1412301", - "hash": "731660756ad8c37fca4639324f94cd3e", - "profile": { - "height": "164", - "weight": "46", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 411, - "event_name": "アイドルプロデュース チョコレートフォーユー!" - } - ] - }, - { - "alias_name": "ショコラバレンタイン", - "alias_name_display": "ショコラバレンタイン", - "id": "1512302", - "hash": "f8a00b18927c827e005cb9e6f6dd68a4", - "profile": { - "height": "164", - "weight": "46", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 411, - "event_name": "アイドルプロデュース チョコレートフォーユー!" - } - ] - }, - { - "alias_name": "ショコラ・スマイル", - "alias_name_display": "ショコラ・スマイル", - "id": "1412401", - "hash": "d05bfa40e5b0eea86f7dc67e65d3b5cd", - "profile": { - "height": "164", - "weight": "46", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 411, - "event_name": "アイドルプロデュース チョコレートフォーユー!" - } - ] - }, - { - "alias_name": "ショコラ・スマイル", - "alias_name_display": "ショコラ・スマイル", - "id": "1512402", - "hash": "c2e4546518d66324acc7e20c0296ea51", - "profile": { - "height": "164", - "weight": "46", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 411, - "event_name": "アイドルプロデュース チョコレートフォーユー!" - } - ] - }, - { - "alias_name": "リーブル・ミニヨン", - "alias_name_display": "リーブル・ミニヨン", - "id": "1413601", - "hash": "e137e975aa7d8f98998afd46715f9a04", - "profile": { - "height": "164", - "weight": "46", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "リーブル・ミニヨン", - "alias_name_display": "リーブル・ミニヨン", - "id": "1513602", - "hash": "2302f78e3b6c45755ac806fcda036bf7", - "profile": { - "height": "164", - "weight": "46", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "渚のマドモワゼル", - "alias_name_display": "渚のマドモワゼル", - "id": "1417401", - "hash": "3c65d08696e1a10087ad8c9f7c8460ce", - "profile": { - "height": "164", - "weight": "46", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 1104, - "event_name": "プロダクション対抗トークバトルショーinSUMMER" - } - ] - }, - { - "alias_name": "渚のマドモワゼル", - "alias_name_display": "渚のマドモワゼル", - "id": "1517402", - "hash": "5196bf41a2d9d73524e78bd6164559e5", - "profile": { - "height": "164", - "weight": "46", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 1104, - "event_name": "プロダクション対抗トークバトルショーinSUMMER" - } - ] - }, - { - "alias_name": "カドー・ド・ノエル", - "alias_name_display": "カドー・ド・ノエル", - "id": "1420701", - "hash": "cf269d80bd21af84f56b57b48d21388d", - "profile": { - "height": "164", - "weight": "46", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "カドー・ド・ノエル", - "alias_name_display": "カドー・ド・ノエル", - "id": "1520702", - "hash": "5c4c3e1c99e854f47febc5ef5ae40d74", - "profile": { - "height": "164", - "weight": "46", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "1422001", - "hash": "a86180b82411166bce9e0ee90f02b578", - "profile": { - "height": "164", - "weight": "46", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "1522002", - "hash": "1570d7a1a0edd19717633e5df8c19842", - "profile": { - "height": "164", - "weight": "46", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "レーブル・カプリシュー", - "alias_name_display": "レーブル・カプリシュー", - "id": "1424401", - "hash": "1a58043805ce26870464007a4c92eb3d", - "profile": { - "height": "164", - "weight": "46", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "レーブル・カプリシュー", - "alias_name_display": "レーブル・カプリシュー", - "id": "1524402", - "hash": "9115963613f19ebcacb3378f581f8246", - "profile": { - "height": "164", - "weight": "46", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "気まぐれアリス", - "alias_name_display": "気まぐれアリス", - "id": "1431901", - "hash": "3815832491e393399209a0b9ae0e56ef", - "profile": { - "height": "164", - "weight": "46", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 1901, - "event_name": "童話公演 気まぐれアリスと不思議の国" - } - ] - }, - { - "alias_name": "気まぐれアリス", - "alias_name_display": "気まぐれアリス", - "id": "1531902", - "hash": "235d561428433ff56c4f2debd8316d7d", - "profile": { - "height": "164", - "weight": "46", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 1901, - "event_name": "童話公演 気まぐれアリスと不思議の国" - } - ] - }, - { - "alias_name": "シンデレラドリーム", - "alias_name_display": "シンデレラドリーム", - "id": "1435401", - "hash": "1189876e0b701fb5f80f8f4a36a19c87", - "profile": { - "height": "164", - "weight": "46", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "シンデレラドリーム", - "alias_name_display": "シンデレラドリーム", - "id": "1535402", - "hash": "ab148b33c781fb0345cd41403adb0424", - "profile": { - "height": "164", - "weight": "46", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "マジードゥラネージュ", - "alias_name_display": "マジードゥラネージュ", - "id": "1438101", - "hash": "610702181bdfb81ec803df4813886aee", - "profile": { - "height": "164", - "weight": "46", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 727, - "event_name": "第27回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "マジードゥラネージュ", - "alias_name_display": "マジードゥラネージュ", - "id": "1538102", - "hash": "09346bd07794d16a01ebdf62ea8fd570", - "profile": { - "height": "164", - "weight": "46", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 727, - "event_name": "第27回ドリームLIVEフェスティバル" - } - ] - } - ], - "units": [ - { - "id": "36", - "name": "テンプテーション・アイズ" - }, - { - "id": "65", - "name": "レイジー・レイジー" - }, - { - "id": "74", - "name": "FrenchKisS" - }, - { - "id": "126", - "name": "誘惑イビル" - }, - { - "id": "155", - "name": "セレクテッド" - }, - { - "id": "185", - "name": "LiPPS" - }, - { - "id": "196", - "name": "la Roseraie" - }, - { - "id": "215", - "name": "Project:Krone" - } - ] - }, - "32": { - "idol_id": 32, - "idol_name": "小早川紗枝", - "idol_name_display": "小早川紗枝", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1200601", - "hash": "3d5441d51a3d93214ed9798cdb5b0fe1", - "profile": { - "height": "148", - "weight": "42", - "bust": "78", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1300602", - "hash": "00855389a2e307b18ddc7a716c4cd7ec", - "profile": { - "height": "148", - "weight": "42", - "bust": "78", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "花火祭り", - "alias_name_display": "花火祭り", - "id": "1210701", - "hash": "b75a1f1e9000341b7e348532de188052", - "profile": { - "height": "148", - "weight": "42", - "bust": "78", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 408, - "event_name": "アイドルプロデュース 夜空に咲く花火編" - } - ] - }, - { - "alias_name": "花火祭り", - "alias_name_display": "花火祭り", - "id": "1310702", - "hash": "16a850adb0df8850bb39fa591a3b8a87", - "profile": { - "height": "148", - "weight": "42", - "bust": "78", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 408, - "event_name": "アイドルプロデュース 夜空に咲く花火編" - } - ] - }, - { - "alias_name": "花火祭りスマイル", - "alias_name_display": "花火祭りスマイル", - "id": "1210801", - "hash": "5eb012ecd9dbc691372a60f46636dd34", - "profile": { - "height": "148", - "weight": "42", - "bust": "78", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 408, - "event_name": "アイドルプロデュース 夜空に咲く花火編" - } - ] - }, - { - "alias_name": "花火祭りスマイル", - "alias_name_display": "花火祭りスマイル", - "id": "1310802", - "hash": "a979654b88d8c984848c4da8bf8e27c4", - "profile": { - "height": "148", - "weight": "42", - "bust": "78", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 408, - "event_name": "アイドルプロデュース 夜空に咲く花火編" - } - ] - }, - { - "alias_name": "夏の夜の天女", - "alias_name_display": "夏の夜の天女", - "id": "1402001", - "hash": "ecf899616d8c2e0975790388263ef67e", - "profile": { - "height": "148", - "weight": "42", - "bust": "78", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "夏の夜の天女", - "alias_name_display": "夏の夜の天女", - "id": "1502002", - "hash": "ff5c24d7d8bf90932a79915818e7472c", - "profile": { - "height": "148", - "weight": "42", - "bust": "78", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "はんなり京娘", - "alias_name_display": "はんなり京娘", - "id": "1409201", - "hash": "519e953aad9d655e2d34f86a8d0ec5b8", - "profile": { - "height": "148", - "weight": "42", - "bust": "78", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "はんなり京娘", - "alias_name_display": "はんなり京娘", - "id": "1509202", - "hash": "418d73386126d2687fb901deddea1ef8", - "profile": { - "height": "148", - "weight": "42", - "bust": "78", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "はんなりメイド", - "alias_name_display": "はんなりメイド", - "id": "1412701", - "hash": "fe9fbbd7f57c090d38e2188a25300ebf", - "profile": { - "height": "148", - "weight": "42", - "bust": "78", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "はんなりメイド", - "alias_name_display": "はんなりメイド", - "id": "1512702", - "hash": "7f76cdc6826e9972671f90f9cad737ac", - "profile": { - "height": "148", - "weight": "42", - "bust": "78", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "1414001", - "hash": "ff87a7aa4b5d9bf8401f1ae6e4e256fb", - "profile": { - "height": "148", - "weight": "42", - "bust": "78", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "1514002", - "hash": "e601a27731e9218244b7171b8350314b", - "profile": { - "height": "148", - "weight": "42", - "bust": "78", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "天衣の織姫", - "alias_name_display": "天衣の織姫", - "id": "1415401", - "hash": "5734c19bfc0b30b167ec301ed3c8644b", - "profile": { - "height": "148", - "weight": "42", - "bust": "78", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 707, - "event_name": "第7回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "天衣の織姫", - "alias_name_display": "天衣の織姫", - "id": "1515402", - "hash": "8fcf2d3d5fb4cb79e4a95f1b24027258", - "profile": { - "height": "148", - "weight": "42", - "bust": "78", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 707, - "event_name": "第7回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "シンデレラドリーム", - "alias_name_display": "シンデレラドリーム", - "id": "1419301", - "hash": "1eaaea63a6986091fd536f7fc5aa13ae", - "profile": { - "height": "148", - "weight": "42", - "bust": "78", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "シンデレラドリーム", - "alias_name_display": "シンデレラドリーム", - "id": "1519302", - "hash": "4e99233eb7bec767f87545c9b24b84c9", - "profile": { - "height": "148", - "weight": "42", - "bust": "78", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "白妙の絢姫", - "alias_name_display": "白妙の絢姫", - "id": "1423701", - "hash": "d5790f3f26a34f04e6dca27719fa49b6", - "profile": { - "height": "148", - "weight": "42", - "bust": "78", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "白妙の絢姫", - "alias_name_display": "白妙の絢姫", - "id": "1523702", - "hash": "bcfc346a8bebc8b91b6c2a4db68af955", - "profile": { - "height": "148", - "weight": "42", - "bust": "78", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "大和のこころ", - "alias_name_display": "大和のこころ", - "id": "1427501", - "hash": "c8543757f2537f22c13e39998c652da4", - "profile": { - "height": "148", - "weight": "42", - "bust": "78", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 1207, - "event_name": "目指せ大和撫子 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "大和のこころ", - "alias_name_display": "大和のこころ", - "id": "1527502", - "hash": "ffe272a5090faa227b489ea020f69a00", - "profile": { - "height": "148", - "weight": "42", - "bust": "78", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 1207, - "event_name": "目指せ大和撫子 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "銀幕の綺羅星", - "alias_name_display": "銀幕の綺羅星", - "id": "1433001", - "hash": "943bd10489f8c2681b5cfc48f9168190", - "profile": { - "height": "148", - "weight": "42", - "bust": "78", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": "028", - "event_name": "第28回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "銀幕の綺羅星", - "alias_name_display": "銀幕の綺羅星", - "id": "1533002", - "hash": "183e353992ea4ae9795f5951b56cbd14", - "profile": { - "height": "148", - "weight": "42", - "bust": "78", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": "028", - "event_name": "第28回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "風光る乙姫", - "alias_name_display": "風光る乙姫", - "id": "1436501", - "hash": "748375361f27cc443ffefeb77ed71053", - "profile": { - "height": "148", - "weight": "42", - "bust": "78", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "風光る乙姫", - "alias_name_display": "風光る乙姫", - "id": "1536502", - "hash": "d5e657f5ec28629effc2da211cd79455", - "profile": { - "height": "148", - "weight": "42", - "bust": "78", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "万代の藤波", - "alias_name_display": "万代の藤波", - "id": "1439901", - "hash": "13f68f7a37bdcbf6eb4292f0f1473ef3", - "profile": { - "height": "148", - "weight": "42", - "bust": "78", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 729, - "event_name": "ドリームLIVEフェスティバル ゴールデンウィークSP" - } - ] - }, - { - "alias_name": "万代の藤波", - "alias_name_display": "万代の藤波", - "id": "1539902", - "hash": "76301262a0d6d164f8d35b6148bc96cb", - "profile": { - "height": "148", - "weight": "42", - "bust": "78", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 729, - "event_name": "ドリームLIVEフェスティバル ゴールデンウィークSP" - } - ] - } - ], - "units": [ - { - "id": "41", - "name": "羽衣小町" - }, - { - "id": "43", - "name": "春色姫君" - }, - { - "id": "131", - "name": "KBYD" - }, - { - "id": "179", - "name": "春霞" - }, - { - "id": "194", - "name": "サクヤヒメ" - } - ] - }, - "33": { - "idol_id": 33, - "idol_name": "西園寺琴歌", - "idol_name_display": "西園寺琴歌", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1200701", - "hash": "20867159bc2a902527f5dc0efa76d68b", - "profile": { - "height": "156", - "weight": "46", - "bust": "87", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1300702", - "hash": "68d5be6e1422d20d4577bfd9fb25929d", - "profile": { - "height": "156", - "weight": "46", - "bust": "87", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "クッキングチャレンジ", - "alias_name_display": "クッキングチャレンジ", - "id": "1212101", - "hash": "88337a408516e2ea72ba8a25b69d3739", - "profile": { - "height": "156", - "weight": "46", - "bust": "87", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 409, - "event_name": "アイドルプロデュース チャレンジクッキング イタリアン編" - } - ] - }, - { - "alias_name": "クッキングチャレンジ", - "alias_name_display": "クッキングチャレンジ", - "id": "1312102", - "hash": "b0fc0a3b34f1dc4d7015ff992748d787", - "profile": { - "height": "156", - "weight": "46", - "bust": "87", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 409, - "event_name": "アイドルプロデュース チャレンジクッキング イタリアン編" - } - ] - }, - { - "alias_name": "クッキング・スマイル", - "alias_name_display": "クッキング・スマイル", - "id": "1212201", - "hash": "0e9052e6674c415cf96e05e2c47d87ae", - "profile": { - "height": "156", - "weight": "46", - "bust": "87", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 409, - "event_name": "アイドルプロデュース チャレンジクッキング イタリアン編" - } - ] - }, - { - "alias_name": "クッキング・スマイル", - "alias_name_display": "クッキング・スマイル", - "id": "1312202", - "hash": "50f91b233f108e33aca3854c2131ce91", - "profile": { - "height": "156", - "weight": "46", - "bust": "87", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 409, - "event_name": "アイドルプロデュース チャレンジクッキング イタリアン編" - } - ] - }, - { - "alias_name": "トキメキバレンタイン", - "alias_name_display": "トキメキバレンタイン", - "id": "1214501", - "hash": "891d3b2a397131fe10041331ec76579f", - "profile": { - "height": "156", - "weight": "46", - "bust": "87", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "トキメキバレンタイン", - "alias_name_display": "トキメキバレンタイン", - "id": "1314502", - "hash": "02b77809766989d951dbd71427bc8b4e", - "profile": { - "height": "156", - "weight": "46", - "bust": "87", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "サマーシーズン", - "alias_name_display": "サマーシーズン", - "id": "1222501", - "hash": "2ca808c34dd608a715ca7dc12abd7e61", - "profile": { - "height": "156", - "weight": "46", - "bust": "87", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "サマーシーズン", - "alias_name_display": "サマーシーズン", - "id": "1322502", - "hash": "5a3472d22bd7713b226d50f93fd35010", - "profile": { - "height": "156", - "weight": "46", - "bust": "87", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "スウィートフィール", - "alias_name_display": "スウィートフィール", - "id": "1324302", - "hash": "99baa4962244767d412e5585b86a318c", - "profile": { - "height": "156", - "weight": "46", - "bust": "87", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 717, - "event_name": "第17回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "はりきりお嬢様", - "alias_name_display": "はりきりお嬢様", - "id": "1403801", - "hash": "a12d2df2bf89c7eb4c9c79c85589d4bf", - "profile": { - "height": "156", - "weight": "46", - "bust": "87", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "はりきりお嬢様", - "alias_name_display": "はりきりお嬢様", - "id": "1503802", - "hash": "916bedb06316876a193675b005b9e65d", - "profile": { - "height": "156", - "weight": "46", - "bust": "87", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "花園の春風", - "alias_name_display": "花園の春風", - "id": "1413901", - "hash": "a3bb548475ded39750363881d0d9e565", - "profile": { - "height": "156", - "weight": "46", - "bust": "87", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 213, - "event_name": "アイドルサバイバルinフラワーガーデン" - } - ] - }, - { - "alias_name": "花園の春風", - "alias_name_display": "花園の春風", - "id": "1513902", - "hash": "46a013ca127d7f819c23d119e7a7edda", - "profile": { - "height": "156", - "weight": "46", - "bust": "87", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 213, - "event_name": "アイドルサバイバルinフラワーガーデン" - } - ] - }, - { - "alias_name": "ココロ晴れ模様", - "alias_name_display": "ココロ晴れ模様", - "id": "1419201", - "hash": "67aeacd0ecebf79e4dff4b81b17933ea", - "profile": { - "height": "156", - "weight": "46", - "bust": "87", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ココロ晴れ模様", - "alias_name_display": "ココロ晴れ模様", - "id": "1519202", - "hash": "6a0ab809266438988129412e3b3c0a2f", - "profile": { - "height": "156", - "weight": "46", - "bust": "87", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "絢爛華麗", - "alias_name_display": "絢爛華麗", - "id": "1422501", - "hash": "f8e37de970056cb819e9b634f5ed3b50", - "profile": { - "height": "156", - "weight": "46", - "bust": "87", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 1205, - "event_name": "目指せ優雅なお嬢様 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "絢爛華麗", - "alias_name_display": "絢爛華麗", - "id": "1522502", - "hash": "b94d27f8bf6ebca0baf1ddc7f0b58cd1", - "profile": { - "height": "156", - "weight": "46", - "bust": "87", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 1205, - "event_name": "目指せ優雅なお嬢様 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "トロピカルサマー", - "alias_name_display": "トロピカルサマー", - "id": "1434401", - "hash": "0732aa4adbd00581535c13bcaf43b50c", - "profile": { - "height": "156", - "weight": "46", - "bust": "87", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 723, - "event_name": "水着DEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "トロピカルサマー", - "alias_name_display": "トロピカルサマー", - "id": "1534402", - "hash": "85a78a16c15d828a821e3be821b3793c", - "profile": { - "height": "156", - "weight": "46", - "bust": "87", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 723, - "event_name": "水着DEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "セレブリティロード", - "alias_name_display": "セレブリティロード", - "id": "1439001", - "hash": "4432b1bb442fe24e22c44557b583eab5", - "profile": { - "height": "156", - "weight": "46", - "bust": "87", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 822, - "event_name": "第22回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "セレブリティロード", - "alias_name_display": "セレブリティロード", - "id": "1539002", - "hash": "37f641a6738f8d5735db957a37b781ae", - "profile": { - "height": "156", - "weight": "46", - "bust": "87", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 822, - "event_name": "第22回アイドルLIVEロワイヤル" - } - ] - } - ], - "units": [ - { - "id": "51", - "name": "フィオレンティナ" - }, - { - "id": "96", - "name": "チャレンジクッキング" - }, - { - "id": "134", - "name": "ノーブルセレブリティ" - } - ] - }, - "34": { - "idol_id": 34, - "idol_name": "双葉杏", - "idol_name_display": "双葉杏", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1200801", - "hash": "f6db9a4a1e364bf7da838ed3dce77f97", - "profile": { - "height": "139", - "weight": "30", - "bust": "?", - "waist": "?", - "hip": "?" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1300802", - "hash": "28407ac006ec510467814e7b512f0a06", - "profile": { - "height": "139", - "weight": "30", - "bust": "?", - "waist": "?", - "hip": "?" - }, - "event": [] - }, - { - "alias_name": "夏休み", - "alias_name_display": "夏休み", - "id": "1317402", - "hash": "4708ed7e50952392ecc752f78a2fc494", - "profile": { - "height": "139", - "weight": "30", - "bust": "?", - "waist": "?", - "hip": "?" - }, - "event": [ - { - "event_id": 413, - "event_name": "みんなのなつやすみ" - } - ] - }, - { - "alias_name": "笑顔の夏休み", - "alias_name_display": "笑顔の夏休み", - "id": "1317502", - "hash": "8c4a37be2aaa7ad189f5de329a9fd45b", - "profile": { - "height": "139", - "weight": "30", - "bust": "?", - "waist": "?", - "hip": "?" - }, - "event": [ - { - "event_id": 413, - "event_name": "みんなのなつやすみ" - } - ] - }, - { - "alias_name": "ハイカラサクラ", - "alias_name_display": "ハイカラサクラ", - "id": "1221001", - "hash": "be6b498b2324fa909e6ad58fa03e875e", - "profile": { - "height": "139", - "weight": "30", - "bust": "?", - "waist": "?", - "hip": "?" - }, - "event": [] - }, - { - "alias_name": "ハイカラサクラ", - "alias_name_display": "ハイカラサクラ", - "id": "1321002", - "hash": "bcc92a7d693443ae50353418e9f01e87", - "profile": { - "height": "139", - "weight": "30", - "bust": "?", - "waist": "?", - "hip": "?" - }, - "event": [] - }, - { - "alias_name": "だらだら妖精", - "alias_name_display": "だらだら妖精", - "id": "1400801", - "hash": "fa5391c4ffc5f3aaaab8f4be52e4ede2", - "profile": { - "height": "139", - "weight": "30", - "bust": "?", - "waist": "?", - "hip": "?" - }, - "event": [] - }, - { - "alias_name": "だらだら妖精", - "alias_name_display": "だらだら妖精", - "id": "1500802", - "hash": "06bf3b4fc27d472d11c5735d4bf1008c", - "profile": { - "height": "139", - "weight": "30", - "bust": "?", - "waist": "?", - "hip": "?" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "1401601", - "hash": "f67ab6bb27463ff30c1bf3eb9e30c205", - "profile": { - "height": "139", - "weight": "30", - "bust": "?", - "waist": "?", - "hip": "?" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "1501602", - "hash": "0749a5f548083353b1c06f7a71ea2796", - "profile": { - "height": "139", - "weight": "30", - "bust": "?", - "waist": "?", - "hip": "?" - }, - "event": [] - }, - { - "alias_name": "ハロウィンぷちデビル", - "alias_name_display": "ハロウィンぷちデビル", - "id": "1403001", - "hash": "d48d11a6d14755a40c497076b2010f6e", - "profile": { - "height": "139", - "weight": "30", - "bust": "?", - "waist": "?", - "hip": "?" - }, - "event": [] - }, - { - "alias_name": "ハロウィンぷちデビル", - "alias_name_display": "ハロウィンぷちデビル", - "id": "1503002", - "hash": "68be112533136c5b5838059c76802622", - "profile": { - "height": "139", - "weight": "30", - "bust": "?", - "waist": "?", - "hip": "?" - }, - "event": [] - }, - { - "alias_name": "だだっ子お姫さま", - "alias_name_display": "だだっ子お姫さま", - "id": "1405901", - "hash": "9e3d3bf199e1b48a4f973abcd484d078", - "profile": { - "height": "139", - "weight": "30", - "bust": "?", - "waist": "?", - "hip": "?" - }, - "event": [] - }, - { - "alias_name": "だだっ子お姫さま", - "alias_name_display": "だだっ子お姫さま", - "id": "1505902", - "hash": "2519a9de93e6cf2e5fee9e4cb9776afe", - "profile": { - "height": "139", - "weight": "30", - "bust": "?", - "waist": "?", - "hip": "?" - }, - "event": [] - }, - { - "alias_name": "新春の甘姫", - "alias_name_display": "新春の甘姫", - "id": "1411401", - "hash": "fda6831b48d56bb489de02a54b6e5c1e", - "profile": { - "height": "139", - "weight": "30", - "bust": "?", - "waist": "?", - "hip": "?" - }, - "event": [] - }, - { - "alias_name": "新春の甘姫", - "alias_name_display": "新春の甘姫", - "id": "1511402", - "hash": "bc7ab362d3fa9c3bbb60bad0f61efded", - "profile": { - "height": "139", - "weight": "30", - "bust": "?", - "waist": "?", - "hip": "?" - }, - "event": [] - }, - { - "alias_name": "ワンダフルマジック", - "alias_name_display": "ワンダフルマジック", - "id": "1413201", - "hash": "451734e83549281289ac3b275f16855c", - "profile": { - "height": "139", - "weight": "30", - "bust": "?", - "waist": "?", - "hip": "?" - }, - "event": [] - }, - { - "alias_name": "ワンダフルマジック", - "alias_name_display": "ワンダフルマジック", - "id": "1513202", - "hash": "f86d864ff653884e26e6f2c63457bb11", - "profile": { - "height": "139", - "weight": "30", - "bust": "?", - "waist": "?", - "hip": "?" - }, - "event": [] - }, - { - "alias_name": "杏の夏休み", - "alias_name_display": "杏の夏休み", - "id": "1415901", - "hash": "2141fdb8ac6c65306f07450a0b6e4690", - "profile": { - "height": "139", - "weight": "30", - "bust": "?", - "waist": "?", - "hip": "?" - }, - "event": [ - { - "event_id": 413, - "event_name": "みんなのなつやすみ" - } - ] - }, - { - "alias_name": "杏の夏休み", - "alias_name_display": "杏の夏休み", - "id": "1515902", - "hash": "8239f7fd13b7716ec6bce3eff0de15cf", - "profile": { - "height": "139", - "weight": "30", - "bust": "?", - "waist": "?", - "hip": "?" - }, - "event": [ - { - "event_id": 413, - "event_name": "みんなのなつやすみ" - } - ] - }, - { - "alias_name": "ノーアイドル・ノーライフ", - "alias_name_display": "ノーアイドル・ノーライフ", - "id": "1518802", - "hash": "fb27330f9cd9285f01e38151db642b5b", - "profile": { - "height": "139", - "weight": "30", - "bust": "?", - "waist": "?", - "hip": "?" - }, - "event": [] - }, - { - "alias_name": "G4U!", - "alias_name_display": "G4U!", - "id": "1525902", - "hash": "c49fa50c14b052775646fe00e1bf7faf", - "profile": { - "height": "139", - "weight": "30", - "bust": "?", - "waist": "?", - "hip": "?" - }, - "event": [] - }, - { - "alias_name": "キャンディアイランド", - "alias_name_display": "キャンディアイランド", - "id": "1526802", - "hash": "f3b18751e845843846fc93062cc3409a", - "profile": { - "height": "139", - "weight": "30", - "bust": "?", - "waist": "?", - "hip": "?" - }, - "event": [] - }, - { - "alias_name": "わがままサンタ", - "alias_name_display": "わがままサンタ", - "id": "1429501", - "hash": "b565fc1857e5773d5aa49d06a90fa4d2", - "profile": { - "height": "139", - "weight": "30", - "bust": "?", - "waist": "?", - "hip": "?" - }, - "event": [] - }, - { - "alias_name": "わがままサンタ", - "alias_name_display": "わがままサンタ", - "id": "1529502", - "hash": "333da524bde405e4ce1612183eb8971b", - "profile": { - "height": "139", - "weight": "30", - "bust": "?", - "waist": "?", - "hip": "?" - }, - "event": [] - }, - { - "alias_name": "ハッピーライフワーク", - "alias_name_display": "ハッピーライフワーク", - "id": "1432901", - "hash": "7363848059cb366197a23423e4b50718", - "profile": { - "height": "139", - "weight": "30", - "bust": "?", - "waist": "?", - "hip": "?" - }, - "event": [] - }, - { - "alias_name": "ハッピーライフワーク", - "alias_name_display": "ハッピーライフワーク", - "id": "1532902", - "hash": "f3146fec776d68a022b7424198d733df", - "profile": { - "height": "139", - "weight": "30", - "bust": "?", - "waist": "?", - "hip": "?" - }, - "event": [] - }, - { - "alias_name": "あんずのきもち", - "alias_name_display": "あんずのきもち", - "id": "1438201", - "hash": "29daabf3b7a002ea14915a6655fd080b", - "profile": { - "height": "139", - "weight": "30", - "bust": "?", - "waist": "?", - "hip": "?" - }, - "event": [] - }, - { - "alias_name": "あんずのきもち", - "alias_name_display": "あんずのきもち", - "id": "1538202", - "hash": "458454502049072b7c4f264362088614", - "profile": { - "height": "139", - "weight": "30", - "bust": "?", - "waist": "?", - "hip": "?" - }, - "event": [] - } - ], - "units": [ - { - "id": "76", - "name": "HappyHappyTwin" - }, - { - "id": "137", - "name": "CANDY ISLAND" - }, - { - "id": "158", - "name": "ハイカラサクラ" - }, - { - "id": "186", - "name": "LittlePOPS" - }, - { - "id": "195", - "name": "C5" - }, - { - "id": "213", - "name": "CINDERELLA PROJECT" - } - ] - }, - "35": { - "idol_id": 35, - "idol_name": "楊菲菲", - "idol_name_display": "楊菲菲", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1200901", - "hash": "0b9a4389717199d57e7001d411c67791", - "profile": { - "height": "152", - "weight": "41", - "bust": "82", - "waist": "58", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1300902", - "hash": "07c7b962d538e859602c9c6859faf8fe", - "profile": { - "height": "152", - "weight": "41", - "bust": "82", - "waist": "58", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "制服コレクション", - "alias_name_display": "制服コレクション", - "id": "1203801", - "hash": "84be1e67e057d843bd0eb46f1540d18c", - "profile": { - "height": "152", - "weight": "41", - "bust": "82", - "waist": "58", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "制服コレクション", - "alias_name_display": "制服コレクション", - "id": "1303802", - "hash": "753750c2b678c8617ce06d6ca935b48c", - "profile": { - "height": "152", - "weight": "41", - "bust": "82", - "waist": "58", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "トキメキバレンタイン", - "alias_name_display": "トキメキバレンタイン", - "id": "1214601", - "hash": "5c830b15548cf9f8c0b706feb765dc48", - "profile": { - "height": "152", - "weight": "41", - "bust": "82", - "waist": "58", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "トキメキバレンタイン", - "alias_name_display": "トキメキバレンタイン", - "id": "1314602", - "hash": "314b709e14f033b561333be1667c2a88", - "profile": { - "height": "152", - "weight": "41", - "bust": "82", - "waist": "58", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "ブシドーナデシコ", - "alias_name_display": "ブシドーナデシコ", - "id": "1218201", - "hash": "258c7d9292272921ae3731d3ffe239d9", - "profile": { - "height": "152", - "weight": "41", - "bust": "82", - "waist": "58", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "ブシドーナデシコ", - "alias_name_display": "ブシドーナデシコ", - "id": "1318202", - "hash": "e8fda8efaad9a349b6a7071d0e10e0b4", - "profile": { - "height": "152", - "weight": "41", - "bust": "82", - "waist": "58", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "ガーリースタイル", - "alias_name_display": "ガーリースタイル", - "id": "1224601", - "hash": "c388718bcf729ef026da145417f86ac3", - "profile": { - "height": "152", - "weight": "41", - "bust": "82", - "waist": "58", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "ガーリースタイル", - "alias_name_display": "ガーリースタイル", - "id": "1324602", - "hash": "f7a27f37ed56823171d7ec434280b94a", - "profile": { - "height": "152", - "weight": "41", - "bust": "82", - "waist": "58", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "ウェディングセレモニー", - "alias_name_display": "ウェディングセレモニー", - "id": "1228401", - "hash": "70371c6e3790ad4e7a6aa6a3d835313a", - "profile": { - "height": "152", - "weight": "41", - "bust": "82", - "waist": "58", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "ウェディングセレモニー", - "alias_name_display": "ウェディングセレモニー", - "id": "1328402", - "hash": "645f9c84d5e3470979cb9ae80078cfba", - "profile": { - "height": "152", - "weight": "41", - "bust": "82", - "waist": "58", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "繚乱の舞姫", - "alias_name_display": "繚乱の舞姫", - "id": "1403701", - "hash": "0d69d20741d3e2ded57afe1265e01c1b", - "profile": { - "height": "152", - "weight": "41", - "bust": "82", - "waist": "58", - "hip": "84" - }, - "event": [ - { - "event_id": 501, - "event_name": "アイドルLIVEツアーinUSA" - } - ] - }, - { - "alias_name": "繚乱の舞姫", - "alias_name_display": "繚乱の舞姫", - "id": "1503702", - "hash": "658f3b5d8a57402d73f6f5b8fbf98179", - "profile": { - "height": "152", - "weight": "41", - "bust": "82", - "waist": "58", - "hip": "84" - }, - "event": [ - { - "event_id": 501, - "event_name": "アイドルLIVEツアーinUSA" - } - ] - }, - { - "alias_name": "ハートフェルトパーティー", - "alias_name_display": "ハートフェルトパーティー", - "id": "1407701", - "hash": "3e2f37c00261808dcbf8415535d34084", - "profile": { - "height": "152", - "weight": "41", - "bust": "82", - "waist": "58", - "hip": "84" - }, - "event": [ - { - "event_id": "011", - "event_name": "第11回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "ハートフェルトパーティー", - "alias_name_display": "ハートフェルトパーティー", - "id": "1507702", - "hash": "25757551fc8ff326f8b928b50228303c", - "profile": { - "height": "152", - "weight": "41", - "bust": "82", - "waist": "58", - "hip": "84" - }, - "event": [ - { - "event_id": "011", - "event_name": "第11回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "幸福娘々", - "alias_name_display": "幸福娘々", - "id": "1421801", - "hash": "bdccb733796bcc6f371daf922723613a", - "profile": { - "height": "152", - "weight": "41", - "bust": "82", - "waist": "58", - "hip": "84" - }, - "event": [ - { - "event_id": 711, - "event_name": "福は内DEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "幸福娘々", - "alias_name_display": "幸福娘々", - "id": "1521802", - "hash": "3540dfd706534f58264d1b479f3e8344", - "profile": { - "height": "152", - "weight": "41", - "bust": "82", - "waist": "58", - "hip": "84" - }, - "event": [ - { - "event_id": 711, - "event_name": "福は内DEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "玲瓏水晶", - "alias_name_display": "玲瓏水晶", - "id": "1424501", - "hash": "4f20573d3dff91b7701a154fc841e1cc", - "profile": { - "height": "152", - "weight": "41", - "bust": "82", - "waist": "58", - "hip": "84" - }, - "event": [ - { - "event_id": 812, - "event_name": "第12回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "玲瓏水晶", - "alias_name_display": "玲瓏水晶", - "id": "1524502", - "hash": "c46b6174a69648b148c8856a9991ee3b", - "profile": { - "height": "152", - "weight": "41", - "bust": "82", - "waist": "58", - "hip": "84" - }, - "event": [ - { - "event_id": 812, - "event_name": "第12回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "加油チアー", - "alias_name_display": "加油チアー", - "id": "1437401", - "hash": "ec67c8c8a52a99a464d17895c38bacb0", - "profile": { - "height": "152", - "weight": "41", - "bust": "82", - "waist": "58", - "hip": "84" - }, - "event": [ - { - "event_id": 1510, - "event_name": "チーム対抗トークバトルショー オールスターSP" - } - ] - }, - { - "alias_name": "加油チアー", - "alias_name_display": "加油チアー", - "id": "1537402", - "hash": "6f2cef2655f476d2f3f6ea80d8f481ec", - "profile": { - "height": "152", - "weight": "41", - "bust": "82", - "waist": "58", - "hip": "84" - }, - "event": [ - { - "event_id": 1510, - "event_name": "チーム対抗トークバトルショー オールスターSP" - } - ] - } - ], - "units": [ - { - "id": "26", - "name": "スクールガールフレンズ" - }, - { - "id": "178", - "name": "からぱれ" - } - ] - }, - "36": { - "idol_id": 36, - "idol_name": "桃井あずき", - "idol_name_display": "桃井あずき", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1201001", - "hash": "4efc876705241a31f7ecf57ae3dc8ef4", - "profile": { - "height": "145", - "weight": "40", - "bust": "80", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1301002", - "hash": "fa6d973aa7f7b480fa96338ffecc9ed9", - "profile": { - "height": "145", - "weight": "40", - "bust": "80", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "桜祭り", - "alias_name_display": "桜祭り", - "id": "1208801", - "hash": "963b05e86daf038003b417060a1646ed", - "profile": { - "height": "145", - "weight": "40", - "bust": "80", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 406, - "event_name": "アイドルプロデュース 春の桜祭り編" - } - ] - }, - { - "alias_name": "桜祭り", - "alias_name_display": "桜祭り", - "id": "1308802", - "hash": "72e2b4dade433fec680531a9839da725", - "profile": { - "height": "145", - "weight": "40", - "bust": "80", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 406, - "event_name": "アイドルプロデュース 春の桜祭り編" - } - ] - }, - { - "alias_name": "桜祭りスマイル", - "alias_name_display": "桜祭りスマイル", - "id": "1208901", - "hash": "55689885ba0c5749221b56330494a77a", - "profile": { - "height": "145", - "weight": "40", - "bust": "80", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 406, - "event_name": "アイドルプロデュース 春の桜祭り編" - } - ] - }, - { - "alias_name": "桜祭りスマイル", - "alias_name_display": "桜祭りスマイル", - "id": "1308902", - "hash": "f0514789e4b35f9e8d4086e85bfa43ed", - "profile": { - "height": "145", - "weight": "40", - "bust": "80", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 406, - "event_name": "アイドルプロデュース 春の桜祭り編" - } - ] - }, - { - "alias_name": "フレンズ大作戦", - "alias_name_display": "フレンズ大作戦", - "id": "1216901", - "hash": "096928f93993001378e0a9dfa0e84d77", - "profile": { - "height": "145", - "weight": "40", - "bust": "80", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "フレンズ大作戦", - "alias_name_display": "フレンズ大作戦", - "id": "1316902", - "hash": "0574e12bd0b603f118f7961ba4c3e72c", - "profile": { - "height": "145", - "weight": "40", - "bust": "80", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "サマーバケーション", - "alias_name_display": "サマーバケーション", - "id": "1222901", - "hash": "5972a0d0eacd1baf011aaead666663fa", - "profile": { - "height": "145", - "weight": "40", - "bust": "80", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "サマーバケーション", - "alias_name_display": "サマーバケーション", - "id": "1322902", - "hash": "fd84cd6a9120f8ffcafa17c834e6d421", - "profile": { - "height": "145", - "weight": "40", - "bust": "80", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "秋の学園祭", - "alias_name_display": "秋の学園祭", - "id": "1230101", - "hash": "72271817bbcfa730bf3454c26f94eaff", - "profile": { - "height": "145", - "weight": "40", - "bust": "80", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "秋の学園祭", - "alias_name_display": "秋の学園祭", - "id": "1330102", - "hash": "ea55478abc68ac42807e04ff2164cabe", - "profile": { - "height": "145", - "weight": "40", - "bust": "80", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "まごころメイド", - "alias_name_display": "まごころメイド", - "id": "1233001", - "hash": "24bcddb9bcf4f50c23e64b2657329db3", - "profile": { - "height": "145", - "weight": "40", - "bust": "80", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "まごころメイド", - "alias_name_display": "まごころメイド", - "id": "1333002", - "hash": "4dd815b7097a2487a982d3d071b570ab", - "profile": { - "height": "145", - "weight": "40", - "bust": "80", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "艶娘大作戦", - "alias_name_display": "艶娘大作戦", - "id": "1400701", - "hash": "46378cb4d0fffad00600ba63d8a2d183", - "profile": { - "height": "145", - "weight": "40", - "bust": "80", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 201, - "event_name": "アイドルサバイバル" - } - ] - }, - { - "alias_name": "艶娘大作戦", - "alias_name_display": "艶娘大作戦", - "id": "1500702", - "hash": "7e6f804d5a9f4f886b637c99669b2ee0", - "profile": { - "height": "145", - "weight": "40", - "bust": "80", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 201, - "event_name": "アイドルサバイバル" - } - ] - }, - { - "alias_name": "湯けむり大作戦", - "alias_name_display": "湯けむり大作戦", - "id": "1403501", - "hash": "0e28275081099ed145f74b056ec0e813", - "profile": { - "height": "145", - "weight": "40", - "bust": "80", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "湯けむり大作戦", - "alias_name_display": "湯けむり大作戦", - "id": "1503502", - "hash": "2b2ccaa519a19a25d519eb2b35aac5a1", - "profile": { - "height": "145", - "weight": "40", - "bust": "80", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "メルヘン大作戦", - "alias_name_display": "メルヘン大作戦", - "id": "1408501", - "hash": "cebea77bf64e2434c3ecafd915d2d8d2", - "profile": { - "height": "145", - "weight": "40", - "bust": "80", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "メルヘン大作戦", - "alias_name_display": "メルヘン大作戦", - "id": "1508502", - "hash": "e0d8ee3ba65f7a1db58ab820537d8665", - "profile": { - "height": "145", - "weight": "40", - "bust": "80", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "ロワイヤル・スクエア", - "alias_name_display": "ロワイヤル・スクエア", - "id": "1421301", - "hash": "dbea89c47dd5b612f5c1d0a802c77d19", - "profile": { - "height": "145", - "weight": "40", - "bust": "80", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 809, - "event_name": "第9回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ロワイヤル・スクエア", - "alias_name_display": "ロワイヤル・スクエア", - "id": "1521302", - "hash": "5c926c00a2911519dcdaec1349c4297f", - "profile": { - "height": "145", - "weight": "40", - "bust": "80", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 809, - "event_name": "第9回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "チャイナ大作戦", - "alias_name_display": "チャイナ大作戦", - "id": "1432501", - "hash": "f7a21d6187b06fa18ed0bf215310a7cb", - "profile": { - "height": "145", - "weight": "40", - "bust": "80", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "チャイナ大作戦", - "alias_name_display": "チャイナ大作戦", - "id": "1532502", - "hash": "cf166d5c57c0446980b7393d66318f22", - "profile": { - "height": "145", - "weight": "40", - "bust": "80", - "waist": "55", - "hip": "78" - }, - "event": [] - } - ], - "units": [ - { - "id": "88", - "name": "桜花小町" - }, - { - "id": "163", - "name": "フリルドスクエア" - } - ] - }, - "37": { - "idol_id": 37, - "idol_name": "涼宮星花", - "idol_name_display": "涼宮星花", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1201101", - "hash": "e25bfc4f11de8a6ae9c2039c90c21348", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1301102", - "hash": "fe2ffdada9697df45b8967e875f05fac", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "UKスタイル", - "alias_name_display": "UKスタイル", - "id": "1207501", - "hash": "52d8710dc5cde4cdcef8c3191012e6d6", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 502, - "event_name": "アイドルLIVEツアーinイギリス" - } - ] - }, - { - "alias_name": "UKスタイル", - "alias_name_display": "UKスタイル", - "id": "1307502", - "hash": "c9660e96a053c8c20baf961e2b8c3987", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 502, - "event_name": "アイドルLIVEツアーinイギリス" - } - ] - }, - { - "alias_name": "優しい旋律", - "alias_name_display": "優しい旋律", - "id": "1211801", - "hash": "3ba4b6c440bc9865e3ae92e6e698008e", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 507, - "event_name": "LIVEツアーカーニバルinドイツ" - } - ] - }, - { - "alias_name": "優しい旋律", - "alias_name_display": "優しい旋律", - "id": "1311802", - "hash": "bc953b2f0ec510c22eac406cf9bf3443", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 507, - "event_name": "LIVEツアーカーニバルinドイツ" - } - ] - }, - { - "alias_name": "ロックI.C", - "alias_name_display": "ロックI.C", - "id": "1317602", - "hash": "6522c3fb23ccf563aad50deebcab512b", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 1202, - "event_name": "目指せロックスター アイドルチャレンジ" - } - ] - }, - { - "alias_name": "さわやかスポーツ", - "alias_name_display": "さわやかスポーツ", - "id": "1221601", - "hash": "30ac0cfd82daa33c8a661016a0009c90", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "さわやかスポーツ", - "alias_name_display": "さわやかスポーツ", - "id": "1321602", - "hash": "118b941b346b356e9a0dddd100b73dcb", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "ヘルシーリフレッシュ", - "alias_name_display": "ヘルシーリフレッシュ", - "id": "1228601", - "hash": "291302f8800040930835be5be87a247e", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "ヘルシーリフレッシュ", - "alias_name_display": "ヘルシーリフレッシュ", - "id": "1328602", - "hash": "f8a4150602d2e7ae3ee4e94e40d99383", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "ウィンターリゾートビーチ", - "alias_name_display": "ウィンターリゾートビーチ", - "id": "1231301", - "hash": "af63524aed4f0e699b1de4eb7eba4b62", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "ウィンターリゾートビーチ", - "alias_name_display": "ウィンターリゾートビーチ", - "id": "1331302", - "hash": "9ff0c7e86bb6701f7bc022dccc35a9a1", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "小悪魔お嬢様", - "alias_name_display": "小悪魔お嬢様", - "id": "1406501", - "hash": "ee49eaecc77b2a1dfaeacd791c5aa02e", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "小悪魔お嬢様", - "alias_name_display": "小悪魔お嬢様", - "id": "1506502", - "hash": "f065a7f51f813216fa98deb02e1b6558", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "お嬢様の一幕", - "alias_name_display": "お嬢様の一幕", - "id": "1412101", - "hash": "cc0bc0563db4d31f94553bec36f3ca30", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 705, - "event_name": "第5回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "お嬢様の一幕", - "alias_name_display": "お嬢様の一幕", - "id": "1512102", - "hash": "b5c0174f4edd5af240e21e6da73fefa8", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 705, - "event_name": "第5回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ガールズロッカー", - "alias_name_display": "ガールズロッカー", - "id": "1417101", - "hash": "8f572e0b5bd2cde69ae199dfffb951d4", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 1202, - "event_name": "目指せロックスター アイドルチャレンジ" - } - ] - }, - { - "alias_name": "ガールズロッカー", - "alias_name_display": "ガールズロッカー", - "id": "1517102", - "hash": "7be787dc8fe32a61130cfa876ac1c6e9", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 1202, - "event_name": "目指せロックスター アイドルチャレンジ" - } - ] - }, - { - "alias_name": "ガールズロッカー・S", - "alias_name_display": "ガールズロッカー・S", - "id": "1417201", - "hash": "47d6db9899b8a6573a7c81e8db4fec3a", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 1202, - "event_name": "目指せロックスター アイドルチャレンジ" - } - ] - }, - { - "alias_name": "ガールズロッカー・S", - "alias_name_display": "ガールズロッカー・S", - "id": "1517202", - "hash": "9a5fd2fbdb9c27b091d92a84cef6463c", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 1202, - "event_name": "目指せロックスター アイドルチャレンジ" - } - ] - }, - { - "alias_name": "リズムアップ", - "alias_name_display": "リズムアップ", - "id": "1429001", - "hash": "8a224c1fb1faaf77041d8087dbd76710", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 1404, - "event_name": "第4回ぷちデレラコレクション" - } - ] - }, - { - "alias_name": "リズムアップ", - "alias_name_display": "リズムアップ", - "id": "1529002", - "hash": "a27419ca801cfd72eb2a724f82cdaf55", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 1404, - "event_name": "第4回ぷちデレラコレクション" - } - ] - } - ], - "units": [ - { - "id": "121", - "name": "ヘルシーサバイブ" - }, - { - "id": "134", - "name": "ノーブルセレブリティ" - }, - { - "id": "169", - "name": "FOUR PIECE" - }, - { - "id": "170", - "name": "UKスタイル" - } - ] - }, - "38": { - "idol_id": 38, - "idol_name": "月宮雅", - "idol_name_display": "月宮雅", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1201201", - "hash": "7c175ee387814c3af476068126e9a693", - "profile": { - "height": "153", - "weight": "44", - "bust": "86", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1301202", - "hash": "8063038338477f74dbd692f75dadb42b", - "profile": { - "height": "153", - "weight": "44", - "bust": "86", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "エレガントレッド", - "alias_name_display": "エレガントレッド", - "id": "1206901", - "hash": "caed99715be00834924660ef829d1828", - "profile": { - "height": "153", - "weight": "44", - "bust": "86", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "エレガントレッド", - "alias_name_display": "エレガントレッド", - "id": "1306902", - "hash": "c0ff3b5b0c1a27a9c588a523004f6289", - "profile": { - "height": "153", - "weight": "44", - "bust": "86", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ピンキービキニ", - "alias_name_display": "ピンキービキニ", - "id": "1211301", - "hash": "9753b636f0ca1066fd101e5b4df7c022", - "profile": { - "height": "153", - "weight": "44", - "bust": "86", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ピンキービキニ", - "alias_name_display": "ピンキービキニ", - "id": "1311302", - "hash": "6b0b2de1e6e4ef2116b183803d25c17d", - "profile": { - "height": "153", - "weight": "44", - "bust": "86", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "セレクトメイド", - "alias_name_display": "セレクトメイド", - "id": "1215001", - "hash": "bd4c00d4b8ad3eed06511322b751bce0", - "profile": { - "height": "153", - "weight": "44", - "bust": "86", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "セレクトメイド", - "alias_name_display": "セレクトメイド", - "id": "1315002", - "hash": "de9f7f33793a7dd6c3165d79d5551938", - "profile": { - "height": "153", - "weight": "44", - "bust": "86", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "スウィートガール", - "alias_name_display": "スウィートガール", - "id": "1323302", - "hash": "1ce85a1d9321855918cc353ccb64be18", - "profile": { - "height": "153", - "weight": "44", - "bust": "86", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 715, - "event_name": "第15回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "思い出の形", - "alias_name_display": "思い出の形", - "id": "1227601", - "hash": "5f676b1eb5a5860c9286bb12f923a309", - "profile": { - "height": "153", - "weight": "44", - "bust": "86", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "思い出の形", - "alias_name_display": "思い出の形", - "id": "1327602", - "hash": "d57de9624ff48a962e3a773d2886b8c0", - "profile": { - "height": "153", - "weight": "44", - "bust": "86", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "桜ガール", - "alias_name_display": "桜ガール", - "id": "1401201", - "hash": "a541e1700026bd6b0383659bd92c006b", - "profile": { - "height": "153", - "weight": "44", - "bust": "86", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 104, - "event_name": "桜舞う花見祭り" - } - ] - }, - { - "alias_name": "桜ガール", - "alias_name_display": "桜ガール", - "id": "1501202", - "hash": "afb1d70598ac915ff4ca6b31bc6073ab", - "profile": { - "height": "153", - "weight": "44", - "bust": "86", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 104, - "event_name": "桜舞う花見祭り" - } - ] - }, - { - "alias_name": "華・美・雅", - "alias_name_display": "華・美・雅", - "id": "1415801", - "hash": "1f1542c72d0aef515d3d40838783572a", - "profile": { - "height": "153", - "weight": "44", - "bust": "86", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 1301, - "event_name": "プロダクションマッチフェスティバルS" - } - ] - }, - { - "alias_name": "華・美・雅", - "alias_name_display": "華・美・雅", - "id": "1515802", - "hash": "7d15fa5eb270efe4d371bbb6f17dfde2", - "profile": { - "height": "153", - "weight": "44", - "bust": "86", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 1301, - "event_name": "プロダクションマッチフェスティバルS" - } - ] - }, - { - "alias_name": "スウィート・ロワイヤル", - "alias_name_display": "スウィート・ロワイヤル", - "id": "1422301", - "hash": "0e32a0dafd89eb55cc8a31b0fcc6ef0b", - "profile": { - "height": "153", - "weight": "44", - "bust": "86", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 810, - "event_name": "アイドルLIVEロワイヤル バレンタインSP" - } - ] - }, - { - "alias_name": "スウィート・ロワイヤル", - "alias_name_display": "スウィート・ロワイヤル", - "id": "1522302", - "hash": "4ff3d0f9b5375da499d0d0f26c960500", - "profile": { - "height": "153", - "weight": "44", - "bust": "86", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 810, - "event_name": "アイドルLIVEロワイヤル バレンタインSP" - } - ] - }, - { - "alias_name": "ミルキーミント", - "alias_name_display": "ミルキーミント", - "id": "1436101", - "hash": "1ac01a720d642c8679ee7aaa60c5ef7d", - "profile": { - "height": "153", - "weight": "44", - "bust": "86", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 1409, - "event_name": "第9回ぷちデレラコレクション" - } - ] - }, - { - "alias_name": "ミルキーミント", - "alias_name_display": "ミルキーミント", - "id": "1536102", - "hash": "919e170503dee2d9ca5697d7903dcf56", - "profile": { - "height": "153", - "weight": "44", - "bust": "86", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 1409, - "event_name": "第9回ぷちデレラコレクション" - } - ] - }, - { - "alias_name": "ルックアットミー", - "alias_name_display": "ルックアットミー", - "id": "1439701", - "hash": "27d9297f2fa9b6bee8a4e1ecdf8f0a49", - "profile": { - "height": "153", - "weight": "44", - "bust": "86", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ルックアットミー", - "alias_name_display": "ルックアットミー", - "id": "1539702", - "hash": "ea6ea7bc7bb994ee3f40bf04f6126ec8", - "profile": { - "height": "153", - "weight": "44", - "bust": "86", - "waist": "56", - "hip": "82" - }, - "event": [] - } - ], - "units": [ - { - "id": "89", - "name": "ガールズ・パワー" - } - ] - }, - "39": { - "idol_id": 39, - "idol_name": "兵藤レナ", - "idol_name_display": "兵藤レナ", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1201301", - "hash": "fc97ba28d3a4f9ba0863b15761df3403", - "profile": { - "height": "167", - "weight": "48", - "bust": "92", - "waist": "56", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1301302", - "hash": "1a44a4f1c5ab36cbd0371578241348d7", - "profile": { - "height": "167", - "weight": "48", - "bust": "92", - "waist": "56", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "ディーラーズハート", - "alias_name_display": "ディーラーズハート", - "id": "1204801", - "hash": "9a344a0f7eacff98f66992e81351ccf4", - "profile": { - "height": "167", - "weight": "48", - "bust": "92", - "waist": "56", - "hip": "84" - }, - "event": [ - { - "event_id": "003", - "event_name": "第3回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "ディーラーズハート", - "alias_name_display": "ディーラーズハート", - "id": "1304802", - "hash": "28274ccdbc9075fbccd18ce5bb4e606c", - "profile": { - "height": "167", - "weight": "48", - "bust": "92", - "waist": "56", - "hip": "84" - }, - "event": [ - { - "event_id": "003", - "event_name": "第3回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "湯けむり温泉", - "alias_name_display": "湯けむり温泉", - "id": "1206301", - "hash": "1f613d36bd64b334cab8051894158168", - "profile": { - "height": "167", - "weight": "48", - "bust": "92", - "waist": "56", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "湯けむり温泉", - "alias_name_display": "湯けむり温泉", - "id": "1306302", - "hash": "30480e1245cdbe88f88165b669321b8a", - "profile": { - "height": "167", - "weight": "48", - "bust": "92", - "waist": "56", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "ロワイヤルスタイル", - "alias_name_display": "ロワイヤルスタイル", - "id": "1212401", - "hash": "86fcf85ec26cd3626931ab92afdaad94", - "profile": { - "height": "167", - "weight": "48", - "bust": "92", - "waist": "56", - "hip": "84" - }, - "event": [ - { - "event_id": 801, - "event_name": "アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ロワイヤルスタイル", - "alias_name_display": "ロワイヤルスタイル", - "id": "1312402", - "hash": "a0e2019b4854b20b56dd58cd920c30f5", - "profile": { - "height": "167", - "weight": "48", - "bust": "92", - "waist": "56", - "hip": "84" - }, - "event": [ - { - "event_id": 801, - "event_name": "アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ビーチサイド", - "alias_name_display": "ビーチサイド", - "id": "1217001", - "hash": "03496a2fbc355b045e66bab5430514bb", - "profile": { - "height": "167", - "weight": "48", - "bust": "92", - "waist": "56", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "ビーチサイド", - "alias_name_display": "ビーチサイド", - "id": "1317002", - "hash": "241884f39b4e56dcad17bc712b028f4b", - "profile": { - "height": "167", - "weight": "48", - "bust": "92", - "waist": "56", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "ビター&スウィート", - "alias_name_display": "ビター&スウィート", - "id": "1226101", - "hash": "dd939d75521e408a4185069f3168145e", - "profile": { - "height": "167", - "weight": "48", - "bust": "92", - "waist": "56", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "ビター&スウィート", - "alias_name_display": "ビター&スウィート", - "id": "1326102", - "hash": "4067febaae2008b50c289fbff62d0187", - "profile": { - "height": "167", - "weight": "48", - "bust": "92", - "waist": "56", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "カインドスチーム", - "alias_name_display": "カインドスチーム", - "id": "1231801", - "hash": "6dbeaec9fbbebd69811dc606b638cfb1", - "profile": { - "height": "167", - "weight": "48", - "bust": "92", - "waist": "56", - "hip": "84" - }, - "event": [ - { - "event_id": 727, - "event_name": "第27回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "カインドスチーム", - "alias_name_display": "カインドスチーム", - "id": "1331802", - "hash": "2a1eafa5944c41d04572380e89ea37c7", - "profile": { - "height": "167", - "weight": "48", - "bust": "92", - "waist": "56", - "hip": "84" - }, - "event": [ - { - "event_id": 727, - "event_name": "第27回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "セクシーバニー", - "alias_name_display": "セクシーバニー", - "id": "1405601", - "hash": "2cb9de945cba44c89e83966070671d50", - "profile": { - "height": "167", - "weight": "48", - "bust": "92", - "waist": "56", - "hip": "84" - }, - "event": [ - { - "event_id": "008", - "event_name": "第8回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "セクシーバニー", - "alias_name_display": "セクシーバニー", - "id": "1505602", - "hash": "472819ff358f1aca7a0521c1034b354b", - "profile": { - "height": "167", - "weight": "48", - "bust": "92", - "waist": "56", - "hip": "84" - }, - "event": [ - { - "event_id": "008", - "event_name": "第8回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "ビューティーウィッチ", - "alias_name_display": "ビューティーウィッチ", - "id": "1420901", - "hash": "232036d7ff6b8e1b9e458b312616f7a2", - "profile": { - "height": "167", - "weight": "48", - "bust": "92", - "waist": "56", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "ビューティーウィッチ", - "alias_name_display": "ビューティーウィッチ", - "id": "1520902", - "hash": "e71a7133899c8ed597bd85cabe1bec47", - "profile": { - "height": "167", - "weight": "48", - "bust": "92", - "waist": "56", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "美しき挑発", - "alias_name_display": "美しき挑発", - "id": "1427301", - "hash": "0c00b6d2d0c71c6582423064334de122", - "profile": { - "height": "167", - "weight": "48", - "bust": "92", - "waist": "56", - "hip": "84" - }, - "event": [ - { - "event_id": "023", - "event_name": "第23回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "美しき挑発", - "alias_name_display": "美しき挑発", - "id": "1527302", - "hash": "db3da083a2e7e999fad7983cd49e5127", - "profile": { - "height": "167", - "weight": "48", - "bust": "92", - "waist": "56", - "hip": "84" - }, - "event": [ - { - "event_id": "023", - "event_name": "第23回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "牡丹に蝶", - "alias_name_display": "牡丹に蝶", - "id": "1434101", - "hash": "864bcc62abdfd8c798e906bcd25c0e93", - "profile": { - "height": "167", - "weight": "48", - "bust": "92", - "waist": "56", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "牡丹に蝶", - "alias_name_display": "牡丹に蝶", - "id": "1534102", - "hash": "9cf74ba99862e8a7d52677bca5e48c3b", - "profile": { - "height": "167", - "weight": "48", - "bust": "92", - "waist": "56", - "hip": "84" - }, - "event": [] - } - ], - "units": [ - { - "id": "206", - "name": "セクシーボンデージ" - }, - { - "id": "208", - "name": "ロワイヤルスタイル" - } - ] - }, - "40": { - "idol_id": 40, - "idol_name": "丹羽仁美", - "idol_name_display": "丹羽仁美", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1206401", - "hash": "3fed05567d232be4af746b2de681d024", - "profile": { - "height": "157", - "weight": "43", - "bust": "81", - "waist": "55", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1306402", - "hash": "61a25ac7330f9ee3a9031a4d25655401", - "profile": { - "height": "157", - "weight": "43", - "bust": "81", - "waist": "55", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "制服コレクション", - "alias_name_display": "制服コレクション", - "id": "1209001", - "hash": "179872194da3a40845ce4bcd78966a52", - "profile": { - "height": "157", - "weight": "43", - "bust": "81", - "waist": "55", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "制服コレクション", - "alias_name_display": "制服コレクション", - "id": "1309002", - "hash": "8fd90fc1c4189e56096f2e69153854ec", - "profile": { - "height": "157", - "weight": "43", - "bust": "81", - "waist": "55", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "ハロウィンナイト", - "alias_name_display": "ハロウィンナイト", - "id": "1212301", - "hash": "6caef3a534d1f4625f1d90b6f56e12d0", - "profile": { - "height": "157", - "weight": "43", - "bust": "81", - "waist": "55", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "ハロウィンナイト", - "alias_name_display": "ハロウィンナイト", - "id": "1312302", - "hash": "83cf1238cba1adca0254e84311ea5e46", - "profile": { - "height": "157", - "weight": "43", - "bust": "81", - "waist": "55", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "ネイビーガール", - "alias_name_display": "ネイビーガール", - "id": "1217101", - "hash": "43a8feff01bdd2d27e6a9b38ece36051", - "profile": { - "height": "157", - "weight": "43", - "bust": "81", - "waist": "55", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "ネイビーガール", - "alias_name_display": "ネイビーガール", - "id": "1317102", - "hash": "9a15f28281366f1b094466f327122014", - "profile": { - "height": "157", - "weight": "43", - "bust": "81", - "waist": "55", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "ロワイヤルスタイルND", - "alias_name_display": "ロワイヤルスタイルND", - "id": "1225001", - "hash": "17b23dc00a5f6df6c0a65406ba29b982", - "profile": { - "height": "157", - "weight": "43", - "bust": "81", - "waist": "55", - "hip": "79" - }, - "event": [ - { - "event_id": 815, - "event_name": "アイドルLIVEロワイヤル クリスマスSP" - } - ] - }, - { - "alias_name": "ロワイヤルスタイルND", - "alias_name_display": "ロワイヤルスタイルND", - "id": "1325002", - "hash": "01f0b8b40b28f7acc96f23d0fae17d0c", - "profile": { - "height": "157", - "weight": "43", - "bust": "81", - "waist": "55", - "hip": "79" - }, - "event": [ - { - "event_id": 815, - "event_name": "アイドルLIVEロワイヤル クリスマスSP" - } - ] - }, - { - "alias_name": "スクールプール", - "alias_name_display": "スクールプール", - "id": "1228701", - "hash": "7bee54eb6e1aa1151ea8ebb7f5c2491b", - "profile": { - "height": "157", - "weight": "43", - "bust": "81", - "waist": "55", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "スクールプール", - "alias_name_display": "スクールプール", - "id": "1328702", - "hash": "a55fc181f4a8d7c2a8555a18b04ebbd4", - "profile": { - "height": "157", - "weight": "43", - "bust": "81", - "waist": "55", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "洒落者レディ", - "alias_name_display": "洒落者レディ", - "id": "1230901", - "hash": "0df2c7da9b7eee56871f4683852d63b8", - "profile": { - "height": "157", - "weight": "43", - "bust": "81", - "waist": "55", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "洒落者レディ", - "alias_name_display": "洒落者レディ", - "id": "1330902", - "hash": "e35375c6c987105d2a6235df452dc0c4", - "profile": { - "height": "157", - "weight": "43", - "bust": "81", - "waist": "55", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "大傾奇娘", - "alias_name_display": "大傾奇娘", - "id": "1411601", - "hash": "26b2a0c90723a9b074e65e4ecb2c937e", - "profile": { - "height": "157", - "weight": "43", - "bust": "81", - "waist": "55", - "hip": "79" - }, - "event": [ - { - "event_id": "014", - "event_name": "第14回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "大傾奇娘", - "alias_name_display": "大傾奇娘", - "id": "1511602", - "hash": "f04628745ca35b5896d03126fcdbed8d", - "profile": { - "height": "157", - "weight": "43", - "bust": "81", - "waist": "55", - "hip": "79" - }, - "event": [ - { - "event_id": "014", - "event_name": "第14回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "天下御免☆ガール", - "alias_name_display": "天下御免☆ガール", - "id": "1424001", - "hash": "1e02e3b87da7a70d8aa11609c3bbd95d", - "profile": { - "height": "157", - "weight": "43", - "bust": "81", - "waist": "55", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "天下御免☆ガール", - "alias_name_display": "天下御免☆ガール", - "id": "1524002", - "hash": "9392cd6501637b7e2d621e7459fc742f", - "profile": { - "height": "157", - "weight": "43", - "bust": "81", - "waist": "55", - "hip": "79" - }, - "event": [] - } - ], - "units": [ - { - "id": "30", - "name": "センゴク☆ランブ" - }, - { - "id": "156", - "name": "センゴク☆華☆ランブ" - }, - { - "id": "161", - "name": "ハロウィンナイト" - }, - { - "id": "210", - "name": "ロワイヤルスタイルND" - } - ] - }, - "41": { - "idol_id": 41, - "idol_name": "道明寺歌鈴", - "idol_name_display": "道明寺歌鈴", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1201401", - "hash": "6c298af445eea9e1b73482704eec4924", - "profile": { - "height": "155", - "weight": "43", - "bust": "80", - "waist": "55", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1301402", - "hash": "d312f7f0f9c305d7a15f822bf8d44705", - "profile": { - "height": "155", - "weight": "42", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "新春", - "alias_name_display": "新春", - "id": "1202201", - "hash": "e280aa01f99069f3253b0c406eeaa233", - "profile": { - "height": "155", - "weight": "43", - "bust": "80", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 102, - "event_name": "アイドルおもちつき大会" - } - ] - }, - { - "alias_name": "新春", - "alias_name_display": "新春", - "id": "1302202", - "hash": "9fd5148925ca5f8523c6187a584da80c", - "profile": { - "height": "155", - "weight": "42", - "bust": "80", - "waist": "55", - "hip": "83" - }, - "event": [ - { - "event_id": 102, - "event_name": "アイドルおもちつき大会" - } - ] - }, - { - "alias_name": "アニバーサリーピンク", - "alias_name_display": "アニバーサリーピンク", - "id": "1206601", - "hash": "e7c21fde6b9e0665f541deadd30cee5b", - "profile": { - "height": "155", - "weight": "42", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 403, - "event_name": "アイドルプロデュース the 1st Anniversary" - } - ] - }, - { - "alias_name": "アニバーサリーピンク", - "alias_name_display": "アニバーサリーピンク", - "id": "1306602", - "hash": "080b3fa1b8895f20a4462cba7ca55d44", - "profile": { - "height": "155", - "weight": "42", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 403, - "event_name": "アイドルプロデュース the 1st Anniversary" - } - ] - }, - { - "alias_name": "新春コレクション", - "alias_name_display": "新春コレクション", - "id": "1214001", - "hash": "9602cd56a0d2dd6fb7c3aa2d911fb95c", - "profile": { - "height": "155", - "weight": "42", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "新春コレクション", - "alias_name_display": "新春コレクション", - "id": "1314002", - "hash": "43c772ecc9cc0ac50c0cf5b8705da38a", - "profile": { - "height": "155", - "weight": "42", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "勇壮の槍騎士", - "alias_name_display": "勇壮の槍騎士", - "id": "1219501", - "hash": "89745565c1ee9c10ebaa7adfbadde425", - "profile": { - "height": "155", - "weight": "42", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 516, - "event_name": "幻想公演栄光のシュヴァリエ" - } - ] - }, - { - "alias_name": "勇壮の槍騎士", - "alias_name_display": "勇壮の槍騎士", - "id": "1319502", - "hash": "6c2726aaf43a56940326e08fe6d8b098", - "profile": { - "height": "155", - "weight": "42", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 516, - "event_name": "幻想公演栄光のシュヴァリエ" - } - ] - }, - { - "alias_name": "コレクションスタイル", - "alias_name_display": "コレクションスタイル", - "id": "1325902", - "hash": "79a9a786007e9b69d544fcf709131652", - "profile": { - "height": "155", - "weight": "42", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 1405, - "event_name": "第5回ぷちデレラコレクション" - } - ] - }, - { - "alias_name": "ニンジュツI.C", - "alias_name_display": "ニンジュツI.C", - "id": "1331502", - "hash": "b9d96c9cab89a83641b722cc05cc5559", - "profile": { - "height": "155", - "weight": "42", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 1214, - "event_name": "目指せくのいち アイドルチャレンジ" - } - ] - }, - { - "alias_name": "大器晩成", - "alias_name_display": "大器晩成", - "id": "1401701", - "hash": "fb17067100ef5228c4de359c66c27336", - "profile": { - "height": "155", - "weight": "43", - "bust": "80", - "waist": "55", - "hip": "83" - }, - "event": [ - { - "event_id": "002", - "event_name": "第2回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "大器晩成", - "alias_name_display": "大器晩成", - "id": "1501702", - "hash": "e276c868cb46d0753eb4162eb078acf1", - "profile": { - "height": "155", - "weight": "42", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": "002", - "event_name": "第2回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "サンシャインビーチ", - "alias_name_display": "サンシャインビーチ", - "id": "1408201", - "hash": "0312fa19f6f938e7fe0f6125c9703e04", - "profile": { - "height": "155", - "weight": "42", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 506, - "event_name": "アイドルLIVEツアーinハワイ" - } - ] - }, - { - "alias_name": "サンシャインビーチ", - "alias_name_display": "サンシャインビーチ", - "id": "1508202", - "hash": "4c8ea91dd2c68daeb6caa2ef85d01325", - "profile": { - "height": "155", - "weight": "42", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 506, - "event_name": "アイドルLIVEツアーinハワイ" - } - ] - }, - { - "alias_name": "おてんば神楽", - "alias_name_display": "おてんば神楽", - "id": "1415701", - "hash": "3188ae6a90fb6b6517c9a2a177c19be7", - "profile": { - "height": "155", - "weight": "42", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "おてんば神楽", - "alias_name_display": "おてんば神楽", - "id": "1515702", - "hash": "e542dd24695b0c9853ff72cb182bd32a", - "profile": { - "height": "155", - "weight": "42", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ぴかぴかガール", - "alias_name_display": "ぴかぴかガール", - "id": "1426201", - "hash": "d0d75973eab499695ccec3682febd599", - "profile": { - "height": "155", - "weight": "42", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ぴかぴかガール", - "alias_name_display": "ぴかぴかガール", - "id": "1526202", - "hash": "74120ffd2553011dabfc8baa1c07cb54", - "profile": { - "height": "155", - "weight": "42", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "古都の花嫁", - "alias_name_display": "古都の花嫁", - "id": "1433301", - "hash": "41f86f41f533b5dfd2c406298fd4bbd1", - "profile": { - "height": "155", - "weight": "42", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "古都の花嫁", - "alias_name_display": "古都の花嫁", - "id": "1533302", - "hash": "2fe37f02176fe6b24e4ecec33318811d", - "profile": { - "height": "155", - "weight": "42", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "不屈のくのいち", - "alias_name_display": "不屈のくのいち", - "id": "1437901", - "hash": "eb61ed2c8f8e22bbd115f50600da6c6c", - "profile": { - "height": "155", - "weight": "42", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 1214, - "event_name": "目指せくのいち アイドルチャレンジ" - } - ] - }, - { - "alias_name": "不屈のくのいち", - "alias_name_display": "不屈のくのいち", - "id": "1537902", - "hash": "679389de74afb22434d01fce5723c3cb", - "profile": { - "height": "155", - "weight": "42", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 1214, - "event_name": "目指せくのいち アイドルチャレンジ" - } - ] - }, - { - "alias_name": "朗笑のくのいち", - "alias_name_display": "朗笑のくのいち", - "id": "1438001", - "hash": "aa1f7b77aac0449d2c04b32f6b2d72b6", - "profile": { - "height": "155", - "weight": "42", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 1214, - "event_name": "目指せくのいち アイドルチャレンジ" - } - ] - }, - { - "alias_name": "朗笑のくのいち", - "alias_name_display": "朗笑のくのいち", - "id": "1538002", - "hash": "d9be7d1d689f9e143ff27dd1063a0040", - "profile": { - "height": "155", - "weight": "42", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 1214, - "event_name": "目指せくのいち アイドルチャレンジ" - } - ] - } - ], - "units": [ - { - "id": "5", - "name": "インディゴ・ベル" - }, - { - "id": "179", - "name": "春霞" - } - ] - }, - "42": { - "idol_id": 42, - "idol_name": "高槻やよい", - "idol_name_display": "高槻やよい", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1201501", - "hash": "73221b45dc3a76f73b08bb8854191273", - "profile": { - "height": "145", - "weight": "37", - "bust": "74", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1301502", - "hash": "a1dbdfc71c12beaaed6508a7569442ab", - "profile": { - "height": "145", - "weight": "37", - "bust": "74", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "制服グリーン", - "alias_name_display": "制服グリーン", - "id": "1203101", - "hash": "155ed2dec00ed07a45f8c784540cb149", - "profile": { - "height": "145", - "weight": "37", - "bust": "74", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "制服ブラウン", - "alias_name_display": "制服ブラウン", - "id": "1203102", - "hash": "d157ad4390a55281f9462b8b46ed45ef", - "profile": { - "height": "145", - "weight": "37", - "bust": "74", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "制服ブラック", - "alias_name_display": "制服ブラック", - "id": "1203103", - "hash": "35d33f8fd00c39daeef8513a854e44bf", - "profile": { - "height": "145", - "weight": "37", - "bust": "74", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "制服ネイビー", - "alias_name_display": "制服ネイビー", - "id": "1203104", - "hash": "167a430223c78828914bedf21a062497", - "profile": { - "height": "145", - "weight": "37", - "bust": "74", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "ピンクダイヤモンド765", - "alias_name_display": "ピンクダイヤモンド765", - "id": "1303105", - "hash": "32d74cb0a88ebc1f09461f43f3f96572", - "profile": { - "height": "145", - "weight": "37", - "bust": "74", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "エバーグリーンリーブス", - "alias_name_display": "エバーグリーンリーブス", - "id": "1303106", - "hash": "5087a9aa0d84d7a8f29201e635567523", - "profile": { - "height": "145", - "weight": "37", - "bust": "74", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "ギルデッドマドモアゼル", - "alias_name_display": "ギルデッドマドモアゼル", - "id": "1303107", - "hash": "a36bba235ac6ac42a80b30fa4bda8119", - "profile": { - "height": "145", - "weight": "37", - "bust": "74", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "スカーレットスプライト", - "alias_name_display": "スカーレットスプライト", - "id": "1303108", - "hash": "02405f18ba16f3b333f4de1c9d4860a7", - "profile": { - "height": "145", - "weight": "37", - "bust": "74", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "スタイリッシュデニム", - "alias_name_display": "スタイリッシュデニム", - "id": "1303109", - "hash": "732c5c98cdfdb6e0619317091537bc8f", - "profile": { - "height": "145", - "weight": "37", - "bust": "74", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "元気120%", - "alias_name_display": "元気120%", - "id": "1401010", - "hash": "d63c76c319fc691da462ea3644e08fac", - "profile": { - "height": "145", - "weight": "37", - "bust": "74", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "元気120%", - "alias_name_display": "元気120%", - "id": "1501011", - "hash": "0c964265c9e630ed4e9750660191acea", - "profile": { - "height": "145", - "weight": "37", - "bust": "74", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "小さなお姉さん", - "alias_name_display": "小さなお姉さん", - "id": "1403201", - "hash": "64c325a7f50f059665e36c3cc67d33ae", - "profile": { - "height": "145", - "weight": "37", - "bust": "74", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "小さなお姉さん", - "alias_name_display": "小さなお姉さん", - "id": "1503202", - "hash": "d0ea18fc5575dd86bc9e9657f0d720c3", - "profile": { - "height": "145", - "weight": "37", - "bust": "74", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "オオカミガール", - "alias_name_display": "オオカミガール", - "id": "1505302", - "hash": "404957c126156e54750231e4e58221ad", - "profile": { - "height": "145", - "weight": "37", - "bust": "74", - "waist": "54", - "hip": "78" - }, - "event": [] - } - ] - }, - "43": { - "idol_id": 43, - "idol_name": "菊地真", - "idol_name_display": "菊地真", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1201601", - "hash": "7c3cc9c1c697ecc6b62dc2d5a835f534", - "profile": { - "height": "159", - "weight": "44", - "bust": "75", - "waist": "57", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1301602", - "hash": "ccf8b0fa90c6686cf061bc155458c771", - "profile": { - "height": "159", - "weight": "44", - "bust": "75", - "waist": "57", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "制服ベージュ", - "alias_name_display": "制服ベージュ", - "id": "1205401", - "hash": "66f955d622985f1bd2d2dfeec8676619", - "profile": { - "height": "159", - "weight": "44", - "bust": "75", - "waist": "57", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "制服ブルー", - "alias_name_display": "制服ブルー", - "id": "1205402", - "hash": "daa75ed58a88e9a32500dec7290798b0", - "profile": { - "height": "159", - "weight": "44", - "bust": "75", - "waist": "57", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "制服ブラック", - "alias_name_display": "制服ブラック", - "id": "1205403", - "hash": "e9e704ca90a1625b045a6ee36fddb9c6", - "profile": { - "height": "159", - "weight": "44", - "bust": "75", - "waist": "57", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "制服ホワイト", - "alias_name_display": "制服ホワイト", - "id": "1205404", - "hash": "77854d40d4d4fb3562a3fe90562fa361", - "profile": { - "height": "159", - "weight": "44", - "bust": "75", - "waist": "57", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "ピンクダイヤモンド765", - "alias_name_display": "ピンクダイヤモンド765", - "id": "1305405", - "hash": "c7a3954ec5559612549fc074eef50514", - "profile": { - "height": "159", - "weight": "44", - "bust": "75", - "waist": "57", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "スカーレットスプライト", - "alias_name_display": "スカーレットスプライト", - "id": "1305406", - "hash": "c4edddba0e55fd7db3c62f2adf327c3d", - "profile": { - "height": "159", - "weight": "44", - "bust": "75", - "waist": "57", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "パウダースノーホワイティ", - "alias_name_display": "パウダースノーホワイティ", - "id": "1305407", - "hash": "aaba42a5b3189a77d67a4fc3c2c01744", - "profile": { - "height": "159", - "weight": "44", - "bust": "75", - "waist": "57", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "ギルデッドマドモアゼル", - "alias_name_display": "ギルデッドマドモアゼル", - "id": "1305408", - "hash": "ce60d87b5d013cd6f4c2f1cbb330b402", - "profile": { - "height": "159", - "weight": "44", - "bust": "75", - "waist": "57", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "メイデンインブラック", - "alias_name_display": "メイデンインブラック", - "id": "1305409", - "hash": "16ad0ffc22898e08cca59ba3dba7274b", - "profile": { - "height": "159", - "weight": "44", - "bust": "75", - "waist": "57", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "王子様な女子", - "alias_name_display": "王子様な女子", - "id": "1400301", - "hash": "d13b3a791d8be0063fb81ab21724aaef", - "profile": { - "height": "159", - "weight": "44", - "bust": "75", - "waist": "57", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "王子様な女子", - "alias_name_display": "王子様な女子", - "id": "1500302", - "hash": "b50b95609ded8046828f33f9cba3c875", - "profile": { - "height": "159", - "weight": "44", - "bust": "75", - "waist": "57", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "キューティープリンセス", - "alias_name_display": "キューティープリンセス", - "id": "1402710", - "hash": "20c2b7d34506df953c0adfae8b0073d7", - "profile": { - "height": "159", - "weight": "44", - "bust": "75", - "waist": "57", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "キューティープリンセス", - "alias_name_display": "キューティープリンセス", - "id": "1502711", - "hash": "d7496c4167acfdfd916f526a3a01f114", - "profile": { - "height": "159", - "weight": "44", - "bust": "75", - "waist": "57", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "チーム765エンジェルス", - "alias_name_display": "チーム765エンジェルス", - "id": "1508902", - "hash": "2838e5d36d4e11a09fac86270dcf63a4", - "profile": { - "height": "159", - "weight": "44", - "bust": "75", - "waist": "57", - "hip": "78" - }, - "event": [] - } - ] - }, - "44": { - "idol_id": 44, - "idol_name": "我那覇響", - "idol_name_display": "我那覇響", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1201701", - "hash": "f8f4c3be1b401f47318d440f2bcf9bec", - "profile": { - "height": "152", - "weight": "41", - "bust": "83", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1301702", - "hash": "bd13be7dd4e65b4b5aa07234c6e80c87", - "profile": { - "height": "152", - "weight": "41", - "bust": "83", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "沖縄元気っ娘", - "alias_name_display": "沖縄元気っ娘", - "id": "1400201", - "hash": "c5e454cbcc691c9e7863eac4fe359e5d", - "profile": { - "height": "152", - "weight": "41", - "bust": "83", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "沖縄元気っ娘", - "alias_name_display": "沖縄元気っ娘", - "id": "1500202", - "hash": "a23658ae02efa72867661794bccf1d28", - "profile": { - "height": "152", - "weight": "41", - "bust": "83", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "1stメモリアル", - "alias_name_display": "1stメモリアル", - "id": "1504202", - "hash": "c5e1fe7ef2b387eb27a9adbb9d9dfa6c", - "profile": { - "height": "152", - "weight": "41", - "bust": "83", - "waist": "56", - "hip": "80" - }, - "event": [] - } - ] - }, - "45": { - "idol_id": 45, - "idol_name": "柳清良", - "idol_name_display": "柳清良", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1201801", - "hash": "0b94e4097c16bce2c2579da0914234c5", - "profile": { - "height": "158", - "weight": "47", - "bust": "85", - "waist": "58", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1301802", - "hash": "dcd3b9f7c582181235d47dde3b4a0fb5", - "profile": { - "height": "158", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "デビリッシュゴシック", - "alias_name_display": "デビリッシュゴシック", - "id": "1209201", - "hash": "94c8abcfe804ad7d1ffba83136b21276", - "profile": { - "height": "158", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "デビリッシュゴシック", - "alias_name_display": "デビリッシュゴシック", - "id": "1309202", - "hash": "02bb974e8ed0f1bcece903d42d309c0f", - "profile": { - "height": "158", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "ウィンタースタイル", - "alias_name_display": "ウィンタースタイル", - "id": "1214701", - "hash": "5a2704f747a6d29b004f47f0ed95a83b", - "profile": { - "height": "158", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "ウィンタースタイル", - "alias_name_display": "ウィンタースタイル", - "id": "1314702", - "hash": "dbae7ad87fe85eafc52397784ba763ed", - "profile": { - "height": "158", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "黒白微笑", - "alias_name_display": "黒白微笑", - "id": "1218401", - "hash": "a0e2153bde26babe6152d492ec24e1a9", - "profile": { - "height": "158", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "86" - }, - "event": [ - { - "event_id": 514, - "event_name": "功夫公演 香港大決戦" - } - ] - }, - { - "alias_name": "黒白微笑", - "alias_name_display": "黒白微笑", - "id": "1318402", - "hash": "e12ff3a3ff2743eabeda9478f2a94cc1", - "profile": { - "height": "158", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "86" - }, - "event": [ - { - "event_id": 514, - "event_name": "功夫公演 香港大決戦" - } - ] - }, - { - "alias_name": "アダルトスタイル", - "alias_name_display": "アダルトスタイル", - "id": "1220001", - "hash": "19b317324b93b4c203f1aa474c8b6143", - "profile": { - "height": "158", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "アダルトスタイル", - "alias_name_display": "アダルトスタイル", - "id": "1320002", - "hash": "118543d91139af711399d7bb6b029375", - "profile": { - "height": "158", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "新春レディ", - "alias_name_display": "新春レディ", - "id": "1225301", - "hash": "71fa9fd263816362735276ee3d1dfc04", - "profile": { - "height": "158", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "86" - }, - "event": [ - { - "event_id": 718, - "event_name": "ドリームLIVEフェスティバル 新春SP" - } - ] - }, - { - "alias_name": "新春レディ", - "alias_name_display": "新春レディ", - "id": "1325302", - "hash": "ec807ef1db97e4c15ef318f9a6596941", - "profile": { - "height": "158", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "86" - }, - "event": [ - { - "event_id": 718, - "event_name": "ドリームLIVEフェスティバル 新春SP" - } - ] - }, - { - "alias_name": "サバゲーI.C", - "alias_name_display": "サバゲーI.C", - "id": "1327502", - "hash": "15fdd1bf43a64e0bfe2a9f7dc5360e3b", - "profile": { - "height": "158", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "86" - }, - "event": [ - { - "event_id": 1210, - "event_name": "アイドルチャレンジ サバイバルゲーム編" - } - ] - }, - { - "alias_name": "ホーリーコーラス", - "alias_name_display": "ホーリーコーラス", - "id": "1231101", - "hash": "2dc06c7605dee3eafbb4619312238f83", - "profile": { - "height": "158", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "ホーリーコーラス", - "alias_name_display": "ホーリーコーラス", - "id": "1331102", - "hash": "25172c5667ad6f1d3d5989e5aa1fd94e", - "profile": { - "height": "158", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "二面性の天使", - "alias_name_display": "二面性の天使", - "id": "1409601", - "hash": "6d84be33bafbe45f651c50fd5114c4d0", - "profile": { - "height": "158", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "86" - }, - "event": [ - { - "event_id": 703, - "event_name": "第3回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "二面性の天使", - "alias_name_display": "二面性の天使", - "id": "1509602", - "hash": "ce10dbc0aa9373a75ec4f514d644f62a", - "profile": { - "height": "158", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "86" - }, - "event": [ - { - "event_id": 703, - "event_name": "第3回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "グラマラス・ロワイヤル", - "alias_name_display": "グラマラス・ロワイヤル", - "id": "1425701", - "hash": "de191e77ede324ba840d36ca006d90f1", - "profile": { - "height": "158", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "86" - }, - "event": [ - { - "event_id": 813, - "event_name": "第13回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "グラマラス・ロワイヤル", - "alias_name_display": "グラマラス・ロワイヤル", - "id": "1525702", - "hash": "519d323f0a2f06e97bd6af40e79fcb98", - "profile": { - "height": "158", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "86" - }, - "event": [ - { - "event_id": 813, - "event_name": "第13回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "デモニックソルジャー", - "alias_name_display": "デモニックソルジャー", - "id": "1432301", - "hash": "f4de77473b4f78559dc3f8500deee18f", - "profile": { - "height": "158", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "86" - }, - "event": [ - { - "event_id": 1210, - "event_name": "アイドルチャレンジ サバイバルゲーム編" - } - ] - }, - { - "alias_name": "デモニックソルジャー", - "alias_name_display": "デモニックソルジャー", - "id": "1532302", - "hash": "ae9a28ada0457cda1ba5a199023587d3", - "profile": { - "height": "158", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "86" - }, - "event": [ - { - "event_id": 1210, - "event_name": "アイドルチャレンジ サバイバルゲーム編" - } - ] - }, - { - "alias_name": "デモニックソルジャー・S", - "alias_name_display": "デモニックソルジャー・S", - "id": "1432401", - "hash": "647923bb59ff1a909f0f52938608227e", - "profile": { - "height": "158", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "86" - }, - "event": [ - { - "event_id": 1210, - "event_name": "アイドルチャレンジ サバイバルゲーム編" - } - ] - }, - { - "alias_name": "デモニックソルジャー・S", - "alias_name_display": "デモニックソルジャー・S", - "id": "1532402", - "hash": "5889d8f072f2fac046d4e3b55e2ac4ce", - "profile": { - "height": "158", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "86" - }, - "event": [ - { - "event_id": 1210, - "event_name": "アイドルチャレンジ サバイバルゲーム編" - } - ] - } - ], - "units": [ - { - "id": "157", - "name": "デビリッシュゴシック" - }, - { - "id": "207", - "name": "ムーランルージュ" - } - ] - }, - "46": { - "idol_id": 46, - "idol_name": "天海春香", - "idol_name_display": "天海春香", - "aliases": [ - { - "alias_name": "制服ベージュ", - "alias_name_display": "制服ベージュ", - "id": "1201901", - "hash": "85d13609464513894fdecb0baad54c2a", - "profile": { - "height": "158", - "weight": "46", - "bust": "83", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "制服グレー", - "alias_name_display": "制服グレー", - "id": "1201902", - "hash": "e5b85211de1d55c40d370545a8d61d7f", - "profile": { - "height": "158", - "weight": "46", - "bust": "83", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "制服ピンク", - "alias_name_display": "制服ピンク", - "id": "1201903", - "hash": "8281a506b62578a43608d55490ef4b9d", - "profile": { - "height": "158", - "weight": "46", - "bust": "83", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "制服ブラック", - "alias_name_display": "制服ブラック", - "id": "1201904", - "hash": "57c6cb85e692ea03a15052bb1c3bc7d6", - "profile": { - "height": "158", - "weight": "46", - "bust": "83", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ザ☆ワイルドストロベリー", - "alias_name_display": "ザ☆ワイルドストロベリー", - "id": "1301905", - "hash": "5152c6a98ac868d03a15f55534c5a32d", - "profile": { - "height": "158", - "weight": "46", - "bust": "83", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ダリアノワール", - "alias_name_display": "ダリアノワール", - "id": "1301906", - "hash": "e24cfc29ae88b186122cc858d94fe1a7", - "profile": { - "height": "158", - "weight": "46", - "bust": "83", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "レイクサイドパンジー", - "alias_name_display": "レイクサイドパンジー", - "id": "1301907", - "hash": "29907bc26188d3171fa0eab89f44b9b7", - "profile": { - "height": "158", - "weight": "46", - "bust": "83", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "フォーチューンクローバー", - "alias_name_display": "フォーチューンクローバー", - "id": "1301908", - "hash": "fe2fe78b29c7d4bdc824d820fd130c45", - "profile": { - "height": "158", - "weight": "46", - "bust": "83", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ホットサマーシトラス", - "alias_name_display": "ホットサマーシトラス", - "id": "1301909", - "hash": "75c1d9166fbf0b09e1cbb867000a2556", - "profile": { - "height": "158", - "weight": "46", - "bust": "83", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "普通の女の子", - "alias_name_display": "普通の女の子", - "id": "1400110", - "hash": "894f904e12ca1fcf4891b47839c97ab7", - "profile": { - "height": "158", - "weight": "46", - "bust": "83", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "普通の女の子", - "alias_name_display": "普通の女の子", - "id": "1500111", - "hash": "e7fe451b0e7483323d10d1c8b038bf94", - "profile": { - "height": "158", - "weight": "46", - "bust": "83", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "王道アイドル", - "alias_name_display": "王道アイドル", - "id": "1401401", - "hash": "cbd4d17190b8b2715f502211ec0ededb", - "profile": { - "height": "158", - "weight": "46", - "bust": "83", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "王道アイドル", - "alias_name_display": "王道アイドル", - "id": "1501402", - "hash": "fbbab084cf4eee36bb4a708a6d7be8d0", - "profile": { - "height": "158", - "weight": "46", - "bust": "83", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "シャイニーフェスタ", - "alias_name_display": "シャイニーフェスタ", - "id": "1403301", - "hash": "3d10639a24d9fb8457ee6352be6922bf", - "profile": { - "height": "158", - "weight": "46", - "bust": "83", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "シャイニーフェスタ", - "alias_name_display": "シャイニーフェスタ", - "id": "1503302", - "hash": "3e312f0be1822c45a9f64013e879f7c6", - "profile": { - "height": "158", - "weight": "46", - "bust": "83", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ユカタメイド", - "alias_name_display": "ユカタメイド", - "id": "1504902", - "hash": "e3053b178bab9f6dca92afea00011551", - "profile": { - "height": "158", - "weight": "46", - "bust": "83", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "アーリーサマーバカンス", - "alias_name_display": "アーリーサマーバカンス", - "id": "1507402", - "hash": "eb10c4da293f3f132f146989bd997f64", - "profile": { - "height": "158", - "weight": "46", - "bust": "83", - "waist": "56", - "hip": "82" - }, - "event": [] - } - ] - }, - "47": { - "idol_id": 47, - "idol_name": "井村雪菜", - "idol_name_display": "井村雪菜", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1202101", - "hash": "e45c0c3027d05bf557aae92dadc353b8", - "profile": { - "height": "163", - "weight": "48", - "bust": "85", - "waist": "60", - "hip": "88" - }, - "event": [ - { - "event_id": 101, - "event_name": "星降るクリスマス" - } - ] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1302102", - "hash": "1300313f0ac00ac625a3ab3b05e784f8", - "profile": { - "height": "163", - "weight": "48", - "bust": "85", - "waist": "60", - "hip": "88" - }, - "event": [ - { - "event_id": 101, - "event_name": "星降るクリスマス" - } - ] - }, - { - "alias_name": "コスメティックガール", - "alias_name_display": "コスメティックガール", - "id": "1207201", - "hash": "a7c5c0dadc49e8461079d832e96fda8d", - "profile": { - "height": "163", - "weight": "48", - "bust": "85", - "waist": "60", - "hip": "88" - }, - "event": [ - { - "event_id": "007", - "event_name": "第7回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "コスメティックガール", - "alias_name_display": "コスメティックガール", - "id": "1307202", - "hash": "49a867483c6dc78f68b39dd6d12da52c", - "profile": { - "height": "163", - "weight": "48", - "bust": "85", - "waist": "60", - "hip": "88" - }, - "event": [ - { - "event_id": "007", - "event_name": "第7回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "びっくりウィンク", - "alias_name_display": "びっくりウィンク", - "id": "1219001", - "hash": "baa18ddffaa449e63527a4d6c1103b69", - "profile": { - "height": "163", - "weight": "48", - "bust": "85", - "waist": "60", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "びっくりウィンク", - "alias_name_display": "びっくりウィンク", - "id": "1319002", - "hash": "42572e4f6dd0a720da70c1fe78cc39bf", - "profile": { - "height": "163", - "weight": "48", - "bust": "85", - "waist": "60", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "オータムコレクション", - "alias_name_display": "オータムコレクション", - "id": "1224001", - "hash": "72905292c809034429f21d1ca7a03213", - "profile": { - "height": "163", - "weight": "48", - "bust": "85", - "waist": "60", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "オータムコレクション", - "alias_name_display": "オータムコレクション", - "id": "1324002", - "hash": "ba1e7aa823e2f486bd0b7f8dfa9f92c5", - "profile": { - "height": "163", - "weight": "48", - "bust": "85", - "waist": "60", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "サマービーチ", - "alias_name_display": "サマービーチ", - "id": "1229301", - "hash": "a8af8761f80d9f7e4631228ebc66c583", - "profile": { - "height": "163", - "weight": "48", - "bust": "85", - "waist": "60", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "サマービーチ", - "alias_name_display": "サマービーチ", - "id": "1329302", - "hash": "a584d77ce572744ffc8eeae90e0f7a0b", - "profile": { - "height": "163", - "weight": "48", - "bust": "85", - "waist": "60", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "ロマンチックナイト", - "alias_name_display": "ロマンチックナイト", - "id": "1409901", - "hash": "9c24447ef9d6a10a524b9de555ecd05a", - "profile": { - "height": "163", - "weight": "48", - "bust": "85", - "waist": "60", - "hip": "88" - }, - "event": [ - { - "event_id": 508, - "event_name": "LIVEツアーカーニバルinスペースワールド" - } - ] - }, - { - "alias_name": "ロマンチックナイト", - "alias_name_display": "ロマンチックナイト", - "id": "1509902", - "hash": "1edf266e99871ff9d48d791d03376b23", - "profile": { - "height": "163", - "weight": "48", - "bust": "85", - "waist": "60", - "hip": "88" - }, - "event": [ - { - "event_id": 508, - "event_name": "LIVEツアーカーニバルinスペースワールド" - } - ] - }, - { - "alias_name": "ビューティーヒール", - "alias_name_display": "ビューティーヒール", - "id": "1430501", - "hash": "7cf80f4e1d6137d41dcb35a1228b2c4f", - "profile": { - "height": "163", - "weight": "48", - "bust": "85", - "waist": "60", - "hip": "88" - }, - "event": [ - { - "event_id": 523, - "event_name": "鋼鉄公演 きらりんロボ -襲来!コスメティア帝国-" - } - ] - }, - { - "alias_name": "ビューティーヒール", - "alias_name_display": "ビューティーヒール", - "id": "1530502", - "hash": "33f32d395742c24944d95fdef61b71b3", - "profile": { - "height": "163", - "weight": "48", - "bust": "85", - "waist": "60", - "hip": "88" - }, - "event": [ - { - "event_id": 523, - "event_name": "鋼鉄公演 きらりんロボ -襲来!コスメティア帝国-" - } - ] - }, - { - "alias_name": "花畑マキアージュ", - "alias_name_display": "花畑マキアージュ", - "id": "1439401", - "hash": "1ded8bab3016b38dff6df60ebf3e2f3c", - "profile": { - "height": "163", - "weight": "48", - "bust": "85", - "waist": "60", - "hip": "88" - }, - "event": [ - { - "event_id": 728, - "event_name": "ドリームLIVEフェスティバル スプリングSP" - } - ] - }, - { - "alias_name": "花畑マキアージュ", - "alias_name_display": "花畑マキアージュ", - "id": "1539402", - "hash": "9394a74e8344967cbf42eb20eae12ab5", - "profile": { - "height": "163", - "weight": "48", - "bust": "85", - "waist": "60", - "hip": "88" - }, - "event": [ - { - "event_id": 728, - "event_name": "ドリームLIVEフェスティバル スプリングSP" - } - ] - } - ], - "units": [ - { - "id": "100", - "name": "ハートウォーマー" - } - ] - }, - "48": { - "idol_id": 48, - "idol_name": "日下部若葉", - "idol_name_display": "日下部若葉", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1202301", - "hash": "98daacfc83511eb95974e557aaf84caf", - "profile": { - "height": "148", - "weight": "40", - "bust": "77", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1302302", - "hash": "a54ca3ed50318224a01b666b99687d1b", - "profile": { - "height": "148", - "weight": "40", - "bust": "77", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "アニマルパーク", - "alias_name_display": "アニマルパーク", - "id": "1204501", - "hash": "93e14d9a6e04065bba6cb30745bbedcf", - "profile": { - "height": "148", - "weight": "40", - "bust": "77", - "waist": "54", - "hip": "78" - }, - "event": [ - { - "event_id": 204, - "event_name": "アイドルサバイバルin動物園" - } - ] - }, - { - "alias_name": "アニマルパーク", - "alias_name_display": "アニマルパーク", - "id": "1304502", - "hash": "060a14c59bc2e2373140cdf2a502b689", - "profile": { - "height": "148", - "weight": "40", - "bust": "77", - "waist": "54", - "hip": "78" - }, - "event": [ - { - "event_id": 204, - "event_name": "アイドルサバイバルin動物園" - } - ] - }, - { - "alias_name": "サマーバケーション", - "alias_name_display": "サマーバケーション", - "id": "1211401", - "hash": "64ce41dc523eb087c5a4d02a52fbc5d8", - "profile": { - "height": "148", - "weight": "40", - "bust": "77", - "waist": "54", - "hip": "78" - }, - "event": [ - { - "event_id": 211, - "event_name": "アイドルサバイバルinサマーバケーション" - } - ] - }, - { - "alias_name": "サマーバケーション", - "alias_name_display": "サマーバケーション", - "id": "1311402", - "hash": "a08838a564ba9bc6bfb9d76e91ab6ce9", - "profile": { - "height": "148", - "weight": "40", - "bust": "77", - "waist": "54", - "hip": "78" - }, - "event": [ - { - "event_id": 211, - "event_name": "アイドルサバイバルinサマーバケーション" - } - ] - }, - { - "alias_name": "マーチングバンド", - "alias_name_display": "マーチングバンド", - "id": "1219401", - "hash": "41773d24499b3d8e05743752ccd92a1d", - "profile": { - "height": "148", - "weight": "40", - "bust": "77", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "マーチングバンド", - "alias_name_display": "マーチングバンド", - "id": "1319402", - "hash": "295b3b0ae7a4d4af95fff7bea9d5726e", - "profile": { - "height": "148", - "weight": "40", - "bust": "77", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "スマートレディ", - "alias_name_display": "スマートレディ", - "id": "1227101", - "hash": "dcd7d12d16749e4c24cbee10026b28bf", - "profile": { - "height": "148", - "weight": "40", - "bust": "77", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "スマートレディ", - "alias_name_display": "スマートレディ", - "id": "1327102", - "hash": "498690a47ff548be70cddb845339649a", - "profile": { - "height": "148", - "weight": "40", - "bust": "77", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "湯けむり紀行", - "alias_name_display": "湯けむり紀行", - "id": "1230601", - "hash": "e7b4ce48a14dfda28f3a1a116a8ea397", - "profile": { - "height": "148", - "weight": "40", - "bust": "77", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "湯けむり紀行", - "alias_name_display": "湯けむり紀行", - "id": "1330602", - "hash": "a71c410c5dd3fba39e1b1e8c34cf66b7", - "profile": { - "height": "148", - "weight": "40", - "bust": "77", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "ローゼスゴシック", - "alias_name_display": "ローゼスゴシック", - "id": "1405801", - "hash": "7cf6b998042d60ec860faf5e486261dc", - "profile": { - "height": "148", - "weight": "40", - "bust": "77", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "ローゼスゴシック", - "alias_name_display": "ローゼスゴシック", - "id": "1505802", - "hash": "ba8d96eebf33c4e6f9104a6bcb6c5ada", - "profile": { - "height": "148", - "weight": "40", - "bust": "77", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "ロワイヤルリトル", - "alias_name_display": "ロワイヤルリトル", - "id": "1415201", - "hash": "9ce8db57726c12bb4d03b7187efd119b", - "profile": { - "height": "148", - "weight": "40", - "bust": "77", - "waist": "54", - "hip": "78" - }, - "event": [ - { - "event_id": 805, - "event_name": "第5回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ロワイヤルリトル", - "alias_name_display": "ロワイヤルリトル", - "id": "1515202", - "hash": "53393350148a36019963248cb5fbc2be", - "profile": { - "height": "148", - "weight": "40", - "bust": "77", - "waist": "54", - "hip": "78" - }, - "event": [ - { - "event_id": 805, - "event_name": "第5回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "セクシー刑事", - "alias_name_display": "セクシー刑事", - "id": "1427001", - "hash": "01cc6f010fdbaf4f9c132a9b17454c8a", - "profile": { - "height": "148", - "weight": "40", - "bust": "77", - "waist": "54", - "hip": "78" - }, - "event": [ - { - "event_id": 521, - "event_name": "怪盗公演 美しき追跡者" - } - ] - }, - { - "alias_name": "セクシー刑事", - "alias_name_display": "セクシー刑事", - "id": "1527002", - "hash": "16b3f7c98071fcc566c63e350f6d6755", - "profile": { - "height": "148", - "weight": "40", - "bust": "77", - "waist": "54", - "hip": "78" - }, - "event": [ - { - "event_id": 521, - "event_name": "怪盗公演 美しき追跡者" - } - ] - } - ], - "units": [ - { - "id": "84", - "name": "アニマルパーク" - }, - { - "id": "214", - "name": "L.M.B.G" - } - ] - }, - "49": { - "idol_id": 49, - "idol_name": "榊原里美", - "idol_name_display": "榊原里美", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1202401", - "hash": "0a2cb7263e4bab320935782c987b0ed1", - "profile": { - "height": "162", - "weight": "46", - "bust": "91", - "waist": "56", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1302402", - "hash": "3971354d7c145d26b9e76bcf7ff85203", - "profile": { - "height": "162", - "weight": "45", - "bust": "91", - "waist": "56", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "イタリアンスタイル", - "alias_name_display": "イタリアンスタイル", - "id": "1208601", - "hash": "2744cd367edb50ffe7959ba47f5f6afe", - "profile": { - "height": "162", - "weight": "45", - "bust": "91", - "waist": "56", - "hip": "86" - }, - "event": [ - { - "event_id": 503, - "event_name": "アイドルLIVEツアーinイタリア" - } - ] - }, - { - "alias_name": "イタリアンスタイル", - "alias_name_display": "イタリアンスタイル", - "id": "1308602", - "hash": "1a71cce509dbda3f4d3a9d8a7a83b5a8", - "profile": { - "height": "162", - "weight": "45", - "bust": "91", - "waist": "56", - "hip": "86" - }, - "event": [ - { - "event_id": 503, - "event_name": "アイドルLIVEツアーinイタリア" - } - ] - }, - { - "alias_name": "メロメロキャンディ", - "alias_name_display": "メロメロキャンディ", - "id": "1210501", - "hash": "43d1d4fc514cdece1a5ae65bc99d480f", - "profile": { - "height": "162", - "weight": "45", - "bust": "91", - "waist": "56", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "メロメロキャンディ", - "alias_name_display": "メロメロキャンディ", - "id": "1310502", - "hash": "868ad09a014294cd1f31276948b65141", - "profile": { - "height": "162", - "weight": "45", - "bust": "91", - "waist": "56", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "ワーキング・マフィア", - "alias_name_display": "ワーキング・マフィア", - "id": "1216001", - "hash": "6f0e256632a44047e538f5c99fe4fa31", - "profile": { - "height": "162", - "weight": "45", - "bust": "91", - "waist": "56", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "ワーキング・マフィア", - "alias_name_display": "ワーキング・マフィア", - "id": "1316002", - "hash": "c04bfe60da8022fa3fc6561134749b65", - "profile": { - "height": "162", - "weight": "45", - "bust": "91", - "waist": "56", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "夏祭り", - "alias_name_display": "夏祭り", - "id": "1322402", - "hash": "656a5b69d3f81ed6c3f1afc6a294cb71", - "profile": { - "height": "162", - "weight": "45", - "bust": "91", - "waist": "56", - "hip": "86" - }, - "event": [ - { - "event_id": 714, - "event_name": "夏祭りDEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ラブリーメイド", - "alias_name_display": "ラブリーメイド", - "id": "1225701", - "hash": "08be8e4dcff4f7384656fca3062ccaba", - "profile": { - "height": "162", - "weight": "45", - "bust": "91", - "waist": "56", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "ラブリーメイド", - "alias_name_display": "ラブリーメイド", - "id": "1325702", - "hash": "6993c3919d9955689694fab691b877a4", - "profile": { - "height": "162", - "weight": "45", - "bust": "91", - "waist": "56", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "ふんわりパピヨン", - "alias_name_display": "ふんわりパピヨン", - "id": "1232501", - "hash": "c5f8a51fd468b2d67fbee35744959e59", - "profile": { - "height": "162", - "weight": "45", - "bust": "91", - "waist": "56", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "ふんわりパピヨン", - "alias_name_display": "ふんわりパピヨン", - "id": "1332502", - "hash": "9948c2cc9042b6db538973772ffd6bee", - "profile": { - "height": "162", - "weight": "45", - "bust": "91", - "waist": "56", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "スプラッシュボディ", - "alias_name_display": "スプラッシュボディ", - "id": "1402101", - "hash": "665f8311dc5ac353dbab012bdc91f241", - "profile": { - "height": "162", - "weight": "45", - "bust": "91", - "waist": "56", - "hip": "86" - }, - "event": [ - { - "event_id": 106, - "event_name": "アイドル水泳大会 水着のシンデレラ" - } - ] - }, - { - "alias_name": "スプラッシュボディ", - "alias_name_display": "スプラッシュボディ", - "id": "1502102", - "hash": "b188872f23583254256ebb336480a02a", - "profile": { - "height": "162", - "weight": "45", - "bust": "91", - "waist": "56", - "hip": "86" - }, - "event": [ - { - "event_id": 106, - "event_name": "アイドル水泳大会 水着のシンデレラ" - } - ] - }, - { - "alias_name": "シュガーリーボディ", - "alias_name_display": "シュガーリーボディ", - "id": "1410101", - "hash": "dfdaeee13d94f788e2301b207dd20c03", - "profile": { - "height": "162", - "weight": "45", - "bust": "91", - "waist": "56", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "シュガーリーボディ", - "alias_name_display": "シュガーリーボディ", - "id": "1510102", - "hash": "f556daf2e4618d563405a10d77c33a91", - "profile": { - "height": "162", - "weight": "45", - "bust": "91", - "waist": "56", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "スウィート・ロワイヤル", - "alias_name_display": "スウィート・ロワイヤル", - "id": "1420001", - "hash": "d36af7a953650e82735fa3de1fe95bbb", - "profile": { - "height": "162", - "weight": "45", - "bust": "91", - "waist": "56", - "hip": "86" - }, - "event": [ - { - "event_id": 808, - "event_name": "第8回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "スウィート・ロワイヤル", - "alias_name_display": "スウィート・ロワイヤル", - "id": "1520002", - "hash": "a2014a0c6b69ec002f9f8795e01be8fc", - "profile": { - "height": "162", - "weight": "45", - "bust": "91", - "waist": "56", - "hip": "86" - }, - "event": [ - { - "event_id": 808, - "event_name": "第8回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ゆるあまチアー", - "alias_name_display": "ゆるあまチアー", - "id": "1434601", - "hash": "190de0bebd3334545f163e7279d80e28", - "profile": { - "height": "162", - "weight": "45", - "bust": "91", - "waist": "56", - "hip": "86" - }, - "event": [ - { - "event_id": 1508, - "event_name": "チーム対抗トークバトルショー in SUMMER" - } - ] - }, - { - "alias_name": "ゆるあまチアー", - "alias_name_display": "ゆるあまチアー", - "id": "1534602", - "hash": "f5513ccc6e9fbd159a8a1c770341ca42", - "profile": { - "height": "162", - "weight": "45", - "bust": "91", - "waist": "56", - "hip": "86" - }, - "event": [ - { - "event_id": 1508, - "event_name": "チーム対抗トークバトルショー in SUMMER" - } - ] - } - ], - "units": [ - { - "id": "86", - "name": "イタリアンスタイル" - }, - { - "id": "128", - "name": "ラビュー☆アイス☆マウンテン" - } - ] - }, - "50": { - "idol_id": 50, - "idol_name": "輿水幸子", - "idol_name_display": "輿水幸子", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1202501", - "hash": "c3100ee880e230589036b29a80d7dce3", - "profile": { - "height": "142", - "weight": "37", - "bust": "74", - "waist": "52", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1302502", - "hash": "44b8189f9d8c3f8c0d03a6759dba6b24", - "profile": { - "height": "142", - "weight": "37", - "bust": "74", - "waist": "52", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "自称・セクシーギャル", - "alias_name_display": "自称・セクシーギャル", - "id": "1222101", - "hash": "119e0da77db1a7a1da32fe66dbb953fc", - "profile": { - "height": "142", - "weight": "37", - "bust": "74", - "waist": "52", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "自称・セクシーギャル", - "alias_name_display": "自称・セクシーギャル", - "id": "1322102", - "hash": "6babab0e7bbff9fbf117cca8a8e30f5f", - "profile": { - "height": "142", - "weight": "37", - "bust": "74", - "waist": "52", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "自称・雪の妖精", - "alias_name_display": "自称・雪の妖精", - "id": "1326702", - "hash": "add3aebe0ee8669d88a68ace3ea9b339", - "profile": { - "height": "142", - "weight": "37", - "bust": "74", - "waist": "52", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "自称・カワイイ雪の妖精", - "alias_name_display": "自称・カワイイ雪の妖精", - "id": "1326802", - "hash": "41d032b770fa6bb15e85a2fd0371035f", - "profile": { - "height": "142", - "weight": "37", - "bust": "74", - "waist": "52", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "自称・カワイイ", - "alias_name_display": "自称・カワイイ", - "id": "1401901", - "hash": "7d90d532451521e9f70c48914eae6de5", - "profile": { - "height": "142", - "weight": "37", - "bust": "74", - "waist": "52", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "自称・カワイイ", - "alias_name_display": "自称・カワイイ", - "id": "1501902", - "hash": "4a02ad7e0335413adce0fdd7724e967c", - "profile": { - "height": "142", - "weight": "37", - "bust": "74", - "waist": "52", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "自称・天使", - "alias_name_display": "自称・天使", - "id": "1403601", - "hash": "b7041e1f27f77e00bcb6750a7efe307f", - "profile": { - "height": "142", - "weight": "37", - "bust": "74", - "waist": "52", - "hip": "75" - }, - "event": [ - { - "event_id": "006", - "event_name": "第6回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "自称・天使", - "alias_name_display": "自称・天使", - "id": "1503602", - "hash": "2a35fe0b79df5b24ac0c79bd61a9f05f", - "profile": { - "height": "142", - "weight": "37", - "bust": "74", - "waist": "52", - "hip": "75" - }, - "event": [ - { - "event_id": "006", - "event_name": "第6回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "自称・セクシー", - "alias_name_display": "自称・セクシー", - "id": "1406601", - "hash": "af9eacda4fd4b4fbc2aaa65014c95ac8", - "profile": { - "height": "142", - "weight": "37", - "bust": "74", - "waist": "52", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "自称・セクシー", - "alias_name_display": "自称・セクシー", - "id": "1506602", - "hash": "550ebee14289128b0ee7750ce580a9ae", - "profile": { - "height": "142", - "weight": "37", - "bust": "74", - "waist": "52", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "1406801", - "hash": "4cac6cb206bb9a778ec1a0d242185a6e", - "profile": { - "height": "142", - "weight": "37", - "bust": "74", - "waist": "52", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "1506802", - "hash": "405ead20308c43365ea6b73a1090c23f", - "profile": { - "height": "142", - "weight": "37", - "bust": "74", - "waist": "52", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "自称・プレゼント", - "alias_name_display": "自称・プレゼント", - "id": "1410801", - "hash": "6e5d07375e8d1daf25b6e1138e4c6706", - "profile": { - "height": "142", - "weight": "37", - "bust": "74", - "waist": "52", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "自称・プレゼント", - "alias_name_display": "自称・プレゼント", - "id": "1510802", - "hash": "8c67de4368ba3d1782b67e689190a5a0", - "profile": { - "height": "142", - "weight": "37", - "bust": "74", - "waist": "52", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "自称・マーメイド", - "alias_name_display": "自称・マーメイド", - "id": "1415501", - "hash": "73a87ae220035842c13b47336b8135c2", - "profile": { - "height": "142", - "weight": "37", - "bust": "74", - "waist": "52", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "自称・マーメイド", - "alias_name_display": "自称・マーメイド", - "id": "1515502", - "hash": "4637ded9f824e31f9033e488d3ca4257", - "profile": { - "height": "142", - "weight": "37", - "bust": "74", - "waist": "52", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "自称・幸運", - "alias_name_display": "自称・幸運", - "id": "1421201", - "hash": "052ff3c640cc92727f8bfbc105db54eb", - "profile": { - "height": "142", - "weight": "37", - "bust": "74", - "waist": "52", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "自称・幸運", - "alias_name_display": "自称・幸運", - "id": "1521202", - "hash": "2defe6d72fe38c3d48cb53926d7e9c77", - "profile": { - "height": "142", - "weight": "37", - "bust": "74", - "waist": "52", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "自称・美人の湯", - "alias_name_display": "自称・美人の湯", - "id": "1428701", - "hash": "2756f820564442331dbf44db7f3c3c0f", - "profile": { - "height": "142", - "weight": "37", - "bust": "74", - "waist": "52", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "自称・美人の湯", - "alias_name_display": "自称・美人の湯", - "id": "1528702", - "hash": "9d45a4277d932e0cb08d98d4a2a2b9d1", - "profile": { - "height": "142", - "weight": "37", - "bust": "74", - "waist": "52", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "自称・雪の女王", - "alias_name_display": "自称・雪の女王", - "id": "1431401", - "hash": "c154615d96a3941b49e103e799e9e6ae", - "profile": { - "height": "142", - "weight": "37", - "bust": "74", - "waist": "52", - "hip": "75" - }, - "event": [ - { - "event_id": 1705, - "event_name": "アイドルプロデュース きらめくオーロラ紀行" - } - ] - }, - { - "alias_name": "自称・雪の女王", - "alias_name_display": "自称・雪の女王", - "id": "1531402", - "hash": "933d6fd9a91faf9bd200d9454032857b", - "profile": { - "height": "142", - "weight": "37", - "bust": "74", - "waist": "52", - "hip": "75" - }, - "event": [ - { - "event_id": 1705, - "event_name": "アイドルプロデュース きらめくオーロラ紀行" - } - ] - }, - { - "alias_name": "自称・愛され系", - "alias_name_display": "自称・愛され系", - "id": "1439501", - "hash": "0a91c9d32bc4dc8c10e2ec537e6403b4", - "profile": { - "height": "142", - "weight": "37", - "bust": "74", - "waist": "52", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "自称・愛され系", - "alias_name_display": "自称・愛され系", - "id": "1539502", - "hash": "6510a11da53b691ab9031a461560116d", - "profile": { - "height": "142", - "weight": "37", - "bust": "74", - "waist": "52", - "hip": "75" - }, - "event": [] - } - ], - "units": [ - { - "id": "13", - "name": "カワスウィーティーなボクはぁと(仮)" - }, - { - "id": "90", - "name": "カワイイボクと142's" - }, - { - "id": "131", - "name": "KBYD" - }, - { - "id": "194", - "name": "サクヤヒメ" - }, - { - "id": "212", - "name": "CINDERELLA GIRLS" - } - ] - }, - "51": { - "idol_id": 51, - "idol_name": "安斎都", - "idol_name_display": "安斎都", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1202601", - "hash": "a5a7e280731764ee1d3df5391bd87d43", - "profile": { - "height": "156", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [ - { - "event_id": 201, - "event_name": "アイドルサバイバル" - } - ] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1302602", - "hash": "4ee4d08e6743566a2417831a32247d1e", - "profile": { - "height": "156", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [ - { - "event_id": 201, - "event_name": "アイドルサバイバル" - } - ] - }, - { - "alias_name": "探偵メイドル", - "alias_name_display": "探偵メイドル", - "id": "1208001", - "hash": "a9fd5baeb72c7d476b3e3e506ed7c2ca", - "profile": { - "height": "156", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "探偵メイドル", - "alias_name_display": "探偵メイドル", - "id": "1308002", - "hash": "c68534fca3fee1974ab2176c0d6f8cd0", - "profile": { - "height": "156", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "張り込みスタイル", - "alias_name_display": "張り込みスタイル", - "id": "1213001", - "hash": "ae20bae6e55d325307f62cdbbcec2290", - "profile": { - "height": "156", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [ - { - "event_id": "013", - "event_name": "第13回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "張り込みスタイル", - "alias_name_display": "張り込みスタイル", - "id": "1313002", - "hash": "ce38afed06051e2c10c439862d774bed", - "profile": { - "height": "156", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [ - { - "event_id": "013", - "event_name": "第13回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "スクールスタイル", - "alias_name_display": "スクールスタイル", - "id": "1215501", - "hash": "a853b8f786d001834e443816ba4b6d12", - "profile": { - "height": "156", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "スクールスタイル", - "alias_name_display": "スクールスタイル", - "id": "1315502", - "hash": "09a61fba9005db95a9befb741cbfe896", - "profile": { - "height": "156", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "カジュアルルック", - "alias_name_display": "カジュアルルック", - "id": "1222201", - "hash": "e649afb6962e805a8762e062358a49d8", - "profile": { - "height": "156", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [ - { - "event_id": "022", - "event_name": "第22回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "カジュアルルック", - "alias_name_display": "カジュアルルック", - "id": "1322202", - "hash": "bd5d8e86ac6245cb67e163d806c20cf3", - "profile": { - "height": "156", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [ - { - "event_id": "022", - "event_name": "第22回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "ウィンターコレクション", - "alias_name_display": "ウィンターコレクション", - "id": "1226201", - "hash": "7563f63f96be801e208b41b831e3fb37", - "profile": { - "height": "156", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "ウィンターコレクション", - "alias_name_display": "ウィンターコレクション", - "id": "1326202", - "hash": "d9734c1b775934b22c1bed99f087daab", - "profile": { - "height": "156", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "ゴーフォーヴィクトリー", - "alias_name_display": "ゴーフォーヴィクトリー", - "id": "1232301", - "hash": "1a145e40e005d9c026e00055b86e98fe", - "profile": { - "height": "156", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "ゴーフォーヴィクトリー", - "alias_name_display": "ゴーフォーヴィクトリー", - "id": "1332302", - "hash": "c068a0b85d95161ba617b3169c55918e", - "profile": { - "height": "156", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "小さな名探偵", - "alias_name_display": "小さな名探偵", - "id": "1407301", - "hash": "57a6b520d0c3ca4327c98d306c6ea914", - "profile": { - "height": "156", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [ - { - "event_id": 701, - "event_name": "ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "小さな名探偵", - "alias_name_display": "小さな名探偵", - "id": "1507302", - "hash": "63661d287588dd672a4a790c584ac3cc", - "profile": { - "height": "156", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [ - { - "event_id": 701, - "event_name": "ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "聖夜のミステリー", - "alias_name_display": "聖夜のミステリー", - "id": "1420501", - "hash": "6dddae01de63befe4d2aa03275925f12", - "profile": { - "height": "156", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [ - { - "event_id": 710, - "event_name": "サンタDEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "聖夜のミステリー", - "alias_name_display": "聖夜のミステリー", - "id": "1520502", - "hash": "b9abe3920c8acc09627f84020f2772ef", - "profile": { - "height": "156", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [ - { - "event_id": 710, - "event_name": "サンタDEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ミステリーチアー", - "alias_name_display": "ミステリーチアー", - "id": "1428201", - "hash": "bdbb5104e4674a60d58db8d8397dd008", - "profile": { - "height": "156", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [ - { - "event_id": 1504, - "event_name": "第4回チーム対抗トークバトルショー" - } - ] - }, - { - "alias_name": "ミステリーチアー", - "alias_name_display": "ミステリーチアー", - "id": "1528202", - "hash": "4355175e6d2fdc1aa18f7734cbbd965a", - "profile": { - "height": "156", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [ - { - "event_id": 1504, - "event_name": "第4回チーム対抗トークバトルショー" - } - ] - }, - { - "alias_name": "なぞときツアーズ", - "alias_name_display": "なぞときツアーズ", - "id": "1434901", - "hash": "e6cd8597bd7834403a4199417cbd868e", - "profile": { - "height": "156", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "なぞときツアーズ", - "alias_name_display": "なぞときツアーズ", - "id": "1534902", - "hash": "0da70e0edc3ce8b0d0fcf9caf198d7d6", - "profile": { - "height": "156", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [] - } - ], - "units": [ - { - "id": "35", - "name": "ディテクティブヴァーサス" - } - ] - }, - "52": { - "idol_id": 52, - "idol_name": "浅野風香", - "idol_name_display": "浅野風香", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1202701", - "hash": "fa074d5e6fd70b950c77ecb6d0156075", - "profile": { - "height": "160", - "weight": "48", - "bust": "88", - "waist": "59", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1302702", - "hash": "2692009a1145b12d88f8581a8d2a203e", - "profile": { - "height": "160", - "weight": "48", - "bust": "88", - "waist": "59", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "テーマパーク", - "alias_name_display": "テーマパーク", - "id": "1209501", - "hash": "35fdd14eb165bc7e6dec5d341e784f07", - "profile": { - "height": "160", - "weight": "48", - "bust": "88", - "waist": "59", - "hip": "84" - }, - "event": [ - { - "event_id": 210, - "event_name": "アイドルサバイバルinテーマパーク2013" - } - ] - }, - { - "alias_name": "テーマパーク", - "alias_name_display": "テーマパーク", - "id": "1309502", - "hash": "41d1d18a55c448cf46c582d1013b39b6", - "profile": { - "height": "160", - "weight": "48", - "bust": "88", - "waist": "59", - "hip": "84" - }, - "event": [ - { - "event_id": 210, - "event_name": "アイドルサバイバルinテーマパーク2013" - } - ] - }, - { - "alias_name": "ピュアリーグラス", - "alias_name_display": "ピュアリーグラス", - "id": "1214101", - "hash": "cf97a7ca4f0e1155ef221621fdf3cfd9", - "profile": { - "height": "160", - "weight": "48", - "bust": "88", - "waist": "59", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "ピュアリーグラス", - "alias_name_display": "ピュアリーグラス", - "id": "1314102", - "hash": "6fdde1b3e7496a6d33e393841a24b07d", - "profile": { - "height": "160", - "weight": "48", - "bust": "88", - "waist": "59", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "パラダイスリゾート", - "alias_name_display": "パラダイスリゾート", - "id": "1217801", - "hash": "466452eb133248e509e4fb3f4ebeacd7", - "profile": { - "height": "160", - "weight": "48", - "bust": "88", - "waist": "59", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "パラダイスリゾート", - "alias_name_display": "パラダイスリゾート", - "id": "1317802", - "hash": "442597c9044dfedfa1349fb2db19196a", - "profile": { - "height": "160", - "weight": "48", - "bust": "88", - "waist": "59", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "クッキングバラエティ", - "alias_name_display": "クッキングバラエティ", - "id": "1323502", - "hash": "22c66ce65936f77c353214b025a41e58", - "profile": { - "height": "160", - "weight": "48", - "bust": "88", - "waist": "59", - "hip": "84" - }, - "event": [ - { - "event_id": 1801, - "event_name": "アイドルバラエティ 究極のショートケーキを作ろう!" - } - ] - }, - { - "alias_name": "ためらいごころ", - "alias_name_display": "ためらいごころ", - "id": "1228001", - "hash": "e76f9bcd4d328a38a2624f05c28f9674", - "profile": { - "height": "160", - "weight": "48", - "bust": "88", - "waist": "59", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "ためらいごころ", - "alias_name_display": "ためらいごころ", - "id": "1328002", - "hash": "54ba56acfc2fc2727cf51c97786be2a5", - "profile": { - "height": "160", - "weight": "48", - "bust": "88", - "waist": "59", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "シークレットクイーン", - "alias_name_display": "シークレットクイーン", - "id": "1408701", - "hash": "5f86b28cd88a283adc8408184d57da8d", - "profile": { - "height": "160", - "weight": "48", - "bust": "88", - "waist": "59", - "hip": "84" - }, - "event": [ - { - "event_id": 507, - "event_name": "LIVEツアーカーニバルinドイツ" - } - ] - }, - { - "alias_name": "シークレットクイーン", - "alias_name_display": "シークレットクイーン", - "id": "1508702", - "hash": "6044eaaac63254173edd6e0e2cc419ed", - "profile": { - "height": "160", - "weight": "48", - "bust": "88", - "waist": "59", - "hip": "84" - }, - "event": [ - { - "event_id": 507, - "event_name": "LIVEツアーカーニバルinドイツ" - } - ] - }, - { - "alias_name": "ランウェイモード", - "alias_name_display": "ランウェイモード", - "id": "1422901", - "hash": "83af98fac0686269e12859012e21238f", - "profile": { - "height": "160", - "weight": "48", - "bust": "88", - "waist": "59", - "hip": "84" - }, - "event": [ - { - "event_id": 1401, - "event_name": "ぷちデレラコレクション" - } - ] - }, - { - "alias_name": "ランウェイモード", - "alias_name_display": "ランウェイモード", - "id": "1522902", - "hash": "6dabe78413e5135e83a9e9709b0665cd", - "profile": { - "height": "160", - "weight": "48", - "bust": "88", - "waist": "59", - "hip": "84" - }, - "event": [ - { - "event_id": 1401, - "event_name": "ぷちデレラコレクション" - } - ] - }, - { - "alias_name": "くつろぎの温度", - "alias_name_display": "くつろぎの温度", - "id": "1437501", - "hash": "c8c73f7e03c72c843e517dd8c759d868", - "profile": { - "height": "160", - "weight": "48", - "bust": "88", - "waist": "59", - "hip": "84" - }, - "event": [ - { - "event_id": 726, - "event_name": "ドリームLIVEフェスティバル新春SP" - } - ] - }, - { - "alias_name": "くつろぎの温度", - "alias_name_display": "くつろぎの温度", - "id": "1537502", - "hash": "3e11cdda3fb461943a95a243ccb16db8", - "profile": { - "height": "160", - "weight": "48", - "bust": "88", - "waist": "59", - "hip": "84" - }, - "event": [ - { - "event_id": 726, - "event_name": "ドリームLIVEフェスティバル新春SP" - } - ] - } - ], - "units": [ - { - "id": "49", - "name": "ピュアリーツイン" - }, - { - "id": "171", - "name": "Black/White-Roses" - }, - { - "id": "211", - "name": "ワンダー・フル" - } - ] - }, - "53": { - "idol_id": 53, - "idol_name": "大西由里子", - "idol_name_display": "大西由里子", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1202801", - "hash": "380a7a645fe50c52773fd2fceb026002", - "profile": { - "height": "156", - "weight": "44", - "bust": "81", - "waist": "58", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1302802", - "hash": "057fbfa6eb12d147fe311a18fd6d712d", - "profile": { - "height": "156", - "weight": "44", - "bust": "81", - "waist": "58", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "メルヘン&ゴシック", - "alias_name_display": "メルヘン&ゴシック", - "id": "1208301", - "hash": "bcd6d181f73266ba4bc8fa827c46af98", - "profile": { - "height": "156", - "weight": "44", - "bust": "81", - "waist": "58", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "メルヘン&ゴシック", - "alias_name_display": "メルヘン&ゴシック", - "id": "1308302", - "hash": "cebe76011f0156a8ce7f7df691969bd6", - "profile": { - "height": "156", - "weight": "44", - "bust": "81", - "waist": "58", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "スポーティスタイル", - "alias_name_display": "スポーティスタイル", - "id": "1212601", - "hash": "a45d124031fd6c6841aa249d597fc03b", - "profile": { - "height": "156", - "weight": "44", - "bust": "81", - "waist": "58", - "hip": "83" - }, - "event": [ - { - "event_id": 212, - "event_name": "アイドルサバイバル 秋の大運動会" - } - ] - }, - { - "alias_name": "スポーティスタイル", - "alias_name_display": "スポーティスタイル", - "id": "1312602", - "hash": "d0735e0957f993ca0fa4c57b0e8cefc6", - "profile": { - "height": "156", - "weight": "44", - "bust": "81", - "waist": "58", - "hip": "83" - }, - "event": [ - { - "event_id": 212, - "event_name": "アイドルサバイバル 秋の大運動会" - } - ] - }, - { - "alias_name": "フワフワユリユリ", - "alias_name_display": "フワフワユリユリ", - "id": "1219201", - "hash": "c3c402f325f4d7cdec18af16c702a6a9", - "profile": { - "height": "156", - "weight": "44", - "bust": "81", - "waist": "58", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "フワフワユリユリ", - "alias_name_display": "フワフワユリユリ", - "id": "1319202", - "hash": "7589f5960cfac28375537d4f51eb58fa", - "profile": { - "height": "156", - "weight": "44", - "bust": "81", - "waist": "58", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "真夏の誘惑", - "alias_name_display": "真夏の誘惑", - "id": "1229201", - "hash": "1249e065132351a934d2f63e9b1cb626", - "profile": { - "height": "156", - "weight": "44", - "bust": "81", - "waist": "58", - "hip": "83" - }, - "event": [ - { - "event_id": 723, - "event_name": "水着DEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "真夏の誘惑", - "alias_name_display": "真夏の誘惑", - "id": "1329202", - "hash": "6eccf22049120fb761a1ffa13bd38e88", - "profile": { - "height": "156", - "weight": "44", - "bust": "81", - "waist": "58", - "hip": "83" - }, - "event": [ - { - "event_id": 723, - "event_name": "水着DEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ゴーフォーヴィクトリー", - "alias_name_display": "ゴーフォーヴィクトリー", - "id": "1232401", - "hash": "8a0410a434927708f9fad0e055ec486b", - "profile": { - "height": "156", - "weight": "44", - "bust": "81", - "waist": "58", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "ゴーフォーヴィクトリー", - "alias_name_display": "ゴーフォーヴィクトリー", - "id": "1332402", - "hash": "ea7e3327461cab7eeea0197ac1bf31e6", - "profile": { - "height": "156", - "weight": "44", - "bust": "81", - "waist": "58", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "目覚めし淑女", - "alias_name_display": "目覚めし淑女", - "id": "1413701", - "hash": "7e80103508171cd695652af2bf4006e5", - "profile": { - "height": "156", - "weight": "44", - "bust": "81", - "waist": "58", - "hip": "83" - }, - "event": [ - { - "event_id": "016", - "event_name": "第16回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "目覚めし淑女", - "alias_name_display": "目覚めし淑女", - "id": "1513702", - "hash": "098c259560917bb02fc6769b79704b3f", - "profile": { - "height": "156", - "weight": "44", - "bust": "81", - "waist": "58", - "hip": "83" - }, - "event": [ - { - "event_id": "016", - "event_name": "第16回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "レディライクバイオレット", - "alias_name_display": "レディライクバイオレット", - "id": "1427901", - "hash": "a302d6fc9e81362cc2a9d8a4e32bb8da", - "profile": { - "height": "156", - "weight": "44", - "bust": "81", - "waist": "58", - "hip": "83" - }, - "event": [ - { - "event_id": 716, - "event_name": "第16回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "レディライクバイオレット", - "alias_name_display": "レディライクバイオレット", - "id": "1527902", - "hash": "493a01e58a43693352fd7343e3987069", - "profile": { - "height": "156", - "weight": "44", - "bust": "81", - "waist": "58", - "hip": "83" - }, - "event": [ - { - "event_id": 716, - "event_name": "第16回ドリームLIVEフェスティバル" - } - ] - } - ], - "units": [ - { - "id": "12", - "name": "壁サーの花" - }, - { - "id": "165", - "name": "メルヘンゴシック" - } - ] - }, - "54": { - "idol_id": 54, - "idol_name": "安部菜々", - "idol_name_display": "安部菜々", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1203001", - "hash": "edd3438bd612a333a76edaea0ff73fe7", - "profile": { - "height": "146", - "weight": "40", - "bust": "84", - "waist": "57", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1303002", - "hash": "6dba97132e9dac789aab3892e1bd89da", - "profile": { - "height": "146", - "weight": "40", - "bust": "84", - "waist": "57", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "ニューイヤー", - "alias_name_display": "ニューイヤー", - "id": "1207001", - "hash": "801a8ecab88ba6aa4104c5704603b2d8", - "profile": { - "height": "146", - "weight": "40", - "bust": "84", - "waist": "57", - "hip": "84" - }, - "event": [ - { - "event_id": 404, - "event_name": "新春アイドルプロデュース" - } - ] - }, - { - "alias_name": "ニューイヤー", - "alias_name_display": "ニューイヤー", - "id": "1307002", - "hash": "2e254b75f29e7a12dd5e5743d061ba1e", - "profile": { - "height": "146", - "weight": "40", - "bust": "84", - "waist": "57", - "hip": "84" - }, - "event": [ - { - "event_id": 404, - "event_name": "新春アイドルプロデュース" - } - ] - }, - { - "alias_name": "お月見ウサミン", - "alias_name_display": "お月見ウサミン", - "id": "1402901", - "hash": "a8785d3980131a8fa98a30be1c8ee201", - "profile": { - "height": "146", - "weight": "40", - "bust": "84", - "waist": "57", - "hip": "84" - }, - "event": [ - { - "event_id": 107, - "event_name": "秋夜のお月見会" - } - ] - }, - { - "alias_name": "お月見ウサミン", - "alias_name_display": "お月見ウサミン", - "id": "1502902", - "hash": "5b31aabd5be01c365f5f42cc925fe6ef", - "profile": { - "height": "146", - "weight": "40", - "bust": "84", - "waist": "57", - "hip": "84" - }, - "event": [ - { - "event_id": 107, - "event_name": "秋夜のお月見会" - } - ] - }, - { - "alias_name": "制服ウサミン", - "alias_name_display": "制服ウサミン", - "id": "1406101", - "hash": "f4c2b229d5ca32acc3a4505e83a5e746", - "profile": { - "height": "146", - "weight": "40", - "bust": "84", - "waist": "57", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "制服ウサミン", - "alias_name_display": "制服ウサミン", - "id": "1506102", - "hash": "3cd59eb00788e28e7740052f8b5b2639", - "profile": { - "height": "146", - "weight": "40", - "bust": "84", - "waist": "57", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "1406701", - "hash": "aaccb3f4f6b7c29b28d2e55934c97a4f", - "profile": { - "height": "146", - "weight": "40", - "bust": "84", - "waist": "57", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "1506702", - "hash": "e244b41f4ee149b403eda22f871cf129", - "profile": { - "height": "146", - "weight": "40", - "bust": "84", - "waist": "57", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "ハッピーニューウサミン", - "alias_name_display": "ハッピーニューウサミン", - "id": "1411301", - "hash": "5bc9852cf431141883ad09d3c214e524", - "profile": { - "height": "146", - "weight": "40", - "bust": "84", - "waist": "57", - "hip": "84" - }, - "event": [ - { - "event_id": 509, - "event_name": "新春LIVEツアーカーニバル" - } - ] - }, - { - "alias_name": "ハッピーニューウサミン", - "alias_name_display": "ハッピーニューウサミン", - "id": "1511302", - "hash": "371a0f77436b1f218c8300d50207019e", - "profile": { - "height": "146", - "weight": "40", - "bust": "84", - "waist": "57", - "hip": "84" - }, - "event": [ - { - "event_id": 509, - "event_name": "新春LIVEツアーカーニバル" - } - ] - }, - { - "alias_name": "スペース☆ウサミン", - "alias_name_display": "スペース☆ウサミン", - "id": "1414101", - "hash": "51c183ef6846a54a06aab46bf0a0fa02", - "profile": { - "height": "146", - "weight": "40", - "bust": "84", - "waist": "57", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "スペース☆ウサミン", - "alias_name_display": "スペース☆ウサミン", - "id": "1514102", - "hash": "77b6e905cf5dc2c15420c72345efd7b3", - "profile": { - "height": "146", - "weight": "40", - "bust": "84", - "waist": "57", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "クリスマスウサミン", - "alias_name_display": "クリスマスウサミン", - "id": "1420401", - "hash": "f7ef230f6291157eb6adfcf737d12b43", - "profile": { - "height": "146", - "weight": "40", - "bust": "84", - "waist": "57", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "クリスマスウサミン", - "alias_name_display": "クリスマスウサミン", - "id": "1520402", - "hash": "781fcb73651a24d165ba0ff488949829", - "profile": { - "height": "146", - "weight": "40", - "bust": "84", - "waist": "57", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "サマー☆ウサミン", - "alias_name_display": "サマー☆ウサミン", - "id": "1426501", - "hash": "582b54f85fa86da7ef3314d647193092", - "profile": { - "height": "146", - "weight": "40", - "bust": "84", - "waist": "57", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "サマー☆ウサミン", - "alias_name_display": "サマー☆ウサミン", - "id": "1526502", - "hash": "52fdee6f29f672792d8af79c239ac1fb", - "profile": { - "height": "146", - "weight": "40", - "bust": "84", - "waist": "57", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "ワンダーランドラビット", - "alias_name_display": "ワンダーランドラビット", - "id": "1432001", - "hash": "3a63db645ce9ee2878d44436a7c45eaa", - "profile": { - "height": "146", - "weight": "40", - "bust": "84", - "waist": "57", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "ワンダーランドラビット", - "alias_name_display": "ワンダーランドラビット", - "id": "1532002", - "hash": "f5d19805f9164fb58967a338d9a60551", - "profile": { - "height": "146", - "weight": "40", - "bust": "84", - "waist": "57", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "ぽかぽかウサミン", - "alias_name_display": "ぽかぽかウサミン", - "id": "1436301", - "hash": "d2dad4fd56c9ad3b62a7f34a05024b8b", - "profile": { - "height": "146", - "weight": "40", - "bust": "84", - "waist": "57", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "ぽかぽかウサミン", - "alias_name_display": "ぽかぽかウサミン", - "id": "1536302", - "hash": "4646da2024bcd18a3334ba0c06a7770d", - "profile": { - "height": "146", - "weight": "40", - "bust": "84", - "waist": "57", - "hip": "84" - }, - "event": [] - } - ], - "units": [ - { - "id": "22", - "name": "シャイニー・アーリーデイズ" - }, - { - "id": "23", - "name": "しゅがしゅが☆み~ん" - }, - { - "id": "80", - "name": "P・U" - }, - { - "id": "115", - "name": "虹色ドリーマー" - }, - { - "id": "139", - "name": "397cherry" - }, - { - "id": "168", - "name": "*(Asterisk) with なつなな" - }, - { - "id": "184", - "name": "宵乙女" - }, - { - "id": "195", - "name": "C5" - } - ] - }, - "55": { - "idol_id": 55, - "idol_name": "工藤忍", - "idol_name_display": "工藤忍", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1203201", - "hash": "1a31c15fa7189284f9df6258d5382de2", - "profile": { - "height": "154", - "weight": "41", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1303202", - "hash": "7792ea260d6769bc8ccff47fc2dc5026", - "profile": { - "height": "154", - "weight": "41", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "学園祭", - "alias_name_display": "学園祭", - "id": "1205601", - "hash": "20bb972a45fb705f8e86bdb9f49c9f47", - "profile": { - "height": "154", - "weight": "41", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [ - { - "event_id": 206, - "event_name": "アイドルサバイバルin学園祭" - } - ] - }, - { - "alias_name": "学園祭", - "alias_name_display": "学園祭", - "id": "1305602", - "hash": "7748ff72ac51f4cbd33212106e0e77cf", - "profile": { - "height": "154", - "weight": "41", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [ - { - "event_id": 206, - "event_name": "アイドルサバイバルin学園祭" - } - ] - }, - { - "alias_name": "ホワイトドロップ", - "alias_name_display": "ホワイトドロップ", - "id": "1207301", - "hash": "dddf8f15c3a9e438456f8ab55e9b2870", - "profile": { - "height": "154", - "weight": "41", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ホワイトドロップ", - "alias_name_display": "ホワイトドロップ", - "id": "1307302", - "hash": "7cf82263a00da42088d07c2d6d9a21b5", - "profile": { - "height": "154", - "weight": "41", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "スクールスタイル", - "alias_name_display": "スクールスタイル", - "id": "1212701", - "hash": "116fb3717443e8eecda0740a15862a1b", - "profile": { - "height": "154", - "weight": "41", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "スクールスタイル", - "alias_name_display": "スクールスタイル", - "id": "1312702", - "hash": "17db83ca7e47ff1d1138593fae3a3d29", - "profile": { - "height": "154", - "weight": "41", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ロワイヤル・スクエア", - "alias_name_display": "ロワイヤル・スクエア", - "id": "1219901", - "hash": "78eeaef914bcff2a04145a36a68f0f16", - "profile": { - "height": "154", - "weight": "41", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [ - { - "event_id": 809, - "event_name": "第9回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ロワイヤル・スクエア", - "alias_name_display": "ロワイヤル・スクエア", - "id": "1319902", - "hash": "8302466346e62143800b5ac2e2857240", - "profile": { - "height": "154", - "weight": "41", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [ - { - "event_id": 809, - "event_name": "第9回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ワーキング・クリーン", - "alias_name_display": "ワーキング・クリーン", - "id": "1226601", - "hash": "f0ae078f852e73caba240b6cb3455cd8", - "profile": { - "height": "154", - "weight": "41", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ワーキング・クリーン", - "alias_name_display": "ワーキング・クリーン", - "id": "1326602", - "hash": "326d664c8733fd11eac64a7b69b0a670", - "profile": { - "height": "154", - "weight": "41", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ネクストスターI.C", - "alias_name_display": "ネクストスターI.C", - "id": "1329802", - "hash": "cf4089838cd7d614b245f82a6e90e084", - "profile": { - "height": "154", - "weight": "41", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [ - { - "event_id": 1212, - "event_name": "目指せきらきらモデル アイドルチャレンジ(復刻)" - } - ] - }, - { - "alias_name": "ハッピーマジシャン", - "alias_name_display": "ハッピーマジシャン", - "id": "1406401", - "hash": "ede6fef2e6f2427e20c5ba19134205a9", - "profile": { - "height": "154", - "weight": "41", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ハッピーマジシャン", - "alias_name_display": "ハッピーマジシャン", - "id": "1506402", - "hash": "bf52c02010890d6f6c73481da077c15b", - "profile": { - "height": "154", - "weight": "41", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "私だけのステージ", - "alias_name_display": "私だけのステージ", - "id": "1417601", - "hash": "1c52bde7c700cc558630899d6b10c5e6", - "profile": { - "height": "154", - "weight": "41", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [ - { - "event_id": 806, - "event_name": "アイドルLIVEロワイヤルinSUMMER" - } - ] - }, - { - "alias_name": "私だけのステージ", - "alias_name_display": "私だけのステージ", - "id": "1517602", - "hash": "0471abe6c83dd4e955df04e92dc187be", - "profile": { - "height": "154", - "weight": "41", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [ - { - "event_id": 806, - "event_name": "アイドルLIVEロワイヤルinSUMMER" - } - ] - }, - { - "alias_name": "雨の日に", - "alias_name_display": "雨の日に", - "id": "1425201", - "hash": "67a8414c7452e612da41dd0119dd106b", - "profile": { - "height": "154", - "weight": "41", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [ - { - "event_id": 1502, - "event_name": "チーム対抗雨の日トークバトルショー" - } - ] - }, - { - "alias_name": "雨の日に", - "alias_name_display": "雨の日に", - "id": "1525202", - "hash": "137a1dcdb35042b1b2ed93dd018e7563", - "profile": { - "height": "154", - "weight": "41", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [ - { - "event_id": 1502, - "event_name": "チーム対抗雨の日トークバトルショー" - } - ] - }, - { - "alias_name": "ノスタルジッククォーツ", - "alias_name_display": "ノスタルジッククォーツ", - "id": "1428401", - "hash": "cee63aa3410ac271f9e689e706fed16c", - "profile": { - "height": "154", - "weight": "41", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ノスタルジッククォーツ", - "alias_name_display": "ノスタルジッククォーツ", - "id": "1528402", - "hash": "6505d7ec95341d2ea666bce4c4ace347", - "profile": { - "height": "154", - "weight": "41", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "セクシー☆モデル", - "alias_name_display": "セクシー☆モデル", - "id": "1435301", - "hash": "8f2182eb0bd0296d28272849b868c066", - "profile": { - "height": "154", - "weight": "41", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [ - { - "event_id": 1212, - "event_name": "目指せきらきらモデル アイドルチャレンジ(復刻)" - } - ] - }, - { - "alias_name": "セクシー☆モデル", - "alias_name_display": "セクシー☆モデル", - "id": "1535302", - "hash": "dd3cbc7d99d27b18163a05c94d5fcbd1", - "profile": { - "height": "154", - "weight": "41", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [ - { - "event_id": 1212, - "event_name": "目指せきらきらモデル アイドルチャレンジ(復刻)" - } - ] - } - ], - "units": [ - { - "id": "163", - "name": "フリルドスクエア" - } - ] - }, - "56": { - "idol_id": 56, - "idol_name": "栗原ネネ", - "idol_name_display": "栗原ネネ", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1203301", - "hash": "9d98993861fb0959c1f26b591db03133", - "profile": { - "height": "161", - "weight": "44", - "bust": "77", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1303302", - "hash": "1c72cc9daa679ff0461205b58cd658dd", - "profile": { - "height": "161", - "weight": "44", - "bust": "77", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "サマーライブ", - "alias_name_display": "サマーライブ", - "id": "1205001", - "hash": "c939f82122b3992b8503b84d822325bf", - "profile": { - "height": "161", - "weight": "44", - "bust": "77", - "waist": "54", - "hip": "78" - }, - "event": [ - { - "event_id": 205, - "event_name": "アイドルサバイバルinサマーライブ" - } - ] - }, - { - "alias_name": "サマーライブ", - "alias_name_display": "サマーライブ", - "id": "1305002", - "hash": "a6a97438fb401f3ba9527fd1a1e9854a", - "profile": { - "height": "161", - "weight": "44", - "bust": "77", - "waist": "54", - "hip": "78" - }, - "event": [ - { - "event_id": 205, - "event_name": "アイドルサバイバルinサマーライブ" - } - ] - }, - { - "alias_name": "ドキドキの体験", - "alias_name_display": "ドキドキの体験", - "id": "1214401", - "hash": "15fa4075fb991dac74c0169d34b75722", - "profile": { - "height": "161", - "weight": "44", - "bust": "77", - "waist": "54", - "hip": "78" - }, - "event": [ - { - "event_id": 705, - "event_name": "第5回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ドキドキの体験", - "alias_name_display": "ドキドキの体験", - "id": "1314402", - "hash": "8311423f3087e6037c9f3947b25e2fa5", - "profile": { - "height": "161", - "weight": "44", - "bust": "77", - "waist": "54", - "hip": "78" - }, - "event": [ - { - "event_id": 705, - "event_name": "第5回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "カラダリフレッシュ", - "alias_name_display": "カラダリフレッシュ", - "id": "1221301", - "hash": "976a98cd479d6fee3835551198607d08", - "profile": { - "height": "161", - "weight": "44", - "bust": "77", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "カラダリフレッシュ", - "alias_name_display": "カラダリフレッシュ", - "id": "1321302", - "hash": "76f025719c16fbefa7645d13442902a9", - "profile": { - "height": "161", - "weight": "44", - "bust": "77", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "ロワイヤルND", - "alias_name_display": "ロワイヤルND", - "id": "1224501", - "hash": "72bff87c92c9241d7cbcd6bcbcac4a04", - "profile": { - "height": "161", - "weight": "44", - "bust": "77", - "waist": "54", - "hip": "78" - }, - "event": [ - { - "event_id": 814, - "event_name": "第14回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ロワイヤルND", - "alias_name_display": "ロワイヤルND", - "id": "1324502", - "hash": "4c324bfd2ba4cf7549b0a42c87afc48d", - "profile": { - "height": "161", - "weight": "44", - "bust": "77", - "waist": "54", - "hip": "78" - }, - "event": [ - { - "event_id": 814, - "event_name": "第14回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "クール・ミーツ・ガール", - "alias_name_display": "クール・ミーツ・ガール", - "id": "1229101", - "hash": "f0789a5de3fc7098ff85248f3da62600", - "profile": { - "height": "161", - "weight": "44", - "bust": "77", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "クール・ミーツ・ガール", - "alias_name_display": "クール・ミーツ・ガール", - "id": "1329102", - "hash": "6e082b744d84ca3cf25e0662ef875acf", - "profile": { - "height": "161", - "weight": "44", - "bust": "77", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "水彩の乙姫", - "alias_name_display": "水彩の乙姫", - "id": "1404601", - "hash": "4e33a40fb2614286e18111b184ced78f", - "profile": { - "height": "161", - "weight": "44", - "bust": "77", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "水彩の乙姫", - "alias_name_display": "水彩の乙姫", - "id": "1504602", - "hash": "81c21953f0d614e868b6696aa7305141", - "profile": { - "height": "161", - "weight": "44", - "bust": "77", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "さざ波の歌姫", - "alias_name_display": "さざ波の歌姫", - "id": "1407501", - "hash": "262fdd41fdad100b5ce5dfcb04660e43", - "profile": { - "height": "161", - "weight": "44", - "bust": "77", - "waist": "54", - "hip": "78" - }, - "event": [ - { - "event_id": 505, - "event_name": "アイドルLIVEツアーinバリ島" - } - ] - }, - { - "alias_name": "さざ波の歌姫", - "alias_name_display": "さざ波の歌姫", - "id": "1507502", - "hash": "de9e3875700d52943c8ff3f36ae03f19", - "profile": { - "height": "161", - "weight": "44", - "bust": "77", - "waist": "54", - "hip": "78" - }, - "event": [ - { - "event_id": 505, - "event_name": "アイドルLIVEツアーinバリ島" - } - ] - }, - { - "alias_name": "サファリフレンズ", - "alias_name_display": "サファリフレンズ", - "id": "1418001", - "hash": "8c9125381bc6fac1f4bf22509e1f3d91", - "profile": { - "height": "161", - "weight": "44", - "bust": "77", - "waist": "54", - "hip": "78" - }, - "event": [ - { - "event_id": 414, - "event_name": "どうぶつアドベンチャー オーストラリア編" - } - ] - }, - { - "alias_name": "サファリフレンズ", - "alias_name_display": "サファリフレンズ", - "id": "1518002", - "hash": "3948a272d8553ae67d31c24d9227e6ab", - "profile": { - "height": "161", - "weight": "44", - "bust": "77", - "waist": "54", - "hip": "78" - }, - "event": [ - { - "event_id": 414, - "event_name": "どうぶつアドベンチャー オーストラリア編" - } - ] - }, - { - "alias_name": "サファリフレンズ・S", - "alias_name_display": "サファリフレンズ・S", - "id": "1418101", - "hash": "88cfe7b18e52bee4621c8215daf8da59", - "profile": { - "height": "161", - "weight": "44", - "bust": "77", - "waist": "54", - "hip": "78" - }, - "event": [ - { - "event_id": 414, - "event_name": "どうぶつアドベンチャー オーストラリア編" - } - ] - }, - { - "alias_name": "サファリフレンズ・S", - "alias_name_display": "サファリフレンズ・S", - "id": "1518102", - "hash": "62f0227f670b106cec44eeb1b002a450", - "profile": { - "height": "161", - "weight": "44", - "bust": "77", - "waist": "54", - "hip": "78" - }, - "event": [ - { - "event_id": 414, - "event_name": "どうぶつアドベンチャー オーストラリア編" - } - ] - }, - { - "alias_name": "淡色の花びら", - "alias_name_display": "淡色の花びら", - "id": "1439301", - "hash": "b4e1af48b2ab90cf2741d4326408ad3c", - "profile": { - "height": "161", - "weight": "44", - "bust": "77", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "淡色の花びら", - "alias_name_display": "淡色の花びら", - "id": "1539302", - "hash": "7a9fe2cd8a14757af1ce02c24ab770e4", - "profile": { - "height": "161", - "weight": "44", - "bust": "77", - "waist": "54", - "hip": "78" - }, - "event": [] - } - ], - "units": [ - { - "id": "93", - "name": "サマーライブセーラー" - }, - { - "id": "121", - "name": "ヘルシーサバイブ" - }, - { - "id": "210", - "name": "ロワイヤルスタイルND" - } - ] - }, - "57": { - "idol_id": 57, - "idol_name": "古賀小春", - "idol_name_display": "古賀小春", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1203601", - "hash": "f9947ff6fc9c5c580c0f6382c56cccbf", - "profile": { - "height": "140", - "weight": "35", - "bust": "72", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1303602", - "hash": "a958d30cc805b714a494127e990bd867", - "profile": { - "height": "140", - "weight": "35", - "bust": "72", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "フリルド☆プリンセス", - "alias_name_display": "フリルド☆プリンセス", - "id": "1204601", - "hash": "2f16bbc923b17cba192b8e631e40f14a", - "profile": { - "height": "140", - "weight": "35", - "bust": "72", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "フリルド☆プリンセス", - "alias_name_display": "フリルド☆プリンセス", - "id": "1304602", - "hash": "abb8c88d2d8a4291bf9b718cf403fffb", - "profile": { - "height": "140", - "weight": "35", - "bust": "72", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "パジャマブルー", - "alias_name_display": "パジャマブルー", - "id": "1207901", - "hash": "84e9eb47681f127f2f9302022290c6e5", - "profile": { - "height": "140", - "weight": "35", - "bust": "72", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "パジャマグリーン", - "alias_name_display": "パジャマグリーン", - "id": "1207902", - "hash": "9c9de39a77a00515630ba298315f9770", - "profile": { - "height": "140", - "weight": "35", - "bust": "72", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "パジャマイエロー", - "alias_name_display": "パジャマイエロー", - "id": "1207903", - "hash": "908f82baff4555afab72784e3fa06a76", - "profile": { - "height": "140", - "weight": "35", - "bust": "72", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "パジャマピンク", - "alias_name_display": "パジャマピンク", - "id": "1207904", - "hash": "6d66dea9b369b70085809d46e563cdfd", - "profile": { - "height": "140", - "weight": "35", - "bust": "72", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "制服☆わくわく", - "alias_name_display": "制服☆わくわく", - "id": "1307905", - "hash": "e88dc87103cc832f9c7da447a09a0dfb", - "profile": { - "height": "140", - "weight": "35", - "bust": "72", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "制服&マフラー", - "alias_name_display": "制服&マフラー", - "id": "1307906", - "hash": "12a91027f594548bb27c110247c24a1a", - "profile": { - "height": "140", - "weight": "35", - "bust": "72", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "制服&手袋", - "alias_name_display": "制服&手袋", - "id": "1307907", - "hash": "d2b1685306e2ed5a63b4f842d1e6ccc0", - "profile": { - "height": "140", - "weight": "35", - "bust": "72", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "制服&ランドセル", - "alias_name_display": "制服&ランドセル", - "id": "1307908", - "hash": "46c0db7ce6d94de5ea0d5f485866a6a5", - "profile": { - "height": "140", - "weight": "35", - "bust": "72", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "制服&ヒョウくん", - "alias_name_display": "制服&ヒョウくん", - "id": "1307909", - "hash": "f6913dd02d2b65c487bb089217117909", - "profile": { - "height": "140", - "weight": "35", - "bust": "72", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "ロワイヤルスタイル", - "alias_name_display": "ロワイヤルスタイル", - "id": "1214301", - "hash": "3ddcab2fd453ac8799225df9ef80955f", - "profile": { - "height": "140", - "weight": "35", - "bust": "72", - "waist": "54", - "hip": "77" - }, - "event": [ - { - "event_id": 803, - "event_name": "第3回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ロワイヤルスタイル", - "alias_name_display": "ロワイヤルスタイル", - "id": "1314302", - "hash": "3f61d851272435aff56eece251b042b8", - "profile": { - "height": "140", - "weight": "35", - "bust": "72", - "waist": "54", - "hip": "77" - }, - "event": [ - { - "event_id": 803, - "event_name": "第3回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "マーチングバンド", - "alias_name_display": "マーチングバンド", - "id": "1216301", - "hash": "c1c7ceef7ed0f01ef66002f6a1d559b7", - "profile": { - "height": "140", - "weight": "35", - "bust": "72", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "マーチングバンド", - "alias_name_display": "マーチングバンド", - "id": "1316302", - "hash": "f43a06efe71914d7980f6d083f5e4154", - "profile": { - "height": "140", - "weight": "35", - "bust": "72", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "ナチュラルハート", - "alias_name_display": "ナチュラルハート", - "id": "1324202", - "hash": "9401b97954be6ce2c8b00e83c8a84d00", - "profile": { - "height": "140", - "weight": "35", - "bust": "72", - "waist": "54", - "hip": "77" - }, - "event": [ - { - "event_id": "024", - "event_name": "第24回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "ファンサーキット", - "alias_name_display": "ファンサーキット", - "id": "1227801", - "hash": "8fcbae7bdef65dba83912049e25b4c68", - "profile": { - "height": "140", - "weight": "35", - "bust": "72", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "ファンサーキット", - "alias_name_display": "ファンサーキット", - "id": "1327802", - "hash": "3ca5c74adb44ec35d7f38be469f91279", - "profile": { - "height": "140", - "weight": "35", - "bust": "72", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "ふかふかプリンセス", - "alias_name_display": "ふかふかプリンセス", - "id": "1405510", - "hash": "2897b6951c70fbf6ec07bb04be52db1c", - "profile": { - "height": "140", - "weight": "35", - "bust": "72", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "ふかふかプリンセス", - "alias_name_display": "ふかふかプリンセス", - "id": "1505511", - "hash": "9e8b0acfe5be8dbcfad65b1ba6924ede", - "profile": { - "height": "140", - "weight": "35", - "bust": "72", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "ドリーム☆プリンセス", - "alias_name_display": "ドリーム☆プリンセス", - "id": "1407201", - "hash": "653cf8ab79b929a272572ebfb80e57eb", - "profile": { - "height": "140", - "weight": "35", - "bust": "72", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "ドリーム☆プリンセス", - "alias_name_display": "ドリーム☆プリンセス", - "id": "1507202", - "hash": "177e5715b302c70280bcedb94097954d", - "profile": { - "height": "140", - "weight": "35", - "bust": "72", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "ファンシーチアー", - "alias_name_display": "ファンシーチアー", - "id": "1418201", - "hash": "b1326ae64519769176909f8c31b0ece5", - "profile": { - "height": "140", - "weight": "35", - "bust": "72", - "waist": "54", - "hip": "77" - }, - "event": [ - { - "event_id": 1105, - "event_name": "第5回プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "ファンシーチアー", - "alias_name_display": "ファンシーチアー", - "id": "1518202", - "hash": "e83e6fdacc1705cc72c321acf8c53c55", - "profile": { - "height": "140", - "weight": "35", - "bust": "72", - "waist": "54", - "hip": "77" - }, - "event": [ - { - "event_id": 1105, - "event_name": "第5回プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "プリンセスコースター", - "alias_name_display": "プリンセスコースター", - "id": "1424701", - "hash": "59e784ab13dc54104abc13f42cb007f6", - "profile": { - "height": "140", - "weight": "35", - "bust": "72", - "waist": "54", - "hip": "77" - }, - "event": [ - { - "event_id": 713, - "event_name": "第13回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "プリンセスコースター", - "alias_name_display": "プリンセスコースター", - "id": "1524702", - "hash": "582f24e271bd9b1df18e7806bea31b8f", - "profile": { - "height": "140", - "weight": "35", - "bust": "72", - "waist": "54", - "hip": "77" - }, - "event": [ - { - "event_id": 713, - "event_name": "第13回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "プリンセス☆レディ", - "alias_name_display": "プリンセス☆レディ", - "id": "1435901", - "hash": "2297f63f27b1a7563bb827fe8a8392d2", - "profile": { - "height": "140", - "weight": "35", - "bust": "72", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "プリンセス☆レディ", - "alias_name_display": "プリンセス☆レディ", - "id": "1535902", - "hash": "50a0bb6a83031685c407e03c4bd7d5b1", - "profile": { - "height": "140", - "weight": "35", - "bust": "72", - "waist": "54", - "hip": "77" - }, - "event": [] - } - ], - "units": [ - { - "id": "47", - "name": "ひつじさんとうさぎさん" - }, - { - "id": "59", - "name": "ムシバレイナと小春ちゃん" - }, - { - "id": "114", - "name": "ドリームホープスプリング" - }, - { - "id": "120", - "name": "ブルームジャーニー" - }, - { - "id": "177", - "name": "桜舞隊" - }, - { - "id": "208", - "name": "ロワイヤルスタイル" - }, - { - "id": "214", - "name": "L.M.B.G" - } - ] - }, - "58": { - "idol_id": 58, - "idol_name": "クラリス", - "idol_name_display": "クラリス", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1204301", - "hash": "15bf1c0a280683642827f5f4ef6463fa", - "profile": { - "height": "166", - "weight": "45", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1304302", - "hash": "64b7f4bee3dcda84e80a6eb6fd74bed7", - "profile": { - "height": "166", - "weight": "45", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "メイドコレクション", - "alias_name_display": "メイドコレクション", - "id": "1205501", - "hash": "f96f386674b8663fb2d0922fb9bb9e2f", - "profile": { - "height": "166", - "weight": "45", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "メイドコレクション", - "alias_name_display": "メイドコレクション", - "id": "1305502", - "hash": "a6da3c43dccdc56dedb6e4ef4264b34b", - "profile": { - "height": "166", - "weight": "45", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "慈愛の乙女", - "alias_name_display": "慈愛の乙女", - "id": "1210301", - "hash": "5b2a364d0b324b33475a64e41a5481f5", - "profile": { - "height": "166", - "weight": "45", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "慈愛の乙女", - "alias_name_display": "慈愛の乙女", - "id": "1310302", - "hash": "c117570c3431e779a82be7645da607a8", - "profile": { - "height": "166", - "weight": "45", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ハッピーウェディング", - "alias_name_display": "ハッピーウェディング", - "id": "1216601", - "hash": "bcae385375507c2e23cff748a71b04e0", - "profile": { - "height": "166", - "weight": "45", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ハッピーウェディング", - "alias_name_display": "ハッピーウェディング", - "id": "1316602", - "hash": "99d87d7d5c512fe9aa88aa51d82a24ce", - "profile": { - "height": "166", - "weight": "45", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ロワイヤルスタイルND", - "alias_name_display": "ロワイヤルスタイルND", - "id": "1221801", - "hash": "f756925d3969cd208c9193cfe69a6ebb", - "profile": { - "height": "166", - "weight": "45", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 812, - "event_name": "第12回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ロワイヤルスタイルND", - "alias_name_display": "ロワイヤルスタイルND", - "id": "1321802", - "hash": "9c77a5684cc801ed51be43e8accc7c8d", - "profile": { - "height": "166", - "weight": "45", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 812, - "event_name": "第12回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "純真聖女", - "alias_name_display": "純真聖女", - "id": "1230401", - "hash": "65c278dd35248e03bfab057f151ae7ea", - "profile": { - "height": "166", - "weight": "45", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "純真聖女", - "alias_name_display": "純真聖女", - "id": "1330402", - "hash": "75ec6c3138ddc57e94e07cf9dad8eeee", - "profile": { - "height": "166", - "weight": "45", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "微笑みの聖女", - "alias_name_display": "微笑みの聖女", - "id": "1404101", - "hash": "09335c2b6f8ce37905b310bbeba456a2", - "profile": { - "height": "166", - "weight": "45", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 208, - "event_name": "アイドルサバイバル聖歌響くクリスマス" - } - ] - }, - { - "alias_name": "微笑みの聖女", - "alias_name_display": "微笑みの聖女", - "id": "1504102", - "hash": "bbc3b96cdd63b04e3f14b622cf9fb0b2", - "profile": { - "height": "166", - "weight": "45", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 208, - "event_name": "アイドルサバイバル聖歌響くクリスマス" - } - ] - }, - { - "alias_name": "癒しの贈り主", - "alias_name_display": "癒しの贈り主", - "id": "1411201", - "hash": "e8c7a725d6386301ebc1ca860c09aa25", - "profile": { - "height": "166", - "weight": "45", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 1001, - "event_name": "プロダクション対抗ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "癒しの贈り主", - "alias_name_display": "癒しの贈り主", - "id": "1511202", - "hash": "90ab2e69f7fa23ee5ebebbcbd095ab98", - "profile": { - "height": "166", - "weight": "45", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 1001, - "event_name": "プロダクション対抗ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "クリスマスチアー", - "alias_name_display": "クリスマスチアー", - "id": "1420601", - "hash": "3bad9526e6a985a2b7857ab330d87849", - "profile": { - "height": "166", - "weight": "45", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 1107, - "event_name": "プロダクション対抗トークバトルショー クリスマスSP" - } - ] - }, - { - "alias_name": "クリスマスチアー", - "alias_name_display": "クリスマスチアー", - "id": "1520602", - "hash": "e67c46611c81f95a5e971bc09d145ed1", - "profile": { - "height": "166", - "weight": "45", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 1107, - "event_name": "プロダクション対抗トークバトルショー クリスマスSP" - } - ] - }, - { - "alias_name": "慈愛のくちどけ", - "alias_name_display": "慈愛のくちどけ", - "id": "1431201", - "hash": "79f78b16dee9f5ee22ea98b1b7444da2", - "profile": { - "height": "166", - "weight": "45", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 1209, - "event_name": "アイドルチャレンジ チャレンジクッキング バレンタイン編" - } - ] - }, - { - "alias_name": "慈愛のくちどけ", - "alias_name_display": "慈愛のくちどけ", - "id": "1531202", - "hash": "f86f977a29cb9522f4036111e42b68ee", - "profile": { - "height": "166", - "weight": "45", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 1209, - "event_name": "アイドルチャレンジ チャレンジクッキング バレンタイン編" - } - ] - }, - { - "alias_name": "サンクスクラウン", - "alias_name_display": "サンクスクラウン", - "id": "1438701", - "hash": "50a051e89089dec096cf227dc1d90c28", - "profile": { - "height": "166", - "weight": "45", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 1709, - "event_name": "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" - } - ] - }, - { - "alias_name": "サンクスクラウン", - "alias_name_display": "サンクスクラウン", - "id": "1538702", - "hash": "f109cc5d07d143f89d64cb1e57b17b1f", - "profile": { - "height": "166", - "weight": "45", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 1709, - "event_name": "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" - } - ] - }, - { - "alias_name": "スマイリークラウン", - "alias_name_display": "スマイリークラウン", - "id": "1438801", - "hash": "87efd3625dad418d48da41787a2b37bb", - "profile": { - "height": "166", - "weight": "45", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 1709, - "event_name": "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" - } - ] - }, - { - "alias_name": "スマイリークラウン", - "alias_name_display": "スマイリークラウン", - "id": "1538802", - "hash": "982a1fa17a690105cf07772a7d5bc5a4", - "profile": { - "height": "166", - "weight": "45", - "bust": "80", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 1709, - "event_name": "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" - } - ] - } - ], - "units": [ - { - "id": "183", - "name": "メイドコレクション" - }, - { - "id": "210", - "name": "ロワイヤルスタイルND" - } - ] - }, - "59": { - "idol_id": 59, - "idol_name": "佐久間まゆ", - "idol_name_display": "佐久間まゆ", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1204701", - "hash": "34b22a25affabfd3160d7d70488f7e0d", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "54", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1304702", - "hash": "66a161cbf5b2dbef9930d1e66a94353d", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "54", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ハロウィンパーティー", - "alias_name_display": "ハロウィンパーティー", - "id": "1205801", - "hash": "8fbe508ea0cdc7965934226e987f7cf1", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "54", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ハロウィンパーティー", - "alias_name_display": "ハロウィンパーティー", - "id": "1305802", - "hash": "779ae52ef5e88603c9f59a7c4bc9fc2e", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "54", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "バレンタインパーティー", - "alias_name_display": "バレンタインパーティー", - "id": "1207601", - "hash": "e992cd82aa6f3cb56778cdf52e6d61a7", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "54", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "バレンタインパーティー", - "alias_name_display": "バレンタインパーティー", - "id": "1307602", - "hash": "75dc2d3daa0e13a0a65993dca1ce22e6", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "54", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ミニオンルージュ", - "alias_name_display": "ミニオンルージュ", - "id": "1218301", - "hash": "e25204e06ba87be0ce49d8bae0f75caf", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "54", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ミニオンルージュ", - "alias_name_display": "ミニオンルージュ", - "id": "1318302", - "hash": "6f2093ebbf4a981184e7438c6e9e79ad", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "54", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "恋愛シンドローム", - "alias_name_display": "恋愛シンドローム", - "id": "1406201", - "hash": "68906c11c99933d9b935559d28564dfb", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "54", - "hip": "80" - }, - "event": [ - { - "event_id": "009", - "event_name": "第9回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "恋愛シンドローム", - "alias_name_display": "恋愛シンドローム", - "id": "1506202", - "hash": "94ed4bface9d28f01026c3bd4b37b5b6", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "54", - "hip": "80" - }, - "event": [ - { - "event_id": "009", - "event_name": "第9回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "深紅の絆", - "alias_name_display": "深紅の絆", - "id": "1410001", - "hash": "488b63adfa1f6ee6a8094d896c06a482", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "54", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "深紅の絆", - "alias_name_display": "深紅の絆", - "id": "1510002", - "hash": "b5fcc529f14d2af14cc88049959f75e5", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "54", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "1410201", - "hash": "16b8ab88018ec7d082ed5e30fe919777", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "54", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "1510202", - "hash": "14945818d71edf6c58aca2f6ac285880", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "54", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "永遠のキズナ", - "alias_name_display": "永遠のキズナ", - "id": "1415001", - "hash": "9e9302ef4df411ebec766455d8639829", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "54", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "永遠のキズナ", - "alias_name_display": "永遠のキズナ", - "id": "1515002", - "hash": "ee143713daf8980b379fcf4cb0781252", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "54", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "夜の一面", - "alias_name_display": "夜の一面", - "id": "1422801", - "hash": "6b05c13dbff446aa54b864db247803bc", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "54", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "夜の一面", - "alias_name_display": "夜の一面", - "id": "1522802", - "hash": "65767bfe6dbd99ac9fadfc92b50b8ef4", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "54", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "夏の秘めごと", - "alias_name_display": "夏の秘めごと", - "id": "1425501", - "hash": "30108d92501e8c84f060155397d0c3cf", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "54", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "夏の秘めごと", - "alias_name_display": "夏の秘めごと", - "id": "1525502", - "hash": "73bf94a283339f78981639b3e49dd978", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "54", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "紡ぐ想い", - "alias_name_display": "紡ぐ想い", - "id": "1430301", - "hash": "82a3479c20cdb541e831b7c4e5545101", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "54", - "hip": "80" - }, - "event": [ - { - "event_id": 718, - "event_name": "ドリームLIVEフェスティバル 新春SP" - } - ] - }, - { - "alias_name": "紡ぐ想い", - "alias_name_display": "紡ぐ想い", - "id": "1530302", - "hash": "d57410cf13e6180f953b6a74468ce188", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "54", - "hip": "80" - }, - "event": [ - { - "event_id": 718, - "event_name": "ドリームLIVEフェスティバル 新春SP" - } - ] - }, - { - "alias_name": "あいの待ち人", - "alias_name_display": "あいの待ち人", - "id": "1433601", - "hash": "b575c60c5be78090ea7ea898230be35c", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "54", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "あいの待ち人", - "alias_name_display": "あいの待ち人", - "id": "1533602", - "hash": "7c594e9d082d82d137aed4b622810830", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "54", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "5thアニバーサリー", - "alias_name_display": "5thアニバーサリー", - "id": "1436701", - "hash": "3778fb8d5f804874476ab09b229a0b02", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "54", - "hip": "80" - }, - "event": [ - { - "event_id": 1708, - "event_name": "アイドルプロデュース the 5th Anniversary" - } - ] - }, - { - "alias_name": "5thアニバーサリー", - "alias_name_display": "5thアニバーサリー", - "id": "1536702", - "hash": "bbd2f79e3d424243b81065cdb02254b3", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "54", - "hip": "80" - }, - "event": [ - { - "event_id": 1708, - "event_name": "アイドルプロデュース the 5th Anniversary" - } - ] - }, - { - "alias_name": "5thアニバーサリー・S", - "alias_name_display": "5thアニバーサリー・S", - "id": "1436801", - "hash": "ae5998871579b27a0290534675a8ae45", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "54", - "hip": "80" - }, - "event": [ - { - "event_id": 1708, - "event_name": "アイドルプロデュース the 5th Anniversary" - } - ] - }, - { - "alias_name": "5thアニバーサリー・S", - "alias_name_display": "5thアニバーサリー・S", - "id": "1536802", - "hash": "992e3ae2a449f25bc4678f9bde5e327d", - "profile": { - "height": "153", - "weight": "40", - "bust": "78", - "waist": "54", - "hip": "80" - }, - "event": [ - { - "event_id": 1708, - "event_name": "アイドルプロデュース the 5th Anniversary" - } - ] - } - ], - "units": [ - { - "id": "85", - "name": "アンダーザデスク" - }, - { - "id": "127", - "name": "落花流水" - }, - { - "id": "180", - "name": "ハロウィンパーティー" - }, - { - "id": "192", - "name": "Masque:Rade" - }, - { - "id": "194", - "name": "サクヤヒメ" - }, - { - "id": "212", - "name": "CINDERELLA GIRLS" - } - ] - }, - "60": { - "idol_id": 60, - "idol_name": "村松さくら", - "idol_name_display": "村松さくら", - "aliases": [ - { - "alias_name": "ニューウェーブ", - "alias_name_display": "ニューウェーブ", - "id": "1205301", - "hash": "cca70f56774507cb696b0e85846a8786", - "profile": { - "height": "145", - "weight": "38", - "bust": "75", - "waist": "55", - "hip": "77" - }, - "event": [ - { - "event_id": 401, - "event_name": "新人アイドルプロデュース" - } - ] - }, - { - "alias_name": "ニューウェーブ", - "alias_name_display": "ニューウェーブ", - "id": "1305302", - "hash": "dd194a0d6c9801be6c7ff8401a9abb6a", - "profile": { - "height": "145", - "weight": "38", - "bust": "75", - "waist": "55", - "hip": "77" - }, - "event": [ - { - "event_id": 401, - "event_name": "新人アイドルプロデュース" - } - ] - }, - { - "alias_name": "アメリカンスタイル", - "alias_name_display": "アメリカンスタイル", - "id": "1206501", - "hash": "ccd71c6162319419c02c942f9a4fc25b", - "profile": { - "height": "145", - "weight": "38", - "bust": "75", - "waist": "55", - "hip": "77" - }, - "event": [ - { - "event_id": 501, - "event_name": "アイドルLIVEツアーinUSA" - } - ] - }, - { - "alias_name": "アメリカンスタイル", - "alias_name_display": "アメリカンスタイル", - "id": "1306502", - "hash": "5aa6b80bdf46181a90452a7c9a3d63d7", - "profile": { - "height": "145", - "weight": "38", - "bust": "75", - "waist": "55", - "hip": "77" - }, - "event": [ - { - "event_id": 501, - "event_name": "アイドルLIVEツアーinUSA" - } - ] - }, - { - "alias_name": "ジューンブライド", - "alias_name_display": "ジューンブライド", - "id": "1210001", - "hash": "a4d1885668eaa8e900c8f5a23eb08026", - "profile": { - "height": "145", - "weight": "38", - "bust": "75", - "waist": "55", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "ジューンブライド", - "alias_name_display": "ジューンブライド", - "id": "1310002", - "hash": "6970f984e6d3f291ff2f448a2b1a12d5", - "profile": { - "height": "145", - "weight": "38", - "bust": "75", - "waist": "55", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "ピーチブライト", - "alias_name_display": "ピーチブライト", - "id": "1214801", - "hash": "6d9e8b1a789c3e37cbe870d637e2b03e", - "profile": { - "height": "145", - "weight": "38", - "bust": "75", - "waist": "55", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "ピーチブライト", - "alias_name_display": "ピーチブライト", - "id": "1314802", - "hash": "1b806506d65b67adbd6ecd51d47077c3", - "profile": { - "height": "145", - "weight": "38", - "bust": "75", - "waist": "55", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "振袖まつり", - "alias_name_display": "振袖まつり", - "id": "1219801", - "hash": "eedf6394ca7b88fe4ecad5cced109e30", - "profile": { - "height": "145", - "weight": "38", - "bust": "75", - "waist": "55", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "振袖まつり", - "alias_name_display": "振袖まつり", - "id": "1319802", - "hash": "e8c9d76c86a5b5fe86e5a1c438acb359", - "profile": { - "height": "145", - "weight": "38", - "bust": "75", - "waist": "55", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "ラブリーヒーロー", - "alias_name_display": "ラブリーヒーロー", - "id": "1325602", - "hash": "c1c6c25e5dcc6d8645f3646821d62193", - "profile": { - "height": "145", - "weight": "38", - "bust": "75", - "waist": "55", - "hip": "77" - }, - "event": [ - { - "event_id": 523, - "event_name": "鋼鉄公演 きらりんロボ -襲来!コスメティア帝国-" - } - ] - }, - { - "alias_name": "ピーチウェーブ", - "alias_name_display": "ピーチウェーブ", - "id": "1409401", - "hash": "66a93f44e6d4ebe903a0d2c9af55fa94", - "profile": { - "height": "145", - "weight": "38", - "bust": "75", - "waist": "55", - "hip": "77" - }, - "event": [ - { - "event_id": 801, - "event_name": "アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ピーチウェーブ", - "alias_name_display": "ピーチウェーブ", - "id": "1509402", - "hash": "b0e88abd43d2e92070e87345604ba58e", - "profile": { - "height": "145", - "weight": "38", - "bust": "75", - "waist": "55", - "hip": "77" - }, - "event": [ - { - "event_id": 801, - "event_name": "アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ももいろはぁと", - "alias_name_display": "ももいろはぁと", - "id": "1417701", - "hash": "cd57db91a5128ab3f53353c546fde622", - "profile": { - "height": "145", - "weight": "38", - "bust": "75", - "waist": "55", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "ももいろはぁと", - "alias_name_display": "ももいろはぁと", - "id": "1517702", - "hash": "67be2476e6f6f748af508b908680d3a4", - "profile": { - "height": "145", - "weight": "38", - "bust": "75", - "waist": "55", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "ピンキーサマーガール", - "alias_name_display": "ピンキーサマーガール", - "id": "1425401", - "hash": "66505d81c0f3883b0c8cea8b15730a0e", - "profile": { - "height": "145", - "weight": "38", - "bust": "75", - "waist": "55", - "hip": "77" - }, - "event": [ - { - "event_id": 714, - "event_name": "夏祭りDEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ピンキーサマーガール", - "alias_name_display": "ピンキーサマーガール", - "id": "1525402", - "hash": "aa35983b252aac6dac6946873e8c284c", - "profile": { - "height": "145", - "weight": "38", - "bust": "75", - "waist": "55", - "hip": "77" - }, - "event": [ - { - "event_id": 714, - "event_name": "夏祭りDEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ピーチ・ロワイヤル", - "alias_name_display": "ピーチ・ロワイヤル", - "id": "1435501", - "hash": "26d33e3346c4ddd192d97386d5f6052d", - "profile": { - "height": "145", - "weight": "38", - "bust": "75", - "waist": "55", - "hip": "77" - }, - "event": [ - { - "event_id": 819, - "event_name": "アイドルLIVEロワイヤル お月見SP" - } - ] - }, - { - "alias_name": "ピーチ・ロワイヤル", - "alias_name_display": "ピーチ・ロワイヤル", - "id": "1535502", - "hash": "ebb11271a7d62ddd422485a4f70d346b", - "profile": { - "height": "145", - "weight": "38", - "bust": "75", - "waist": "55", - "hip": "77" - }, - "event": [ - { - "event_id": 819, - "event_name": "アイドルLIVEロワイヤル お月見SP" - } - ] - }, - { - "alias_name": "ピンキーチアー", - "alias_name_display": "ピンキーチアー", - "id": "1439801", - "hash": "25d4b3908e0cf5edea1c5c3b7dbdc238", - "profile": { - "height": "145", - "weight": "38", - "bust": "75", - "waist": "55", - "hip": "77" - }, - "event": [ - { - "event_id": 1512, - "event_name": "第12回チーム対抗トークバトルショー" - } - ] - }, - { - "alias_name": "ピンキーチアー", - "alias_name_display": "ピンキーチアー", - "id": "1539802", - "hash": "f3a647752b0e6c8f4d4938a2a5bbd308", - "profile": { - "height": "145", - "weight": "38", - "bust": "75", - "waist": "55", - "hip": "77" - }, - "event": [ - { - "event_id": 1512, - "event_name": "第12回チーム対抗トークバトルショー" - } - ] - } - ], - "units": [ - { - "id": "99", - "name": "ニューウェーブ" - }, - { - "id": "133", - "name": "スケルツォ・プリマヴェーラ" - }, - { - "id": "211", - "name": "ワンダー・フル" - } - ] - }, - "61": { - "idol_id": 61, - "idol_name": "白菊ほたる", - "idol_name_display": "白菊ほたる", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1207401", - "hash": "131e22dcecbfcd1842e42ba64311950f", - "profile": { - "height": "156", - "weight": "42", - "bust": "77", - "waist": "53", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1307402", - "hash": "ac752be594a7ef6f941afe54b16fb89f", - "profile": { - "height": "156", - "weight": "42", - "bust": "77", - "waist": "53", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "スズランの少女", - "alias_name_display": "スズランの少女", - "id": "1209101", - "hash": "a972c564e643b4fd29062fd793dea518", - "profile": { - "height": "156", - "weight": "42", - "bust": "77", - "waist": "53", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "スズランの少女", - "alias_name_display": "スズランの少女", - "id": "1309102", - "hash": "98f023a92a2325a9d8d8e6792c0fdfc5", - "profile": { - "height": "156", - "weight": "42", - "bust": "77", - "waist": "53", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "クリスマスパーティー", - "alias_name_display": "クリスマスパーティー", - "id": "1213501", - "hash": "696123f234c80f15774af4abddf16b96", - "profile": { - "height": "156", - "weight": "42", - "bust": "77", - "waist": "53", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "クリスマスパーティー", - "alias_name_display": "クリスマスパーティー", - "id": "1313502", - "hash": "58a8fe570f2ff89670664b97f7aa7e3c", - "profile": { - "height": "156", - "weight": "42", - "bust": "77", - "waist": "53", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "ネクストスターI.C", - "alias_name_display": "ネクストスターI.C", - "id": "1318502", - "hash": "d1446ce3ef56732762e0abfd25c5af29", - "profile": { - "height": "156", - "weight": "42", - "bust": "77", - "waist": "53", - "hip": "79" - }, - "event": [ - { - "event_id": 1203, - "event_name": "目指せきらきらモデル アイドルチャレンジ" - } - ] - }, - { - "alias_name": "ブライダルセレクション", - "alias_name_display": "ブライダルセレクション", - "id": "1221901", - "hash": "baa3f8a78d448f1a5d92a31fb365d788", - "profile": { - "height": "156", - "weight": "42", - "bust": "77", - "waist": "53", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "ブライダルセレクション", - "alias_name_display": "ブライダルセレクション", - "id": "1321902", - "hash": "e7625d22c7ab7a44501f90367a46f6ce", - "profile": { - "height": "156", - "weight": "42", - "bust": "77", - "waist": "53", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "新春ガール", - "alias_name_display": "新春ガール", - "id": "1225501", - "hash": "0e072ad042d396bdaa534d07b3bff9ce", - "profile": { - "height": "156", - "weight": "42", - "bust": "77", - "waist": "53", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "新春ガール", - "alias_name_display": "新春ガール", - "id": "1325502", - "hash": "9bd07056d855d3a6dec35a7e6892522a", - "profile": { - "height": "156", - "weight": "42", - "bust": "77", - "waist": "53", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "とらわれの少女", - "alias_name_display": "とらわれの少女", - "id": "1329402", - "hash": "ba6722bb1c6dcdbd1a91709668e646aa", - "profile": { - "height": "156", - "weight": "42", - "bust": "77", - "waist": "53", - "hip": "79" - }, - "event": [ - { - "event_id": 1903, - "event_name": "怪奇公演 心霊探偵の事件簿" - } - ] - }, - { - "alias_name": "ガーリーホープ", - "alias_name_display": "ガーリーホープ", - "id": "1232201", - "hash": "05647a0c627bedf18e33330d17457248", - "profile": { - "height": "156", - "weight": "42", - "bust": "77", - "waist": "53", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "ガーリーホープ", - "alias_name_display": "ガーリーホープ", - "id": "1332202", - "hash": "48a8bc3f29d0f6ca1d50f2ccc232704d", - "profile": { - "height": "156", - "weight": "42", - "bust": "77", - "waist": "53", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "一輪の幸せ", - "alias_name_display": "一輪の幸せ", - "id": "1407801", - "hash": "7366f59d1cb9104aa14408bf6b0a1685", - "profile": { - "height": "156", - "weight": "42", - "bust": "77", - "waist": "53", - "hip": "79" - }, - "event": [ - { - "event_id": 408, - "event_name": "アイドルプロデュース 夜空に咲く花火編" - } - ] - }, - { - "alias_name": "一輪の幸せ", - "alias_name_display": "一輪の幸せ", - "id": "1507802", - "hash": "0b0556489f7c356f4f86c7f62c1895fe", - "profile": { - "height": "156", - "weight": "42", - "bust": "77", - "waist": "53", - "hip": "79" - }, - "event": [ - { - "event_id": 408, - "event_name": "アイドルプロデュース 夜空に咲く花火編" - } - ] - }, - { - "alias_name": "一輪の微笑み", - "alias_name_display": "一輪の微笑み", - "id": "1407901", - "hash": "6a60f6b5f8784dc117518141ec85d6ce", - "profile": { - "height": "156", - "weight": "42", - "bust": "77", - "waist": "53", - "hip": "79" - }, - "event": [ - { - "event_id": 408, - "event_name": "アイドルプロデュース 夜空に咲く花火編" - } - ] - }, - { - "alias_name": "一輪の微笑み", - "alias_name_display": "一輪の微笑み", - "id": "1507902", - "hash": "e9e67aa3048f99a1b6c947420f14fd39", - "profile": { - "height": "156", - "weight": "42", - "bust": "77", - "waist": "53", - "hip": "79" - }, - "event": [ - { - "event_id": 408, - "event_name": "アイドルプロデュース 夜空に咲く花火編" - } - ] - }, - { - "alias_name": "ヴォヤージュ・ブレイバー", - "alias_name_display": "ヴォヤージュ・ブレイバー", - "id": "1413501", - "hash": "3951d206a98c01816ea716b884c4493c", - "profile": { - "height": "156", - "weight": "42", - "bust": "77", - "waist": "53", - "hip": "79" - }, - "event": [ - { - "event_id": 511, - "event_name": "幻想公演 黒薔薇姫のヴォヤージュ" - } - ] - }, - { - "alias_name": "ヴォヤージュ・ブレイバー", - "alias_name_display": "ヴォヤージュ・ブレイバー", - "id": "1513502", - "hash": "7ee03937f2b9ff863c42b7f56b2e3452", - "profile": { - "height": "156", - "weight": "42", - "bust": "77", - "waist": "53", - "hip": "79" - }, - "event": [ - { - "event_id": 511, - "event_name": "幻想公演 黒薔薇姫のヴォヤージュ" - } - ] - }, - { - "alias_name": "ゴシック・モデル", - "alias_name_display": "ゴシック・モデル", - "id": "1418501", - "hash": "528f78898b64b0cfca21b9b3df92b8f9", - "profile": { - "height": "156", - "weight": "42", - "bust": "77", - "waist": "53", - "hip": "79" - }, - "event": [ - { - "event_id": 1203, - "event_name": "目指せきらきらモデル アイドルチャレンジ" - } - ] - }, - { - "alias_name": "ゴシック・モデル", - "alias_name_display": "ゴシック・モデル", - "id": "1518502", - "hash": "60957fb83e61728971e59c3b7d6db824", - "profile": { - "height": "156", - "weight": "42", - "bust": "77", - "waist": "53", - "hip": "79" - }, - "event": [ - { - "event_id": 1203, - "event_name": "目指せきらきらモデル アイドルチャレンジ" - } - ] - }, - { - "alias_name": "ゴシック・モデル・S", - "alias_name_display": "ゴシック・モデル・S", - "id": "1418601", - "hash": "34008f666855a0243d603059170c529d", - "profile": { - "height": "156", - "weight": "42", - "bust": "77", - "waist": "53", - "hip": "79" - }, - "event": [ - { - "event_id": 1203, - "event_name": "目指せきらきらモデル アイドルチャレンジ" - } - ] - }, - { - "alias_name": "ゴシック・モデル・S", - "alias_name_display": "ゴシック・モデル・S", - "id": "1518602", - "hash": "6368d0388cfd0c45ce09e176b611d5ba", - "profile": { - "height": "156", - "weight": "42", - "bust": "77", - "waist": "53", - "hip": "79" - }, - "event": [ - { - "event_id": 1203, - "event_name": "目指せきらきらモデル アイドルチャレンジ" - } - ] - }, - { - "alias_name": "たいせつな言葉", - "alias_name_display": "たいせつな言葉", - "id": "1421601", - "hash": "138f907e7b673a2da81e05f01255d8d4", - "profile": { - "height": "156", - "weight": "42", - "bust": "77", - "waist": "53", - "hip": "79" - }, - "event": [ - { - "event_id": 1108, - "event_name": "第8回プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "たいせつな言葉", - "alias_name_display": "たいせつな言葉", - "id": "1521602", - "hash": "311b51c7dd9d3484cdc72a6581515137", - "profile": { - "height": "156", - "weight": "42", - "bust": "77", - "waist": "53", - "hip": "79" - }, - "event": [ - { - "event_id": 1108, - "event_name": "第8回プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "小さなひかり", - "alias_name_display": "小さなひかり", - "id": "1427401", - "hash": "bdbf0b4f40b07b310430176c7c3fae8a", - "profile": { - "height": "156", - "weight": "42", - "bust": "77", - "waist": "53", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "小さなひかり", - "alias_name_display": "小さなひかり", - "id": "1527402", - "hash": "9024cb32c76078e8f0e4850151c007ba", - "profile": { - "height": "156", - "weight": "42", - "bust": "77", - "waist": "53", - "hip": "79" - }, - "event": [] - } - ], - "units": [ - { - "id": "58", - "name": "ミス・フォーチュン" - }, - { - "id": "129", - "name": "ワンステップス" - }, - { - "id": "130", - "name": "GIRLS BE" - }, - { - "id": "162", - "name": "ブライダルセレクション" - }, - { - "id": "172", - "name": "GIRLS BE NEXT STEP" - } - ] - }, - "62": { - "idol_id": 62, - "idol_name": "早坂美玲", - "idol_name_display": "早坂美玲", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1208501", - "hash": "bad5f37bdb10a4526a1783e377e160ff", - "profile": { - "height": "147", - "weight": "39", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1308502", - "hash": "68cea8b7be360ca60cfe489fef72ba4d", - "profile": { - "height": "147", - "weight": "39", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "ポッピンパンク", - "alias_name_display": "ポッピンパンク", - "id": "1209601", - "hash": "d79fbb722742fb5beb56c15f1c4f103f", - "profile": { - "height": "147", - "weight": "39", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "ポッピンパンク", - "alias_name_display": "ポッピンパンク", - "id": "1309602", - "hash": "c2b615df454d63ec7b6d75b7764088f0", - "profile": { - "height": "147", - "weight": "39", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "振袖まつり", - "alias_name_display": "振袖まつり", - "id": "1219701", - "hash": "7a86475ebfdde585eda4c811ec24cbad", - "profile": { - "height": "147", - "weight": "39", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "振袖まつり", - "alias_name_display": "振袖まつり", - "id": "1319702", - "hash": "bdd3d0105cd1458f0dc2d730aa7d1d7d", - "profile": { - "height": "147", - "weight": "39", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "春キャンプ", - "alias_name_display": "春キャンプ", - "id": "1221401", - "hash": "b371a7c3e8b202a0c678f650caab9648", - "profile": { - "height": "147", - "weight": "39", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [ - { - "event_id": 1701, - "event_name": "アイドルプロデュース はじめてのキャンプ" - } - ] - }, - { - "alias_name": "春キャンプ", - "alias_name_display": "春キャンプ", - "id": "1321402", - "hash": "8c64826cbb5c5e106dc37e01b4613eb0", - "profile": { - "height": "147", - "weight": "39", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [ - { - "event_id": 1701, - "event_name": "アイドルプロデュース はじめてのキャンプ" - } - ] - }, - { - "alias_name": "笑顔でキャンプ", - "alias_name_display": "笑顔でキャンプ", - "id": "1221501", - "hash": "8641b029a36d30cac2224b3e28374de5", - "profile": { - "height": "147", - "weight": "39", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [ - { - "event_id": 1701, - "event_name": "アイドルプロデュース はじめてのキャンプ" - } - ] - }, - { - "alias_name": "笑顔でキャンプ", - "alias_name_display": "笑顔でキャンプ", - "id": "1321502", - "hash": "4aa82a539c35e043008a425cb5500a6d", - "profile": { - "height": "147", - "weight": "39", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [ - { - "event_id": 1701, - "event_name": "アイドルプロデュース はじめてのキャンプ" - } - ] - }, - { - "alias_name": "ドリームトリック", - "alias_name_display": "ドリームトリック", - "id": "1227701", - "hash": "fa77d5ee099e6a92a37b073c109a9998", - "profile": { - "height": "147", - "weight": "39", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [ - { - "event_id": 721, - "event_name": "第21回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ドリームトリック", - "alias_name_display": "ドリームトリック", - "id": "1327702", - "hash": "e976ab9a95755872d16aa104b21250cb", - "profile": { - "height": "147", - "weight": "39", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [ - { - "event_id": 721, - "event_name": "第21回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "パンクな乙女", - "alias_name_display": "パンクな乙女", - "id": "1409001", - "hash": "1b3eb0f6d24358407bf0ae20924dda0f", - "profile": { - "height": "147", - "weight": "39", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [ - { - "event_id": "012", - "event_name": "第12回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "パンクな乙女", - "alias_name_display": "パンクな乙女", - "id": "1509002", - "hash": "1cd236539b1fd894749b204de5366773", - "profile": { - "height": "147", - "weight": "39", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [ - { - "event_id": "012", - "event_name": "第12回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "タイニーロワイヤル", - "alias_name_display": "タイニーロワイヤル", - "id": "1413101", - "hash": "562859c070d8be5fed9ff656590c9130", - "profile": { - "height": "147", - "weight": "39", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [ - { - "event_id": 804, - "event_name": "第4回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "タイニーロワイヤル", - "alias_name_display": "タイニーロワイヤル", - "id": "1513102", - "hash": "a378ecd5a22ee861931d828f3bb9b5c6", - "profile": { - "height": "147", - "weight": "39", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [ - { - "event_id": 804, - "event_name": "第4回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ちいさなメイドさん", - "alias_name_display": "ちいさなメイドさん", - "id": "1417501", - "hash": "da000df3ec68bd3bdeb736063003bda4", - "profile": { - "height": "147", - "weight": "39", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "ちいさなメイドさん", - "alias_name_display": "ちいさなメイドさん", - "id": "1517502", - "hash": "9ab6c26a04dabd10040b29b2743401bf", - "profile": { - "height": "147", - "weight": "39", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "小悪魔エース", - "alias_name_display": "小悪魔エース", - "id": "1427801", - "hash": "2be0cb2364a23cddd828baa99f2be3af", - "profile": { - "height": "147", - "weight": "39", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "小悪魔エース", - "alias_name_display": "小悪魔エース", - "id": "1527802", - "hash": "d705eed7b89ddaf08fb7818f0ca2fa0c", - "profile": { - "height": "147", - "weight": "39", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "スウィートデビル", - "alias_name_display": "スウィートデビル", - "id": "1436201", - "hash": "3dacc7a55df85271a71ceada8e29e140", - "profile": { - "height": "147", - "weight": "39", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [ - { - "event_id": 725, - "event_name": "第25回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "スウィートデビル", - "alias_name_display": "スウィートデビル", - "id": "1536202", - "hash": "1aea545811f830d6c6baad2453571a96", - "profile": { - "height": "147", - "weight": "39", - "bust": "75", - "waist": "54", - "hip": "77" - }, - "event": [ - { - "event_id": 725, - "event_name": "第25回ドリームLIVEフェスティバル" - } - ] - } - ], - "units": [ - { - "id": "83", - "name": "Shock'in Pink!" - }, - { - "id": "108", - "name": "individuals" - }, - { - "id": "186", - "name": "LittlePOPS" - } - ] - }, - "63": { - "idol_id": 63, - "idol_name": "有浦柑奈", - "idol_name_display": "有浦柑奈", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1212001", - "hash": "6a5d8d6eb2f6d9d734794f521447d592", - "profile": { - "height": "155", - "weight": "44", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1312002", - "hash": "c61eed5b951b911628aa095766126575", - "profile": { - "height": "155", - "weight": "44", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ラブ&ハッピー", - "alias_name_display": "ラブ&ハッピー", - "id": "1213701", - "hash": "ca5185ecc1e5ec937692c1fc7c17ea6b", - "profile": { - "height": "155", - "weight": "44", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 1001, - "event_name": "プロダクション対抗ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ラブ&ハッピー", - "alias_name_display": "ラブ&ハッピー", - "id": "1313702", - "hash": "48305cfd4d369af92be35406d600b694", - "profile": { - "height": "155", - "weight": "44", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 1001, - "event_name": "プロダクション対抗ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "グリッターステージ", - "alias_name_display": "グリッターステージ", - "id": "1215301", - "hash": "79a9586c65b68c645c2d4ecc038911dc", - "profile": { - "height": "155", - "weight": "44", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "グリッターステージ", - "alias_name_display": "グリッターステージ", - "id": "1315302", - "hash": "3ed3bde1cf66bc0ed3ab12dd9f35dbd3", - "profile": { - "height": "155", - "weight": "44", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ラヴスピリッツ", - "alias_name_display": "ラヴスピリッツ", - "id": "1220101", - "hash": "69725122bafcda8e1df0dde17ed22ca6", - "profile": { - "height": "155", - "weight": "44", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ラヴスピリッツ", - "alias_name_display": "ラヴスピリッツ", - "id": "1320102", - "hash": "897aab97bad314ac6a7299e13eb7fb55", - "profile": { - "height": "155", - "weight": "44", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "シーフパートナー", - "alias_name_display": "シーフパートナー", - "id": "1323202", - "hash": "16a509cb6675eac3dd83dfac5743af24", - "profile": { - "height": "155", - "weight": "44", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 521, - "event_name": "怪盗公演 美しき追跡者" - } - ] - }, - { - "alias_name": "ピースフルワールド", - "alias_name_display": "ピースフルワールド", - "id": "1228901", - "hash": "f3ba2abe509615506b3d536bb54388d1", - "profile": { - "height": "155", - "weight": "44", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": "030", - "event_name": "第30回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "ピースフルワールド", - "alias_name_display": "ピースフルワールド", - "id": "1328902", - "hash": "b3132f8ad6730a31b05e7e51066d8302", - "profile": { - "height": "155", - "weight": "44", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": "030", - "event_name": "第30回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "船上の音楽家", - "alias_name_display": "船上の音楽家", - "id": "1415601", - "hash": "f7c5267834a12b3aa0bc4601c553e3f3", - "profile": { - "height": "155", - "weight": "44", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 513, - "event_name": "海賊公演 オーシャンクルーズ" - } - ] - }, - { - "alias_name": "船上の音楽家", - "alias_name_display": "船上の音楽家", - "id": "1515602", - "hash": "4cfdc9ae4b380127768d15e1988475bc", - "profile": { - "height": "155", - "weight": "44", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 513, - "event_name": "海賊公演 オーシャンクルーズ" - } - ] - }, - { - "alias_name": "ピースドリーマー", - "alias_name_display": "ピースドリーマー", - "id": "1430201", - "hash": "dd3751e2991152c78eed4e4bbc8b2401", - "profile": { - "height": "155", - "weight": "44", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": "025", - "event_name": "第25回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "ピースドリーマー", - "alias_name_display": "ピースドリーマー", - "id": "1530202", - "hash": "1dde1350d45ec9d096ef02d5561bec81", - "profile": { - "height": "155", - "weight": "44", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": "025", - "event_name": "第25回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "パワーオブラブ", - "alias_name_display": "パワーオブラブ", - "id": "1438501", - "hash": "d1cf0c8c8e9f653db5555858fcad64d5", - "profile": { - "height": "155", - "weight": "44", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "パワーオブラブ", - "alias_name_display": "パワーオブラブ", - "id": "1538502", - "hash": "23ad85825d08c2b01758a0a95eee45d2", - "profile": { - "height": "155", - "weight": "44", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [] - } - ], - "units": [ - { - "id": "24", - "name": "シンフォニック・ワールド" - }, - { - "id": "92", - "name": "ゴスペルシスターズ" - }, - { - "id": "132", - "name": "thinE/Dasein" - } - ] - }, - "64": { - "idol_id": 64, - "idol_name": "乙倉悠貴", - "idol_name_display": "乙倉悠貴", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "1216401", - "hash": "5d22c46f3d70b063510b1afdb41faca1", - "profile": { - "height": "164", - "weight": "40", - "bust": "70", - "waist": "53", - "hip": "74" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "1316402", - "hash": "954b44944c72b799603401083f286017", - "profile": { - "height": "164", - "weight": "40", - "bust": "70", - "waist": "53", - "hip": "74" - }, - "event": [] - }, - { - "alias_name": "メルヘンアニマルズ", - "alias_name_display": "メルヘンアニマルズ", - "id": "1218101", - "hash": "65156c8acd72ce0a30ac8cc82eae3922", - "profile": { - "height": "164", - "weight": "40", - "bust": "70", - "waist": "53", - "hip": "74" - }, - "event": [] - }, - { - "alias_name": "メルヘンアニマルズ", - "alias_name_display": "メルヘンアニマルズ", - "id": "1318102", - "hash": "44e8a59cac558d9023fe85d39e422b41", - "profile": { - "height": "164", - "weight": "40", - "bust": "70", - "waist": "53", - "hip": "74" - }, - "event": [] - }, - { - "alias_name": "新春I.C", - "alias_name_display": "新春I.C", - "id": "1319602", - "hash": "6cbba06b6172e63b542c161dda875278", - "profile": { - "height": "164", - "weight": "40", - "bust": "70", - "waist": "53", - "hip": "74" - }, - "event": [ - { - "event_id": 1204, - "event_name": "新年かくし芸SP アイドルチャレンジ" - } - ] - }, - { - "alias_name": "アクティブガール", - "alias_name_display": "アクティブガール", - "id": "1225201", - "hash": "8c20bc6f85beedbeeaafaa2bd426b225", - "profile": { - "height": "164", - "weight": "40", - "bust": "70", - "waist": "53", - "hip": "74" - }, - "event": [] - }, - { - "alias_name": "アクティブガール", - "alias_name_display": "アクティブガール", - "id": "1325202", - "hash": "5e93669a32a19d588d7663d863b94028", - "profile": { - "height": "164", - "weight": "40", - "bust": "70", - "waist": "53", - "hip": "74" - }, - "event": [] - }, - { - "alias_name": "華傘の芸達者", - "alias_name_display": "華傘の芸達者", - "id": "1421001", - "hash": "e43584224d572bfa69384210ecc50cea", - "profile": { - "height": "164", - "weight": "40", - "bust": "70", - "waist": "53", - "hip": "74" - }, - "event": [ - { - "event_id": 1204, - "event_name": "新年かくし芸SP アイドルチャレンジ" - } - ] - }, - { - "alias_name": "華傘の芸達者", - "alias_name_display": "華傘の芸達者", - "id": "1521002", - "hash": "660992e6898af963ff6f32f2e1473823", - "profile": { - "height": "164", - "weight": "40", - "bust": "70", - "waist": "53", - "hip": "74" - }, - "event": [ - { - "event_id": 1204, - "event_name": "新年かくし芸SP アイドルチャレンジ" - } - ] - }, - { - "alias_name": "華傘の芸達者・S", - "alias_name_display": "華傘の芸達者・S", - "id": "1421101", - "hash": "05585b2d42b3c8fc7da7b2ff930b0511", - "profile": { - "height": "164", - "weight": "40", - "bust": "70", - "waist": "53", - "hip": "74" - }, - "event": [ - { - "event_id": 1204, - "event_name": "新年かくし芸SP アイドルチャレンジ" - } - ] - }, - { - "alias_name": "華傘の芸達者・S", - "alias_name_display": "華傘の芸達者・S", - "id": "1521102", - "hash": "2b87ffadfcb99c1f9e6a8b0d13ce2827", - "profile": { - "height": "164", - "weight": "40", - "bust": "70", - "waist": "53", - "hip": "74" - }, - "event": [ - { - "event_id": 1204, - "event_name": "新年かくし芸SP アイドルチャレンジ" - } - ] - }, - { - "alias_name": "春らんまん", - "alias_name_display": "春らんまん", - "id": "1423401", - "hash": "4c573ad24433422bc5f9887af463ecd7", - "profile": { - "height": "164", - "weight": "40", - "bust": "70", - "waist": "53", - "hip": "74" - }, - "event": [ - { - "event_id": 712, - "event_name": "花見DEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "春らんまん", - "alias_name_display": "春らんまん", - "id": "1523402", - "hash": "faa2ce907ee26f77d26dcbe274eeb3be", - "profile": { - "height": "164", - "weight": "40", - "bust": "70", - "waist": "53", - "hip": "74" - }, - "event": [ - { - "event_id": 712, - "event_name": "花見DEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "秋風乙女", - "alias_name_display": "秋風乙女", - "id": "1428101", - "hash": "91de97f14dbeab0a3ac2c81c8e1de8de", - "profile": { - "height": "164", - "weight": "40", - "bust": "70", - "waist": "53", - "hip": "74" - }, - "event": [] - }, - { - "alias_name": "秋風乙女", - "alias_name_display": "秋風乙女", - "id": "1528102", - "hash": "baa712b49bc10f53ede75059dfa577a1", - "profile": { - "height": "164", - "weight": "40", - "bust": "70", - "waist": "53", - "hip": "74" - }, - "event": [] - }, - { - "alias_name": "常夏アロハ", - "alias_name_display": "常夏アロハ", - "id": "1435001", - "hash": "5528621801ae35705602432711607da1", - "profile": { - "height": "164", - "weight": "40", - "bust": "70", - "waist": "53", - "hip": "74" - }, - "event": [ - { - "event_id": 1707, - "event_name": "アイドルプロデュース アロハ!常夏の楽園" - } - ] - }, - { - "alias_name": "常夏アロハ", - "alias_name_display": "常夏アロハ", - "id": "1535002", - "hash": "621427e1c27d15a53a285a467de19a74", - "profile": { - "height": "164", - "weight": "40", - "bust": "70", - "waist": "53", - "hip": "74" - }, - "event": [ - { - "event_id": 1707, - "event_name": "アイドルプロデュース アロハ!常夏の楽園" - } - ] - }, - { - "alias_name": "笑顔でアロハ", - "alias_name_display": "笑顔でアロハ", - "id": "1435101", - "hash": "3b49dc6079a69a60f31a53c6e1688161", - "profile": { - "height": "164", - "weight": "40", - "bust": "70", - "waist": "53", - "hip": "74" - }, - "event": [ - { - "event_id": 1707, - "event_name": "アイドルプロデュース アロハ!常夏の楽園" - } - ] - }, - { - "alias_name": "笑顔でアロハ", - "alias_name_display": "笑顔でアロハ", - "id": "1535102", - "hash": "99f50339aa26af0bb95f0d37c9066bd6", - "profile": { - "height": "164", - "weight": "40", - "bust": "70", - "waist": "53", - "hip": "74" - }, - "event": [ - { - "event_id": 1707, - "event_name": "アイドルプロデュース アロハ!常夏の楽園" - } - ] - }, - { - "alias_name": "ファインスカイ", - "alias_name_display": "ファインスカイ", - "id": "1438901", - "hash": "093a75688be3f74755f356c07b83bcfa", - "profile": { - "height": "164", - "weight": "40", - "bust": "70", - "waist": "53", - "hip": "74" - }, - "event": [] - }, - { - "alias_name": "ファインスカイ", - "alias_name_display": "ファインスカイ", - "id": "1538902", - "hash": "ad1d9695914de9d5464ffe838872530f", - "profile": { - "height": "164", - "weight": "40", - "bust": "70", - "waist": "53", - "hip": "74" - }, - "event": [] - } - ], - "units": [ - { - "id": "166", - "name": "メルヘンアニマルズ" - }, - { - "id": "191", - "name": "Love Yell" - } - ] - }, - "65": { - "idol_id": 65, - "idol_name": "原田美世", - "idol_name_display": "原田美世", - "aliases": [ - { - "alias_name": "クリスマスパーティー", - "alias_name_display": "クリスマスパーティー", - "id": "1206701", - "hash": "2e36224b97dfdd2701e9803ee789f47d", - "profile": { - "height": "163", - "weight": "46", - "bust": "86", - "waist": "59", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "クリスマスパーティー", - "alias_name_display": "クリスマスパーティー", - "id": "1306702", - "hash": "b2f52e7661963396866c5c8801e3c7a8", - "profile": { - "height": "163", - "weight": "46", - "bust": "86", - "waist": "59", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "レインドロップ", - "alias_name_display": "レインドロップ", - "id": "1209801", - "hash": "d9e622ccd32e6e70f379da48c416ee10", - "profile": { - "height": "163", - "weight": "46", - "bust": "86", - "waist": "59", - "hip": "85" - }, - "event": [ - { - "event_id": 407, - "event_name": "アイドルプロデュース 鎌倉あじさい巡り" - } - ] - }, - { - "alias_name": "レインドロップ", - "alias_name_display": "レインドロップ", - "id": "1309802", - "hash": "d09aeee3ce393112c2532b038367423e", - "profile": { - "height": "163", - "weight": "46", - "bust": "86", - "waist": "59", - "hip": "85" - }, - "event": [ - { - "event_id": 407, - "event_name": "アイドルプロデュース 鎌倉あじさい巡り" - } - ] - }, - { - "alias_name": "レインドロップスマイル", - "alias_name_display": "レインドロップスマイル", - "id": "1209901", - "hash": "619ff1724ecbaf11bc00c823d4eea577", - "profile": { - "height": "163", - "weight": "46", - "bust": "86", - "waist": "59", - "hip": "85" - }, - "event": [ - { - "event_id": 407, - "event_name": "アイドルプロデュース 鎌倉あじさい巡り" - } - ] - }, - { - "alias_name": "レインドロップスマイル", - "alias_name_display": "レインドロップスマイル", - "id": "1309902", - "hash": "6b357a435e6bc4225e825246e617fe5b", - "profile": { - "height": "163", - "weight": "46", - "bust": "86", - "waist": "59", - "hip": "85" - }, - "event": [ - { - "event_id": 407, - "event_name": "アイドルプロデュース 鎌倉あじさい巡り" - } - ] - }, - { - "alias_name": "ドライブRQ", - "alias_name_display": "ドライブRQ", - "id": "1216101", - "hash": "219438cc64a62c45381b04498feb51e5", - "profile": { - "height": "163", - "weight": "46", - "bust": "86", - "waist": "59", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ドライブRQ", - "alias_name_display": "ドライブRQ", - "id": "1316102", - "hash": "3950c0f64d2f068f043545e1f793cad3", - "profile": { - "height": "163", - "weight": "46", - "bust": "86", - "waist": "59", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ナイトパーティー", - "alias_name_display": "ナイトパーティー", - "id": "1220701", - "hash": "e966697d9927d312afa57c71c74bc204", - "profile": { - "height": "163", - "weight": "46", - "bust": "86", - "waist": "59", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ナイトパーティー", - "alias_name_display": "ナイトパーティー", - "id": "1320702", - "hash": "07e249cdd43460fc4f8196cf5ca5d81f", - "profile": { - "height": "163", - "weight": "46", - "bust": "86", - "waist": "59", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "秘めた輝き", - "alias_name_display": "秘めた輝き", - "id": "1400501", - "hash": "86f3ff681d40a7f6da7df78c867f6e7c", - "profile": { - "height": "163", - "weight": "46", - "bust": "86", - "waist": "59", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "秘めた輝き", - "alias_name_display": "秘めた輝き", - "id": "1500502", - "hash": "f8db7c518658eac25ae8faf1ccc9eded", - "profile": { - "height": "163", - "weight": "46", - "bust": "86", - "waist": "59", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ドライブインサマー", - "alias_name_display": "ドライブインサマー", - "id": "1408601", - "hash": "d4a273e502c1c75d67f267e6d9e846a0", - "profile": { - "height": "163", - "weight": "46", - "bust": "86", - "waist": "59", - "hip": "85" - }, - "event": [ - { - "event_id": 211, - "event_name": "アイドルサバイバルinサマーバケーション" - } - ] - }, - { - "alias_name": "ドライブインサマー", - "alias_name_display": "ドライブインサマー", - "id": "1508602", - "hash": "0bd2ddf631fd26f0da534b0565402077", - "profile": { - "height": "163", - "weight": "46", - "bust": "86", - "waist": "59", - "hip": "85" - }, - "event": [ - { - "event_id": 211, - "event_name": "アイドルサバイバルinサマーバケーション" - } - ] - }, - { - "alias_name": "乙女の素顔", - "alias_name_display": "乙女の素顔", - "id": "1428301", - "hash": "54e7f6af667defe6b2ab433271c3fe9d", - "profile": { - "height": "163", - "weight": "46", - "bust": "86", - "waist": "59", - "hip": "85" - }, - "event": [ - { - "event_id": "024", - "event_name": "第24回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "乙女の素顔", - "alias_name_display": "乙女の素顔", - "id": "1528302", - "hash": "51c0da348e4a2dcb10c2488f7baa0a02", - "profile": { - "height": "163", - "weight": "46", - "bust": "86", - "waist": "59", - "hip": "85" - }, - "event": [ - { - "event_id": "024", - "event_name": "第24回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "ドライブチアー", - "alias_name_display": "ドライブチアー", - "id": "1432801", - "hash": "321e95f43feeaba224015b8a9809d180", - "profile": { - "height": "163", - "weight": "46", - "bust": "86", - "waist": "59", - "hip": "85" - }, - "event": [ - { - "event_id": 1507, - "event_name": "チーム対抗トークバトルショー オールスターSP" - } - ] - }, - { - "alias_name": "ドライブチアー", - "alias_name_display": "ドライブチアー", - "id": "1532802", - "hash": "c8e0646fdc38f0c2b314ea48b6cf8f18", - "profile": { - "height": "163", - "weight": "46", - "bust": "86", - "waist": "59", - "hip": "85" - }, - "event": [ - { - "event_id": 1507, - "event_name": "チーム対抗トークバトルショー オールスターSP" - } - ] - }, - { - "alias_name": "ウィンターアクセル", - "alias_name_display": "ウィンターアクセル", - "id": "1437701", - "hash": "30332395012024d6987aaefddfcd258d", - "profile": { - "height": "163", - "weight": "46", - "bust": "86", - "waist": "59", - "hip": "85" - }, - "event": [ - { - "event_id": 821, - "event_name": "第21回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ウィンターアクセル", - "alias_name_display": "ウィンターアクセル", - "id": "1537702", - "hash": "1be46e70f136716b759b15340806be70", - "profile": { - "height": "163", - "weight": "46", - "bust": "86", - "waist": "59", - "hip": "85" - }, - "event": [ - { - "event_id": 821, - "event_name": "第21回アイドルLIVEロワイヤル" - } - ] - } - ], - "units": [ - { - "id": "87", - "name": "ウィンター・F・ドライバーズ" - }, - { - "id": "106", - "name": "レインドロップ" - } - ] - }, - "66": { - "idol_id": 66, - "idol_name": "池袋晶葉", - "idol_name_display": "池袋晶葉", - "aliases": [ - { - "alias_name": "ムーンライトバニー", - "alias_name_display": "ムーンライトバニー", - "id": "1002201", - "hash": "bd75cdaf7d77b14fca1d6f6c65dc88da", - "profile": { - "height": "148", - "weight": "39", - "bust": "75", - "waist": "53", - "hip": "74" - }, - "event": [ - { - "event_id": 107, - "event_name": "秋夜のお月見会" - } - ] - }, - { - "alias_name": "ムーンライトバニー", - "alias_name_display": "ムーンライトバニー", - "id": "1102202", - "hash": "697b8f00afc7840f3ab4dccd1a2d1456", - "profile": { - "height": "148", - "weight": "39", - "bust": "75", - "waist": "53", - "hip": "74" - }, - "event": [ - { - "event_id": 107, - "event_name": "秋夜のお月見会" - } - ] - }, - { - "alias_name": "ひな祭り", - "alias_name_display": "ひな祭り", - "id": "1208101", - "hash": "ed07eefde06a0e74f9ef6a51f097542f", - "profile": { - "height": "148", - "weight": "39", - "bust": "75", - "waist": "53", - "hip": "74" - }, - "event": [ - { - "event_id": 209, - "event_name": "アイドルサバイバルひな祭り2013" - } - ] - }, - { - "alias_name": "ひな祭り", - "alias_name_display": "ひな祭り", - "id": "1308102", - "hash": "ee50c5ea099be8622819ba79974e0227", - "profile": { - "height": "148", - "weight": "39", - "bust": "75", - "waist": "53", - "hip": "74" - }, - "event": [ - { - "event_id": 209, - "event_name": "アイドルサバイバルひな祭り2013" - } - ] - }, - { - "alias_name": "ニューイヤースタイル", - "alias_name_display": "ニューイヤースタイル", - "id": "1213901", - "hash": "9ee2d80d09ebbb1c2ae6031cc9127cce", - "profile": { - "height": "148", - "weight": "39", - "bust": "75", - "waist": "53", - "hip": "74" - }, - "event": [ - { - "event_id": 509, - "event_name": "新春LIVEツアーカーニバル" - } - ] - }, - { - "alias_name": "ニューイヤースタイル", - "alias_name_display": "ニューイヤースタイル", - "id": "1313902", - "hash": "22a3924b57af6ad84167ec6aab0cff9b", - "profile": { - "height": "148", - "weight": "39", - "bust": "75", - "waist": "53", - "hip": "74" - }, - "event": [ - { - "event_id": 509, - "event_name": "新春LIVEツアーカーニバル" - } - ] - }, - { - "alias_name": "エレガントI.C", - "alias_name_display": "エレガントI.C", - "id": "1320602", - "hash": "cd313c43cae82fae20be9a0dc72539e9", - "profile": { - "height": "148", - "weight": "39", - "bust": "75", - "waist": "53", - "hip": "74" - }, - "event": [ - { - "event_id": 1205, - "event_name": "目指せ優雅なお嬢様 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "春風スポーツ", - "alias_name_display": "春風スポーツ", - "id": "1227301", - "hash": "ad5ccce9185e2d6423e6a9c36d41a03f", - "profile": { - "height": "148", - "weight": "39", - "bust": "75", - "waist": "53", - "hip": "74" - }, - "event": [] - }, - { - "alias_name": "春風スポーツ", - "alias_name_display": "春風スポーツ", - "id": "1327302", - "hash": "e43755a547736e9b339caa808f96de7f", - "profile": { - "height": "148", - "weight": "39", - "bust": "75", - "waist": "53", - "hip": "74" - }, - "event": [] - }, - { - "alias_name": "ロボティックガール", - "alias_name_display": "ロボティックガール", - "id": "1230001", - "hash": "d3b7cfc6576419c59e677e6cf6067e36", - "profile": { - "height": "148", - "weight": "39", - "bust": "75", - "waist": "53", - "hip": "74" - }, - "event": [] - }, - { - "alias_name": "ロボティックガール", - "alias_name_display": "ロボティックガール", - "id": "1330002", - "hash": "0de2eecb0cc7557f01bc2960c1357848", - "profile": { - "height": "148", - "weight": "39", - "bust": "75", - "waist": "53", - "hip": "74" - }, - "event": [] - }, - { - "alias_name": "天才ロボ少女", - "alias_name_display": "天才ロボ少女", - "id": "1400601", - "hash": "53cac9bfd084f9b278d6d1757698f995", - "profile": { - "height": "148", - "weight": "39", - "bust": "75", - "waist": "53", - "hip": "74" - }, - "event": [ - { - "event_id": 102, - "event_name": "アイドルおもちつき大会" - } - ] - }, - { - "alias_name": "天才ロボ少女", - "alias_name_display": "天才ロボ少女", - "id": "1500602", - "hash": "05533b7c1971f954c4ce5d1af1487281", - "profile": { - "height": "148", - "weight": "39", - "bust": "75", - "waist": "53", - "hip": "74" - }, - "event": [ - { - "event_id": 102, - "event_name": "アイドルおもちつき大会" - } - ] - }, - { - "alias_name": "ハッピー☆ジーニアス", - "alias_name_display": "ハッピー☆ジーニアス", - "id": "1408001", - "hash": "373a25b220a7c12e4bd7c03e550e74b9", - "profile": { - "height": "148", - "weight": "39", - "bust": "75", - "waist": "53", - "hip": "74" - }, - "event": [] - }, - { - "alias_name": "ハッピー☆ジーニアス", - "alias_name_display": "ハッピー☆ジーニアス", - "id": "1508002", - "hash": "3b636158419583d38a6509dc474a955c", - "profile": { - "height": "148", - "weight": "39", - "bust": "75", - "waist": "53", - "hip": "74" - }, - "event": [] - }, - { - "alias_name": "ロボティックチアー", - "alias_name_display": "ロボティックチアー", - "id": "1415301", - "hash": "50f27e1fb1c584b25268a6cc542b4eee", - "profile": { - "height": "148", - "weight": "39", - "bust": "75", - "waist": "53", - "hip": "74" - }, - "event": [ - { - "event_id": 1103, - "event_name": "第3回プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "ロボティックチアー", - "alias_name_display": "ロボティックチアー", - "id": "1515302", - "hash": "d26af3a2ad88b76b7f13dfa31e5258c2", - "profile": { - "height": "148", - "weight": "39", - "bust": "75", - "waist": "53", - "hip": "74" - }, - "event": [ - { - "event_id": 1103, - "event_name": "第3回プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "異才のお嬢様", - "alias_name_display": "異才のお嬢様", - "id": "1422601", - "hash": "2d6b4f52e2a52bce202c7c9913fec8bc", - "profile": { - "height": "148", - "weight": "39", - "bust": "75", - "waist": "53", - "hip": "74" - }, - "event": [ - { - "event_id": 1205, - "event_name": "目指せ優雅なお嬢様 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "異才のお嬢様", - "alias_name_display": "異才のお嬢様", - "id": "1522602", - "hash": "0aae1c480ec4ee5619b67a1a02731bfe", - "profile": { - "height": "148", - "weight": "39", - "bust": "75", - "waist": "53", - "hip": "74" - }, - "event": [ - { - "event_id": 1205, - "event_name": "目指せ優雅なお嬢様 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "異才のお嬢様・S", - "alias_name_display": "異才のお嬢様・S", - "id": "1422701", - "hash": "ff2d88dddcb499d5b89335b94f798535", - "profile": { - "height": "148", - "weight": "39", - "bust": "75", - "waist": "53", - "hip": "74" - }, - "event": [ - { - "event_id": 1205, - "event_name": "目指せ優雅なお嬢様 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "異才のお嬢様・S", - "alias_name_display": "異才のお嬢様・S", - "id": "1522702", - "hash": "a7f7f6600d4db2e4c78e0cf90ff44d43", - "profile": { - "height": "148", - "weight": "39", - "bust": "75", - "waist": "53", - "hip": "74" - }, - "event": [ - { - "event_id": 1205, - "event_name": "目指せ優雅なお嬢様 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "ブレイン☆スター", - "alias_name_display": "ブレイン☆スター", - "id": "1426901", - "hash": "d8d9d6c2d5505244c48d772004ffd9e1", - "profile": { - "height": "148", - "weight": "39", - "bust": "75", - "waist": "53", - "hip": "74" - }, - "event": [ - { - "event_id": 1403, - "event_name": "第3回ぷちデレラコレクション" - } - ] - }, - { - "alias_name": "ブレイン☆スター", - "alias_name_display": "ブレイン☆スター", - "id": "1526902", - "hash": "df97d20cf2ca9e3ec842401b5c6c91f7", - "profile": { - "height": "148", - "weight": "39", - "bust": "75", - "waist": "53", - "hip": "74" - }, - "event": [ - { - "event_id": 1403, - "event_name": "第3回ぷちデレラコレクション" - } - ] - }, - { - "alias_name": "機巧の匠", - "alias_name_display": "機巧の匠", - "id": "1439601", - "hash": "0cf8b99a662d263b1019cfdaca236a25", - "profile": { - "height": "148", - "weight": "39", - "bust": "75", - "waist": "53", - "hip": "74" - }, - "event": [ - { - "event_id": 1907, - "event_name": "ディアリースタークエスト ~夜桜奇譚~" - } - ] - }, - { - "alias_name": "機巧の匠", - "alias_name_display": "機巧の匠", - "id": "1539602", - "hash": "f14270b8f9920a77b665767587d06b48", - "profile": { - "height": "148", - "weight": "39", - "bust": "75", - "waist": "53", - "hip": "74" - }, - "event": [ - { - "event_id": 1907, - "event_name": "ディアリースタークエスト ~夜桜奇譚~" - } - ] - } - ], - "units": [ - { - "id": "68", - "name": "ロボフレンズ" - }, - { - "id": "98", - "name": "ニューイヤースタイル" - }, - { - "id": "102", - "name": "パワフルヒーラーズ" - } - ] - }, - "67": { - "idol_id": 67, - "idol_name": "渋谷凛", - "idol_name_display": "渋谷凛", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2000101", - "hash": "8f88bb5ffa40b4935ef04257ba4ba0d1", - "profile": { - "height": "165", - "weight": "44", - "bust": "80", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2100102", - "hash": "e275bfe5941fd3959de60c5d5c5cacef", - "profile": { - "height": "165", - "weight": "44", - "bust": "80", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "2ndアニバーサリー", - "alias_name_display": "2ndアニバーサリー", - "id": "2212901", - "hash": "ec23ead4dad0294e7f859e7180c216fa", - "profile": { - "height": "165", - "weight": "44", - "bust": "80", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 410, - "event_name": "アイドルプロデュース the 2nd Anniversary" - } - ] - }, - { - "alias_name": "2ndアニバーサリー", - "alias_name_display": "2ndアニバーサリー", - "id": "2312902", - "hash": "7ee306b8ce0265d3797de7fca6e0ee90", - "profile": { - "height": "165", - "weight": "44", - "bust": "80", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 410, - "event_name": "アイドルプロデュース the 2nd Anniversary" - } - ] - }, - { - "alias_name": "2ndアニバーサリー・スマイル", - "alias_name_display": "2ndアニバーサリー・スマイル", - "id": "2213001", - "hash": "a1ed6e1e9fdf5dc0a23d07ce0802f595", - "profile": { - "height": "165", - "weight": "44", - "bust": "80", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 410, - "event_name": "アイドルプロデュース the 2nd Anniversary" - } - ] - }, - { - "alias_name": "2ndアニバーサリー・スマイル", - "alias_name_display": "2ndアニバーサリー・スマイル", - "id": "2313002", - "hash": "4ad2264b26f6edfd36e29e62c0d70e81", - "profile": { - "height": "165", - "weight": "44", - "bust": "80", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 410, - "event_name": "アイドルプロデュース the 2nd Anniversary" - } - ] - }, - { - "alias_name": "2ndアニバーサリー・ネコミミ", - "alias_name_display": "2ndアニバーサリー・ネコミミ", - "id": "2213101", - "hash": "59205400ae6b04749bb99aae38d7cc71", - "profile": { - "height": "165", - "weight": "44", - "bust": "80", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 410, - "event_name": "アイドルプロデュース the 2nd Anniversary" - } - ] - }, - { - "alias_name": "2ndアニバーサリー・ネコミミ", - "alias_name_display": "2ndアニバーサリー・ネコミミ", - "id": "2313102", - "hash": "f48ee90e70c822c07e06aefe3b8ee743", - "profile": { - "height": "165", - "weight": "44", - "bust": "80", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 410, - "event_name": "アイドルプロデュース the 2nd Anniversary" - } - ] - }, - { - "alias_name": "ニュージェネレーション", - "alias_name_display": "ニュージェネレーション", - "id": "2400301", - "hash": "f99103eb03994da80bd9b905ca9f0950", - "profile": { - "height": "165", - "weight": "44", - "bust": "80", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ニュージェネレーション", - "alias_name_display": "ニュージェネレーション", - "id": "2500302", - "hash": "c44c3c58ab6e06f5068b5c459cc5ecdc", - "profile": { - "height": "165", - "weight": "44", - "bust": "80", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "2401501", - "hash": "4ecccdd4fd25302d228913c62c869991", - "profile": { - "height": "165", - "weight": "44", - "bust": "80", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "2501502", - "hash": "851d41d49c8e138e2818794223d01ab4", - "profile": { - "height": "165", - "weight": "44", - "bust": "80", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "アイオライトゴシック", - "alias_name_display": "アイオライトゴシック", - "id": "2503702", - "hash": "f7b0292baa798bfe74929c8e7c05092d", - "profile": { - "height": "165", - "weight": "44", - "bust": "80", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ピュアバレンタイン", - "alias_name_display": "ピュアバレンタイン", - "id": "2405201", - "hash": "5245301299ebe8e1e0a46ccadf6bb57c", - "profile": { - "height": "165", - "weight": "44", - "bust": "80", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ピュアバレンタイン", - "alias_name_display": "ピュアバレンタイン", - "id": "2505202", - "hash": "e0ad66fd1b1f4a0d8793edcfe8b63a1c", - "profile": { - "height": "165", - "weight": "44", - "bust": "80", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "夜宴の歌姫", - "alias_name_display": "夜宴の歌姫", - "id": "2410201", - "hash": "f95d822e4847009291d67450017969c9", - "profile": { - "height": "165", - "weight": "44", - "bust": "80", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "夜宴の歌姫", - "alias_name_display": "夜宴の歌姫", - "id": "2510202", - "hash": "5ef4284b0c62f564a54c532512615b11", - "profile": { - "height": "165", - "weight": "44", - "bust": "80", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ワンダフルマジック", - "alias_name_display": "ワンダフルマジック", - "id": "2413501", - "hash": "4b2ae0ec6469cc81bc30c1a072ebd791", - "profile": { - "height": "165", - "weight": "44", - "bust": "80", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ワンダフルマジック", - "alias_name_display": "ワンダフルマジック", - "id": "2513502", - "hash": "b94a98f20c407684429e56fb7a343797", - "profile": { - "height": "165", - "weight": "44", - "bust": "80", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "シンデレラガール", - "alias_name_display": "シンデレラガール", - "id": "2415301", - "hash": "c96e0729d1075d90a0dc35b9dc76c3ab", - "profile": { - "height": "165", - "weight": "44", - "bust": "80", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "シンデレラガール", - "alias_name_display": "シンデレラガール", - "id": "2515302", - "hash": "78dc475f1775fa007c1a659db07a383a", - "profile": { - "height": "165", - "weight": "44", - "bust": "80", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "クールサマーバケーション", - "alias_name_display": "クールサマーバケーション", - "id": "2516702", - "hash": "9e5333adbd10808d6211cd7e3c3737f8", - "profile": { - "height": "165", - "weight": "44", - "bust": "80", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "アニバーサリープリンセス", - "alias_name_display": "アニバーサリープリンセス", - "id": "2419301", - "hash": "fc7743180eca7195b9d2a04b251b3276", - "profile": { - "height": "165", - "weight": "44", - "bust": "80", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 415, - "event_name": "アイドルプロデュース the 3rd Anniversary" - } - ] - }, - { - "alias_name": "アニバーサリープリンセス", - "alias_name_display": "アニバーサリープリンセス", - "id": "2519302", - "hash": "6c854bfa68ef78e7e087c7c5f8a982d4", - "profile": { - "height": "165", - "weight": "44", - "bust": "80", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 415, - "event_name": "アイドルプロデュース the 3rd Anniversary" - } - ] - }, - { - "alias_name": "ドリームストーリー", - "alias_name_display": "ドリームストーリー", - "id": "2521002", - "hash": "716d4021bcc8ed6d35c14e54dcd8df3a", - "profile": { - "height": "165", - "weight": "44", - "bust": "80", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "トラストプレゼント", - "alias_name_display": "トラストプレゼント", - "id": "2427301", - "hash": "ec3d7440265ee3dd41046a803068117f", - "profile": { - "height": "165", - "weight": "44", - "bust": "80", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "トラストプレゼント", - "alias_name_display": "トラストプレゼント", - "id": "2527302", - "hash": "8830118c3b6b08eb9bed30f5aa4eea50", - "profile": { - "height": "165", - "weight": "44", - "bust": "80", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "G4U!", - "alias_name_display": "G4U!", - "id": "2529702", - "hash": "0f60bcd6c790b9dd47a8979281d73d82", - "profile": { - "height": "165", - "weight": "44", - "bust": "80", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ブルーウィンド", - "alias_name_display": "ブルーウィンド", - "id": "2432001", - "hash": "621bcb5474139a8cbd98232034679147", - "profile": { - "height": "165", - "weight": "44", - "bust": "80", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ブルーウィンド", - "alias_name_display": "ブルーウィンド", - "id": "2532002", - "hash": "f38a7d396e4d373572359acd4f1bfecf", - "profile": { - "height": "165", - "weight": "44", - "bust": "80", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "アニバーサリーウィズメモリー", - "alias_name_display": "アニバーサリーウィズメモリー", - "id": "2436501", - "hash": "3f49451db48570813fd26cec984a44f6", - "profile": { - "height": "165", - "weight": "44", - "bust": "80", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "アニバーサリーウィズメモリー", - "alias_name_display": "アニバーサリーウィズメモリー", - "id": "2536502", - "hash": "4ebbcc60acba9e2760af8a5be417782d", - "profile": { - "height": "165", - "weight": "44", - "bust": "80", - "waist": "56", - "hip": "81" - }, - "event": [] - } - ], - "units": [ - { - "id": "109", - "name": "new generations" - }, - { - "id": "144", - "name": "Triad Primus" - }, - { - "id": "197", - "name": "アズール・ムジカ" - }, - { - "id": "205", - "name": "シンデレラガール" - }, - { - "id": "213", - "name": "CINDERELLA PROJECT" - }, - { - "id": "215", - "name": "Project:Krone" - } - ] - }, - "68": { - "idol_id": 68, - "idol_name": "黒川千秋", - "idol_name_display": "黒川千秋", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2000201", - "hash": "4035fd883093767b28d2a539d774e094", - "profile": { - "height": "163", - "weight": "45", - "bust": "86", - "waist": "57", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2100202", - "hash": "f4d2f1e39a7e01d8274e3a57077f6f85", - "profile": { - "height": "163", - "weight": "45", - "bust": "86", - "waist": "57", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "パジャマパーティー", - "alias_name_display": "パジャマパーティー", - "id": "2203901", - "hash": "c931ce44e7607eaf6ab795a40dd9ca28", - "profile": { - "height": "163", - "weight": "45", - "bust": "86", - "waist": "57", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "パジャマパーティー", - "alias_name_display": "パジャマパーティー", - "id": "2303902", - "hash": "a3082a7c51417a1a91c1051b28f8aa9f", - "profile": { - "height": "163", - "weight": "45", - "bust": "86", - "waist": "57", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "気高きプライド", - "alias_name_display": "気高きプライド", - "id": "2205501", - "hash": "7997704c7956ebe73f2c28697c89dc1a", - "profile": { - "height": "163", - "weight": "45", - "bust": "86", - "waist": "57", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "気高きプライド", - "alias_name_display": "気高きプライド", - "id": "2305502", - "hash": "5109146ec273c81d59fcae0c97adddf5", - "profile": { - "height": "163", - "weight": "45", - "bust": "86", - "waist": "57", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "セレクトメイド", - "alias_name_display": "セレクトメイド", - "id": "2214701", - "hash": "02f695d931bff83bdb7771b3b8943f60", - "profile": { - "height": "163", - "weight": "45", - "bust": "86", - "waist": "57", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "セレクトメイド", - "alias_name_display": "セレクトメイド", - "id": "2314702", - "hash": "1d0d21ccca64a106b500e327a8a61944", - "profile": { - "height": "163", - "weight": "45", - "bust": "86", - "waist": "57", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "ロワイヤルスタイルNP", - "alias_name_display": "ロワイヤルスタイルNP", - "id": "2217101", - "hash": "def290c2687249f421d3a0c5639fcf54", - "profile": { - "height": "163", - "weight": "45", - "bust": "86", - "waist": "57", - "hip": "86" - }, - "event": [ - { - "event_id": 806, - "event_name": "アイドルLIVEロワイヤルinSUMMER" - } - ] - }, - { - "alias_name": "ロワイヤルスタイルNP", - "alias_name_display": "ロワイヤルスタイルNP", - "id": "2317102", - "hash": "7b992968fa0f058f249b5526ab1b7883", - "profile": { - "height": "163", - "weight": "45", - "bust": "86", - "waist": "57", - "hip": "86" - }, - "event": [ - { - "event_id": 806, - "event_name": "アイドルLIVEロワイヤルinSUMMER" - } - ] - }, - { - "alias_name": "グロッシースタイル", - "alias_name_display": "グロッシースタイル", - "id": "2322902", - "hash": "c1211c36467b2716552c4d1d85e1290d", - "profile": { - "height": "163", - "weight": "45", - "bust": "86", - "waist": "57", - "hip": "86" - }, - "event": [ - { - "event_id": 715, - "event_name": "第15回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ウェディングセレモニー", - "alias_name_display": "ウェディングセレモニー", - "id": "2226701", - "hash": "f7d5c0216298dbb7033107930cd977c3", - "profile": { - "height": "163", - "weight": "45", - "bust": "86", - "waist": "57", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "ウェディングセレモニー", - "alias_name_display": "ウェディングセレモニー", - "id": "2326702", - "hash": "85d68eea01b117486b607f455717a906", - "profile": { - "height": "163", - "weight": "45", - "bust": "86", - "waist": "57", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "黒真珠の輝き", - "alias_name_display": "黒真珠の輝き", - "id": "2405701", - "hash": "cf1a5d3544d33508dec93e2b8a566cce", - "profile": { - "height": "163", - "weight": "45", - "bust": "86", - "waist": "57", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "黒真珠の輝き", - "alias_name_display": "黒真珠の輝き", - "id": "2505702", - "hash": "6ede07bfc34af81ea373768ee64d3420", - "profile": { - "height": "163", - "weight": "45", - "bust": "86", - "waist": "57", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "白銀の騎士", - "alias_name_display": "白銀の騎士", - "id": "2420101", - "hash": "8c4388028076672a43963f38de32b024", - "profile": { - "height": "163", - "weight": "45", - "bust": "86", - "waist": "57", - "hip": "86" - }, - "event": [ - { - "event_id": 516, - "event_name": "幻想公演栄光のシュヴァリエ" - } - ] - }, - { - "alias_name": "白銀の騎士", - "alias_name_display": "白銀の騎士", - "id": "2520102", - "hash": "024cad24043e3c69d8c4626c91c0b624", - "profile": { - "height": "163", - "weight": "45", - "bust": "86", - "waist": "57", - "hip": "86" - }, - "event": [ - { - "event_id": 516, - "event_name": "幻想公演栄光のシュヴァリエ" - } - ] - }, - { - "alias_name": "夜を見る淑女", - "alias_name_display": "夜を見る淑女", - "id": "2429901", - "hash": "18b11c7c27a2d1fe7ce0181c77596a03", - "profile": { - "height": "163", - "weight": "45", - "bust": "86", - "waist": "57", - "hip": "86" - }, - "event": [ - { - "event_id": "025", - "event_name": "第25回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "夜を見る淑女", - "alias_name_display": "夜を見る淑女", - "id": "2529902", - "hash": "45dfc7d0f65cd5337cb103b7af3f7dc3", - "profile": { - "height": "163", - "weight": "45", - "bust": "86", - "waist": "57", - "hip": "86" - }, - "event": [ - { - "event_id": "025", - "event_name": "第25回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "黒曜の囁き", - "alias_name_display": "黒曜の囁き", - "id": "2438301", - "hash": "a0392538ef8042cc44d645fca021bd78", - "profile": { - "height": "163", - "weight": "45", - "bust": "86", - "waist": "57", - "hip": "86" - }, - "event": [ - { - "event_id": 1511, - "event_name": "第11回チーム対抗トークバトルショー" - } - ] - }, - { - "alias_name": "黒曜の囁き", - "alias_name_display": "黒曜の囁き", - "id": "2538302", - "hash": "1b13a47f1e86ec39ecf4974fe3049ff9", - "profile": { - "height": "163", - "weight": "45", - "bust": "86", - "waist": "57", - "hip": "86" - }, - "event": [ - { - "event_id": 1511, - "event_name": "第11回チーム対抗トークバトルショー" - } - ] - } - ], - "units": [ - { - "id": "53", - "name": "ブリヤント・ノワール" - }, - { - "id": "159", - "name": "パステル・カクテル" - }, - { - "id": "199", - "name": "レッドバラード" - }, - { - "id": "209", - "name": "ロワイヤルスタイルNP" - } - ] - }, - "69": { - "idol_id": 69, - "idol_name": "松本沙理奈", - "idol_name_display": "松本沙理奈", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2000301", - "hash": "a30783d170b758c118fd545eec28dfa9", - "profile": { - "height": "165", - "weight": "48", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2100302", - "hash": "550e684107f50aa0804d93fe5f11b133", - "profile": { - "height": "165", - "weight": "48", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "水泳大会", - "alias_name_display": "水泳大会", - "id": "2002301", - "hash": "4072ebd35377b91af0e4a4f69dafee58", - "profile": { - "height": "165", - "weight": "48", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [ - { - "event_id": 106, - "event_name": "アイドル水泳大会 水着のシンデレラ" - } - ] - }, - { - "alias_name": "水泳大会", - "alias_name_display": "水泳大会", - "id": "2102302", - "hash": "42a46e206d59587e6fbaab7bee5b30d3", - "profile": { - "height": "165", - "weight": "48", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [ - { - "event_id": 106, - "event_name": "アイドル水泳大会 水着のシンデレラ" - } - ] - }, - { - "alias_name": "浴衣祭り", - "alias_name_display": "浴衣祭り", - "id": "2210701", - "hash": "a7df62ab3b2d5dcb35b548557ab11ec5", - "profile": { - "height": "165", - "weight": "48", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "浴衣祭り", - "alias_name_display": "浴衣祭り", - "id": "2310702", - "hash": "b5e60c6af2179f38b31d551455402347", - "profile": { - "height": "165", - "weight": "48", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "アップトゥデイト", - "alias_name_display": "アップトゥデイト", - "id": "2219801", - "hash": "0de3d4c8622403e9d7229cd26280c9ef", - "profile": { - "height": "165", - "weight": "48", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "アップトゥデイト", - "alias_name_display": "アップトゥデイト", - "id": "2319802", - "hash": "6c99150f4022c8120715ed9a739b2489", - "profile": { - "height": "165", - "weight": "48", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ロワイヤルスタイルND", - "alias_name_display": "ロワイヤルスタイルND", - "id": "2225201", - "hash": "1b9e2b09c150a291f3bfc071abe006d6", - "profile": { - "height": "165", - "weight": "48", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [ - { - "event_id": 816, - "event_name": "第16回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ロワイヤルスタイルND", - "alias_name_display": "ロワイヤルスタイルND", - "id": "2325202", - "hash": "ce540cea8b2110611377d2d631c3e066", - "profile": { - "height": "165", - "weight": "48", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [ - { - "event_id": 816, - "event_name": "第16回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ステイインシェイプ", - "alias_name_display": "ステイインシェイプ", - "id": "2231301", - "hash": "b9ffe5b8b3214774e10fe813a01f4e1a", - "profile": { - "height": "165", - "weight": "48", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ステイインシェイプ", - "alias_name_display": "ステイインシェイプ", - "id": "2331302", - "hash": "1f579c998c02a9776400a9f3d43c26ab", - "profile": { - "height": "165", - "weight": "48", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "セクシービューティー", - "alias_name_display": "セクシービューティー", - "id": "2410101", - "hash": "45c75bb28f21bddd1ad2738bda5b4d9d", - "profile": { - "height": "165", - "weight": "48", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [ - { - "event_id": 508, - "event_name": "LIVEツアーカーニバルinスペースワールド" - } - ] - }, - { - "alias_name": "セクシービューティー", - "alias_name_display": "セクシービューティー", - "id": "2510102", - "hash": "f1452a5449618b73378346046f8a8d68", - "profile": { - "height": "165", - "weight": "48", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [ - { - "event_id": 508, - "event_name": "LIVEツアーカーニバルinスペースワールド" - } - ] - }, - { - "alias_name": "サンシャインマリナー", - "alias_name_display": "サンシャインマリナー", - "id": "2416801", - "hash": "dc3d17ce8827254c7b49e013adfdd7d1", - "profile": { - "height": "165", - "weight": "48", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [ - { - "event_id": "018", - "event_name": "第18回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "サンシャインマリナー", - "alias_name_display": "サンシャインマリナー", - "id": "2516802", - "hash": "d94af1f2bbd1ee5cba11de0029345800", - "profile": { - "height": "165", - "weight": "48", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [ - { - "event_id": "018", - "event_name": "第18回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "セクシースリル", - "alias_name_display": "セクシースリル", - "id": "2427901", - "hash": "37797d5f21558e63d2ddef76ca7754cb", - "profile": { - "height": "165", - "weight": "48", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [ - { - "event_id": 717, - "event_name": "第17回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "セクシースリル", - "alias_name_display": "セクシースリル", - "id": "2527902", - "hash": "667d1ecf34952923ee535605873f44eb", - "profile": { - "height": "165", - "weight": "48", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [ - { - "event_id": 717, - "event_name": "第17回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "セクシーウィッチ", - "alias_name_display": "セクシーウィッチ", - "id": "2435201", - "hash": "9ab933bbf7cd99e54000a4c229b6161f", - "profile": { - "height": "165", - "weight": "48", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [ - { - "event_id": 1904, - "event_name": "魔界公演 妖艶魔女と消えたハロウィン" - } - ] - }, - { - "alias_name": "セクシーウィッチ", - "alias_name_display": "セクシーウィッチ", - "id": "2535202", - "hash": "2e3a40d67d49dc6574282976c7ede024", - "profile": { - "height": "165", - "weight": "48", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [ - { - "event_id": 1904, - "event_name": "魔界公演 妖艶魔女と消えたハロウィン" - } - ] - } - ], - "units": [ - { - "id": "29", - "name": "セーラーマリナー" - }, - { - "id": "110", - "name": "アップトゥデイト" - }, - { - "id": "198", - "name": "ブルーナポレオン" - }, - { - "id": "206", - "name": "セクシーボンデージ" - }, - { - "id": "210", - "name": "ロワイヤルスタイルND" - } - ] - }, - "70": { - "idol_id": 70, - "idol_name": "桐野アヤ", - "idol_name_display": "桐野アヤ", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2000401", - "hash": "f8edf47fb60a0d249bb979d68211b8be", - "profile": { - "height": "160", - "weight": "43", - "bust": "86", - "waist": "56", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2100402", - "hash": "d7214775b8ad7a28a6fddcf512e9666c", - "profile": { - "height": "160", - "weight": "43", - "bust": "86", - "waist": "56", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "スポーツ祭", - "alias_name_display": "スポーツ祭", - "id": "2204301", - "hash": "567ce108edd82a9b613abaa95e94c9a4", - "profile": { - "height": "160", - "weight": "43", - "bust": "86", - "waist": "56", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "スポーツ祭", - "alias_name_display": "スポーツ祭", - "id": "2304302", - "hash": "2ddcac167adb3e5f1a888b16483b9338", - "profile": { - "height": "160", - "weight": "43", - "bust": "86", - "waist": "56", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "バリスタイル", - "alias_name_display": "バリスタイル", - "id": "2210601", - "hash": "7a4ebbaebec98924f539d8b7214af1a4", - "profile": { - "height": "160", - "weight": "43", - "bust": "86", - "waist": "56", - "hip": "86" - }, - "event": [ - { - "event_id": 505, - "event_name": "アイドルLIVEツアーinバリ島" - } - ] - }, - { - "alias_name": "バリスタイル", - "alias_name_display": "バリスタイル", - "id": "2310602", - "hash": "bf0c13ce6019138ebaeff2f13d7ce662", - "profile": { - "height": "160", - "weight": "43", - "bust": "86", - "waist": "56", - "hip": "86" - }, - "event": [ - { - "event_id": 505, - "event_name": "アイドルLIVEツアーinバリ島" - } - ] - }, - { - "alias_name": "不意の幸せ", - "alias_name_display": "不意の幸せ", - "id": "2216801", - "hash": "d2346216a10dc027b5ad981febe98200", - "profile": { - "height": "160", - "weight": "43", - "bust": "86", - "waist": "56", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "不意の幸せ", - "alias_name_display": "不意の幸せ", - "id": "2316802", - "hash": "40302b38b4d6dabceef6db49a6bd646b", - "profile": { - "height": "160", - "weight": "43", - "bust": "86", - "waist": "56", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "ロワイヤルスタイルNP", - "alias_name_display": "ロワイヤルスタイルNP", - "id": "2220401", - "hash": "801604d97e1d78c4f7eac49c159e86a7", - "profile": { - "height": "160", - "weight": "43", - "bust": "86", - "waist": "56", - "hip": "86" - }, - "event": [ - { - "event_id": 811, - "event_name": "第11回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ロワイヤルスタイルNP", - "alias_name_display": "ロワイヤルスタイルNP", - "id": "2320402", - "hash": "270f111f0adc50347ba9256756602680", - "profile": { - "height": "160", - "weight": "43", - "bust": "86", - "waist": "56", - "hip": "86" - }, - "event": [ - { - "event_id": 811, - "event_name": "第11回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ブレイクタイム", - "alias_name_display": "ブレイクタイム", - "id": "2223401", - "hash": "87d826bbf263c5ed9692324810ecc77d", - "profile": { - "height": "160", - "weight": "43", - "bust": "86", - "waist": "56", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "ブレイクタイム", - "alias_name_display": "ブレイクタイム", - "id": "2323402", - "hash": "d182d50be9a4a09ce0ba65b085091f7e", - "profile": { - "height": "160", - "weight": "43", - "bust": "86", - "waist": "56", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "T.B.チアーズ", - "alias_name_display": "T.B.チアーズ", - "id": "2229301", - "hash": "ed6e36f5388cca179f16884e7020f518", - "profile": { - "height": "160", - "weight": "43", - "bust": "86", - "waist": "56", - "hip": "86" - }, - "event": [ - { - "event_id": 1509, - "event_name": "第9回チーム対抗トークバトルショー" - } - ] - }, - { - "alias_name": "T.B.チアーズ", - "alias_name_display": "T.B.チアーズ", - "id": "2329302", - "hash": "9d94602d3641b0c6eede6dd3d1c2ebd3", - "profile": { - "height": "160", - "weight": "43", - "bust": "86", - "waist": "56", - "hip": "86" - }, - "event": [ - { - "event_id": 1509, - "event_name": "第9回チーム対抗トークバトルショー" - } - ] - }, - { - "alias_name": "エレガントマリオネット", - "alias_name_display": "エレガントマリオネット", - "id": "2413201", - "hash": "3dc9f6b43b8f09c2cd14427246204ab7", - "profile": { - "height": "160", - "weight": "43", - "bust": "86", - "waist": "56", - "hip": "86" - }, - "event": [ - { - "event_id": 804, - "event_name": "第4回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "エレガントマリオネット", - "alias_name_display": "エレガントマリオネット", - "id": "2513202", - "hash": "35fdf29a4ff894128272306654735d50", - "profile": { - "height": "160", - "weight": "43", - "bust": "86", - "waist": "56", - "hip": "86" - }, - "event": [ - { - "event_id": 804, - "event_name": "第4回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "オープンスイート", - "alias_name_display": "オープンスイート", - "id": "2431701", - "hash": "45d7e0444687067fe30053e2047bb81d", - "profile": { - "height": "160", - "weight": "43", - "bust": "86", - "waist": "56", - "hip": "86" - }, - "event": [ - { - "event_id": 1406, - "event_name": "第6回ぷちデレラコレクション" - } - ] - }, - { - "alias_name": "オープンスイート", - "alias_name_display": "オープンスイート", - "id": "2531702", - "hash": "81fd47cf40cbfb59f9dc779f0b2e6258", - "profile": { - "height": "160", - "weight": "43", - "bust": "86", - "waist": "56", - "hip": "86" - }, - "event": [ - { - "event_id": 1406, - "event_name": "第6回ぷちデレラコレクション" - } - ] - } - ], - "units": [ - { - "id": "42", - "name": "バリスタイル" - }, - { - "id": "62", - "name": "ようせいさんとおねえさん" - }, - { - "id": "119", - "name": "フランメ・ルージュ" - }, - { - "id": "181", - "name": "フレッシュアスリーテス" - }, - { - "id": "199", - "name": "レッドバラード" - }, - { - "id": "209", - "name": "ロワイヤルスタイルNP" - } - ] - }, - "71": { - "idol_id": 71, - "idol_name": "高橋礼子", - "idol_name_display": "高橋礼子", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2000501", - "hash": "0a608619d8933f94dbf234b16a738cc4", - "profile": { - "height": "167", - "weight": "51", - "bust": "91", - "waist": "62", - "hip": "90" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2100502", - "hash": "77bc167a538072243fe4efada302c5dd", - "profile": { - "height": "167", - "weight": "51", - "bust": "91", - "waist": "62", - "hip": "90" - }, - "event": [] - }, - { - "alias_name": "湯けむり月夜", - "alias_name_display": "湯けむり月夜", - "id": "2212601", - "hash": "aaf15e170c8e34777956d6e615d7b23d", - "profile": { - "height": "167", - "weight": "51", - "bust": "91", - "waist": "62", - "hip": "90" - }, - "event": [] - }, - { - "alias_name": "湯けむり月夜", - "alias_name_display": "湯けむり月夜", - "id": "2312602", - "hash": "7f2f67ea668968a6d17d54ad225de60e", - "profile": { - "height": "167", - "weight": "51", - "bust": "91", - "waist": "62", - "hip": "90" - }, - "event": [] - }, - { - "alias_name": "パラダイスリゾート", - "alias_name_display": "パラダイスリゾート", - "id": "2217001", - "hash": "f3785b4e58b357a89d3abc48ae4a25cc", - "profile": { - "height": "167", - "weight": "51", - "bust": "91", - "waist": "62", - "hip": "90" - }, - "event": [] - }, - { - "alias_name": "パラダイスリゾート", - "alias_name_display": "パラダイスリゾート", - "id": "2317002", - "hash": "8b93d1e5afa99347a6fcfa8f5a5a8586", - "profile": { - "height": "167", - "weight": "51", - "bust": "91", - "waist": "62", - "hip": "90" - }, - "event": [] - }, - { - "alias_name": "インモーション", - "alias_name_display": "インモーション", - "id": "2218801", - "hash": "b0daf9e54ee010a9f898f304243bbd06", - "profile": { - "height": "167", - "weight": "51", - "bust": "91", - "waist": "62", - "hip": "90" - }, - "event": [ - { - "event_id": "019", - "event_name": "第19回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "インモーション", - "alias_name_display": "インモーション", - "id": "2318802", - "hash": "3620cdf9b0524f7ffdfeb8e7cfac9400", - "profile": { - "height": "167", - "weight": "51", - "bust": "91", - "waist": "62", - "hip": "90" - }, - "event": [ - { - "event_id": "019", - "event_name": "第19回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "マダム・マミー", - "alias_name_display": "マダム・マミー", - "id": "2323802", - "hash": "a7fa225473c0d3eac3e226b3d9a5621f", - "profile": { - "height": "167", - "weight": "51", - "bust": "91", - "waist": "62", - "hip": "90" - }, - "event": [ - { - "event_id": 522, - "event_name": "魔界公演 幽鬱女王とハロウィンの祝祭" - } - ] - }, - { - "alias_name": "トレランスパンサレス", - "alias_name_display": "トレランスパンサレス", - "id": "2226201", - "hash": "d507a4e135271b117fe48e96f304efdf", - "profile": { - "height": "167", - "weight": "51", - "bust": "91", - "waist": "62", - "hip": "90" - }, - "event": [] - }, - { - "alias_name": "トレランスパンサレス", - "alias_name_display": "トレランスパンサレス", - "id": "2326202", - "hash": "044f3dda15df99f500884ebb320467cb", - "profile": { - "height": "167", - "weight": "51", - "bust": "91", - "waist": "62", - "hip": "90" - }, - "event": [] - }, - { - "alias_name": "ホーリーコーラス", - "alias_name_display": "ホーリーコーラス", - "id": "2229501", - "hash": "c7fc22efe7292a115f75036198638695", - "profile": { - "height": "167", - "weight": "51", - "bust": "91", - "waist": "62", - "hip": "90" - }, - "event": [] - }, - { - "alias_name": "ホーリーコーラス", - "alias_name_display": "ホーリーコーラス", - "id": "2329502", - "hash": "b2649350266c291beb9d570c256463d8", - "profile": { - "height": "167", - "weight": "51", - "bust": "91", - "waist": "62", - "hip": "90" - }, - "event": [] - }, - { - "alias_name": "妖しき雌豹", - "alias_name_display": "妖しき雌豹", - "id": "2402101", - "hash": "039bbb4300c231ff4d9afd4c3d096c52", - "profile": { - "height": "167", - "weight": "51", - "bust": "91", - "waist": "62", - "hip": "90" - }, - "event": [ - { - "event_id": 204, - "event_name": "アイドルサバイバルin動物園" - } - ] - }, - { - "alias_name": "妖しき雌豹", - "alias_name_display": "妖しき雌豹", - "id": "2502102", - "hash": "62f5c0944ca2ad486b29b8b913479cf0", - "profile": { - "height": "167", - "weight": "51", - "bust": "91", - "waist": "62", - "hip": "90" - }, - "event": [ - { - "event_id": 204, - "event_name": "アイドルサバイバルin動物園" - } - ] - }, - { - "alias_name": "魅惑のカクテルレディ", - "alias_name_display": "魅惑のカクテルレディ", - "id": "2406101", - "hash": "86c4bdb562fd8e4f75e9f6186bf5f7c7", - "profile": { - "height": "167", - "weight": "51", - "bust": "91", - "waist": "62", - "hip": "90" - }, - "event": [ - { - "event_id": "009", - "event_name": "第9回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "魅惑のカクテルレディ", - "alias_name_display": "魅惑のカクテルレディ", - "id": "2506102", - "hash": "584c3fe5210a9dfbd497c164ee2bb8e6", - "profile": { - "height": "167", - "weight": "51", - "bust": "91", - "waist": "62", - "hip": "90" - }, - "event": [ - { - "event_id": "009", - "event_name": "第9回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "セクシー・ロワイヤル", - "alias_name_display": "セクシー・ロワイヤル", - "id": "2424201", - "hash": "66f6b003936de3d8218ed6d75e7725bf", - "profile": { - "height": "167", - "weight": "51", - "bust": "91", - "waist": "62", - "hip": "90" - }, - "event": [ - { - "event_id": 812, - "event_name": "第12回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "セクシー・ロワイヤル", - "alias_name_display": "セクシー・ロワイヤル", - "id": "2524202", - "hash": "b6f3e564d927a8741fef257195584e32", - "profile": { - "height": "167", - "weight": "51", - "bust": "91", - "waist": "62", - "hip": "90" - }, - "event": [ - { - "event_id": 812, - "event_name": "第12回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "アモラス・ロワイヤル", - "alias_name_display": "アモラス・ロワイヤル", - "id": "2439901", - "hash": "48699172a15eb286179eb1b4daa8c46f", - "profile": { - "height": "167", - "weight": "51", - "bust": "91", - "waist": "62", - "hip": "90" - }, - "event": [ - { - "event_id": 823, - "event_name": "第23回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "アモラス・ロワイヤル", - "alias_name_display": "アモラス・ロワイヤル", - "id": "2539902", - "hash": "79b7221bfb5db0a94baf512abe1eb5eb", - "profile": { - "height": "167", - "weight": "51", - "bust": "91", - "waist": "62", - "hip": "90" - }, - "event": [ - { - "event_id": 823, - "event_name": "第23回アイドルLIVEロワイヤル" - } - ] - } - ], - "units": [ - { - "id": "67", - "name": "レディビースト" - }, - { - "id": "199", - "name": "レッドバラード" - }, - { - "id": "207", - "name": "ムーランルージュ" - } - ] - }, - "72": { - "idol_id": 72, - "idol_name": "相川千夏", - "idol_name_display": "相川千夏", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2000601", - "hash": "24db8e0436418b7e45715d6330a49056", - "profile": { - "height": "161", - "weight": "43", - "bust": "82", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2100602", - "hash": "bb3b59c3fcb13e67d428def53699f508", - "profile": { - "height": "161", - "weight": "43", - "bust": "82", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "お花見", - "alias_name_display": "お花見", - "id": "2002001", - "hash": "3839626e54d0ec041b4a9e31daa069e5", - "profile": { - "height": "161", - "weight": "43", - "bust": "82", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 104, - "event_name": "桜舞う花見祭り" - } - ] - }, - { - "alias_name": "お花見", - "alias_name_display": "お花見", - "id": "2102002", - "hash": "98a7280ce9e419297d6a0732e1e8be21", - "profile": { - "height": "161", - "weight": "43", - "bust": "82", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 104, - "event_name": "桜舞う花見祭り" - } - ] - }, - { - "alias_name": "ロワイヤルスタイル", - "alias_name_display": "ロワイヤルスタイル", - "id": "2212101", - "hash": "26374e719939476045d5b68cd97bd71b", - "profile": { - "height": "161", - "weight": "43", - "bust": "82", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 801, - "event_name": "アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ロワイヤルスタイル", - "alias_name_display": "ロワイヤルスタイル", - "id": "2312102", - "hash": "5db94845caafaca3cb351938eab38255", - "profile": { - "height": "161", - "weight": "43", - "bust": "82", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 801, - "event_name": "アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "メルヘンアニマルズ", - "alias_name_display": "メルヘンアニマルズ", - "id": "2217401", - "hash": "adcaecd0e24939267f69f3d5ced30f80", - "profile": { - "height": "161", - "weight": "43", - "bust": "82", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "メルヘンアニマルズ", - "alias_name_display": "メルヘンアニマルズ", - "id": "2317402", - "hash": "d605d715d583a542309c21f213131857", - "profile": { - "height": "161", - "weight": "43", - "bust": "82", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "イージーモーメント", - "alias_name_display": "イージーモーメント", - "id": "2220601", - "hash": "25d429cfd93ad10bb1f06a997c3f5797", - "profile": { - "height": "161", - "weight": "43", - "bust": "82", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": "021", - "event_name": "第21回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "イージーモーメント", - "alias_name_display": "イージーモーメント", - "id": "2320602", - "hash": "259502538c76ba040edf323f08ecf86c", - "profile": { - "height": "161", - "weight": "43", - "bust": "82", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": "021", - "event_name": "第21回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "敏腕刑事", - "alias_name_display": "敏腕刑事", - "id": "2322802", - "hash": "af44062383e5a214b5b983e6a037feaa", - "profile": { - "height": "161", - "weight": "43", - "bust": "82", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 521, - "event_name": "怪盗公演 美しき追跡者" - } - ] - }, - { - "alias_name": "秋の学園祭", - "alias_name_display": "秋の学園祭", - "id": "2228901", - "hash": "595943d4eb918aa66cfc1dd92fe8a8b8", - "profile": { - "height": "161", - "weight": "43", - "bust": "82", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "秋の学園祭", - "alias_name_display": "秋の学園祭", - "id": "2328902", - "hash": "03c4a96c5302e9ed2e1d0ffa2cde0140", - "profile": { - "height": "161", - "weight": "43", - "bust": "82", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ナイトエレガンス", - "alias_name_display": "ナイトエレガンス", - "id": "2411901", - "hash": "2e8a72447531178bd7c6b4af5ad3ac65", - "profile": { - "height": "161", - "weight": "43", - "bust": "82", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 803, - "event_name": "第3回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ナイトエレガンス", - "alias_name_display": "ナイトエレガンス", - "id": "2511902", - "hash": "6005f3a24b6f95a9e6ac20001fccf0a9", - "profile": { - "height": "161", - "weight": "43", - "bust": "82", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 803, - "event_name": "第3回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "招福萬来", - "alias_name_display": "招福萬来", - "id": "2430501", - "hash": "d8b2e5540583e671da737c5c832509ce", - "profile": { - "height": "161", - "weight": "43", - "bust": "82", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 719, - "event_name": "ドリームLIVEフェスティバル 節分SP" - } - ] - }, - { - "alias_name": "招福萬来", - "alias_name_display": "招福萬来", - "id": "2530502", - "hash": "38623ebf06937afb131651a871925ccd", - "profile": { - "height": "161", - "weight": "43", - "bust": "82", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 719, - "event_name": "ドリームLIVEフェスティバル 節分SP" - } - ] - }, - { - "alias_name": "モードリーブル", - "alias_name_display": "モードリーブル", - "id": "2439501", - "hash": "b839d7f458db037366fcd9f57ea3137e", - "profile": { - "height": "161", - "weight": "43", - "bust": "82", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 1412, - "event_name": "第12回ぷちデレラコレクション" - } - ] - }, - { - "alias_name": "モードリーブル", - "alias_name_display": "モードリーブル", - "id": "2539502", - "hash": "4028037887d8707827e2a749bb925d5d", - "profile": { - "height": "161", - "weight": "43", - "bust": "82", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 1412, - "event_name": "第12回ぷちデレラコレクション" - } - ] - } - ], - "units": [ - { - "id": "18", - "name": "サクラブロッサム" - }, - { - "id": "166", - "name": "メルヘンアニマルズ" - }, - { - "id": "199", - "name": "レッドバラード" - }, - { - "id": "208", - "name": "ロワイヤルスタイル" - } - ] - }, - "73": { - "idol_id": 73, - "idol_name": "川島瑞樹", - "idol_name_display": "川島瑞樹", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2000701", - "hash": "40a601df9bea01621e36d1ab686f16e3", - "profile": { - "height": "159", - "weight": "44", - "bust": "87", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2100702", - "hash": "58135fa927f8d12eaa6228dc0bdf62e9", - "profile": { - "height": "159", - "weight": "44", - "bust": "87", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "パジャマパーティー", - "alias_name_display": "パジャマパーティー", - "id": "2204001", - "hash": "209fee1285aed04a5741706a0a566fef", - "profile": { - "height": "159", - "weight": "44", - "bust": "87", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "パジャマパーティー", - "alias_name_display": "パジャマパーティー", - "id": "2304002", - "hash": "c17136265b3240ee66b30f381e3aef56", - "profile": { - "height": "159", - "weight": "44", - "bust": "87", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "花火祭り", - "alias_name_display": "花火祭り", - "id": "2211001", - "hash": "99dfa14f926ede47b4fc2cabfd018d75", - "profile": { - "height": "159", - "weight": "44", - "bust": "87", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 408, - "event_name": "アイドルプロデュース 夜空に咲く花火編" - } - ] - }, - { - "alias_name": "花火祭り", - "alias_name_display": "花火祭り", - "id": "2311002", - "hash": "daef71058f35b5317a104f0441b71b5e", - "profile": { - "height": "159", - "weight": "44", - "bust": "87", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 408, - "event_name": "アイドルプロデュース 夜空に咲く花火編" - } - ] - }, - { - "alias_name": "花火祭りスマイル", - "alias_name_display": "花火祭りスマイル", - "id": "2211101", - "hash": "275711a449400f466b5cf81a50ca258f", - "profile": { - "height": "159", - "weight": "44", - "bust": "87", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 408, - "event_name": "アイドルプロデュース 夜空に咲く花火編" - } - ] - }, - { - "alias_name": "花火祭りスマイル", - "alias_name_display": "花火祭りスマイル", - "id": "2311102", - "hash": "8616ac16ec9f6cc1cecbe86f21b144d5", - "profile": { - "height": "159", - "weight": "44", - "bust": "87", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 408, - "event_name": "アイドルプロデュース 夜空に咲く花火編" - } - ] - }, - { - "alias_name": "大人のたしなみ", - "alias_name_display": "大人のたしなみ", - "id": "2226101", - "hash": "7cadb40bf6509955d8d5de4eae76f733", - "profile": { - "height": "159", - "weight": "44", - "bust": "87", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "大人のたしなみ", - "alias_name_display": "大人のたしなみ", - "id": "2326102", - "hash": "3b95f73ab51ad9cd2e2f6a27ea50e9f3", - "profile": { - "height": "159", - "weight": "44", - "bust": "87", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "永遠のプリンセス", - "alias_name_display": "永遠のプリンセス", - "id": "2403401", - "hash": "907f18eacc2a5f257dbd4ae077367f90", - "profile": { - "height": "159", - "weight": "44", - "bust": "87", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": "005", - "event_name": "第5回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "永遠のプリンセス", - "alias_name_display": "永遠のプリンセス", - "id": "2503402", - "hash": "9d9d9704f3d149c9e1f72a858172a7ae", - "profile": { - "height": "159", - "weight": "44", - "bust": "87", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": "005", - "event_name": "第5回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "麗しき淑女", - "alias_name_display": "麗しき淑女", - "id": "2404601", - "hash": "300832c8e53700a2d11cc55349e63961", - "profile": { - "height": "159", - "weight": "44", - "bust": "87", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "麗しき淑女", - "alias_name_display": "麗しき淑女", - "id": "2504602", - "hash": "551dff4a0a16e66bdf019f55381368ca", - "profile": { - "height": "159", - "weight": "44", - "bust": "87", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "2405101", - "hash": "aabab7304c856a8a52ef3c3ec8df7fa7", - "profile": { - "height": "159", - "weight": "44", - "bust": "87", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "2505102", - "hash": "9bba87dccca8d68fe3559eeb60a22d51", - "profile": { - "height": "159", - "weight": "44", - "bust": "87", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "クリスマスクイーン", - "alias_name_display": "クリスマスクイーン", - "id": "2410901", - "hash": "1b9b66c042fdaa8e668f198b53947535", - "profile": { - "height": "159", - "weight": "44", - "bust": "87", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "クリスマスクイーン", - "alias_name_display": "クリスマスクイーン", - "id": "2510902", - "hash": "0db6cc006f71e8595c22c1377698ae8f", - "profile": { - "height": "159", - "weight": "44", - "bust": "87", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "熱情の魔女", - "alias_name_display": "熱情の魔女", - "id": "2417001", - "hash": "ba03cf985c54861ffdf105a5791a8882", - "profile": { - "height": "159", - "weight": "44", - "bust": "87", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 806, - "event_name": "アイドルLIVEロワイヤルinSUMMER" - } - ] - }, - { - "alias_name": "熱情の魔女", - "alias_name_display": "熱情の魔女", - "id": "2517002", - "hash": "393c268bda8bf72c51cf54f6e42acf1c", - "profile": { - "height": "159", - "weight": "44", - "bust": "87", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 806, - "event_name": "アイドルLIVEロワイヤルinSUMMER" - } - ] - }, - { - "alias_name": "夜明けのディーヴァ", - "alias_name_display": "夜明けのディーヴァ", - "id": "2423501", - "hash": "c95a94a687ce72c15e098b2f98b0e4bd", - "profile": { - "height": "159", - "weight": "44", - "bust": "87", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "夜明けのディーヴァ", - "alias_name_display": "夜明けのディーヴァ", - "id": "2523502", - "hash": "f8da33d8e7f6afc951e447ee93b95e33", - "profile": { - "height": "159", - "weight": "44", - "bust": "87", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "タイムゴーズバイ", - "alias_name_display": "タイムゴーズバイ", - "id": "2429101", - "hash": "95216370d68f59ba130fc9030ffcb95c", - "profile": { - "height": "159", - "weight": "44", - "bust": "87", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "タイムゴーズバイ", - "alias_name_display": "タイムゴーズバイ", - "id": "2529102", - "hash": "b8da2dbad3008521edcb8ad261ad0c1d", - "profile": { - "height": "159", - "weight": "44", - "bust": "87", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "シンデレラドリーム", - "alias_name_display": "シンデレラドリーム", - "id": "2436001", - "hash": "3f53b23452b2ad8b1a5a279257023dc1", - "profile": { - "height": "159", - "weight": "44", - "bust": "87", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "シンデレラドリーム", - "alias_name_display": "シンデレラドリーム", - "id": "2536002", - "hash": "f8290c4530003b664115639282feddd3", - "profile": { - "height": "159", - "weight": "44", - "bust": "87", - "waist": "56", - "hip": "85" - }, - "event": [] - } - ], - "units": [ - { - "id": "52", - "name": "フォーリンシーサイド" - }, - { - "id": "124", - "name": "女神たちの夏宴" - }, - { - "id": "140", - "name": "アイドルミズキ with AS" - }, - { - "id": "190", - "name": "サマプリ" - }, - { - "id": "198", - "name": "ブルーナポレオン" - }, - { - "id": "201", - "name": "Caskets" - }, - { - "id": "212", - "name": "CINDERELLA GIRLS" - } - ] - }, - "74": { - "idol_id": 74, - "idol_name": "神谷奈緒", - "idol_name_display": "神谷奈緒", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2000801", - "hash": "4c54b931268517a3746f98911166b113", - "profile": { - "height": "154", - "weight": "44", - "bust": "83", - "waist": "58", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2100802", - "hash": "06a7cb5dff7350e37d97e6b9d6207148", - "profile": { - "height": "154", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "聖夜", - "alias_name_display": "聖夜", - "id": "2201901", - "hash": "226ea5730b69cb31b721f24fe9db2ff3", - "profile": { - "height": "154", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 101, - "event_name": "星降るクリスマス" - } - ] - }, - { - "alias_name": "聖夜", - "alias_name_display": "聖夜", - "id": "2301902", - "hash": "d2612b52c629e6a5ffcb5de8c6c77c1f", - "profile": { - "height": "154", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 101, - "event_name": "星降るクリスマス" - } - ] - }, - { - "alias_name": "京町乙女", - "alias_name_display": "京町乙女", - "id": "2206401", - "hash": "9c9c15601b70b9001c558d79df7f2795", - "profile": { - "height": "154", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 402, - "event_name": "アイドルプロデュース京町編" - } - ] - }, - { - "alias_name": "京町乙女", - "alias_name_display": "京町乙女", - "id": "2306402", - "hash": "5ed8a511f1c7bd01ac963eabd5aaf3f2", - "profile": { - "height": "154", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 402, - "event_name": "アイドルプロデュース京町編" - } - ] - }, - { - "alias_name": "制服コレクション", - "alias_name_display": "制服コレクション", - "id": "2211901", - "hash": "ead31e2aa3a42fd37121ae0e7379cc0d", - "profile": { - "height": "154", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "制服コレクション", - "alias_name_display": "制服コレクション", - "id": "2311902", - "hash": "dca33b6f2bbf361004273bc203ffeccd", - "profile": { - "height": "154", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "恥じらい乙女", - "alias_name_display": "恥じらい乙女", - "id": "2401901", - "hash": "2fc4f435264d5f7543ed27ff5bc3b333", - "profile": { - "height": "154", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "恥じらい乙女", - "alias_name_display": "恥じらい乙女", - "id": "2501902", - "hash": "7e19695143ebd0b2e67b54e212be8cb8", - "profile": { - "height": "154", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "アトラクトゴシック", - "alias_name_display": "アトラクトゴシック", - "id": "2405601", - "hash": "42ccfcf77765fe187c5b01a39b83b62b", - "profile": { - "height": "154", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "アトラクトゴシック", - "alias_name_display": "アトラクトゴシック", - "id": "2505602", - "hash": "823b2fe51a82ecb9819b0d8a28cbb05d", - "profile": { - "height": "154", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "夜宴のメイド", - "alias_name_display": "夜宴のメイド", - "id": "2412801", - "hash": "1eb1e04b6ccae476e2fa494da8dc8d62", - "profile": { - "height": "154", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "夜宴のメイド", - "alias_name_display": "夜宴のメイド", - "id": "2512802", - "hash": "71f3529076561f0938fcd40266bba205", - "profile": { - "height": "154", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "2414001", - "hash": "64a140b725d7907a0cf8ad1ea556206e", - "profile": { - "height": "154", - "weight": "44", - "bust": "83", - "waist": "58", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "2514002", - "hash": "65c6332be6031ac00cab0de46cd8b679", - "profile": { - "height": "154", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "魔法のエール", - "alias_name_display": "魔法のエール", - "id": "2419901", - "hash": "21db51dfd598fc78744050f3bd726b6c", - "profile": { - "height": "154", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 1107, - "event_name": "プロダクション対抗トークバトルショー クリスマスSP" - } - ] - }, - { - "alias_name": "魔法のエール", - "alias_name_display": "魔法のエール", - "id": "2519902", - "hash": "677c4345a16718726b0fc7fbffbd9181", - "profile": { - "height": "154", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 1107, - "event_name": "プロダクション対抗トークバトルショー クリスマスSP" - } - ] - }, - { - "alias_name": "純真の花嫁", - "alias_name_display": "純真の花嫁", - "id": "2424501", - "hash": "6605ee3d07ad7a750c55492215c2df86", - "profile": { - "height": "154", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 1206, - "event_name": "目指せウェディングモデル アイドルチャレンジ" - } - ] - }, - { - "alias_name": "純真の花嫁", - "alias_name_display": "純真の花嫁", - "id": "2524502", - "hash": "b3e05599926adc80d58c1ab78e987a78", - "profile": { - "height": "154", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 1206, - "event_name": "目指せウェディングモデル アイドルチャレンジ" - } - ] - }, - { - "alias_name": "トゥプロミス", - "alias_name_display": "トゥプロミス", - "id": "2427801", - "hash": "2c7cf0f30845f13b7794d96367f6f37a", - "profile": { - "height": "154", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "トゥプロミス", - "alias_name_display": "トゥプロミス", - "id": "2527802", - "hash": "ff60a2cf4d0f69d2c7b34929a354a11b", - "profile": { - "height": "154", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "夏空サプライズ", - "alias_name_display": "夏空サプライズ", - "id": "2433601", - "hash": "90340a72d8990fb4ae7171feeef246b4", - "profile": { - "height": "154", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "夏空サプライズ", - "alias_name_display": "夏空サプライズ", - "id": "2533602", - "hash": "d889a0c65040761fe74dae4bd35fc22d", - "profile": { - "height": "154", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "気まぐれにゃんこ", - "alias_name_display": "気まぐれにゃんこ", - "id": "2438401", - "hash": "224d562032e630fa1cc8d555dbb2c553", - "profile": { - "height": "154", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "気まぐれにゃんこ", - "alias_name_display": "気まぐれにゃんこ", - "id": "2538402", - "hash": "8511ad8903a41ce65a867c7d1d9fb90a", - "profile": { - "height": "154", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "81" - }, - "event": [] - } - ], - "units": [ - { - "id": "91", - "name": "京町乙女" - }, - { - "id": "94", - "name": "シャイニングゴッドチェリー" - }, - { - "id": "115", - "name": "虹色ドリーマー" - }, - { - "id": "144", - "name": "Triad Primus" - }, - { - "id": "187", - "name": "NEX-US" - }, - { - "id": "201", - "name": "Caskets" - }, - { - "id": "215", - "name": "Project:Krone" - } - ] - }, - "75": { - "idol_id": 75, - "idol_name": "上条春菜", - "idol_name_display": "上条春菜", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2000901", - "hash": "67f718dfb03e338ba76c322b1970258e", - "profile": { - "height": "156", - "weight": "42", - "bust": "79", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2100902", - "hash": "c981552913cad2107b2a42c40b42f200", - "profile": { - "height": "156", - "weight": "42", - "bust": "79", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "眼鏡マジック", - "alias_name_display": "眼鏡マジック", - "id": "2203201", - "hash": "30376d9c5c74a63aa62d34b6e5549287", - "profile": { - "height": "156", - "weight": "42", - "bust": "79", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": "001", - "event_name": "プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "眼鏡マジック", - "alias_name_display": "眼鏡マジック", - "id": "2303202", - "hash": "4046d2c05a63497e9d6363b8c93131c0", - "profile": { - "height": "156", - "weight": "42", - "bust": "79", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": "001", - "event_name": "プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "アニバーサリーブルー", - "alias_name_display": "アニバーサリーブルー", - "id": "2207001", - "hash": "82d2eab4067f865fdeb3b7bd9f3f1a1c", - "profile": { - "height": "156", - "weight": "42", - "bust": "79", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 403, - "event_name": "アイドルプロデュース the 1st Anniversary" - } - ] - }, - { - "alias_name": "アニバーサリーブルー", - "alias_name_display": "アニバーサリーブルー", - "id": "2307002", - "hash": "90d5b268954cd457fa650376fb7c37fe", - "profile": { - "height": "156", - "weight": "42", - "bust": "79", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 403, - "event_name": "アイドルプロデュース the 1st Anniversary" - } - ] - }, - { - "alias_name": "新春コレクション", - "alias_name_display": "新春コレクション", - "id": "2213701", - "hash": "9ec2e1396e64cbf435a52b7c4f7ff518", - "profile": { - "height": "156", - "weight": "42", - "bust": "79", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "新春コレクション", - "alias_name_display": "新春コレクション", - "id": "2313702", - "hash": "f4e2b86a14a5136878c169258a0d752d", - "profile": { - "height": "156", - "weight": "42", - "bust": "79", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "クリスマスプレゼント", - "alias_name_display": "クリスマスプレゼント", - "id": "2218901", - "hash": "f1279cb152f79f39243600a630ba373a", - "profile": { - "height": "156", - "weight": "42", - "bust": "79", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "クリスマスプレゼント", - "alias_name_display": "クリスマスプレゼント", - "id": "2318902", - "hash": "c7f5f73ba58581b6d42b967bcef3b33b", - "profile": { - "height": "156", - "weight": "42", - "bust": "79", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "秋の学園祭", - "alias_name_display": "秋の学園祭", - "id": "2228801", - "hash": "1a99e96a10fc8b6aa1d86de6df110900", - "profile": { - "height": "156", - "weight": "42", - "bust": "79", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "秋の学園祭", - "alias_name_display": "秋の学園祭", - "id": "2328802", - "hash": "32d8b86ecc3590d3d7c24af83676493e", - "profile": { - "height": "156", - "weight": "42", - "bust": "79", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "眼鏡プリンセス", - "alias_name_display": "眼鏡プリンセス", - "id": "2403001", - "hash": "d4bf3f8607525c3677d202531d6a2b8f", - "profile": { - "height": "156", - "weight": "42", - "bust": "79", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "眼鏡プリンセス", - "alias_name_display": "眼鏡プリンセス", - "id": "2503002", - "hash": "bbfd336e241f96dcc83e272d597cb3ef", - "profile": { - "height": "156", - "weight": "42", - "bust": "79", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ホワイトプリンセス", - "alias_name_display": "ホワイトプリンセス", - "id": "2408701", - "hash": "dd7ae2fc2ca09c5c5b4bdc9e3e7697b6", - "profile": { - "height": "156", - "weight": "42", - "bust": "79", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 507, - "event_name": "LIVEツアーカーニバルinドイツ" - } - ] - }, - { - "alias_name": "ホワイトプリンセス", - "alias_name_display": "ホワイトプリンセス", - "id": "2508702", - "hash": "f804a8ac60ea75d39b243b1878fd2e2d", - "profile": { - "height": "156", - "weight": "42", - "bust": "79", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 507, - "event_name": "LIVEツアーカーニバルinドイツ" - } - ] - }, - { - "alias_name": "眼鏡越しの輝き", - "alias_name_display": "眼鏡越しの輝き", - "id": "2415801", - "hash": "2fbb5c929f6ac2e9c19a5274ceb055db", - "profile": { - "height": "156", - "weight": "42", - "bust": "79", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 1301, - "event_name": "プロダクションマッチフェスティバルS" - } - ] - }, - { - "alias_name": "眼鏡越しの輝き", - "alias_name_display": "眼鏡越しの輝き", - "id": "2515802", - "hash": "51d10185262f6caafe0355f40b29a286", - "profile": { - "height": "156", - "weight": "42", - "bust": "79", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 1301, - "event_name": "プロダクションマッチフェスティバルS" - } - ] - }, - { - "alias_name": "メモリアル・ブルー", - "alias_name_display": "メモリアル・ブルー", - "id": "2422101", - "hash": "18b68bdafe0fbaff1a378cced824f0ff", - "profile": { - "height": "156", - "weight": "42", - "bust": "79", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "メモリアル・ブルー", - "alias_name_display": "メモリアル・ブルー", - "id": "2522102", - "hash": "33ac3decf73adafad8301c26188e74c8", - "profile": { - "height": "156", - "weight": "42", - "bust": "79", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "アニマルテイマー", - "alias_name_display": "アニマルテイマー", - "id": "2431401", - "hash": "f809934dbe9b4b0d3549c6716383ebfb", - "profile": { - "height": "156", - "weight": "42", - "bust": "79", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "アニマルテイマー", - "alias_name_display": "アニマルテイマー", - "id": "2531402", - "hash": "895adb42cedd503a357282110c7c92c9", - "profile": { - "height": "156", - "weight": "42", - "bust": "79", - "waist": "56", - "hip": "80" - }, - "event": [] - } - ], - "units": [ - { - "id": "16", - "name": "サイバーグラス" - }, - { - "id": "198", - "name": "ブルーナポレオン" - } - ] - }, - "76": { - "idol_id": 76, - "idol_name": "荒木比奈", - "idol_name_display": "荒木比奈", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2001001", - "hash": "15b30810c788f120586bc0916134b1da", - "profile": { - "height": "157", - "weight": "43", - "bust": "83", - "waist": "57", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2101002", - "hash": "1ac3475189f6684094860fa41607cc72", - "profile": { - "height": "157", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "サイバーグラス", - "alias_name_display": "サイバーグラス", - "id": "2205601", - "hash": "f3fe34f102bcfc79c85c7301729dc3fc", - "profile": { - "height": "157", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": "004", - "event_name": "第4回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "サイバーグラス", - "alias_name_display": "サイバーグラス", - "id": "2305602", - "hash": "ef0b667927cb970cd8ff1afd0b9b4558", - "profile": { - "height": "157", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": "004", - "event_name": "第4回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "クリスマスパーティー", - "alias_name_display": "クリスマスパーティー", - "id": "2207101", - "hash": "7b962529e1266770861d74fdfa9b915d", - "profile": { - "height": "157", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "クリスマスパーティー", - "alias_name_display": "クリスマスパーティー", - "id": "2307102", - "hash": "cb32cc18a6a4ddffb5eeea41bb83582e", - "profile": { - "height": "157", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ナイトパーティー", - "alias_name_display": "ナイトパーティー", - "id": "2220101", - "hash": "709707a9d2a67c4371536f7e525f9392", - "profile": { - "height": "157", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ナイトパーティー", - "alias_name_display": "ナイトパーティー", - "id": "2320102", - "hash": "1cddd797664730b9996c24be7647aeef", - "profile": { - "height": "157", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ライトニングモーニング", - "alias_name_display": "ライトニングモーニング", - "id": "2225101", - "hash": "3497634f983f9f98d7d73469c45007f2", - "profile": { - "height": "157", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ライトニングモーニング", - "alias_name_display": "ライトニングモーニング", - "id": "2325102", - "hash": "685e778faec4180be5af8d453a5bdbd8", - "profile": { - "height": "157", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "T.B.チアーズ", - "alias_name_display": "T.B.チアーズ", - "id": "2231701", - "hash": "cf11785b7891fb42a7d5b75fd7b33723", - "profile": { - "height": "157", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 1512, - "event_name": "第12回チーム対抗トークバトルショー" - } - ] - }, - { - "alias_name": "T.B.チアーズ", - "alias_name_display": "T.B.チアーズ", - "id": "2331702", - "hash": "0c2ecb19bd0d360cd0e6b00e36b4348d", - "profile": { - "height": "157", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 1512, - "event_name": "第12回チーム対抗トークバトルショー" - } - ] - }, - { - "alias_name": "ブルーフロートパーティー", - "alias_name_display": "ブルーフロートパーティー", - "id": "2408301", - "hash": "cf22d3b6255843c39b54ae310cccc00b", - "profile": { - "height": "157", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 506, - "event_name": "アイドルLIVEツアーinハワイ" - } - ] - }, - { - "alias_name": "ブルーフロートパーティー", - "alias_name_display": "ブルーフロートパーティー", - "id": "2508302", - "hash": "50b324eef14d2a6f827d1c51538c63cf", - "profile": { - "height": "157", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 506, - "event_name": "アイドルLIVEツアーinハワイ" - } - ] - }, - { - "alias_name": "花咲く舞姿", - "alias_name_display": "花咲く舞姿", - "id": "2412701", - "hash": "aa5df8e05c805eab2ef48d45718fa710", - "profile": { - "height": "157", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 510, - "event_name": "ひな祭りLIVEツアーカーニバル" - } - ] - }, - { - "alias_name": "花咲く舞姿", - "alias_name_display": "花咲く舞姿", - "id": "2512702", - "hash": "4678637baed65cc724da47c58b5fbeeb", - "profile": { - "height": "157", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 510, - "event_name": "ひな祭りLIVEツアーカーニバル" - } - ] - }, - { - "alias_name": "夏の思い出", - "alias_name_display": "夏の思い出", - "id": "2415901", - "hash": "d39d369d246b0ed963bd28f0484c05ce", - "profile": { - "height": "157", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 413, - "event_name": "みんなのなつやすみ" - } - ] - }, - { - "alias_name": "夏の思い出", - "alias_name_display": "夏の思い出", - "id": "2515902", - "hash": "0681a26986b44e551c2ac9d3f9681014", - "profile": { - "height": "157", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 413, - "event_name": "みんなのなつやすみ" - } - ] - }, - { - "alias_name": "一夏の思い出", - "alias_name_display": "一夏の思い出", - "id": "2416001", - "hash": "3806edd95899d90efae5a33f742071fe", - "profile": { - "height": "157", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 413, - "event_name": "みんなのなつやすみ" - } - ] - }, - { - "alias_name": "一夏の思い出", - "alias_name_display": "一夏の思い出", - "id": "2516002", - "hash": "42ca3dd4352298a6655156f141e4e1a9", - "profile": { - "height": "157", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 413, - "event_name": "みんなのなつやすみ" - } - ] - }, - { - "alias_name": "こころペイント", - "alias_name_display": "こころペイント", - "id": "2426501", - "hash": "bad411da0072464e386083dad9d15429", - "profile": { - "height": "157", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "こころペイント", - "alias_name_display": "こころペイント", - "id": "2526502", - "hash": "b29bf49901062956bfa1a97d530a1a8c", - "profile": { - "height": "157", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "青き日のメモリー", - "alias_name_display": "青き日のメモリー", - "id": "2435101", - "hash": "bc8b2dbbf15ea462967d6052df22acdb", - "profile": { - "height": "157", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "青き日のメモリー", - "alias_name_display": "青き日のメモリー", - "id": "2535102", - "hash": "df6fa045d58337acbd9725d8a940d1b4", - "profile": { - "height": "157", - "weight": "42", - "bust": "83", - "waist": "56", - "hip": "82" - }, - "event": [] - } - ], - "units": [ - { - "id": "12", - "name": "壁サーの花" - }, - { - "id": "16", - "name": "サイバーグラス" - }, - { - "id": "115", - "name": "虹色ドリーマー" - }, - { - "id": "198", - "name": "ブルーナポレオン" - } - ] - }, - "77": { - "idol_id": 77, - "idol_name": "東郷あい", - "idol_name_display": "東郷あい", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2001101", - "hash": "74aa09925c2e9f3dfa27f9d6c9043737", - "profile": { - "height": "167", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2101102", - "hash": "a3e6c69d2edf043cfb9c28701375fc34", - "profile": { - "height": "167", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "新春", - "alias_name_display": "新春", - "id": "2202001", - "hash": "cbe69bd743d9d067fd6b11cc0049a085", - "profile": { - "height": "167", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 102, - "event_name": "アイドルおもちつき大会" - } - ] - }, - { - "alias_name": "新春", - "alias_name_display": "新春", - "id": "2302002", - "hash": "4a72d18788cce0a7d131aab3752f2c99", - "profile": { - "height": "167", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 102, - "event_name": "アイドルおもちつき大会" - } - ] - }, - { - "alias_name": "メイドコレクション", - "alias_name_display": "メイドコレクション", - "id": "2205701", - "hash": "39675e1d3dc31791f353b9e6841ae8d8", - "profile": { - "height": "167", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "メイドコレクション", - "alias_name_display": "メイドコレクション", - "id": "2305702", - "hash": "d94d965adfb72f7ef95ac3b77733401a", - "profile": { - "height": "167", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "桜祭り", - "alias_name_display": "桜祭り", - "id": "2208901", - "hash": "5ef83cd87feba045f3f187b1762ff6ca", - "profile": { - "height": "167", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 406, - "event_name": "アイドルプロデュース 春の桜祭り編" - } - ] - }, - { - "alias_name": "桜祭り", - "alias_name_display": "桜祭り", - "id": "2308902", - "hash": "3c1f88d55d79cac9df8e77f18357f902", - "profile": { - "height": "167", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 406, - "event_name": "アイドルプロデュース 春の桜祭り編" - } - ] - }, - { - "alias_name": "桜祭りスマイル", - "alias_name_display": "桜祭りスマイル", - "id": "2209001", - "hash": "4accecd9f5f759be292a3c85c2ce3918", - "profile": { - "height": "167", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 406, - "event_name": "アイドルプロデュース 春の桜祭り編" - } - ] - }, - { - "alias_name": "桜祭りスマイル", - "alias_name_display": "桜祭りスマイル", - "id": "2309002", - "hash": "055eb7721bc1270b22d4547cf462a82c", - "profile": { - "height": "167", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 406, - "event_name": "アイドルプロデュース 春の桜祭り編" - } - ] - }, - { - "alias_name": "エレガントビューティー", - "alias_name_display": "エレガントビューティー", - "id": "2212801", - "hash": "6b328ca71ed9610a04aa38670c9b3166", - "profile": { - "height": "167", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "エレガントビューティー", - "alias_name_display": "エレガントビューティー", - "id": "2312802", - "hash": "4d32085d7d14fafb8a406e873442e7b8", - "profile": { - "height": "167", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "エレガントI.C", - "alias_name_display": "エレガントI.C", - "id": "2320002", - "hash": "b44cc7e3317df4588e160990fbfd4d86", - "profile": { - "height": "167", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 1205, - "event_name": "目指せ優雅なお嬢様 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "サマーバケーション", - "alias_name_display": "サマーバケーション", - "id": "2222401", - "hash": "31b37aeecf1445f7e363f3b8b7b6db23", - "profile": { - "height": "167", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "サマーバケーション", - "alias_name_display": "サマーバケーション", - "id": "2322402", - "hash": "696c01a795166f331a53c37994b5f7aa", - "profile": { - "height": "167", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "美貌の麗女", - "alias_name_display": "美貌の麗女", - "id": "2407701", - "hash": "e359a699281a6fb7935618fc6358470f", - "profile": { - "height": "167", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 505, - "event_name": "アイドルLIVEツアーinバリ島" - } - ] - }, - { - "alias_name": "美貌の麗女", - "alias_name_display": "美貌の麗女", - "id": "2507702", - "hash": "96c902ec8911587b338d09528fe19024", - "profile": { - "height": "167", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 505, - "event_name": "アイドルLIVEツアーinバリ島" - } - ] - }, - { - "alias_name": "ドライブトゥネクスト", - "alias_name_display": "ドライブトゥネクスト", - "id": "2418301", - "hash": "289a6831a0ad831572b9a7d57a4eb6b2", - "profile": { - "height": "167", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "ドライブトゥネクスト", - "alias_name_display": "ドライブトゥネクスト", - "id": "2518302", - "hash": "c3fa0697da17804c6fbd18ba99d2c722", - "profile": { - "height": "167", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "貫禄のお嬢様", - "alias_name_display": "貫禄のお嬢様", - "id": "2422201", - "hash": "9a9e72c629933e4ced1d13022e74552f", - "profile": { - "height": "167", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 1205, - "event_name": "目指せ優雅なお嬢様 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "貫禄のお嬢様", - "alias_name_display": "貫禄のお嬢様", - "id": "2522202", - "hash": "6820ec6d2e126592f9bade2f433bbcc7", - "profile": { - "height": "167", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 1205, - "event_name": "目指せ優雅なお嬢様 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "貫禄のお嬢様・S", - "alias_name_display": "貫禄のお嬢様・S", - "id": "2422301", - "hash": "3ce11c195914bac2bf7d885ecda38e09", - "profile": { - "height": "167", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 1205, - "event_name": "目指せ優雅なお嬢様 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "貫禄のお嬢様・S", - "alias_name_display": "貫禄のお嬢様・S", - "id": "2522302", - "hash": "928aa1d8c522c0ce8da26b91bf967cf6", - "profile": { - "height": "167", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 1205, - "event_name": "目指せ優雅なお嬢様 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "夏の戯れ", - "alias_name_display": "夏の戯れ", - "id": "2433501", - "hash": "cd2da0337b1ecce664227382948450db", - "profile": { - "height": "167", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 722, - "event_name": "夏祭りDEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "夏の戯れ", - "alias_name_display": "夏の戯れ", - "id": "2533502", - "hash": "b7e85b995983a4804983f200ce49b269", - "profile": { - "height": "167", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 722, - "event_name": "夏祭りDEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "白銀のシュプール", - "alias_name_display": "白銀のシュプール", - "id": "2436901", - "hash": "35a37964b7d42169b3c4cf2f4beffaec", - "profile": { - "height": "167", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 1410, - "event_name": "第10回ぷちデレラコレクション" - } - ] - }, - { - "alias_name": "白銀のシュプール", - "alias_name_display": "白銀のシュプール", - "id": "2536902", - "hash": "18587c946f96cd9c273730176ecbcec8", - "profile": { - "height": "167", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 1410, - "event_name": "第10回ぷちデレラコレクション" - } - ] - } - ], - "units": [ - { - "id": "10", - "name": "エレガントインモラリスト" - }, - { - "id": "88", - "name": "桜花小町" - }, - { - "id": "140", - "name": "アイドルミズキ with AS" - }, - { - "id": "171", - "name": "Black/White-Roses" - }, - { - "id": "183", - "name": "メイドコレクション" - }, - { - "id": "199", - "name": "レッドバラード" - } - ] - }, - "78": { - "idol_id": 78, - "idol_name": "多田李衣菜", - "idol_name_display": "多田李衣菜", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2001201", - "hash": "914e2e1efbc1f05e987772cc5c925722", - "profile": { - "height": "152", - "weight": "41", - "bust": "80", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2101202", - "hash": "17c1dfda6510677f5a448d951c086d33", - "profile": { - "height": "152", - "weight": "41", - "bust": "80", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "バレンタイン", - "alias_name_display": "バレンタイン", - "id": "2202901", - "hash": "dc90bc1dc7bad8aab44fa134a03bd9c8", - "profile": { - "height": "152", - "weight": "41", - "bust": "80", - "waist": "55", - "hip": "81" - }, - "event": [ - { - "event_id": 103, - "event_name": "バレンタインパーティー" - } - ] - }, - { - "alias_name": "バレンタイン", - "alias_name_display": "バレンタイン", - "id": "2302902", - "hash": "80ebaaa423e960469332d32354761c8e", - "profile": { - "height": "152", - "weight": "41", - "bust": "80", - "waist": "55", - "hip": "81" - }, - "event": [ - { - "event_id": 103, - "event_name": "バレンタインパーティー" - } - ] - }, - { - "alias_name": "制服コレクション", - "alias_name_display": "制服コレクション", - "id": "2203501", - "hash": "aff484871dd61658b8a67676988a0879", - "profile": { - "height": "152", - "weight": "41", - "bust": "80", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "制服コレクション", - "alias_name_display": "制服コレクション", - "id": "2303502", - "hash": "be5b1389c424bdcee5c5267f8f182ef3", - "profile": { - "height": "152", - "weight": "41", - "bust": "80", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ロッキングセッション", - "alias_name_display": "ロッキングセッション", - "id": "2209301", - "hash": "5c05456fa1975ed8ca50f82258df277d", - "profile": { - "height": "152", - "weight": "41", - "bust": "80", - "waist": "55", - "hip": "81" - }, - "event": [ - { - "event_id": 601, - "event_name": "アイドルセッション" - } - ] - }, - { - "alias_name": "ロッキングセッション", - "alias_name_display": "ロッキングセッション", - "id": "2309302", - "hash": "1e607f6df2113c582c0037bf2781bd77", - "profile": { - "height": "152", - "weight": "41", - "bust": "80", - "waist": "55", - "hip": "81" - }, - "event": [ - { - "event_id": 601, - "event_name": "アイドルセッション" - } - ] - }, - { - "alias_name": "ワーキング・レスキュー", - "alias_name_display": "ワーキング・レスキュー", - "id": "2225301", - "hash": "954eb62b4f0c88fb462862c417243571", - "profile": { - "height": "152", - "weight": "41", - "bust": "80", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ワーキング・レスキュー", - "alias_name_display": "ワーキング・レスキュー", - "id": "2325302", - "hash": "09a091936b403ea2cc9bd3922d47b873", - "profile": { - "height": "152", - "weight": "41", - "bust": "80", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ロッキングフィーバー", - "alias_name_display": "ロッキングフィーバー", - "id": "2326802", - "hash": "6b9c3e0ec3b75301341b0071e0c25c47", - "profile": { - "height": "152", - "weight": "41", - "bust": "80", - "waist": "55", - "hip": "81" - }, - "event": [ - { - "event_id": 1706, - "event_name": "アイドルプロデュース 北の大地と夜さりの祭" - } - ] - }, - { - "alias_name": "ロッキングフィーバー・S", - "alias_name_display": "ロッキングフィーバー・S", - "id": "2326902", - "hash": "28c80c030dbf6ee57cfd4d69403c0c82", - "profile": { - "height": "152", - "weight": "41", - "bust": "80", - "waist": "55", - "hip": "81" - }, - "event": [ - { - "event_id": 1706, - "event_name": "アイドルプロデュース 北の大地と夜さりの祭" - } - ] - }, - { - "alias_name": "クリエイティブI.C", - "alias_name_display": "クリエイティブI.C", - "id": "2331402", - "hash": "6082b9c30ed35ed98c89d9f8185ec4ec", - "profile": { - "height": "152", - "weight": "41", - "bust": "80", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ロッキングガール", - "alias_name_display": "ロッキングガール", - "id": "2402501", - "hash": "20d694b33aff2463098ec53b681c89f8", - "profile": { - "height": "152", - "weight": "41", - "bust": "80", - "waist": "55", - "hip": "81" - }, - "event": [ - { - "event_id": 205, - "event_name": "アイドルサバイバルinサマーライブ" - } - ] - }, - { - "alias_name": "ロッキングガール", - "alias_name_display": "ロッキングガール", - "id": "2502502", - "hash": "b2fac50d2d01e350c0555f61bc83a816", - "profile": { - "height": "152", - "weight": "41", - "bust": "80", - "waist": "55", - "hip": "81" - }, - "event": [ - { - "event_id": 205, - "event_name": "アイドルサバイバルinサマーライブ" - } - ] - }, - { - "alias_name": "新春ロッカー", - "alias_name_display": "新春ロッカー", - "id": "2404801", - "hash": "48fbeeba8cbf12dba8d2a2b9e46740ff", - "profile": { - "height": "152", - "weight": "41", - "bust": "80", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "新春ロッカー", - "alias_name_display": "新春ロッカー", - "id": "2504802", - "hash": "52279101de31c161d3e328d236b97111", - "profile": { - "height": "152", - "weight": "41", - "bust": "80", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "2405001", - "hash": "6c4bcbefec8f70fc06a7825764240138", - "profile": { - "height": "152", - "weight": "41", - "bust": "80", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "2505002", - "hash": "b664b9644edb5bb8c0ffb347035c5da3", - "profile": { - "height": "152", - "weight": "41", - "bust": "80", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "エイトビートロッカー", - "alias_name_display": "エイトビートロッカー", - "id": "2406201", - "hash": "215f8cec62b2aec84c7de6b82196e490", - "profile": { - "height": "152", - "weight": "41", - "bust": "80", - "waist": "55", - "hip": "81" - }, - "event": [ - { - "event_id": 601, - "event_name": "アイドルセッション" - } - ] - }, - { - "alias_name": "エイトビートロッカー", - "alias_name_display": "エイトビートロッカー", - "id": "2506202", - "hash": "cfffdf39e7d42112b6a1c67c066464e9", - "profile": { - "height": "152", - "weight": "41", - "bust": "80", - "waist": "55", - "hip": "81" - }, - "event": [ - { - "event_id": 601, - "event_name": "アイドルセッション" - } - ] - }, - { - "alias_name": "シンデレラドリーム", - "alias_name_display": "シンデレラドリーム", - "id": "2409101", - "hash": "b82cc04f383762ad8b17178c4541b612", - "profile": { - "height": "152", - "weight": "41", - "bust": "80", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "シンデレラドリーム", - "alias_name_display": "シンデレラドリーム", - "id": "2509102", - "hash": "fb8d932128418fe65603b3a401df31ec", - "profile": { - "height": "152", - "weight": "41", - "bust": "80", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "フォー・ピース", - "alias_name_display": "フォー・ピース", - "id": "2416201", - "hash": "dd6344a8baf0947d7d8cce141122c052", - "profile": { - "height": "152", - "weight": "41", - "bust": "80", - "waist": "55", - "hip": "81" - }, - "event": [ - { - "event_id": 1202, - "event_name": "目指せロックスター アイドルチャレンジ" - } - ] - }, - { - "alias_name": "フォー・ピース", - "alias_name_display": "フォー・ピース", - "id": "2516202", - "hash": "886f0d64d079d506d97861ff69384628", - "profile": { - "height": "152", - "weight": "41", - "bust": "80", - "waist": "55", - "hip": "81" - }, - "event": [ - { - "event_id": 1202, - "event_name": "目指せロックスター アイドルチャレンジ" - } - ] - }, - { - "alias_name": "パーティーロックアンセム", - "alias_name_display": "パーティーロックアンセム", - "id": "2419601", - "hash": "bf5998ac8491ce18e8d88fcd61237dc1", - "profile": { - "height": "152", - "weight": "41", - "bust": "80", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "パーティーロックアンセム", - "alias_name_display": "パーティーロックアンセム", - "id": "2519602", - "hash": "c7d9ebf06688e4ea6d383039efe538c1", - "profile": { - "height": "152", - "weight": "41", - "bust": "80", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ブルーサンシャインサマー", - "alias_name_display": "ブルーサンシャインサマー", - "id": "2425701", - "hash": "02395469aae2e69c4de945a9b169f4a6", - "profile": { - "height": "152", - "weight": "41", - "bust": "80", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ブルーサンシャインサマー", - "alias_name_display": "ブルーサンシャインサマー", - "id": "2525702", - "hash": "39aed32c6cbcf6adfe89bf505112b35a", - "profile": { - "height": "152", - "weight": "41", - "bust": "80", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "アスタリスク", - "alias_name_display": "アスタリスク", - "id": "2526302", - "hash": "273b1c41db9fcbaefa272d53a6d85400", - "profile": { - "height": "152", - "weight": "41", - "bust": "80", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "オールナイトフィーバー", - "alias_name_display": "オールナイトフィーバー", - "id": "2433001", - "hash": "1a0c01326720c0d7ef57912bb86d8578", - "profile": { - "height": "152", - "weight": "41", - "bust": "80", - "waist": "55", - "hip": "81" - }, - "event": [ - { - "event_id": 1706, - "event_name": "アイドルプロデュース 北の大地と夜さりの祭" - } - ] - }, - { - "alias_name": "オールナイトフィーバー", - "alias_name_display": "オールナイトフィーバー", - "id": "2533002", - "hash": "76d21a0867948b21a7f1bf26aee05b5b", - "profile": { - "height": "152", - "weight": "41", - "bust": "80", - "waist": "55", - "hip": "81" - }, - "event": [ - { - "event_id": 1706, - "event_name": "アイドルプロデュース 北の大地と夜さりの祭" - } - ] - }, - { - "alias_name": "バイオレットディシジョン", - "alias_name_display": "バイオレットディシジョン", - "id": "2438801", - "hash": "ce6cc64940b1610edfdd5e8486bd0de2", - "profile": { - "height": "152", - "weight": "41", - "bust": "80", - "waist": "55", - "hip": "81" - }, - "event": [ - { - "event_id": 1215, - "event_name": "ふたりでアイドルチャレンジ 目指せクールなミュージックビデオ" - } - ] - }, - { - "alias_name": "バイオレットディシジョン", - "alias_name_display": "バイオレットディシジョン", - "id": "2538802", - "hash": "4a688e97246cf40a0e8850db9199e694", - "profile": { - "height": "152", - "weight": "41", - "bust": "80", - "waist": "55", - "hip": "81" - }, - "event": [ - { - "event_id": 1215, - "event_name": "ふたりでアイドルチャレンジ 目指せクールなミュージックビデオ" - } - ] - } - ], - "units": [ - { - "id": "70", - "name": "*(Asterisk)" - }, - { - "id": "81", - "name": "Rock the Beat" - }, - { - "id": "107", - "name": "ロッキングガール" - }, - { - "id": "168", - "name": "*(Asterisk) with なつなな" - }, - { - "id": "169", - "name": "FOUR PIECE" - }, - { - "id": "192", - "name": "Masque:Rade" - }, - { - "id": "197", - "name": "アズール・ムジカ" - }, - { - "id": "213", - "name": "CINDERELLA PROJECT" - } - ] - }, - "79": { - "idol_id": 79, - "idol_name": "水木聖來", - "idol_name_display": "水木聖來", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2001301", - "hash": "abc8481a5c280fa3b9f0e214880ee10d", - "profile": { - "height": "155", - "weight": "43", - "bust": "82", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2101302", - "hash": "1109985f3ac6a0ab92adf1c3136a69af", - "profile": { - "height": "155", - "weight": "43", - "bust": "82", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "お花見", - "alias_name_display": "お花見", - "id": "2203301", - "hash": "9b24f0f25fd3f4e45306de3a07a50abc", - "profile": { - "height": "155", - "weight": "43", - "bust": "82", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 104, - "event_name": "桜舞う花見祭り" - } - ] - }, - { - "alias_name": "お花見", - "alias_name_display": "お花見", - "id": "2303302", - "hash": "998aefcaf91a4c9b6d1cfb5dff235102", - "profile": { - "height": "155", - "weight": "43", - "bust": "82", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 104, - "event_name": "桜舞う花見祭り" - } - ] - }, - { - "alias_name": "マーメイドパラダイス", - "alias_name_display": "マーメイドパラダイス", - "id": "2205101", - "hash": "431266547e2d69e6b788192f9c9dec3f", - "profile": { - "height": "155", - "weight": "43", - "bust": "82", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "マーメイドパラダイス", - "alias_name_display": "マーメイドパラダイス", - "id": "2305102", - "hash": "b6eaf7aa76eea29848924dc21390f04b", - "profile": { - "height": "155", - "weight": "43", - "bust": "82", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "アップトゥデイト", - "alias_name_display": "アップトゥデイト", - "id": "2218001", - "hash": "ace39a60c5f5dea3c2c5a29eece7a98e", - "profile": { - "height": "155", - "weight": "43", - "bust": "82", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "アップトゥデイト", - "alias_name_display": "アップトゥデイト", - "id": "2318002", - "hash": "726fa7ad55bf434211137953c02e577d", - "profile": { - "height": "155", - "weight": "43", - "bust": "82", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ダンシングガール", - "alias_name_display": "ダンシングガール", - "id": "2227001", - "hash": "c2f252167530abf530d24e86c76f3d8e", - "profile": { - "height": "155", - "weight": "43", - "bust": "82", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 1706, - "event_name": "アイドルプロデュース 北の大地と夜さりの祭" - } - ] - }, - { - "alias_name": "ダンシングガール", - "alias_name_display": "ダンシングガール", - "id": "2327002", - "hash": "e6541e39874ed3fbf45ca0352f7bb63b", - "profile": { - "height": "155", - "weight": "43", - "bust": "82", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 1706, - "event_name": "アイドルプロデュース 北の大地と夜さりの祭" - } - ] - }, - { - "alias_name": "ダンシングガール・S", - "alias_name_display": "ダンシングガール・S", - "id": "2227101", - "hash": "4d2e522dfd47d84d940d49783c020d74", - "profile": { - "height": "155", - "weight": "43", - "bust": "82", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 1706, - "event_name": "アイドルプロデュース 北の大地と夜さりの祭" - } - ] - }, - { - "alias_name": "ダンシングガール・S", - "alias_name_display": "ダンシングガール・S", - "id": "2327102", - "hash": "9ed53b79186a805737dd6cb970269ce9", - "profile": { - "height": "155", - "weight": "43", - "bust": "82", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 1706, - "event_name": "アイドルプロデュース 北の大地と夜さりの祭" - } - ] - }, - { - "alias_name": "ハートビートUSA", - "alias_name_display": "ハートビートUSA", - "id": "2403901", - "hash": "51c8925b6e5c956b98b83eb20d46040d", - "profile": { - "height": "155", - "weight": "43", - "bust": "82", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 501, - "event_name": "アイドルLIVEツアーinUSA" - } - ] - }, - { - "alias_name": "ハートビートUSA", - "alias_name_display": "ハートビートUSA", - "id": "2503902", - "hash": "039e4d40a61739c0ea9eee219358547d", - "profile": { - "height": "155", - "weight": "43", - "bust": "82", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 501, - "event_name": "アイドルLIVEツアーinUSA" - } - ] - }, - { - "alias_name": "サンライトマリナー", - "alias_name_display": "サンライトマリナー", - "id": "2408101", - "hash": "a91333acf3e8f62c5c089cb9f80cae53", - "profile": { - "height": "155", - "weight": "43", - "bust": "82", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "サンライトマリナー", - "alias_name_display": "サンライトマリナー", - "id": "2508102", - "hash": "92cdfe2c392257dfb9812d16954b02cc", - "profile": { - "height": "155", - "weight": "43", - "bust": "82", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "魅惑のバニー", - "alias_name_display": "魅惑のバニー", - "id": "2412201", - "hash": "32b0b845e8021a8d37704bbd14eb038c", - "profile": { - "height": "155", - "weight": "43", - "bust": "82", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "魅惑のバニー", - "alias_name_display": "魅惑のバニー", - "id": "2512202", - "hash": "457e56799338c978c0da981e40f8ad01", - "profile": { - "height": "155", - "weight": "43", - "bust": "82", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ワンデイマイウェイ", - "alias_name_display": "ワンデイマイウェイ", - "id": "2423401", - "hash": "1e18fbe74cb8c0111918b5000b2ae9c7", - "profile": { - "height": "155", - "weight": "43", - "bust": "82", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 1501, - "event_name": "チーム対抗トークバトルショー" - } - ] - }, - { - "alias_name": "ワンデイマイウェイ", - "alias_name_display": "ワンデイマイウェイ", - "id": "2523402", - "hash": "65566f326cb457b6b0269ce58299d80f", - "profile": { - "height": "155", - "weight": "43", - "bust": "82", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 1501, - "event_name": "チーム対抗トークバトルショー" - } - ] - }, - { - "alias_name": "情熱のゆくえ", - "alias_name_display": "情熱のゆくえ", - "id": "2427601", - "hash": "388059213e4526e3198f513dea759229", - "profile": { - "height": "155", - "weight": "43", - "bust": "82", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": "024", - "event_name": "第24回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "情熱のゆくえ", - "alias_name_display": "情熱のゆくえ", - "id": "2527602", - "hash": "a6b738ae3dad7422c7b4d0c1681777a8", - "profile": { - "height": "155", - "weight": "43", - "bust": "82", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": "024", - "event_name": "第24回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "ライズバイビギン", - "alias_name_display": "ライズバイビギン", - "id": "2438101", - "hash": "c14d72f459f7e1236907cfca8ab14e34", - "profile": { - "height": "155", - "weight": "43", - "bust": "82", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ライズバイビギン", - "alias_name_display": "ライズバイビギン", - "id": "2538102", - "hash": "ba06248f504e77b5b221773f218ea8a2", - "profile": { - "height": "155", - "weight": "43", - "bust": "82", - "waist": "55", - "hip": "80" - }, - "event": [] - } - ], - "units": [ - { - "id": "29", - "name": "セーラーマリナー" - }, - { - "id": "110", - "name": "アップトゥデイト" - }, - { - "id": "111", - "name": "アンチェイン・シグナル" - }, - { - "id": "182", - "name": "マーメイドパラダイス" - } - ] - }, - "80": { - "idol_id": 80, - "idol_name": "佐々木千枝", - "idol_name_display": "佐々木千枝", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2001401", - "hash": "f0c2444b0d413beed830240f57990e26", - "profile": { - "height": "139", - "weight": "33", - "bust": "73", - "waist": "49", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2101402", - "hash": "05cd6e3d8c261274848e8f1863fb0cff", - "profile": { - "height": "139", - "weight": "33", - "bust": "73", - "waist": "49", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "バレンタイン", - "alias_name_display": "バレンタイン", - "id": "2001801", - "hash": "0f019f7dd04a1b63a1e3825c28a11123", - "profile": { - "height": "139", - "weight": "33", - "bust": "73", - "waist": "49", - "hip": "73" - }, - "event": [ - { - "event_id": 103, - "event_name": "バレンタインパーティー" - } - ] - }, - { - "alias_name": "バレンタイン", - "alias_name_display": "バレンタイン", - "id": "2101802", - "hash": "8abda9b19f8a14835bbc821b2507e8ee", - "profile": { - "height": "139", - "weight": "33", - "bust": "73", - "waist": "49", - "hip": "73" - }, - "event": [ - { - "event_id": 103, - "event_name": "バレンタインパーティー" - } - ] - }, - { - "alias_name": "デビリッシュゴシック", - "alias_name_display": "デビリッシュゴシック", - "id": "2209701", - "hash": "044f113cdcc7732faf97b6fb1df1d96a", - "profile": { - "height": "139", - "weight": "33", - "bust": "73", - "waist": "49", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "デビリッシュゴシック", - "alias_name_display": "デビリッシュゴシック", - "id": "2309702", - "hash": "a33955d9b6f7d22ebba0cf1073c079a7", - "profile": { - "height": "139", - "weight": "33", - "bust": "73", - "waist": "49", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "スタディ&ステディ", - "alias_name_display": "スタディ&ステディ", - "id": "2215001", - "hash": "936c37c079b0126b271f83c7fedef864", - "profile": { - "height": "139", - "weight": "33", - "bust": "73", - "waist": "49", - "hip": "73" - }, - "event": [ - { - "event_id": 706, - "event_name": "第6回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "スタディ&ステディ", - "alias_name_display": "スタディ&ステディ", - "id": "2315002", - "hash": "1abbc5eac07f45dc193afebe5cad86ff", - "profile": { - "height": "139", - "weight": "33", - "bust": "73", - "waist": "49", - "hip": "73" - }, - "event": [ - { - "event_id": 706, - "event_name": "第6回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ウェディングI.C", - "alias_name_display": "ウェディングI.C", - "id": "2321502", - "hash": "2554c92dc0e9efd5156764e9481a6cdc", - "profile": { - "height": "139", - "weight": "33", - "bust": "73", - "waist": "49", - "hip": "73" - }, - "event": [ - { - "event_id": 1206, - "event_name": "目指せウェディングモデル アイドルチャレンジ" - } - ] - }, - { - "alias_name": "クリスマスナイト", - "alias_name_display": "クリスマスナイト", - "id": "2224201", - "hash": "3d0d69d62b66f7126564592ca5b4c7ad", - "profile": { - "height": "139", - "weight": "33", - "bust": "73", - "waist": "49", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "クリスマスナイト", - "alias_name_display": "クリスマスナイト", - "id": "2324202", - "hash": "fa6a7fdd63649f509943e8ffc48ece69", - "profile": { - "height": "139", - "weight": "33", - "bust": "73", - "waist": "49", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "ガーリードール", - "alias_name_display": "ガーリードール", - "id": "2227901", - "hash": "daac0bd09193284b6e3c1384ad8d6811", - "profile": { - "height": "139", - "weight": "33", - "bust": "73", - "waist": "49", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "ガーリードール", - "alias_name_display": "ガーリードール", - "id": "2327902", - "hash": "32ccc1fd6da96b70e447ea3f2a2186a2", - "profile": { - "height": "139", - "weight": "33", - "bust": "73", - "waist": "49", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "魔法のスマイル", - "alias_name_display": "魔法のスマイル", - "id": "2401701", - "hash": "7213ea3b2b521bcde53e7146de663446", - "profile": { - "height": "139", - "weight": "33", - "bust": "73", - "waist": "49", - "hip": "73" - }, - "event": [ - { - "event_id": 203, - "event_name": "アイドルサバイバルinテーマパーク" - } - ] - }, - { - "alias_name": "魔法のスマイル", - "alias_name_display": "魔法のスマイル", - "id": "2501702", - "hash": "ab92fbb87150467830f12b1c376302d2", - "profile": { - "height": "139", - "weight": "33", - "bust": "73", - "waist": "49", - "hip": "73" - }, - "event": [ - { - "event_id": 203, - "event_name": "アイドルサバイバルinテーマパーク" - } - ] - }, - { - "alias_name": "色づき紅葉", - "alias_name_display": "色づき紅葉", - "id": "2403501", - "hash": "6f0b70d6ce4852c6e487ad3a32202838", - "profile": { - "height": "139", - "weight": "33", - "bust": "73", - "waist": "49", - "hip": "73" - }, - "event": [ - { - "event_id": 402, - "event_name": "アイドルプロデュース京町編" - } - ] - }, - { - "alias_name": "色づき紅葉", - "alias_name_display": "色づき紅葉", - "id": "2503502", - "hash": "7bdb027ba84b1035532d31a6c81decda", - "profile": { - "height": "139", - "weight": "33", - "bust": "73", - "waist": "49", - "hip": "73" - }, - "event": [ - { - "event_id": 402, - "event_name": "アイドルプロデュース京町編" - } - ] - }, - { - "alias_name": "マーチング☆メジャー", - "alias_name_display": "マーチング☆メジャー", - "id": "2408901", - "hash": "d2d3857a48dae78a1e24c8c9bda2c751", - "profile": { - "height": "139", - "weight": "33", - "bust": "73", - "waist": "49", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "マーチング☆メジャー", - "alias_name_display": "マーチング☆メジャー", - "id": "2508902", - "hash": "fe0c2ac409bb9eb4b6a8ab5050a6bf0c", - "profile": { - "height": "139", - "weight": "33", - "bust": "73", - "waist": "49", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "色づき紅葉・スマイル", - "alias_name_display": "色づき紅葉・スマイル", - "id": "2411001", - "hash": "7d617c6da4e598221715f638460b14b4", - "profile": { - "height": "139", - "weight": "33", - "bust": "73", - "waist": "49", - "hip": "73" - }, - "event": [ - { - "event_id": 402, - "event_name": "アイドルプロデュース京町編" - } - ] - }, - { - "alias_name": "色づき紅葉・スマイル", - "alias_name_display": "色づき紅葉・スマイル", - "id": "2511002", - "hash": "3a2ecda51aca30ae1085bfc8d8ea49a6", - "profile": { - "height": "139", - "weight": "33", - "bust": "73", - "waist": "49", - "hip": "73" - }, - "event": [ - { - "event_id": 402, - "event_name": "アイドルプロデュース京町編" - } - ] - }, - { - "alias_name": "チャーミングチアー", - "alias_name_display": "チャーミングチアー", - "id": "2415401", - "hash": "e8572a72a031ff58788b7cc12fc981a0", - "profile": { - "height": "139", - "weight": "33", - "bust": "73", - "waist": "49", - "hip": "73" - }, - "event": [ - { - "event_id": 1103, - "event_name": "第3回プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "チャーミングチアー", - "alias_name_display": "チャーミングチアー", - "id": "2515402", - "hash": "7d8637027259261ee45c9abc302fa7d6", - "profile": { - "height": "139", - "weight": "33", - "bust": "73", - "waist": "49", - "hip": "73" - }, - "event": [ - { - "event_id": 1103, - "event_name": "第3回プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "ちいさな冬のメモリー", - "alias_name_display": "ちいさな冬のメモリー", - "id": "2420801", - "hash": "7ad729a67d4c59988bfc3776e5150a67", - "profile": { - "height": "139", - "weight": "33", - "bust": "73", - "waist": "49", - "hip": "73" - }, - "event": [ - { - "event_id": 1303, - "event_name": "第3回プロダクションマッチフェスティバルS" - } - ] - }, - { - "alias_name": "ちいさな冬のメモリー", - "alias_name_display": "ちいさな冬のメモリー", - "id": "2520802", - "hash": "abb0c6f85275d68dea5608ae344d62ff", - "profile": { - "height": "139", - "weight": "33", - "bust": "73", - "waist": "49", - "hip": "73" - }, - "event": [ - { - "event_id": 1303, - "event_name": "第3回プロダクションマッチフェスティバルS" - } - ] - }, - { - "alias_name": "おしゃまな花嫁", - "alias_name_display": "おしゃまな花嫁", - "id": "2424601", - "hash": "6072c44e2844c6a34c24e9207ee2c08a", - "profile": { - "height": "139", - "weight": "33", - "bust": "73", - "waist": "49", - "hip": "73" - }, - "event": [ - { - "event_id": 1206, - "event_name": "目指せウェディングモデル アイドルチャレンジ" - } - ] - }, - { - "alias_name": "おしゃまな花嫁", - "alias_name_display": "おしゃまな花嫁", - "id": "2524602", - "hash": "7cdbf6e7efde979e4c28518175026446", - "profile": { - "height": "139", - "weight": "33", - "bust": "73", - "waist": "49", - "hip": "73" - }, - "event": [ - { - "event_id": 1206, - "event_name": "目指せウェディングモデル アイドルチャレンジ" - } - ] - }, - { - "alias_name": "おしゃまな花嫁・S", - "alias_name_display": "おしゃまな花嫁・S", - "id": "2424701", - "hash": "3998b113aa219043952e20f63b5264f8", - "profile": { - "height": "139", - "weight": "33", - "bust": "73", - "waist": "49", - "hip": "73" - }, - "event": [ - { - "event_id": 1206, - "event_name": "目指せウェディングモデル アイドルチャレンジ" - } - ] - }, - { - "alias_name": "おしゃまな花嫁・S", - "alias_name_display": "おしゃまな花嫁・S", - "id": "2524702", - "hash": "8606f7184a98a984dee5cc60cda14bb6", - "profile": { - "height": "139", - "weight": "33", - "bust": "73", - "waist": "49", - "hip": "73" - }, - "event": [ - { - "event_id": 1206, - "event_name": "目指せウェディングモデル アイドルチャレンジ" - } - ] - }, - { - "alias_name": "憧れモード", - "alias_name_display": "憧れモード", - "id": "2438201", - "hash": "23b1021bbf8e0387b79db8e5a09417d1", - "profile": { - "height": "139", - "weight": "33", - "bust": "73", - "waist": "49", - "hip": "73" - }, - "event": [ - { - "event_id": 1411, - "event_name": "第11回ぷちデレラコレクション" - } - ] - }, - { - "alias_name": "憧れモード", - "alias_name_display": "憧れモード", - "id": "2538202", - "hash": "54022827f6129503d2444697e275e075", - "profile": { - "height": "139", - "weight": "33", - "bust": "73", - "waist": "49", - "hip": "73" - }, - "event": [ - { - "event_id": 1411, - "event_name": "第11回ぷちデレラコレクション" - } - ] - } - ], - "units": [ - { - "id": "157", - "name": "デビリッシュゴシック" - }, - { - "id": "198", - "name": "ブルーナポレオン" - }, - { - "id": "214", - "name": "L.M.B.G" - } - ] - }, - "81": { - "idol_id": 81, - "idol_name": "三船美優", - "idol_name_display": "三船美優", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2001501", - "hash": "c89d54609371818e71836d519b3d404f", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 101, - "event_name": "星降るクリスマス" - } - ] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2101502", - "hash": "f88124b3773ba0ab60c214b9680cfad3", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 101, - "event_name": "星降るクリスマス" - } - ] - }, - { - "alias_name": "アニマルパーク", - "alias_name_display": "アニマルパーク", - "id": "2204501", - "hash": "1a248c4fd99fa2c0f6e7cfd3d38cdec3", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 204, - "event_name": "アイドルサバイバルin動物園" - } - ] - }, - { - "alias_name": "アニマルパーク", - "alias_name_display": "アニマルパーク", - "id": "2304502", - "hash": "0dc198bc42f2bf127be11bba49ec153d", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 204, - "event_name": "アイドルサバイバルin動物園" - } - ] - }, - { - "alias_name": "クリスマスパーティー", - "alias_name_display": "クリスマスパーティー", - "id": "2207201", - "hash": "708ec9cc3763b594d6601c8d51c5e8c8", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "60", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "クリスマスパーティー", - "alias_name_display": "クリスマスパーティー", - "id": "2307202", - "hash": "8489c6bf198cd1add92e31214cf1ed3b", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "60", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "癒しの女神", - "alias_name_display": "癒しの女神", - "id": "2402901", - "hash": "e36e7e2c8af815133d20fb841089649f", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 401, - "event_name": "新人アイドルプロデュース" - } - ] - }, - { - "alias_name": "癒しの女神", - "alias_name_display": "癒しの女神", - "id": "2502902", - "hash": "abbf9be5325779c8ee449c299d4289fb", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 401, - "event_name": "新人アイドルプロデュース" - } - ] - }, - { - "alias_name": "ティアドロップ", - "alias_name_display": "ティアドロップ", - "id": "2406901", - "hash": "ee322ea98eab35f352e5b9c0d060a48e", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 407, - "event_name": "アイドルプロデュース 鎌倉あじさい巡り" - } - ] - }, - { - "alias_name": "ティアドロップ", - "alias_name_display": "ティアドロップ", - "id": "2506902", - "hash": "97fa2fe3c33deab094d5c2374b9815f0", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 407, - "event_name": "アイドルプロデュース 鎌倉あじさい巡り" - } - ] - }, - { - "alias_name": "ティアドロップスマイル", - "alias_name_display": "ティアドロップスマイル", - "id": "2407001", - "hash": "a2481e91c759538a71497ff12e668e6e", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 407, - "event_name": "アイドルプロデュース 鎌倉あじさい巡り" - } - ] - }, - { - "alias_name": "ティアドロップスマイル", - "alias_name_display": "ティアドロップスマイル", - "id": "2507002", - "hash": "d6112289cb47bc2ba05d118737624c87", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 407, - "event_name": "アイドルプロデュース 鎌倉あじさい巡り" - } - ] - }, - { - "alias_name": "エレガントアクトレス", - "alias_name_display": "エレガントアクトレス", - "id": "2411601", - "hash": "cace0e19284699a04378eb8009fa183f", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "60", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "エレガントアクトレス", - "alias_name_display": "エレガントアクトレス", - "id": "2511602", - "hash": "3f56480abbcb48a95271b953d7622d78", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "60", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "優美なる花嫁", - "alias_name_display": "優美なる花嫁", - "id": "2414901", - "hash": "cdbb784799d1dba671dfc86bb7c1f793", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "60", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "優美なる花嫁", - "alias_name_display": "優美なる花嫁", - "id": "2514902", - "hash": "8b2980adb5b283dc25de271784f69137", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "60", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ふぁいと一発", - "alias_name_display": "ふぁいと一発", - "id": "2418701", - "hash": "4e782e8a138d53a9cc8a6c1e0b4013b5", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 709, - "event_name": "第9回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ふぁいと一発", - "alias_name_display": "ふぁいと一発", - "id": "2518702", - "hash": "fac6d145b1b32c83eb6491ae2d58799e", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 709, - "event_name": "第9回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "繚乱の花人", - "alias_name_display": "繚乱の花人", - "id": "2423001", - "hash": "e427adb35c668971f9dbd359bac19590", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "60", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "繚乱の花人", - "alias_name_display": "繚乱の花人", - "id": "2523002", - "hash": "5f45af1cc6ce463f760111044680cadc", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "60", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ウィンターバカンスヴィーナス", - "alias_name_display": "ウィンターバカンスヴィーナス", - "id": "2429401", - "hash": "db306ac30fb4deb6148f4536444be5b2", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "60", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ウィンターバカンスヴィーナス", - "alias_name_display": "ウィンターバカンスヴィーナス", - "id": "2529402", - "hash": "3e94f06dddc6aebc16f6b61d1287bb86", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "60", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "天藍のカンツォーネ", - "alias_name_display": "天藍のカンツォーネ", - "id": "2434501", - "hash": "80ad5921f5bf1f0e25317eb149aec5b8", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "60", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "天藍のカンツォーネ", - "alias_name_display": "天藍のカンツォーネ", - "id": "2534502", - "hash": "b6ddd6316b0036bf1bf5d36c8c76a103", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "60", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "語らいの明眸", - "alias_name_display": "語らいの明眸", - "id": "2439601", - "hash": "29fd6073c0fd3f5e6e6ed5c7f034d9d3", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 1512, - "event_name": "第12回チーム対抗トークバトルショー" - } - ] - }, - { - "alias_name": "語らいの明眸", - "alias_name_display": "語らいの明眸", - "id": "2539602", - "hash": "be6c919489145ab6fcf4735fccad0f5c", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 1512, - "event_name": "第12回チーム対抗トークバトルショー" - } - ] - } - ], - "units": [ - { - "id": "22", - "name": "シャイニー・アーリーデイズ" - }, - { - "id": "84", - "name": "アニマルパーク" - }, - { - "id": "142", - "name": "バレンタイン反省会" - }, - { - "id": "184", - "name": "宵乙女" - } - ] - }, - "82": { - "idol_id": 82, - "idol_name": "服部瞳子", - "idol_name_display": "服部瞳子", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2001601", - "hash": "35b09bc982525959986d255eba92f6bf", - "profile": { - "height": "169", - "weight": "48", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 102, - "event_name": "アイドルおもちつき大会" - } - ] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2101602", - "hash": "6b061a866178e79570981b8a9bf5544d", - "profile": { - "height": "169", - "weight": "48", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 102, - "event_name": "アイドルおもちつき大会" - } - ] - }, - { - "alias_name": "新たな一面", - "alias_name_display": "新たな一面", - "id": "2208301", - "hash": "24e21295c6dca652c107bad42d161e3c", - "profile": { - "height": "169", - "weight": "48", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "新たな一面", - "alias_name_display": "新たな一面", - "id": "2308302", - "hash": "1582d357b84644b66bb3d4db8c88125a", - "profile": { - "height": "169", - "weight": "48", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "アダルティアニマル", - "alias_name_display": "アダルティアニマル", - "id": "2219901", - "hash": "bae6764236edeb14d146c5ba72311f5e", - "profile": { - "height": "169", - "weight": "48", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "アダルティアニマル", - "alias_name_display": "アダルティアニマル", - "id": "2319902", - "hash": "41a29dd0318bbc19cde60b68865f0987", - "profile": { - "height": "169", - "weight": "48", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ロワイヤルスタイルND", - "alias_name_display": "ロワイヤルスタイルND", - "id": "2321902", - "hash": "8b2e579310bd133d0f34f876918ef36f", - "profile": { - "height": "169", - "weight": "48", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 813, - "event_name": "第13回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ゴーフォーヴィクトリー", - "alias_name_display": "ゴーフォーヴィクトリー", - "id": "2231001", - "hash": "2770f9e3f17554d24e74423749631811", - "profile": { - "height": "169", - "weight": "48", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ゴーフォーヴィクトリー", - "alias_name_display": "ゴーフォーヴィクトリー", - "id": "2331002", - "hash": "4d9a759a02e8a414f311b3430938d69c", - "profile": { - "height": "169", - "weight": "48", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "一輪の花", - "alias_name_display": "一輪の花", - "id": "2413901", - "hash": "5c23e5797171e8313c89225c1040289d", - "profile": { - "height": "169", - "weight": "48", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 213, - "event_name": "アイドルサバイバルinフラワーガーデン" - } - ] - }, - { - "alias_name": "一輪の花", - "alias_name_display": "一輪の花", - "id": "2513902", - "hash": "108e6a615a49e2b18ba7c1ba3ddfb383", - "profile": { - "height": "169", - "weight": "48", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 213, - "event_name": "アイドルサバイバルinフラワーガーデン" - } - ] - }, - { - "alias_name": "エターナルホープ", - "alias_name_display": "エターナルホープ", - "id": "2430901", - "hash": "72c7f8f3977631a376f9335318ffd01e", - "profile": { - "height": "169", - "weight": "48", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": "026", - "event_name": "第26回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "エターナルホープ", - "alias_name_display": "エターナルホープ", - "id": "2530902", - "hash": "2fc8f01b15ea20a9da1300e11b02650e", - "profile": { - "height": "169", - "weight": "48", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": "026", - "event_name": "第26回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "ビリービングチアー", - "alias_name_display": "ビリービングチアー", - "id": "2434301", - "hash": "e3329e174d1a982ea1caa591aad94568", - "profile": { - "height": "169", - "weight": "48", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 1508, - "event_name": "チーム対抗トークバトルショー in SUMMER" - } - ] - }, - { - "alias_name": "ビリービングチアー", - "alias_name_display": "ビリービングチアー", - "id": "2534302", - "hash": "8c428918c3def67003cdb73be7eb1b85", - "profile": { - "height": "169", - "weight": "48", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 1508, - "event_name": "チーム対抗トークバトルショー in SUMMER" - } - ] - } - ], - "units": [ - { - "id": "142", - "name": "バレンタイン反省会" - }, - { - "id": "210", - "name": "ロワイヤルスタイルND" - } - ] - }, - "83": { - "idol_id": 83, - "idol_name": "木場真奈美", - "idol_name_display": "木場真奈美", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2001701", - "hash": "046cd353c0361020d544e2946f024908", - "profile": { - "height": "172", - "weight": "50", - "bust": "88", - "waist": "60", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2101702", - "hash": "e020758ea7075bb1602c7350823566c0", - "profile": { - "height": "172", - "weight": "50", - "bust": "88", - "waist": "60", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "ハロウィンヴァンパイア", - "alias_name_display": "ハロウィンヴァンパイア", - "id": "2206501", - "hash": "008d9393fd573899800cc63d17cd3881", - "profile": { - "height": "172", - "weight": "50", - "bust": "88", - "waist": "60", - "hip": "89" - }, - "event": [ - { - "event_id": 207, - "event_name": "アイドルサバイバル ハロウィン編" - } - ] - }, - { - "alias_name": "ハロウィンヴァンパイア", - "alias_name_display": "ハロウィンヴァンパイア", - "id": "2306502", - "hash": "fadf4c0567cbc33bd14012d985da6770", - "profile": { - "height": "172", - "weight": "50", - "bust": "88", - "waist": "60", - "hip": "89" - }, - "event": [ - { - "event_id": 207, - "event_name": "アイドルサバイバル ハロウィン編" - } - ] - }, - { - "alias_name": "メタリックレディウルフ", - "alias_name_display": "メタリックレディウルフ", - "id": "2213301", - "hash": "6bde4d4ab925d40189957d22816238bc", - "profile": { - "height": "172", - "weight": "50", - "bust": "88", - "waist": "60", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "メタリックレディウルフ", - "alias_name_display": "メタリックレディウルフ", - "id": "2313302", - "hash": "79b8ba4a1305641121f85c630a187072", - "profile": { - "height": "172", - "weight": "50", - "bust": "88", - "waist": "60", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "スクールガール", - "alias_name_display": "スクールガール", - "id": "2218201", - "hash": "de63eaf145ae085f3d2ab0ddc6dc00a1", - "profile": { - "height": "172", - "weight": "50", - "bust": "88", - "waist": "60", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "スクールガール", - "alias_name_display": "スクールガール", - "id": "2318202", - "hash": "0581485c6cb33372d334e567ebc58c2e", - "profile": { - "height": "172", - "weight": "50", - "bust": "88", - "waist": "60", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "T.B.チアーズ", - "alias_name_display": "T.B.チアーズ", - "id": "2222601", - "hash": "1c4c8f44d4d2eb0d037645f495fd6c3d", - "profile": { - "height": "172", - "weight": "50", - "bust": "88", - "waist": "60", - "hip": "89" - }, - "event": [ - { - "event_id": 1503, - "event_name": "チーム対抗 夏だ!プールだ!トークバトルショー" - } - ] - }, - { - "alias_name": "T.B.チアーズ", - "alias_name_display": "T.B.チアーズ", - "id": "2322602", - "hash": "e2e0041e12c921fbd33ca51389ec3232", - "profile": { - "height": "172", - "weight": "50", - "bust": "88", - "waist": "60", - "hip": "89" - }, - "event": [ - { - "event_id": 1503, - "event_name": "チーム対抗 夏だ!プールだ!トークバトルショー" - } - ] - }, - { - "alias_name": "サンタI.C", - "alias_name_display": "サンタI.C", - "id": "2324302", - "hash": "e5834f442f8c686a85b70b8cbcd13e7e", - "profile": { - "height": "172", - "weight": "50", - "bust": "88", - "waist": "60", - "hip": "89" - }, - "event": [ - { - "event_id": 1208, - "event_name": "目指せサンタクロース アイドルチャレンジ" - } - ] - }, - { - "alias_name": "クライムレディ", - "alias_name_display": "クライムレディ", - "id": "2225901", - "hash": "6e339e821d7c05c10d8bde8f6657c7e0", - "profile": { - "height": "172", - "weight": "50", - "bust": "88", - "waist": "60", - "hip": "89" - }, - "event": [ - { - "event_id": 720, - "event_name": "第20回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "クライムレディ", - "alias_name_display": "クライムレディ", - "id": "2325902", - "hash": "cba13f10079f879dc0fe7fb85aec759c", - "profile": { - "height": "172", - "weight": "50", - "bust": "88", - "waist": "60", - "hip": "89" - }, - "event": [ - { - "event_id": 720, - "event_name": "第20回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "湯けむり紀行", - "alias_name_display": "湯けむり紀行", - "id": "2229201", - "hash": "7f23e7d8da712ed26b343f3a1205300f", - "profile": { - "height": "172", - "weight": "50", - "bust": "88", - "waist": "60", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "湯けむり紀行", - "alias_name_display": "湯けむり紀行", - "id": "2329202", - "hash": "737009be0883399fdd76357c6cde4844", - "profile": { - "height": "172", - "weight": "50", - "bust": "88", - "waist": "60", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "ビーチクイーン", - "alias_name_display": "ビーチクイーン", - "id": "2408201", - "hash": "f2a0900bb8db3d317c6177c8b7615909", - "profile": { - "height": "172", - "weight": "50", - "bust": "88", - "waist": "60", - "hip": "89" - }, - "event": [ - { - "event_id": 506, - "event_name": "アイドルLIVEツアーinハワイ" - } - ] - }, - { - "alias_name": "ビーチクイーン", - "alias_name_display": "ビーチクイーン", - "id": "2508202", - "hash": "af080414985fcaca07952697c3fdc545", - "profile": { - "height": "172", - "weight": "50", - "bust": "88", - "waist": "60", - "hip": "89" - }, - "event": [ - { - "event_id": 506, - "event_name": "アイドルLIVEツアーinハワイ" - } - ] - }, - { - "alias_name": "鬼に金棒", - "alias_name_display": "鬼に金棒", - "id": "2421101", - "hash": "e084ffca6cc29cfc0d1e0b2e076bb8a6", - "profile": { - "height": "172", - "weight": "50", - "bust": "88", - "waist": "60", - "hip": "89" - }, - "event": [ - { - "event_id": 711, - "event_name": "福は内DEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "鬼に金棒", - "alias_name_display": "鬼に金棒", - "id": "2521102", - "hash": "83e6f15acc7e6807583c92672c4510d4", - "profile": { - "height": "172", - "weight": "50", - "bust": "88", - "waist": "60", - "hip": "89" - }, - "event": [ - { - "event_id": 711, - "event_name": "福は内DEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "迫真のクリスマス", - "alias_name_display": "迫真のクリスマス", - "id": "2429501", - "hash": "3d81aebd94a339f3bbbd89c7c943abd7", - "profile": { - "height": "172", - "weight": "50", - "bust": "88", - "waist": "60", - "hip": "89" - }, - "event": [ - { - "event_id": 1208, - "event_name": "目指せサンタクロース アイドルチャレンジ" - } - ] - }, - { - "alias_name": "迫真のクリスマス", - "alias_name_display": "迫真のクリスマス", - "id": "2529502", - "hash": "2b867eb7af72b67dd19a753a7a9c4ed3", - "profile": { - "height": "172", - "weight": "50", - "bust": "88", - "waist": "60", - "hip": "89" - }, - "event": [ - { - "event_id": 1208, - "event_name": "目指せサンタクロース アイドルチャレンジ" - } - ] - }, - { - "alias_name": "迫真のクリスマス・S", - "alias_name_display": "迫真のクリスマス・S", - "id": "2429601", - "hash": "894e65f26343e9084f927cc4dbfaaaf7", - "profile": { - "height": "172", - "weight": "50", - "bust": "88", - "waist": "60", - "hip": "89" - }, - "event": [ - { - "event_id": 1208, - "event_name": "目指せサンタクロース アイドルチャレンジ" - } - ] - }, - { - "alias_name": "迫真のクリスマス・S", - "alias_name_display": "迫真のクリスマス・S", - "id": "2529602", - "hash": "d96b8fa22a51830f67d197909f1c7504", - "profile": { - "height": "172", - "weight": "50", - "bust": "88", - "waist": "60", - "hip": "89" - }, - "event": [ - { - "event_id": 1208, - "event_name": "目指せサンタクロース アイドルチャレンジ" - } - ] - }, - { - "alias_name": "ワイルドドライブ", - "alias_name_display": "ワイルドドライブ", - "id": "2440201", - "hash": "31fad952a03ad277fa0e3d059b759afb", - "profile": { - "height": "172", - "weight": "50", - "bust": "88", - "waist": "60", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "ワイルドドライブ", - "alias_name_display": "ワイルドドライブ", - "id": "2540202", - "hash": "a53f598eea9637e74b08e76c96d18d4b", - "profile": { - "height": "172", - "weight": "50", - "bust": "88", - "waist": "60", - "hip": "89" - }, - "event": [] - } - ], - "units": [ - { - "id": "67", - "name": "レディビースト" - }, - { - "id": "101", - "name": "ハロウィンヴァンパイア" - }, - { - "id": "111", - "name": "アンチェイン・シグナル" - }, - { - "id": "117", - "name": "ハードメテオライツ" - } - ] - }, - "84": { - "idol_id": 84, - "idol_name": "藤原肇", - "idol_name_display": "藤原肇", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2001901", - "hash": "50f53b8bae68c432456604aa421dfce9", - "profile": { - "height": "161", - "weight": "43", - "bust": "80", - "waist": "55", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2101902", - "hash": "d7fec18f59ddcee02b344ea8f116fa8e", - "profile": { - "height": "161", - "weight": "43", - "bust": "80", - "waist": "55", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "浴衣祭り", - "alias_name_display": "浴衣祭り", - "id": "2204801", - "hash": "6b322b16eccd479ca9f4da4ca08398d7", - "profile": { - "height": "161", - "weight": "43", - "bust": "80", - "waist": "55", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "浴衣祭り", - "alias_name_display": "浴衣祭り", - "id": "2304802", - "hash": "4ee7b16973889716589be41a7d7c5735", - "profile": { - "height": "161", - "weight": "43", - "bust": "80", - "waist": "55", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "ロワイヤルスタイルNP", - "alias_name_display": "ロワイヤルスタイルNP", - "id": "2219701", - "hash": "f64ea05ba41f018d4c5fc08e4e4e0c10", - "profile": { - "height": "161", - "weight": "43", - "bust": "80", - "waist": "55", - "hip": "84" - }, - "event": [ - { - "event_id": 810, - "event_name": "アイドルLIVEロワイヤル バレンタインSP" - } - ] - }, - { - "alias_name": "ロワイヤルスタイルNP", - "alias_name_display": "ロワイヤルスタイルNP", - "id": "2319702", - "hash": "8bd293a18cfa965757d887665dc383b4", - "profile": { - "height": "161", - "weight": "43", - "bust": "80", - "waist": "55", - "hip": "84" - }, - "event": [ - { - "event_id": 810, - "event_name": "アイドルLIVEロワイヤル バレンタインSP" - } - ] - }, - { - "alias_name": "紅葉温泉", - "alias_name_display": "紅葉温泉", - "id": "2223901", - "hash": "bf005e32b739ebbcd648280ba8050bc1", - "profile": { - "height": "161", - "weight": "43", - "bust": "80", - "waist": "55", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "紅葉温泉", - "alias_name_display": "紅葉温泉", - "id": "2323902", - "hash": "46db0d085f1d31bd2f46f794311f1a74", - "profile": { - "height": "161", - "weight": "43", - "bust": "80", - "waist": "55", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "夢の使者", - "alias_name_display": "夢の使者", - "id": "2403601", - "hash": "bee91878694ccf9ac29f98bf6b4b5a3e", - "profile": { - "height": "161", - "weight": "43", - "bust": "80", - "waist": "55", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "夢の使者", - "alias_name_display": "夢の使者", - "id": "2503602", - "hash": "e523d0a3f90a44554d3702b1320957c5", - "profile": { - "height": "161", - "weight": "43", - "bust": "80", - "waist": "55", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "夜桜小町", - "alias_name_display": "夜桜小町", - "id": "2405801", - "hash": "879e77d88385679197491d5ed4ed7e6f", - "profile": { - "height": "161", - "weight": "43", - "bust": "80", - "waist": "55", - "hip": "84" - }, - "event": [ - { - "event_id": 406, - "event_name": "アイドルプロデュース 春の桜祭り編" - } - ] - }, - { - "alias_name": "夜桜小町", - "alias_name_display": "夜桜小町", - "id": "2505802", - "hash": "5245f9a8bbfc8c00e913bd84078d1947", - "profile": { - "height": "161", - "weight": "43", - "bust": "80", - "waist": "55", - "hip": "84" - }, - "event": [ - { - "event_id": 406, - "event_name": "アイドルプロデュース 春の桜祭り編" - } - ] - }, - { - "alias_name": "憧憬の絵姿", - "alias_name_display": "憧憬の絵姿", - "id": "2409701", - "hash": "979595d903dfaafad36539c8b075f19a", - "profile": { - "height": "161", - "weight": "43", - "bust": "80", - "waist": "55", - "hip": "84" - }, - "event": [ - { - "event_id": 703, - "event_name": "第3回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "憧憬の絵姿", - "alias_name_display": "憧憬の絵姿", - "id": "2509702", - "hash": "3167283ee6e0766c23f79d2b0cdf6de6", - "profile": { - "height": "161", - "weight": "43", - "bust": "80", - "waist": "55", - "hip": "84" - }, - "event": [ - { - "event_id": 703, - "event_name": "第3回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "九天の玄女", - "alias_name_display": "九天の玄女", - "id": "2413801", - "hash": "ad166bff62c60b26fa74b6aa60802a77", - "profile": { - "height": "161", - "weight": "43", - "bust": "80", - "waist": "55", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "九天の玄女", - "alias_name_display": "九天の玄女", - "id": "2513802", - "hash": "0f422ef5edfbb203d4b3f21da7a62f54", - "profile": { - "height": "161", - "weight": "43", - "bust": "80", - "waist": "55", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "新たな色", - "alias_name_display": "新たな色", - "id": "2418501", - "hash": "4c90bd7715d2326f6029a18a181e2785", - "profile": { - "height": "161", - "weight": "43", - "bust": "80", - "waist": "55", - "hip": "84" - }, - "event": [ - { - "event_id": 1302, - "event_name": "第2回プロダクションマッチフェスティバルS" - } - ] - }, - { - "alias_name": "新たな色", - "alias_name_display": "新たな色", - "id": "2518502", - "hash": "15cbf467a5c7933a2ec310761b11be7c", - "profile": { - "height": "161", - "weight": "43", - "bust": "80", - "waist": "55", - "hip": "84" - }, - "event": [ - { - "event_id": 1302, - "event_name": "第2回プロダクションマッチフェスティバルS" - } - ] - }, - { - "alias_name": "小さな息吹", - "alias_name_display": "小さな息吹", - "id": "2425501", - "hash": "fdb92acf167d4c4fab46507c6a8ebc87", - "profile": { - "height": "161", - "weight": "43", - "bust": "80", - "waist": "55", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "小さな息吹", - "alias_name_display": "小さな息吹", - "id": "2525502", - "hash": "517be5a4998a30862dd638566ca6f499", - "profile": { - "height": "161", - "weight": "43", - "bust": "80", - "waist": "55", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "ホワイトジャーニー", - "alias_name_display": "ホワイトジャーニー", - "id": "2431201", - "hash": "67e57c34ab643e525c72ff31317bbe29", - "profile": { - "height": "161", - "weight": "43", - "bust": "80", - "waist": "55", - "hip": "84" - }, - "event": [ - { - "event_id": 1705, - "event_name": "アイドルプロデュース きらめくオーロラ紀行" - } - ] - }, - { - "alias_name": "ホワイトジャーニー", - "alias_name_display": "ホワイトジャーニー", - "id": "2531202", - "hash": "1f2016bdb7310af8adb7149ca0564a23", - "profile": { - "height": "161", - "weight": "43", - "bust": "80", - "waist": "55", - "hip": "84" - }, - "event": [ - { - "event_id": 1705, - "event_name": "アイドルプロデュース きらめくオーロラ紀行" - } - ] - }, - { - "alias_name": "ホワイトジャーニー・S", - "alias_name_display": "ホワイトジャーニー・S", - "id": "2431301", - "hash": "f76606e958186ed0c7abf674357fc6e4", - "profile": { - "height": "161", - "weight": "43", - "bust": "80", - "waist": "55", - "hip": "84" - }, - "event": [ - { - "event_id": 1705, - "event_name": "アイドルプロデュース きらめくオーロラ紀行" - } - ] - }, - { - "alias_name": "ホワイトジャーニー・S", - "alias_name_display": "ホワイトジャーニー・S", - "id": "2531302", - "hash": "017bb5285930bc6789dabf9bd1dde176", - "profile": { - "height": "161", - "weight": "43", - "bust": "80", - "waist": "55", - "hip": "84" - }, - "event": [ - { - "event_id": 1705, - "event_name": "アイドルプロデュース きらめくオーロラ紀行" - } - ] - }, - { - "alias_name": "クワイエット・ズィール", - "alias_name_display": "クワイエット・ズィール", - "id": "2436201", - "hash": "f916a26a64839b6530f579d34dbfd699", - "profile": { - "height": "161", - "weight": "43", - "bust": "80", - "waist": "55", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "クワイエット・ズィール", - "alias_name_display": "クワイエット・ズィール", - "id": "2536202", - "hash": "eb1d57f9b906de305439f9ab26c6cdcf", - "profile": { - "height": "161", - "weight": "43", - "bust": "80", - "waist": "55", - "hip": "84" - }, - "event": [] - } - ], - "units": [ - { - "id": "14", - "name": "月下氷姫" - }, - { - "id": "20", - "name": "山紫水明" - }, - { - "id": "103", - "name": "ビビッドカラーエイジ" - }, - { - "id": "209", - "name": "ロワイヤルスタイルNP" - } - ] - }, - "85": { - "idol_id": 85, - "idol_name": "新田美波", - "idol_name_display": "新田美波", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2002101", - "hash": "2bada7af6dfab066132d050923a513eb", - "profile": { - "height": "165", - "weight": "45", - "bust": "82", - "waist": "55", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2102102", - "hash": "68ed242f80829cdb4072549098177b27", - "profile": { - "height": "165", - "weight": "45", - "bust": "82", - "waist": "55", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "サマーライブ", - "alias_name_display": "サマーライブ", - "id": "2205001", - "hash": "54b6b2bbe68eff5cc0a866562daed5a1", - "profile": { - "height": "165", - "weight": "45", - "bust": "82", - "waist": "55", - "hip": "85" - }, - "event": [ - { - "event_id": 205, - "event_name": "アイドルサバイバルinサマーライブ" - } - ] - }, - { - "alias_name": "サマーライブ", - "alias_name_display": "サマーライブ", - "id": "2305002", - "hash": "a580271bf1d560a89be26d09aca1b669", - "profile": { - "height": "165", - "weight": "45", - "bust": "82", - "waist": "55", - "hip": "85" - }, - "event": [ - { - "event_id": 205, - "event_name": "アイドルサバイバルinサマーライブ" - } - ] - }, - { - "alias_name": "ハイカラサクラ", - "alias_name_display": "ハイカラサクラ", - "id": "2220501", - "hash": "a8ff862d393e2d5dda368de20fb13201", - "profile": { - "height": "165", - "weight": "45", - "bust": "82", - "waist": "55", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ハイカラサクラ", - "alias_name_display": "ハイカラサクラ", - "id": "2320502", - "hash": "1a1fe1f5075423ba48922da4fe12dfe2", - "profile": { - "height": "165", - "weight": "45", - "bust": "82", - "waist": "55", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "スクールプール", - "alias_name_display": "スクールプール", - "id": "2227401", - "hash": "abe0e1d88e1978ae30fb4e6b60451740", - "profile": { - "height": "165", - "weight": "45", - "bust": "82", - "waist": "55", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "スクールプール", - "alias_name_display": "スクールプール", - "id": "2327402", - "hash": "e9d2e494154da1e8f2df3c7fbc2bb7ce", - "profile": { - "height": "165", - "weight": "45", - "bust": "82", - "waist": "55", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "笑顔の女神", - "alias_name_display": "笑顔の女神", - "id": "2404701", - "hash": "a0e0bb81d532da3f17e6cec67286b1f4", - "profile": { - "height": "165", - "weight": "45", - "bust": "82", - "waist": "55", - "hip": "85" - }, - "event": [ - { - "event_id": 404, - "event_name": "新春アイドルプロデュース" - } - ] - }, - { - "alias_name": "笑顔の女神", - "alias_name_display": "笑顔の女神", - "id": "2504702", - "hash": "db67fce1ced5a2e2946e3facbd9abe19", - "profile": { - "height": "165", - "weight": "45", - "bust": "82", - "waist": "55", - "hip": "85" - }, - "event": [ - { - "event_id": 404, - "event_name": "新春アイドルプロデュース" - } - ] - }, - { - "alias_name": "制服の女神", - "alias_name_display": "制服の女神", - "id": "2405901", - "hash": "1009f9985fad285ed98d06fcc23cea57", - "profile": { - "height": "165", - "weight": "45", - "bust": "82", - "waist": "55", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "制服の女神", - "alias_name_display": "制服の女神", - "id": "2505902", - "hash": "906e36ae3310e4ca2451e0d6c4df7b42", - "profile": { - "height": "165", - "weight": "45", - "bust": "82", - "waist": "55", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "2406701", - "hash": "4273df53ba2ef652513e682bd7c7229a", - "profile": { - "height": "165", - "weight": "45", - "bust": "82", - "waist": "55", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "2506702", - "hash": "299fe393f6c7c239a989db503ba3b462", - "profile": { - "height": "165", - "weight": "45", - "bust": "82", - "waist": "55", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "眠れる小悪魔", - "alias_name_display": "眠れる小悪魔", - "id": "2409801", - "hash": "f14e96d527c85980c994a8e0234afb58", - "profile": { - "height": "165", - "weight": "45", - "bust": "82", - "waist": "55", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "眠れる小悪魔", - "alias_name_display": "眠れる小悪魔", - "id": "2509802", - "hash": "0982b1f6992128e2a7a6668b5f306cb7", - "profile": { - "height": "165", - "weight": "45", - "bust": "82", - "waist": "55", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "シンデレラドリーム", - "alias_name_display": "シンデレラドリーム", - "id": "2412501", - "hash": "1da9783f4db2e0d170433ff25e97f064", - "profile": { - "height": "165", - "weight": "45", - "bust": "82", - "waist": "55", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "シンデレラドリーム", - "alias_name_display": "シンデレラドリーム", - "id": "2512502", - "hash": "ed35c60eef3f13be50edee7dfee4523d", - "profile": { - "height": "165", - "weight": "45", - "bust": "82", - "waist": "55", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "レディアントヴィーナス", - "alias_name_display": "レディアントヴィーナス", - "id": "2416901", - "hash": "33d51a091cde3faf6392a9ce3ba46102", - "profile": { - "height": "165", - "weight": "45", - "bust": "82", - "waist": "55", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "レディアントヴィーナス", - "alias_name_display": "レディアントヴィーナス", - "id": "2516902", - "hash": "fe5e70f0df196ae8e84391062564ad33", - "profile": { - "height": "165", - "weight": "45", - "bust": "82", - "waist": "55", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "3rdアニバーサリー", - "alias_name_display": "3rdアニバーサリー", - "id": "2419401", - "hash": "7d83a3bcc9cfc6da0e3f8381c0c3b585", - "profile": { - "height": "165", - "weight": "45", - "bust": "82", - "waist": "55", - "hip": "85" - }, - "event": [ - { - "event_id": 415, - "event_name": "アイドルプロデュース the 3rd Anniversary" - } - ] - }, - { - "alias_name": "3rdアニバーサリー", - "alias_name_display": "3rdアニバーサリー", - "id": "2519402", - "hash": "ce21537c19faa7c7b6ae4b5c8defb324", - "profile": { - "height": "165", - "weight": "45", - "bust": "82", - "waist": "55", - "hip": "85" - }, - "event": [ - { - "event_id": 415, - "event_name": "アイドルプロデュース the 3rd Anniversary" - } - ] - }, - { - "alias_name": "3rdアニバーサリー・S", - "alias_name_display": "3rdアニバーサリー・S", - "id": "2419501", - "hash": "5f5daadbc3fadef1cca713f6e9e05255", - "profile": { - "height": "165", - "weight": "45", - "bust": "82", - "waist": "55", - "hip": "85" - }, - "event": [ - { - "event_id": 415, - "event_name": "アイドルプロデュース the 3rd Anniversary" - } - ] - }, - { - "alias_name": "3rdアニバーサリー・S", - "alias_name_display": "3rdアニバーサリー・S", - "id": "2519502", - "hash": "b20006cdb511c392497e750074e6be96", - "profile": { - "height": "165", - "weight": "45", - "bust": "82", - "waist": "55", - "hip": "85" - }, - "event": [ - { - "event_id": 415, - "event_name": "アイドルプロデュース the 3rd Anniversary" - } - ] - }, - { - "alias_name": "ラブライカ", - "alias_name_display": "ラブライカ", - "id": "2521902", - "hash": "906abd014daf85c1ed5b45f4f9e19c05", - "profile": { - "height": "165", - "weight": "45", - "bust": "82", - "waist": "55", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "アディクティブメイド", - "alias_name_display": "アディクティブメイド", - "id": "2426701", - "hash": "b3a0aede00bbe1146a472828895912dd", - "profile": { - "height": "165", - "weight": "45", - "bust": "82", - "waist": "55", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "アディクティブメイド", - "alias_name_display": "アディクティブメイド", - "id": "2526702", - "hash": "ca97decc65659e09550943d2766e5d3e", - "profile": { - "height": "165", - "weight": "45", - "bust": "82", - "waist": "55", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "スイートグラティチュード", - "alias_name_display": "スイートグラティチュード", - "id": "2438001", - "hash": "b391620fec4da6f7bef081f4823d39ab", - "profile": { - "height": "165", - "weight": "45", - "bust": "82", - "waist": "55", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "スイートグラティチュード", - "alias_name_display": "スイートグラティチュード", - "id": "2538002", - "hash": "05967e0044c4828455e8547b98df1d06", - "profile": { - "height": "165", - "weight": "45", - "bust": "82", - "waist": "55", - "hip": "85" - }, - "event": [] - } - ], - "units": [ - { - "id": "34", - "name": "デア・アウローラ" - }, - { - "id": "78", - "name": "LOVE LAIKA" - }, - { - "id": "93", - "name": "サマーライブセーラー" - }, - { - "id": "145", - "name": "LOVE LAIKA with Rosenburg Engel" - }, - { - "id": "158", - "name": "ハイカラサクラ" - }, - { - "id": "189", - "name": "アインフェリア" - }, - { - "id": "197", - "name": "アズール・ムジカ" - }, - { - "id": "213", - "name": "CINDERELLA PROJECT" - } - ] - }, - "86": { - "idol_id": 86, - "idol_name": "水野翠", - "idol_name_display": "水野翠", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2002201", - "hash": "b72a61e46933108a7e0ecbcd37bcc461", - "profile": { - "height": "164", - "weight": "47", - "bust": "80", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2102202", - "hash": "0a91b0a75ea811b3ea5533fe284cfb38", - "profile": { - "height": "164", - "weight": "47", - "bust": "80", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "純真子女", - "alias_name_display": "純真子女", - "id": "2206101", - "hash": "d5bed54544fc77c024920b06eefcae1c", - "profile": { - "height": "164", - "weight": "47", - "bust": "80", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "純真子女", - "alias_name_display": "純真子女", - "id": "2306102", - "hash": "69d297f1b6fb812bf26843f0d76ff50f", - "profile": { - "height": "164", - "weight": "47", - "bust": "80", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ビーチサイド", - "alias_name_display": "ビーチサイド", - "id": "2216601", - "hash": "0a48ebcb12a416c18d6b1bbac33cee1c", - "profile": { - "height": "164", - "weight": "47", - "bust": "80", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ビーチサイド", - "alias_name_display": "ビーチサイド", - "id": "2316602", - "hash": "b1121186a42a0d42c89ecf10be529b52", - "profile": { - "height": "164", - "weight": "47", - "bust": "80", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "スマートスタイル", - "alias_name_display": "スマートスタイル", - "id": "2323102", - "hash": "197ed6234c6ed8842ff1d7c5ea8aec6b", - "profile": { - "height": "164", - "weight": "47", - "bust": "80", - "waist": "54", - "hip": "81" - }, - "event": [ - { - "event_id": "023", - "event_name": "第23回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "真心の射手", - "alias_name_display": "真心の射手", - "id": "2404001", - "hash": "560834b8207166222b10eb2590a1e099", - "profile": { - "height": "164", - "weight": "47", - "bust": "80", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "真心の射手", - "alias_name_display": "真心の射手", - "id": "2504002", - "hash": "c19da47ce6c5ffd3c89c606af52fe802", - "profile": { - "height": "164", - "weight": "47", - "bust": "80", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "流麗な令嬢", - "alias_name_display": "流麗な令嬢", - "id": "2407901", - "hash": "02f4259ef8e4cfbf3ecaa1d68d99df20", - "profile": { - "height": "164", - "weight": "47", - "bust": "80", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "流麗な令嬢", - "alias_name_display": "流麗な令嬢", - "id": "2507902", - "hash": "9243275ee7e036423573a40b857fdac8", - "profile": { - "height": "164", - "weight": "47", - "bust": "80", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "光彩の華", - "alias_name_display": "光彩の華", - "id": "2419101", - "hash": "f0c170150ebc829334e052ad02f684df", - "profile": { - "height": "164", - "weight": "47", - "bust": "80", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "光彩の華", - "alias_name_display": "光彩の華", - "id": "2519102", - "hash": "9503529972d8ccb6ca6ea419abd1820d", - "profile": { - "height": "164", - "weight": "47", - "bust": "80", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "グルメジャッジメント", - "alias_name_display": "グルメジャッジメント", - "id": "2423901", - "hash": "7a73cd330d410ac8d07b1fd19fbe2ff6", - "profile": { - "height": "164", - "weight": "47", - "bust": "80", - "waist": "54", - "hip": "81" - }, - "event": [ - { - "event_id": 519, - "event_name": "美食公演 女神に捧ぐ御馳走" - } - ] - }, - { - "alias_name": "グルメジャッジメント", - "alias_name_display": "グルメジャッジメント", - "id": "2523902", - "hash": "e07a8e6fc6082559aeb12e34d3fa941a", - "profile": { - "height": "164", - "weight": "47", - "bust": "80", - "waist": "54", - "hip": "81" - }, - "event": [ - { - "event_id": 519, - "event_name": "美食公演 女神に捧ぐ御馳走" - } - ] - }, - { - "alias_name": "ブライト・ロワイヤル", - "alias_name_display": "ブライト・ロワイヤル", - "id": "2432101", - "hash": "b6e88f29f51360f5246ef97d39b3aa9b", - "profile": { - "height": "164", - "weight": "47", - "bust": "80", - "waist": "54", - "hip": "81" - }, - "event": [ - { - "event_id": 817, - "event_name": "アイドルLIVEロワイヤル お花見SP" - } - ] - }, - { - "alias_name": "ブライト・ロワイヤル", - "alias_name_display": "ブライト・ロワイヤル", - "id": "2532102", - "hash": "64be6676bdf303ee26c8b5cf28a04ac1", - "profile": { - "height": "164", - "weight": "47", - "bust": "80", - "waist": "54", - "hip": "81" - }, - "event": [ - { - "event_id": 817, - "event_name": "アイドルLIVEロワイヤル お花見SP" - } - ] - }, - { - "alias_name": "宴のマジストレイト", - "alias_name_display": "宴のマジストレイト", - "id": "2436101", - "hash": "dfaf8718bb2640e34528b866c667312e", - "profile": { - "height": "164", - "weight": "47", - "bust": "80", - "waist": "54", - "hip": "81" - }, - "event": [ - { - "event_id": 820, - "event_name": "第20回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "宴のマジストレイト", - "alias_name_display": "宴のマジストレイト", - "id": "2536102", - "hash": "cff720f0338a7ae16dc936a802809a2f", - "profile": { - "height": "164", - "weight": "47", - "bust": "80", - "waist": "54", - "hip": "81" - }, - "event": [ - { - "event_id": 820, - "event_name": "第20回アイドルLIVEロワイヤル" - } - ] - } - ], - "units": [ - { - "id": "53", - "name": "ブリヤント・ノワール" - }, - { - "id": "207", - "name": "ムーランルージュ" - } - ] - }, - "87": { - "idol_id": 87, - "idol_name": "古澤頼子", - "idol_name_display": "古澤頼子", - "aliases": [ - { - "alias_name": "ムーンライトバニー", - "alias_name_display": "ムーンライトバニー", - "id": "2002401", - "hash": "a93f91d99fbc2f134011e4fdf38e49bb", - "profile": { - "height": "166", - "weight": "45", - "bust": "81", - "waist": "59", - "hip": "83" - }, - "event": [ - { - "event_id": 107, - "event_name": "秋夜のお月見会" - } - ] - }, - { - "alias_name": "ムーンライトバニー", - "alias_name_display": "ムーンライトバニー", - "id": "2102402", - "hash": "0d1b35fad868c671e2d8b58842279076", - "profile": { - "height": "166", - "weight": "45", - "bust": "81", - "waist": "59", - "hip": "83" - }, - "event": [ - { - "event_id": 107, - "event_name": "秋夜のお月見会" - } - ] - }, - { - "alias_name": "幕間のひととき", - "alias_name_display": "幕間のひととき", - "id": "2211201", - "hash": "ce06f399bc842655c0b9ea49fc9cca4a", - "profile": { - "height": "166", - "weight": "45", - "bust": "81", - "waist": "59", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "幕間のひととき", - "alias_name_display": "幕間のひととき", - "id": "2311202", - "hash": "4d843f1c3131ffcda576eb50ac401e06", - "profile": { - "height": "166", - "weight": "45", - "bust": "81", - "waist": "59", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "憩いのひととき", - "alias_name_display": "憩いのひととき", - "id": "2216501", - "hash": "e953b61de50dd7879353f130a39e8cba", - "profile": { - "height": "166", - "weight": "45", - "bust": "81", - "waist": "59", - "hip": "83" - }, - "event": [ - { - "event_id": 707, - "event_name": "第7回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "憩いのひととき", - "alias_name_display": "憩いのひととき", - "id": "2316502", - "hash": "766958eefb94c4c0837e3ae954170467", - "profile": { - "height": "166", - "weight": "45", - "bust": "81", - "waist": "59", - "hip": "83" - }, - "event": [ - { - "event_id": 707, - "event_name": "第7回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ロコガール", - "alias_name_display": "ロコガール", - "id": "2228001", - "hash": "e120bef59049701c084e9bc9f3e90084", - "profile": { - "height": "166", - "weight": "45", - "bust": "81", - "waist": "59", - "hip": "83" - }, - "event": [ - { - "event_id": 1707, - "event_name": "アイドルプロデュース アロハ!常夏の楽園" - } - ] - }, - { - "alias_name": "ロコガール", - "alias_name_display": "ロコガール", - "id": "2328002", - "hash": "50774bacbeae5d09201b91b16f98c262", - "profile": { - "height": "166", - "weight": "45", - "bust": "81", - "waist": "59", - "hip": "83" - }, - "event": [ - { - "event_id": 1707, - "event_name": "アイドルプロデュース アロハ!常夏の楽園" - } - ] - }, - { - "alias_name": "オリ・ロコガール", - "alias_name_display": "オリ・ロコガール", - "id": "2228101", - "hash": "c477e1693bc9e6f1865117ac944cc87b", - "profile": { - "height": "166", - "weight": "45", - "bust": "81", - "waist": "59", - "hip": "83" - }, - "event": [ - { - "event_id": 1707, - "event_name": "アイドルプロデュース アロハ!常夏の楽園" - } - ] - }, - { - "alias_name": "オリ・ロコガール", - "alias_name_display": "オリ・ロコガール", - "id": "2328102", - "hash": "fc3e8210b81af75d60a3ad891c10abfb", - "profile": { - "height": "166", - "weight": "45", - "bust": "81", - "waist": "59", - "hip": "83" - }, - "event": [ - { - "event_id": 1707, - "event_name": "アイドルプロデュース アロハ!常夏の楽園" - } - ] - }, - { - "alias_name": "ロワイヤルスタイルND", - "alias_name_display": "ロワイヤルスタイルND", - "id": "2231101", - "hash": "f862e42981eef571d6420636d5035b46", - "profile": { - "height": "166", - "weight": "45", - "bust": "81", - "waist": "59", - "hip": "83" - }, - "event": [ - { - "event_id": 822, - "event_name": "第22回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ロワイヤルスタイルND", - "alias_name_display": "ロワイヤルスタイルND", - "id": "2331102", - "hash": "5efcadb4c0499c22d70657bc5f2e0609", - "profile": { - "height": "166", - "weight": "45", - "bust": "81", - "waist": "59", - "hip": "83" - }, - "event": [ - { - "event_id": 822, - "event_name": "第22回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "博識子女", - "alias_name_display": "博識子女", - "id": "2400401", - "hash": "23240cbaa429c06b5834dab70e2468db", - "profile": { - "height": "165", - "weight": "45", - "bust": "80", - "waist": "59", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "博識子女", - "alias_name_display": "博識子女", - "id": "2500402", - "hash": "a99c2ef0bb60c2fb792940844c5ce231", - "profile": { - "height": "166", - "weight": "45", - "bust": "81", - "waist": "59", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "クラシカルエレガント", - "alias_name_display": "クラシカルエレガント", - "id": "2421801", - "hash": "4f9408e5e8319f71d87a88be473f9fc5", - "profile": { - "height": "166", - "weight": "45", - "bust": "81", - "waist": "59", - "hip": "83" - }, - "event": [ - { - "event_id": "020", - "event_name": "第20回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "クラシカルエレガント", - "alias_name_display": "クラシカルエレガント", - "id": "2521802", - "hash": "a4df63531be7d6b41ed4a895781be32a", - "profile": { - "height": "166", - "weight": "45", - "bust": "81", - "waist": "59", - "hip": "83" - }, - "event": [ - { - "event_id": "020", - "event_name": "第20回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "未来の風向き", - "alias_name_display": "未来の風向き", - "id": "2430401", - "hash": "63e8236c873d25762b04042fb1cf84e0", - "profile": { - "height": "166", - "weight": "45", - "bust": "81", - "waist": "59", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "未来の風向き", - "alias_name_display": "未来の風向き", - "id": "2530402", - "hash": "0fdb985e97611cb4df916563d6e7a27b", - "profile": { - "height": "166", - "weight": "45", - "bust": "81", - "waist": "59", - "hip": "83" - }, - "event": [] - } - ], - "units": [ - { - "id": "35", - "name": "ディテクティブヴァーサス" - }, - { - "id": "210", - "name": "ロワイヤルスタイルND" - } - ] - }, - "88": { - "idol_id": 88, - "idol_name": "橘ありす", - "idol_name_display": "橘ありす", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2002501", - "hash": "4712d374c30554718ed4dcafc5edfd1c", - "profile": { - "height": "141", - "weight": "34", - "bust": "68", - "waist": "52", - "hip": "67" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2102502", - "hash": "e7fd238953443b47d44bc0286af52fdc", - "profile": { - "height": "141", - "weight": "34", - "bust": "68", - "waist": "52", - "hip": "67" - }, - "event": [] - }, - { - "alias_name": "ジューンブライド", - "alias_name_display": "ジューンブライド", - "id": "2210401", - "hash": "83367926ad9733a555d3b86da3460ecd", - "profile": { - "height": "141", - "weight": "34", - "bust": "68", - "waist": "52", - "hip": "67" - }, - "event": [] - }, - { - "alias_name": "ジューンブライド", - "alias_name_display": "ジューンブライド", - "id": "2310402", - "hash": "499395a4c349f7e9c6ba022ec748290e", - "profile": { - "height": "141", - "weight": "34", - "bust": "68", - "waist": "52", - "hip": "67" - }, - "event": [] - }, - { - "alias_name": "マーチングバンド", - "alias_name_display": "マーチングバンド", - "id": "2216301", - "hash": "929f0e7a77f38b0f931453c9fa0625e0", - "profile": { - "height": "141", - "weight": "34", - "bust": "68", - "waist": "52", - "hip": "67" - }, - "event": [] - }, - { - "alias_name": "マーチングバンド", - "alias_name_display": "マーチングバンド", - "id": "2316302", - "hash": "83cf1de1cf5f82a9c2619cbcf6ba9e76", - "profile": { - "height": "141", - "weight": "34", - "bust": "68", - "waist": "52", - "hip": "67" - }, - "event": [] - }, - { - "alias_name": "小さな妖精", - "alias_name_display": "小さな妖精", - "id": "2405401", - "hash": "75e8d17c795363782be0abbd2e7cb34d", - "profile": { - "height": "141", - "weight": "34", - "bust": "68", - "waist": "52", - "hip": "67" - }, - "event": [ - { - "event_id": "008", - "event_name": "第8回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "小さな妖精", - "alias_name_display": "小さな妖精", - "id": "2505402", - "hash": "9b68a0c0aad45fc4de9e74efb4c2d359", - "profile": { - "height": "141", - "weight": "34", - "bust": "68", - "waist": "52", - "hip": "67" - }, - "event": [ - { - "event_id": "008", - "event_name": "第8回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "ストロベリーチャレンジ", - "alias_name_display": "ストロベリーチャレンジ", - "id": "2409201", - "hash": "113455b137b7d4af1dd75f60e1d937d9", - "profile": { - "height": "141", - "weight": "34", - "bust": "68", - "waist": "52", - "hip": "67" - }, - "event": [ - { - "event_id": 409, - "event_name": "アイドルプロデュース チャレンジクッキング イタリアン編" - } - ] - }, - { - "alias_name": "ストロベリーチャレンジ", - "alias_name_display": "ストロベリーチャレンジ", - "id": "2509202", - "hash": "9cb0324f6f2e51e41510e4681c3c2dcf", - "profile": { - "height": "141", - "weight": "34", - "bust": "68", - "waist": "52", - "hip": "67" - }, - "event": [ - { - "event_id": 409, - "event_name": "アイドルプロデュース チャレンジクッキング イタリアン編" - } - ] - }, - { - "alias_name": "ストロベリー・スマイル", - "alias_name_display": "ストロベリー・スマイル", - "id": "2409301", - "hash": "09eb6357231c0ad505269065dd5f469e", - "profile": { - "height": "141", - "weight": "34", - "bust": "68", - "waist": "52", - "hip": "67" - }, - "event": [ - { - "event_id": 409, - "event_name": "アイドルプロデュース チャレンジクッキング イタリアン編" - } - ] - }, - { - "alias_name": "ストロベリー・スマイル", - "alias_name_display": "ストロベリー・スマイル", - "id": "2509302", - "hash": "312fba03b9b1fa9da6bc1ca66a87aa35", - "profile": { - "height": "141", - "weight": "34", - "bust": "68", - "waist": "52", - "hip": "67" - }, - "event": [ - { - "event_id": 409, - "event_name": "アイドルプロデュース チャレンジクッキング イタリアン編" - } - ] - }, - { - "alias_name": "夢見る妖精", - "alias_name_display": "夢見る妖精", - "id": "2417601", - "hash": "6404bdcf1fde67a168754b53d26bf98b", - "profile": { - "height": "141", - "weight": "34", - "bust": "68", - "waist": "52", - "hip": "67" - }, - "event": [ - { - "event_id": 1105, - "event_name": "第5回プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "夢見る妖精", - "alias_name_display": "夢見る妖精", - "id": "2517602", - "hash": "0e9b883a9b56ff98281ed61f9871e298", - "profile": { - "height": "141", - "weight": "34", - "bust": "68", - "waist": "52", - "hip": "67" - }, - "event": [ - { - "event_id": 1105, - "event_name": "第5回プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "今日だけの告白", - "alias_name_display": "今日だけの告白", - "id": "2421701", - "hash": "d518b52022b6db64879b5f1153990a0a", - "profile": { - "height": "141", - "weight": "34", - "bust": "68", - "waist": "52", - "hip": "67" - }, - "event": [] - }, - { - "alias_name": "今日だけの告白", - "alias_name_display": "今日だけの告白", - "id": "2521702", - "hash": "f8ae27e268a4708fcc2ad84da0ff47fa", - "profile": { - "height": "141", - "weight": "34", - "bust": "68", - "waist": "52", - "hip": "67" - }, - "event": [] - }, - { - "alias_name": "夏宵の記憶", - "alias_name_display": "夏宵の記憶", - "id": "2425201", - "hash": "60b3bdf29948bf80b9ab4e6e93fe6c2a", - "profile": { - "height": "141", - "weight": "34", - "bust": "68", - "waist": "52", - "hip": "67" - }, - "event": [ - { - "event_id": 714, - "event_name": "夏祭りDEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "夏宵の記憶", - "alias_name_display": "夏宵の記憶", - "id": "2525202", - "hash": "45d500ed4651e7b65d3f222cbe4285e4", - "profile": { - "height": "141", - "weight": "34", - "bust": "68", - "waist": "52", - "hip": "67" - }, - "event": [ - { - "event_id": 714, - "event_name": "夏祭りDEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "2428401", - "hash": "236415897f28c0017593bed0bb0cc583", - "profile": { - "height": "141", - "weight": "34", - "bust": "68", - "waist": "52", - "hip": "67" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "2528402", - "hash": "771bc083c125b56ee8a4d44cc15368a1", - "profile": { - "height": "141", - "weight": "34", - "bust": "68", - "waist": "52", - "hip": "67" - }, - "event": [] - }, - { - "alias_name": "聖夜の願い", - "alias_name_display": "聖夜の願い", - "id": "2429201", - "hash": "62655a7717c27b92b531b9ac9b78b502", - "profile": { - "height": "141", - "weight": "34", - "bust": "68", - "waist": "52", - "hip": "67" - }, - "event": [] - }, - { - "alias_name": "聖夜の願い", - "alias_name_display": "聖夜の願い", - "id": "2529202", - "hash": "50d5232b15631b34fa082829882e26d6", - "profile": { - "height": "141", - "weight": "34", - "bust": "68", - "waist": "52", - "hip": "67" - }, - "event": [] - }, - { - "alias_name": "ひかりの創り手", - "alias_name_display": "ひかりの創り手", - "id": "2433401", - "hash": "69c24144c925ad86e1c405c9ca8c6240", - "profile": { - "height": "141", - "weight": "34", - "bust": "68", - "waist": "52", - "hip": "67" - }, - "event": [] - }, - { - "alias_name": "ひかりの創り手", - "alias_name_display": "ひかりの創り手", - "id": "2533402", - "hash": "405d2d25977932dbb393803b6f5a37d9", - "profile": { - "height": "141", - "weight": "34", - "bust": "68", - "waist": "52", - "hip": "67" - }, - "event": [] - }, - { - "alias_name": "賢者の翼", - "alias_name_display": "賢者の翼", - "id": "2439101", - "hash": "ba20403f63fe0861d9a8a47126a91955", - "profile": { - "height": "141", - "weight": "34", - "bust": "68", - "waist": "52", - "hip": "67" - }, - "event": [] - }, - { - "alias_name": "賢者の翼", - "alias_name_display": "賢者の翼", - "id": "2539102", - "hash": "abfa3a0acdc184e3339b139c308eef21", - "profile": { - "height": "141", - "weight": "34", - "bust": "68", - "waist": "52", - "hip": "67" - }, - "event": [] - } - ], - "units": [ - { - "id": "61", - "name": "ももべりー" - }, - { - "id": "66", - "name": "レッドベリィズ" - }, - { - "id": "96", - "name": "チャレンジクッキング" - }, - { - "id": "104", - "name": "ももぺあべりー" - }, - { - "id": "189", - "name": "アインフェリア" - }, - { - "id": "200", - "name": "CAERULA" - }, - { - "id": "214", - "name": "L.M.B.G" - }, - { - "id": "215", - "name": "Project:Krone" - } - ] - }, - "89": { - "idol_id": 89, - "idol_name": "鷺沢文香", - "idol_name_display": "鷺沢文香", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2002601", - "hash": "cf0f5af872286b4401c644ad570b1401", - "profile": { - "height": "162", - "weight": "45", - "bust": "84", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2102602", - "hash": "7e5915c0369bb67f9240d3b0a501a2e5", - "profile": { - "height": "162", - "weight": "45", - "bust": "84", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "新たな一歩", - "alias_name_display": "新たな一歩", - "id": "2212001", - "hash": "ced7d4f37c325fd9e001d90e359b17b1", - "profile": { - "height": "162", - "weight": "45", - "bust": "84", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "新たな一歩", - "alias_name_display": "新たな一歩", - "id": "2312002", - "hash": "b6d1d6f360b6bc3660dc54fbc3fe7df0", - "profile": { - "height": "162", - "weight": "45", - "bust": "84", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "紙背の想い人", - "alias_name_display": "紙背の想い人", - "id": "2412001", - "hash": "ce511e82689c364d20fec5608adc6cf3", - "profile": { - "height": "162", - "weight": "45", - "bust": "84", - "waist": "54", - "hip": "81" - }, - "event": [ - { - "event_id": 705, - "event_name": "第5回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "紙背の想い人", - "alias_name_display": "紙背の想い人", - "id": "2512002", - "hash": "5a726b8a757f4b8cf9119dfa675816b5", - "profile": { - "height": "162", - "weight": "45", - "bust": "84", - "waist": "54", - "hip": "81" - }, - "event": [ - { - "event_id": 705, - "event_name": "第5回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "紺碧の境界", - "alias_name_display": "紺碧の境界", - "id": "2416501", - "hash": "96b6a60c3303906015d4032211e4b079", - "profile": { - "height": "162", - "weight": "45", - "bust": "84", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "紺碧の境界", - "alias_name_display": "紺碧の境界", - "id": "2516502", - "hash": "ea4fe8c4505af919b7191de04b281b93", - "profile": { - "height": "162", - "weight": "45", - "bust": "84", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "一瞬の誘惑", - "alias_name_display": "一瞬の誘惑", - "id": "2421201", - "hash": "1106c281db2655156a8e08432d9ab567", - "profile": { - "height": "162", - "weight": "45", - "bust": "84", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "一瞬の誘惑", - "alias_name_display": "一瞬の誘惑", - "id": "2521202", - "hash": "d6cce24ee78944325364cd30bd20fdf5", - "profile": { - "height": "162", - "weight": "45", - "bust": "84", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "2421301", - "hash": "8e7cde57106b127e4b8fc0970cb6d65d", - "profile": { - "height": "162", - "weight": "45", - "bust": "84", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "2521302", - "hash": "5f4cadb282c332c2de83ff248ce9bb37", - "profile": { - "height": "162", - "weight": "45", - "bust": "84", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "美粧の煌めき", - "alias_name_display": "美粧の煌めき", - "id": "2431101", - "hash": "a883d6a1227bd31f1677b3b616b2c285", - "profile": { - "height": "162", - "weight": "45", - "bust": "84", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "美粧の煌めき", - "alias_name_display": "美粧の煌めき", - "id": "2531102", - "hash": "f9bd60aeeb955a43395e2383c6cde17f", - "profile": { - "height": "162", - "weight": "45", - "bust": "84", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "幽玄の馨香", - "alias_name_display": "幽玄の馨香", - "id": "2434001", - "hash": "fd0a7dfded17e71db2b50a36b4fbfd59", - "profile": { - "height": "162", - "weight": "45", - "bust": "84", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "幽玄の馨香", - "alias_name_display": "幽玄の馨香", - "id": "2534002", - "hash": "1070f27d097b076cfb92c9f35232b43e", - "profile": { - "height": "162", - "weight": "45", - "bust": "84", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "5thアニバーサリー", - "alias_name_display": "5thアニバーサリー", - "id": "2436301", - "hash": "6e063bdc942ad4b54e2bbca4a78c8954", - "profile": { - "height": "162", - "weight": "45", - "bust": "84", - "waist": "54", - "hip": "81" - }, - "event": [ - { - "event_id": 1708, - "event_name": "アイドルプロデュース the 5th Anniversary" - } - ] - }, - { - "alias_name": "5thアニバーサリー", - "alias_name_display": "5thアニバーサリー", - "id": "2536302", - "hash": "9da100987158cfe8ebba9397d3a982a5", - "profile": { - "height": "162", - "weight": "45", - "bust": "84", - "waist": "54", - "hip": "81" - }, - "event": [ - { - "event_id": 1708, - "event_name": "アイドルプロデュース the 5th Anniversary" - } - ] - }, - { - "alias_name": "5thアニバーサリー・S", - "alias_name_display": "5thアニバーサリー・S", - "id": "2436401", - "hash": "611fb0f2780409db7dd4c429850216dd", - "profile": { - "height": "162", - "weight": "45", - "bust": "84", - "waist": "54", - "hip": "81" - }, - "event": [ - { - "event_id": 1708, - "event_name": "アイドルプロデュース the 5th Anniversary" - } - ] - }, - { - "alias_name": "5thアニバーサリー・S", - "alias_name_display": "5thアニバーサリー・S", - "id": "2536402", - "hash": "bd02113f22c12494c713a43bcc0c8e90", - "profile": { - "height": "162", - "weight": "45", - "bust": "84", - "waist": "54", - "hip": "81" - }, - "event": [ - { - "event_id": 1708, - "event_name": "アイドルプロデュース the 5th Anniversary" - } - ] - } - ], - "units": [ - { - "id": "14", - "name": "月下氷姫" - }, - { - "id": "141", - "name": "トランクィル・ウィスパー" - }, - { - "id": "189", - "name": "アインフェリア" - }, - { - "id": "200", - "name": "CAERULA" - }, - { - "id": "215", - "name": "Project:Krone" - } - ] - }, - "90": { - "idol_id": 90, - "idol_name": "八神マキノ", - "idol_name_display": "八神マキノ", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2002701", - "hash": "3ae96bc5997dd574e80cdcac87d694c2", - "profile": { - "height": "160", - "weight": "45", - "bust": "85", - "waist": "56", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2102702", - "hash": "27510dbd766f2e9408fb6b05d91764a1", - "profile": { - "height": "160", - "weight": "45", - "bust": "85", - "waist": "56", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "スポーティスタイル", - "alias_name_display": "スポーティスタイル", - "id": "2212401", - "hash": "62bcced9a07ecf9df301f5c2b4e105bf", - "profile": { - "height": "160", - "weight": "45", - "bust": "85", - "waist": "56", - "hip": "83" - }, - "event": [ - { - "event_id": 212, - "event_name": "アイドルサバイバル 秋の大運動会" - } - ] - }, - { - "alias_name": "スポーティスタイル", - "alias_name_display": "スポーティスタイル", - "id": "2312402", - "hash": "acb305526999e1b7c54b53323f668bb8", - "profile": { - "height": "160", - "weight": "45", - "bust": "85", - "waist": "56", - "hip": "83" - }, - "event": [ - { - "event_id": 212, - "event_name": "アイドルサバイバル 秋の大運動会" - } - ] - }, - { - "alias_name": "学園の生徒", - "alias_name_display": "学園の生徒", - "id": "2215401", - "hash": "3043e305efbdf3ff8342c59044ee665c", - "profile": { - "height": "160", - "weight": "45", - "bust": "85", - "waist": "56", - "hip": "83" - }, - "event": [ - { - "event_id": 412, - "event_name": "聖靴学園の七不思議" - } - ] - }, - { - "alias_name": "学園の生徒", - "alias_name_display": "学園の生徒", - "id": "2315402", - "hash": "4c4c56b98f1f364f93fe0216268d1660", - "profile": { - "height": "160", - "weight": "45", - "bust": "85", - "waist": "56", - "hip": "83" - }, - "event": [ - { - "event_id": 412, - "event_name": "聖靴学園の七不思議" - } - ] - }, - { - "alias_name": "学園の生徒・H", - "alias_name_display": "学園の生徒・H", - "id": "2215501", - "hash": "a406823b39606adb4354565b01bff9fa", - "profile": { - "height": "160", - "weight": "45", - "bust": "85", - "waist": "56", - "hip": "83" - }, - "event": [ - { - "event_id": 412, - "event_name": "聖靴学園の七不思議" - } - ] - }, - { - "alias_name": "学園の生徒・H", - "alias_name_display": "学園の生徒・H", - "id": "2315502", - "hash": "5a21f9f09b9988b7515d8f47bc9e2359", - "profile": { - "height": "160", - "weight": "45", - "bust": "85", - "waist": "56", - "hip": "83" - }, - "event": [ - { - "event_id": 412, - "event_name": "聖靴学園の七不思議" - } - ] - }, - { - "alias_name": "秋色温泉", - "alias_name_display": "秋色温泉", - "id": "2218601", - "hash": "b3791226c1a2f96b7cba3a7df7e652ee", - "profile": { - "height": "160", - "weight": "45", - "bust": "85", - "waist": "56", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "秋色温泉", - "alias_name_display": "秋色温泉", - "id": "2318602", - "hash": "bfe83ddb2201ea21bafb1abb53946e55", - "profile": { - "height": "160", - "weight": "45", - "bust": "85", - "waist": "56", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "ロワイヤルスタイルND", - "alias_name_display": "ロワイヤルスタイルND", - "id": "2227201", - "hash": "5237b11dced2bb4f4e34ce15ba3f584c", - "profile": { - "height": "160", - "weight": "45", - "bust": "85", - "waist": "56", - "hip": "83" - }, - "event": [ - { - "event_id": 818, - "event_name": "アイドルLIVEロワイヤル 雨の日SP" - } - ] - }, - { - "alias_name": "ロワイヤルスタイルND", - "alias_name_display": "ロワイヤルスタイルND", - "id": "2327202", - "hash": "9ba2e2f6ffa97f877ba9e7ed81fa0e3d", - "profile": { - "height": "160", - "weight": "45", - "bust": "85", - "waist": "56", - "hip": "83" - }, - "event": [ - { - "event_id": 818, - "event_name": "アイドルLIVEロワイヤル 雨の日SP" - } - ] - }, - { - "alias_name": "ワイルドフレンズ", - "alias_name_display": "ワイルドフレンズ", - "id": "2231501", - "hash": "85b14867dbae15eda96607c230a961f1", - "profile": { - "height": "160", - "weight": "45", - "bust": "85", - "waist": "56", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "ワイルドフレンズ", - "alias_name_display": "ワイルドフレンズ", - "id": "2331502", - "hash": "8c23ba46ce84b6f62c65bfc36b35bae3", - "profile": { - "height": "160", - "weight": "45", - "bust": "85", - "waist": "56", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "シークレットナイト", - "alias_name_display": "シークレットナイト", - "id": "2411801", - "hash": "a7b45e7ba33a0c677cc254a7ea905032", - "profile": { - "height": "160", - "weight": "45", - "bust": "85", - "waist": "56", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "シークレットナイト", - "alias_name_display": "シークレットナイト", - "id": "2511802", - "hash": "a1c20f3bdb91545ae7d704e5be568d0a", - "profile": { - "height": "160", - "weight": "45", - "bust": "85", - "waist": "56", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "ハイ・リベレーション", - "alias_name_display": "ハイ・リベレーション", - "id": "2422901", - "hash": "f7ced8439833097f85a863260ccf10aa", - "profile": { - "height": "160", - "weight": "45", - "bust": "85", - "waist": "56", - "hip": "83" - }, - "event": [ - { - "event_id": 811, - "event_name": "第11回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ハイ・リベレーション", - "alias_name_display": "ハイ・リベレーション", - "id": "2522902", - "hash": "ca04cfd1a0a7a89bb9890e61953e5623", - "profile": { - "height": "160", - "weight": "45", - "bust": "85", - "waist": "56", - "hip": "83" - }, - "event": [ - { - "event_id": 811, - "event_name": "第11回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "静寂のひととき", - "alias_name_display": "静寂のひととき", - "id": "2428001", - "hash": "0af6c0578c3277b6cb7f183ae9cbb267", - "profile": { - "height": "160", - "weight": "45", - "bust": "85", - "waist": "56", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "静寂のひととき", - "alias_name_display": "静寂のひととき", - "id": "2528002", - "hash": "615b301570633d1f4eeb36d15fa9c890", - "profile": { - "height": "160", - "weight": "45", - "bust": "85", - "waist": "56", - "hip": "83" - }, - "event": [] - } - ], - "units": [ - { - "id": "143", - "name": "ファタ・モルガーナ" - }, - { - "id": "154", - "name": "秋色温泉" - }, - { - "id": "210", - "name": "ロワイヤルスタイルND" - } - ] - }, - "91": { - "idol_id": 91, - "idol_name": "ライラ", - "idol_name_display": "ライラ", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2002801", - "hash": "3fd787fa963d607b8b8a5686e59f5b29", - "profile": { - "height": "150", - "weight": "40", - "bust": "75", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2102802", - "hash": "a7890d1785a7965cbf8fbb305cba821a", - "profile": { - "height": "150", - "weight": "40", - "bust": "75", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "ニューイヤースタイル", - "alias_name_display": "ニューイヤースタイル", - "id": "2213601", - "hash": "51c0525ec41be4004e36833ae561a3c8", - "profile": { - "height": "150", - "weight": "40", - "bust": "75", - "waist": "54", - "hip": "78" - }, - "event": [ - { - "event_id": 509, - "event_name": "新春LIVEツアーカーニバル" - } - ] - }, - { - "alias_name": "ニューイヤースタイル", - "alias_name_display": "ニューイヤースタイル", - "id": "2313602", - "hash": "aeac456b247d2e9074034bcd6b3a8aff", - "profile": { - "height": "150", - "weight": "40", - "bust": "75", - "waist": "54", - "hip": "78" - }, - "event": [ - { - "event_id": 509, - "event_name": "新春LIVEツアーカーニバル" - } - ] - }, - { - "alias_name": "ロックI.C", - "alias_name_display": "ロックI.C", - "id": "2316902", - "hash": "6f8adbc17fd343e56d1bc5fe47bb72de", - "profile": { - "height": "150", - "weight": "40", - "bust": "75", - "waist": "54", - "hip": "78" - }, - "event": [ - { - "event_id": 1202, - "event_name": "目指せロックスター アイドルチャレンジ" - } - ] - }, - { - "alias_name": "クリスマスプレゼント", - "alias_name_display": "クリスマスプレゼント", - "id": "2219001", - "hash": "96ac982bc7ce504882361acfcefae89c", - "profile": { - "height": "150", - "weight": "40", - "bust": "75", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "クリスマスプレゼント", - "alias_name_display": "クリスマスプレゼント", - "id": "2319002", - "hash": "caf416dcfcab3698f017ed2b1de72c43", - "profile": { - "height": "150", - "weight": "40", - "bust": "75", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "ナチュラルハート", - "alias_name_display": "ナチュラルハート", - "id": "2225801", - "hash": "a17821cdbc53f0db2717bbe7e45e74c4", - "profile": { - "height": "150", - "weight": "40", - "bust": "75", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "ナチュラルハート", - "alias_name_display": "ナチュラルハート", - "id": "2325802", - "hash": "12bf848ee659aa5553744ee513f0e8b7", - "profile": { - "height": "150", - "weight": "40", - "bust": "75", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "ミステリアスシエラザード", - "alias_name_display": "ミステリアスシエラザード", - "id": "2413401", - "hash": "d3fc8f9b8afc44254988cc535a1264b1", - "profile": { - "height": "150", - "weight": "40", - "bust": "75", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "ミステリアスシエラザード", - "alias_name_display": "ミステリアスシエラザード", - "id": "2513402", - "hash": "3060ec3d09520102c7f6b50765d784d4", - "profile": { - "height": "150", - "weight": "40", - "bust": "75", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "ガールズロッカー", - "alias_name_display": "ガールズロッカー", - "id": "2416301", - "hash": "f26ef223586e5490260270a39bb5fa31", - "profile": { - "height": "150", - "weight": "40", - "bust": "75", - "waist": "54", - "hip": "78" - }, - "event": [ - { - "event_id": 1202, - "event_name": "目指せロックスター アイドルチャレンジ" - } - ] - }, - { - "alias_name": "ガールズロッカー", - "alias_name_display": "ガールズロッカー", - "id": "2516302", - "hash": "980400c2b1acc1508f6d67e7ac6d1f6e", - "profile": { - "height": "150", - "weight": "40", - "bust": "75", - "waist": "54", - "hip": "78" - }, - "event": [ - { - "event_id": 1202, - "event_name": "目指せロックスター アイドルチャレンジ" - } - ] - }, - { - "alias_name": "ガールズロッカー・S", - "alias_name_display": "ガールズロッカー・S", - "id": "2416401", - "hash": "8dc670968a6e919d6dce89641929090f", - "profile": { - "height": "150", - "weight": "40", - "bust": "75", - "waist": "54", - "hip": "78" - }, - "event": [ - { - "event_id": 1202, - "event_name": "目指せロックスター アイドルチャレンジ" - } - ] - }, - { - "alias_name": "ガールズロッカー・S", - "alias_name_display": "ガールズロッカー・S", - "id": "2516402", - "hash": "e57ab2575397046065c160f0d2c53cbb", - "profile": { - "height": "150", - "weight": "40", - "bust": "75", - "waist": "54", - "hip": "78" - }, - "event": [ - { - "event_id": 1202, - "event_name": "目指せロックスター アイドルチャレンジ" - } - ] - }, - { - "alias_name": "みんなとキャンプ", - "alias_name_display": "みんなとキャンプ", - "id": "2423601", - "hash": "4affe65c63072cef2dc3890af05eba67", - "profile": { - "height": "150", - "weight": "40", - "bust": "75", - "waist": "54", - "hip": "78" - }, - "event": [ - { - "event_id": 1701, - "event_name": "アイドルプロデュース はじめてのキャンプ" - } - ] - }, - { - "alias_name": "みんなとキャンプ", - "alias_name_display": "みんなとキャンプ", - "id": "2523602", - "hash": "a122383313a4c8d66d98ea71f6505a26", - "profile": { - "height": "150", - "weight": "40", - "bust": "75", - "waist": "54", - "hip": "78" - }, - "event": [ - { - "event_id": 1701, - "event_name": "アイドルプロデュース はじめてのキャンプ" - } - ] - }, - { - "alias_name": "うれしいキャンプ", - "alias_name_display": "うれしいキャンプ", - "id": "2423701", - "hash": "c8c7f7f51c1fc53cd47bd499b0c9b05c", - "profile": { - "height": "150", - "weight": "40", - "bust": "75", - "waist": "54", - "hip": "78" - }, - "event": [ - { - "event_id": 1701, - "event_name": "アイドルプロデュース はじめてのキャンプ" - } - ] - }, - { - "alias_name": "うれしいキャンプ", - "alias_name_display": "うれしいキャンプ", - "id": "2523702", - "hash": "74ec8a61bbb3c3b2d031f676d1287cf4", - "profile": { - "height": "150", - "weight": "40", - "bust": "75", - "waist": "54", - "hip": "78" - }, - "event": [ - { - "event_id": 1701, - "event_name": "アイドルプロデュース はじめてのキャンプ" - } - ] - }, - { - "alias_name": "寂寥のアズラク", - "alias_name_display": "寂寥のアズラク", - "id": "2427501", - "hash": "e01c7d5a98d641813f37d6598a51e0c4", - "profile": { - "height": "150", - "weight": "40", - "bust": "75", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "寂寥のアズラク", - "alias_name_display": "寂寥のアズラク", - "id": "2527502", - "hash": "9960752141b9ff3b336b4a990351dfb0", - "profile": { - "height": "150", - "weight": "40", - "bust": "75", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "太陽の歌姫", - "alias_name_display": "太陽の歌姫", - "id": "2433301", - "hash": "fa9965fce6b39f63942891b5f91b323b", - "profile": { - "height": "150", - "weight": "40", - "bust": "75", - "waist": "54", - "hip": "78" - }, - "event": [ - { - "event_id": "029", - "event_name": "第29回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "太陽の歌姫", - "alias_name_display": "太陽の歌姫", - "id": "2533302", - "hash": "c938a92ffa13dbb1932456bec25bef1e", - "profile": { - "height": "150", - "weight": "40", - "bust": "75", - "waist": "54", - "hip": "78" - }, - "event": [ - { - "event_id": "029", - "event_name": "第29回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "デザートマミー", - "alias_name_display": "デザートマミー", - "id": "2437601", - "hash": "c05efe35b1a2bbf741f9ca90818585c2", - "profile": { - "height": "150", - "weight": "40", - "bust": "75", - "waist": "54", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "デザートマミー", - "alias_name_display": "デザートマミー", - "id": "2537602", - "hash": "d5736287d3ece82c8ab060128aeceaeb", - "profile": { - "height": "150", - "weight": "40", - "bust": "75", - "waist": "54", - "hip": "78" - }, - "event": [] - } - ], - "units": [ - { - "id": "31", - "name": "ソル・カマル" - }, - { - "id": "68", - "name": "ロボフレンズ" - }, - { - "id": "98", - "name": "ニューイヤースタイル" - }, - { - "id": "169", - "name": "FOUR PIECE" - } - ] - }, - "92": { - "idol_id": 92, - "idol_name": "浅利七海", - "idol_name_display": "浅利七海", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2002901", - "hash": "fbd7e64d96b438e45db27f0392b08a06", - "profile": { - "height": "151", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2102902", - "hash": "5395fd824474ffe5d08eb56efafccff0", - "profile": { - "height": "151", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "ワーキング・シー", - "alias_name_display": "ワーキング・シー", - "id": "2215601", - "hash": "634592fc7441fccfaa2653bda666460e", - "profile": { - "height": "151", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "ワーキング・シー", - "alias_name_display": "ワーキング・シー", - "id": "2315602", - "hash": "f078bb2a8d09c75f4ae06e3a659f814c", - "profile": { - "height": "151", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "ナイトパーティー", - "alias_name_display": "ナイトパーティー", - "id": "2220201", - "hash": "6960c9142018589d4bb627b688e7581f", - "profile": { - "height": "151", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "ナイトパーティー", - "alias_name_display": "ナイトパーティー", - "id": "2320202", - "hash": "d59a5d065863cd6c391532b32cb33433", - "profile": { - "height": "151", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "エンゼルフィッシュ", - "alias_name_display": "エンゼルフィッシュ", - "id": "2223701", - "hash": "8026b66e97fce87009b127ea8e4f5638", - "profile": { - "height": "151", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "エンゼルフィッシュ", - "alias_name_display": "エンゼルフィッシュ", - "id": "2323702", - "hash": "a5a7eac755571cf89d6e63834a41c2b2", - "profile": { - "height": "151", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "バレンタインI.C", - "alias_name_display": "バレンタインI.C", - "id": "2325002", - "hash": "521e105840ac8d626c9a5e3f05f3b20c", - "profile": { - "height": "151", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [ - { - "event_id": 1209, - "event_name": "アイドルチャレンジ チャレンジクッキング バレンタイン編" - } - ] - }, - { - "alias_name": "ぴちぴちショコラティエ", - "alias_name_display": "ぴちぴちショコラティエ", - "id": "2330402", - "hash": "3714561ec869554fdc672d9c792f71fe", - "profile": { - "height": "151", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [ - { - "event_id": 1906, - "event_name": "ディアリースターハート ~ラブキュンバレンタイン~" - } - ] - }, - { - "alias_name": "シーサイドチアー", - "alias_name_display": "シーサイドチアー", - "id": "2416601", - "hash": "71d62a972ec5e1ed2959e6ce43c9b60c", - "profile": { - "height": "151", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [ - { - "event_id": 1104, - "event_name": "プロダクション対抗トークバトルショーinSUMMER" - } - ] - }, - { - "alias_name": "シーサイドチアー", - "alias_name_display": "シーサイドチアー", - "id": "2516602", - "hash": "64691a86814fdcf3818572ed7a67fbcf", - "profile": { - "height": "151", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [ - { - "event_id": 1104, - "event_name": "プロダクション対抗トークバトルショーinSUMMER" - } - ] - }, - { - "alias_name": "いきものがかり", - "alias_name_display": "いきものがかり", - "id": "2424901", - "hash": "9bc92b6f7e0699258e78f8cad8449778", - "profile": { - "height": "151", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [ - { - "event_id": "022", - "event_name": "第22回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "いきものがかり", - "alias_name_display": "いきものがかり", - "id": "2524902", - "hash": "e86688b7a544dfa38a8b1f939061162d", - "profile": { - "height": "151", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [ - { - "event_id": "022", - "event_name": "第22回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "るんるんクッキング", - "alias_name_display": "るんるんクッキング", - "id": "2430701", - "hash": "43239b593293aa795a1b4375ca800967", - "profile": { - "height": "151", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [ - { - "event_id": 1209, - "event_name": "アイドルチャレンジ チャレンジクッキング バレンタイン編" - } - ] - }, - { - "alias_name": "るんるんクッキング", - "alias_name_display": "るんるんクッキング", - "id": "2530702", - "hash": "8b764d55696b882d6791b7a723bc88e1", - "profile": { - "height": "151", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [ - { - "event_id": 1209, - "event_name": "アイドルチャレンジ チャレンジクッキング バレンタイン編" - } - ] - }, - { - "alias_name": "るんるんクッキング・S", - "alias_name_display": "るんるんクッキング・S", - "id": "2430801", - "hash": "a33b7181a7202f0873a00ccba8392539", - "profile": { - "height": "151", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [ - { - "event_id": 1209, - "event_name": "アイドルチャレンジ チャレンジクッキング バレンタイン編" - } - ] - }, - { - "alias_name": "るんるんクッキング・S", - "alias_name_display": "るんるんクッキング・S", - "id": "2530802", - "hash": "bc6e9c5a4b28b1669ceb394193011235", - "profile": { - "height": "151", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [ - { - "event_id": 1209, - "event_name": "アイドルチャレンジ チャレンジクッキング バレンタイン編" - } - ] - }, - { - "alias_name": "幻視霊縛", - "alias_name_display": "幻視霊縛", - "id": "2434401", - "hash": "e9a1335372f00626a11dcee9481389e6", - "profile": { - "height": "151", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [ - { - "event_id": 1903, - "event_name": "怪奇公演 心霊探偵の事件簿" - } - ] - }, - { - "alias_name": "幻視霊縛", - "alias_name_display": "幻視霊縛", - "id": "2534402", - "hash": "3680d1991b44b9d38b902639964525ed", - "profile": { - "height": "151", - "weight": "41", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [ - { - "event_id": 1903, - "event_name": "怪奇公演 心霊探偵の事件簿" - } - ] - } - ], - "units": [ - { - "id": "143", - "name": "ファタ・モルガーナ" - } - ] - }, - "93": { - "idol_id": 93, - "idol_name": "ヘレン", - "idol_name_display": "ヘレン", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2200101", - "hash": "7213b5c8bf9bcf2661deeed916c04839", - "profile": { - "height": "158", - "weight": "46", - "bust": "90", - "waist": "58", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2300102", - "hash": "f46be86c4472b60b8db9adabf5a4ed8c", - "profile": { - "height": "158", - "weight": "46", - "bust": "90", - "waist": "58", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "イタリアンスタイル", - "alias_name_display": "イタリアンスタイル", - "id": "2208701", - "hash": "f97e412122f73ccd9b6b44d7d60b19ba", - "profile": { - "height": "158", - "weight": "46", - "bust": "90", - "waist": "58", - "hip": "81" - }, - "event": [ - { - "event_id": 503, - "event_name": "アイドルLIVEツアーinイタリア" - } - ] - }, - { - "alias_name": "イタリアンスタイル", - "alias_name_display": "イタリアンスタイル", - "id": "2308702", - "hash": "a1432f07870b768fbb65fac3fb044ccd", - "profile": { - "height": "158", - "weight": "46", - "bust": "90", - "waist": "58", - "hip": "81" - }, - "event": [ - { - "event_id": 503, - "event_name": "アイドルLIVEツアーinイタリア" - } - ] - }, - { - "alias_name": "バニーガール", - "alias_name_display": "バニーガール", - "id": "2211701", - "hash": "fe622a9df6d27c14fe21f524b0814f93", - "profile": { - "height": "158", - "weight": "46", - "bust": "90", - "waist": "58", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "バニーガール", - "alias_name_display": "バニーガール", - "id": "2311702", - "hash": "56032e82e99af67ca89d0cc1e1760238", - "profile": { - "height": "158", - "weight": "46", - "bust": "90", - "waist": "58", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "T.B.チアーズ", - "alias_name_display": "T.B.チアーズ", - "id": "2215701", - "hash": "6c847b7c95a48dab0fc61b45b6c66522", - "profile": { - "height": "158", - "weight": "46", - "bust": "90", - "waist": "58", - "hip": "81" - }, - "event": [ - { - "event_id": 1102, - "event_name": "第2回プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "T.B.チアーズ", - "alias_name_display": "T.B.チアーズ", - "id": "2315702", - "hash": "c6e605ee7213927f28a0fe609ecaed58", - "profile": { - "height": "158", - "weight": "46", - "bust": "90", - "waist": "58", - "hip": "81" - }, - "event": [ - { - "event_id": 1102, - "event_name": "第2回プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "SUHADAスタイル", - "alias_name_display": "SUHADAスタイル", - "id": "2219101", - "hash": "d66165c8ec5795a58dfddd75ea490ce4", - "profile": { - "height": "158", - "weight": "46", - "bust": "90", - "waist": "58", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "SUHADAスタイル", - "alias_name_display": "SUHADAスタイル", - "id": "2319102", - "hash": "c2c0c4be7dd2a5321b7d31af6e510da6", - "profile": { - "height": "158", - "weight": "46", - "bust": "90", - "waist": "58", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ビター&スウィート", - "alias_name_display": "ビター&スウィート", - "id": "2224901", - "hash": "0cd05f44a7645e7e5226505b77095927", - "profile": { - "height": "158", - "weight": "46", - "bust": "90", - "waist": "58", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ビター&スウィート", - "alias_name_display": "ビター&スウィート", - "id": "2324902", - "hash": "82c55a45c33211e07f84a2194e7c37c1", - "profile": { - "height": "158", - "weight": "46", - "bust": "90", - "waist": "58", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ヴィクトリアの微笑", - "alias_name_display": "ヴィクトリアの微笑", - "id": "2229701", - "hash": "79df8bef976ffbffa161c1640c2e5f54", - "profile": { - "height": "158", - "weight": "46", - "bust": "90", - "waist": "58", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ヴィクトリアの微笑", - "alias_name_display": "ヴィクトリアの微笑", - "id": "2329702", - "hash": "6a82c3aa225dd4352788e2c9edff4933", - "profile": { - "height": "158", - "weight": "46", - "bust": "90", - "waist": "58", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ワールドイズマイン", - "alias_name_display": "ワールドイズマイン", - "id": "2410701", - "hash": "695cc79fac96163d7f505021b1824512", - "profile": { - "height": "158", - "weight": "46", - "bust": "90", - "waist": "58", - "hip": "81" - }, - "event": [ - { - "event_id": 704, - "event_name": "第4回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ワールドイズマイン", - "alias_name_display": "ワールドイズマイン", - "id": "2510702", - "hash": "7175e4b23da69f4db80c2721b4010a14", - "profile": { - "height": "158", - "weight": "46", - "bust": "90", - "waist": "58", - "hip": "81" - }, - "event": [ - { - "event_id": 704, - "event_name": "第4回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "パーフェクトティーチャー", - "alias_name_display": "パーフェクトティーチャー", - "id": "2425401", - "hash": "0706adc16bd17b7911c6f0c486c9288b", - "profile": { - "height": "158", - "weight": "46", - "bust": "90", - "waist": "58", - "hip": "81" - }, - "event": [ - { - "event_id": 520, - "event_name": "青春公演 シング・ア・ソング" - } - ] - }, - { - "alias_name": "パーフェクトティーチャー", - "alias_name_display": "パーフェクトティーチャー", - "id": "2525402", - "hash": "6a2e07a28b5eb41aba421027c684c0dc", - "profile": { - "height": "158", - "weight": "46", - "bust": "90", - "waist": "58", - "hip": "81" - }, - "event": [ - { - "event_id": 520, - "event_name": "青春公演 シング・ア・ソング" - } - ] - }, - { - "alias_name": "飽くなき挑戦者", - "alias_name_display": "飽くなき挑戦者", - "id": "2433901", - "hash": "af4ef2fa96ffca2a1b2747a49dd05f04", - "profile": { - "height": "158", - "weight": "46", - "bust": "90", - "waist": "58", - "hip": "81" - }, - "event": [ - { - "event_id": 1211, - "event_name": "目指せ山頂! アイドルチャレンジ" - } - ] - }, - { - "alias_name": "飽くなき挑戦者", - "alias_name_display": "飽くなき挑戦者", - "id": "2533902", - "hash": "cc0698a6cf2cb1334013fe8b8ade9708", - "profile": { - "height": "158", - "weight": "46", - "bust": "90", - "waist": "58", - "hip": "81" - }, - "event": [ - { - "event_id": 1211, - "event_name": "目指せ山頂! アイドルチャレンジ" - } - ] - } - ], - "units": [ - { - "id": "86", - "name": "イタリアンスタイル" - } - ] - }, - "94": { - "idol_id": 94, - "idol_name": "松永涼", - "idol_name_display": "松永涼", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2200201", - "hash": "259ea6a1a4bfe54feafe3adea84e09fc", - "profile": { - "height": "160", - "weight": "47", - "bust": "90", - "waist": "56", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2300202", - "hash": "79439fa45b259cec8e53788c227f295d", - "profile": { - "height": "160", - "weight": "47", - "bust": "90", - "waist": "56", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "テーマパーク", - "alias_name_display": "テーマパーク", - "id": "2203801", - "hash": "980b9cd09101e0ace7a9a9a8a7025643", - "profile": { - "height": "160", - "weight": "47", - "bust": "90", - "waist": "56", - "hip": "86" - }, - "event": [ - { - "event_id": 203, - "event_name": "アイドルサバイバルinテーマパーク" - } - ] - }, - { - "alias_name": "テーマパーク", - "alias_name_display": "テーマパーク", - "id": "2303802", - "hash": "d925b1db151da01b386045506ea410bf", - "profile": { - "height": "160", - "weight": "47", - "bust": "90", - "waist": "56", - "hip": "86" - }, - "event": [ - { - "event_id": 203, - "event_name": "アイドルサバイバルinテーマパーク" - } - ] - }, - { - "alias_name": "ハロウィンパーティー", - "alias_name_display": "ハロウィンパーティー", - "id": "2206201", - "hash": "db6604d22bb5f0f5dc9debc86ffd2c0e", - "profile": { - "height": "160", - "weight": "47", - "bust": "90", - "waist": "56", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "ハロウィンパーティー", - "alias_name_display": "ハロウィンパーティー", - "id": "2306202", - "hash": "4f126d663ceb6c43a28ea7b8ca06698c", - "profile": { - "height": "160", - "weight": "47", - "bust": "90", - "waist": "56", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "ロッキンヴォーカル", - "alias_name_display": "ロッキンヴォーカル", - "id": "2210901", - "hash": "81d108a67d9d1c4e1d850886c8b4e5f6", - "profile": { - "height": "160", - "weight": "47", - "bust": "90", - "waist": "56", - "hip": "86" - }, - "event": [ - { - "event_id": "011", - "event_name": "第11回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "ロッキンヴォーカル", - "alias_name_display": "ロッキンヴォーカル", - "id": "2310902", - "hash": "8de0a568c134685e6c62b1c1ce5904fe", - "profile": { - "height": "160", - "weight": "47", - "bust": "90", - "waist": "56", - "hip": "86" - }, - "event": [ - { - "event_id": "011", - "event_name": "第11回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "熱気の中で", - "alias_name_display": "熱気の中で", - "id": "2217201", - "hash": "01c2160e64c52a3951f9beb6bd18b7ae", - "profile": { - "height": "160", - "weight": "47", - "bust": "90", - "waist": "56", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "熱気の中で", - "alias_name_display": "熱気の中で", - "id": "2317202", - "hash": "631a32c8f240c49e29c4c8ca97c92a8d", - "profile": { - "height": "160", - "weight": "47", - "bust": "90", - "waist": "56", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "さわやかスポーツ", - "alias_name_display": "さわやかスポーツ", - "id": "2220901", - "hash": "bf035f7688283058e98bcf8488a05dcc", - "profile": { - "height": "160", - "weight": "47", - "bust": "90", - "waist": "56", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "さわやかスポーツ", - "alias_name_display": "さわやかスポーツ", - "id": "2320902", - "hash": "5dd271c659752103724376c0a30163ce", - "profile": { - "height": "160", - "weight": "47", - "bust": "90", - "waist": "56", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "イカした帽子屋", - "alias_name_display": "イカした帽子屋", - "id": "2325702", - "hash": "e4f66d8edf006f5f00a7098cadc49f7a", - "profile": { - "height": "160", - "weight": "47", - "bust": "90", - "waist": "56", - "hip": "86" - }, - "event": [ - { - "event_id": 1901, - "event_name": "童話公演 気まぐれアリスと不思議の国" - } - ] - }, - { - "alias_name": "サマービーチ", - "alias_name_display": "サマービーチ", - "id": "2227801", - "hash": "bb8965c51ea8824c9ed23b586af4c99e", - "profile": { - "height": "160", - "weight": "47", - "bust": "90", - "waist": "56", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "サマービーチ", - "alias_name_display": "サマービーチ", - "id": "2327802", - "hash": "f8b86ed000791b83276ea40a9e06916a", - "profile": { - "height": "160", - "weight": "47", - "bust": "90", - "waist": "56", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "ロッキンヴォーカリスト", - "alias_name_display": "ロッキンヴォーカリスト", - "id": "2411301", - "hash": "a30f4d848b8bef6dfe1da50c4358f73a", - "profile": { - "height": "160", - "weight": "47", - "bust": "90", - "waist": "56", - "hip": "86" - }, - "event": [ - { - "event_id": 1001, - "event_name": "プロダクション対抗ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ロッキンヴォーカリスト", - "alias_name_display": "ロッキンヴォーカリスト", - "id": "2511302", - "hash": "84e0685b558f54a0d3e2633da07cd8e6", - "profile": { - "height": "160", - "weight": "47", - "bust": "90", - "waist": "56", - "hip": "86" - }, - "event": [ - { - "event_id": 1001, - "event_name": "プロダクション対抗ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ミュージックスクリーム", - "alias_name_display": "ミュージックスクリーム", - "id": "2426601", - "hash": "c6803990cf321f09db09d1270f3e7141", - "profile": { - "height": "160", - "weight": "47", - "bust": "90", - "waist": "56", - "hip": "86" - }, - "event": [ - { - "event_id": 715, - "event_name": "第15回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ミュージックスクリーム", - "alias_name_display": "ミュージックスクリーム", - "id": "2526602", - "hash": "9c7924540506c8bb3a815a165f9ee1f5", - "profile": { - "height": "160", - "weight": "47", - "bust": "90", - "waist": "56", - "hip": "86" - }, - "event": [ - { - "event_id": 715, - "event_name": "第15回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "セトルダウンソウル", - "alias_name_display": "セトルダウンソウル", - "id": "2437001", - "hash": "55fe8f7624359d534974ec4f3bac7ea9", - "profile": { - "height": "160", - "weight": "47", - "bust": "90", - "waist": "56", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "セトルダウンソウル", - "alias_name_display": "セトルダウンソウル", - "id": "2537002", - "hash": "7c6d691dff4f6353fdf2ab67ccea3e35", - "profile": { - "height": "160", - "weight": "47", - "bust": "90", - "waist": "56", - "hip": "86" - }, - "event": [] - } - ], - "units": [ - { - "id": "9", - "name": "エルドリッチ・ロアテラー" - }, - { - "id": "176", - "name": "炎陣" - }, - { - "id": "180", - "name": "ハロウィンパーティー" - } - ] - }, - "95": { - "idol_id": 95, - "idol_name": "小室千奈美", - "idol_name_display": "小室千奈美", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2200301", - "hash": "052c63f721faba1ce3c0ee0b14c45bb4", - "profile": { - "height": "164", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2300302", - "hash": "e33f0418d795637c98fb9997ef090cb1", - "profile": { - "height": "164", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "スポーツ祭", - "alias_name_display": "スポーツ祭", - "id": "2204401", - "hash": "eee398b4bef19b879c761dd2c7bc3723", - "profile": { - "height": "164", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "スポーツ祭", - "alias_name_display": "スポーツ祭", - "id": "2304402", - "hash": "5880ef8815cbbc4493ef5d6ce5c3e6d0", - "profile": { - "height": "164", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "セレブレティJKT", - "alias_name_display": "セレブレティJKT", - "id": "2215301", - "hash": "5d5e16f335315c45d1854ad76f7a86e9", - "profile": { - "height": "164", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "セレブレティJKT", - "alias_name_display": "セレブレティJKT", - "id": "2315302", - "hash": "e07ba1df924d713909c3e34b14cf279a", - "profile": { - "height": "164", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ブライダルセレクション", - "alias_name_display": "ブライダルセレクション", - "id": "2221401", - "hash": "27fac6d6c916869f2ebf1b5dfd28e9eb", - "profile": { - "height": "164", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ブライダルセレクション", - "alias_name_display": "ブライダルセレクション", - "id": "2321402", - "hash": "fa39ed43012f2f2da72464c7f1438169", - "profile": { - "height": "164", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ファンサーキット", - "alias_name_display": "ファンサーキット", - "id": "2226401", - "hash": "91c81b332d95258dbe1ba94bbfd74d12", - "profile": { - "height": "164", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ファンサーキット", - "alias_name_display": "ファンサーキット", - "id": "2326402", - "hash": "f49aaf4a024810dd9fa9ab09a70e9d72", - "profile": { - "height": "164", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ステージディーヴァ", - "alias_name_display": "ステージディーヴァ", - "id": "2407410", - "hash": "b3f7ea5dd24289a103d9f2968646218c", - "profile": { - "height": "164", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ステージディーヴァ", - "alias_name_display": "ステージディーヴァ", - "id": "2507411", - "hash": "0535db74b682fd7e4e479ea31d42c440", - "profile": { - "height": "164", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "美しき品位", - "alias_name_display": "美しき品位", - "id": "2417101", - "hash": "58f99d1d3a87002b47bd50d93fd5bb7d", - "profile": { - "height": "164", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 708, - "event_name": "第8回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "美しき品位", - "alias_name_display": "美しき品位", - "id": "2517102", - "hash": "751eac81ec20fef9cb7f5ee42102d579", - "profile": { - "height": "164", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 708, - "event_name": "第8回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ビューティーハーベスト", - "alias_name_display": "ビューティーハーベスト", - "id": "2426901", - "hash": "f0f4465ce296a72ddb0dafc12a069467", - "profile": { - "height": "164", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 1801, - "event_name": "アイドルバラエティ 究極のショートケーキを作ろう!" - } - ] - }, - { - "alias_name": "ビューティーハーベスト", - "alias_name_display": "ビューティーハーベスト", - "id": "2526902", - "hash": "6bce57ed40bb3f7a5ccd19cd679a0a66", - "profile": { - "height": "164", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 1801, - "event_name": "アイドルバラエティ 究極のショートケーキを作ろう!" - } - ] - }, - { - "alias_name": "スパークルオブプライド", - "alias_name_display": "スパークルオブプライド", - "id": "2437801", - "hash": "f4a1f0573cf0bc83790d5e89511ec5ba", - "profile": { - "height": "164", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "スパークルオブプライド", - "alias_name_display": "スパークルオブプライド", - "id": "2537802", - "hash": "5adfeb655cf51c970156064c22dfb037", - "profile": { - "height": "164", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "82" - }, - "event": [] - } - ], - "units": [ - { - "id": "118", - "name": "ビューティーアリュール" - }, - { - "id": "162", - "name": "ブライダルセレクション" - }, - { - "id": "181", - "name": "フレッシュアスリーテス" - } - ] - }, - "96": { - "idol_id": 96, - "idol_name": "高峯のあ", - "idol_name_display": "高峯のあ", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2200401", - "hash": "fa2dec52d070ce84f31fe991bd02a9f4", - "profile": { - "height": "168", - "weight": "48", - "bust": "87", - "waist": "55", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2300402", - "hash": "601fe50f575ef26e92fdf9c2d6536286", - "profile": { - "height": "168", - "weight": "48", - "bust": "87", - "waist": "55", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "サイバネティックビューティー", - "alias_name_display": "サイバネティックビューティー", - "id": "2206601", - "hash": "df24296562d7ff98a40501958c234758", - "profile": { - "height": "168", - "weight": "48", - "bust": "87", - "waist": "55", - "hip": "86" - }, - "event": [ - { - "event_id": 207, - "event_name": "アイドルサバイバル ハロウィン編" - } - ] - }, - { - "alias_name": "サイバネティックビューティー", - "alias_name_display": "サイバネティックビューティー", - "id": "2306602", - "hash": "0512fbcece083f4b2077d3ba763bfc59", - "profile": { - "height": "168", - "weight": "48", - "bust": "87", - "waist": "55", - "hip": "86" - }, - "event": [ - { - "event_id": 207, - "event_name": "アイドルサバイバル ハロウィン編" - } - ] - }, - { - "alias_name": "全味万能", - "alias_name_display": "全味万能", - "id": "2321002", - "hash": "22cd8051835cfd6702d130844565c9a4", - "profile": { - "height": "168", - "weight": "48", - "bust": "87", - "waist": "55", - "hip": "86" - }, - "event": [ - { - "event_id": 519, - "event_name": "美食公演 女神に捧ぐ御馳走" - } - ] - }, - { - "alias_name": "定常の薄片", - "alias_name_display": "定常の薄片", - "id": "2230201", - "hash": "080ff95ef15907ec9dde885760b35ca5", - "profile": { - "height": "168", - "weight": "48", - "bust": "87", - "waist": "55", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "定常の薄片", - "alias_name_display": "定常の薄片", - "id": "2330202", - "hash": "dc44f2b08fa035521ae2c420f188395f", - "profile": { - "height": "168", - "weight": "48", - "bust": "87", - "waist": "55", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "寡黙の女王", - "alias_name_display": "寡黙の女王", - "id": "2401201", - "hash": "5318a142d7ac9c1442963b5a74114a12", - "profile": { - "height": "168", - "weight": "48", - "bust": "87", - "waist": "55", - "hip": "86" - }, - "event": [ - { - "event_id": 202, - "event_name": "アイドルサバイバルひな祭り編" - } - ] - }, - { - "alias_name": "寡黙の女王", - "alias_name_display": "寡黙の女王", - "id": "2501202", - "hash": "e5e24d0c31229301ba067bd7b55c07f1", - "profile": { - "height": "168", - "weight": "48", - "bust": "87", - "waist": "55", - "hip": "86" - }, - "event": [ - { - "event_id": 202, - "event_name": "アイドルサバイバルひな祭り編" - } - ] - }, - { - "alias_name": "ミステリアスメイド", - "alias_name_display": "ミステリアスメイド", - "id": "2405301", - "hash": "9e4f24a0d5ffb26f7c9c24c818ba09df", - "profile": { - "height": "168", - "weight": "48", - "bust": "87", - "waist": "55", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "ミステリアスメイド", - "alias_name_display": "ミステリアスメイド", - "id": "2505302", - "hash": "5e07fd98a4bc380a8fa8a54bb0fc8402", - "profile": { - "height": "168", - "weight": "48", - "bust": "87", - "waist": "55", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "トランセンドバニー", - "alias_name_display": "トランセンドバニー", - "id": "2408801", - "hash": "eb19babf3f607140e5e7729c2c7bd063", - "profile": { - "height": "168", - "weight": "48", - "bust": "87", - "waist": "55", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "トランセンドバニー", - "alias_name_display": "トランセンドバニー", - "id": "2508802", - "hash": "e48b28d85c30e5e1beb133623913e970", - "profile": { - "height": "168", - "weight": "48", - "bust": "87", - "waist": "55", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "銀弾の射手", - "alias_name_display": "銀弾の射手", - "id": "2414801", - "hash": "ebeffaed713567cdde72ef9093f78574", - "profile": { - "height": "168", - "weight": "48", - "bust": "87", - "waist": "55", - "hip": "86" - }, - "event": [ - { - "event_id": 512, - "event_name": "西部公演 ガンスリンガージャーニー" - } - ] - }, - { - "alias_name": "銀弾の射手", - "alias_name_display": "銀弾の射手", - "id": "2514802", - "hash": "50b4f24a6dad70b40a3aa9084cd1440f", - "profile": { - "height": "168", - "weight": "48", - "bust": "87", - "waist": "55", - "hip": "86" - }, - "event": [ - { - "event_id": 512, - "event_name": "西部公演 ガンスリンガージャーニー" - } - ] - }, - { - "alias_name": "イグナイトアビリティーズ", - "alias_name_display": "イグナイトアビリティーズ", - "id": "2426801", - "hash": "4eb2a1368c3fd86ecc07cab40f40e1ad", - "profile": { - "height": "168", - "weight": "48", - "bust": "87", - "waist": "55", - "hip": "86" - }, - "event": [ - { - "event_id": "023", - "event_name": "第23回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "イグナイトアビリティーズ", - "alias_name_display": "イグナイトアビリティーズ", - "id": "2526802", - "hash": "90e8bb440dc7b7d442a7e0a54a5a159c", - "profile": { - "height": "168", - "weight": "48", - "bust": "87", - "waist": "55", - "hip": "86" - }, - "event": [ - { - "event_id": "023", - "event_name": "第23回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "インスペクトコンコルディア", - "alias_name_display": "インスペクトコンコルディア", - "id": "2432901", - "hash": "eb6c39fd1f1cc9a59cb18cab01f5cf01", - "profile": { - "height": "168", - "weight": "48", - "bust": "87", - "waist": "55", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "インスペクトコンコルディア", - "alias_name_display": "インスペクトコンコルディア", - "id": "2532902", - "hash": "eacc9bc4fe9128ac315bf016a2c356c4", - "profile": { - "height": "168", - "weight": "48", - "bust": "87", - "waist": "55", - "hip": "86" - }, - "event": [] - } - ], - "units": [ - { - "id": "116", - "name": "にゃん・にゃん・にゃん" - } - ] - }, - "97": { - "idol_id": 97, - "idol_name": "高垣楓", - "idol_name_display": "高垣楓", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2200501", - "hash": "1f62eb063030ed5083b0e7826245d3af", - "profile": { - "height": "171", - "weight": "49", - "bust": "81", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2300502", - "hash": "2cc6e90536c27201a4042b1bc3aa7a4b", - "profile": { - "height": "171", - "weight": "49", - "bust": "81", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "神秘の女神", - "alias_name_display": "神秘の女神", - "id": "2401401", - "hash": "0c4e761bc05c904c8d1d80ae19f55042", - "profile": { - "height": "171", - "weight": "49", - "bust": "81", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "神秘の女神", - "alias_name_display": "神秘の女神", - "id": "2501402", - "hash": "a79b80569b0b237c0e63751cca452632", - "profile": { - "height": "171", - "weight": "49", - "bust": "81", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "2401601", - "hash": "0902f546ad623f9ea9743f549991ca4a", - "profile": { - "height": "171", - "weight": "49", - "bust": "81", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "2501602", - "hash": "81f39e1cf11b678f12a090a23726925d", - "profile": { - "height": "171", - "weight": "49", - "bust": "81", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "湯けむり女神", - "alias_name_display": "湯けむり女神", - "id": "2403801", - "hash": "a9058c6198b35b7282ff3694c1177b66", - "profile": { - "height": "171", - "weight": "49", - "bust": "81", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "湯けむり女神", - "alias_name_display": "湯けむり女神", - "id": "2503802", - "hash": "ffde517a1d2a3fdb6900d97eefb33ac4", - "profile": { - "height": "171", - "weight": "49", - "bust": "81", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "新緑の淑女", - "alias_name_display": "新緑の淑女", - "id": "2406601", - "hash": "9a77b70cbfa5519c355bec95e1dd93c6", - "profile": { - "height": "171", - "weight": "49", - "bust": "81", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "新緑の淑女", - "alias_name_display": "新緑の淑女", - "id": "2506602", - "hash": "6d1df5bc4e0f9a31473c1aa86414f6ae", - "profile": { - "height": "171", - "weight": "49", - "bust": "81", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "甘美なる姫君", - "alias_name_display": "甘美なる姫君", - "id": "2412101", - "hash": "976b76648428ec1dbb7f5250e79a7a23", - "profile": { - "height": "171", - "weight": "49", - "bust": "81", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "甘美なる姫君", - "alias_name_display": "甘美なる姫君", - "id": "2512102", - "hash": "02766491016ecc94d2cc339c3a2d2dd6", - "profile": { - "height": "171", - "weight": "49", - "bust": "81", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "ワンダフルマジック", - "alias_name_display": "ワンダフルマジック", - "id": "2413301", - "hash": "b2962e6246b90fa8843eb06722614ff3", - "profile": { - "height": "171", - "weight": "49", - "bust": "81", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "ワンダフルマジック", - "alias_name_display": "ワンダフルマジック", - "id": "2513302", - "hash": "b4022ee73d439603da996d48bbc302a8", - "profile": { - "height": "171", - "weight": "49", - "bust": "81", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "謹賀新年", - "alias_name_display": "謹賀新年", - "id": "2420501", - "hash": "1b961de171c55574e471134ad28f883f", - "profile": { - "height": "171", - "weight": "49", - "bust": "81", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "謹賀新年", - "alias_name_display": "謹賀新年", - "id": "2520502", - "hash": "9daca9b18b0acbe7a315daee7b7a8fed", - "profile": { - "height": "171", - "weight": "49", - "bust": "81", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "白南風の淑女", - "alias_name_display": "白南風の淑女", - "id": "2425301", - "hash": "2e54872e35ff6ae1e3b8db794325ebdc", - "profile": { - "height": "171", - "weight": "49", - "bust": "81", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "白南風の淑女", - "alias_name_display": "白南風の淑女", - "id": "2525302", - "hash": "3549cd6ea8a118812832841f4dbbac61", - "profile": { - "height": "171", - "weight": "49", - "bust": "81", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "幸福のひととき", - "alias_name_display": "幸福のひととき", - "id": "2433201", - "hash": "81b0bcb1a5d9b6463f17eef50387d30c", - "profile": { - "height": "171", - "weight": "49", - "bust": "81", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "幸福のひととき", - "alias_name_display": "幸福のひととき", - "id": "2533202", - "hash": "188262224c3c9e6dd3b291c111101d72", - "profile": { - "height": "171", - "weight": "49", - "bust": "81", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "聖夜の祝宴", - "alias_name_display": "聖夜の祝宴", - "id": "2436601", - "hash": "7918df8e9ee92c02ea13b4fef6e6448f", - "profile": { - "height": "171", - "weight": "49", - "bust": "81", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "聖夜の祝宴", - "alias_name_display": "聖夜の祝宴", - "id": "2536602", - "hash": "70e5c843c758082e2ff927eb38cf943b", - "profile": { - "height": "171", - "weight": "49", - "bust": "81", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "優艶の花尽し", - "alias_name_display": "優艶の花尽し", - "id": "2439801", - "hash": "5e013960c6ecd88627148666b8fb215c", - "profile": { - "height": "171", - "weight": "49", - "bust": "81", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "優艶の花尽し", - "alias_name_display": "優艶の花尽し", - "id": "2539802", - "hash": "8f043af6f6c5ee0f0e01cd50a36a2f66", - "profile": { - "height": "171", - "weight": "49", - "bust": "81", - "waist": "57", - "hip": "83" - }, - "event": [] - } - ], - "units": [ - { - "id": "55", - "name": "ミステリアスアイズ" - }, - { - "id": "63", - "name": "ラブリーダイナーズ" - }, - { - "id": "124", - "name": "女神たちの夏宴" - }, - { - "id": "141", - "name": "トランクィル・ウィスパー" - }, - { - "id": "184", - "name": "宵乙女" - }, - { - "id": "197", - "name": "アズール・ムジカ" - }, - { - "id": "212", - "name": "CINDERELLA GIRLS" - } - ] - }, - "98": { - "idol_id": 98, - "idol_name": "神崎蘭子", - "idol_name_display": "神崎蘭子", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2200601", - "hash": "b7999fc204ef28323b6b656f66d46c42", - "profile": { - "height": "156", - "weight": "41", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2300602", - "hash": "7b71466acb0f40616f8cf2fff65736e7", - "profile": { - "height": "156", - "weight": "41", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "天使な堕天使", - "alias_name_display": "天使な堕天使", - "id": "2401101", - "hash": "c340069fa99350b0a29508ddf3392a44", - "profile": { - "height": "156", - "weight": "41", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "天使な堕天使", - "alias_name_display": "天使な堕天使", - "id": "2501102", - "hash": "be29acd9c1b205a8c69f4fd5b8763b1d", - "profile": { - "height": "156", - "weight": "41", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "渚の天使", - "alias_name_display": "渚の天使", - "id": "2402601", - "hash": "78ba6d819af44ef169d32cc6685541a1", - "profile": { - "height": "156", - "weight": "41", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "渚の天使", - "alias_name_display": "渚の天使", - "id": "2502602", - "hash": "d1052359816fb13ba2b87fc90abccf00", - "profile": { - "height": "156", - "weight": "41", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "2402701", - "hash": "070ed187236849ff082bcab7fde5af4c", - "profile": { - "height": "156", - "weight": "41", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "2502702", - "hash": "b68433f5242f9a792a023ec1ad6e53fd", - "profile": { - "height": "156", - "weight": "41", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "覚醒魔王", - "alias_name_display": "覚醒魔王", - "id": "2406401", - "hash": "5062961868cf70cc24fdb4fe6d319c14", - "profile": { - "height": "156", - "weight": "41", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "覚醒魔王", - "alias_name_display": "覚醒魔王", - "id": "2506402", - "hash": "a8e4b70fb957baaeb029f6e09fb0965c", - "profile": { - "height": "156", - "weight": "41", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "シンデレラガール", - "alias_name_display": "シンデレラガール", - "id": "2407301", - "hash": "f3f87f1ea01adffba286106b365275a8", - "profile": { - "height": "156", - "weight": "41", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "シンデレラガール", - "alias_name_display": "シンデレラガール", - "id": "2507302", - "hash": "85fc0f386df052f15d27adcb09354ebc", - "profile": { - "height": "156", - "weight": "41", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "アニバーサリープリンセス", - "alias_name_display": "アニバーサリープリンセス", - "id": "2410801", - "hash": "2843d6da5edda215be6641a742189bbd", - "profile": { - "height": "156", - "weight": "41", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 410, - "event_name": "アイドルプロデュース the 2nd Anniversary" - } - ] - }, - { - "alias_name": "アニバーサリープリンセス", - "alias_name_display": "アニバーサリープリンセス", - "id": "2510802", - "hash": "2fc7aaa1afffe3a797b9f64b8fac0a1e", - "profile": { - "height": "156", - "weight": "41", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 410, - "event_name": "アイドルプロデュース the 2nd Anniversary" - } - ] - }, - { - "alias_name": "ワンダフルマジック", - "alias_name_display": "ワンダフルマジック", - "id": "2413101", - "hash": "f8b9134d6146874bad5933a284a3d760", - "profile": { - "height": "156", - "weight": "41", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ワンダフルマジック", - "alias_name_display": "ワンダフルマジック", - "id": "2513102", - "hash": "d712a295960479bc715630e80c819f69", - "profile": { - "height": "156", - "weight": "41", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "紅蓮の夜姫", - "alias_name_display": "紅蓮の夜姫", - "id": "2418801", - "hash": "9ed747defd1c6c795859a5170f375893", - "profile": { - "height": "156", - "weight": "41", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "紅蓮の夜姫", - "alias_name_display": "紅蓮の夜姫", - "id": "2518802", - "hash": "29805f362930be2c4ad6c790285184c0", - "profile": { - "height": "156", - "weight": "41", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ローゼンブルクエンゲル", - "alias_name_display": "ローゼンブルクエンゲル", - "id": "2522502", - "hash": "a8966398cde53faf1eea3197d044fa09", - "profile": { - "height": "156", - "weight": "41", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "魔界の花嫁", - "alias_name_display": "魔界の花嫁", - "id": "2424401", - "hash": "0cf0c9dda3969d5e0849f82ef76e3316", - "profile": { - "height": "156", - "weight": "41", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "魔界の花嫁", - "alias_name_display": "魔界の花嫁", - "id": "2524402", - "hash": "3986012e2714597c8db0358919b7fcbf", - "profile": { - "height": "156", - "weight": "41", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "G4U!", - "alias_name_display": "G4U!", - "id": "2528702", - "hash": "46d53903234e41082a542084e262e4ba", - "profile": { - "height": "156", - "weight": "41", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "春暁の紅姫", - "alias_name_display": "春暁の紅姫", - "id": "2430101", - "hash": "fd87367a4c86b934f53471b7127afba7", - "profile": { - "height": "156", - "weight": "41", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "春暁の紅姫", - "alias_name_display": "春暁の紅姫", - "id": "2530102", - "hash": "6782836a094a5ce9e71cdbf4d658fa90", - "profile": { - "height": "156", - "weight": "41", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "聖剣の救世主", - "alias_name_display": "聖剣の救世主", - "id": "2434701", - "hash": "44f5225bbe4ef204a0840a870fb8604c", - "profile": { - "height": "156", - "weight": "41", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "聖剣の救世主", - "alias_name_display": "聖剣の救世主", - "id": "2534702", - "hash": "3b9d6ba1ef0523d273c0203b04eb9400", - "profile": { - "height": "156", - "weight": "41", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "戦女神の先導", - "alias_name_display": "戦女神の先導", - "id": "2438501", - "hash": "c96e33b66c7d171dee121d2438fac8f9", - "profile": { - "height": "156", - "weight": "41", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "戦女神の先導", - "alias_name_display": "戦女神の先導", - "id": "2538502", - "hash": "5f1dd0a32dcb32f9b8e3ea9aa58a1e40", - "profile": { - "height": "156", - "weight": "41", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - } - ], - "units": [ - { - "id": "1", - "name": "Rosenburg Engel" - }, - { - "id": "32", - "name": "ダークイルミネイト" - }, - { - "id": "82", - "name": "Rosenburg Alptraum" - }, - { - "id": "145", - "name": "LOVE LAIKA with Rosenburg Engel" - }, - { - "id": "197", - "name": "アズール・ムジカ" - }, - { - "id": "205", - "name": "シンデレラガール" - }, - { - "id": "213", - "name": "CINDERELLA PROJECT" - } - ] - }, - "99": { - "idol_id": 99, - "idol_name": "伊集院惠", - "idol_name_display": "伊集院惠", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2200701", - "hash": "cdd97d8779d5ae35b16aa32bf8172e9f", - "profile": { - "height": "160", - "weight": "44", - "bust": "86", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2300702", - "hash": "f195a81a91c75e9d98525f587f6e5e56", - "profile": { - "height": "160", - "weight": "44", - "bust": "86", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ドイツスタイル", - "alias_name_display": "ドイツスタイル", - "id": "2211501", - "hash": "21af17a4bb477771fb3703e37057ab2b", - "profile": { - "height": "160", - "weight": "44", - "bust": "86", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 507, - "event_name": "LIVEツアーカーニバルinドイツ" - } - ] - }, - { - "alias_name": "ドイツスタイル", - "alias_name_display": "ドイツスタイル", - "id": "2311502", - "hash": "8a7a51f05959f050fc08990b8fe0bf00", - "profile": { - "height": "160", - "weight": "44", - "bust": "86", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 507, - "event_name": "LIVEツアーカーニバルinドイツ" - } - ] - }, - { - "alias_name": "トキメキバレンタイン", - "alias_name_display": "トキメキバレンタイン", - "id": "2214201", - "hash": "d2fcb5170107ae3baf66c07e64409aeb", - "profile": { - "height": "160", - "weight": "44", - "bust": "86", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "トキメキバレンタイン", - "alias_name_display": "トキメキバレンタイン", - "id": "2314202", - "hash": "49ec3fa6693f3812579564738780bb08", - "profile": { - "height": "160", - "weight": "44", - "bust": "86", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "旅の相棒", - "alias_name_display": "旅の相棒", - "id": "2220301", - "hash": "81ca74ea273f671e22a08f61fa2578ab", - "profile": { - "height": "160", - "weight": "44", - "bust": "86", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "旅の相棒", - "alias_name_display": "旅の相棒", - "id": "2320302", - "hash": "cec4772afa818025f97cf2cad08688ba", - "profile": { - "height": "160", - "weight": "44", - "bust": "86", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "レヴリーエトランゼ", - "alias_name_display": "レヴリーエトランゼ", - "id": "2230601", - "hash": "3a226e6ae482ebdf9debda9cc66fe2e3", - "profile": { - "height": "160", - "weight": "44", - "bust": "86", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "レヴリーエトランゼ", - "alias_name_display": "レヴリーエトランゼ", - "id": "2330602", - "hash": "3268dec7a8de3f1191ef4709ba9cbf17", - "profile": { - "height": "160", - "weight": "44", - "bust": "86", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "悠久の旅人", - "alias_name_display": "悠久の旅人", - "id": "2415001", - "hash": "4543c56aa20c9a1c2e6143b3e3044721", - "profile": { - "height": "160", - "weight": "44", - "bust": "86", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 512, - "event_name": "西部公演 ガンスリンガージャーニー" - } - ] - }, - { - "alias_name": "悠久の旅人", - "alias_name_display": "悠久の旅人", - "id": "2515002", - "hash": "5603dd64eec2f5217be0ec6c4d7e7b5d", - "profile": { - "height": "160", - "weight": "44", - "bust": "86", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 512, - "event_name": "西部公演 ガンスリンガージャーニー" - } - ] - }, - { - "alias_name": "トラベル・ロワイヤル", - "alias_name_display": "トラベル・ロワイヤル", - "id": "2428101", - "hash": "375bd729a614047d02d20c4ad6e211e1", - "profile": { - "height": "160", - "weight": "44", - "bust": "86", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 814, - "event_name": "第14回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "トラベル・ロワイヤル", - "alias_name_display": "トラベル・ロワイヤル", - "id": "2528102", - "hash": "4edd386fb6e33c087895ed627fea7eaa", - "profile": { - "height": "160", - "weight": "44", - "bust": "86", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 814, - "event_name": "第14回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "夏の一瞬", - "alias_name_display": "夏の一瞬", - "id": "2434101", - "hash": "8b202b6cb4600cd6d956973ea303bed9", - "profile": { - "height": "160", - "weight": "44", - "bust": "86", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 723, - "event_name": "水着DEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "夏の一瞬", - "alias_name_display": "夏の一瞬", - "id": "2534102", - "hash": "2b04d07128e9d3935b7505599d21f522", - "profile": { - "height": "160", - "weight": "44", - "bust": "86", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 723, - "event_name": "水着DEドリームLIVEフェスティバル" - } - ] - } - ], - "units": [ - { - "id": "37", - "name": "ナイトブルーレザー" - }, - { - "id": "97", - "name": "ドイツスタイル" - }, - { - "id": "167", - "name": "ロマンティックツアーズ" - } - ] - }, - "100": { - "idol_id": 100, - "idol_name": "柊志乃", - "idol_name_display": "柊志乃", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2200801", - "hash": "e8a68de320c6b9d699b376a3893c9eeb", - "profile": { - "height": "167", - "weight": "43", - "bust": "84", - "waist": "54", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2300802", - "hash": "2015f0f8b5bd2bc1495307c22000397e", - "profile": { - "height": "167", - "weight": "43", - "bust": "84", - "waist": "54", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "湯けむり温泉", - "alias_name_display": "湯けむり温泉", - "id": "2206701", - "hash": "4f99fef782ecceda83db3254f236bcd0", - "profile": { - "height": "167", - "weight": "43", - "bust": "84", - "waist": "54", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "湯けむり温泉", - "alias_name_display": "湯けむり温泉", - "id": "2306702", - "hash": "aae21e3bdfa77ef0d2dd17459f21b6d3", - "profile": { - "height": "167", - "weight": "43", - "bust": "84", - "waist": "54", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "セクシーグレープ", - "alias_name_display": "セクシーグレープ", - "id": "2211401", - "hash": "74418998e04b4f684cd4033ff4f446ca", - "profile": { - "height": "167", - "weight": "43", - "bust": "84", - "waist": "54", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "セクシーグレープ", - "alias_name_display": "セクシーグレープ", - "id": "2311402", - "hash": "376eec8a0c1cdbeb4f8f9df252c3b885", - "profile": { - "height": "167", - "weight": "43", - "bust": "84", - "waist": "54", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "新春コレクション", - "alias_name_display": "新春コレクション", - "id": "2213801", - "hash": "ba0b7d351ead3ab555661e0809c99dfc", - "profile": { - "height": "167", - "weight": "43", - "bust": "84", - "waist": "54", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "新春コレクション", - "alias_name_display": "新春コレクション", - "id": "2313802", - "hash": "096ce8e1c6c74d2224659f4cd525613f", - "profile": { - "height": "167", - "weight": "43", - "bust": "84", - "waist": "54", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "ルアードレディ", - "alias_name_display": "ルアードレディ", - "id": "2221101", - "hash": "cb7e7c77ba31e6603cfdba7e39c0631e", - "profile": { - "height": "167", - "weight": "43", - "bust": "84", - "waist": "54", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "ルアードレディ", - "alias_name_display": "ルアードレディ", - "id": "2321102", - "hash": "0f6a6629245897604e27472f913f5629", - "profile": { - "height": "167", - "weight": "43", - "bust": "84", - "waist": "54", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "スクールプール", - "alias_name_display": "スクールプール", - "id": "2227501", - "hash": "93e784df4ef0fafec8220d0a5e2e529e", - "profile": { - "height": "167", - "weight": "43", - "bust": "84", - "waist": "54", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "スクールプール", - "alias_name_display": "スクールプール", - "id": "2327502", - "hash": "ca3f01b1c48fa13d98db5adfab3f8794", - "profile": { - "height": "167", - "weight": "43", - "bust": "84", - "waist": "54", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "T.B.チアーズ", - "alias_name_display": "T.B.チアーズ", - "id": "2230701", - "hash": "4fb9bd8fbdc077a3c0eda99f05484416", - "profile": { - "height": "167", - "weight": "43", - "bust": "84", - "waist": "54", - "hip": "83" - }, - "event": [ - { - "event_id": 1511, - "event_name": "第11回チーム対抗トークバトルショー" - } - ] - }, - { - "alias_name": "T.B.チアーズ", - "alias_name_display": "T.B.チアーズ", - "id": "2330702", - "hash": "daf82424b3ded489e757ac9bb5246cd5", - "profile": { - "height": "167", - "weight": "43", - "bust": "84", - "waist": "54", - "hip": "83" - }, - "event": [ - { - "event_id": 1511, - "event_name": "第11回チーム対抗トークバトルショー" - } - ] - }, - { - "alias_name": "ほろ酔い艶美", - "alias_name_display": "ほろ酔い艶美", - "id": "2401301", - "hash": "5b83e49adcfae4f92a483276ce2874b9", - "profile": { - "height": "167", - "weight": "43", - "bust": "84", - "waist": "54", - "hip": "83" - }, - "event": [ - { - "event_id": 104, - "event_name": "桜舞う花見祭り" - } - ] - }, - { - "alias_name": "ほろ酔い艶美", - "alias_name_display": "ほろ酔い艶美", - "id": "2501302", - "hash": "9ddc388fb6bd94b4ada76f35ff491b89", - "profile": { - "height": "167", - "weight": "43", - "bust": "84", - "waist": "54", - "hip": "83" - }, - "event": [ - { - "event_id": 104, - "event_name": "桜舞う花見祭り" - } - ] - }, - { - "alias_name": "ドランカーパイレーツ", - "alias_name_display": "ドランカーパイレーツ", - "id": "2415701", - "hash": "bea24ae5a00b7dcbc889143658508c41", - "profile": { - "height": "167", - "weight": "43", - "bust": "84", - "waist": "54", - "hip": "83" - }, - "event": [ - { - "event_id": 513, - "event_name": "海賊公演 オーシャンクルーズ" - } - ] - }, - { - "alias_name": "ドランカーパイレーツ", - "alias_name_display": "ドランカーパイレーツ", - "id": "2515702", - "hash": "5fc1f15a4e70c64c6578984d141fc9c5", - "profile": { - "height": "167", - "weight": "43", - "bust": "84", - "waist": "54", - "hip": "83" - }, - "event": [ - { - "event_id": 513, - "event_name": "海賊公演 オーシャンクルーズ" - } - ] - }, - { - "alias_name": "ドランク・ロワイヤル", - "alias_name_display": "ドランク・ロワイヤル", - "id": "2429301", - "hash": "2d02c06b0e7b8281e28f470dfece9075", - "profile": { - "height": "167", - "weight": "43", - "bust": "84", - "waist": "54", - "hip": "83" - }, - "event": [ - { - "event_id": 815, - "event_name": "アイドルLIVEロワイヤル クリスマスSP" - } - ] - }, - { - "alias_name": "ドランク・ロワイヤル", - "alias_name_display": "ドランク・ロワイヤル", - "id": "2529302", - "hash": "eebf9cbe74825c11552fc61be114e2cc", - "profile": { - "height": "167", - "weight": "43", - "bust": "84", - "waist": "54", - "hip": "83" - }, - "event": [ - { - "event_id": 815, - "event_name": "アイドルLIVEロワイヤル クリスマスSP" - } - ] - } - ], - "units": [ - { - "id": "207", - "name": "ムーランルージュ" - } - ] - }, - "101": { - "idol_id": 101, - "idol_name": "北条加蓮", - "idol_name_display": "北条加蓮", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2200901", - "hash": "d3e95e1ca3c7b346535ad23e8619ec7e", - "profile": { - "height": "155", - "weight": "42", - "bust": "83", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2300902", - "hash": "341cefa6c1f43b09054cabc7f0b0c93b", - "profile": { - "height": "155", - "weight": "42", - "bust": "83", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "制服コレクション", - "alias_name_display": "制服コレクション", - "id": "2203401", - "hash": "cdcd2f0aba695f13e4fd8c1fe7eeacfd", - "profile": { - "height": "155", - "weight": "42", - "bust": "83", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "制服コレクション", - "alias_name_display": "制服コレクション", - "id": "2303402", - "hash": "4b1040a6e8b8397273697cf5c3201554", - "profile": { - "height": "155", - "weight": "42", - "bust": "83", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "煌めきの乙女", - "alias_name_display": "煌めきの乙女", - "id": "2402801", - "hash": "855d33d77752c725474da494a0e9e239", - "profile": { - "height": "155", - "weight": "42", - "bust": "83", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "煌めきの乙女", - "alias_name_display": "煌めきの乙女", - "id": "2502802", - "hash": "7d8203e3cc992b16c5308358601375ea", - "profile": { - "height": "155", - "weight": "42", - "bust": "83", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "アニバーサリーゴシック", - "alias_name_display": "アニバーサリーゴシック", - "id": "2404201", - "hash": "475dcbd4ce790875aa25b1580d0ba63a", - "profile": { - "height": "155", - "weight": "42", - "bust": "83", - "waist": "55", - "hip": "81" - }, - "event": [ - { - "event_id": 403, - "event_name": "アイドルプロデュース the 1st Anniversary" - } - ] - }, - { - "alias_name": "アニバーサリーゴシック", - "alias_name_display": "アニバーサリーゴシック", - "id": "2504202", - "hash": "dd74a48fb25bdfe6d21f2a9efc24962f", - "profile": { - "height": "155", - "weight": "42", - "bust": "83", - "waist": "55", - "hip": "81" - }, - "event": [ - { - "event_id": 403, - "event_name": "アイドルプロデュース the 1st Anniversary" - } - ] - }, - { - "alias_name": "純白の花嫁", - "alias_name_display": "純白の花嫁", - "id": "2407101", - "hash": "897d188e373b0578baf1aeae8632ae2b", - "profile": { - "height": "155", - "weight": "42", - "bust": "83", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "純白の花嫁", - "alias_name_display": "純白の花嫁", - "id": "2507102", - "hash": "d5875dd6bd8f6aac5806e34d8528cd9f", - "profile": { - "height": "155", - "weight": "42", - "bust": "83", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "アニバーサリーゴシック・S", - "alias_name_display": "アニバーサリーゴシック・S", - "id": "2411101", - "hash": "0c58246fd64877bd1dce7795bcabf67a", - "profile": { - "height": "155", - "weight": "42", - "bust": "83", - "waist": "55", - "hip": "81" - }, - "event": [ - { - "event_id": 403, - "event_name": "アイドルプロデュース the 1st Anniversary" - } - ] - }, - { - "alias_name": "アニバーサリーゴシック・S", - "alias_name_display": "アニバーサリーゴシック・S", - "id": "2511102", - "hash": "8b6b38f0b127fe5a28fca3a8f7956f5c", - "profile": { - "height": "155", - "weight": "42", - "bust": "83", - "waist": "55", - "hip": "81" - }, - "event": [ - { - "event_id": 403, - "event_name": "アイドルプロデュース the 1st Anniversary" - } - ] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "2414101", - "hash": "7ee6439b7345b1a66cafe6a16b5bdc0e", - "profile": { - "height": "155", - "weight": "42", - "bust": "83", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "2514102", - "hash": "322825cf0a562732b6c7b4dad80044c1", - "profile": { - "height": "155", - "weight": "42", - "bust": "83", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "夜宴の白芙蓉", - "alias_name_display": "夜宴の白芙蓉", - "id": "2414301", - "hash": "9dd0ceb4c25a93738fd68e7abe04ed50", - "profile": { - "height": "155", - "weight": "42", - "bust": "83", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "夜宴の白芙蓉", - "alias_name_display": "夜宴の白芙蓉", - "id": "2514302", - "hash": "733b81fd13ee7e9487977db31dae2e81", - "profile": { - "height": "155", - "weight": "42", - "bust": "83", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "希望の聖夜", - "alias_name_display": "希望の聖夜", - "id": "2419701", - "hash": "e3f8f4bf12f8b4d77ff1cec13f3d1cc6", - "profile": { - "height": "155", - "weight": "42", - "bust": "83", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "希望の聖夜", - "alias_name_display": "希望の聖夜", - "id": "2519702", - "hash": "c9f0d361ba7ba794be9a0870b20dfa93", - "profile": { - "height": "155", - "weight": "42", - "bust": "83", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "トゥルーフレーズ", - "alias_name_display": "トゥルーフレーズ", - "id": "2427201", - "hash": "16fb8740d56d5bd611a39d3b34f68dc1", - "profile": { - "height": "155", - "weight": "42", - "bust": "83", - "waist": "55", - "hip": "81" - }, - "event": [ - { - "event_id": 716, - "event_name": "第16回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "トゥルーフレーズ", - "alias_name_display": "トゥルーフレーズ", - "id": "2527202", - "hash": "680a961819a3b3abdbc4bff8e775f77c", - "profile": { - "height": "155", - "weight": "42", - "bust": "83", - "waist": "55", - "hip": "81" - }, - "event": [ - { - "event_id": 716, - "event_name": "第16回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "シンデレラドリーム", - "alias_name_display": "シンデレラドリーム", - "id": "2432401", - "hash": "69b474b2a628832f1417e240ae75d852", - "profile": { - "height": "155", - "weight": "42", - "bust": "83", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "シンデレラドリーム", - "alias_name_display": "シンデレラドリーム", - "id": "2532402", - "hash": "bfe0a1bc64586ae1ea9b4c596760ffe1", - "profile": { - "height": "155", - "weight": "42", - "bust": "83", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "きらめく夏色", - "alias_name_display": "きらめく夏色", - "id": "2434201", - "hash": "01d63e58192a6deee186a9f9d3bce2d9", - "profile": { - "height": "155", - "weight": "42", - "bust": "83", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "きらめく夏色", - "alias_name_display": "きらめく夏色", - "id": "2534202", - "hash": "dbf0e5fc40f2d08121adcb97cfe013d8", - "profile": { - "height": "155", - "weight": "42", - "bust": "83", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "テンダークリスタル", - "alias_name_display": "テンダークリスタル", - "id": "2436801", - "hash": "df7e2cdb0ec4b9b67f8718568e62641b", - "profile": { - "height": "155", - "weight": "42", - "bust": "83", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "テンダークリスタル", - "alias_name_display": "テンダークリスタル", - "id": "2536802", - "hash": "846cbe9ab87264c80ab22de8776c78a9", - "profile": { - "height": "155", - "weight": "42", - "bust": "83", - "waist": "55", - "hip": "81" - }, - "event": [] - } - ], - "units": [ - { - "id": "60", - "name": "モノクロームリリィ" - }, - { - "id": "127", - "name": "落花流水" - }, - { - "id": "144", - "name": "Triad Primus" - }, - { - "id": "192", - "name": "Masque:Rade" - }, - { - "id": "201", - "name": "Caskets" - }, - { - "id": "215", - "name": "Project:Krone" - } - ] - }, - "102": { - "idol_id": 102, - "idol_name": "ケイト", - "idol_name_display": "ケイト", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2201001", - "hash": "583f455902cb4a78514d6eae2037e178", - "profile": { - "height": "157", - "weight": "45", - "bust": "83", - "waist": "59", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2301002", - "hash": "e9dc3020f7c0a9b17cd4fe81e2b19c06", - "profile": { - "height": "157", - "weight": "45", - "bust": "83", - "waist": "59", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "UKスタイル", - "alias_name_display": "UKスタイル", - "id": "2207801", - "hash": "ce89872af095d6d542918865737692d0", - "profile": { - "height": "157", - "weight": "45", - "bust": "83", - "waist": "59", - "hip": "85" - }, - "event": [ - { - "event_id": 502, - "event_name": "アイドルLIVEツアーinイギリス" - } - ] - }, - { - "alias_name": "UKスタイル", - "alias_name_display": "UKスタイル", - "id": "2307802", - "hash": "0018fa3e6f76077d742f60a71ae9d9ae", - "profile": { - "height": "157", - "weight": "45", - "bust": "83", - "waist": "59", - "hip": "85" - }, - "event": [ - { - "event_id": 502, - "event_name": "アイドルLIVEツアーinイギリス" - } - ] - }, - { - "alias_name": "ピッチピチ☆ピーチ", - "alias_name_display": "ピッチピチ☆ピーチ", - "id": "2216001", - "hash": "813ab4f5eb52eaa3d7e228cfe1ee06c3", - "profile": { - "height": "157", - "weight": "45", - "bust": "83", - "waist": "59", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ピッチピチ☆ピーチ", - "alias_name_display": "ピッチピチ☆ピーチ", - "id": "2316002", - "hash": "f1cec9f8d3be0ecae1393821e4246fad", - "profile": { - "height": "157", - "weight": "45", - "bust": "83", - "waist": "59", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "バレンタインデビル", - "alias_name_display": "バレンタインデビル", - "id": "2219601", - "hash": "856f71d876bf6d3ad2fe96c51095397e", - "profile": { - "height": "157", - "weight": "45", - "bust": "83", - "waist": "59", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "バレンタインデビル", - "alias_name_display": "バレンタインデビル", - "id": "2319602", - "hash": "4b1fa677378483b3a62a6aa8acd8720b", - "profile": { - "height": "157", - "weight": "45", - "bust": "83", - "waist": "59", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "紅葉温泉", - "alias_name_display": "紅葉温泉", - "id": "2224001", - "hash": "8a35c69116be6ae367c4f422bedcfec5", - "profile": { - "height": "157", - "weight": "45", - "bust": "83", - "waist": "59", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "紅葉温泉", - "alias_name_display": "紅葉温泉", - "id": "2324002", - "hash": "42bc768dec405b1c0a70c399638efdaf", - "profile": { - "height": "157", - "weight": "45", - "bust": "83", - "waist": "59", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "リラックスプレイス", - "alias_name_display": "リラックスプレイス", - "id": "2226301", - "hash": "c9bfbeec109cbeaca409a2b420dbb865", - "profile": { - "height": "157", - "weight": "45", - "bust": "83", - "waist": "59", - "hip": "85" - }, - "event": [ - { - "event_id": "027", - "event_name": "第27回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "リラックスプレイス", - "alias_name_display": "リラックスプレイス", - "id": "2326302", - "hash": "336d185e08236f2f1a1aca4b54705398", - "profile": { - "height": "157", - "weight": "45", - "bust": "83", - "waist": "59", - "hip": "85" - }, - "event": [ - { - "event_id": "027", - "event_name": "第27回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "迎春神楽", - "alias_name_display": "迎春神楽", - "id": "2229901", - "hash": "4a24ef82ffe14e9063b5732f80a4de5b", - "profile": { - "height": "157", - "weight": "45", - "bust": "83", - "waist": "59", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "迎春神楽", - "alias_name_display": "迎春神楽", - "id": "2329902", - "hash": "0a07e2a4bba52f714420ba5947665f25", - "profile": { - "height": "157", - "weight": "45", - "bust": "83", - "waist": "59", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "スプラッシュビューティー", - "alias_name_display": "スプラッシュビューティー", - "id": "2408601", - "hash": "aa5bfe6bacceda82855bfd67597c8461", - "profile": { - "height": "157", - "weight": "45", - "bust": "83", - "waist": "59", - "hip": "85" - }, - "event": [ - { - "event_id": 211, - "event_name": "アイドルサバイバルinサマーバケーション" - } - ] - }, - { - "alias_name": "スプラッシュビューティー", - "alias_name_display": "スプラッシュビューティー", - "id": "2508602", - "hash": "1ab901851235156066b6c8d1ab519f22", - "profile": { - "height": "157", - "weight": "45", - "bust": "83", - "waist": "59", - "hip": "85" - }, - "event": [ - { - "event_id": 211, - "event_name": "アイドルサバイバルinサマーバケーション" - } - ] - }, - { - "alias_name": "シャッターチャンス", - "alias_name_display": "シャッターチャンス", - "id": "2424001", - "hash": "1a8e02458666accbaf80da3020365ab5", - "profile": { - "height": "157", - "weight": "45", - "bust": "83", - "waist": "59", - "hip": "85" - }, - "event": [ - { - "event_id": 1402, - "event_name": "第2回ぷちデレラコレクション" - } - ] - }, - { - "alias_name": "シャッターチャンス", - "alias_name_display": "シャッターチャンス", - "id": "2524002", - "hash": "e931ed75eb91bcd9735bc590a92c07d6", - "profile": { - "height": "157", - "weight": "45", - "bust": "83", - "waist": "59", - "hip": "85" - }, - "event": [ - { - "event_id": 1402, - "event_name": "第2回ぷちデレラコレクション" - } - ] - } - ], - "units": [ - { - "id": "37", - "name": "ナイトブルーレザー" - }, - { - "id": "125", - "name": "ユア・フレンズ" - }, - { - "id": "170", - "name": "UKスタイル" - } - ] - }, - "103": { - "idol_id": 103, - "idol_name": "瀬名詩織", - "idol_name_display": "瀬名詩織", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2201101", - "hash": "fff13e1315d12b403dc3d4e0d29f55eb", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "58", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2301102", - "hash": "034a9852b29dbc0b2308204b575a6bbd", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "58", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "マーメイドパラダイス", - "alias_name_display": "マーメイドパラダイス", - "id": "2205201", - "hash": "70cdd1add523e358191d5af81ed40a2d", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "58", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "マーメイドパラダイス", - "alias_name_display": "マーメイドパラダイス", - "id": "2305202", - "hash": "3bfdd43bed9438273cd3e7018e9cdd12", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "58", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "ハッピーウェディング", - "alias_name_display": "ハッピーウェディング", - "id": "2216201", - "hash": "c5fe53e9e75145b9e155df1133f562b9", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "58", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "ハッピーウェディング", - "alias_name_display": "ハッピーウェディング", - "id": "2316202", - "hash": "1b4fccc2662d8ffbb0e171e6ed088f08", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "58", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "レディロッサ", - "alias_name_display": "レディロッサ", - "id": "2322002", - "hash": "7e27f0eb3f898113a98097901e421c25", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "58", - "hip": "83" - }, - "event": [ - { - "event_id": 1304, - "event_name": "第4回プロダクションマッチフェスティバルS" - } - ] - }, - { - "alias_name": "メイクオーバー", - "alias_name_display": "メイクオーバー", - "id": "2229401", - "hash": "405d9f977eb9e5ae55806f8681022813", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "58", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "メイクオーバー", - "alias_name_display": "メイクオーバー", - "id": "2329402", - "hash": "3baa4206d90f9d4411968bd934e8cb91", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "58", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "オーシャンズギフト", - "alias_name_display": "オーシャンズギフト", - "id": "2232201", - "hash": "2f1fec2362b65429cfbdbfa86c0e4fc6", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "58", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "オーシャンズギフト", - "alias_name_display": "オーシャンズギフト", - "id": "2332202", - "hash": "d645469362599b364cefb3ec192bc716", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "58", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "白波の歌姫", - "alias_name_display": "白波の歌姫", - "id": "2407601", - "hash": "1bc4222250340e81704f822d87ef28ee", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "58", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "白波の歌姫", - "alias_name_display": "白波の歌姫", - "id": "2507602", - "hash": "492654aed867cdcad6f852b3f2c644ea", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "58", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "ラッシュ・ロワイヤル", - "alias_name_display": "ラッシュ・ロワイヤル", - "id": "2418401", - "hash": "c2b247795dc4ab5555062010e1f49218", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "58", - "hip": "83" - }, - "event": [ - { - "event_id": 807, - "event_name": "第7回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ラッシュ・ロワイヤル", - "alias_name_display": "ラッシュ・ロワイヤル", - "id": "2518402", - "hash": "12327daf4fd261820750b0cdd031c72f", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "58", - "hip": "83" - }, - "event": [ - { - "event_id": 807, - "event_name": "第7回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ドリームブライト", - "alias_name_display": "ドリームブライト", - "id": "2432501", - "hash": "4298819e543828c4fe4d52415ce2b7a2", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "58", - "hip": "83" - }, - "event": [ - { - "event_id": 721, - "event_name": "第21回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ドリームブライト", - "alias_name_display": "ドリームブライト", - "id": "2532502", - "hash": "8518eb7db20611b6e579e44780f6fe24", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "58", - "hip": "83" - }, - "event": [ - { - "event_id": 721, - "event_name": "第21回ドリームLIVEフェスティバル" - } - ] - } - ], - "units": [ - { - "id": "132", - "name": "thinE/Dasein" - }, - { - "id": "171", - "name": "Black/White-Roses" - }, - { - "id": "182", - "name": "マーメイドパラダイス" - } - ] - }, - "104": { - "idol_id": 104, - "idol_name": "綾瀬穂乃香", - "idol_name_display": "綾瀬穂乃香", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2201201", - "hash": "86972ac887ef7cdbd493b5c04cdfd8ae", - "profile": { - "height": "161", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2301202", - "hash": "829397535a2dda749dc533961eae03e1", - "profile": { - "height": "161", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "制服コレクション", - "alias_name_display": "制服コレクション", - "id": "2209101", - "hash": "e2fa19e51b793a88860a1fa01d773b5d", - "profile": { - "height": "161", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "制服コレクション", - "alias_name_display": "制服コレクション", - "id": "2309102", - "hash": "ef5260d9e7b2be838b8fe51c98a17dea", - "profile": { - "height": "161", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "プリマ・ガール", - "alias_name_display": "プリマ・ガール", - "id": "2212501", - "hash": "65aa48277443a7498e3181e6ded0f4bd", - "profile": { - "height": "161", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "プリマ・ガール", - "alias_name_display": "プリマ・ガール", - "id": "2312502", - "hash": "a5794d6e6f993dad76d41c59f7564169", - "profile": { - "height": "161", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "夏祭り", - "alias_name_display": "夏祭り", - "id": "2321702", - "hash": "b87250559476bd36e7a4edd44b2eb222", - "profile": { - "height": "161", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "84" - }, - "event": [ - { - "event_id": 714, - "event_name": "夏祭りDEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "努力のメソッド", - "alias_name_display": "努力のメソッド", - "id": "2226601", - "hash": "0ad081c3907847d493a7affac9507fe7", - "profile": { - "height": "161", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "努力のメソッド", - "alias_name_display": "努力のメソッド", - "id": "2326602", - "hash": "49cc7476bd18bdeef7db013a4800066e", - "profile": { - "height": "161", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "迎春神楽", - "alias_name_display": "迎春神楽", - "id": "2229801", - "hash": "89abb5eb2a87fa7139ae8a92c5d53de3", - "profile": { - "height": "161", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "迎春神楽", - "alias_name_display": "迎春神楽", - "id": "2329802", - "hash": "b94589aec610282ec14866f5256f6d69", - "profile": { - "height": "161", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "ベーカリーI.C", - "alias_name_display": "ベーカリーI.C", - "id": "2332102", - "hash": "acfd757cd1d818e44a257bab42cbc34f", - "profile": { - "height": "161", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "ピュアハート", - "alias_name_display": "ピュアハート", - "id": "2401001", - "hash": "9bd2a6f5cc1748d651d0e2ecf34b0b37", - "profile": { - "height": "161", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "84" - }, - "event": [ - { - "event_id": 103, - "event_name": "バレンタインパーティー" - } - ] - }, - { - "alias_name": "ピュアハート", - "alias_name_display": "ピュアハート", - "id": "2501002", - "hash": "381325f3180288e9b294f4fe6895063c", - "profile": { - "height": "161", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "84" - }, - "event": [ - { - "event_id": 103, - "event_name": "バレンタインパーティー" - } - ] - }, - { - "alias_name": "ドキドキ☆チャレンジ", - "alias_name_display": "ドキドキ☆チャレンジ", - "id": "2412601", - "hash": "99fbb3e80d42f6a456d1f1dbbfbe2ad9", - "profile": { - "height": "161", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "ドキドキ☆チャレンジ", - "alias_name_display": "ドキドキ☆チャレンジ", - "id": "2512602", - "hash": "cf78a1a8fa2662da9903e87ff7fc35cd", - "profile": { - "height": "161", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "クロネコチアー", - "alias_name_display": "クロネコチアー", - "id": "2418601", - "hash": "9165c2689a8b2dc898abea7c588bf4fb", - "profile": { - "height": "161", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "84" - }, - "event": [ - { - "event_id": 1106, - "event_name": "プロダクション対抗トークバトルショー ハロウィンSP" - } - ] - }, - { - "alias_name": "クロネコチアー", - "alias_name_display": "クロネコチアー", - "id": "2518602", - "hash": "4c7ad97f4e839bcc5a54b54bd69b731b", - "profile": { - "height": "161", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "84" - }, - "event": [ - { - "event_id": 1106, - "event_name": "プロダクション対抗トークバトルショー ハロウィンSP" - } - ] - }, - { - "alias_name": "ロワイヤル・スクエア", - "alias_name_display": "ロワイヤル・スクエア", - "id": "2420601", - "hash": "f7cf30adf9a3efe1c1994729fb9e5d2a", - "profile": { - "height": "161", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "84" - }, - "event": [ - { - "event_id": 809, - "event_name": "第9回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ロワイヤル・スクエア", - "alias_name_display": "ロワイヤル・スクエア", - "id": "2520602", - "hash": "582c4b7e8369b6f5cb65c7a949a59d98", - "profile": { - "height": "161", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "84" - }, - "event": [ - { - "event_id": 809, - "event_name": "第9回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "クーリッシュラブリー", - "alias_name_display": "クーリッシュラブリー", - "id": "2428201", - "hash": "735912142ede0bd3c2379e81506ebf51", - "profile": { - "height": "161", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "84" - }, - "event": [ - { - "event_id": 1404, - "event_name": "第4回ぷちデレラコレクション" - } - ] - }, - { - "alias_name": "クーリッシュラブリー", - "alias_name_display": "クーリッシュラブリー", - "id": "2528202", - "hash": "64be02ca19b0210c83956d56b53baa98", - "profile": { - "height": "161", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "84" - }, - "event": [ - { - "event_id": 1404, - "event_name": "第4回ぷちデレラコレクション" - } - ] - }, - { - "alias_name": "慕われベーカー", - "alias_name_display": "慕われベーカー", - "id": "2440001", - "hash": "de632bfbfe98d8ca7dff701c187659b9", - "profile": { - "height": "161", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "84" - }, - "event": [ - { - "event_id": 1216, - "event_name": "先生と一緒に♪目指せおいしいパン作り アイドルチャレンジ" - } - ] - }, - { - "alias_name": "慕われベーカー", - "alias_name_display": "慕われベーカー", - "id": "2540002", - "hash": "6e75966bbcafc0541424c8d8f7b4fcd6", - "profile": { - "height": "161", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "84" - }, - "event": [ - { - "event_id": 1216, - "event_name": "先生と一緒に♪目指せおいしいパン作り アイドルチャレンジ" - } - ] - }, - { - "alias_name": "ほほえみベーカー", - "alias_name_display": "ほほえみベーカー", - "id": "2440101", - "hash": "b5e8d9784a291c73d1d7dedf4596a79c", - "profile": { - "height": "161", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "ほほえみベーカー", - "alias_name_display": "ほほえみベーカー", - "id": "2540102", - "hash": "2c7b6d96a1fb1e0ca98ca465fa67c848", - "profile": { - "height": "161", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "84" - }, - "event": [] - } - ], - "units": [ - { - "id": "163", - "name": "フリルドスクエア" - } - ] - }, - "105": { - "idol_id": 105, - "idol_name": "佐城雪美", - "idol_name_display": "佐城雪美", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2201301", - "hash": "ea5f708af5590fa7d0ae03018ef7c4fd", - "profile": { - "height": "137", - "weight": "30", - "bust": "63", - "waist": "47", - "hip": "65" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2301302", - "hash": "3722850cc72d17384b34480a8430cac6", - "profile": { - "height": "137", - "weight": "30", - "bust": "63", - "waist": "47", - "hip": "65" - }, - "event": [] - }, - { - "alias_name": "セレクトメイド", - "alias_name_display": "セレクトメイド", - "id": "2214601", - "hash": "3f951d9ae741667ca9f12e59abda200d", - "profile": { - "height": "137", - "weight": "30", - "bust": "63", - "waist": "47", - "hip": "65" - }, - "event": [] - }, - { - "alias_name": "セレクトメイド", - "alias_name_display": "セレクトメイド", - "id": "2314602", - "hash": "ac248d004a5dd805137fdc498e3e7727", - "profile": { - "height": "137", - "weight": "30", - "bust": "63", - "waist": "47", - "hip": "65" - }, - "event": [] - }, - { - "alias_name": "T.B.チアーズ", - "alias_name_display": "T.B.チアーズ", - "id": "2217801", - "hash": "7733b9b3450c4ec115f67d4f00c15a76", - "profile": { - "height": "137", - "weight": "30", - "bust": "63", - "waist": "47", - "hip": "65" - }, - "event": [ - { - "event_id": 1105, - "event_name": "第5回プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "T.B.チアーズ", - "alias_name_display": "T.B.チアーズ", - "id": "2317802", - "hash": "57b35cdd62ee9d80eac805a4d238e032", - "profile": { - "height": "137", - "weight": "30", - "bust": "63", - "waist": "47", - "hip": "65" - }, - "event": [ - { - "event_id": 1105, - "event_name": "第5回プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "新春ガール", - "alias_name_display": "新春ガール", - "id": "2224501", - "hash": "c65bf606e70d6198e249127bd4bfeceb", - "profile": { - "height": "137", - "weight": "30", - "bust": "63", - "waist": "47", - "hip": "65" - }, - "event": [] - }, - { - "alias_name": "新春ガール", - "alias_name_display": "新春ガール", - "id": "2324502", - "hash": "0be443f0e1a964e0a77940d87b72089f", - "profile": { - "height": "137", - "weight": "30", - "bust": "63", - "waist": "47", - "hip": "65" - }, - "event": [] - }, - { - "alias_name": "プチ・マドモアゼル", - "alias_name_display": "プチ・マドモアゼル", - "id": "2402401", - "hash": "b765e76345cd9a4fa8b071a3e5764e96", - "profile": { - "height": "137", - "weight": "30", - "bust": "63", - "waist": "47", - "hip": "65" - }, - "event": [ - { - "event_id": "003", - "event_name": "第3回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "プチ・マドモアゼル", - "alias_name_display": "プチ・マドモアゼル", - "id": "2502402", - "hash": "d1867fe96fed3771cbbf73cc35af08ea", - "profile": { - "height": "137", - "weight": "30", - "bust": "63", - "waist": "47", - "hip": "65" - }, - "event": [ - { - "event_id": "003", - "event_name": "第3回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "クリスマスドール", - "alias_name_display": "クリスマスドール", - "id": "2404301", - "hash": "f3393d71e257bdf3a2e4ca51772ef2be", - "profile": { - "height": "137", - "weight": "30", - "bust": "63", - "waist": "47", - "hip": "65" - }, - "event": [] - }, - { - "alias_name": "クリスマスドール", - "alias_name_display": "クリスマスドール", - "id": "2504302", - "hash": "b41f85ebc71b158b26cbddfde963c525", - "profile": { - "height": "137", - "weight": "30", - "bust": "63", - "waist": "47", - "hip": "65" - }, - "event": [] - }, - { - "alias_name": "夏宵のお嬢様", - "alias_name_display": "夏宵のお嬢様", - "id": "2408001", - "hash": "1b14103e8c942735e3f68012c1bceee4", - "profile": { - "height": "137", - "weight": "30", - "bust": "63", - "waist": "47", - "hip": "65" - }, - "event": [ - { - "event_id": 408, - "event_name": "アイドルプロデュース 夜空に咲く花火編" - } - ] - }, - { - "alias_name": "夏宵のお嬢様", - "alias_name_display": "夏宵のお嬢様", - "id": "2508002", - "hash": "1ebec92842779992268a13bd4a21bdb2", - "profile": { - "height": "137", - "weight": "30", - "bust": "63", - "waist": "47", - "hip": "65" - }, - "event": [ - { - "event_id": 408, - "event_name": "アイドルプロデュース 夜空に咲く花火編" - } - ] - }, - { - "alias_name": "マーチング☆メロディー", - "alias_name_display": "マーチング☆メロディー", - "id": "2422701", - "hash": "4d4711956ba85d9c8fcbb4b0fe2f9fe8", - "profile": { - "height": "137", - "weight": "30", - "bust": "63", - "waist": "47", - "hip": "65" - }, - "event": [] - }, - { - "alias_name": "マーチング☆メロディー", - "alias_name_display": "マーチング☆メロディー", - "id": "2522702", - "hash": "0f9faea779c6b958772df3beae2c0969", - "profile": { - "height": "137", - "weight": "30", - "bust": "63", - "waist": "47", - "hip": "65" - }, - "event": [] - }, - { - "alias_name": "小さなドキドキ", - "alias_name_display": "小さなドキドキ", - "id": "2426201", - "hash": "b2a4e884c5dea362551b34d22975a824", - "profile": { - "height": "137", - "weight": "30", - "bust": "63", - "waist": "47", - "hip": "65" - }, - "event": [ - { - "event_id": 1403, - "event_name": "第3回ぷちデレラコレクション" - } - ] - }, - { - "alias_name": "小さなドキドキ", - "alias_name_display": "小さなドキドキ", - "id": "2526202", - "hash": "368396982ecee85ed01ac8aae39086b1", - "profile": { - "height": "137", - "weight": "30", - "bust": "63", - "waist": "47", - "hip": "65" - }, - "event": [ - { - "event_id": 1403, - "event_name": "第3回ぷちデレラコレクション" - } - ] - }, - { - "alias_name": "紺青のゆらめき", - "alias_name_display": "紺青のゆらめき", - "id": "2432301", - "hash": "a72b17701c91600e7de7ad03eaacb779", - "profile": { - "height": "137", - "weight": "30", - "bust": "63", - "waist": "47", - "hip": "65" - }, - "event": [] - }, - { - "alias_name": "紺青のゆらめき", - "alias_name_display": "紺青のゆらめき", - "id": "2532302", - "hash": "cbbfe22229dab51ecdb033d78869a359", - "profile": { - "height": "137", - "weight": "30", - "bust": "63", - "waist": "47", - "hip": "65" - }, - "event": [] - }, - { - "alias_name": "ドーリー・ロワイヤル", - "alias_name_display": "ドーリー・ロワイヤル", - "id": "2437301", - "hash": "bac71801e52aed85607e0ac568eedb15", - "profile": { - "height": "137", - "weight": "30", - "bust": "63", - "waist": "47", - "hip": "65" - }, - "event": [ - { - "event_id": 821, - "event_name": "第21回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ドーリー・ロワイヤル", - "alias_name_display": "ドーリー・ロワイヤル", - "id": "2537302", - "hash": "674f4cb361e967bca336653539ed6613", - "profile": { - "height": "137", - "weight": "30", - "bust": "63", - "waist": "47", - "hip": "65" - }, - "event": [ - { - "event_id": 821, - "event_name": "第21回アイドルLIVEロワイヤル" - } - ] - } - ], - "units": [ - { - "id": "211", - "name": "ワンダー・フル" - }, - { - "id": "214", - "name": "L.M.B.G" - } - ] - }, - "106": { - "idol_id": 106, - "idol_name": "如月千早", - "idol_name_display": "如月千早", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2201401", - "hash": "6266f471377bc1698b58ddd4638ead09", - "profile": { - "height": "162", - "weight": "41", - "bust": "72", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2301402", - "hash": "9c713eb6f7e6bab427ce008655b9e9a9", - "profile": { - "height": "162", - "weight": "41", - "bust": "72", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "制服ブルー", - "alias_name_display": "制服ブルー", - "id": "2202601", - "hash": "d01c7b35bb21f8e63a8410fc4c644ce4", - "profile": { - "height": "162", - "weight": "41", - "bust": "72", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "制服ベージュ", - "alias_name_display": "制服ベージュ", - "id": "2202602", - "hash": "7b80fbc184731895e18d4d04b69d4af5", - "profile": { - "height": "162", - "weight": "41", - "bust": "72", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "制服レッド", - "alias_name_display": "制服レッド", - "id": "2202603", - "hash": "d7732a8d0a3fdfc3060ca2897187f188", - "profile": { - "height": "162", - "weight": "41", - "bust": "72", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "制服グリーン", - "alias_name_display": "制服グリーン", - "id": "2202604", - "hash": "3d78511d3da1db3fb51a938c8dd968d1", - "profile": { - "height": "162", - "weight": "41", - "bust": "72", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "ピンクダイヤモンド765", - "alias_name_display": "ピンクダイヤモンド765", - "id": "2302605", - "hash": "306b770ebb8f0cf8f990c4d7e3720910", - "profile": { - "height": "162", - "weight": "41", - "bust": "72", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "パウダースノーホワイティ", - "alias_name_display": "パウダースノーホワイティ", - "id": "2302606", - "hash": "c486d656f7e2b62acee082e7311ab881", - "profile": { - "height": "162", - "weight": "41", - "bust": "72", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "ファイアオパール76ct", - "alias_name_display": "ファイアオパール76ct", - "id": "2302607", - "hash": "91f73d36b69535cd4578ec74637c6059", - "profile": { - "height": "162", - "weight": "41", - "bust": "72", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "レザードクィーン", - "alias_name_display": "レザードクィーン", - "id": "2302608", - "hash": "c8f06e16aaa220f282b912a6b05ff4d7", - "profile": { - "height": "162", - "weight": "41", - "bust": "72", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "ハイネスルージュ", - "alias_name_display": "ハイネスルージュ", - "id": "2302609", - "hash": "f68f6ba5aaa28606a5d9290ea4e7db4d", - "profile": { - "height": "162", - "weight": "41", - "bust": "72", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "孤高の歌姫", - "alias_name_display": "孤高の歌姫", - "id": "2400101", - "hash": "0d39c65b94d1a11cae537f6886dbb97a", - "profile": { - "height": "162", - "weight": "41", - "bust": "72", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "孤高の歌姫", - "alias_name_display": "孤高の歌姫", - "id": "2500102", - "hash": "d2b23ca96d8ec3e6e9d06a33fc2ab472", - "profile": { - "height": "162", - "weight": "41", - "bust": "72", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "瑠璃の歌姫", - "alias_name_display": "瑠璃の歌姫", - "id": "2400910", - "hash": "5b51c5da302fb24a3a7af06ba2df4b1e", - "profile": { - "height": "162", - "weight": "41", - "bust": "72", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "瑠璃の歌姫", - "alias_name_display": "瑠璃の歌姫", - "id": "2500911", - "hash": "333569a4bc55998dc01ad3a8a2f91cc3", - "profile": { - "height": "162", - "weight": "41", - "bust": "72", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "スクーリッシュガール", - "alias_name_display": "スクーリッシュガール", - "id": "2501802", - "hash": "6825521e806675ddeb47bc1fce922ed7", - "profile": { - "height": "162", - "weight": "41", - "bust": "72", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "アーリーサマーバカンス", - "alias_name_display": "アーリーサマーバカンス", - "id": "2507502", - "hash": "dfe34529a4dc472ca44c6ad923e44b5b", - "profile": { - "height": "162", - "weight": "41", - "bust": "72", - "waist": "55", - "hip": "78" - }, - "event": [] - } - ] - }, - "107": { - "idol_id": 107, - "idol_name": "三浦あずさ", - "idol_name_display": "三浦あずさ", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2201501", - "hash": "70716895c47fcf16e1441bb913c05bb8", - "profile": { - "height": "168", - "weight": "48", - "bust": "91", - "waist": "59", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2301502", - "hash": "17994e5072cc7b760383dda8e199ada2", - "profile": { - "height": "168", - "weight": "48", - "bust": "91", - "waist": "59", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "皆のお姉さん", - "alias_name_display": "皆のお姉さん", - "id": "2400201", - "hash": "84b97983ec5badf26de49cc9f4a9a14f", - "profile": { - "height": "168", - "weight": "48", - "bust": "91", - "waist": "59", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "皆のお姉さん", - "alias_name_display": "皆のお姉さん", - "id": "2500202", - "hash": "e2580dce271a51554eb13c46c36d2adc", - "profile": { - "height": "168", - "weight": "48", - "bust": "91", - "waist": "59", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "エステル衣装", - "alias_name_display": "エステル衣装", - "id": "2500602", - "hash": "035141c2768cddbab1153b2dcbcb3013", - "profile": { - "height": "168", - "weight": "48", - "bust": "91", - "waist": "59", - "hip": "86" - }, - "event": [] - } - ] - }, - "108": { - "idol_id": 108, - "idol_name": "秋月律子", - "idol_name_display": "秋月律子", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2201601", - "hash": "30a17a9dccef3c222df1abb5ffcd7a01", - "profile": { - "height": "156", - "weight": "43", - "bust": "85", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2301602", - "hash": "945ac71535e44e4a84b49f9ff08ae9df", - "profile": { - "height": "156", - "weight": "43", - "bust": "85", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "プロデューサーアイドル", - "alias_name_display": "プロデューサーアイドル", - "id": "2402301", - "hash": "6561a1f85b71bd4a9d8777ce46ea3cb4", - "profile": { - "height": "156", - "weight": "43", - "bust": "85", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "プロデューサーアイドル", - "alias_name_display": "プロデューサーアイドル", - "id": "2502302", - "hash": "1b3a397157d4c390983480f0b8ebb2a1", - "profile": { - "height": "156", - "weight": "43", - "bust": "85", - "waist": "57", - "hip": "85" - }, - "event": [] - } - ] - }, - "109": { - "idol_id": 109, - "idol_name": "四条貴音", - "idol_name_display": "四条貴音", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2201701", - "hash": "ecc6dd0013d9d3d8ae24947d77a78192", - "profile": { - "height": "169", - "weight": "49", - "bust": "90", - "waist": "62", - "hip": "92" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2301702", - "hash": "ef24b54f844eae492aa0c8b4c7b2e0b1", - "profile": { - "height": "169", - "weight": "49", - "bust": "90", - "waist": "62", - "hip": "92" - }, - "event": [] - }, - { - "alias_name": "デビュタントピンク", - "alias_name_display": "デビュタントピンク", - "id": "2204701", - "hash": "6969734196b2f2b3875802f7057d9a46", - "profile": { - "height": "169", - "weight": "49", - "bust": "90", - "waist": "62", - "hip": "92" - }, - "event": [] - }, - { - "alias_name": "デビュタントブルー", - "alias_name_display": "デビュタントブルー", - "id": "2204702", - "hash": "a2ce78a81c9ec000846083b74c110f15", - "profile": { - "height": "169", - "weight": "49", - "bust": "90", - "waist": "62", - "hip": "92" - }, - "event": [] - }, - { - "alias_name": "デビュタントブラック", - "alias_name_display": "デビュタントブラック", - "id": "2204703", - "hash": "690c223b272695a6d34dc486d2afde95", - "profile": { - "height": "169", - "weight": "49", - "bust": "90", - "waist": "62", - "hip": "92" - }, - "event": [] - }, - { - "alias_name": "デビュタントホワイト", - "alias_name_display": "デビュタントホワイト", - "id": "2204704", - "hash": "50fa6a567d514c9179aa866da882f542", - "profile": { - "height": "169", - "weight": "49", - "bust": "90", - "waist": "62", - "hip": "92" - }, - "event": [] - }, - { - "alias_name": "ピンクダイヤモンド765", - "alias_name_display": "ピンクダイヤモンド765", - "id": "2304705", - "hash": "87c822ee1ff22341326235a223f61a3d", - "profile": { - "height": "169", - "weight": "49", - "bust": "90", - "waist": "62", - "hip": "92" - }, - "event": [] - }, - { - "alias_name": "スカイパズラー", - "alias_name_display": "スカイパズラー", - "id": "2304706", - "hash": "6e808ea3c7b1ba70625f267cabaa8008", - "profile": { - "height": "169", - "weight": "49", - "bust": "90", - "waist": "62", - "hip": "92" - }, - "event": [] - }, - { - "alias_name": "メイデンインブラック", - "alias_name_display": "メイデンインブラック", - "id": "2304707", - "hash": "84b5d07825dcc54fcfb3fdb71c1ee3e6", - "profile": { - "height": "169", - "weight": "49", - "bust": "90", - "waist": "62", - "hip": "92" - }, - "event": [] - }, - { - "alias_name": "スカーレットスプライト", - "alias_name_display": "スカーレットスプライト", - "id": "2304708", - "hash": "13b52bd8c6be2d03f0a1125160c38620", - "profile": { - "height": "169", - "weight": "49", - "bust": "90", - "waist": "62", - "hip": "92" - }, - "event": [] - }, - { - "alias_name": "ギルデッドマドモアゼル", - "alias_name_display": "ギルデッドマドモアゼル", - "id": "2304709", - "hash": "7e3688a45dcde6ac996e300c046e8df6", - "profile": { - "height": "169", - "weight": "49", - "bust": "90", - "waist": "62", - "hip": "92" - }, - "event": [] - }, - { - "alias_name": "銀色の王女", - "alias_name_display": "銀色の王女", - "id": "2400801", - "hash": "ce4bd80928c636bf1dc75260f561f97a", - "profile": { - "height": "169", - "weight": "49", - "bust": "90", - "waist": "62", - "hip": "92" - }, - "event": [] - }, - { - "alias_name": "銀色の王女", - "alias_name_display": "銀色の王女", - "id": "2500802", - "hash": "07e8a45d27c4a45e2c271aeaa5b38c91", - "profile": { - "height": "169", - "weight": "49", - "bust": "90", - "waist": "62", - "hip": "92" - }, - "event": [] - }, - { - "alias_name": "鏡花水月", - "alias_name_display": "鏡花水月", - "id": "2402210", - "hash": "828a4a1ec46c8d6deb0eba32090ba9cb", - "profile": { - "height": "169", - "weight": "49", - "bust": "90", - "waist": "62", - "hip": "92" - }, - "event": [] - }, - { - "alias_name": "鏡花水月", - "alias_name_display": "鏡花水月", - "id": "2502211", - "hash": "6957fb77f5d5d67695e7f50dbfa36ab0", - "profile": { - "height": "169", - "weight": "49", - "bust": "90", - "waist": "62", - "hip": "92" - }, - "event": [] - }, - { - "alias_name": "1stアニバーサリー", - "alias_name_display": "1stアニバーサリー", - "id": "2504102", - "hash": "166fb623aae4d975387c3fbc8770a099", - "profile": { - "height": "169", - "weight": "49", - "bust": "90", - "waist": "62", - "hip": "92" - }, - "event": [] - } - ] - }, - "110": { - "idol_id": 110, - "idol_name": "篠原礼", - "idol_name_display": "篠原礼", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2201801", - "hash": "0279e0bfe3a06fed6d20b88fea031a7a", - "profile": { - "height": "171", - "weight": "49", - "bust": "93", - "waist": "58", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2301802", - "hash": "7cd1a870c72ca2735908ddd66f81810b", - "profile": { - "height": "171", - "weight": "49", - "bust": "93", - "waist": "58", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "ハロウィンナイト", - "alias_name_display": "ハロウィンナイト", - "id": "2212301", - "hash": "8879f0329b71adf6b1abf6fb9d6a5bb6", - "profile": { - "height": "171", - "weight": "49", - "bust": "93", - "waist": "58", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "ハロウィンナイト", - "alias_name_display": "ハロウィンナイト", - "id": "2312302", - "hash": "e81e141fc2930933396e6f82f3752454", - "profile": { - "height": "171", - "weight": "49", - "bust": "93", - "waist": "58", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "美の商人", - "alias_name_display": "美の商人", - "id": "2219301", - "hash": "fb122260ba37bf6f6f32f4f022ed1057", - "profile": { - "height": "171", - "weight": "49", - "bust": "93", - "waist": "58", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "美の商人", - "alias_name_display": "美の商人", - "id": "2319302", - "hash": "546e3e4addf32b2699b404b4a31986e7", - "profile": { - "height": "171", - "weight": "49", - "bust": "93", - "waist": "58", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "サポートレディ", - "alias_name_display": "サポートレディ", - "id": "2324702", - "hash": "11af6a1079aed45abb135d98fe6f2845", - "profile": { - "height": "171", - "weight": "49", - "bust": "93", - "waist": "58", - "hip": "88" - }, - "event": [ - { - "event_id": 523, - "event_name": "鋼鉄公演 きらりんロボ -襲来!コスメティア帝国-" - } - ] - }, - { - "alias_name": "ロワイヤルスタイルND", - "alias_name_display": "ロワイヤルスタイルND", - "id": "2228701", - "hash": "365839f8844308b4839461dd4a306d93", - "profile": { - "height": "171", - "weight": "49", - "bust": "93", - "waist": "58", - "hip": "88" - }, - "event": [ - { - "event_id": 819, - "event_name": "アイドルLIVEロワイヤル お月見SP" - } - ] - }, - { - "alias_name": "ロワイヤルスタイルND", - "alias_name_display": "ロワイヤルスタイルND", - "id": "2328702", - "hash": "87d0eaea9cf36828555acb4e6d2bc8dd", - "profile": { - "height": "171", - "weight": "49", - "bust": "93", - "waist": "58", - "hip": "88" - }, - "event": [ - { - "event_id": 819, - "event_name": "アイドルLIVEロワイヤル お月見SP" - } - ] - }, - { - "alias_name": "意外な一面", - "alias_name_display": "意外な一面", - "id": "2415501", - "hash": "6ec5a36a72a58e3a52a59bfd4c82c30a", - "profile": { - "height": "171", - "weight": "49", - "bust": "93", - "waist": "58", - "hip": "88" - }, - "event": [ - { - "event_id": 707, - "event_name": "第7回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "意外な一面", - "alias_name_display": "意外な一面", - "id": "2515502", - "hash": "8866ceff2565f6f6d52ad2a6e7a3fa24", - "profile": { - "height": "171", - "weight": "49", - "bust": "93", - "waist": "58", - "hip": "88" - }, - "event": [ - { - "event_id": 707, - "event_name": "第7回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "アトラクティブレディ", - "alias_name_display": "アトラクティブレディ", - "id": "2424301", - "hash": "1b18dca284fedc5a3a8f048920f28a1c", - "profile": { - "height": "171", - "weight": "49", - "bust": "93", - "waist": "58", - "hip": "88" - }, - "event": [ - { - "event_id": 713, - "event_name": "第13回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "アトラクティブレディ", - "alias_name_display": "アトラクティブレディ", - "id": "2524302", - "hash": "084e23921a2680662428a561923bb395", - "profile": { - "height": "171", - "weight": "49", - "bust": "93", - "waist": "58", - "hip": "88" - }, - "event": [ - { - "event_id": 713, - "event_name": "第13回ドリームLIVEフェスティバル" - } - ] - } - ], - "units": [ - { - "id": "161", - "name": "ハロウィンナイト" - }, - { - "id": "206", - "name": "セクシーボンデージ" - }, - { - "id": "210", - "name": "ロワイヤルスタイルND" - } - ] - }, - "111": { - "idol_id": 111, - "idol_name": "和久井留美", - "idol_name_display": "和久井留美", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2202101", - "hash": "b73e3bd3f986371ca390c06539f30f2e", - "profile": { - "height": "168", - "weight": "49", - "bust": "81", - "waist": "60", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2302102", - "hash": "b1cc240b628c799f43e40e3187fe854d", - "profile": { - "height": "168", - "weight": "50", - "bust": "82", - "waist": "60", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "オフスタイルネイビー", - "alias_name_display": "オフスタイルネイビー", - "id": "2204201", - "hash": "e00193ce7e4fb576c82d218d2b18b733", - "profile": { - "height": "168", - "weight": "50", - "bust": "82", - "waist": "60", - "hip": "86" - }, - "event": [ - { - "event_id": 105, - "event_name": "きらめくブライダルショー" - } - ] - }, - { - "alias_name": "オフスタイルグリーン", - "alias_name_display": "オフスタイルグリーン", - "id": "2204202", - "hash": "2382d33c9aed1fd427050e60d36da85a", - "profile": { - "height": "168", - "weight": "50", - "bust": "82", - "waist": "60", - "hip": "86" - }, - "event": [ - { - "event_id": 105, - "event_name": "きらめくブライダルショー" - } - ] - }, - { - "alias_name": "オフスタイルブラウン", - "alias_name_display": "オフスタイルブラウン", - "id": "2204203", - "hash": "c22a01b2e037f0c682b49529075995cb", - "profile": { - "height": "168", - "weight": "50", - "bust": "82", - "waist": "60", - "hip": "86" - }, - "event": [ - { - "event_id": 105, - "event_name": "きらめくブライダルショー" - } - ] - }, - { - "alias_name": "オフスタイルローズグレイ", - "alias_name_display": "オフスタイルローズグレイ", - "id": "2204204", - "hash": "36981cf43b6efc635d83a00cf1907580", - "profile": { - "height": "168", - "weight": "50", - "bust": "82", - "waist": "60", - "hip": "86" - }, - "event": [ - { - "event_id": 105, - "event_name": "きらめくブライダルショー" - } - ] - }, - { - "alias_name": "ドレスアップパープル", - "alias_name_display": "ドレスアップパープル", - "id": "2304205", - "hash": "314c5bfcaeecf15de958fd77d49740f2", - "profile": { - "height": "168", - "weight": "50", - "bust": "82", - "waist": "60", - "hip": "86" - }, - "event": [ - { - "event_id": 105, - "event_name": "きらめくブライダルショー" - } - ] - }, - { - "alias_name": "ドレスアップレッド", - "alias_name_display": "ドレスアップレッド", - "id": "2304206", - "hash": "5f8a3f98486604275267c877b9905349", - "profile": { - "height": "168", - "weight": "50", - "bust": "82", - "waist": "60", - "hip": "86" - }, - "event": [ - { - "event_id": 105, - "event_name": "きらめくブライダルショー" - } - ] - }, - { - "alias_name": "ドレスアップホワイト", - "alias_name_display": "ドレスアップホワイト", - "id": "2304207", - "hash": "a313a6d6050a1e06b6087b272789f86a", - "profile": { - "height": "168", - "weight": "50", - "bust": "82", - "waist": "60", - "hip": "86" - }, - "event": [ - { - "event_id": 105, - "event_name": "きらめくブライダルショー" - } - ] - }, - { - "alias_name": "ドレスアップボルドー", - "alias_name_display": "ドレスアップボルドー", - "id": "2304208", - "hash": "b15320c5e2f4786b0ff458609a6d2635", - "profile": { - "height": "168", - "weight": "50", - "bust": "82", - "waist": "60", - "hip": "86" - }, - "event": [ - { - "event_id": 105, - "event_name": "きらめくブライダルショー" - } - ] - }, - { - "alias_name": "ドレスアップゴールド", - "alias_name_display": "ドレスアップゴールド", - "id": "2304209", - "hash": "fcaecc5aba2427916914caa943a2e751", - "profile": { - "height": "168", - "weight": "50", - "bust": "82", - "waist": "60", - "hip": "86" - }, - "event": [ - { - "event_id": 105, - "event_name": "きらめくブライダルショー" - } - ] - }, - { - "alias_name": "静かな努力家", - "alias_name_display": "静かな努力家", - "id": "2208801", - "hash": "cd9c8866ec5bbc25600c8509b7e23ee1", - "profile": { - "height": "168", - "weight": "50", - "bust": "82", - "waist": "60", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "静かな努力家", - "alias_name_display": "静かな努力家", - "id": "2308802", - "hash": "854aecfaa588047988fcbd1d58f24b39", - "profile": { - "height": "168", - "weight": "50", - "bust": "82", - "waist": "60", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "ビーチパラダイス", - "alias_name_display": "ビーチパラダイス", - "id": "2211301", - "hash": "7f2b355d90da1b40b701278e3685134b", - "profile": { - "height": "168", - "weight": "50", - "bust": "82", - "waist": "60", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "ビーチパラダイス", - "alias_name_display": "ビーチパラダイス", - "id": "2311302", - "hash": "269d6c6828618794868c7036ec3476f8", - "profile": { - "height": "168", - "weight": "50", - "bust": "82", - "waist": "60", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "湯けむり月夜", - "alias_name_display": "湯けむり月夜", - "id": "2215201", - "hash": "ff373239ccc29ac4931e2c645f76f6c9", - "profile": { - "height": "168", - "weight": "50", - "bust": "82", - "waist": "60", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "湯けむり月夜", - "alias_name_display": "湯けむり月夜", - "id": "2315202", - "hash": "02cb84e31df0077d2e0ecdb68ba667cb", - "profile": { - "height": "168", - "weight": "50", - "bust": "82", - "waist": "60", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "T.B.キャット", - "alias_name_display": "T.B.キャット", - "id": "2220701", - "hash": "8ac440b6a9ec7028274817475b72998c", - "profile": { - "height": "168", - "weight": "50", - "bust": "82", - "waist": "60", - "hip": "86" - }, - "event": [ - { - "event_id": 1501, - "event_name": "チーム対抗トークバトルショー" - } - ] - }, - { - "alias_name": "T.B.キャット", - "alias_name_display": "T.B.キャット", - "id": "2320702", - "hash": "e0f1d6dfebca5b8e5d9df02af727c034", - "profile": { - "height": "168", - "weight": "50", - "bust": "82", - "waist": "60", - "hip": "86" - }, - "event": [ - { - "event_id": 1501, - "event_name": "チーム対抗トークバトルショー" - } - ] - }, - { - "alias_name": "デイワークビューティー", - "alias_name_display": "デイワークビューティー", - "id": "2227701", - "hash": "5ab4472580be930b8105563d3c6a11ef", - "profile": { - "height": "168", - "weight": "50", - "bust": "82", - "waist": "60", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "デイワークビューティー", - "alias_name_display": "デイワークビューティー", - "id": "2327702", - "hash": "38107f446aa746865421aa8269aa0ac4", - "profile": { - "height": "168", - "weight": "50", - "bust": "82", - "waist": "60", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "サーカスパフォーマー", - "alias_name_display": "サーカスパフォーマー", - "id": "2230801", - "hash": "bfde9af8b334a1f4a1e1d938ded92205", - "profile": { - "height": "168", - "weight": "50", - "bust": "82", - "waist": "60", - "hip": "86" - }, - "event": [ - { - "event_id": 1709, - "event_name": "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" - } - ] - }, - { - "alias_name": "サーカスパフォーマー", - "alias_name_display": "サーカスパフォーマー", - "id": "2330802", - "hash": "bbcde289f3d87a0c962fc15b1a974d97", - "profile": { - "height": "168", - "weight": "50", - "bust": "82", - "waist": "60", - "hip": "86" - }, - "event": [ - { - "event_id": 1709, - "event_name": "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" - } - ] - }, - { - "alias_name": "スマイリーパフォーマー", - "alias_name_display": "スマイリーパフォーマー", - "id": "2230901", - "hash": "3172ddc229fc3bb9fac024eb306f9b9c", - "profile": { - "height": "168", - "weight": "50", - "bust": "82", - "waist": "60", - "hip": "86" - }, - "event": [ - { - "event_id": 1709, - "event_name": "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" - } - ] - }, - { - "alias_name": "スマイリーパフォーマー", - "alias_name_display": "スマイリーパフォーマー", - "id": "2330902", - "hash": "34b7996576f65254b70545f0354fa9b9", - "profile": { - "height": "168", - "weight": "50", - "bust": "82", - "waist": "60", - "hip": "86" - }, - "event": [ - { - "event_id": 1709, - "event_name": "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" - } - ] - }, - { - "alias_name": "麗しの花嫁", - "alias_name_display": "麗しの花嫁", - "id": "2402001", - "hash": "71ace62d52bc64c427809bd37d63ab73", - "profile": { - "height": "168", - "weight": "50", - "bust": "82", - "waist": "60", - "hip": "86" - }, - "event": [ - { - "event_id": 105, - "event_name": "きらめくブライダルショー" - } - ] - }, - { - "alias_name": "麗しの花嫁", - "alias_name_display": "麗しの花嫁", - "id": "2502002", - "hash": "178e02295da98410b3d89ee67ff59085", - "profile": { - "height": "168", - "weight": "50", - "bust": "82", - "waist": "60", - "hip": "86" - }, - "event": [ - { - "event_id": 105, - "event_name": "きらめくブライダルショー" - } - ] - }, - { - "alias_name": "ミスティックブルー", - "alias_name_display": "ミスティックブルー", - "id": "2411201", - "hash": "9c8cd39caf884771877dd30d6d567a6e", - "profile": { - "height": "168", - "weight": "50", - "bust": "82", - "waist": "60", - "hip": "86" - }, - "event": [ - { - "event_id": 802, - "event_name": "第2回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ミスティックブルー", - "alias_name_display": "ミスティックブルー", - "id": "2511202", - "hash": "d9bb8ac767435a8c90758e5b78eb982a", - "profile": { - "height": "168", - "weight": "50", - "bust": "82", - "waist": "60", - "hip": "86" - }, - "event": [ - { - "event_id": 802, - "event_name": "第2回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "貴婦人のたしなみ", - "alias_name_display": "貴婦人のたしなみ", - "id": "2417501", - "hash": "8b426648033650a8b6f0ea72f9d48b9e", - "profile": { - "height": "168", - "weight": "50", - "bust": "82", - "waist": "60", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "貴婦人のたしなみ", - "alias_name_display": "貴婦人のたしなみ", - "id": "2517502", - "hash": "ad621fe47393a5bcba98b5729077ac4e", - "profile": { - "height": "168", - "weight": "50", - "bust": "82", - "waist": "60", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "ダークネスクイーン", - "alias_name_display": "ダークネスクイーン", - "id": "2427701", - "hash": "975f3cb8d1472238c39f2fff0c7b43aa", - "profile": { - "height": "168", - "weight": "50", - "bust": "82", - "waist": "60", - "hip": "86" - }, - "event": [ - { - "event_id": 522, - "event_name": "魔界公演 幽鬱女王とハロウィンの祝祭" - } - ] - }, - { - "alias_name": "ダークネスクイーン", - "alias_name_display": "ダークネスクイーン", - "id": "2527702", - "hash": "303643dbb839ee0d48bfb7def91c193f", - "profile": { - "height": "168", - "weight": "50", - "bust": "82", - "waist": "60", - "hip": "86" - }, - "event": [ - { - "event_id": 522, - "event_name": "魔界公演 幽鬱女王とハロウィンの祝祭" - } - ] - } - ], - "units": [ - { - "id": "10", - "name": "エレガントインモラリスト" - }, - { - "id": "142", - "name": "バレンタイン反省会" - } - ] - }, - "112": { - "idol_id": 112, - "idol_name": "吉岡沙紀", - "idol_name_display": "吉岡沙紀", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2202201", - "hash": "0f37976821af0722871ecf50938c7ddf", - "profile": { - "height": "166", - "weight": "43", - "bust": "86", - "waist": "60", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2302202", - "hash": "7ef2544b02c9736db8d008c4f17b7e5b", - "profile": { - "height": "166", - "weight": "43", - "bust": "86", - "waist": "60", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "学園祭", - "alias_name_display": "学園祭", - "id": "2206001", - "hash": "ac0b2131e6f7eaf2723a2ade75928495", - "profile": { - "height": "166", - "weight": "43", - "bust": "86", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 206, - "event_name": "アイドルサバイバルin学園祭" - } - ] - }, - { - "alias_name": "学園祭", - "alias_name_display": "学園祭", - "id": "2306002", - "hash": "1e410552f7955af4fe1b69477d8b43f5", - "profile": { - "height": "166", - "weight": "43", - "bust": "86", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 206, - "event_name": "アイドルサバイバルin学園祭" - } - ] - }, - { - "alias_name": "スペーススタイル", - "alias_name_display": "スペーススタイル", - "id": "2212701", - "hash": "b20a29ffa2a750c5b4cd9d81b3bbc9e5", - "profile": { - "height": "166", - "weight": "43", - "bust": "86", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 508, - "event_name": "LIVEツアーカーニバルinスペースワールド" - } - ] - }, - { - "alias_name": "スペーススタイル", - "alias_name_display": "スペーススタイル", - "id": "2312702", - "hash": "8bcd14c592bd07ef8fd285826b3cc7c9", - "profile": { - "height": "166", - "weight": "43", - "bust": "86", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 508, - "event_name": "LIVEツアーカーニバルinスペースワールド" - } - ] - }, - { - "alias_name": "ロワイヤルスタイルNP", - "alias_name_display": "ロワイヤルスタイルNP", - "id": "2216401", - "hash": "07c40e49cccf9ee5f745371d6765771f", - "profile": { - "height": "166", - "weight": "43", - "bust": "86", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 805, - "event_name": "第5回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ロワイヤルスタイルNP", - "alias_name_display": "ロワイヤルスタイルNP", - "id": "2316402", - "hash": "e607ec174fa5ea275f7191310a0f77ca", - "profile": { - "height": "166", - "weight": "43", - "bust": "86", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 805, - "event_name": "第5回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "グラッドチョイス", - "alias_name_display": "グラッドチョイス", - "id": "2221201", - "hash": "0434189262b7766edcc7b1491a046d2f", - "profile": { - "height": "166", - "weight": "43", - "bust": "86", - "waist": "60", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "グラッドチョイス", - "alias_name_display": "グラッドチョイス", - "id": "2321202", - "hash": "3fb35c1361dd289f9eefa90cd530b673", - "profile": { - "height": "166", - "weight": "43", - "bust": "86", - "waist": "60", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "オータムコレクション", - "alias_name_display": "オータムコレクション", - "id": "2223601", - "hash": "3dc82db81712eb3b82c990cba0a79445", - "profile": { - "height": "166", - "weight": "43", - "bust": "86", - "waist": "60", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "オータムコレクション", - "alias_name_display": "オータムコレクション", - "id": "2323602", - "hash": "af93b43c6c0f650d536f3f54a4a9fcf3", - "profile": { - "height": "166", - "weight": "43", - "bust": "86", - "waist": "60", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ニンジュツI.C", - "alias_name_display": "ニンジュツI.C", - "id": "2330102", - "hash": "56f24e0254e2641e6d33e184044a44ad", - "profile": { - "height": "166", - "weight": "43", - "bust": "86", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 1214, - "event_name": "目指せくのいち アイドルチャレンジ" - } - ] - }, - { - "alias_name": "ボーイッシュエレガント", - "alias_name_display": "ボーイッシュエレガント", - "id": "2406501", - "hash": "0ca31e6713d9778cce09548060c5b987", - "profile": { - "height": "166", - "weight": "43", - "bust": "86", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 210, - "event_name": "アイドルサバイバルinテーマパーク2013" - } - ] - }, - { - "alias_name": "ボーイッシュエレガント", - "alias_name_display": "ボーイッシュエレガント", - "id": "2506502", - "hash": "426a1c8445a2f2a1f1109d383cac3cae", - "profile": { - "height": "166", - "weight": "43", - "bust": "86", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 210, - "event_name": "アイドルサバイバルinテーマパーク2013" - } - ] - }, - { - "alias_name": "アーティスティックチアー", - "alias_name_display": "アーティスティックチアー", - "id": "2420901", - "hash": "6f94c84a133c5c6ff24dc90d31692786", - "profile": { - "height": "166", - "weight": "43", - "bust": "86", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 1108, - "event_name": "第8回プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "アーティスティックチアー", - "alias_name_display": "アーティスティックチアー", - "id": "2520902", - "hash": "981490772e3d268a8af831a339a9c56d", - "profile": { - "height": "166", - "weight": "43", - "bust": "86", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 1108, - "event_name": "第8回プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "ジャパニーズアート", - "alias_name_display": "ジャパニーズアート", - "id": "2430001", - "hash": "f4b3a3a0844450d52613698c6ce1a699", - "profile": { - "height": "166", - "weight": "43", - "bust": "86", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 718, - "event_name": "ドリームLIVEフェスティバル 新春SP" - } - ] - }, - { - "alias_name": "ジャパニーズアート", - "alias_name_display": "ジャパニーズアート", - "id": "2530002", - "hash": "a964e412394600f1eae51eb0a573a59e", - "profile": { - "height": "166", - "weight": "43", - "bust": "86", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 718, - "event_name": "ドリームLIVEフェスティバル 新春SP" - } - ] - }, - { - "alias_name": "弦月のアラジン", - "alias_name_display": "弦月のアラジン", - "id": "2433701", - "hash": "9f1e3889ba04bc06e21bc8d5e7eddf21", - "profile": { - "height": "166", - "weight": "43", - "bust": "86", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 1902, - "event_name": "御伽公演 おてんば姫とまぢヤバな魔法のランプ" - } - ] - }, - { - "alias_name": "弦月のアラジン", - "alias_name_display": "弦月のアラジン", - "id": "2533702", - "hash": "420232dfc6e81e86bc345cc36f4b443a", - "profile": { - "height": "166", - "weight": "43", - "bust": "86", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 1902, - "event_name": "御伽公演 おてんば姫とまぢヤバな魔法のランプ" - } - ] - }, - { - "alias_name": "心惑のくのいち", - "alias_name_display": "心惑のくのいち", - "id": "2437401", - "hash": "f9dda0f6634f12d18c16e41ceb47a7d6", - "profile": { - "height": "166", - "weight": "43", - "bust": "86", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 1214, - "event_name": "目指せくのいち アイドルチャレンジ" - } - ] - }, - { - "alias_name": "心惑のくのいち", - "alias_name_display": "心惑のくのいち", - "id": "2537402", - "hash": "a67ad2aba4cda4cb8822e8cba9be9e72", - "profile": { - "height": "166", - "weight": "43", - "bust": "86", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 1214, - "event_name": "目指せくのいち アイドルチャレンジ" - } - ] - }, - { - "alias_name": "嬌笑のくのいち", - "alias_name_display": "嬌笑のくのいち", - "id": "2437501", - "hash": "6ce938c8766b918d2f6b7c9cf6689b61", - "profile": { - "height": "166", - "weight": "43", - "bust": "86", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 1214, - "event_name": "目指せくのいち アイドルチャレンジ" - } - ] - }, - { - "alias_name": "嬌笑のくのいち", - "alias_name_display": "嬌笑のくのいち", - "id": "2537502", - "hash": "c3a21b688770def90cda930429d9d580", - "profile": { - "height": "166", - "weight": "43", - "bust": "86", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 1214, - "event_name": "目指せくのいち アイドルチャレンジ" - } - ] - } - ], - "units": [ - { - "id": "2", - "name": "アーティスター" - }, - { - "id": "40", - "name": "ハートハーモナイズ" - }, - { - "id": "95", - "name": "スペーススタイル" - }, - { - "id": "117", - "name": "ハードメテオライツ" - }, - { - "id": "122", - "name": "ホットアートジャンピン" - }, - { - "id": "140", - "name": "アイドルミズキ with AS" - }, - { - "id": "209", - "name": "ロワイヤルスタイルNP" - } - ] - }, - "113": { - "idol_id": 113, - "idol_name": "梅木音葉", - "idol_name_display": "梅木音葉", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2202301", - "hash": "8b7fce105c3d588ac3f32396be6d63a9", - "profile": { - "height": "172", - "weight": "49", - "bust": "86", - "waist": "58", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2302302", - "hash": "a774d41a69eb44d15423615658b97bb3", - "profile": { - "height": "172", - "weight": "49", - "bust": "86", - "waist": "58", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ハロウィンパーティー", - "alias_name_display": "ハロウィンパーティー", - "id": "2206301", - "hash": "a9139d337cb8743a5af6036957432d2a", - "profile": { - "height": "172", - "weight": "49", - "bust": "86", - "waist": "58", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ハロウィンパーティー", - "alias_name_display": "ハロウィンパーティー", - "id": "2306302", - "hash": "fc9e599c52e561c8376c92aa9bf3f76b", - "profile": { - "height": "172", - "weight": "49", - "bust": "86", - "waist": "58", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "春風の使者", - "alias_name_display": "春風の使者", - "id": "2209501", - "hash": "d5a7bb3feb7b36be43c88f12a22ab0ed", - "profile": { - "height": "172", - "weight": "49", - "bust": "86", - "waist": "58", - "hip": "85" - }, - "event": [ - { - "event_id": 504, - "event_name": "アイドルLIVEツアーinスペイン" - } - ] - }, - { - "alias_name": "春風の使者", - "alias_name_display": "春風の使者", - "id": "2309502", - "hash": "cdcf96c094a50a50e60362c02f4dfa50", - "profile": { - "height": "172", - "weight": "49", - "bust": "86", - "waist": "58", - "hip": "85" - }, - "event": [ - { - "event_id": 504, - "event_name": "アイドルLIVEツアーinスペイン" - } - ] - }, - { - "alias_name": "風の語り手", - "alias_name_display": "風の語り手", - "id": "2215901", - "hash": "f436a23041b6b2dfce6c7487572b39d2", - "profile": { - "height": "172", - "weight": "49", - "bust": "86", - "waist": "58", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "風の語り手", - "alias_name_display": "風の語り手", - "id": "2315902", - "hash": "83836550ad64aaa3694b396d5d3fdacb", - "profile": { - "height": "172", - "weight": "49", - "bust": "86", - "waist": "58", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "春色温泉", - "alias_name_display": "春色温泉", - "id": "2225601", - "hash": "767925f33c033fafccf24de1a5270440", - "profile": { - "height": "172", - "weight": "49", - "bust": "86", - "waist": "58", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "春色温泉", - "alias_name_display": "春色温泉", - "id": "2325602", - "hash": "9ae3b84090af8490fa4d771857a708b6", - "profile": { - "height": "172", - "weight": "49", - "bust": "86", - "waist": "58", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "涼風のミンストレル", - "alias_name_display": "涼風のミンストレル", - "id": "2408501", - "hash": "83e5007f4db7e14f5fd0dc9e5de94648", - "profile": { - "height": "172", - "weight": "49", - "bust": "86", - "waist": "58", - "hip": "85" - }, - "event": [ - { - "event_id": 702, - "event_name": "水着DEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "涼風のミンストレル", - "alias_name_display": "涼風のミンストレル", - "id": "2508502", - "hash": "7a01f73afd6bf9881c91b0a2d4a37280", - "profile": { - "height": "172", - "weight": "49", - "bust": "86", - "waist": "58", - "hip": "85" - }, - "event": [ - { - "event_id": 702, - "event_name": "水着DEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "メロディ・ロワイヤル", - "alias_name_display": "メロディ・ロワイヤル", - "id": "2419201", - "hash": "537a96cd9851d6296f5116956034fa64", - "profile": { - "height": "172", - "weight": "49", - "bust": "86", - "waist": "58", - "hip": "85" - }, - "event": [ - { - "event_id": 808, - "event_name": "第8回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "メロディ・ロワイヤル", - "alias_name_display": "メロディ・ロワイヤル", - "id": "2519202", - "hash": "72869a0f6b17cf9ae3770b0b2cbdcb01", - "profile": { - "height": "172", - "weight": "49", - "bust": "86", - "waist": "58", - "hip": "85" - }, - "event": [ - { - "event_id": 808, - "event_name": "第8回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ダークバトラー", - "alias_name_display": "ダークバトラー", - "id": "2426401", - "hash": "df2c2bd1d61b057e0bce6f34d13e5b09", - "profile": { - "height": "172", - "weight": "49", - "bust": "86", - "waist": "58", - "hip": "85" - }, - "event": [ - { - "event_id": 521, - "event_name": "怪盗公演 美しき追跡者" - } - ] - }, - { - "alias_name": "ダークバトラー", - "alias_name_display": "ダークバトラー", - "id": "2526402", - "hash": "e46c9723e0af70b50cea3bbf1af79359", - "profile": { - "height": "172", - "weight": "49", - "bust": "86", - "waist": "58", - "hip": "85" - }, - "event": [ - { - "event_id": 521, - "event_name": "怪盗公演 美しき追跡者" - } - ] - }, - { - "alias_name": "メロディアスワールド", - "alias_name_display": "メロディアスワールド", - "id": "2434901", - "hash": "b55aedfa29207ec7783d03157a425dc0", - "profile": { - "height": "172", - "weight": "49", - "bust": "86", - "waist": "58", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "メロディアスワールド", - "alias_name_display": "メロディアスワールド", - "id": "2534902", - "hash": "5e21903192e2179e480b0684afc509ed", - "profile": { - "height": "172", - "weight": "49", - "bust": "86", - "waist": "58", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "新芽の調べ", - "alias_name_display": "新芽の調べ", - "id": "2439701", - "hash": "a4823a0b9ffad08844c7e603e69013cd", - "profile": { - "height": "172", - "weight": "49", - "bust": "86", - "waist": "58", - "hip": "85" - }, - "event": [ - { - "event_id": 729, - "event_name": "ドリームLIVEフェスティバル ゴールデンウィークSP" - } - ] - }, - { - "alias_name": "新芽の調べ", - "alias_name_display": "新芽の調べ", - "id": "2539702", - "hash": "725a7367f2c8c08fa9f88fb14c58786a", - "profile": { - "height": "172", - "weight": "49", - "bust": "86", - "waist": "58", - "hip": "85" - }, - "event": [ - { - "event_id": 729, - "event_name": "ドリームLIVEフェスティバル ゴールデンウィークSP" - } - ] - } - ], - "units": [ - { - "id": "24", - "name": "シンフォニック・ワールド" - }, - { - "id": "180", - "name": "ハロウィンパーティー" - } - ] - }, - "114": { - "idol_id": 114, - "idol_name": "白坂小梅", - "idol_name_display": "白坂小梅", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2202401", - "hash": "5fe1faaee0a52e41f24eea585a682df5", - "profile": { - "height": "142", - "weight": "34", - "bust": "65", - "waist": "50", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2302402", - "hash": "ae2faa4771c040ad14953055cdba97c0", - "profile": { - "height": "142", - "weight": "35", - "bust": "66", - "waist": "51", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "メイドコレクション", - "alias_name_display": "メイドコレクション", - "id": "2205801", - "hash": "3636752aaa4fff30e038839aa6121adf", - "profile": { - "height": "142", - "weight": "35", - "bust": "66", - "waist": "51", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "メイドコレクション", - "alias_name_display": "メイドコレクション", - "id": "2305802", - "hash": "9fd88c297854635eaed7f81eaeef6204", - "profile": { - "height": "142", - "weight": "35", - "bust": "66", - "waist": "51", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "ウィンターホラーグリーン", - "alias_name_display": "ウィンターホラーグリーン", - "id": "2207301", - "hash": "9589583b3b1c0c6854df218d00a720cb", - "profile": { - "height": "142", - "weight": "35", - "bust": "66", - "waist": "51", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "ウィンターホラーネイビー", - "alias_name_display": "ウィンターホラーネイビー", - "id": "2207302", - "hash": "7a1a52d2d04ab51452a17d8a0fa13deb", - "profile": { - "height": "142", - "weight": "35", - "bust": "66", - "waist": "51", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "ウィンターホラーボルドー", - "alias_name_display": "ウィンターホラーボルドー", - "id": "2207303", - "hash": "6dbdb5e600214a62be8c86a4ce119358", - "profile": { - "height": "142", - "weight": "35", - "bust": "66", - "waist": "51", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "ウィンターホラーブルー", - "alias_name_display": "ウィンターホラーブルー", - "id": "2207304", - "hash": "387ff8f96121c16b6c70a997e51649b4", - "profile": { - "height": "142", - "weight": "35", - "bust": "66", - "waist": "51", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "ウィンタースタイル", - "alias_name_display": "ウィンタースタイル", - "id": "2307305", - "hash": "c8dd511c09612e82ebe3ccfed4c80e16", - "profile": { - "height": "142", - "weight": "35", - "bust": "66", - "waist": "51", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "ウィンタースタイルマフラー", - "alias_name_display": "ウィンタースタイルマフラー", - "id": "2307306", - "hash": "45b845227aa7ff52c176905bee731373", - "profile": { - "height": "142", - "weight": "35", - "bust": "66", - "waist": "51", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "ウィンタースタイルイヤーマフ", - "alias_name_display": "ウィンタースタイルイヤーマフ", - "id": "2307307", - "hash": "b298709e4e9b623a243f4c260ce67039", - "profile": { - "height": "142", - "weight": "35", - "bust": "66", - "waist": "51", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "ウィンタースタイルバッグ", - "alias_name_display": "ウィンタースタイルバッグ", - "id": "2307308", - "hash": "f885b02cf61af65fe2bb964902ff5e6c", - "profile": { - "height": "142", - "weight": "35", - "bust": "66", - "waist": "51", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "ウィンタースタイルカート", - "alias_name_display": "ウィンタースタイルカート", - "id": "2307309", - "hash": "8c3580e5bfcdfaf62ab2f06659f809d2", - "profile": { - "height": "142", - "weight": "35", - "bust": "66", - "waist": "51", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "ダークインバイト", - "alias_name_display": "ダークインバイト", - "id": "2227301", - "hash": "47bb0f13767275f0599acc5296d466c7", - "profile": { - "height": "142", - "weight": "35", - "bust": "66", - "waist": "51", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "ダークインバイト", - "alias_name_display": "ダークインバイト", - "id": "2327302", - "hash": "1faeb39c919ef3f1aaf5d2031b85caeb", - "profile": { - "height": "142", - "weight": "35", - "bust": "66", - "waist": "51", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "ハロウィンナイトメア", - "alias_name_display": "ハロウィンナイトメア", - "id": "2403301", - "hash": "44f2da3a9c5beecfda2bfddae84a1153", - "profile": { - "height": "142", - "weight": "35", - "bust": "66", - "waist": "51", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "ハロウィンナイトメア", - "alias_name_display": "ハロウィンナイトメア", - "id": "2503302", - "hash": "f05381161e3760b235eece970659c13c", - "profile": { - "height": "142", - "weight": "35", - "bust": "66", - "waist": "51", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "ホワイトナイトメア", - "alias_name_display": "ホワイトナイトメア", - "id": "2404410", - "hash": "5078a4011745218d0c969cad3bf3c169", - "profile": { - "height": "142", - "weight": "35", - "bust": "66", - "waist": "51", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "ホワイトナイトメア", - "alias_name_display": "ホワイトナイトメア", - "id": "2504411", - "hash": "a24533b9f3185e3735b81abe720ccefa", - "profile": { - "height": "142", - "weight": "35", - "bust": "66", - "waist": "51", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "納涼浴衣娘", - "alias_name_display": "納涼浴衣娘", - "id": "2407801", - "hash": "5cb519e64701c15572f2f51981c79ac7", - "profile": { - "height": "142", - "weight": "35", - "bust": "66", - "waist": "51", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "納涼浴衣娘", - "alias_name_display": "納涼浴衣娘", - "id": "2507802", - "hash": "54627202ea402abc86e37147cea9c2ea", - "profile": { - "height": "142", - "weight": "35", - "bust": "66", - "waist": "51", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "2410301", - "hash": "040042fc1ca9ce2681ec5db9997d39c1", - "profile": { - "height": "142", - "weight": "35", - "bust": "66", - "waist": "51", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "2510302", - "hash": "6f3c920d53e4f0ed7eb1cbe9482cd7d3", - "profile": { - "height": "142", - "weight": "35", - "bust": "66", - "waist": "51", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "ゴシックホラーナイトメア", - "alias_name_display": "ゴシックホラーナイトメア", - "id": "2410501", - "hash": "f74c99a3dba8770ce827fd3ceee60a10", - "profile": { - "height": "142", - "weight": "35", - "bust": "66", - "waist": "51", - "hip": "70" - }, - "event": [ - { - "event_id": "013", - "event_name": "第13回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "ゴシックホラーナイトメア", - "alias_name_display": "ゴシックホラーナイトメア", - "id": "2510502", - "hash": "2af32ad71bbed8be247e01b670d051a9", - "profile": { - "height": "142", - "weight": "35", - "bust": "66", - "waist": "51", - "hip": "70" - }, - "event": [ - { - "event_id": "013", - "event_name": "第13回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "学園のヒロイン", - "alias_name_display": "学園のヒロイン", - "id": "2414201", - "hash": "14f7e77a84e8f89398274d5e9ff63c3f", - "profile": { - "height": "142", - "weight": "35", - "bust": "66", - "waist": "51", - "hip": "70" - }, - "event": [ - { - "event_id": 412, - "event_name": "聖靴学園の七不思議" - } - ] - }, - { - "alias_name": "学園のヒロイン", - "alias_name_display": "学園のヒロイン", - "id": "2514202", - "hash": "72301fc6b66e10af7b057d56155ceaa5", - "profile": { - "height": "142", - "weight": "35", - "bust": "66", - "waist": "51", - "hip": "70" - }, - "event": [ - { - "event_id": 412, - "event_name": "聖靴学園の七不思議" - } - ] - }, - { - "alias_name": "シンデレラドリーム", - "alias_name_display": "シンデレラドリーム", - "id": "2417701", - "hash": "d380946c0a53f37c0d8fccc405fa343f", - "profile": { - "height": "142", - "weight": "35", - "bust": "66", - "waist": "51", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "シンデレラドリーム", - "alias_name_display": "シンデレラドリーム", - "id": "2517702", - "hash": "7784c97bce5a0e14bcd3d9aa63cb3ecf", - "profile": { - "height": "142", - "weight": "35", - "bust": "66", - "waist": "51", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "ステップバイステップ", - "alias_name_display": "ステップバイステップ", - "id": "2423801", - "hash": "7efa533684a2dd156d50e2ce4a59136d", - "profile": { - "height": "142", - "weight": "35", - "bust": "66", - "waist": "51", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "ステップバイステップ", - "alias_name_display": "ステップバイステップ", - "id": "2523802", - "hash": "46884da8ea8a4a9e6d66c1c7ae4fc974", - "profile": { - "height": "142", - "weight": "35", - "bust": "66", - "waist": "51", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "4thアニバーサリー", - "alias_name_display": "4thアニバーサリー", - "id": "2428901", - "hash": "3677958390fba4828e21cad9bbfc30b4", - "profile": { - "height": "142", - "weight": "35", - "bust": "66", - "waist": "51", - "hip": "70" - }, - "event": [ - { - "event_id": 1704, - "event_name": "アイドルプロデュース the 4th Anniversary" - } - ] - }, - { - "alias_name": "4thアニバーサリー", - "alias_name_display": "4thアニバーサリー", - "id": "2528902", - "hash": "39fddacadc87a87a49aa2ad95731d1b8", - "profile": { - "height": "142", - "weight": "35", - "bust": "66", - "waist": "51", - "hip": "70" - }, - "event": [ - { - "event_id": 1704, - "event_name": "アイドルプロデュース the 4th Anniversary" - } - ] - }, - { - "alias_name": "4thアニバーサリー・S", - "alias_name_display": "4thアニバーサリー・S", - "id": "2429001", - "hash": "8bf75ee15f38e8cb455b551604b503e5", - "profile": { - "height": "142", - "weight": "35", - "bust": "66", - "waist": "51", - "hip": "70" - }, - "event": [ - { - "event_id": 1704, - "event_name": "アイドルプロデュース the 4th Anniversary" - } - ] - }, - { - "alias_name": "4thアニバーサリー・S", - "alias_name_display": "4thアニバーサリー・S", - "id": "2529002", - "hash": "da1764a3a75a36f036c830770c0fa508", - "profile": { - "height": "142", - "weight": "35", - "bust": "66", - "waist": "51", - "hip": "70" - }, - "event": [ - { - "event_id": 1704, - "event_name": "アイドルプロデュース the 4th Anniversary" - } - ] - }, - { - "alias_name": "ツナガルウワサ", - "alias_name_display": "ツナガルウワサ", - "id": "2435901", - "hash": "58b52532b2a4c66aae460c87e2f19a7f", - "profile": { - "height": "142", - "weight": "35", - "bust": "66", - "waist": "51", - "hip": "70" - }, - "event": [ - { - "event_id": 1509, - "event_name": "第9回チーム対抗トークバトルショー" - } - ] - }, - { - "alias_name": "ツナガルウワサ", - "alias_name_display": "ツナガルウワサ", - "id": "2535902", - "hash": "8760de4f1ffcd5454f63f3332535bb24", - "profile": { - "height": "142", - "weight": "35", - "bust": "66", - "waist": "51", - "hip": "70" - }, - "event": [ - { - "event_id": 1509, - "event_name": "第9回チーム対抗トークバトルショー" - } - ] - } - ], - "units": [ - { - "id": "9", - "name": "エルドリッチ・ロアテラー" - }, - { - "id": "77", - "name": "Jumpin'Joker" - }, - { - "id": "79", - "name": "NiGHT ENCOUNTER" - }, - { - "id": "82", - "name": "Rosenburg Alptraum" - }, - { - "id": "90", - "name": "カワイイボクと142's" - }, - { - "id": "127", - "name": "落花流水" - }, - { - "id": "183", - "name": "メイドコレクション" - }, - { - "id": "186", - "name": "LittlePOPS" - }, - { - "id": "201", - "name": "Caskets" - }, - { - "id": "212", - "name": "CINDERELLA GIRLS" - } - ] - }, - "115": { - "idol_id": 115, - "idol_name": "岸部彩華", - "idol_name_display": "岸部彩華", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2202501", - "hash": "c73b4dc40685bc50d331c9f32d1b91fb", - "profile": { - "height": "162", - "weight": "46", - "bust": "89", - "waist": "59", - "hip": "85" - }, - "event": [ - { - "event_id": 201, - "event_name": "アイドルサバイバル" - } - ] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2302502", - "hash": "28bb1de41fcfabcb5d2ba1d3870c121b", - "profile": { - "height": "162", - "weight": "46", - "bust": "89", - "waist": "59", - "hip": "85" - }, - "event": [ - { - "event_id": 201, - "event_name": "アイドルサバイバル" - } - ] - }, - { - "alias_name": "バレンタインパーティー", - "alias_name_display": "バレンタインパーティー", - "id": "2208001", - "hash": "031476bad3baae90639d1aa438801e77", - "profile": { - "height": "162", - "weight": "46", - "bust": "89", - "waist": "59", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "バレンタインパーティー", - "alias_name_display": "バレンタインパーティー", - "id": "2308002", - "hash": "e715a9ad30451fd62a269fb9a888c330", - "profile": { - "height": "162", - "weight": "46", - "bust": "89", - "waist": "59", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "リーブルパピヨン", - "alias_name_display": "リーブルパピヨン", - "id": "2211801", - "hash": "ccc7d18edcfe645bd67a10ee9418a1a3", - "profile": { - "height": "162", - "weight": "46", - "bust": "89", - "waist": "59", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "リーブルパピヨン", - "alias_name_display": "リーブルパピヨン", - "id": "2311802", - "hash": "038dbf3dcf6ba83def688acc1d3a51b8", - "profile": { - "height": "162", - "weight": "46", - "bust": "89", - "waist": "59", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ドゥーマリアージュ", - "alias_name_display": "ドゥーマリアージュ", - "id": "2218301", - "hash": "67c5c09da322da1f45a594ffb616516a", - "profile": { - "height": "162", - "weight": "46", - "bust": "89", - "waist": "59", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ドゥーマリアージュ", - "alias_name_display": "ドゥーマリアージュ", - "id": "2318302", - "hash": "55ae486ac1f7dd977dad78e87069e444", - "profile": { - "height": "162", - "weight": "46", - "bust": "89", - "waist": "59", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "サマーシーズン", - "alias_name_display": "サマーシーズン", - "id": "2221801", - "hash": "3dc8352d84780b94599f2f28c3cb1b08", - "profile": { - "height": "162", - "weight": "46", - "bust": "89", - "waist": "59", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "サマーシーズン", - "alias_name_display": "サマーシーズン", - "id": "2321802", - "hash": "720ef57f0103eee721a8021066c3b34d", - "profile": { - "height": "162", - "weight": "46", - "bust": "89", - "waist": "59", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "レディスタイル", - "alias_name_display": "レディスタイル", - "id": "2224801", - "hash": "ec4525fd83e7bb622de501a3920e4658", - "profile": { - "height": "162", - "weight": "46", - "bust": "89", - "waist": "59", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "レディスタイル", - "alias_name_display": "レディスタイル", - "id": "2324802", - "hash": "3ecd3524410cf349b532c7017d061c96", - "profile": { - "height": "162", - "weight": "46", - "bust": "89", - "waist": "59", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "マイデコラティブ", - "alias_name_display": "マイデコラティブ", - "id": "2232001", - "hash": "d6aad9209b558bbe367ce9f4a68ee90a", - "profile": { - "height": "162", - "weight": "46", - "bust": "89", - "waist": "59", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "マイデコラティブ", - "alias_name_display": "マイデコラティブ", - "id": "2332002", - "hash": "7a9fa317e0b7b733838a7bbb4a71f5d1", - "profile": { - "height": "162", - "weight": "46", - "bust": "89", - "waist": "59", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ゴージャスチアー", - "alias_name_display": "ゴージャスチアー", - "id": "2414501", - "hash": "babca7b72ad285377f19363a451e9a6d", - "profile": { - "height": "162", - "weight": "46", - "bust": "89", - "waist": "59", - "hip": "85" - }, - "event": [ - { - "event_id": 1102, - "event_name": "第2回プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "ゴージャスチアー", - "alias_name_display": "ゴージャスチアー", - "id": "2514502", - "hash": "d41291b48e8a5e5c6db1ddfd3adac08e", - "profile": { - "height": "162", - "weight": "46", - "bust": "89", - "waist": "59", - "hip": "85" - }, - "event": [ - { - "event_id": 1102, - "event_name": "第2回プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "マジモード", - "alias_name_display": "マジモード", - "id": "2435701", - "hash": "94ac010e58c3c7e7e3e4978efa06ae25", - "profile": { - "height": "162", - "weight": "46", - "bust": "89", - "waist": "59", - "hip": "85" - }, - "event": [ - { - "event_id": 725, - "event_name": "第25回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "マジモード", - "alias_name_display": "マジモード", - "id": "2535702", - "hash": "2c67e5e41d85f043ffc99b92a4873ae1", - "profile": { - "height": "162", - "weight": "46", - "bust": "89", - "waist": "59", - "hip": "85" - }, - "event": [ - { - "event_id": 725, - "event_name": "第25回ドリームLIVEフェスティバル" - } - ] - } - ], - "units": [ - { - "id": "89", - "name": "ガールズ・パワー" - } - ] - }, - "116": { - "idol_id": 116, - "idol_name": "氏家むつみ", - "idol_name_display": "氏家むつみ", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2202701", - "hash": "9cdd818a009f19eab8c73cc845175ee6", - "profile": { - "height": "152", - "weight": "42", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2302702", - "hash": "ba921b7605a9080d619152c0a64d2169", - "profile": { - "height": "152", - "weight": "42", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ノベルスパイレーツ", - "alias_name_display": "ノベルスパイレーツ", - "id": "2207901", - "hash": "77c702153a1dcb38c773b94dea0b2628", - "profile": { - "height": "152", - "weight": "42", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ノベルスパイレーツ", - "alias_name_display": "ノベルスパイレーツ", - "id": "2307902", - "hash": "f2a042e9aace39492a5e28e4d14d8715", - "profile": { - "height": "152", - "weight": "42", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "スパニッシュスタイル", - "alias_name_display": "スパニッシュスタイル", - "id": "2209401", - "hash": "809a05d98209abdd96028110f37c46f6", - "profile": { - "height": "152", - "weight": "42", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 504, - "event_name": "アイドルLIVEツアーinスペイン" - } - ] - }, - { - "alias_name": "スパニッシュスタイル", - "alias_name_display": "スパニッシュスタイル", - "id": "2309402", - "hash": "47d7ba193b349e7bd1dc3f1a03a599c8", - "profile": { - "height": "152", - "weight": "42", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 504, - "event_name": "アイドルLIVEツアーinスペイン" - } - ] - }, - { - "alias_name": "ひな祭り", - "alias_name_display": "ひな祭り", - "id": "2214801", - "hash": "70c15775d5cabd419c8a1397115799aa", - "profile": { - "height": "152", - "weight": "42", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 510, - "event_name": "ひな祭りLIVEツアーカーニバル" - } - ] - }, - { - "alias_name": "ひな祭り", - "alias_name_display": "ひな祭り", - "id": "2314802", - "hash": "f8f7b051faa13e961bed26cc460ad90c", - "profile": { - "height": "152", - "weight": "42", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 510, - "event_name": "ひな祭りLIVEツアーカーニバル" - } - ] - }, - { - "alias_name": "ブレイブハート", - "alias_name_display": "ブレイブハート", - "id": "2222101", - "hash": "f834f89f345e42c99a1a433007dab3d4", - "profile": { - "height": "152", - "weight": "42", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ブレイブハート", - "alias_name_display": "ブレイブハート", - "id": "2322102", - "hash": "b2b25e4024fc6ea72ef15cf163013db6", - "profile": { - "height": "152", - "weight": "42", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ファンサーキット", - "alias_name_display": "ファンサーキット", - "id": "2228501", - "hash": "323630ff5d66437d6b8e66b0b763c0cb", - "profile": { - "height": "152", - "weight": "42", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ファンサーキット", - "alias_name_display": "ファンサーキット", - "id": "2328502", - "hash": "8a5a9f14e183e6a73639a965955129a7", - "profile": { - "height": "152", - "weight": "42", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ワイルドフレンズ", - "alias_name_display": "ワイルドフレンズ", - "id": "2231601", - "hash": "ea24a69654f849a122461782a256f4cc", - "profile": { - "height": "152", - "weight": "42", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ワイルドフレンズ", - "alias_name_display": "ワイルドフレンズ", - "id": "2331602", - "hash": "70a62d93285f5c7e10b9e127db9bf8a0", - "profile": { - "height": "152", - "weight": "42", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ロワイヤルガール", - "alias_name_display": "ロワイヤルガール", - "id": "2409401", - "hash": "a26c6d59e649ff57a0dd34b5df7ea154", - "profile": { - "height": "152", - "weight": "42", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 801, - "event_name": "アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ロワイヤルガール", - "alias_name_display": "ロワイヤルガール", - "id": "2509402", - "hash": "c92e027bebf2bd47e39256c706f5b123", - "profile": { - "height": "152", - "weight": "42", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 801, - "event_name": "アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "冒険竜", - "alias_name_display": "冒険竜", - "id": "2419001", - "hash": "8330c93dc6430067c4c1ec6922e3290e", - "profile": { - "height": "152", - "weight": "42", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 515, - "event_name": "戦国公演 天魔の乱" - } - ] - }, - { - "alias_name": "冒険竜", - "alias_name_display": "冒険竜", - "id": "2519002", - "hash": "a6ae3f65caf2cc10d44c0a64f2f1191e", - "profile": { - "height": "152", - "weight": "42", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 515, - "event_name": "戦国公演 天魔の乱" - } - ] - }, - { - "alias_name": "アドベントチアー", - "alias_name_display": "アドベントチアー", - "id": "2430201", - "hash": "a909e3bf82a215f7974d46400d71f959", - "profile": { - "height": "152", - "weight": "42", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 1505, - "event_name": "チーム対抗トークバトルショー ウィンターSP" - } - ] - }, - { - "alias_name": "アドベントチアー", - "alias_name_display": "アドベントチアー", - "id": "2530202", - "hash": "b0a88d8ab733b0a8b4603a9ed1905b9a", - "profile": { - "height": "152", - "weight": "42", - "bust": "78", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 1505, - "event_name": "チーム対抗トークバトルショー ウィンターSP" - } - ] - } - ], - "units": [ - { - "id": "28", - "name": "スパニッシュスタイル" - }, - { - "id": "120", - "name": "ブルームジャーニー" - } - ] - }, - "117": { - "idol_id": 117, - "idol_name": "西川保奈美", - "idol_name_display": "西川保奈美", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2202801", - "hash": "1458f727e92427dcc643e35e6e09eb2e", - "profile": { - "height": "155", - "weight": "55", - "bust": "88", - "waist": "60", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2302802", - "hash": "c7dfaedfd194df0dc4bff0674dc56760", - "profile": { - "height": "155", - "weight": "56", - "bust": "88", - "waist": "61", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "湯けむり温泉", - "alias_name_display": "湯けむり温泉", - "id": "2209201", - "hash": "108a9a1a26e4f1559940f92990e53402", - "profile": { - "height": "155", - "weight": "56", - "bust": "88", - "waist": "61", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "湯けむり温泉", - "alias_name_display": "湯けむり温泉", - "id": "2309202", - "hash": "69a68f545b404d2d285734d3f819d93e", - "profile": { - "height": "155", - "weight": "56", - "bust": "88", - "waist": "61", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "クラシカルフリル", - "alias_name_display": "クラシカルフリル", - "id": "2213901", - "hash": "1f174baf73bc3e258534284fab04df73", - "profile": { - "height": "155", - "weight": "56", - "bust": "88", - "waist": "61", - "hip": "87" - }, - "event": [ - { - "event_id": "014", - "event_name": "第14回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "クラシカルフリル", - "alias_name_display": "クラシカルフリル", - "id": "2313902", - "hash": "837d83bc33174cc52c2d0c0e35fba135", - "profile": { - "height": "155", - "weight": "56", - "bust": "88", - "waist": "61", - "hip": "87" - }, - "event": [ - { - "event_id": "014", - "event_name": "第14回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "白き女傑", - "alias_name_display": "白き女傑", - "id": "2218701", - "hash": "c53f9a86b6b7484381e566ced779b7a1", - "profile": { - "height": "155", - "weight": "56", - "bust": "88", - "waist": "61", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "白き女傑", - "alias_name_display": "白き女傑", - "id": "2318702", - "hash": "86d9836742784446627e9796766a8bd1", - "profile": { - "height": "155", - "weight": "56", - "bust": "88", - "waist": "61", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "ワーキング・ロード", - "alias_name_display": "ワーキング・ロード", - "id": "2225401", - "hash": "fd2c868d155fde4a8b033854eea4a809", - "profile": { - "height": "155", - "weight": "56", - "bust": "88", - "waist": "61", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "ワーキング・ロード", - "alias_name_display": "ワーキング・ロード", - "id": "2325402", - "hash": "251069b6aa9c8f8f8992ff851f1dd51b", - "profile": { - "height": "155", - "weight": "56", - "bust": "88", - "waist": "61", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "まごころメイド", - "alias_name_display": "まごころメイド", - "id": "2231901", - "hash": "132f8d1774a7420805decc458a0beb71", - "profile": { - "height": "155", - "weight": "56", - "bust": "88", - "waist": "61", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "まごころメイド", - "alias_name_display": "まごころメイド", - "id": "2331902", - "hash": "3a60e9a4a39020d28e9988a0878c1106", - "profile": { - "height": "155", - "weight": "56", - "bust": "88", - "waist": "61", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "麗しきプリマドンナ", - "alias_name_display": "麗しきプリマドンナ", - "id": "2415101", - "hash": "a69ce5cc09555d49bae51a33a292b4a3", - "profile": { - "height": "155", - "weight": "56", - "bust": "88", - "waist": "61", - "hip": "87" - }, - "event": [ - { - "event_id": "017", - "event_name": "第17回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "麗しきプリマドンナ", - "alias_name_display": "麗しきプリマドンナ", - "id": "2515102", - "hash": "7c0fc03e0f012ea2ebb7787795f84eef", - "profile": { - "height": "155", - "weight": "56", - "bust": "88", - "waist": "61", - "hip": "87" - }, - "event": [ - { - "event_id": "017", - "event_name": "第17回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "シンシアチアー", - "alias_name_display": "シンシアチアー", - "id": "2425001", - "hash": "dd88e2e9285553c7ad6b9fcfd066ccd7", - "profile": { - "height": "155", - "weight": "56", - "bust": "88", - "waist": "61", - "hip": "87" - }, - "event": [ - { - "event_id": 1502, - "event_name": "チーム対抗雨の日トークバトルショー" - } - ] - }, - { - "alias_name": "シンシアチアー", - "alias_name_display": "シンシアチアー", - "id": "2525002", - "hash": "a478ca3a4093095341230dd3a5a4af2b", - "profile": { - "height": "155", - "weight": "56", - "bust": "88", - "waist": "61", - "hip": "87" - }, - "event": [ - { - "event_id": 1502, - "event_name": "チーム対抗雨の日トークバトルショー" - } - ] - }, - { - "alias_name": "ビューティアスヴォーチェ", - "alias_name_display": "ビューティアスヴォーチェ", - "id": "2435001", - "hash": "c99ae6e79c74a49e4d0ecbfa5ec125e3", - "profile": { - "height": "155", - "weight": "56", - "bust": "88", - "waist": "61", - "hip": "87" - }, - "event": [ - { - "event_id": 724, - "event_name": "第24回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ビューティアスヴォーチェ", - "alias_name_display": "ビューティアスヴォーチェ", - "id": "2535002", - "hash": "148c761bd9f2699953da23d185cfed2b", - "profile": { - "height": "155", - "weight": "56", - "bust": "88", - "waist": "61", - "hip": "87" - }, - "event": [ - { - "event_id": 724, - "event_name": "第24回ドリームLIVEフェスティバル" - } - ] - } - ], - "units": [ - { - "id": "206", - "name": "セクシーボンデージ" - } - ] - }, - "118": { - "idol_id": 118, - "idol_name": "成宮由愛", - "idol_name_display": "成宮由愛", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2203001", - "hash": "b9c6ac643c09462bf81ce0377506d23c", - "profile": { - "height": "150", - "weight": "40", - "bust": "72", - "waist": "51", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2303002", - "hash": "4ba43b47803b72a5f49a9bcb8616d0e8", - "profile": { - "height": "150", - "weight": "40", - "bust": "72", - "waist": "51", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "浴衣祭り", - "alias_name_display": "浴衣祭り", - "id": "2204901", - "hash": "3b22401aac95c2a8d36f95d2f2121ef6", - "profile": { - "height": "150", - "weight": "40", - "bust": "72", - "waist": "51", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "浴衣祭り", - "alias_name_display": "浴衣祭り", - "id": "2304902", - "hash": "9bd73a611f0150483ba1443b89157678", - "profile": { - "height": "150", - "weight": "40", - "bust": "72", - "waist": "51", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "新春コレクション", - "alias_name_display": "新春コレクション", - "id": "2207601", - "hash": "ab3ffe2f96c8fd1ff009d0ad90fb66fd", - "profile": { - "height": "150", - "weight": "40", - "bust": "72", - "waist": "51", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "新春コレクション", - "alias_name_display": "新春コレクション", - "id": "2307602", - "hash": "876f0ea90c8c4243592c3bd1e801ad98", - "profile": { - "height": "150", - "weight": "40", - "bust": "72", - "waist": "51", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "クリスマスパーティー", - "alias_name_display": "クリスマスパーティー", - "id": "2213201", - "hash": "7a61bf64e0b426923bb45b941bd7c90a", - "profile": { - "height": "150", - "weight": "40", - "bust": "72", - "waist": "51", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "クリスマスパーティー", - "alias_name_display": "クリスマスパーティー", - "id": "2313202", - "hash": "3ade0c25bce649c62eb1f444cf449f01", - "profile": { - "height": "150", - "weight": "40", - "bust": "72", - "waist": "51", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "魔女っ娘I.C", - "alias_name_display": "魔女っ娘I.C", - "id": "2315802", - "hash": "216acd7a27e04ba268e35d2966e681af", - "profile": { - "height": "150", - "weight": "40", - "bust": "72", - "waist": "51", - "hip": "73" - }, - "event": [ - { - "event_id": 1201, - "event_name": "目指せ魔女っ娘 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "マーチングバンド", - "alias_name_display": "マーチングバンド", - "id": "2218401", - "hash": "220429110c5cf2fbaa7580fa256063c4", - "profile": { - "height": "150", - "weight": "40", - "bust": "72", - "waist": "51", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "マーチングバンド", - "alias_name_display": "マーチングバンド", - "id": "2318402", - "hash": "78246cc890dc9be62b96ca43c065bfbe", - "profile": { - "height": "150", - "weight": "40", - "bust": "72", - "waist": "51", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "カインドハート", - "alias_name_display": "カインドハート", - "id": "2323502", - "hash": "783e73d2983bbfa46d1df677f56b8ee9", - "profile": { - "height": "150", - "weight": "40", - "bust": "72", - "waist": "51", - "hip": "73" - }, - "event": [ - { - "event_id": 716, - "event_name": "第16回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "タラン・リュタン", - "alias_name_display": "タラン・リュタン", - "id": "2230001", - "hash": "8202dd0badfaaca173a78ece8775c418", - "profile": { - "height": "150", - "weight": "40", - "bust": "72", - "waist": "51", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "タラン・リュタン", - "alias_name_display": "タラン・リュタン", - "id": "2330002", - "hash": "d7536b080af66bef1964c44f102c1394", - "profile": { - "height": "150", - "weight": "40", - "bust": "72", - "waist": "51", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "リトルプリーステス", - "alias_name_display": "リトルプリーステス", - "id": "2406301", - "hash": "d2df4cba6a3e68031193dc3dba693f2f", - "profile": { - "height": "150", - "weight": "40", - "bust": "72", - "waist": "51", - "hip": "73" - }, - "event": [ - { - "event_id": 504, - "event_name": "アイドルLIVEツアーinスペイン" - } - ] - }, - { - "alias_name": "リトルプリーステス", - "alias_name_display": "リトルプリーステス", - "id": "2506302", - "hash": "b523fbaa59e1e8df3ad3e299ae4737da", - "profile": { - "height": "150", - "weight": "40", - "bust": "72", - "waist": "51", - "hip": "73" - }, - "event": [ - { - "event_id": 504, - "event_name": "アイドルLIVEツアーinスペイン" - } - ] - }, - { - "alias_name": "マジカルガール・リーフ", - "alias_name_display": "マジカルガール・リーフ", - "id": "2414601", - "hash": "f5c7d9885d3ef621bb3817c499315657", - "profile": { - "height": "150", - "weight": "40", - "bust": "72", - "waist": "51", - "hip": "73" - }, - "event": [ - { - "event_id": 1201, - "event_name": "目指せ魔女っ娘 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "マジカルガール・リーフ", - "alias_name_display": "マジカルガール・リーフ", - "id": "2514602", - "hash": "25de5c4589c6fd4c321306f534e8daec", - "profile": { - "height": "150", - "weight": "40", - "bust": "72", - "waist": "51", - "hip": "73" - }, - "event": [ - { - "event_id": 1201, - "event_name": "目指せ魔女っ娘 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "マジカルガールS・リーフ", - "alias_name_display": "マジカルガールS・リーフ", - "id": "2414701", - "hash": "f155c28fb82fb025607d07c733cc53b2", - "profile": { - "height": "150", - "weight": "40", - "bust": "72", - "waist": "51", - "hip": "73" - }, - "event": [ - { - "event_id": 1201, - "event_name": "目指せ魔女っ娘 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "マジカルガールS・リーフ", - "alias_name_display": "マジカルガールS・リーフ", - "id": "2514702", - "hash": "2987b2a345ae850352027f252ba50359", - "profile": { - "height": "150", - "weight": "40", - "bust": "72", - "waist": "51", - "hip": "73" - }, - "event": [ - { - "event_id": 1201, - "event_name": "目指せ魔女っ娘 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "エアリアルフェアリー", - "alias_name_display": "エアリアルフェアリー", - "id": "2424101", - "hash": "1b1ee82db7a9842317010a4dcf5878f2", - "profile": { - "height": "150", - "weight": "40", - "bust": "72", - "waist": "51", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "エアリアルフェアリー", - "alias_name_display": "エアリアルフェアリー", - "id": "2524102", - "hash": "f9e301f6b1445bcc65500175036e4f1d", - "profile": { - "height": "150", - "weight": "40", - "bust": "72", - "waist": "51", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "ゆめの大空", - "alias_name_display": "ゆめの大空", - "id": "2432801", - "hash": "b29c370ccee401411077c3ac897b457b", - "profile": { - "height": "150", - "weight": "40", - "bust": "72", - "waist": "51", - "hip": "73" - }, - "event": [ - { - "event_id": 1803, - "event_name": "アイドルバラエティ 大空への挑戦 ~Fly me to the Sky~" - } - ] - }, - { - "alias_name": "ゆめの大空", - "alias_name_display": "ゆめの大空", - "id": "2532802", - "hash": "3a91b3c21892380bf9febb395bf4baa5", - "profile": { - "height": "150", - "weight": "40", - "bust": "72", - "waist": "51", - "hip": "73" - }, - "event": [ - { - "event_id": 1803, - "event_name": "アイドルバラエティ 大空への挑戦 ~Fly me to the Sky~" - } - ] - } - ], - "units": [ - { - "id": "114", - "name": "ドリームホープスプリング" - }, - { - "id": "120", - "name": "ブルームジャーニー" - }, - { - "id": "164", - "name": "マジカルテット" - }, - { - "id": "214", - "name": "L.M.B.G" - } - ] - }, - "119": { - "idol_id": 119, - "idol_name": "藤居朋", - "idol_name_display": "藤居朋", - "aliases": [ - { - "alias_name": "ひな祭り", - "alias_name_display": "ひな祭り", - "id": "2203101", - "hash": "ada1f3044f16789d41715c19836867d2", - "profile": { - "height": "163", - "weight": "45", - "bust": "78", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 202, - "event_name": "アイドルサバイバルひな祭り編" - } - ] - }, - { - "alias_name": "ひな祭り", - "alias_name_display": "ひな祭り", - "id": "2303102", - "hash": "92eb0189eff8cc013115f02a1bad963c", - "profile": { - "height": "163", - "weight": "45", - "bust": "78", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 202, - "event_name": "アイドルサバイバルひな祭り編" - } - ] - }, - { - "alias_name": "ゴスペルドレス", - "alias_name_display": "ゴスペルドレス", - "id": "2207401", - "hash": "a2eb76bbccb00f2f5ffe37499f31af41", - "profile": { - "height": "163", - "weight": "45", - "bust": "78", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 208, - "event_name": "アイドルサバイバル聖歌響くクリスマス" - } - ] - }, - { - "alias_name": "ゴスペルドレス", - "alias_name_display": "ゴスペルドレス", - "id": "2307402", - "hash": "1ecb11582b98c1a39816444772f3a0f3", - "profile": { - "height": "163", - "weight": "45", - "bust": "78", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 208, - "event_name": "アイドルサバイバル聖歌響くクリスマス" - } - ] - }, - { - "alias_name": "ラッキーフォーチュン", - "alias_name_display": "ラッキーフォーチュン", - "id": "2210001", - "hash": "7294157f71abf9196c9229a87fe5fdb6", - "profile": { - "height": "163", - "weight": "45", - "bust": "78", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "ラッキーフォーチュン", - "alias_name_display": "ラッキーフォーチュン", - "id": "2310002", - "hash": "8a007e260d74c773aa6a389556cf2ca2", - "profile": { - "height": "163", - "weight": "45", - "bust": "78", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "スピリチュアルガール", - "alias_name_display": "スピリチュアルガール", - "id": "2216701", - "hash": "9c51aff31404021b1c109fe993cc2753", - "profile": { - "height": "163", - "weight": "45", - "bust": "78", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "スピリチュアルガール", - "alias_name_display": "スピリチュアルガール", - "id": "2316702", - "hash": "9d45daaf1e78b11e1297d7f33e08770c", - "profile": { - "height": "163", - "weight": "45", - "bust": "78", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "ビーチガール", - "alias_name_display": "ビーチガール", - "id": "2222201", - "hash": "8b04d6339e2e106de0498f5eb986260d", - "profile": { - "height": "163", - "weight": "45", - "bust": "78", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 1703, - "event_name": "アイドルプロデュース おいでよ!海の家" - } - ] - }, - { - "alias_name": "ビーチガール", - "alias_name_display": "ビーチガール", - "id": "2322202", - "hash": "7dcecec11834d30adfabe86d7edb44a6", - "profile": { - "height": "163", - "weight": "45", - "bust": "78", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 1703, - "event_name": "アイドルプロデュース おいでよ!海の家" - } - ] - }, - { - "alias_name": "ビーチガール・S", - "alias_name_display": "ビーチガール・S", - "id": "2222301", - "hash": "f8381257fc2199e90429d3c75708a1e8", - "profile": { - "height": "163", - "weight": "45", - "bust": "78", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 1703, - "event_name": "アイドルプロデュース おいでよ!海の家" - } - ] - }, - { - "alias_name": "ビーチガール・S", - "alias_name_display": "ビーチガール・S", - "id": "2322302", - "hash": "c8d97b51b309b87a36bcdfcc0a767566", - "profile": { - "height": "163", - "weight": "45", - "bust": "78", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 1703, - "event_name": "アイドルプロデュース おいでよ!海の家" - } - ] - }, - { - "alias_name": "フォーチュンヒーロー", - "alias_name_display": "フォーチュンヒーロー", - "id": "2324602", - "hash": "0a98b80bbf63c91923a8edf62a448434", - "profile": { - "height": "163", - "weight": "45", - "bust": "78", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 523, - "event_name": "鋼鉄公演 きらりんロボ -襲来!コスメティア帝国-" - } - ] - }, - { - "alias_name": "タラン・ミュジーク", - "alias_name_display": "タラン・ミュジーク", - "id": "2228201", - "hash": "45443770e7bb8295e479ab17be49edba", - "profile": { - "height": "163", - "weight": "45", - "bust": "78", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "タラン・ミュジーク", - "alias_name_display": "タラン・ミュジーク", - "id": "2328202", - "hash": "d2eacbc1164672558526bff76d8995b0", - "profile": { - "height": "163", - "weight": "45", - "bust": "78", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "フォーチュン★スター", - "alias_name_display": "フォーチュン★スター", - "id": "2409901", - "hash": "206de916e07f5839c754f6d3be15ee29", - "profile": { - "height": "163", - "weight": "45", - "bust": "78", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "フォーチュン★スター", - "alias_name_display": "フォーチュン★スター", - "id": "2509902", - "hash": "77f55e048e90970b0d994f245ef32d2b", - "profile": { - "height": "163", - "weight": "45", - "bust": "78", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "フォーチュンチアー", - "alias_name_display": "フォーチュンチアー", - "id": "2422801", - "hash": "f6b9c94dd166ad83ccfaf4f85de47c66", - "profile": { - "height": "163", - "weight": "45", - "bust": "78", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 1109, - "event_name": "第9回プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "フォーチュンチアー", - "alias_name_display": "フォーチュンチアー", - "id": "2522802", - "hash": "e2bde5d2aa1f5aab95c8bb9251ab2af9", - "profile": { - "height": "163", - "weight": "45", - "bust": "78", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 1109, - "event_name": "第9回プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "ピックアップフォーチュン", - "alias_name_display": "ピックアップフォーチュン", - "id": "2439001", - "hash": "40ac8ff64cd19e3e12fe831d0da0c22a", - "profile": { - "height": "163", - "weight": "45", - "bust": "78", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 728, - "event_name": "ドリームLIVEフェスティバル スプリングSP" - } - ] - }, - { - "alias_name": "ピックアップフォーチュン", - "alias_name_display": "ピックアップフォーチュン", - "id": "2539002", - "hash": "cc04b9fd7b06293b952152aef32f4561", - "profile": { - "height": "163", - "weight": "45", - "bust": "78", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 728, - "event_name": "ドリームLIVEフェスティバル スプリングSP" - } - ] - } - ], - "units": [ - { - "id": "56", - "name": "ミステリアスガールズ" - }, - { - "id": "92", - "name": "ゴスペルシスターズ" - }, - { - "id": "100", - "name": "ハートウォーマー" - } - ] - }, - "120": { - "idol_id": 120, - "idol_name": "塩見周子", - "idol_name_display": "塩見周子", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2203601", - "hash": "e44e7611282f6c57fea4ab3fc18d6519", - "profile": { - "height": "163", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2303602", - "hash": "ed3863e909c00d702b232b25c6f1633a", - "profile": { - "height": "163", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "クーリッシュピクシー", - "alias_name_display": "クーリッシュピクシー", - "id": "2204601", - "hash": "a6c0eff1e5c7ad9397cda888d0a3536c", - "profile": { - "height": "163", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 204, - "event_name": "アイドルサバイバルin動物園" - } - ] - }, - { - "alias_name": "クーリッシュピクシー", - "alias_name_display": "クーリッシュピクシー", - "id": "2304602", - "hash": "8d468d9e16245baa83cff879b722782e", - "profile": { - "height": "163", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 204, - "event_name": "アイドルサバイバルin動物園" - } - ] - }, - { - "alias_name": "ニューイヤー", - "alias_name_display": "ニューイヤー", - "id": "2207501", - "hash": "82b476bcab7ef6f64617900a063971c3", - "profile": { - "height": "163", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 404, - "event_name": "新春アイドルプロデュース" - } - ] - }, - { - "alias_name": "ニューイヤー", - "alias_name_display": "ニューイヤー", - "id": "2307502", - "hash": "7414eee0038d5be21fb8b12014d6bd02", - "profile": { - "height": "163", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 404, - "event_name": "新春アイドルプロデュース" - } - ] - }, - { - "alias_name": "ビーチスタイル", - "alias_name_display": "ビーチスタイル", - "id": "2214001", - "hash": "5a0ea0a69a45d7d201112ed7b15e3e19", - "profile": { - "height": "163", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ビーチスタイル", - "alias_name_display": "ビーチスタイル", - "id": "2314002", - "hash": "cae2e7f102323cdbf0a2493dad6dce60", - "profile": { - "height": "163", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ミッドナイトフェアリー", - "alias_name_display": "ミッドナイトフェアリー", - "id": "2403201", - "hash": "f3c0fc3102be01d6f7ae5f3b0c40f647", - "profile": { - "height": "163", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ミッドナイトフェアリー", - "alias_name_display": "ミッドナイトフェアリー", - "id": "2503202", - "hash": "718611eef304cc92ed0363ef1632ce08", - "profile": { - "height": "163", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "あやかし京娘", - "alias_name_display": "あやかし京娘", - "id": "2407201", - "hash": "4a3edc8d2d1db05a999c497b87898bc4", - "profile": { - "height": "163", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 701, - "event_name": "ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "あやかし京娘", - "alias_name_display": "あやかし京娘", - "id": "2507202", - "hash": "954f509fc6b0bb872d155c824336ca48", - "profile": { - "height": "163", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 701, - "event_name": "ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ブルーサマーヘブン", - "alias_name_display": "ブルーサマーヘブン", - "id": "2415601", - "hash": "d2573b1a26b8652a0ea85b0bb574b48d", - "profile": { - "height": "163", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ブルーサマーヘブン", - "alias_name_display": "ブルーサマーヘブン", - "id": "2515602", - "hash": "02e831b53db390644097ce0541e224d7", - "profile": { - "height": "163", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "想いひとひら", - "alias_name_display": "想いひとひら", - "id": "2423201", - "hash": "9b78b0d2576534f5ac5977120d760159", - "profile": { - "height": "163", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "想いひとひら", - "alias_name_display": "想いひとひら", - "id": "2523202", - "hash": "a0dbd59124757f6c961c5320d9ff2450", - "profile": { - "height": "163", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "シンデレラガール", - "alias_name_display": "シンデレラガール", - "id": "2424801", - "hash": "c62f2df674d821857397b2b62371012e", - "profile": { - "height": "163", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "シンデレラガール", - "alias_name_display": "シンデレラガール", - "id": "2524802", - "hash": "a7886ce9ac3c5eafd81f8b14cee2d2fc", - "profile": { - "height": "163", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "2428501", - "hash": "fb292dd3c101e5c65d16c5e4467cf434", - "profile": { - "height": "163", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "2528502", - "hash": "26f9c950a0f6085e83da36f350d0851f", - "profile": { - "height": "163", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "アニバーサリープリンセス", - "alias_name_display": "アニバーサリープリンセス", - "id": "2428801", - "hash": "4539562c95ef1000bcc72e8a50d1e00f", - "profile": { - "height": "163", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 1704, - "event_name": "アイドルプロデュース the 4th Anniversary" - } - ] - }, - { - "alias_name": "アニバーサリープリンセス", - "alias_name_display": "アニバーサリープリンセス", - "id": "2528802", - "hash": "89c64f8de6b5d1a9711d943eb66e1478", - "profile": { - "height": "163", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 1704, - "event_name": "アイドルプロデュース the 4th Anniversary" - } - ] - }, - { - "alias_name": "シンデレラドリーム", - "alias_name_display": "シンデレラドリーム", - "id": "2433801", - "hash": "0098b967f649fc47bdc99feefbedb9fc", - "profile": { - "height": "163", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "シンデレラドリーム", - "alias_name_display": "シンデレラドリーム", - "id": "2533802", - "hash": "624e30edd0c2d459e2c70b2ef491cab0", - "profile": { - "height": "163", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "湯けむり舞娘", - "alias_name_display": "湯けむり舞娘", - "id": "2435801", - "hash": "71e4c4b47b167ba9e37188547a8a9678", - "profile": { - "height": "163", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "湯けむり舞娘", - "alias_name_display": "湯けむり舞娘", - "id": "2535802", - "hash": "ffd90fbb737f2862939442ffc009a270", - "profile": { - "height": "163", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "花明り夜風", - "alias_name_display": "花明り夜風", - "id": "2439201", - "hash": "6a1356d5eb2db0859810887e0eb46deb", - "profile": { - "height": "163", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 1907, - "event_name": "ディアリースタークエスト ~夜桜奇譚~" - } - ] - }, - { - "alias_name": "花明り夜風", - "alias_name_display": "花明り夜風", - "id": "2539202", - "hash": "e02867846f13e03eb619cb5e9bddae89", - "profile": { - "height": "163", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 1907, - "event_name": "ディアリースタークエスト ~夜桜奇譚~" - } - ] - } - ], - "units": [ - { - "id": "36", - "name": "テンプテーション・アイズ" - }, - { - "id": "41", - "name": "羽衣小町" - }, - { - "id": "126", - "name": "誘惑イビル" - }, - { - "id": "185", - "name": "LiPPS" - }, - { - "id": "200", - "name": "CAERULA" - }, - { - "id": "205", - "name": "シンデレラガール" - }, - { - "id": "215", - "name": "Project:Krone" - } - ] - }, - "121": { - "idol_id": 121, - "idol_name": "脇山珠美", - "idol_name_display": "脇山珠美", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2203701", - "hash": "e679dff816d61f7dde0816dd34799270", - "profile": { - "height": "145", - "weight": "38", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2303702", - "hash": "965021a44894a7832a1f88f0e9f742d4", - "profile": { - "height": "145", - "weight": "38", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "レインドロップ", - "alias_name_display": "レインドロップ", - "id": "2210101", - "hash": "ca4d85ca12153e208803d8380c003580", - "profile": { - "height": "145", - "weight": "38", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 407, - "event_name": "アイドルプロデュース 鎌倉あじさい巡り" - } - ] - }, - { - "alias_name": "レインドロップ", - "alias_name_display": "レインドロップ", - "id": "2310102", - "hash": "851c54b6959c755c24deec013072c3c5", - "profile": { - "height": "145", - "weight": "38", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 407, - "event_name": "アイドルプロデュース 鎌倉あじさい巡り" - } - ] - }, - { - "alias_name": "レインドロップスマイル", - "alias_name_display": "レインドロップスマイル", - "id": "2210201", - "hash": "78caf5509e0af127c00a4c5f1a3cf2ef", - "profile": { - "height": "145", - "weight": "38", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 407, - "event_name": "アイドルプロデュース 鎌倉あじさい巡り" - } - ] - }, - { - "alias_name": "レインドロップスマイル", - "alias_name_display": "レインドロップスマイル", - "id": "2310202", - "hash": "c49ce83bd2e36615d94720836a96f4e2", - "profile": { - "height": "145", - "weight": "38", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 407, - "event_name": "アイドルプロデュース 鎌倉あじさい巡り" - } - ] - }, - { - "alias_name": "ハッピーウェディング", - "alias_name_display": "ハッピーウェディング", - "id": "2216101", - "hash": "9c15bd84b69f2ff6921fc3320f180f98", - "profile": { - "height": "145", - "weight": "38", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "ハッピーウェディング", - "alias_name_display": "ハッピーウェディング", - "id": "2316102", - "hash": "68fa76ac2cf3a756f256ef50f76f6d76", - "profile": { - "height": "145", - "weight": "38", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "ちいさなドキドキ", - "alias_name_display": "ちいさなドキドキ", - "id": "2218501", - "hash": "eb3b7cb3832c161a6ec05b130551948c", - "profile": { - "height": "145", - "weight": "38", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 709, - "event_name": "第9回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ちいさなドキドキ", - "alias_name_display": "ちいさなドキドキ", - "id": "2318502", - "hash": "0e03f797721d272186d8d21000d3e10a", - "profile": { - "height": "145", - "weight": "38", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 709, - "event_name": "第9回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "サマーバケーション", - "alias_name_display": "サマーバケーション", - "id": "2222501", - "hash": "0600b0149f228d1f7c2eed9406b975f1", - "profile": { - "height": "145", - "weight": "38", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "サマーバケーション", - "alias_name_display": "サマーバケーション", - "id": "2322502", - "hash": "3f093aa4e427556cc8add03178529d7d", - "profile": { - "height": "145", - "weight": "38", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "ハロウィンI.C", - "alias_name_display": "ハロウィンI.C", - "id": "2329002", - "hash": "d351c995d88a79e786bfea5fca55bf01", - "profile": { - "height": "145", - "weight": "38", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 1213, - "event_name": "目指せお菓子なハロウィン アイドルチャレンジ" - } - ] - }, - { - "alias_name": "ポテンシャルグリーン", - "alias_name_display": "ポテンシャルグリーン", - "id": "2231801", - "hash": "d7c92c9ee05cf097efaed72d317144e9", - "profile": { - "height": "145", - "weight": "38", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "ポテンシャルグリーン", - "alias_name_display": "ポテンシャルグリーン", - "id": "2331802", - "hash": "f3966391a56ee9d7c15aefdd73303927", - "profile": { - "height": "145", - "weight": "38", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "ちびっこステージ", - "alias_name_display": "ちびっこステージ", - "id": "2403101", - "hash": "aa0172e7bb70b19bf3262e2fd7c776e1", - "profile": { - "height": "145", - "weight": "38", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 206, - "event_name": "アイドルサバイバルin学園祭" - } - ] - }, - { - "alias_name": "ちびっこステージ", - "alias_name_display": "ちびっこステージ", - "id": "2503102", - "hash": "6400e8cfc48ab3bf8553c16279686a85", - "profile": { - "height": "145", - "weight": "38", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 206, - "event_name": "アイドルサバイバルin学園祭" - } - ] - }, - { - "alias_name": "小さな自信家", - "alias_name_display": "小さな自信家", - "id": "2409501", - "hash": "a69caf59d09fb1d64d1495c825a62464", - "profile": { - "height": "145", - "weight": "38", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "小さな自信家", - "alias_name_display": "小さな自信家", - "id": "2509502", - "hash": "e485b6a3355e84d67d7a4302ff960aa0", - "profile": { - "height": "145", - "weight": "38", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "流浪の剣客", - "alias_name_display": "流浪の剣客", - "id": "2422001", - "hash": "373e3e361b193fe691d59bb6e07508df", - "profile": { - "height": "145", - "weight": "38", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 517, - "event_name": "戦国公演 風来剣客伝" - } - ] - }, - { - "alias_name": "流浪の剣客", - "alias_name_display": "流浪の剣客", - "id": "2522002", - "hash": "9e486396d32ff068967105a1eb7cd139", - "profile": { - "height": "145", - "weight": "38", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 517, - "event_name": "戦国公演 風来剣客伝" - } - ] - }, - { - "alias_name": "ちびっこファッショニスタ", - "alias_name_display": "ちびっこファッショニスタ", - "id": "2428601", - "hash": "65496c8b5da8e7501713aa5d91bf38e2", - "profile": { - "height": "145", - "weight": "38", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 1802, - "event_name": "アイドルバラエティ 手作りライブプロジェクト!" - } - ] - }, - { - "alias_name": "ちびっこファッショニスタ", - "alias_name_display": "ちびっこファッショニスタ", - "id": "2528602", - "hash": "7242cb9dead449c0145bd41cfa681235", - "profile": { - "height": "145", - "weight": "38", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 1802, - "event_name": "アイドルバラエティ 手作りライブプロジェクト!" - } - ] - }, - { - "alias_name": "グローイングガール", - "alias_name_display": "グローイングガール", - "id": "2431001", - "hash": "d7fc5ac332b63b8bb29aaf81d686fa68", - "profile": { - "height": "145", - "weight": "38", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 816, - "event_name": "第16回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "グローイングガール", - "alias_name_display": "グローイングガール", - "id": "2531002", - "hash": "082b1e80f7cbee317080ad10e2c9ca89", - "profile": { - "height": "145", - "weight": "38", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 816, - "event_name": "第16回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ちびっこヴァンパイア", - "alias_name_display": "ちびっこヴァンパイア", - "id": "2435401", - "hash": "581612c7e3065718170759e2cebb1041", - "profile": { - "height": "145", - "weight": "38", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 1213, - "event_name": "目指せお菓子なハロウィン アイドルチャレンジ" - } - ] - }, - { - "alias_name": "ちびっこヴァンパイア", - "alias_name_display": "ちびっこヴァンパイア", - "id": "2535402", - "hash": "bebc047b25dc019ba8a1e6f4e03f675c", - "profile": { - "height": "145", - "weight": "38", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 1213, - "event_name": "目指せお菓子なハロウィン アイドルチャレンジ" - } - ] - }, - { - "alias_name": "せくしーヴァンパイア", - "alias_name_display": "せくしーヴァンパイア", - "id": "2435501", - "hash": "900261437894a61053e9aa69940c9615", - "profile": { - "height": "145", - "weight": "38", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 1213, - "event_name": "目指せお菓子なハロウィン アイドルチャレンジ" - } - ] - }, - { - "alias_name": "せくしーヴァンパイア", - "alias_name_display": "せくしーヴァンパイア", - "id": "2535502", - "hash": "65c1d041ea9ed32748e96188870b56f5", - "profile": { - "height": "145", - "weight": "38", - "bust": "72", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 1213, - "event_name": "目指せお菓子なハロウィン アイドルチャレンジ" - } - ] - } - ], - "units": [ - { - "id": "38", - "name": "忍武☆繚乱" - }, - { - "id": "106", - "name": "レインドロップ" - }, - { - "id": "156", - "name": "センゴク☆華☆ランブ" - }, - { - "id": "178", - "name": "からぱれ" - }, - { - "id": "179", - "name": "春霞" - } - ] - }, - "122": { - "idol_id": 122, - "idol_name": "岡崎泰葉", - "idol_name_display": "岡崎泰葉", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2204101", - "hash": "b57af23a2c131cc8b45dd49a20f76df0", - "profile": { - "height": "153", - "weight": "43", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2304102", - "hash": "ddf08d575bf37d507eebd3a6150ac8a7", - "profile": { - "height": "153", - "weight": "43", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "小さな一歩", - "alias_name_display": "小さな一歩", - "id": "2210501", - "hash": "9a8a08cb1cc77514779a32341079588e", - "profile": { - "height": "153", - "weight": "43", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 701, - "event_name": "ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "小さな一歩", - "alias_name_display": "小さな一歩", - "id": "2310502", - "hash": "8b2b5aaf046e3c52c73b3993fea37768", - "profile": { - "height": "153", - "weight": "43", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 701, - "event_name": "ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ショコラフレーバー", - "alias_name_display": "ショコラフレーバー", - "id": "2214301", - "hash": "788177b829cd93ef13581f7db56bdf15", - "profile": { - "height": "153", - "weight": "43", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 411, - "event_name": "アイドルプロデュース チョコレートフォーユー!" - } - ] - }, - { - "alias_name": "ショコラフレーバー", - "alias_name_display": "ショコラフレーバー", - "id": "2314302", - "hash": "50f794509606aab019899e5112533408", - "profile": { - "height": "153", - "weight": "43", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 411, - "event_name": "アイドルプロデュース チョコレートフォーユー!" - } - ] - }, - { - "alias_name": "ショコラフレーバー・S", - "alias_name_display": "ショコラフレーバー・S", - "id": "2214401", - "hash": "69ce323535350959960d423371d20bcc", - "profile": { - "height": "153", - "weight": "43", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 411, - "event_name": "アイドルプロデュース チョコレートフォーユー!" - } - ] - }, - { - "alias_name": "ショコラフレーバー・S", - "alias_name_display": "ショコラフレーバー・S", - "id": "2314402", - "hash": "d23dc2cedc767125189e31dd34e486a0", - "profile": { - "height": "153", - "weight": "43", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 411, - "event_name": "アイドルプロデュース チョコレートフォーユー!" - } - ] - }, - { - "alias_name": "メルヘンアニマルズ", - "alias_name_display": "メルヘンアニマルズ", - "id": "2217301", - "hash": "88ff421d2eca339de73a627e8292fb27", - "profile": { - "height": "153", - "weight": "43", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "メルヘンアニマルズ", - "alias_name_display": "メルヘンアニマルズ", - "id": "2317302", - "hash": "12b90def5bb388a39679557f35ecca52", - "profile": { - "height": "153", - "weight": "43", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "新春I.C", - "alias_name_display": "新春I.C", - "id": "2319402", - "hash": "53d7f758c8a85691276337c98d0df6d1", - "profile": { - "height": "153", - "weight": "43", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 1204, - "event_name": "新年かくし芸SP アイドルチャレンジ" - } - ] - }, - { - "alias_name": "さわやかスポーツ", - "alias_name_display": "さわやかスポーツ", - "id": "2223301", - "hash": "e509f8e6dcb2719a45e65af224a5a2cb", - "profile": { - "height": "153", - "weight": "43", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "さわやかスポーツ", - "alias_name_display": "さわやかスポーツ", - "id": "2323302", - "hash": "032a8edcd9d3d015114934eb0a0e0279", - "profile": { - "height": "153", - "weight": "43", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "T.B.チアーズ", - "alias_name_display": "T.B.チアーズ", - "id": "2225501", - "hash": "23f7344f24328f4e3686cfb2e115bb94", - "profile": { - "height": "153", - "weight": "43", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 1506, - "event_name": "第6回チーム対抗トークバトルショー" - } - ] - }, - { - "alias_name": "T.B.チアーズ", - "alias_name_display": "T.B.チアーズ", - "id": "2325502", - "hash": "ea8b4ce81f9c11e52f0032daf3388ffa", - "profile": { - "height": "153", - "weight": "43", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 1506, - "event_name": "第6回チーム対抗トークバトルショー" - } - ] - }, - { - "alias_name": "ガーリーポッシブ", - "alias_name_display": "ガーリーポッシブ", - "id": "2228601", - "hash": "868dc6accad9dfd7b5f3192a7e989345", - "profile": { - "height": "153", - "weight": "43", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ガーリーポッシブ", - "alias_name_display": "ガーリーポッシブ", - "id": "2328602", - "hash": "ba758417f5b2c50e967f9fe9fe245a1e", - "profile": { - "height": "153", - "weight": "43", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "爛漫ひな娘", - "alias_name_display": "爛漫ひな娘", - "id": "2405501", - "hash": "7e8f66cd2d59a765f82207a6979ece5d", - "profile": { - "height": "153", - "weight": "43", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 209, - "event_name": "アイドルサバイバルひな祭り2013" - } - ] - }, - { - "alias_name": "爛漫ひな娘", - "alias_name_display": "爛漫ひな娘", - "id": "2505502", - "hash": "da50d7db5e589095e50bec4974577e56", - "profile": { - "height": "153", - "weight": "43", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 209, - "event_name": "アイドルサバイバルひな祭り2013" - } - ] - }, - { - "alias_name": "プラネットスター", - "alias_name_display": "プラネットスター", - "id": "2410001", - "hash": "1f750bf1abbc39aa6fef137dc0e075b4", - "profile": { - "height": "153", - "weight": "43", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 508, - "event_name": "LIVEツアーカーニバルinスペースワールド" - } - ] - }, - { - "alias_name": "プラネットスター", - "alias_name_display": "プラネットスター", - "id": "2510002", - "hash": "40d987790b986b93a47f6c14168a07c3", - "profile": { - "height": "153", - "weight": "43", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 508, - "event_name": "LIVEツアーカーニバルinスペースワールド" - } - ] - }, - { - "alias_name": "独楽の芸達者", - "alias_name_display": "独楽の芸達者", - "id": "2420301", - "hash": "d776b25c39a73d32904c274ec212f8fc", - "profile": { - "height": "153", - "weight": "43", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 1204, - "event_name": "新年かくし芸SP アイドルチャレンジ" - } - ] - }, - { - "alias_name": "独楽の芸達者", - "alias_name_display": "独楽の芸達者", - "id": "2520302", - "hash": "7defc5e1e4339bada951464376ef1b9f", - "profile": { - "height": "153", - "weight": "43", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 1204, - "event_name": "新年かくし芸SP アイドルチャレンジ" - } - ] - }, - { - "alias_name": "独楽の芸達者・S", - "alias_name_display": "独楽の芸達者・S", - "id": "2420401", - "hash": "1f0d0f8e9901e4e581e87542c3d50973", - "profile": { - "height": "153", - "weight": "43", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 1204, - "event_name": "新年かくし芸SP アイドルチャレンジ" - } - ] - }, - { - "alias_name": "独楽の芸達者・S", - "alias_name_display": "独楽の芸達者・S", - "id": "2520402", - "hash": "9b560fdd5e7ff78136a79a64ca2858af", - "profile": { - "height": "153", - "weight": "43", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 1204, - "event_name": "新年かくし芸SP アイドルチャレンジ" - } - ] - }, - { - "alias_name": "ワンモアステップ", - "alias_name_display": "ワンモアステップ", - "id": "2428301", - "hash": "14a6958b5ab32a6ac74fea57e084f78f", - "profile": { - "height": "153", - "weight": "43", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ワンモアステップ", - "alias_name_display": "ワンモアステップ", - "id": "2528302", - "hash": "fcd7b0930fa988a3c24a261c466e03bd", - "profile": { - "height": "153", - "weight": "43", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "トラストテイマー", - "alias_name_display": "トラストテイマー", - "id": "2438601", - "hash": "4c7df96d323e08125163cc5bc0a232ea", - "profile": { - "height": "153", - "weight": "43", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 1709, - "event_name": "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" - } - ] - }, - { - "alias_name": "トラストテイマー", - "alias_name_display": "トラストテイマー", - "id": "2538602", - "hash": "093d3b30bcfa6e493d00a8985b8066fe", - "profile": { - "height": "153", - "weight": "43", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 1709, - "event_name": "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" - } - ] - }, - { - "alias_name": "スマイリーテイマー", - "alias_name_display": "スマイリーテイマー", - "id": "2438701", - "hash": "b3aae663a3c87f949805746c7ac66b2b", - "profile": { - "height": "153", - "weight": "43", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 1709, - "event_name": "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" - } - ] - }, - { - "alias_name": "スマイリーテイマー", - "alias_name_display": "スマイリーテイマー", - "id": "2538702", - "hash": "4753beff820055994390f5d38cd6c31e", - "profile": { - "height": "153", - "weight": "43", - "bust": "79", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 1709, - "event_name": "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" - } - ] - } - ], - "units": [ - { - "id": "102", - "name": "パワフルヒーラーズ" - }, - { - "id": "105", - "name": "リトルチェリーブロッサム" - }, - { - "id": "166", - "name": "メルヘンアニマルズ" - }, - { - "id": "172", - "name": "GIRLS BE NEXT STEP" - } - ] - }, - "123": { - "idol_id": 123, - "idol_name": "速水奏", - "idol_name_display": "速水奏", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2205301", - "hash": "e50a31a7e529103da461ae20d1da2140", - "profile": { - "height": "162", - "weight": "43", - "bust": "86", - "waist": "55", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2305302", - "hash": "63f9b6f318bddcb60af2cf3e621f2175", - "profile": { - "height": "162", - "weight": "43", - "bust": "86", - "waist": "55", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "ハッピーバレンタイン", - "alias_name_display": "ハッピーバレンタイン", - "id": "2208101", - "hash": "5d859042cb0d19e91ac36d75a8211c6b", - "profile": { - "height": "162", - "weight": "43", - "bust": "86", - "waist": "55", - "hip": "84" - }, - "event": [ - { - "event_id": 405, - "event_name": "アイドルプロデュース バレンタイン編" - } - ] - }, - { - "alias_name": "ハッピーバレンタイン", - "alias_name_display": "ハッピーバレンタイン", - "id": "2308102", - "hash": "cbb8818bd27d3391e77bbff12bd978cd", - "profile": { - "height": "162", - "weight": "43", - "bust": "86", - "waist": "55", - "hip": "84" - }, - "event": [ - { - "event_id": 405, - "event_name": "アイドルプロデュース バレンタイン編" - } - ] - }, - { - "alias_name": "スマイルバレンタイン", - "alias_name_display": "スマイルバレンタイン", - "id": "2208201", - "hash": "a388f7b32e253232d63b6b39fa9d6e6a", - "profile": { - "height": "162", - "weight": "43", - "bust": "86", - "waist": "55", - "hip": "84" - }, - "event": [ - { - "event_id": 405, - "event_name": "アイドルプロデュース バレンタイン編" - } - ] - }, - { - "alias_name": "スマイルバレンタイン", - "alias_name_display": "スマイルバレンタイン", - "id": "2308202", - "hash": "3f837080e8800fbbe6c85258f40dab97", - "profile": { - "height": "162", - "weight": "43", - "bust": "86", - "waist": "55", - "hip": "84" - }, - "event": [ - { - "event_id": 405, - "event_name": "アイドルプロデュース バレンタイン編" - } - ] - }, - { - "alias_name": "セレクテッド", - "alias_name_display": "セレクテッド", - "id": "2222701", - "hash": "2c187df2b259b1e01d46c2868304cd17", - "profile": { - "height": "162", - "weight": "43", - "bust": "86", - "waist": "55", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "セレクテッド", - "alias_name_display": "セレクテッド", - "id": "2322702", - "hash": "ab4dfb0bebdc39a536b7f008fa041052", - "profile": { - "height": "162", - "weight": "43", - "bust": "86", - "waist": "55", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "蒼翼の乙女", - "alias_name_display": "蒼翼の乙女", - "id": "2406001", - "hash": "6975e9bc563b357783e3314efec0bef9", - "profile": { - "height": "162", - "weight": "43", - "bust": "86", - "waist": "55", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "蒼翼の乙女", - "alias_name_display": "蒼翼の乙女", - "id": "2506002", - "hash": "bcabb6bef0c899516b59ab44dc701efa", - "profile": { - "height": "162", - "weight": "43", - "bust": "86", - "waist": "55", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "夜色の花嫁", - "alias_name_display": "夜色の花嫁", - "id": "2410601", - "hash": "0231e453de83dea96397acc7f45b7731", - "profile": { - "height": "162", - "weight": "43", - "bust": "86", - "waist": "55", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "夜色の花嫁", - "alias_name_display": "夜色の花嫁", - "id": "2510602", - "hash": "bed2e9671e9378d70ba5e073180c7adc", - "profile": { - "height": "162", - "weight": "43", - "bust": "86", - "waist": "55", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "チアリングスター", - "alias_name_display": "チアリングスター", - "id": "2413001", - "hash": "9f20eaddbc42ec976f862e83d7d6cf5d", - "profile": { - "height": "162", - "weight": "43", - "bust": "86", - "waist": "55", - "hip": "84" - }, - "event": [ - { - "event_id": 1101, - "event_name": "プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "チアリングスター", - "alias_name_display": "チアリングスター", - "id": "2513002", - "hash": "d96d08d63893c62dde9015bf1efe1554", - "profile": { - "height": "162", - "weight": "43", - "bust": "86", - "waist": "55", - "hip": "84" - }, - "event": [ - { - "event_id": 1101, - "event_name": "プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "追憶のヴァニタス", - "alias_name_display": "追憶のヴァニタス", - "id": "2417801", - "hash": "a528c4946a755e454146149b4c5afc34", - "profile": { - "height": "162", - "weight": "43", - "bust": "86", - "waist": "55", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "追憶のヴァニタス", - "alias_name_display": "追憶のヴァニタス", - "id": "2517802", - "hash": "0b292926907dd6bbc279f1e6be1f5fd6", - "profile": { - "height": "162", - "weight": "43", - "bust": "86", - "waist": "55", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "2421401", - "hash": "9db93440a6646d776844ea187394870a", - "profile": { - "height": "162", - "weight": "43", - "bust": "86", - "waist": "55", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "2521402", - "hash": "c7fecadb9feb6558ebe7320a7fbaa902", - "profile": { - "height": "162", - "weight": "43", - "bust": "86", - "waist": "55", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "ミッドナイトレイヴ", - "alias_name_display": "ミッドナイトレイヴ", - "id": "2422401", - "hash": "4c75721b64da4ee43ab0a67e51e394b6", - "profile": { - "height": "162", - "weight": "43", - "bust": "86", - "waist": "55", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "ミッドナイトレイヴ", - "alias_name_display": "ミッドナイトレイヴ", - "id": "2522402", - "hash": "8b1c20dd3e050fb08648f0216adf4186", - "profile": { - "height": "162", - "weight": "43", - "bust": "86", - "waist": "55", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "カタルシスの華", - "alias_name_display": "カタルシスの華", - "id": "2432601", - "hash": "48dcab45161233389d47851fafcf7de3", - "profile": { - "height": "162", - "weight": "43", - "bust": "86", - "waist": "55", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "カタルシスの華", - "alias_name_display": "カタルシスの華", - "id": "2532602", - "hash": "81143e7454524921e1cacdcc3913dc00", - "profile": { - "height": "162", - "weight": "43", - "bust": "86", - "waist": "55", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "天光の乙女", - "alias_name_display": "天光の乙女", - "id": "2435601", - "hash": "738af1adc4839585781bb40c338ad956", - "profile": { - "height": "162", - "weight": "43", - "bust": "86", - "waist": "55", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "天光の乙女", - "alias_name_display": "天光の乙女", - "id": "2535602", - "hash": "95d9d50a1d7378f34aaa25491b1fd0ec", - "profile": { - "height": "162", - "weight": "43", - "bust": "86", - "waist": "55", - "hip": "84" - }, - "event": [] - } - ], - "units": [ - { - "id": "34", - "name": "デア・アウローラ" - }, - { - "id": "55", - "name": "ミステリアスアイズ" - }, - { - "id": "60", - "name": "モノクロームリリィ" - }, - { - "id": "74", - "name": "FrenchKisS" - }, - { - "id": "155", - "name": "セレクテッド" - }, - { - "id": "160", - "name": "ハッピーバレンタイン" - }, - { - "id": "185", - "name": "LiPPS" - }, - { - "id": "200", - "name": "CAERULA" - }, - { - "id": "215", - "name": "Project:Krone" - } - ] - }, - "124": { - "idol_id": 124, - "idol_name": "大石泉", - "idol_name_display": "大石泉", - "aliases": [ - { - "alias_name": "ニューウェーブ", - "alias_name_display": "ニューウェーブ", - "id": "2205401", - "hash": "26a9c568028c41a7a3d8b6877284ab46", - "profile": { - "height": "157", - "weight": "41", - "bust": "83", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 401, - "event_name": "新人アイドルプロデュース" - } - ] - }, - { - "alias_name": "ニューウェーブ", - "alias_name_display": "ニューウェーブ", - "id": "2305402", - "hash": "d110327ad8d38b3fe5a40a3a85447ca1", - "profile": { - "height": "157", - "weight": "41", - "bust": "83", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 401, - "event_name": "新人アイドルプロデュース" - } - ] - }, - { - "alias_name": "アメリカンスタイル", - "alias_name_display": "アメリカンスタイル", - "id": "2206901", - "hash": "ea14850708aa5d446ecdc704d76097d1", - "profile": { - "height": "157", - "weight": "41", - "bust": "83", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 501, - "event_name": "アイドルLIVEツアーinUSA" - } - ] - }, - { - "alias_name": "アメリカンスタイル", - "alias_name_display": "アメリカンスタイル", - "id": "2306902", - "hash": "7ac782754fe5a12b39d256706d2c022c", - "profile": { - "height": "157", - "weight": "41", - "bust": "83", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 501, - "event_name": "アイドルLIVEツアーinUSA" - } - ] - }, - { - "alias_name": "ジューンブライド", - "alias_name_display": "ジューンブライド", - "id": "2210301", - "hash": "daf0bbc66713287cb5cb51a87f150c55", - "profile": { - "height": "157", - "weight": "41", - "bust": "83", - "waist": "55", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ジューンブライド", - "alias_name_display": "ジューンブライド", - "id": "2310302", - "hash": "97419715f045627f679d352844628405", - "profile": { - "height": "157", - "weight": "41", - "bust": "83", - "waist": "55", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ネイビーブライト", - "alias_name_display": "ネイビーブライト", - "id": "2214501", - "hash": "077042da4ad562035613b4d1a8f18583", - "profile": { - "height": "157", - "weight": "41", - "bust": "83", - "waist": "55", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ネイビーブライト", - "alias_name_display": "ネイビーブライト", - "id": "2314502", - "hash": "d4499b213a934c5c68333cd2c839b1f0", - "profile": { - "height": "157", - "weight": "41", - "bust": "83", - "waist": "55", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "振袖まつり", - "alias_name_display": "振袖まつり", - "id": "2219501", - "hash": "cc71652b5fa848c9c53c6c9aa661afc4", - "profile": { - "height": "157", - "weight": "41", - "bust": "83", - "waist": "55", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "振袖まつり", - "alias_name_display": "振袖まつり", - "id": "2319502", - "hash": "abe79791b4e165347c3372ad6557774b", - "profile": { - "height": "157", - "weight": "41", - "bust": "83", - "waist": "55", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "コンストラクタヴォイス", - "alias_name_display": "コンストラクタヴォイス", - "id": "2226501", - "hash": "abb47054d1c415287ac5a9aa3ebb9f02", - "profile": { - "height": "157", - "weight": "41", - "bust": "83", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": "028", - "event_name": "第28回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "コンストラクタヴォイス", - "alias_name_display": "コンストラクタヴォイス", - "id": "2326502", - "hash": "c0500e82db55d8753ff92b9cdb8cb895", - "profile": { - "height": "157", - "weight": "41", - "bust": "83", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": "028", - "event_name": "第28回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "ネイビーウェーブ", - "alias_name_display": "ネイビーウェーブ", - "id": "2409001", - "hash": "7d9e8adf8a5a5b22d5219e08745affb5", - "profile": { - "height": "157", - "weight": "41", - "bust": "83", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": "012", - "event_name": "第12回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "ネイビーウェーブ", - "alias_name_display": "ネイビーウェーブ", - "id": "2509002", - "hash": "27bae0d4009a858d08dced42005cdf25", - "profile": { - "height": "157", - "weight": "41", - "bust": "83", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": "012", - "event_name": "第12回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "ビット・パフォーマー", - "alias_name_display": "ビット・パフォーマー", - "id": "2416101", - "hash": "944d9e23c5292a2b993eb3b753c12a88", - "profile": { - "height": "157", - "weight": "41", - "bust": "83", - "waist": "55", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ビット・パフォーマー", - "alias_name_display": "ビット・パフォーマー", - "id": "2516102", - "hash": "40b76c19f4311be43df320a7c739b4d9", - "profile": { - "height": "157", - "weight": "41", - "bust": "83", - "waist": "55", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "スプラッシュマーメイド", - "alias_name_display": "スプラッシュマーメイド", - "id": "2426001", - "hash": "ab95b7d7c331f74a0617f279f24d3c41", - "profile": { - "height": "157", - "weight": "41", - "bust": "83", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 1503, - "event_name": "チーム対抗 夏だ!プールだ!トークバトルショー" - } - ] - }, - { - "alias_name": "スプラッシュマーメイド", - "alias_name_display": "スプラッシュマーメイド", - "id": "2526002", - "hash": "7935b5bc00980c3d280da85664b33eb0", - "profile": { - "height": "157", - "weight": "41", - "bust": "83", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 1503, - "event_name": "チーム対抗 夏だ!プールだ!トークバトルショー" - } - ] - }, - { - "alias_name": "アンブレーク", - "alias_name_display": "アンブレーク", - "id": "2437901", - "hash": "ea4e42907f60a55e13f16bcce3df0922", - "profile": { - "height": "157", - "weight": "41", - "bust": "83", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 727, - "event_name": "第27回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "アンブレーク", - "alias_name_display": "アンブレーク", - "id": "2537902", - "hash": "ea24d74d3d4603863842d1464a3f82dd", - "profile": { - "height": "157", - "weight": "41", - "bust": "83", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 727, - "event_name": "第27回ドリームLIVEフェスティバル" - } - ] - } - ], - "units": [ - { - "id": "99", - "name": "ニューウェーブ" - }, - { - "id": "143", - "name": "ファタ・モルガーナ" - } - ] - }, - "125": { - "idol_id": 125, - "idol_name": "松尾千鶴", - "idol_name_display": "松尾千鶴", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2205901", - "hash": "5868502dd8fba8f476fdbc8db146dbb8", - "profile": { - "height": "161", - "weight": "45", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2305902", - "hash": "c934cdde656ee3dd7456abbffdcc16f7", - "profile": { - "height": "161", - "weight": "45", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ひな祭り", - "alias_name_display": "ひな祭り", - "id": "2208401", - "hash": "91a50215ae0c4f7b16ca3e5bfb97fb42", - "profile": { - "height": "161", - "weight": "45", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [ - { - "event_id": 209, - "event_name": "アイドルサバイバルひな祭り2013" - } - ] - }, - { - "alias_name": "ひな祭り", - "alias_name_display": "ひな祭り", - "id": "2308402", - "hash": "0a427058cd1884ae4b9bea994d4460f2", - "profile": { - "height": "161", - "weight": "45", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [ - { - "event_id": 209, - "event_name": "アイドルサバイバルひな祭り2013" - } - ] - }, - { - "alias_name": "不器用少女", - "alias_name_display": "不器用少女", - "id": "2210801", - "hash": "e3ea1ea710dcf9dc5d40b48e62266b8c", - "profile": { - "height": "161", - "weight": "45", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [ - { - "event_id": 505, - "event_name": "アイドルLIVEツアーinバリ島" - } - ] - }, - { - "alias_name": "不器用少女", - "alias_name_display": "不器用少女", - "id": "2310802", - "hash": "766ebc989270280df6d71abeaf6c1a21", - "profile": { - "height": "161", - "weight": "45", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [ - { - "event_id": 505, - "event_name": "アイドルLIVEツアーinバリ島" - } - ] - }, - { - "alias_name": "ネクストスターI.C", - "alias_name_display": "ネクストスターI.C", - "id": "2318102", - "hash": "5fa39e583d32f69301740b638da55ccd", - "profile": { - "height": "161", - "weight": "45", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [ - { - "event_id": 1203, - "event_name": "目指せきらきらモデル アイドルチャレンジ" - } - ] - }, - { - "alias_name": "ステキなお手本", - "alias_name_display": "ステキなお手本", - "id": "2220801", - "hash": "ec3a589a41c66f9918793604494c3712", - "profile": { - "height": "161", - "weight": "45", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ステキなお手本", - "alias_name_display": "ステキなお手本", - "id": "2320802", - "hash": "9e96cd2d370b50c67771f9b742f212fa", - "profile": { - "height": "161", - "weight": "45", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ラブリーメイド", - "alias_name_display": "ラブリーメイド", - "id": "2223001", - "hash": "eebfb715a3029f2e64c7127188fe05a8", - "profile": { - "height": "161", - "weight": "45", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ラブリーメイド", - "alias_name_display": "ラブリーメイド", - "id": "2323002", - "hash": "7a9ba0f7ded5e0bfd49c5ce5f7190ce7", - "profile": { - "height": "161", - "weight": "45", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "フェリーチェ・チョコラータ", - "alias_name_display": "フェリーチェ・チョコラータ", - "id": "2230301", - "hash": "af9bfa83d7b23c199747d652a625b6fb", - "profile": { - "height": "161", - "weight": "45", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "フェリーチェ・チョコラータ", - "alias_name_display": "フェリーチェ・チョコラータ", - "id": "2330302", - "hash": "e7dd22bc2f19ee2b07e113894d4c8605", - "profile": { - "height": "161", - "weight": "45", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "素顔の幸せ", - "alias_name_display": "素顔の幸せ", - "id": "2411501", - "hash": "d79715c5a47f812c15d888e6edc2099d", - "profile": { - "height": "161", - "weight": "45", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [ - { - "event_id": 509, - "event_name": "新春LIVEツアーカーニバル" - } - ] - }, - { - "alias_name": "素顔の幸せ", - "alias_name_display": "素顔の幸せ", - "id": "2511502", - "hash": "6be36c841286361dee0ab1ec7aabe3e0", - "profile": { - "height": "161", - "weight": "45", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [ - { - "event_id": 509, - "event_name": "新春LIVEツアーカーニバル" - } - ] - }, - { - "alias_name": "乙女の晴れ舞台", - "alias_name_display": "乙女の晴れ舞台", - "id": "2414401", - "hash": "d886ae7d2ee6c6e75d64f0cac3395f1a", - "profile": { - "height": "161", - "weight": "45", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "乙女の晴れ舞台", - "alias_name_display": "乙女の晴れ舞台", - "id": "2514402", - "hash": "7d1819de186cf8f9528fca6f1d4aa39a", - "profile": { - "height": "161", - "weight": "45", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ポップ・モデル", - "alias_name_display": "ポップ・モデル", - "id": "2418001", - "hash": "c462145536f0ea29247d2fcdca22d5f0", - "profile": { - "height": "161", - "weight": "45", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [ - { - "event_id": 1203, - "event_name": "目指せきらきらモデル アイドルチャレンジ" - } - ] - }, - { - "alias_name": "ポップ・モデル", - "alias_name_display": "ポップ・モデル", - "id": "2518002", - "hash": "2fc6d78808a0fc99c2f87af1b407a0bc", - "profile": { - "height": "161", - "weight": "45", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [ - { - "event_id": 1203, - "event_name": "目指せきらきらモデル アイドルチャレンジ" - } - ] - }, - { - "alias_name": "ポップ・モデル・S", - "alias_name_display": "ポップ・モデル・S", - "id": "2418101", - "hash": "1f12deed69f1ec3e24042945968de5bf", - "profile": { - "height": "161", - "weight": "45", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [ - { - "event_id": 1203, - "event_name": "目指せきらきらモデル アイドルチャレンジ" - } - ] - }, - { - "alias_name": "ポップ・モデル・S", - "alias_name_display": "ポップ・モデル・S", - "id": "2518102", - "hash": "44a8cbbd7175a5031b9c5d5a1b8df1e4", - "profile": { - "height": "161", - "weight": "45", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [ - { - "event_id": 1203, - "event_name": "目指せきらきらモデル アイドルチャレンジ" - } - ] - }, - { - "alias_name": "一心入魂", - "alias_name_display": "一心入魂", - "id": "2432701", - "hash": "c614169557b2369b2eaa6a9b1c2bf286", - "profile": { - "height": "161", - "weight": "45", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [ - { - "event_id": 1507, - "event_name": "チーム対抗トークバトルショー オールスターSP" - } - ] - }, - { - "alias_name": "一心入魂", - "alias_name_display": "一心入魂", - "id": "2532702", - "hash": "49313322c5fd3c9bed6e752b20b7dcd9", - "profile": { - "height": "161", - "weight": "45", - "bust": "78", - "waist": "54", - "hip": "81" - }, - "event": [ - { - "event_id": 1507, - "event_name": "チーム対抗トークバトルショー オールスターSP" - } - ] - } - ], - "units": [ - { - "id": "130", - "name": "GIRLS BE" - }, - { - "id": "172", - "name": "GIRLS BE NEXT STEP" - } - ] - }, - "126": { - "idol_id": 126, - "idol_name": "森久保乃々", - "idol_name_display": "森久保乃々", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2206801", - "hash": "5e2ce56ce241f77692f5ba6723149452", - "profile": { - "height": "149", - "weight": "38", - "bust": "73", - "waist": "55", - "hip": "76" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2306802", - "hash": "9c09179c9e3691aad4af06c0d33fa5bc", - "profile": { - "height": "149", - "weight": "38", - "bust": "73", - "waist": "55", - "hip": "76" - }, - "event": [] - }, - { - "alias_name": "メルヘン&ゴシック", - "alias_name_display": "メルヘン&ゴシック", - "id": "2208501", - "hash": "560577bc6c3151c185624adb2d10b427", - "profile": { - "height": "149", - "weight": "38", - "bust": "73", - "waist": "55", - "hip": "76" - }, - "event": [] - }, - { - "alias_name": "メルヘン&ゴシック", - "alias_name_display": "メルヘン&ゴシック", - "id": "2308502", - "hash": "d3596c108c2e5d1a2c5fba20653d3964", - "profile": { - "height": "149", - "weight": "38", - "bust": "73", - "waist": "55", - "hip": "76" - }, - "event": [] - }, - { - "alias_name": "ハロウィンナイト", - "alias_name_display": "ハロウィンナイト", - "id": "2212201", - "hash": "4a12dd2f01f425e3ac788cbf487dccd2", - "profile": { - "height": "149", - "weight": "38", - "bust": "73", - "waist": "55", - "hip": "76" - }, - "event": [] - }, - { - "alias_name": "ハロウィンナイト", - "alias_name_display": "ハロウィンナイト", - "id": "2312202", - "hash": "47a8929ca558f11bb722ddd61658aa92", - "profile": { - "height": "149", - "weight": "38", - "bust": "73", - "waist": "55", - "hip": "76" - }, - "event": [] - }, - { - "alias_name": "メルヘンブック", - "alias_name_display": "メルヘンブック", - "id": "2224401", - "hash": "91c804725622c458fb9ab4978c12c0f2", - "profile": { - "height": "149", - "weight": "38", - "bust": "73", - "waist": "55", - "hip": "76" - }, - "event": [] - }, - { - "alias_name": "メルヘンブック", - "alias_name_display": "メルヘンブック", - "id": "2324402", - "hash": "15444a20ee24d046fb2ee462fe82fbfd", - "profile": { - "height": "149", - "weight": "38", - "bust": "73", - "waist": "55", - "hip": "76" - }, - "event": [] - }, - { - "alias_name": "ネガティヴ乙女", - "alias_name_display": "ネガティヴ乙女", - "id": "2406801", - "hash": "c9e92786947e1a2ae30990d7696c8345", - "profile": { - "height": "149", - "weight": "38", - "bust": "73", - "waist": "55", - "hip": "76" - }, - "event": [ - { - "event_id": "010", - "event_name": "第10回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "ネガティヴ乙女", - "alias_name_display": "ネガティヴ乙女", - "id": "2506802", - "hash": "1ec11feb35f4b8aa22a14e8fd8763a96", - "profile": { - "height": "149", - "weight": "38", - "bust": "73", - "waist": "55", - "hip": "76" - }, - "event": [ - { - "event_id": "010", - "event_name": "第10回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "ショコラバレンタイン", - "alias_name_display": "ショコラバレンタイン", - "id": "2412301", - "hash": "2ff046908bbb217d3032a291e9ce7b50", - "profile": { - "height": "149", - "weight": "38", - "bust": "73", - "waist": "55", - "hip": "76" - }, - "event": [ - { - "event_id": 411, - "event_name": "アイドルプロデュース チョコレートフォーユー!" - } - ] - }, - { - "alias_name": "ショコラバレンタイン", - "alias_name_display": "ショコラバレンタイン", - "id": "2512302", - "hash": "cec8ca056124d304b5e6b55824ff2f1e", - "profile": { - "height": "149", - "weight": "38", - "bust": "73", - "waist": "55", - "hip": "76" - }, - "event": [ - { - "event_id": 411, - "event_name": "アイドルプロデュース チョコレートフォーユー!" - } - ] - }, - { - "alias_name": "ショコラ・スマイル", - "alias_name_display": "ショコラ・スマイル", - "id": "2412401", - "hash": "79e7740f472cd2c8bb682acd39749e35", - "profile": { - "height": "149", - "weight": "38", - "bust": "73", - "waist": "55", - "hip": "76" - }, - "event": [ - { - "event_id": 411, - "event_name": "アイドルプロデュース チョコレートフォーユー!" - } - ] - }, - { - "alias_name": "ショコラ・スマイル", - "alias_name_display": "ショコラ・スマイル", - "id": "2512402", - "hash": "6430f72f3cbf56e0e3d2fd4245e18c14", - "profile": { - "height": "149", - "weight": "38", - "bust": "73", - "waist": "55", - "hip": "76" - }, - "event": [ - { - "event_id": 411, - "event_name": "アイドルプロデュース チョコレートフォーユー!" - } - ] - }, - { - "alias_name": "困惑の小リス", - "alias_name_display": "困惑の小リス", - "id": "2417201", - "hash": "b88133ff50c072f82fd693cd978fb5b1", - "profile": { - "height": "149", - "weight": "38", - "bust": "73", - "waist": "55", - "hip": "76" - }, - "event": [] - }, - { - "alias_name": "困惑の小リス", - "alias_name_display": "困惑の小リス", - "id": "2517202", - "hash": "d1b146a936a57f7226f823a8168bc63d", - "profile": { - "height": "149", - "weight": "38", - "bust": "73", - "waist": "55", - "hip": "76" - }, - "event": [] - }, - { - "alias_name": "おどおど狩人", - "alias_name_display": "おどおど狩人", - "id": "2423301", - "hash": "3c540d8876286f851cd0094779fff4f3", - "profile": { - "height": "149", - "weight": "38", - "bust": "73", - "waist": "55", - "hip": "76" - }, - "event": [ - { - "event_id": 518, - "event_name": "御伽公演 ふれあい狼と小さな赤ずきんちゃん" - } - ] - }, - { - "alias_name": "おどおど狩人", - "alias_name_display": "おどおど狩人", - "id": "2523302", - "hash": "41149651c1bab97e7affc92db00e41a8", - "profile": { - "height": "149", - "weight": "38", - "bust": "73", - "waist": "55", - "hip": "76" - }, - "event": [ - { - "event_id": 518, - "event_name": "御伽公演 ふれあい狼と小さな赤ずきんちゃん" - } - ] - }, - { - "alias_name": "迷々エスケープ", - "alias_name_display": "迷々エスケープ", - "id": "2425601", - "hash": "b8f74bf0a450467938b45e0bb1886615", - "profile": { - "height": "149", - "weight": "38", - "bust": "73", - "waist": "55", - "hip": "76" - }, - "event": [ - { - "event_id": 813, - "event_name": "第13回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "迷々エスケープ", - "alias_name_display": "迷々エスケープ", - "id": "2525602", - "hash": "8272eb1670965488afb2cec0ff3ad314", - "profile": { - "height": "149", - "weight": "38", - "bust": "73", - "waist": "55", - "hip": "76" - }, - "event": [ - { - "event_id": 813, - "event_name": "第13回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "イースターハプニング", - "alias_name_display": "イースターハプニング", - "id": "2431901", - "hash": "e15ddf799ec1549fa0c5da5c387bbac3", - "profile": { - "height": "149", - "weight": "38", - "bust": "73", - "waist": "55", - "hip": "76" - }, - "event": [ - { - "event_id": 720, - "event_name": "第20回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "イースターハプニング", - "alias_name_display": "イースターハプニング", - "id": "2531902", - "hash": "8843edbf60141fe58688c10800de5de5", - "profile": { - "height": "149", - "weight": "38", - "bust": "73", - "waist": "55", - "hip": "76" - }, - "event": [ - { - "event_id": 720, - "event_name": "第20回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "エスケープブライド", - "alias_name_display": "エスケープブライド", - "id": "2435301", - "hash": "56f0586ed2e674e1f29e4b001bf2184a", - "profile": { - "height": "149", - "weight": "38", - "bust": "73", - "waist": "55", - "hip": "76" - }, - "event": [] - }, - { - "alias_name": "エスケープブライド", - "alias_name_display": "エスケープブライド", - "id": "2535302", - "hash": "a55383925d3c72058386acb662f47aa2", - "profile": { - "height": "149", - "weight": "38", - "bust": "73", - "waist": "55", - "hip": "76" - }, - "event": [] - }, - { - "alias_name": "小さなかくれんぼ", - "alias_name_display": "小さなかくれんぼ", - "id": "2439401", - "hash": "fe787e19422e90f906eb7776da2f8615", - "profile": { - "height": "149", - "weight": "38", - "bust": "73", - "waist": "55", - "hip": "76" - }, - "event": [] - }, - { - "alias_name": "小さなかくれんぼ", - "alias_name_display": "小さなかくれんぼ", - "id": "2539402", - "hash": "323901218db4adb11070ca80dbaa2339", - "profile": { - "height": "149", - "weight": "38", - "bust": "73", - "waist": "55", - "hip": "76" - }, - "event": [] - } - ], - "units": [ - { - "id": "17", - "name": "サイレントスクリーマー" - }, - { - "id": "85", - "name": "アンダーザデスク" - }, - { - "id": "108", - "name": "individuals" - }, - { - "id": "129", - "name": "ワンステップス" - }, - { - "id": "161", - "name": "ハロウィンナイト" - }, - { - "id": "165", - "name": "メルヘンゴシック" - }, - { - "id": "188", - "name": "Sweetches" - } - ] - }, - "127": { - "idol_id": 127, - "idol_name": "アナスタシア", - "idol_name_display": "アナスタシア", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2207701", - "hash": "a0104e1ecbb0a22937e3465955d57a8e", - "profile": { - "height": "165", - "weight": "43", - "bust": "80", - "waist": "54", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2307702", - "hash": "27158f6d1fc32593699b521aa1101f83", - "profile": { - "height": "165", - "weight": "43", - "bust": "80", - "waist": "54", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "スターユニバース", - "alias_name_display": "スターユニバース", - "id": "2209601", - "hash": "6ed6b0f5c83df2e71e99998dbafe53fc", - "profile": { - "height": "165", - "weight": "43", - "bust": "80", - "waist": "54", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "スターユニバース", - "alias_name_display": "スターユニバース", - "id": "2309602", - "hash": "229936ccad688e2a935d33dee89fcd56", - "profile": { - "height": "165", - "weight": "43", - "bust": "80", - "waist": "54", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "スターリービーチ", - "alias_name_display": "スターリービーチ", - "id": "2408401", - "hash": "4cf046b2e4af1a4be1528e73de51c253", - "profile": { - "height": "165", - "weight": "43", - "bust": "80", - "waist": "54", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "スターリービーチ", - "alias_name_display": "スターリービーチ", - "id": "2508402", - "hash": "1434c2b1e8ac2b9526af0dbc0be53e53", - "profile": { - "height": "165", - "weight": "43", - "bust": "80", - "waist": "54", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "2410401", - "hash": "46785dbdd571559db51149de02e3337e", - "profile": { - "height": "165", - "weight": "43", - "bust": "80", - "waist": "54", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "2510402", - "hash": "8f65c4a7c44238a8c40c97bb372de437", - "profile": { - "height": "165", - "weight": "43", - "bust": "80", - "waist": "54", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "スノーフェアリー", - "alias_name_display": "スノーフェアリー", - "id": "2411401", - "hash": "53fcb80b6fc212d322bdf05f433d3bce", - "profile": { - "height": "165", - "weight": "43", - "bust": "80", - "waist": "54", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "スノーフェアリー", - "alias_name_display": "スノーフェアリー", - "id": "2511402", - "hash": "815728ce55ae99bd7b40a1d229133dad", - "profile": { - "height": "165", - "weight": "43", - "bust": "80", - "waist": "54", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ワンダフルマジック", - "alias_name_display": "ワンダフルマジック", - "id": "2412901", - "hash": "36b6b86a58b5c91a83b3912f744f5cef", - "profile": { - "height": "165", - "weight": "43", - "bust": "80", - "waist": "54", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ワンダフルマジック", - "alias_name_display": "ワンダフルマジック", - "id": "2512902", - "hash": "7b34edac94a0b9ac186db1cef78e6566", - "profile": { - "height": "165", - "weight": "43", - "bust": "80", - "waist": "54", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "スターライトスクール", - "alias_name_display": "スターライトスクール", - "id": "2418201", - "hash": "c882ebcbdd8a554dcd903c1db47972b2", - "profile": { - "height": "165", - "weight": "43", - "bust": "80", - "waist": "54", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "スターライトスクール", - "alias_name_display": "スターライトスクール", - "id": "2518202", - "hash": "4597cb9d276c25fe9f6bde7354a1edef", - "profile": { - "height": "165", - "weight": "43", - "bust": "80", - "waist": "54", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ラブライカ", - "alias_name_display": "ラブライカ", - "id": "2521502", - "hash": "a24996fcc1421174481c3333b8ea5218", - "profile": { - "height": "165", - "weight": "43", - "bust": "80", - "waist": "54", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "G4U!", - "alias_name_display": "G4U!", - "id": "2525102", - "hash": "72fd3eb6b6c8a3b1755193c55760938d", - "profile": { - "height": "165", - "weight": "43", - "bust": "80", - "waist": "54", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "宿星ロマネスク", - "alias_name_display": "宿星ロマネスク", - "id": "2426101", - "hash": "00d81330baf84ea61b34e6d88f8bd8a3", - "profile": { - "height": "165", - "weight": "43", - "bust": "80", - "waist": "54", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "宿星ロマネスク", - "alias_name_display": "宿星ロマネスク", - "id": "2526102", - "hash": "cea357fbbe19630ed0a4cbb91a582717", - "profile": { - "height": "165", - "weight": "43", - "bust": "80", - "waist": "54", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "スターリーブライド", - "alias_name_display": "スターリーブライド", - "id": "2433101", - "hash": "48ccc17ef34d4336900f4d2a61b16df8", - "profile": { - "height": "165", - "weight": "43", - "bust": "80", - "waist": "54", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "スターリーブライド", - "alias_name_display": "スターリーブライド", - "id": "2533102", - "hash": "d731e86015162f4f2f1bc8d2fb4aa7f9", - "profile": { - "height": "165", - "weight": "43", - "bust": "80", - "waist": "54", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "雪梅の羽衣", - "alias_name_display": "雪梅の羽衣", - "id": "2437201", - "hash": "1afd8342d44293052f586fcf12e4eb8d", - "profile": { - "height": "165", - "weight": "43", - "bust": "80", - "waist": "54", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "雪梅の羽衣", - "alias_name_display": "雪梅の羽衣", - "id": "2537202", - "hash": "c0e1d6f4481ba3fabd64f9c6c9675156", - "profile": { - "height": "165", - "weight": "43", - "bust": "80", - "waist": "54", - "hip": "80" - }, - "event": [] - } - ], - "units": [ - { - "id": "3", - "name": "あーにゃんみくにゃん" - }, - { - "id": "78", - "name": "LOVE LAIKA" - }, - { - "id": "116", - "name": "にゃん・にゃん・にゃん" - }, - { - "id": "141", - "name": "トランクィル・ウィスパー" - }, - { - "id": "145", - "name": "LOVE LAIKA with Rosenburg Engel" - }, - { - "id": "155", - "name": "セレクテッド" - }, - { - "id": "187", - "name": "NEX-US" - }, - { - "id": "201", - "name": "Caskets" - }, - { - "id": "213", - "name": "CINDERELLA PROJECT" - }, - { - "id": "215", - "name": "Project:Krone" - } - ] - }, - "128": { - "idol_id": 128, - "idol_name": "大和亜季", - "idol_name_display": "大和亜季", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2208601", - "hash": "bdd75aa4670e84394fa074885329d353", - "profile": { - "height": "165", - "weight": "51", - "bust": "92", - "waist": "60", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2308602", - "hash": "66f5d69f9648c1bcd8f0cf357cb804ff", - "profile": { - "height": "165", - "weight": "51", - "bust": "92", - "waist": "60", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "テーマパーク", - "alias_name_display": "テーマパーク", - "id": "2209801", - "hash": "d4ed74985e0e90e83c8e6e9829e06ca2", - "profile": { - "height": "165", - "weight": "51", - "bust": "92", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 210, - "event_name": "アイドルサバイバルinテーマパーク2013" - } - ] - }, - { - "alias_name": "テーマパーク", - "alias_name_display": "テーマパーク", - "id": "2309802", - "hash": "77ab277a285478ee92643668e4d320f4", - "profile": { - "height": "165", - "weight": "51", - "bust": "92", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 210, - "event_name": "アイドルサバイバルinテーマパーク2013" - } - ] - }, - { - "alias_name": "ロワイヤルスタイル", - "alias_name_display": "ロワイヤルスタイル", - "id": "2214101", - "hash": "5ea595f4fea9bde7543b507bb9a53b13", - "profile": { - "height": "165", - "weight": "51", - "bust": "92", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 803, - "event_name": "第3回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ロワイヤルスタイル", - "alias_name_display": "ロワイヤルスタイル", - "id": "2314102", - "hash": "21adbd340e60c5982af18b580d87049d", - "profile": { - "height": "165", - "weight": "51", - "bust": "92", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 803, - "event_name": "第3回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "バディズボンズ", - "alias_name_display": "バディズボンズ", - "id": "2221601", - "hash": "b309e13986724c2a213d606c19a82ed2", - "profile": { - "height": "165", - "weight": "51", - "bust": "92", - "waist": "60", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "バディズボンズ", - "alias_name_display": "バディズボンズ", - "id": "2321602", - "hash": "5b501a4c1349d198b2b9ee5f0a03aed3", - "profile": { - "height": "165", - "weight": "51", - "bust": "92", - "waist": "60", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ハロウィンガンナー", - "alias_name_display": "ハロウィンガンナー", - "id": "2409601", - "hash": "541d4ff6ae2186367610013d4a5b966b", - "profile": { - "height": "165", - "weight": "51", - "bust": "92", - "waist": "60", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ハロウィンガンナー", - "alias_name_display": "ハロウィンガンナー", - "id": "2509602", - "hash": "ada388db99b4fce828433ebe3e0e5833", - "profile": { - "height": "165", - "weight": "51", - "bust": "92", - "waist": "60", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ヴォヤージュ・グラップラー", - "alias_name_display": "ヴォヤージュ・グラップラー", - "id": "2413601", - "hash": "507ff18b613c769ad6af2e41c6ffd7d9", - "profile": { - "height": "165", - "weight": "51", - "bust": "92", - "waist": "60", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ヴォヤージュ・グラップラー", - "alias_name_display": "ヴォヤージュ・グラップラー", - "id": "2513602", - "hash": "64f9f11efe3ea3e156d089af6383daf5", - "profile": { - "height": "165", - "weight": "51", - "bust": "92", - "waist": "60", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "峻烈闘技", - "alias_name_display": "峻烈闘技", - "id": "2417901", - "hash": "d4f4da3d57f9fa884b57215a5dacccbb", - "profile": { - "height": "165", - "weight": "51", - "bust": "92", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 514, - "event_name": "功夫公演 香港大決戦" - } - ] - }, - { - "alias_name": "峻烈闘技", - "alias_name_display": "峻烈闘技", - "id": "2517902", - "hash": "14b55a84faefe92d20fef54ae6dfd19d", - "profile": { - "height": "165", - "weight": "51", - "bust": "92", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 514, - "event_name": "功夫公演 香港大決戦" - } - ] - }, - { - "alias_name": "V・ジェネラル", - "alias_name_display": "V・ジェネラル", - "id": "2421601", - "hash": "07acb4080f5ab49d5e122849994e21ec", - "profile": { - "height": "165", - "weight": "51", - "bust": "92", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 810, - "event_name": "アイドルLIVEロワイヤル バレンタインSP" - } - ] - }, - { - "alias_name": "V・ジェネラル", - "alias_name_display": "V・ジェネラル", - "id": "2521602", - "hash": "827a6122f087530b62b045dd10e1024a", - "profile": { - "height": "165", - "weight": "51", - "bust": "92", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 810, - "event_name": "アイドルLIVEロワイヤル バレンタインSP" - } - ] - }, - { - "alias_name": "フォワードチアー", - "alias_name_display": "フォワードチアー", - "id": "2427401", - "hash": "3e53dc3355ec6ba2d0e7ade9878ea440", - "profile": { - "height": "165", - "weight": "51", - "bust": "92", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 1504, - "event_name": "第4回チーム対抗トークバトルショー" - } - ] - }, - { - "alias_name": "フォワードチアー", - "alias_name_display": "フォワードチアー", - "id": "2527402", - "hash": "f4edb567d2d54063babfa277b6716e8c", - "profile": { - "height": "165", - "weight": "51", - "bust": "92", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 1504, - "event_name": "第4回チーム対抗トークバトルショー" - } - ] - }, - { - "alias_name": "パーフェクトプレデター", - "alias_name_display": "パーフェクトプレデター", - "id": "2432201", - "hash": "dd4b44c6df0f6e78a9c10459a4101093", - "profile": { - "height": "165", - "weight": "51", - "bust": "92", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 1210, - "event_name": "アイドルチャレンジ サバイバルゲーム編" - } - ] - }, - { - "alias_name": "パーフェクトプレデター", - "alias_name_display": "パーフェクトプレデター", - "id": "2532202", - "hash": "f6c27f4e984ec5c984d985b61c05d58a", - "profile": { - "height": "165", - "weight": "51", - "bust": "92", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 1210, - "event_name": "アイドルチャレンジ サバイバルゲーム編" - } - ] - }, - { - "alias_name": "煩悩ビートアウト", - "alias_name_display": "煩悩ビートアウト", - "id": "2437101", - "hash": "f575c75aca75758a1c6505917a35300d", - "profile": { - "height": "165", - "weight": "51", - "bust": "92", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 726, - "event_name": "ドリームLIVEフェスティバル新春SP" - } - ] - }, - { - "alias_name": "煩悩ビートアウト", - "alias_name_display": "煩悩ビートアウト", - "id": "2537102", - "hash": "3fd70cf35e090606cfb1d891b35fb013", - "profile": { - "height": "165", - "weight": "51", - "bust": "92", - "waist": "60", - "hip": "85" - }, - "event": [ - { - "event_id": 726, - "event_name": "ドリームLIVEフェスティバル新春SP" - } - ] - } - ], - "units": [ - { - "id": "121", - "name": "ヘルシーサバイブ" - }, - { - "id": "176", - "name": "炎陣" - }, - { - "id": "208", - "name": "ロワイヤルスタイル" - } - ] - }, - "129": { - "idol_id": 129, - "idol_name": "結城晴", - "idol_name_display": "結城晴", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2209901", - "hash": "dfa875a32faa00241a4fbe09310f9c7f", - "profile": { - "height": "140", - "weight": "37", - "bust": "74", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2309902", - "hash": "2568eae8707de2024d268ec56e553adf", - "profile": { - "height": "140", - "weight": "37", - "bust": "74", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "バニーガール", - "alias_name_display": "バニーガール", - "id": "2211601", - "hash": "a013ffd163e3c20a807def1b83c0a6b1", - "profile": { - "height": "140", - "weight": "37", - "bust": "74", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "バニーガール", - "alias_name_display": "バニーガール", - "id": "2311602", - "hash": "1ac8bfee87f2f11f3e9dd0c54ca3e953", - "profile": { - "height": "140", - "weight": "37", - "bust": "74", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "ロワイヤルスタイルNP", - "alias_name_display": "ロワイヤルスタイルNP", - "id": "2214901", - "hash": "f0b8b5cf58bb8c5406140058f5a849f0", - "profile": { - "height": "140", - "weight": "37", - "bust": "74", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 804, - "event_name": "第4回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ロワイヤルスタイルNP", - "alias_name_display": "ロワイヤルスタイルNP", - "id": "2314902", - "hash": "29d1a6d210cf95036da6ba9a48c052e0", - "profile": { - "height": "140", - "weight": "37", - "bust": "74", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 804, - "event_name": "第4回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ブライダルセレクション", - "alias_name_display": "ブライダルセレクション", - "id": "2221301", - "hash": "4d145211fe71e1d11c6d7a44d1cb8c76", - "profile": { - "height": "140", - "weight": "37", - "bust": "74", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "ブライダルセレクション", - "alias_name_display": "ブライダルセレクション", - "id": "2321302", - "hash": "88d2abc4439dbca86dc9f64c50df81e1", - "profile": { - "height": "140", - "weight": "37", - "bust": "74", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "ナデシコI.C", - "alias_name_display": "ナデシコI.C", - "id": "2323202", - "hash": "0912cff2743a72d74ddb27ba6c759520", - "profile": { - "height": "140", - "weight": "37", - "bust": "74", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 1207, - "event_name": "目指せ大和撫子 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "フレッシュセレクト", - "alias_name_display": "フレッシュセレクト", - "id": "2229101", - "hash": "917f4d4ef32fcbc618912ad79a662509", - "profile": { - "height": "140", - "weight": "37", - "bust": "74", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "フレッシュセレクト", - "alias_name_display": "フレッシュセレクト", - "id": "2329102", - "hash": "71bf409f7e131f628bf16f7293a10259", - "profile": { - "height": "140", - "weight": "37", - "bust": "74", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "疾風のストライカー", - "alias_name_display": "疾風のストライカー", - "id": "2413701", - "hash": "555e09e17e8b0478cc9cb34ade964e83", - "profile": { - "height": "140", - "weight": "37", - "bust": "74", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": "016", - "event_name": "第16回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "疾風のストライカー", - "alias_name_display": "疾風のストライカー", - "id": "2513702", - "hash": "33d5c2fed58080ff247e88e4419b23ce", - "profile": { - "height": "140", - "weight": "37", - "bust": "74", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": "016", - "event_name": "第16回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "アクティブサファリ", - "alias_name_display": "アクティブサファリ", - "id": "2417301", - "hash": "8265ddc15288685c6669e162918d54f2", - "profile": { - "height": "140", - "weight": "37", - "bust": "74", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 414, - "event_name": "どうぶつアドベンチャー オーストラリア編" - } - ] - }, - { - "alias_name": "アクティブサファリ", - "alias_name_display": "アクティブサファリ", - "id": "2517302", - "hash": "3cf4089b1a845917321f864469eb6a8d", - "profile": { - "height": "140", - "weight": "37", - "bust": "74", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 414, - "event_name": "どうぶつアドベンチャー オーストラリア編" - } - ] - }, - { - "alias_name": "アクティブサファリ・S", - "alias_name_display": "アクティブサファリ・S", - "id": "2417401", - "hash": "dbdcdaef80cb0747871a76a00a9cf06f", - "profile": { - "height": "140", - "weight": "37", - "bust": "74", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 414, - "event_name": "どうぶつアドベンチャー オーストラリア編" - } - ] - }, - { - "alias_name": "アクティブサファリ・S", - "alias_name_display": "アクティブサファリ・S", - "id": "2517402", - "hash": "a912cbee230c6437054c1bd1cdbac479", - "profile": { - "height": "140", - "weight": "37", - "bust": "74", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 414, - "event_name": "どうぶつアドベンチャー オーストラリア編" - } - ] - }, - { - "alias_name": "明日へのフラッグ", - "alias_name_display": "明日へのフラッグ", - "id": "2420701", - "hash": "f47b91503aa66413e527bf7e34845455", - "profile": { - "height": "140", - "weight": "37", - "bust": "74", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "明日へのフラッグ", - "alias_name_display": "明日へのフラッグ", - "id": "2520702", - "hash": "0c05a80b08b4ea53fbe226641f38f233", - "profile": { - "height": "140", - "weight": "37", - "bust": "74", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "茶道の大和撫子", - "alias_name_display": "茶道の大和撫子", - "id": "2427001", - "hash": "2aa881f4aaa87e622b49619067103762", - "profile": { - "height": "140", - "weight": "37", - "bust": "74", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 1207, - "event_name": "目指せ大和撫子 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "茶道の大和撫子", - "alias_name_display": "茶道の大和撫子", - "id": "2527002", - "hash": "577d0df4271b8ca7f326c2b1410f3d42", - "profile": { - "height": "140", - "weight": "37", - "bust": "74", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 1207, - "event_name": "目指せ大和撫子 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "茶道の大和撫子・S", - "alias_name_display": "茶道の大和撫子・S", - "id": "2427101", - "hash": "2c92874d2faf8cd7055d13af5a3ccdbb", - "profile": { - "height": "140", - "weight": "37", - "bust": "74", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 1207, - "event_name": "目指せ大和撫子 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "茶道の大和撫子・S", - "alias_name_display": "茶道の大和撫子・S", - "id": "2527102", - "hash": "54d00470533b80a1184cd2e4ea96b829", - "profile": { - "height": "140", - "weight": "37", - "bust": "74", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 1207, - "event_name": "目指せ大和撫子 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "オーバーラップ", - "alias_name_display": "オーバーラップ", - "id": "2431601", - "hash": "e343237e1ccc77a8f1c45944d61916f6", - "profile": { - "height": "140", - "weight": "37", - "bust": "74", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 1506, - "event_name": "第6回チーム対抗トークバトルショー" - } - ] - }, - { - "alias_name": "オーバーラップ", - "alias_name_display": "オーバーラップ", - "id": "2531602", - "hash": "f3b9ea014c6bc64c930947cc9221d3c9", - "profile": { - "height": "140", - "weight": "37", - "bust": "74", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 1506, - "event_name": "第6回チーム対抗トークバトルショー" - } - ] - } - ], - "units": [ - { - "id": "45", - "name": "ビートシューター" - }, - { - "id": "47", - "name": "ひつじさんとうさぎさん" - }, - { - "id": "54", - "name": "ボール・フレンズ" - }, - { - "id": "162", - "name": "ブライダルセレクション" - }, - { - "id": "177", - "name": "桜舞隊" - }, - { - "id": "209", - "name": "ロワイヤルスタイルNP" - } - ] - }, - "130": { - "idol_id": 130, - "idol_name": "二宮飛鳥", - "idol_name_display": "二宮飛鳥", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2213501", - "hash": "4631474fd525ac81e51808b0bface6a2", - "profile": { - "height": "154", - "weight": "42", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2313502", - "hash": "7ca085178b2e427f1840e2ba4ea64319", - "profile": { - "height": "154", - "weight": "42", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "グリッターステージ", - "alias_name_display": "グリッターステージ", - "id": "2215101", - "hash": "eb23608b1c3bdac0aa81a981e8336178", - "profile": { - "height": "154", - "weight": "42", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "グリッターステージ", - "alias_name_display": "グリッターステージ", - "id": "2315102", - "hash": "f84359de4c315c3ca147d07099e188ed", - "profile": { - "height": "154", - "weight": "42", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "サファリアドベンチャー", - "alias_name_display": "サファリアドベンチャー", - "id": "2217601", - "hash": "826f2cb1d85e56e5a5c3c1cea0bbb4a3", - "profile": { - "height": "154", - "weight": "42", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 414, - "event_name": "どうぶつアドベンチャー オーストラリア編" - } - ] - }, - { - "alias_name": "サファリアドベンチャー", - "alias_name_display": "サファリアドベンチャー", - "id": "2317602", - "hash": "76de9e9451a8de5a9ffb41c3e52c9ba6", - "profile": { - "height": "154", - "weight": "42", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 414, - "event_name": "どうぶつアドベンチャー オーストラリア編" - } - ] - }, - { - "alias_name": "サファリアドベンチャー・S", - "alias_name_display": "サファリアドベンチャー・S", - "id": "2217701", - "hash": "862d52f01e41b00da8b5e28509617ab4", - "profile": { - "height": "154", - "weight": "42", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 414, - "event_name": "どうぶつアドベンチャー オーストラリア編" - } - ] - }, - { - "alias_name": "サファリアドベンチャー・S", - "alias_name_display": "サファリアドベンチャー・S", - "id": "2317702", - "hash": "1bcb8bfa56a99fdaabd33c1657a492bd", - "profile": { - "height": "154", - "weight": "42", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 414, - "event_name": "どうぶつアドベンチャー オーストラリア編" - } - ] - }, - { - "alias_name": "ロコガール", - "alias_name_display": "ロコガール", - "id": "2328302", - "hash": "4b2a471b95bdaa8f7618eb7c4fd9c9d3", - "profile": { - "height": "154", - "weight": "42", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 1707, - "event_name": "アイドルプロデュース アロハ!常夏の楽園" - } - ] - }, - { - "alias_name": "オリ・ロコガール", - "alias_name_display": "オリ・ロコガール", - "id": "2328402", - "hash": "0007e6f742de588da035f27181ba2b70", - "profile": { - "height": "154", - "weight": "42", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 1707, - "event_name": "アイドルプロデュース アロハ!常夏の楽園" - } - ] - }, - { - "alias_name": "ミッシング・ピース", - "alias_name_display": "ミッシング・ピース", - "id": "2415201", - "hash": "42027e0a6ed923a0b6bb8eb4b8e5eff3", - "profile": { - "height": "154", - "weight": "42", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 805, - "event_name": "第5回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ミッシング・ピース", - "alias_name_display": "ミッシング・ピース", - "id": "2515202", - "hash": "2c156cdf5c956999318cf46708f1fad0", - "profile": { - "height": "154", - "weight": "42", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 805, - "event_name": "第5回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "アブソリュート・ゼロ", - "alias_name_display": "アブソリュート・ゼロ", - "id": "2420001", - "hash": "aff88d81c2ac012a0e9beca15e36200f", - "profile": { - "height": "154", - "weight": "42", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "アブソリュート・ゼロ", - "alias_name_display": "アブソリュート・ゼロ", - "id": "2520002", - "hash": "f029377df33b0c281856b7e879be1c96", - "profile": { - "height": "154", - "weight": "42", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "桜風リフレイン", - "alias_name_display": "桜風リフレイン", - "id": "2423101", - "hash": "1114c352cd5b0ad6e635009fb34808cb", - "profile": { - "height": "154", - "weight": "42", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 712, - "event_name": "花見DEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "桜風リフレイン", - "alias_name_display": "桜風リフレイン", - "id": "2523102", - "hash": "14d9fc31f58df5da5bbddc246775e1bd", - "profile": { - "height": "154", - "weight": "42", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 712, - "event_name": "花見DEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ロスト・バレンタイン", - "alias_name_display": "ロスト・バレンタイン", - "id": "2430601", - "hash": "1a62a0aeafb9ded1cc66e67f3ce178db", - "profile": { - "height": "154", - "weight": "42", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "ロスト・バレンタイン", - "alias_name_display": "ロスト・バレンタイン", - "id": "2530602", - "hash": "ba8a9663527dafc77bf3e9ac4615c3cf", - "profile": { - "height": "154", - "weight": "42", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "2431501", - "hash": "29578016c7ff21a9d85eef32ab93e0bb", - "profile": { - "height": "154", - "weight": "42", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "2531502", - "hash": "b1bed12bc96443d7f3906f35594cbedd", - "profile": { - "height": "154", - "weight": "42", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "楽園-エデン-の入口", - "alias_name_display": "楽園-エデン-の入口", - "id": "2434601", - "hash": "5bbad382b5722462d5c5dd5fe6926a51", - "profile": { - "height": "154", - "weight": "42", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 1707, - "event_name": "アイドルプロデュース アロハ!常夏の楽園" - } - ] - }, - { - "alias_name": "楽園-エデン-の入口", - "alias_name_display": "楽園-エデン-の入口", - "id": "2534602", - "hash": "58efb2db39c23d19a4c7dca78d31edbc", - "profile": { - "height": "154", - "weight": "42", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 1707, - "event_name": "アイドルプロデュース アロハ!常夏の楽園" - } - ] - }, - { - "alias_name": "碧落のリベレイター", - "alias_name_display": "碧落のリベレイター", - "id": "2438901", - "hash": "f069c36e4de862aadd81791d55f1f7d8", - "profile": { - "height": "154", - "weight": "42", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "碧落のリベレイター", - "alias_name_display": "碧落のリベレイター", - "id": "2538902", - "hash": "3f93733e01fed8506d57f0c5894586f6", - "profile": { - "height": "154", - "weight": "42", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [] - } - ], - "units": [ - { - "id": "32", - "name": "ダークイルミネイト" - }, - { - "id": "57", - "name": "ミステリックガーデン" - }, - { - "id": "72", - "name": "Dimension-3" - }, - { - "id": "132", - "name": "thinE/Dasein" - }, - { - "id": "186", - "name": "LittlePOPS" - }, - { - "id": "200", - "name": "CAERULA" - } - ] - }, - "131": { - "idol_id": 131, - "idol_name": "桐生つかさ", - "idol_name_display": "桐生つかさ", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "2217901", - "hash": "dc80aeb410e6c893f6af62cc1ffe68f3", - "profile": { - "height": "164", - "weight": "45", - "bust": "83", - "waist": "55", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "2317902", - "hash": "77c0f72b9219350c3fa2d00d5f4f3c4c", - "profile": { - "height": "164", - "weight": "45", - "bust": "83", - "waist": "55", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "T.B.クリスマス", - "alias_name_display": "T.B.クリスマス", - "id": "2219201", - "hash": "2a56bce05d5590dd7d4630bc252a6076", - "profile": { - "height": "164", - "weight": "45", - "bust": "83", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 1107, - "event_name": "プロダクション対抗トークバトルショー クリスマスSP" - } - ] - }, - { - "alias_name": "T.B.クリスマス", - "alias_name_display": "T.B.クリスマス", - "id": "2319202", - "hash": "3f8e0ebb0b19b25180d60f57b4a97eec", - "profile": { - "height": "164", - "weight": "45", - "bust": "83", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 1107, - "event_name": "プロダクション対抗トークバトルショー クリスマスSP" - } - ] - }, - { - "alias_name": "春風スポーツ", - "alias_name_display": "春風スポーツ", - "id": "2226001", - "hash": "39e3a2e8c3faf52a81febbe19413a13b", - "profile": { - "height": "164", - "weight": "45", - "bust": "83", - "waist": "55", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "春風スポーツ", - "alias_name_display": "春風スポーツ", - "id": "2326002", - "hash": "06e6725192ffdda60204d7066a031dfb", - "profile": { - "height": "164", - "weight": "45", - "bust": "83", - "waist": "55", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "イノベーションマインド", - "alias_name_display": "イノベーションマインド", - "id": "2231201", - "hash": "967bde64d2f177461d1fba733587bf71", - "profile": { - "height": "164", - "weight": "45", - "bust": "83", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": "034", - "event_name": "第34回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "イノベーションマインド", - "alias_name_display": "イノベーションマインド", - "id": "2331202", - "hash": "c0dedc58fa9d81976f14db357913cf88", - "profile": { - "height": "164", - "weight": "45", - "bust": "83", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": "034", - "event_name": "第34回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "ランウェイのカリスマ", - "alias_name_display": "ランウェイのカリスマ", - "id": "2422601", - "hash": "c09af8c69550dce67368fec799fc8cf9", - "profile": { - "height": "164", - "weight": "45", - "bust": "83", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 1401, - "event_name": "ぷちデレラコレクション" - } - ] - }, - { - "alias_name": "ランウェイのカリスマ", - "alias_name_display": "ランウェイのカリスマ", - "id": "2522602", - "hash": "be9198891b0b4e32e52a0fb5f0a26224", - "profile": { - "height": "164", - "weight": "45", - "bust": "83", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 1401, - "event_name": "ぷちデレラコレクション" - } - ] - }, - { - "alias_name": "とれたてビーチガール", - "alias_name_display": "とれたてビーチガール", - "id": "2425801", - "hash": "75b94970d1a2a451d6e4b563371179f9", - "profile": { - "height": "164", - "weight": "45", - "bust": "83", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 1703, - "event_name": "アイドルプロデュース おいでよ!海の家" - } - ] - }, - { - "alias_name": "とれたてビーチガール", - "alias_name_display": "とれたてビーチガール", - "id": "2525802", - "hash": "2df32585bb5807a6778123c82c94b2a2", - "profile": { - "height": "164", - "weight": "45", - "bust": "83", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 1703, - "event_name": "アイドルプロデュース おいでよ!海の家" - } - ] - }, - { - "alias_name": "きらめきビーチガール", - "alias_name_display": "きらめきビーチガール", - "id": "2425901", - "hash": "ea898cb5f33356dbdea348b45156f50a", - "profile": { - "height": "164", - "weight": "45", - "bust": "83", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 1703, - "event_name": "アイドルプロデュース おいでよ!海の家" - } - ] - }, - { - "alias_name": "きらめきビーチガール", - "alias_name_display": "きらめきビーチガール", - "id": "2525902", - "hash": "6bf84171cae8136e5629734a962e1381", - "profile": { - "height": "164", - "weight": "45", - "bust": "83", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": 1703, - "event_name": "アイドルプロデュース おいでよ!海の家" - } - ] - }, - { - "alias_name": "やさしいプライド", - "alias_name_display": "やさしいプライド", - "id": "2429801", - "hash": "60f958aa7043601e4707a7e49e01fd84", - "profile": { - "height": "164", - "weight": "45", - "bust": "83", - "waist": "55", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "やさしいプライド", - "alias_name_display": "やさしいプライド", - "id": "2529802", - "hash": "9088aa0659ca2239587d146841870c97", - "profile": { - "height": "164", - "weight": "45", - "bust": "83", - "waist": "55", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ロングオータムナイト", - "alias_name_display": "ロングオータムナイト", - "id": "2434801", - "hash": "632b7acafc87d967835ee98f06e16b75", - "profile": { - "height": "164", - "weight": "45", - "bust": "83", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": "031", - "event_name": "第31回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "ロングオータムナイト", - "alias_name_display": "ロングオータムナイト", - "id": "2534802", - "hash": "bf5c1105baa37c752c0733f015513f75", - "profile": { - "height": "164", - "weight": "45", - "bust": "83", - "waist": "55", - "hip": "82" - }, - "event": [ - { - "event_id": "031", - "event_name": "第31回プロダクションマッチフェスティバル" - } - ] - } - ] - }, - "132": { - "idol_id": 132, - "idol_name": "望月聖", - "idol_name_display": "望月聖", - "aliases": [ - { - "alias_name": "白き少女", - "alias_name_display": "白き少女", - "id": "2213401", - "hash": "45979186701f234bab59226a89c062aa", - "profile": { - "height": "150", - "weight": "37", - "bust": "82", - "waist": "59", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "白き少女", - "alias_name_display": "白き少女", - "id": "2313402", - "hash": "aaaafaec6c1d24fd4fd70b687e924323", - "profile": { - "height": "150", - "weight": "37", - "bust": "82", - "waist": "59", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "オータムバケーション", - "alias_name_display": "オータムバケーション", - "id": "2224101", - "hash": "f0515ad075fac44cb443e3212a4d26e1", - "profile": { - "height": "150", - "weight": "37", - "bust": "82", - "waist": "59", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "オータムバケーション", - "alias_name_display": "オータムバケーション", - "id": "2324102", - "hash": "374ec3840963828acbcf06855e0fe040", - "profile": { - "height": "150", - "weight": "37", - "bust": "82", - "waist": "59", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "聖なる乙女", - "alias_name_display": "聖なる乙女", - "id": "2400501", - "hash": "8cae26d0d27003747bc45772fe2394fe", - "profile": { - "height": "150", - "weight": "37", - "bust": "82", - "waist": "59", - "hip": "86" - }, - "event": [ - { - "event_id": 101, - "event_name": "星降るクリスマス" - } - ] - }, - { - "alias_name": "聖なる乙女", - "alias_name_display": "聖なる乙女", - "id": "2500502", - "hash": "5b28de5e600e64bf58b9c0b0a1451c32", - "profile": { - "height": "150", - "weight": "37", - "bust": "82", - "waist": "59", - "hip": "86" - }, - "event": [ - { - "event_id": 101, - "event_name": "星降るクリスマス" - } - ] - }, - { - "alias_name": "清白の乙女", - "alias_name_display": "清白の乙女", - "id": "2404501", - "hash": "5d55c5a3466041effb10209d4fe173e1", - "profile": { - "height": "150", - "weight": "37", - "bust": "82", - "waist": "59", - "hip": "86" - }, - "event": [ - { - "event_id": 208, - "event_name": "アイドルサバイバル聖歌響くクリスマス" - } - ] - }, - { - "alias_name": "清白の乙女", - "alias_name_display": "清白の乙女", - "id": "2504502", - "hash": "fdcdab7adbaa2afbb76be984e650de0e", - "profile": { - "height": "150", - "weight": "37", - "bust": "82", - "waist": "59", - "hip": "86" - }, - "event": [ - { - "event_id": 208, - "event_name": "アイドルサバイバル聖歌響くクリスマス" - } - ] - }, - { - "alias_name": "白き細雪", - "alias_name_display": "白き細雪", - "id": "2419801", - "hash": "5b09b56806ee072b6137f2e42fd8fc04", - "profile": { - "height": "150", - "weight": "37", - "bust": "82", - "waist": "59", - "hip": "86" - }, - "event": [ - { - "event_id": 710, - "event_name": "サンタDEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "白き細雪", - "alias_name_display": "白き細雪", - "id": "2519802", - "hash": "7c18ddc33c71d6822f17d7bd39c58e36", - "profile": { - "height": "150", - "weight": "37", - "bust": "82", - "waist": "59", - "hip": "86" - }, - "event": [ - { - "event_id": 710, - "event_name": "サンタDEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "純真少女", - "alias_name_display": "純真少女", - "id": "2431801", - "hash": "38cad77b3a0f525ddcc4365b08e13549", - "profile": { - "height": "150", - "weight": "37", - "bust": "82", - "waist": "59", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "純真少女", - "alias_name_display": "純真少女", - "id": "2531802", - "hash": "4d605668f2238435747000680b3e9d59", - "profile": { - "height": "150", - "weight": "37", - "bust": "82", - "waist": "59", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "ひびきあう雪花", - "alias_name_display": "ひびきあう雪花", - "id": "2436701", - "hash": "e60367a2486c6bb3fb16e369d6796307", - "profile": { - "height": "150", - "weight": "37", - "bust": "82", - "waist": "59", - "hip": "86" - }, - "event": [ - { - "event_id": 1905, - "event_name": "ディアリースターナイト ~聖夜のキセキ~" - } - ] - }, - { - "alias_name": "ひびきあう雪花", - "alias_name_display": "ひびきあう雪花", - "id": "2536702", - "hash": "3e6deec005701d78f54d7108ff35df41", - "profile": { - "height": "150", - "weight": "37", - "bust": "82", - "waist": "59", - "hip": "86" - }, - "event": [ - { - "event_id": 1905, - "event_name": "ディアリースターナイト ~聖夜のキセキ~" - } - ] - } - ], - "units": [ - { - "id": "114", - "name": "ドリームホープスプリング" - } - ] - }, - "133": { - "idol_id": 133, - "idol_name": "鷹富士茄子", - "idol_name_display": "鷹富士茄子", - "aliases": [ - { - "alias_name": "運気上昇", - "alias_name_display": "運気上昇", - "id": "2227601", - "hash": "d7dec3c58513c892ae28ce692f1d9c06", - "profile": { - "height": "160", - "weight": "43", - "bust": "88", - "waist": "57", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "運気上昇", - "alias_name_display": "運気上昇", - "id": "2327602", - "hash": "89bfa866799f61e56ef2e9ad90df0abd", - "profile": { - "height": "160", - "weight": "43", - "bust": "88", - "waist": "57", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "幸運の女神", - "alias_name_display": "幸運の女神", - "id": "2400701", - "hash": "bf1cee7c5f1620d1328b295abb2b3573", - "profile": { - "height": "160", - "weight": "43", - "bust": "88", - "waist": "57", - "hip": "88" - }, - "event": [ - { - "event_id": 102, - "event_name": "アイドルおもちつき大会" - } - ] - }, - { - "alias_name": "幸運の女神", - "alias_name_display": "幸運の女神", - "id": "2500702", - "hash": "6b856c4fa2d4b26fd50a8169f19ebb51", - "profile": { - "height": "160", - "weight": "43", - "bust": "88", - "waist": "57", - "hip": "88" - }, - "event": [ - { - "event_id": 102, - "event_name": "アイドルおもちつき大会" - } - ] - }, - { - "alias_name": "強運の才女", - "alias_name_display": "強運の才女", - "id": "2404901", - "hash": "5b1bae277355a1691544753b57fac1d0", - "profile": { - "height": "160", - "weight": "43", - "bust": "88", - "waist": "57", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "強運の才女", - "alias_name_display": "強運の才女", - "id": "2504902", - "hash": "358368dbd0dc56c11cf93069d1d75911", - "profile": { - "height": "160", - "weight": "43", - "bust": "88", - "waist": "57", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "謹賀新年", - "alias_name_display": "謹賀新年", - "id": "2411701", - "hash": "17a125ea352bda654afef2d07eb1ebc7", - "profile": { - "height": "160", - "weight": "43", - "bust": "88", - "waist": "57", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "謹賀新年", - "alias_name_display": "謹賀新年", - "id": "2511702", - "hash": "88f8892b760b11a663e8403c3870763a", - "profile": { - "height": "160", - "weight": "43", - "bust": "88", - "waist": "57", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "多芸の才女", - "alias_name_display": "多芸の才女", - "id": "2420201", - "hash": "98f83a297189bc85c6b368df4c369af8", - "profile": { - "height": "160", - "weight": "43", - "bust": "88", - "waist": "57", - "hip": "88" - }, - "event": [ - { - "event_id": 1204, - "event_name": "新年かくし芸SP アイドルチャレンジ" - } - ] - }, - { - "alias_name": "多芸の才女", - "alias_name_display": "多芸の才女", - "id": "2520202", - "hash": "46fc14a63a4822541cca86f95ea2cf76", - "profile": { - "height": "160", - "weight": "43", - "bust": "88", - "waist": "57", - "hip": "88" - }, - "event": [ - { - "event_id": 1204, - "event_name": "新年かくし芸SP アイドルチャレンジ" - } - ] - }, - { - "alias_name": "雪月花", - "alias_name_display": "雪月花", - "id": "2430301", - "hash": "132ee5e2eafd0c8749ff85a491297a42", - "profile": { - "height": "160", - "weight": "43", - "bust": "88", - "waist": "57", - "hip": "88" - }, - "event": [ - { - "event_id": 1405, - "event_name": "第5回ぷちデレラコレクション" - } - ] - }, - { - "alias_name": "雪月花", - "alias_name_display": "雪月花", - "id": "2530302", - "hash": "f6b971137b54ffdbd6f9b1671ccdb7bc", - "profile": { - "height": "160", - "weight": "43", - "bust": "88", - "waist": "57", - "hip": "88" - }, - "event": [ - { - "event_id": 1405, - "event_name": "第5回ぷちデレラコレクション" - } - ] - }, - { - "alias_name": "慶福の雪路", - "alias_name_display": "慶福の雪路", - "id": "2437701", - "hash": "a6becd927cf9c07c6f8a3a0675cb5eee", - "profile": { - "height": "160", - "weight": "43", - "bust": "88", - "waist": "57", - "hip": "88" - }, - "event": [ - { - "event_id": "033", - "event_name": "第33回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "慶福の雪路", - "alias_name_display": "慶福の雪路", - "id": "2537702", - "hash": "715b793aa4d3b15051658c0100f70bde", - "profile": { - "height": "160", - "weight": "43", - "bust": "88", - "waist": "57", - "hip": "88" - }, - "event": [ - { - "event_id": "033", - "event_name": "第33回プロダクションマッチフェスティバル" - } - ] - } - ], - "units": [ - { - "id": "58", - "name": "ミス・フォーチュン" - }, - { - "id": "87", - "name": "ウィンター・F・ドライバーズ" - } - ] - }, - "134": { - "idol_id": 134, - "idol_name": "本田未央", - "idol_name_display": "本田未央", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3000101", - "hash": "3a15a87af190354ae89fca368b35b69e", - "profile": { - "height": "161", - "weight": "46", - "bust": "84", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3100102", - "hash": "ce6baca22d2efbb08703302ef088640d", - "profile": { - "height": "161", - "weight": "46", - "bust": "84", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "2ndアニバーサリー", - "alias_name_display": "2ndアニバーサリー", - "id": "3214101", - "hash": "dfea059243990fd0d1902e55aefda8ea", - "profile": { - "height": "161", - "weight": "46", - "bust": "84", - "waist": "58", - "hip": "87" - }, - "event": [ - { - "event_id": 410, - "event_name": "アイドルプロデュース the 2nd Anniversary" - } - ] - }, - { - "alias_name": "2ndアニバーサリー", - "alias_name_display": "2ndアニバーサリー", - "id": "3314102", - "hash": "5bc8615e9e1c4d44265bd5e804fb30da", - "profile": { - "height": "161", - "weight": "46", - "bust": "84", - "waist": "58", - "hip": "87" - }, - "event": [ - { - "event_id": 410, - "event_name": "アイドルプロデュース the 2nd Anniversary" - } - ] - }, - { - "alias_name": "2ndアニバーサリー・スマイル", - "alias_name_display": "2ndアニバーサリー・スマイル", - "id": "3214201", - "hash": "47b205617b851c0339d5d48feef363a8", - "profile": { - "height": "161", - "weight": "46", - "bust": "84", - "waist": "58", - "hip": "87" - }, - "event": [ - { - "event_id": 410, - "event_name": "アイドルプロデュース the 2nd Anniversary" - } - ] - }, - { - "alias_name": "2ndアニバーサリー・スマイル", - "alias_name_display": "2ndアニバーサリー・スマイル", - "id": "3314202", - "hash": "59e76dff218b3cfd6f752c96020b77b9", - "profile": { - "height": "161", - "weight": "46", - "bust": "84", - "waist": "58", - "hip": "87" - }, - "event": [ - { - "event_id": 410, - "event_name": "アイドルプロデュース the 2nd Anniversary" - } - ] - }, - { - "alias_name": "2ndアニバーサリー・ネコミミ", - "alias_name_display": "2ndアニバーサリー・ネコミミ", - "id": "3214301", - "hash": "f30ed6c8625b249877623ce153a6ee42", - "profile": { - "height": "161", - "weight": "46", - "bust": "84", - "waist": "58", - "hip": "87" - }, - "event": [ - { - "event_id": 410, - "event_name": "アイドルプロデュース the 2nd Anniversary" - } - ] - }, - { - "alias_name": "2ndアニバーサリー・ネコミミ", - "alias_name_display": "2ndアニバーサリー・ネコミミ", - "id": "3314302", - "hash": "a5c1e539fc8decf8bc8344d4da523d75", - "profile": { - "height": "161", - "weight": "46", - "bust": "84", - "waist": "58", - "hip": "87" - }, - "event": [ - { - "event_id": 410, - "event_name": "アイドルプロデュース the 2nd Anniversary" - } - ] - }, - { - "alias_name": "ニュージェネレーション", - "alias_name_display": "ニュージェネレーション", - "id": "3404001", - "hash": "91fcfc8ea99e57db7e57a9c254399d1e", - "profile": { - "height": "161", - "weight": "46", - "bust": "84", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "ニュージェネレーション", - "alias_name_display": "ニュージェネレーション", - "id": "3504002", - "hash": "ac84c61ce8af6cbd8ecdb3099e87b29f", - "profile": { - "height": "161", - "weight": "46", - "bust": "84", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "3404901", - "hash": "b9e3d2ab769bbd4f02d9a86aa4963480", - "profile": { - "height": "161", - "weight": "46", - "bust": "84", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "3504902", - "hash": "36c8ad2730641ca613e6bce46f958c86", - "profile": { - "height": "161", - "weight": "46", - "bust": "84", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "パーフェクトスター", - "alias_name_display": "パーフェクトスター", - "id": "3408201", - "hash": "3f0e274eb39fa06ec90066815ebcce3f", - "profile": { - "height": "161", - "weight": "46", - "bust": "84", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "パーフェクトスター", - "alias_name_display": "パーフェクトスター", - "id": "3508202", - "hash": "d70342d50a456e6ea28c793fd32fded8", - "profile": { - "height": "161", - "weight": "46", - "bust": "84", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "ワンダフルマジック", - "alias_name_display": "ワンダフルマジック", - "id": "3413001", - "hash": "b10e7156c968f1c10e931fb39437b555", - "profile": { - "height": "161", - "weight": "46", - "bust": "84", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "ワンダフルマジック", - "alias_name_display": "ワンダフルマジック", - "id": "3513002", - "hash": "728ea914619eaaaf809574f0134816ee", - "profile": { - "height": "161", - "weight": "46", - "bust": "84", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "放課後パーティー", - "alias_name_display": "放課後パーティー", - "id": "3417901", - "hash": "837e90baff2cb4e1b8d83b52bd204974", - "profile": { - "height": "161", - "weight": "46", - "bust": "84", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "放課後パーティー", - "alias_name_display": "放課後パーティー", - "id": "3517902", - "hash": "ef8c42dd6a0e040d19677ae449f1c61e", - "profile": { - "height": "161", - "weight": "46", - "bust": "84", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "ドリームストーリー", - "alias_name_display": "ドリームストーリー", - "id": "3520702", - "hash": "20d57207fb5680675a1ee2c01974781a", - "profile": { - "height": "161", - "weight": "46", - "bust": "84", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "G4U!", - "alias_name_display": "G4U!", - "id": "3526502", - "hash": "7686210ae4c41b15170fb51774c0a19b", - "profile": { - "height": "161", - "weight": "46", - "bust": "84", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "秋夜の乙女", - "alias_name_display": "秋夜の乙女", - "id": "3427501", - "hash": "6ff727545e998f9425485bf823dc8225", - "profile": { - "height": "161", - "weight": "46", - "bust": "84", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "秋夜の乙女", - "alias_name_display": "秋夜の乙女", - "id": "3527502", - "hash": "b1a3cc28c90185948cc52fd0031c95dc", - "profile": { - "height": "161", - "weight": "46", - "bust": "84", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "アニバーサリースター", - "alias_name_display": "アニバーサリースター", - "id": "3428201", - "hash": "87958f4f873116edfb0a6ea544368e75", - "profile": { - "height": "161", - "weight": "46", - "bust": "84", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "アニバーサリースター", - "alias_name_display": "アニバーサリースター", - "id": "3528202", - "hash": "e8e30ac23663842999f4057639a470fb", - "profile": { - "height": "161", - "weight": "46", - "bust": "84", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "オンリーマイスター", - "alias_name_display": "オンリーマイスター", - "id": "3431801", - "hash": "753de37bd2cf3a4f2c089eeaa9d1bd78", - "profile": { - "height": "161", - "weight": "46", - "bust": "84", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "オンリーマイスター", - "alias_name_display": "オンリーマイスター", - "id": "3531802", - "hash": "873323df410644a760d965d7ece54bd7", - "profile": { - "height": "161", - "weight": "46", - "bust": "84", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "チャームフォーハピネス", - "alias_name_display": "チャームフォーハピネス", - "id": "3437301", - "hash": "3ac0d8a5dbef390ae80d5055585ff040", - "profile": { - "height": "161", - "weight": "46", - "bust": "84", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "チャームフォーハピネス", - "alias_name_display": "チャームフォーハピネス", - "id": "3537302", - "hash": "fdda617ed4a59a8d1127c50336535a52", - "profile": { - "height": "161", - "weight": "46", - "bust": "84", - "waist": "58", - "hip": "87" - }, - "event": [] - } - ], - "units": [ - { - "id": "21", - "name": "ジェネレーションオブサマー" - }, - { - "id": "109", - "name": "new generations" - }, - { - "id": "146", - "name": "サンセットノスタルジー" - }, - { - "id": "153", - "name": "Positive Passion" - }, - { - "id": "204", - "name": "トロピカル☆スターズ" - }, - { - "id": "213", - "name": "CINDERELLA PROJECT" - } - ] - }, - "135": { - "idol_id": 135, - "idol_name": "高森藍子", - "idol_name_display": "高森藍子", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3000201", - "hash": "25ea7fdd66fc6bd8e7209a4c0d2ba00c", - "profile": { - "height": "155", - "weight": "42", - "bust": "74", - "waist": "60", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3100202", - "hash": "57bfd18f73cf672d05643716f74bbc48", - "profile": { - "height": "155", - "weight": "42", - "bust": "74", - "waist": "60", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "バレンタイン", - "alias_name_display": "バレンタイン", - "id": "3002101", - "hash": "8406433757bac86ef8134cd59ed4cd3b", - "profile": { - "height": "155", - "weight": "42", - "bust": "74", - "waist": "60", - "hip": "79" - }, - "event": [ - { - "event_id": 103, - "event_name": "バレンタインパーティー" - } - ] - }, - { - "alias_name": "バレンタイン", - "alias_name_display": "バレンタイン", - "id": "3102102", - "hash": "55f34023e9d773f97afde9bb99574843", - "profile": { - "height": "155", - "weight": "42", - "bust": "74", - "waist": "60", - "hip": "79" - }, - "event": [ - { - "event_id": 103, - "event_name": "バレンタインパーティー" - } - ] - }, - { - "alias_name": "ふんわりガール", - "alias_name_display": "ふんわりガール", - "id": "3204601", - "hash": "f70f143d7bb856a67cb7bbd175dc7829", - "profile": { - "height": "155", - "weight": "42", - "bust": "74", - "waist": "60", - "hip": "79" - }, - "event": [ - { - "event_id": "002", - "event_name": "第2回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "ふんわりガール", - "alias_name_display": "ふんわりガール", - "id": "3304602", - "hash": "d6dbb1e8e2c5e452026e993c5a8fde56", - "profile": { - "height": "155", - "weight": "42", - "bust": "74", - "waist": "60", - "hip": "79" - }, - "event": [ - { - "event_id": "002", - "event_name": "第2回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "アニバーサリーイエロー", - "alias_name_display": "アニバーサリーイエロー", - "id": "3207601", - "hash": "a14b13704b20edf9834c27832fd1670f", - "profile": { - "height": "155", - "weight": "42", - "bust": "74", - "waist": "60", - "hip": "79" - }, - "event": [ - { - "event_id": 403, - "event_name": "アイドルプロデュース the 1st Anniversary" - } - ] - }, - { - "alias_name": "アニバーサリーイエロー", - "alias_name_display": "アニバーサリーイエロー", - "id": "3307602", - "hash": "d0289c681ff7668957a4d7a4198b61aa", - "profile": { - "height": "155", - "weight": "42", - "bust": "74", - "waist": "60", - "hip": "79" - }, - "event": [ - { - "event_id": 403, - "event_name": "アイドルプロデュース the 1st Anniversary" - } - ] - }, - { - "alias_name": "新春ガール", - "alias_name_display": "新春ガール", - "id": "3227201", - "hash": "ca354dc7b9ffa3261b69dfbcb633c162", - "profile": { - "height": "155", - "weight": "42", - "bust": "74", - "waist": "60", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "新春ガール", - "alias_name_display": "新春ガール", - "id": "3327202", - "hash": "d3fa350883bd59a8245cef6a04319057", - "profile": { - "height": "155", - "weight": "42", - "bust": "74", - "waist": "60", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "ゆるふわ乙女", - "alias_name_display": "ゆるふわ乙女", - "id": "3405201", - "hash": "6efffe43696b87d64380769c40a3f12d", - "profile": { - "height": "155", - "weight": "42", - "bust": "74", - "waist": "60", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "ゆるふわ乙女", - "alias_name_display": "ゆるふわ乙女", - "id": "3505202", - "hash": "0321c8e5bf54a3c4602ee87bac727750", - "profile": { - "height": "155", - "weight": "42", - "bust": "74", - "waist": "60", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "深緑の魔女", - "alias_name_display": "深緑の魔女", - "id": "3409001", - "hash": "b9c843a22dc3445a53c384de9948be97", - "profile": { - "height": "155", - "weight": "42", - "bust": "74", - "waist": "60", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "深緑の魔女", - "alias_name_display": "深緑の魔女", - "id": "3509002", - "hash": "dab9960d2db1424d77af7ba448c77039", - "profile": { - "height": "155", - "weight": "42", - "bust": "74", - "waist": "60", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "3409701", - "hash": "696e63ecba110164d3740efd5dab872a", - "profile": { - "height": "155", - "weight": "42", - "bust": "74", - "waist": "60", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "3509702", - "hash": "e3d9a2ea1b5c8caec4250f08f4f5cc95", - "profile": { - "height": "155", - "weight": "42", - "bust": "74", - "waist": "60", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "シンデレラドリーム", - "alias_name_display": "シンデレラドリーム", - "id": "3411301", - "hash": "a6a1581237e6048bae08c63a85e50e87", - "profile": { - "height": "155", - "weight": "42", - "bust": "74", - "waist": "60", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "シンデレラドリーム", - "alias_name_display": "シンデレラドリーム", - "id": "3511302", - "hash": "77828bac52f87e72db028e70a0338c11", - "profile": { - "height": "155", - "weight": "42", - "bust": "74", - "waist": "60", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "おさんぽ日和", - "alias_name_display": "おさんぽ日和", - "id": "3413101", - "hash": "e82199f18a2886519aa98a1a5ef46043", - "profile": { - "height": "155", - "weight": "42", - "bust": "74", - "waist": "60", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "おさんぽ日和", - "alias_name_display": "おさんぽ日和", - "id": "3513102", - "hash": "1a30af5fa8c952b1424a1dbb60269ff0", - "profile": { - "height": "155", - "weight": "42", - "bust": "74", - "waist": "60", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "まごころプレゼント", - "alias_name_display": "まごころプレゼント", - "id": "3419801", - "hash": "39c5e502a5ec2c962e1610098b6317cc", - "profile": { - "height": "155", - "weight": "42", - "bust": "74", - "waist": "60", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "まごころプレゼント", - "alias_name_display": "まごころプレゼント", - "id": "3519802", - "hash": "0e80e42aa03acf28172a86a6113212e5", - "profile": { - "height": "155", - "weight": "42", - "bust": "74", - "waist": "60", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "放課後サマー", - "alias_name_display": "放課後サマー", - "id": "3425901", - "hash": "775f8939d540b7b1c169ba72be9ca25e", - "profile": { - "height": "155", - "weight": "42", - "bust": "74", - "waist": "60", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "放課後サマー", - "alias_name_display": "放課後サマー", - "id": "3525902", - "hash": "c2f3cd2bd710cebb14c84f6a64d9949a", - "profile": { - "height": "155", - "weight": "42", - "bust": "74", - "waist": "60", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "駿風のバンデット", - "alias_name_display": "駿風のバンデット", - "id": "3434701", - "hash": "96372916d89edc657240f71836f7dbb9", - "profile": { - "height": "155", - "weight": "42", - "bust": "74", - "waist": "60", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "駿風のバンデット", - "alias_name_display": "駿風のバンデット", - "id": "3534702", - "hash": "cd741e8ee6028bb578bcbc5d55475390", - "profile": { - "height": "155", - "weight": "42", - "bust": "74", - "waist": "60", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "ちいさなともだち", - "alias_name_display": "ちいさなともだち", - "id": "3439301", - "hash": "55ef16cfd44a6fdfb3709337f27e595f", - "profile": { - "height": "155", - "weight": "42", - "bust": "74", - "waist": "60", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "ちいさなともだち", - "alias_name_display": "ちいさなともだち", - "id": "3539302", - "hash": "4d91dd57c123958c50421bb04076c240", - "profile": { - "height": "155", - "weight": "42", - "bust": "74", - "waist": "60", - "hip": "79" - }, - "event": [] - } - ], - "units": [ - { - "id": "5", - "name": "インディゴ・ベル" - }, - { - "id": "69", - "name": "Ai's" - }, - { - "id": "75", - "name": "Flowery" - }, - { - "id": "103", - "name": "ビビッドカラーエイジ" - }, - { - "id": "153", - "name": "Positive Passion" - }, - { - "id": "189", - "name": "アインフェリア" - }, - { - "id": "203", - "name": "ゼッケンズ" - } - ] - }, - "136": { - "idol_id": 136, - "idol_name": "並木芽衣子", - "idol_name_display": "並木芽衣子", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3000301", - "hash": "dd7b4d4e1769b447ee6fc98e317fb666", - "profile": { - "height": "160", - "weight": "44", - "bust": "80", - "waist": "57", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3100302", - "hash": "d88a41865dc231e4770c0d915f2cd17a", - "profile": { - "height": "160", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "メイドコレクション", - "alias_name_display": "メイドコレクション", - "id": "3206001", - "hash": "2be497b9005c4c64d25ff518339cc6a6", - "profile": { - "height": "160", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "メイドコレクション", - "alias_name_display": "メイドコレクション", - "id": "3306002", - "hash": "847a362d9e6e286f93132c02c8f44c64", - "profile": { - "height": "160", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "トラベル☆ガール", - "alias_name_display": "トラベル☆ガール", - "id": "3209801", - "hash": "b84dce89a3a135fcb166cb2639ff184e", - "profile": { - "height": "160", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": "009", - "event_name": "第9回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "トラベル☆ガール", - "alias_name_display": "トラベル☆ガール", - "id": "3309802", - "hash": "db0cdefb3e1d797d392546c121df8aa3", - "profile": { - "height": "160", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": "009", - "event_name": "第9回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "ワンダーバニー", - "alias_name_display": "ワンダーバニー", - "id": "3215501", - "hash": "4e273575f8490fbb863c2dbe132ab673", - "profile": { - "height": "160", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ワンダーバニー", - "alias_name_display": "ワンダーバニー", - "id": "3315502", - "hash": "b40d53ca759a5c49e316149907b16324", - "profile": { - "height": "160", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "めろめろココメロン", - "alias_name_display": "めろめろココメロン", - "id": "3219501", - "hash": "6aa24dae832c588c383c1699d97f19b6", - "profile": { - "height": "160", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "めろめろココメロン", - "alias_name_display": "めろめろココメロン", - "id": "3319502", - "hash": "0398b0c40f4c26e445c17dad6f18d6e2", - "profile": { - "height": "160", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "さわやかスポーツ", - "alias_name_display": "さわやかスポーツ", - "id": "3222801", - "hash": "fe782525f82eec7f9c6c2f39ad51207c", - "profile": { - "height": "160", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "さわやかスポーツ", - "alias_name_display": "さわやかスポーツ", - "id": "3322802", - "hash": "18478a5af695d30770b15fe0d47c6643", - "profile": { - "height": "160", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "フレッシュガール", - "alias_name_display": "フレッシュガール", - "id": "3325102", - "hash": "ef03539e18ee2eaa6cf1fd87bf04a0f6", - "profile": { - "height": "160", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": "023", - "event_name": "第23回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "トラベルレター", - "alias_name_display": "トラベルレター", - "id": "3227001", - "hash": "798448d3e64f5cc1fff7179d377471fd", - "profile": { - "height": "160", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "トラベルレター", - "alias_name_display": "トラベルレター", - "id": "3327002", - "hash": "e3926356fb48d480b2f2f25b4c74ce70", - "profile": { - "height": "160", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ハロウィンI.C", - "alias_name_display": "ハロウィンI.C", - "id": "3331202", - "hash": "463d606a3dc453aa44e9db6bb70852a9", - "profile": { - "height": "160", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 1213, - "event_name": "目指せお菓子なハロウィン アイドルチャレンジ" - } - ] - }, - { - "alias_name": "トラベルダンサー", - "alias_name_display": "トラベルダンサー", - "id": "3408601", - "hash": "7695d88a4ae65b8c0ed64f30f3601790", - "profile": { - "height": "160", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 507, - "event_name": "LIVEツアーカーニバルinドイツ" - } - ] - }, - { - "alias_name": "トラベルダンサー", - "alias_name_display": "トラベルダンサー", - "id": "3508602", - "hash": "99bb88ff7b093701659eabbb897808e4", - "profile": { - "height": "160", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 507, - "event_name": "LIVEツアーカーニバルinドイツ" - } - ] - }, - { - "alias_name": "秋色のお出かけ", - "alias_name_display": "秋色のお出かけ", - "id": "3419101", - "hash": "738ddb49940e93f41f7c650b90dcee4a", - "profile": { - "height": "160", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 808, - "event_name": "第8回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "秋色のお出かけ", - "alias_name_display": "秋色のお出かけ", - "id": "3519102", - "hash": "81730ca2c7a398b66e1ff4693de7f751", - "profile": { - "height": "160", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 808, - "event_name": "第8回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "カントリーロード", - "alias_name_display": "カントリーロード", - "id": "3432201", - "hash": "c51198aab9b189eb750ee55fb5902d3b", - "profile": { - "height": "160", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "カントリーロード", - "alias_name_display": "カントリーロード", - "id": "3532202", - "hash": "42484da391a105442dc3523e303fff9d", - "profile": { - "height": "160", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "おめかしウィッチ", - "alias_name_display": "おめかしウィッチ", - "id": "3435401", - "hash": "c2f06ed8aee7c5930381f61ed9988a6b", - "profile": { - "height": "160", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 1213, - "event_name": "目指せお菓子なハロウィン アイドルチャレンジ" - } - ] - }, - { - "alias_name": "おめかしウィッチ", - "alias_name_display": "おめかしウィッチ", - "id": "3535402", - "hash": "bce23786ce8903092e17371ca5003061", - "profile": { - "height": "160", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 1213, - "event_name": "目指せお菓子なハロウィン アイドルチャレンジ" - } - ] - }, - { - "alias_name": "にっこりウィッチ", - "alias_name_display": "にっこりウィッチ", - "id": "3435501", - "hash": "b94786b47c7d37e1c02f31aa0cadbd4b", - "profile": { - "height": "160", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 1213, - "event_name": "目指せお菓子なハロウィン アイドルチャレンジ" - } - ] - }, - { - "alias_name": "にっこりウィッチ", - "alias_name_display": "にっこりウィッチ", - "id": "3535502", - "hash": "0184568340dc8bef2245fde0b9423019", - "profile": { - "height": "160", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 1213, - "event_name": "目指せお菓子なハロウィン アイドルチャレンジ" - } - ] - }, - { - "alias_name": "トラベルチアー", - "alias_name_display": "トラベルチアー", - "id": "3439601", - "hash": "01169e17d4d7c870bd60b0454d091706", - "profile": { - "height": "160", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 1512, - "event_name": "第12回チーム対抗トークバトルショー" - } - ] - }, - { - "alias_name": "トラベルチアー", - "alias_name_display": "トラベルチアー", - "id": "3539602", - "hash": "9a07422c4498c97ae7b7a9d9117fe9fd", - "profile": { - "height": "160", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 1512, - "event_name": "第12回チーム対抗トークバトルショー" - } - ] - } - ], - "units": [ - { - "id": "63", - "name": "ラブリーダイナーズ" - }, - { - "id": "167", - "name": "ロマンティックツアーズ" - }, - { - "id": "183", - "name": "メイドコレクション" - } - ] - }, - "137": { - "idol_id": 137, - "idol_name": "龍崎薫", - "idol_name_display": "龍崎薫", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3000401", - "hash": "6bd01496d9b00da9563c7e92b6a40257", - "profile": { - "height": "132", - "weight": "32", - "bust": "65", - "waist": "51", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3100402", - "hash": "ce9be94eb3291a7f91c73a7824eb388c", - "profile": { - "height": "133", - "weight": "33", - "bust": "67", - "waist": "52", - "hip": "72" - }, - "event": [] - }, - { - "alias_name": "新春", - "alias_name_display": "新春", - "id": "3202301", - "hash": "5be9bf88188f36e181fbe96ea1341c41", - "profile": { - "height": "132", - "weight": "32", - "bust": "65", - "waist": "51", - "hip": "70" - }, - "event": [ - { - "event_id": 102, - "event_name": "アイドルおもちつき大会" - } - ] - }, - { - "alias_name": "新春", - "alias_name_display": "新春", - "id": "3302302", - "hash": "446514874e3c985fa57d6447cdd803d1", - "profile": { - "height": "133", - "weight": "33", - "bust": "67", - "waist": "52", - "hip": "69" - }, - "event": [ - { - "event_id": 102, - "event_name": "アイドルおもちつき大会" - } - ] - }, - { - "alias_name": "ゴスペルドレス", - "alias_name_display": "ゴスペルドレス", - "id": "3207801", - "hash": "c5cfd776209d261d147d40a122fbce6d", - "profile": { - "height": "135", - "weight": "34", - "bust": "68", - "waist": "53", - "hip": "70" - }, - "event": [ - { - "event_id": 208, - "event_name": "アイドルサバイバル聖歌響くクリスマス" - } - ] - }, - { - "alias_name": "ゴスペルドレス", - "alias_name_display": "ゴスペルドレス", - "id": "3307802", - "hash": "386eb2f9064e3658c5de712c36f4b685", - "profile": { - "height": "135", - "weight": "34", - "bust": "68", - "waist": "53", - "hip": "70" - }, - "event": [ - { - "event_id": 208, - "event_name": "アイドルサバイバル聖歌響くクリスマス" - } - ] - }, - { - "alias_name": "マーチングバンド", - "alias_name_display": "マーチングバンド", - "id": "3216601", - "hash": "39647db5da91cae2322aafcfb93b2832", - "profile": { - "height": "135", - "weight": "34", - "bust": "68", - "waist": "53", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "マーチングバンド", - "alias_name_display": "マーチングバンド", - "id": "3316602", - "hash": "c468fb201eda84cf94cd2ddca45ea09f", - "profile": { - "height": "135", - "weight": "34", - "bust": "68", - "waist": "53", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "エレガントI.C", - "alias_name_display": "エレガントI.C", - "id": "3321802", - "hash": "eb7c81a65fd7e6298c860ee07e8d3d97", - "profile": { - "height": "135", - "weight": "34", - "bust": "68", - "waist": "53", - "hip": "70" - }, - "event": [ - { - "event_id": 1205, - "event_name": "目指せ優雅なお嬢様 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "ウィンターバカンス", - "alias_name_display": "ウィンターバカンス", - "id": "3226801", - "hash": "3c64d5dad75b33a0fb0cc5d12e4d8505", - "profile": { - "height": "135", - "weight": "34", - "bust": "68", - "waist": "53", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "ウィンターバカンス", - "alias_name_display": "ウィンターバカンス", - "id": "3326802", - "hash": "0bf03f5221911fc5b1abf9eb9f296865", - "profile": { - "height": "135", - "weight": "34", - "bust": "68", - "waist": "53", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "フェリーチェ・チョコラータ", - "alias_name_display": "フェリーチェ・チョコラータ", - "id": "3232501", - "hash": "68fa645bdf7cb21a74bcacc5987d31c7", - "profile": { - "height": "135", - "weight": "34", - "bust": "68", - "waist": "53", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "フェリーチェ・チョコラータ", - "alias_name_display": "フェリーチェ・チョコラータ", - "id": "3332502", - "hash": "4260fa0cfa9d7f4580c26b03aeeba068", - "profile": { - "height": "135", - "weight": "34", - "bust": "68", - "waist": "53", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "サンフラワーイエロー", - "alias_name_display": "サンフラワーイエロー", - "id": "3402901", - "hash": "ae3ba85f888597f52c2744eeac3d9ace", - "profile": { - "height": "134", - "weight": "33", - "bust": "67", - "waist": "52", - "hip": "69" - }, - "event": [ - { - "event_id": "004", - "event_name": "第4回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "サンフラワーイエロー", - "alias_name_display": "サンフラワーイエロー", - "id": "3502902", - "hash": "2175109269fe3e11706218748d8a2d9a", - "profile": { - "height": "135", - "weight": "34", - "bust": "68", - "waist": "53", - "hip": "70" - }, - "event": [ - { - "event_id": "004", - "event_name": "第4回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "桜色少女", - "alias_name_display": "桜色少女", - "id": "3405701", - "hash": "8c37d3680b260969d28f66934d928c0a", - "profile": { - "height": "135", - "weight": "34", - "bust": "68", - "waist": "53", - "hip": "70" - }, - "event": [ - { - "event_id": 406, - "event_name": "アイドルプロデュース 春の桜祭り編" - } - ] - }, - { - "alias_name": "桜色少女", - "alias_name_display": "桜色少女", - "id": "3505702", - "hash": "51a61c8fc7c098dd3f0c4c9ed938e1a8", - "profile": { - "height": "135", - "weight": "34", - "bust": "68", - "waist": "53", - "hip": "70" - }, - "event": [ - { - "event_id": 406, - "event_name": "アイドルプロデュース 春の桜祭り編" - } - ] - }, - { - "alias_name": "桜色スマイル", - "alias_name_display": "桜色スマイル", - "id": "3405801", - "hash": "e15258ec31bbcad88a7ea2a78b25be11", - "profile": { - "height": "135", - "weight": "34", - "bust": "68", - "waist": "53", - "hip": "70" - }, - "event": [ - { - "event_id": 406, - "event_name": "アイドルプロデュース 春の桜祭り編" - } - ] - }, - { - "alias_name": "桜色スマイル", - "alias_name_display": "桜色スマイル", - "id": "3505802", - "hash": "effb92325b6736f30e59c8ca440592d8", - "profile": { - "height": "135", - "weight": "34", - "bust": "68", - "waist": "53", - "hip": "70" - }, - "event": [ - { - "event_id": 406, - "event_name": "アイドルプロデュース 春の桜祭り編" - } - ] - }, - { - "alias_name": "ちびっこポリス", - "alias_name_display": "ちびっこポリス", - "id": "3410001", - "hash": "94f468204a314b13c221bc2ff351a15a", - "profile": { - "height": "135", - "weight": "34", - "bust": "68", - "waist": "53", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "ちびっこポリス", - "alias_name_display": "ちびっこポリス", - "id": "3510002", - "hash": "b7bb5571402b624ffde22149b35d812c", - "profile": { - "height": "135", - "weight": "34", - "bust": "68", - "waist": "53", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "ハピネスチアー", - "alias_name_display": "ハピネスチアー", - "id": "3417301", - "hash": "ca52997de1baa2ce1074885bf86e0124", - "profile": { - "height": "135", - "weight": "34", - "bust": "68", - "waist": "53", - "hip": "70" - }, - "event": [ - { - "event_id": 1105, - "event_name": "第5回プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "ハピネスチアー", - "alias_name_display": "ハピネスチアー", - "id": "3517302", - "hash": "e31308f0895ca49eed17a2418b4533b1", - "profile": { - "height": "135", - "weight": "34", - "bust": "68", - "waist": "53", - "hip": "70" - }, - "event": [ - { - "event_id": 1105, - "event_name": "第5回プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "ハツラツお嬢様", - "alias_name_display": "ハツラツお嬢様", - "id": "3421801", - "hash": "7ac839de7d770abf38f7c1980d26faaa", - "profile": { - "height": "135", - "weight": "34", - "bust": "68", - "waist": "53", - "hip": "70" - }, - "event": [ - { - "event_id": 1205, - "event_name": "目指せ優雅なお嬢様 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "ハツラツお嬢様", - "alias_name_display": "ハツラツお嬢様", - "id": "3521802", - "hash": "344f0b05bd380ef7190f06c0bc636968", - "profile": { - "height": "135", - "weight": "34", - "bust": "68", - "waist": "53", - "hip": "70" - }, - "event": [ - { - "event_id": 1205, - "event_name": "目指せ優雅なお嬢様 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "ハツラツお嬢様・S", - "alias_name_display": "ハツラツお嬢様・S", - "id": "3421901", - "hash": "16879ab349989f30795c5a4aaf1f5b24", - "profile": { - "height": "135", - "weight": "34", - "bust": "68", - "waist": "53", - "hip": "70" - }, - "event": [ - { - "event_id": 1205, - "event_name": "目指せ優雅なお嬢様 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "ハツラツお嬢様・S", - "alias_name_display": "ハツラツお嬢様・S", - "id": "3521902", - "hash": "8eff69e4d99a16ba0ab8d8808b1dcfce", - "profile": { - "height": "135", - "weight": "34", - "bust": "68", - "waist": "53", - "hip": "70" - }, - "event": [ - { - "event_id": 1205, - "event_name": "目指せ優雅なお嬢様 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "元気のみなもと", - "alias_name_display": "元気のみなもと", - "id": "3426101", - "hash": "d98c949abd856585767f36e80ae36d61", - "profile": { - "height": "135", - "weight": "34", - "bust": "68", - "waist": "53", - "hip": "70" - }, - "event": [ - { - "event_id": 715, - "event_name": "第15回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "元気のみなもと", - "alias_name_display": "元気のみなもと", - "id": "3526102", - "hash": "db033d61f283a9b24cd8fb229961d6e4", - "profile": { - "height": "135", - "weight": "34", - "bust": "68", - "waist": "53", - "hip": "70" - }, - "event": [ - { - "event_id": 715, - "event_name": "第15回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "じょいふるステップ", - "alias_name_display": "じょいふるステップ", - "id": "3433201", - "hash": "b30dceee4b25e7fac98eb13236b79333", - "profile": { - "height": "135", - "weight": "34", - "bust": "68", - "waist": "53", - "hip": "70" - }, - "event": [] - }, - { - "alias_name": "じょいふるステップ", - "alias_name_display": "じょいふるステップ", - "id": "3533202", - "hash": "3d60bd5856309ade51e8d694c9ce0f57", - "profile": { - "height": "135", - "weight": "34", - "bust": "68", - "waist": "53", - "hip": "70" - }, - "event": [] - } - ], - "units": [ - { - "id": "92", - "name": "ゴスペルシスターズ" - }, - { - "id": "105", - "name": "リトルチェリーブロッサム" - }, - { - "id": "174", - "name": "カナリアサマー" - }, - { - "id": "214", - "name": "L.M.B.G" - } - ] - }, - "138": { - "idol_id": 138, - "idol_name": "木村夏樹", - "idol_name_display": "木村夏樹", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3000501", - "hash": "0534bded8c74fa792bde6f3c5692c187", - "profile": { - "height": "159", - "weight": "41", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3100502", - "hash": "66db6412d0f716cebdb923136609e6ff", - "profile": { - "height": "159", - "weight": "41", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "制服コレクション", - "alias_name_display": "制服コレクション", - "id": "3204001", - "hash": "d1ed6ed8f4ef807bff62625a579c2d27", - "profile": { - "height": "159", - "weight": "41", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "制服コレクション", - "alias_name_display": "制服コレクション", - "id": "3304002", - "hash": "770f6f299f10bbe5d17ef25bd8db5ee9", - "profile": { - "height": "159", - "weight": "45", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ロッキングスタイル", - "alias_name_display": "ロッキングスタイル", - "id": "3205601", - "hash": "49f37294a7107e3ed3ff3ad620ab8f9e", - "profile": { - "height": "159", - "weight": "45", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ロッキングスタイル", - "alias_name_display": "ロッキングスタイル", - "id": "3305602", - "hash": "fd6f806676ee2bd496b0be0c5e660e28", - "profile": { - "height": "159", - "weight": "45", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "新春コレクション", - "alias_name_display": "新春コレクション", - "id": "3208201", - "hash": "9bdac3127034352eeb54915995ed2be4", - "profile": { - "height": "159", - "weight": "45", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "新春コレクション", - "alias_name_display": "新春コレクション", - "id": "3308202", - "hash": "2b66d0a66eaefce284d6ff1724116cda", - "profile": { - "height": "159", - "weight": "45", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ロッキングセッション", - "alias_name_display": "ロッキングセッション", - "id": "3209901", - "hash": "dfb6cfa4b823cae2b1e3347f16dcbafc", - "profile": { - "height": "159", - "weight": "45", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 601, - "event_name": "アイドルセッション" - } - ] - }, - { - "alias_name": "ロッキングセッション", - "alias_name_display": "ロッキングセッション", - "id": "3309902", - "hash": "b72b7f9db952c2c0581b218fa61a73bb", - "profile": { - "height": "159", - "weight": "45", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 601, - "event_name": "アイドルセッション" - } - ] - }, - { - "alias_name": "ヴォヤージュ・シーフ", - "alias_name_display": "ヴォヤージュ・シーフ", - "id": "3216501", - "hash": "33a9936da2d8a89bf45c8c247667da3b", - "profile": { - "height": "159", - "weight": "45", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 511, - "event_name": "幻想公演 黒薔薇姫のヴォヤージュ" - } - ] - }, - { - "alias_name": "ヴォヤージュ・シーフ", - "alias_name_display": "ヴォヤージュ・シーフ", - "id": "3316502", - "hash": "8c3374d0b42f60c4f071ebd612f6c93f", - "profile": { - "height": "159", - "weight": "45", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 511, - "event_name": "幻想公演 黒薔薇姫のヴォヤージュ" - } - ] - }, - { - "alias_name": "ロックウィズユー", - "alias_name_display": "ロックウィズユー", - "id": "3220501", - "hash": "90d71c799279b69652448cb13a8c46c4", - "profile": { - "height": "159", - "weight": "45", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ロックウィズユー", - "alias_name_display": "ロックウィズユー", - "id": "3320502", - "hash": "5036702242079676623aab404c834930", - "profile": { - "height": "159", - "weight": "45", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "クリスマスナイト", - "alias_name_display": "クリスマスナイト", - "id": "3226601", - "hash": "8a7f88c33ed6f745ff82a214a58fbf6c", - "profile": { - "height": "159", - "weight": "45", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "クリスマスナイト", - "alias_name_display": "クリスマスナイト", - "id": "3326602", - "hash": "eb50645fe29a490498a1cc937acd9bdf", - "profile": { - "height": "159", - "weight": "45", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "夏風スポーツ", - "alias_name_display": "夏風スポーツ", - "id": "3230301", - "hash": "c1f7f8f5ef1cba3392af0e747b26fc9d", - "profile": { - "height": "159", - "weight": "45", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "夏風スポーツ", - "alias_name_display": "夏風スポーツ", - "id": "3330302", - "hash": "299fef4852147871cdd00ca8c0124599", - "profile": { - "height": "159", - "weight": "45", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "クリエイティブI.C", - "alias_name_display": "クリエイティブI.C", - "id": "3333402", - "hash": "39ec2283379f1fd2d494ba14b6addbc6", - "profile": { - "height": "159", - "weight": "45", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 1215, - "event_name": "ふたりでアイドルチャレンジ 目指せクールなミュージックビデオ" - } - ] - }, - { - "alias_name": "ハートビートロッカー", - "alias_name_display": "ハートビートロッカー", - "id": "3406101", - "hash": "49bbaee0b5da4e747f6a30f047aa53a3", - "profile": { - "height": "159", - "weight": "45", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 601, - "event_name": "アイドルセッション" - } - ] - }, - { - "alias_name": "ハートビートロッカー", - "alias_name_display": "ハートビートロッカー", - "id": "3506102", - "hash": "a7a8fdea40caf917c330796c9d55da16", - "profile": { - "height": "159", - "weight": "45", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 601, - "event_name": "アイドルセッション" - } - ] - }, - { - "alias_name": "ロッキングラヴァー", - "alias_name_display": "ロッキングラヴァー", - "id": "3408901", - "hash": "b732fa6c81f1f4a53dd0f3eaf9573b0e", - "profile": { - "height": "159", - "weight": "45", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ロッキングラヴァー", - "alias_name_display": "ロッキングラヴァー", - "id": "3508902", - "hash": "fd399f8c029ebfb373556f8a66d4d0a6", - "profile": { - "height": "159", - "weight": "45", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ラギッドチアー", - "alias_name_display": "ラギッドチアー", - "id": "3416501", - "hash": "f66b8072a4bde3415f62c74ec5991d05", - "profile": { - "height": "159", - "weight": "45", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 1104, - "event_name": "プロダクション対抗トークバトルショーinSUMMER" - } - ] - }, - { - "alias_name": "ラギッドチアー", - "alias_name_display": "ラギッドチアー", - "id": "3516502", - "hash": "d53f71d5d96617cb898d079671603d0c", - "profile": { - "height": "159", - "weight": "45", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 1104, - "event_name": "プロダクション対抗トークバトルショーinSUMMER" - } - ] - }, - { - "alias_name": "華夜紅炎", - "alias_name_display": "華夜紅炎", - "id": "3424901", - "hash": "ad4aeac42d563895be2f638167d74b79", - "profile": { - "height": "159", - "weight": "45", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 1702, - "event_name": "アイドルプロデュース京町編(復刻)" - } - ] - }, - { - "alias_name": "華夜紅炎", - "alias_name_display": "華夜紅炎", - "id": "3524902", - "hash": "03b304d0171758d025ed2dd02bd01c28", - "profile": { - "height": "159", - "weight": "45", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 1702, - "event_name": "アイドルプロデュース京町編(復刻)" - } - ] - }, - { - "alias_name": "ロッキングメイド", - "alias_name_display": "ロッキングメイド", - "id": "3429201", - "hash": "27d5c3b652aa05efe6e8c3400a3294ea", - "profile": { - "height": "159", - "weight": "45", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ロッキングメイド", - "alias_name_display": "ロッキングメイド", - "id": "3529202", - "hash": "e6d82a7805702869c9beb24e37d66411", - "profile": { - "height": "159", - "weight": "45", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ベニトアイトロンギング", - "alias_name_display": "ベニトアイトロンギング", - "id": "3439001", - "hash": "cb5056ce89a2e9060f6d411eebdfbe30", - "profile": { - "height": "159", - "weight": "45", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 1215, - "event_name": "ふたりでアイドルチャレンジ 目指せクールなミュージックビデオ" - } - ] - }, - { - "alias_name": "ベニトアイトロンギング", - "alias_name_display": "ベニトアイトロンギング", - "id": "3539002", - "hash": "468cdc31777a7a884927fb3ca0db52f5", - "profile": { - "height": "159", - "weight": "45", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 1215, - "event_name": "ふたりでアイドルチャレンジ 目指せクールなミュージックビデオ" - } - ] - }, - { - "alias_name": "ベニトアイトロンギング・S", - "alias_name_display": "ベニトアイトロンギング・S", - "id": "3439101", - "hash": "59af084173d77dc7657f85e162dbc4b6", - "profile": { - "height": "159", - "weight": "45", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 1215, - "event_name": "ふたりでアイドルチャレンジ 目指せクールなミュージックビデオ" - } - ] - }, - { - "alias_name": "ベニトアイトロンギング・S", - "alias_name_display": "ベニトアイトロンギング・S", - "id": "3539102", - "hash": "f3a9f6ffd1b7e0ed7bad2d27cb3604af", - "profile": { - "height": "159", - "weight": "45", - "bust": "83", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 1215, - "event_name": "ふたりでアイドルチャレンジ 目指せクールなミュージックビデオ" - } - ] - } - ], - "units": [ - { - "id": "81", - "name": "Rock the Beat" - }, - { - "id": "117", - "name": "ハードメテオライツ" - }, - { - "id": "123", - "name": "マッシブライダース" - }, - { - "id": "168", - "name": "*(Asterisk) with なつなな" - }, - { - "id": "175", - "name": "ライトグリーンセーフ" - }, - { - "id": "176", - "name": "炎陣" - } - ] - }, - "139": { - "idol_id": 139, - "idol_name": "松山久美子", - "idol_name_display": "松山久美子", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3000601", - "hash": "7674301daa6c75a7321b726f9571ead2", - "profile": { - "height": "161", - "weight": "44", - "bust": "81", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3100602", - "hash": "f69052165dc006c8bc15558a299ef1b7", - "profile": { - "height": "161", - "weight": "44", - "bust": "81", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ジューンブライド", - "alias_name_display": "ジューンブライド", - "id": "3002701", - "hash": "604b434174cd1f069de9b869d0448554", - "profile": { - "height": "161", - "weight": "44", - "bust": "81", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 105, - "event_name": "きらめくブライダルショー" - } - ] - }, - { - "alias_name": "ジューンブライド", - "alias_name_display": "ジューンブライド", - "id": "3102702", - "hash": "8711647291f4ed0a44bea640aa273a4e", - "profile": { - "height": "161", - "weight": "44", - "bust": "81", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 105, - "event_name": "きらめくブライダルショー" - } - ] - }, - { - "alias_name": "プリムラブルーム", - "alias_name_display": "プリムラブルーム", - "id": "3213201", - "hash": "b5ec0f44a42c1c9f6ced51deeb325d43", - "profile": { - "height": "161", - "weight": "44", - "bust": "81", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 703, - "event_name": "第3回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "プリムラブルーム", - "alias_name_display": "プリムラブルーム", - "id": "3313202", - "hash": "e64ebec9e56c38e90e5d327430fbeced", - "profile": { - "height": "161", - "weight": "44", - "bust": "81", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 703, - "event_name": "第3回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "フレッシュJKT", - "alias_name_display": "フレッシュJKT", - "id": "3217001", - "hash": "1f906f0ee9f495fda81757e9ebabbc6b", - "profile": { - "height": "161", - "weight": "44", - "bust": "81", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "フレッシュJKT", - "alias_name_display": "フレッシュJKT", - "id": "3317002", - "hash": "dc863484f599dc76a895efecf840298f", - "profile": { - "height": "161", - "weight": "44", - "bust": "81", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "バレンタインデビル", - "alias_name_display": "バレンタインデビル", - "id": "3221501", - "hash": "dc08ed4d9a27c637264bf09fbafb4325", - "profile": { - "height": "161", - "weight": "44", - "bust": "81", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "バレンタインデビル", - "alias_name_display": "バレンタインデビル", - "id": "3321502", - "hash": "1cf3856ba48a3db590710a6fe6906ccb", - "profile": { - "height": "161", - "weight": "44", - "bust": "81", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "やわらかな音", - "alias_name_display": "やわらかな音", - "id": "3226001", - "hash": "b766fb82f395cb35df7d159a0888dc78", - "profile": { - "height": "161", - "weight": "44", - "bust": "81", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "やわらかな音", - "alias_name_display": "やわらかな音", - "id": "3326002", - "hash": "56359b75053466aeeeb9e8f91719ef5a", - "profile": { - "height": "161", - "weight": "44", - "bust": "81", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "美しき挑戦", - "alias_name_display": "美しき挑戦", - "id": "3331802", - "hash": "c023aaab4cb1a06929ef073eef6321b9", - "profile": { - "height": "161", - "weight": "44", - "bust": "81", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 1905, - "event_name": "ディアリースターナイト ~聖夜のキセキ~" - } - ] - }, - { - "alias_name": "南国の舞姫", - "alias_name_display": "南国の舞姫", - "id": "3406201", - "hash": "fde6b9e07ded5dfe6b368d37d4e5df8b", - "profile": { - "height": "161", - "weight": "44", - "bust": "81", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "南国の舞姫", - "alias_name_display": "南国の舞姫", - "id": "3506202", - "hash": "61987ec6972c1ac539f65eb25e89e97a", - "profile": { - "height": "161", - "weight": "44", - "bust": "81", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "アレグロ気分", - "alias_name_display": "アレグロ気分", - "id": "3416901", - "hash": "565af6911e5cf6ba5de1e56023e00349", - "profile": { - "height": "161", - "weight": "44", - "bust": "81", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 708, - "event_name": "第8回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "アレグロ気分", - "alias_name_display": "アレグロ気分", - "id": "3516902", - "hash": "1a5d7692d328fa114b177ebe5c427d0b", - "profile": { - "height": "161", - "weight": "44", - "bust": "81", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 708, - "event_name": "第8回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "フライハイ!", - "alias_name_display": "フライハイ!", - "id": "3432501", - "hash": "624fd0a55c5e957c9634dd6e2188f7ce", - "profile": { - "height": "161", - "weight": "44", - "bust": "81", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 1803, - "event_name": "アイドルバラエティ 大空への挑戦 ~Fly me to the Sky~" - } - ] - }, - { - "alias_name": "フライハイ!", - "alias_name_display": "フライハイ!", - "id": "3532502", - "hash": "3fc83fbe66b63aaff06e8c8d1bf27da5", - "profile": { - "height": "161", - "weight": "44", - "bust": "81", - "waist": "56", - "hip": "81" - }, - "event": [ - { - "event_id": 1803, - "event_name": "アイドルバラエティ 大空への挑戦 ~Fly me to the Sky~" - } - ] - }, - { - "alias_name": "心吹き抜ける風", - "alias_name_display": "心吹き抜ける風", - "id": "3440501", - "hash": "478e26b19bf1a88474dc0ffb92717954", - "profile": { - "height": "161", - "weight": "44", - "bust": "81", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "心吹き抜ける風", - "alias_name_display": "心吹き抜ける風", - "id": "3540502", - "hash": "e23409154c61e745d3e92fe075d8d7e8", - "profile": { - "height": "161", - "weight": "44", - "bust": "81", - "waist": "56", - "hip": "81" - }, - "event": [] - } - ], - "units": [ - { - "id": "118", - "name": "ビューティーアリュール" - }, - { - "id": "146", - "name": "サンセットノスタルジー" - } - ] - }, - "140": { - "idol_id": 140, - "idol_name": "斉藤洋子", - "idol_name_display": "斉藤洋子", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3000701", - "hash": "a264ec914168a4e0fa2be2774b4213f5", - "profile": { - "height": "157", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3100702", - "hash": "e24e9a4d94ecff4e3b24d87642d54ca4", - "profile": { - "height": "157", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "テーマパーク", - "alias_name_display": "テーマパーク", - "id": "3204401", - "hash": "bbb2c000d43ea2a15adbed784595add3", - "profile": { - "height": "157", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "82" - }, - "event": [ - { - "event_id": 203, - "event_name": "アイドルサバイバルinテーマパーク" - } - ] - }, - { - "alias_name": "テーマパーク", - "alias_name_display": "テーマパーク", - "id": "3304402", - "hash": "e02a44f2de1e821a4dfff0b3d3db681f", - "profile": { - "height": "157", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "82" - }, - "event": [ - { - "event_id": 203, - "event_name": "アイドルサバイバルinテーマパーク" - } - ] - }, - { - "alias_name": "湯けむり月夜", - "alias_name_display": "湯けむり月夜", - "id": "3213701", - "hash": "d96ef4cbddf04a780a4af8082a4081e2", - "profile": { - "height": "157", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "湯けむり月夜", - "alias_name_display": "湯けむり月夜", - "id": "3313702", - "hash": "d3b714b42d67360598b8c8c9a28d3ef1", - "profile": { - "height": "157", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "アクティブチアー", - "alias_name_display": "アクティブチアー", - "id": "3215701", - "hash": "aa81549cf0a3cee335c64d20e9386635", - "profile": { - "height": "157", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "82" - }, - "event": [ - { - "event_id": "015", - "event_name": "第15回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "アクティブチアー", - "alias_name_display": "アクティブチアー", - "id": "3315702", - "hash": "60d7e7fa4af2462132d22b339b0df55e", - "profile": { - "height": "157", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "82" - }, - "event": [ - { - "event_id": "015", - "event_name": "第15回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "ナイトパーティー", - "alias_name_display": "ナイトパーティー", - "id": "3221901", - "hash": "40ac7b999dd928719947512fff5f57fd", - "profile": { - "height": "157", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ナイトパーティー", - "alias_name_display": "ナイトパーティー", - "id": "3321902", - "hash": "a5f88f3476beafef8c1fbd491bdf167b", - "profile": { - "height": "157", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ウェルネスデイズ", - "alias_name_display": "ウェルネスデイズ", - "id": "3229301", - "hash": "9086b74e92fcb074c154a8aa5ad516d2", - "profile": { - "height": "157", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ウェルネスデイズ", - "alias_name_display": "ウェルネスデイズ", - "id": "3329302", - "hash": "645befcc6e4768dd22934277bd7e98cf", - "profile": { - "height": "157", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "フェリーチェ・チョコラータ", - "alias_name_display": "フェリーチェ・チョコラータ", - "id": "3232601", - "hash": "8010afc200495c069ca1c340ec365798", - "profile": { - "height": "157", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "フェリーチェ・チョコラータ", - "alias_name_display": "フェリーチェ・チョコラータ", - "id": "3332602", - "hash": "ca815683f4f6629bb6bf302a75e56d55", - "profile": { - "height": "157", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "アクティブビューティー", - "alias_name_display": "アクティブビューティー", - "id": "3406301", - "hash": "6493f1eb3bfcb583cff1e74961039d42", - "profile": { - "height": "157", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "アクティブビューティー", - "alias_name_display": "アクティブビューティー", - "id": "3506302", - "hash": "f8ba08532e70a89d22a0b58a01cedd4a", - "profile": { - "height": "157", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ロワイヤルサマー", - "alias_name_display": "ロワイヤルサマー", - "id": "3416801", - "hash": "d86f212dc2bd0b2aff150597954ae65c", - "profile": { - "height": "157", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "82" - }, - "event": [ - { - "event_id": 806, - "event_name": "アイドルLIVEロワイヤルinSUMMER" - } - ] - }, - { - "alias_name": "ロワイヤルサマー", - "alias_name_display": "ロワイヤルサマー", - "id": "3516802", - "hash": "6d7bec74730f62497406933a724deeb7", - "profile": { - "height": "157", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "82" - }, - "event": [ - { - "event_id": 806, - "event_name": "アイドルLIVEロワイヤルinSUMMER" - } - ] - }, - { - "alias_name": "パンプアップ", - "alias_name_display": "パンプアップ", - "id": "3425201", - "hash": "87ddcb0644b65e0e0f77a0b8b40e2e9e", - "profile": { - "height": "157", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "82" - }, - "event": [ - { - "event_id": 1304, - "event_name": "第4回プロダクションマッチフェスティバルS" - } - ] - }, - { - "alias_name": "パンプアップ", - "alias_name_display": "パンプアップ", - "id": "3525202", - "hash": "6404ed97807a171fa347f103f3a1ed80", - "profile": { - "height": "157", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "82" - }, - "event": [ - { - "event_id": 1304, - "event_name": "第4回プロダクションマッチフェスティバルS" - } - ] - }, - { - "alias_name": "アクティブ・ロワイヤル", - "alias_name_display": "アクティブ・ロワイヤル", - "id": "3430401", - "hash": "63e3fed9d083a1311df1964f1095b84c", - "profile": { - "height": "157", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "82" - }, - "event": [ - { - "event_id": 816, - "event_name": "第16回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "アクティブ・ロワイヤル", - "alias_name_display": "アクティブ・ロワイヤル", - "id": "3530402", - "hash": "1013f20a456ce20449239b3e587bb424", - "profile": { - "height": "157", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "82" - }, - "event": [ - { - "event_id": 816, - "event_name": "第16回アイドルLIVEロワイヤル" - } - ] - } - ], - "units": [ - { - "id": "150", - "name": "ヒートアップ☆チアーズ" - }, - { - "id": "175", - "name": "ライトグリーンセーフ" - }, - { - "id": "207", - "name": "ムーランルージュ" - } - ] - }, - "141": { - "idol_id": 141, - "idol_name": "沢田麻理菜", - "idol_name_display": "沢田麻理菜", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3000801", - "hash": "52a617fd8f60c1aec0b3d22d3cb1c944", - "profile": { - "height": "166", - "weight": "47", - "bust": "87", - "waist": "57", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3100802", - "hash": "a68bf3cebca5cf13cc7612b3a352049a", - "profile": { - "height": "166", - "weight": "47", - "bust": "87", - "waist": "57", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "スポーツ祭", - "alias_name_display": "スポーツ祭", - "id": "3204801", - "hash": "9a0f0835a438f5d4013a84b532afe2e2", - "profile": { - "height": "166", - "weight": "47", - "bust": "87", - "waist": "57", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "スポーツ祭", - "alias_name_display": "スポーツ祭", - "id": "3304802", - "hash": "2f9882ba5bf9bf2a98e4c9f6be3bb4d0", - "profile": { - "height": "166", - "weight": "47", - "bust": "87", - "waist": "57", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "素顔のお姉さん", - "alias_name_display": "素顔のお姉さん", - "id": "3214001", - "hash": "0fa2b130740aac2e0c2a03514c384087", - "profile": { - "height": "166", - "weight": "47", - "bust": "87", - "waist": "57", - "hip": "87" - }, - "event": [ - { - "event_id": 704, - "event_name": "第4回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "素顔のお姉さん", - "alias_name_display": "素顔のお姉さん", - "id": "3314002", - "hash": "6bc46ded8c72c0dcf0c755cf1030fd32", - "profile": { - "height": "166", - "weight": "47", - "bust": "87", - "waist": "57", - "hip": "87" - }, - "event": [ - { - "event_id": 704, - "event_name": "第4回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ハッピーウェディング", - "alias_name_display": "ハッピーウェディング", - "id": "3217201", - "hash": "ca24c8bd42c3d13dbfa7557b1c1372eb", - "profile": { - "height": "166", - "weight": "47", - "bust": "87", - "waist": "57", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "ハッピーウェディング", - "alias_name_display": "ハッピーウェディング", - "id": "3317202", - "hash": "f0454c235c5f433fcda6b03cb620ceed", - "profile": { - "height": "166", - "weight": "47", - "bust": "87", - "waist": "57", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "ウォーミーリップル", - "alias_name_display": "ウォーミーリップル", - "id": "3223501", - "hash": "7a53b24d9a77a46b09d23ffea844c323", - "profile": { - "height": "166", - "weight": "47", - "bust": "87", - "waist": "57", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "ウォーミーリップル", - "alias_name_display": "ウォーミーリップル", - "id": "3323502", - "hash": "96d272441983405ba34c23b46e6c2227", - "profile": { - "height": "166", - "weight": "47", - "bust": "87", - "waist": "57", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "ファンサーキット", - "alias_name_display": "ファンサーキット", - "id": "3228801", - "hash": "15ee9f0c9ebcc5d43e060efb4cc379df", - "profile": { - "height": "166", - "weight": "47", - "bust": "87", - "waist": "57", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "ファンサーキット", - "alias_name_display": "ファンサーキット", - "id": "3328802", - "hash": "2c3ff03cbadf8efa3f71ad6b7612ca08", - "profile": { - "height": "166", - "weight": "47", - "bust": "87", - "waist": "57", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "セクシーサーファー", - "alias_name_display": "セクシーサーファー", - "id": "3407001", - "hash": "742203c0a8436f9ff6bdee1a338d0347", - "profile": { - "height": "166", - "weight": "47", - "bust": "87", - "waist": "57", - "hip": "87" - }, - "event": [ - { - "event_id": "010", - "event_name": "第10回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "セクシーサーファー", - "alias_name_display": "セクシーサーファー", - "id": "3507002", - "hash": "f1d924650d28a57e713a8bf1acacaa54", - "profile": { - "height": "166", - "weight": "47", - "bust": "87", - "waist": "57", - "hip": "87" - }, - "event": [ - { - "event_id": "010", - "event_name": "第10回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "グルービー・ロワイヤル", - "alias_name_display": "グルービー・ロワイヤル", - "id": "3419301", - "hash": "c908f6fbdc042fbc50430d13a69a3057", - "profile": { - "height": "166", - "weight": "47", - "bust": "87", - "waist": "57", - "hip": "87" - }, - "event": [ - { - "event_id": 808, - "event_name": "第8回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "グルービー・ロワイヤル", - "alias_name_display": "グルービー・ロワイヤル", - "id": "3519302", - "hash": "7ad648beefa0778eae89938851dc6e61", - "profile": { - "height": "166", - "weight": "47", - "bust": "87", - "waist": "57", - "hip": "87" - }, - "event": [ - { - "event_id": 808, - "event_name": "第8回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "祝餐の淑女", - "alias_name_display": "祝餐の淑女", - "id": "3428901", - "hash": "3c1312246f7720032341d4e19c526125", - "profile": { - "height": "166", - "weight": "47", - "bust": "87", - "waist": "57", - "hip": "87" - }, - "event": [ - { - "event_id": 718, - "event_name": "ドリームLIVEフェスティバル 新春SP" - } - ] - }, - { - "alias_name": "祝餐の淑女", - "alias_name_display": "祝餐の淑女", - "id": "3528902", - "hash": "ae593e0a2d8887e74430c883147e51f5", - "profile": { - "height": "166", - "weight": "47", - "bust": "87", - "waist": "57", - "hip": "87" - }, - "event": [ - { - "event_id": 718, - "event_name": "ドリームLIVEフェスティバル 新春SP" - } - ] - }, - { - "alias_name": "フローズンダンサー", - "alias_name_display": "フローズンダンサー", - "id": "3437801", - "hash": "e27a43d681805008f55469904c953aca", - "profile": { - "height": "166", - "weight": "47", - "bust": "87", - "waist": "57", - "hip": "87" - }, - "event": [ - { - "event_id": 727, - "event_name": "第27回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "フローズンダンサー", - "alias_name_display": "フローズンダンサー", - "id": "3537802", - "hash": "1714cda17ded0f8215ee4c0f217a2c91", - "profile": { - "height": "166", - "weight": "47", - "bust": "87", - "waist": "57", - "hip": "87" - }, - "event": [ - { - "event_id": 727, - "event_name": "第27回ドリームLIVEフェスティバル" - } - ] - } - ], - "units": [ - { - "id": "7", - "name": "エターナルレディエイト" - }, - { - "id": "159", - "name": "パステル・カクテル" - }, - { - "id": "175", - "name": "ライトグリーンセーフ" - }, - { - "id": "181", - "name": "フレッシュアスリーテス" - } - ] - }, - "142": { - "idol_id": 142, - "idol_name": "矢口美羽", - "idol_name_display": "矢口美羽", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3000901", - "hash": "d7eb1b97b7cc5d256ceb95118ffae977", - "profile": { - "height": "150", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3100902", - "hash": "cd29b7fda8167b0f4dbd63f347c1e961", - "profile": { - "height": "150", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "制服コレクション", - "alias_name_display": "制服コレクション", - "id": "3204101", - "hash": "8cf81b294f2bd48461e6630ce3ca6be1", - "profile": { - "height": "150", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "制服コレクション", - "alias_name_display": "制服コレクション", - "id": "3304102", - "hash": "ac83a1675befe192bae8063a8862af2c", - "profile": { - "height": "150", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ハワイアンスタイル", - "alias_name_display": "ハワイアンスタイル", - "id": "3211901", - "hash": "85ef52af1f2d9996d4b0a3f46b3df7fe", - "profile": { - "height": "150", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 506, - "event_name": "アイドルLIVEツアーinハワイ" - } - ] - }, - { - "alias_name": "ハワイアンスタイル", - "alias_name_display": "ハワイアンスタイル", - "id": "3311902", - "hash": "14cc48fd8eb6548c8dcfb39dfc1d7bbc", - "profile": { - "height": "150", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 506, - "event_name": "アイドルLIVEツアーinハワイ" - } - ] - }, - { - "alias_name": "トキメキバレンタイン", - "alias_name_display": "トキメキバレンタイン", - "id": "3215201", - "hash": "532af3fcc507a3fb7951ad57b0761e90", - "profile": { - "height": "150", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "トキメキバレンタイン", - "alias_name_display": "トキメキバレンタイン", - "id": "3315202", - "hash": "104ec8d4883bf49b54e2c41340624341", - "profile": { - "height": "150", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "フラワーガーデン", - "alias_name_display": "フラワーガーデン", - "id": "3216801", - "hash": "2afe4a5af0037435ffd47489846a4701", - "profile": { - "height": "150", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 213, - "event_name": "アイドルサバイバルinフラワーガーデン" - } - ] - }, - { - "alias_name": "フラワーガーデン", - "alias_name_display": "フラワーガーデン", - "id": "3316802", - "hash": "b332fa15c09b8ef0f2946c26b9a128e4", - "profile": { - "height": "150", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 213, - "event_name": "アイドルサバイバルinフラワーガーデン" - } - ] - }, - { - "alias_name": "T.B.チアーズ", - "alias_name_display": "T.B.チアーズ", - "id": "3222101", - "hash": "1c8a014993aeb9b2090aef102b3017da", - "profile": { - "height": "150", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 1109, - "event_name": "第9回プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "T.B.チアーズ", - "alias_name_display": "T.B.チアーズ", - "id": "3322102", - "hash": "3c57816bba9f19f1f2071a0676b369ff", - "profile": { - "height": "150", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 1109, - "event_name": "第9回プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "クリスマスナイト", - "alias_name_display": "クリスマスナイト", - "id": "3226701", - "hash": "2986dbc55d810b89275600447c9369af", - "profile": { - "height": "150", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "クリスマスナイト", - "alias_name_display": "クリスマスナイト", - "id": "3326702", - "hash": "36563d1fcd7ab0070dbd2ca0a269e380", - "profile": { - "height": "150", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "オータムタイム", - "alias_name_display": "オータムタイム", - "id": "3230901", - "hash": "45be8be35629c6e28aabb419da97dd2f", - "profile": { - "height": "150", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 724, - "event_name": "第24回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "オータムタイム", - "alias_name_display": "オータムタイム", - "id": "3330902", - "hash": "57bb56d1f69582541a8010dd167d8889", - "profile": { - "height": "150", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 724, - "event_name": "第24回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ワイルドフレンズ", - "alias_name_display": "ワイルドフレンズ", - "id": "3233701", - "hash": "f04dac9c82d71a897241138a4f42caec", - "profile": { - "height": "150", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ワイルドフレンズ", - "alias_name_display": "ワイルドフレンズ", - "id": "3333702", - "hash": "4d8997fc3f94ac70311fa9f92408655a", - "profile": { - "height": "150", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "悩めるお年頃", - "alias_name_display": "悩めるお年頃", - "id": "3403601", - "hash": "f8c0017a5ca2ef4fc7cd0d07151994ac", - "profile": { - "height": "150", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 207, - "event_name": "アイドルサバイバル ハロウィン編" - } - ] - }, - { - "alias_name": "悩めるお年頃", - "alias_name_display": "悩めるお年頃", - "id": "3503602", - "hash": "d24774d9639553e63860f5b854d944a4", - "profile": { - "height": "150", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 207, - "event_name": "アイドルサバイバル ハロウィン編" - } - ] - }, - { - "alias_name": "楽しい夏休み", - "alias_name_display": "楽しい夏休み", - "id": "3415901", - "hash": "b72ccff36b410011b79a299f01d25674", - "profile": { - "height": "150", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 413, - "event_name": "みんなのなつやすみ" - } - ] - }, - { - "alias_name": "楽しい夏休み", - "alias_name_display": "楽しい夏休み", - "id": "3515902", - "hash": "3e8e8f242d248978458d505a2edad10a", - "profile": { - "height": "150", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 413, - "event_name": "みんなのなつやすみ" - } - ] - }, - { - "alias_name": "賑やか夏休み", - "alias_name_display": "賑やか夏休み", - "id": "3416001", - "hash": "4b273e3aaed3bafe748f94c4a850f230", - "profile": { - "height": "150", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 413, - "event_name": "みんなのなつやすみ" - } - ] - }, - { - "alias_name": "賑やか夏休み", - "alias_name_display": "賑やか夏休み", - "id": "3516002", - "hash": "5b073af22fb3cd6adcc1e9e319fa67f6", - "profile": { - "height": "150", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 413, - "event_name": "みんなのなつやすみ" - } - ] - }, - { - "alias_name": "天魔降臨", - "alias_name_display": "天魔降臨", - "id": "3418701", - "hash": "68b35585d39dafaba5d9cf38c0b9f083", - "profile": { - "height": "150", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 515, - "event_name": "戦国公演 天魔の乱" - } - ] - }, - { - "alias_name": "天魔降臨", - "alias_name_display": "天魔降臨", - "id": "3518702", - "hash": "d2170d41b184072934a9fff773547cd0", - "profile": { - "height": "150", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 515, - "event_name": "戦国公演 天魔の乱" - } - ] - }, - { - "alias_name": "ふわふわファクトリー", - "alias_name_display": "ふわふわファクトリー", - "id": "3431401", - "hash": "ea0d9e48afcf9f896c208b1540efd59f", - "profile": { - "height": "150", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ふわふわファクトリー", - "alias_name_display": "ふわふわファクトリー", - "id": "3531402", - "hash": "c0bb1ce2f048f36f6397fc8dd094cc23", - "profile": { - "height": "150", - "weight": "41", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [] - } - ], - "units": [ - { - "id": "26", - "name": "スクールガールフレンズ" - }, - { - "id": "44", - "name": "ハワイアンツイン" - }, - { - "id": "146", - "name": "サンセットノスタルジー" - }, - { - "id": "151", - "name": "ブエナ・スエルテ" - } - ] - }, - "143": { - "idol_id": 143, - "idol_name": "赤城みりあ", - "idol_name_display": "赤城みりあ", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3001001", - "hash": "6ef2cd5ef498c7caaea87f7d89340110", - "profile": { - "height": "140", - "weight": "36", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3101002", - "hash": "e0b836342a1aee295a7ccbab0a16fd87", - "profile": { - "height": "140", - "weight": "36", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "バレンタイン", - "alias_name_display": "バレンタイン", - "id": "3203201", - "hash": "10da168b4b369bc6ffa72e78e93071be", - "profile": { - "height": "140", - "weight": "36", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 103, - "event_name": "バレンタインパーティー" - } - ] - }, - { - "alias_name": "バレンタイン", - "alias_name_display": "バレンタイン", - "id": "3303202", - "hash": "9b08de504854ac1df4fd5dc76a9a5ac1", - "profile": { - "height": "140", - "weight": "36", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 103, - "event_name": "バレンタインパーティー" - } - ] - }, - { - "alias_name": "ポッピンポップ", - "alias_name_display": "ポッピンポップ", - "id": "3220801", - "hash": "92a5705c0b6de55d2f168f9bd29a3edb", - "profile": { - "height": "140", - "weight": "36", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "ポッピンポップ", - "alias_name_display": "ポッピンポップ", - "id": "3320802", - "hash": "8a7f7bead0878b56904f736f4421253d", - "profile": { - "height": "140", - "weight": "36", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "マーチングバンド", - "alias_name_display": "マーチングバンド", - "id": "3231101", - "hash": "89e9e5b0a1b6e15b0fff88744901f461", - "profile": { - "height": "140", - "weight": "36", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "マーチングバンド", - "alias_name_display": "マーチングバンド", - "id": "3331102", - "hash": "0f1b57bb36e56e4ecfb13b3e1954b368", - "profile": { - "height": "140", - "weight": "36", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "サーカスパフォーマー", - "alias_name_display": "サーカスパフォーマー", - "id": "3333102", - "hash": "b579c840179644a36de6fa1c133671cf", - "profile": { - "height": "140", - "weight": "36", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 1709, - "event_name": "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" - } - ] - }, - { - "alias_name": "スマイリーパフォーマー", - "alias_name_display": "スマイリーパフォーマー", - "id": "3333202", - "hash": "8109a4ac1c65efa9906f314f523b9916", - "profile": { - "height": "140", - "weight": "36", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 1709, - "event_name": "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" - } - ] - }, - { - "alias_name": "しっぽもふもふ", - "alias_name_display": "しっぽもふもふ", - "id": "3402001", - "hash": "c674c58bab136ff597a815671bb1892b", - "profile": { - "height": "140", - "weight": "36", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 204, - "event_name": "アイドルサバイバルin動物園" - } - ] - }, - { - "alias_name": "しっぽもふもふ", - "alias_name_display": "しっぽもふもふ", - "id": "3502002", - "hash": "cfb03542cf02bdeb2401a33d0d86daeb", - "profile": { - "height": "140", - "weight": "36", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 204, - "event_name": "アイドルサバイバルin動物園" - } - ] - }, - { - "alias_name": "ニュースマイル", - "alias_name_display": "ニュースマイル", - "id": "3404301", - "hash": "b6c652c77203c6836a0489af5a37662c", - "profile": { - "height": "140", - "weight": "36", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 404, - "event_name": "新春アイドルプロデュース" - } - ] - }, - { - "alias_name": "ニュースマイル", - "alias_name_display": "ニュースマイル", - "id": "3504302", - "hash": "d44aa4f47e363eea2e35a73f54fc6379", - "profile": { - "height": "140", - "weight": "36", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 404, - "event_name": "新春アイドルプロデュース" - } - ] - }, - { - "alias_name": "ちびっこアクマ", - "alias_name_display": "ちびっこアクマ", - "id": "3406501", - "hash": "0793eaf891f21d96424137f2fb375650", - "profile": { - "height": "140", - "weight": "36", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "ちびっこアクマ", - "alias_name_display": "ちびっこアクマ", - "id": "3506502", - "hash": "ef781662f1714c3f272954635d794a5f", - "profile": { - "height": "140", - "weight": "36", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "3406801", - "hash": "b1189784b88e5fd4438eebc83b08daad", - "profile": { - "height": "140", - "weight": "36", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "3506802", - "hash": "b408f15906c6b54d17985d285f98dee7", - "profile": { - "height": "140", - "weight": "36", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "シンデレラドリーム", - "alias_name_display": "シンデレラドリーム", - "id": "3408701", - "hash": "52ac8b4cab7ec3e61bd7468381f76495", - "profile": { - "height": "140", - "weight": "36", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "シンデレラドリーム", - "alias_name_display": "シンデレラドリーム", - "id": "3508702", - "hash": "ec0b6fa7958a83eb2e758c36dd8fc26b", - "profile": { - "height": "140", - "weight": "36", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "ニュースマイル・S", - "alias_name_display": "ニュースマイル・S", - "id": "3410301", - "hash": "4292b737c6a1afdcb237a28c36cc2e9c", - "profile": { - "height": "140", - "weight": "36", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "ニュースマイル・S", - "alias_name_display": "ニュースマイル・S", - "id": "3510302", - "hash": "6ac6ac48ba9f668c30c8e267633b4860", - "profile": { - "height": "140", - "weight": "36", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "キラキラ☆ジャンプ", - "alias_name_display": "キラキラ☆ジャンプ", - "id": "3414201", - "hash": "f9823071fb73c76c8e0ad947e4374c76", - "profile": { - "height": "140", - "weight": "36", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "キラキラ☆ジャンプ", - "alias_name_display": "キラキラ☆ジャンプ", - "id": "3514202", - "hash": "35951a39f9d4e99402bbb2d9c5f5335d", - "profile": { - "height": "140", - "weight": "36", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "ないしょのステップ", - "alias_name_display": "ないしょのステップ", - "id": "3423801", - "hash": "4868d8e9411de3f444c270c04bcaec1a", - "profile": { - "height": "140", - "weight": "36", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "ないしょのステップ", - "alias_name_display": "ないしょのステップ", - "id": "3523802", - "hash": "2186837114eebf98ae667f26f0e5a79c", - "profile": { - "height": "140", - "weight": "36", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "凸レーション", - "alias_name_display": "凸レーション", - "id": "3525002", - "hash": "03160f702f45fbdd3c17d910d80306d6", - "profile": { - "height": "140", - "weight": "36", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "ちびっこナース", - "alias_name_display": "ちびっこナース", - "id": "3427901", - "hash": "98c52238c3f897072403599574115094", - "profile": { - "height": "140", - "weight": "36", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "ちびっこナース", - "alias_name_display": "ちびっこナース", - "id": "3527902", - "hash": "68acef995b160d04df9bb1173d1e25e7", - "profile": { - "height": "140", - "weight": "36", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "お花のプリンセス", - "alias_name_display": "お花のプリンセス", - "id": "3432101", - "hash": "3e573ed0cc4873adfe4b882e4330bd7f", - "profile": { - "height": "140", - "weight": "36", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": "027", - "event_name": "第27回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "お花のプリンセス", - "alias_name_display": "お花のプリンセス", - "id": "3532102", - "hash": "daeb66a45687cdd22c51c70df1daa6c3", - "profile": { - "height": "140", - "weight": "36", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": "027", - "event_name": "第27回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "おてんばピエレッタ", - "alias_name_display": "おてんばピエレッタ", - "id": "3438401", - "hash": "98925b626042078c4a1ecc8aad8cc7c0", - "profile": { - "height": "140", - "weight": "36", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 1709, - "event_name": "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" - } - ] - }, - { - "alias_name": "おてんばピエレッタ", - "alias_name_display": "おてんばピエレッタ", - "id": "3538402", - "hash": "f2713603ccfb1afc09437a853b864ccd", - "profile": { - "height": "140", - "weight": "36", - "bust": "75", - "waist": "55", - "hip": "78" - }, - "event": [ - { - "event_id": 1709, - "event_name": "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" - } - ] - } - ], - "units": [ - { - "id": "77", - "name": "Jumpin'Joker" - }, - { - "id": "149", - "name": "凸レーション" - }, - { - "id": "204", - "name": "トロピカル☆スターズ" - }, - { - "id": "213", - "name": "CINDERELLA PROJECT" - }, - { - "id": "214", - "name": "L.M.B.G" - } - ] - }, - "144": { - "idol_id": 144, - "idol_name": "愛野渚", - "idol_name_display": "愛野渚", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3001101", - "hash": "63fd3fcbc361ec10820d32bf513be16e", - "profile": { - "height": "163", - "weight": "47", - "bust": "84", - "waist": "58", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3101102", - "hash": "3353660bfbeee7d2f221c98611512242", - "profile": { - "height": "163", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "明朗☆快活", - "alias_name_display": "明朗☆快活", - "id": "3208901", - "hash": "8f2beaf70b437880a985f8b8f79114a0", - "profile": { - "height": "163", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": "008", - "event_name": "第8回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "明朗☆快活", - "alias_name_display": "明朗☆快活", - "id": "3308902", - "hash": "d3d9f4a27caef8301249c341b4e19998", - "profile": { - "height": "163", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": "008", - "event_name": "第8回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "スポーティスタイル", - "alias_name_display": "スポーティスタイル", - "id": "3213401", - "hash": "dfbdd61be4ccdc68e525717d0bac2587", - "profile": { - "height": "163", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 212, - "event_name": "アイドルサバイバル 秋の大運動会" - } - ] - }, - { - "alias_name": "スポーティスタイル", - "alias_name_display": "スポーティスタイル", - "id": "3313402", - "hash": "ceef2d2586809b80112bc40b23069aca", - "profile": { - "height": "163", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 212, - "event_name": "アイドルサバイバル 秋の大運動会" - } - ] - }, - { - "alias_name": "豪放の鬼人", - "alias_name_display": "豪放の鬼人", - "id": "3220201", - "hash": "a598244c502625e88e206b64f2a6f248", - "profile": { - "height": "163", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 515, - "event_name": "戦国公演 天魔の乱" - } - ] - }, - { - "alias_name": "豪放の鬼人", - "alias_name_display": "豪放の鬼人", - "id": "3320202", - "hash": "8bbfb3b8fbec2518b6fb12050c9933f9", - "profile": { - "height": "163", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 515, - "event_name": "戦国公演 天魔の乱" - } - ] - }, - { - "alias_name": "エナジーフィール", - "alias_name_display": "エナジーフィール", - "id": "3222401", - "hash": "46dfaa3309c9fc33443b0cc627912f13", - "profile": { - "height": "163", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "エナジーフィール", - "alias_name_display": "エナジーフィール", - "id": "3322402", - "hash": "2b0e2716c03031eaaeb29a09d61e75aa", - "profile": { - "height": "163", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "迎春神楽", - "alias_name_display": "迎春神楽", - "id": "3232201", - "hash": "4e760adc4e6919f6f358270b34455820", - "profile": { - "height": "163", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "迎春神楽", - "alias_name_display": "迎春神楽", - "id": "3332202", - "hash": "001d10686845cdce26772524579a982d", - "profile": { - "height": "163", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "センター・キャプテン", - "alias_name_display": "センター・キャプテン", - "id": "3413401", - "hash": "868c92e18aa41e24a61546b2100548b5", - "profile": { - "height": "163", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "センター・キャプテン", - "alias_name_display": "センター・キャプテン", - "id": "3513402", - "hash": "701f66d34f5d7d58aa7d977ca3450565", - "profile": { - "height": "163", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "シューティングチアー", - "alias_name_display": "シューティングチアー", - "id": "3425601", - "hash": "13c7561bc0a40734ac98f74b94414a5c", - "profile": { - "height": "163", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 1503, - "event_name": "チーム対抗 夏だ!プールだ!トークバトルショー" - } - ] - }, - { - "alias_name": "シューティングチアー", - "alias_name_display": "シューティングチアー", - "id": "3525602", - "hash": "82117663678e1ecd83cac4b74970f7e3", - "profile": { - "height": "163", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 1503, - "event_name": "チーム対抗 夏だ!プールだ!トークバトルショー" - } - ] - }, - { - "alias_name": "ドリームアドベント", - "alias_name_display": "ドリームアドベント", - "id": "3432301", - "hash": "0b015e960d21bb82468304a236db2719", - "profile": { - "height": "163", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 721, - "event_name": "第21回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ドリームアドベント", - "alias_name_display": "ドリームアドベント", - "id": "3532302", - "hash": "b3c0ab815b7dae87ea9a636433655d89", - "profile": { - "height": "163", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 721, - "event_name": "第21回ドリームLIVEフェスティバル" - } - ] - } - ], - "units": [ - { - "id": "122", - "name": "ホットアートジャンピン" - }, - { - "id": "174", - "name": "カナリアサマー" - } - ] - }, - "145": { - "idol_id": 145, - "idol_name": "真鍋いつき", - "idol_name_display": "真鍋いつき", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3001201", - "hash": "b209c422b7346f1d4d69feda95318a5f", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3101202", - "hash": "9e3bbf542345ebed15fb2032e1c837d7", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "レッスン&チャレンジ", - "alias_name_display": "レッスン&チャレンジ", - "id": "3207501", - "hash": "66a6a21d46da643503586a7a22df87dd", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "レッスン&チャレンジ", - "alias_name_display": "レッスン&チャレンジ", - "id": "3307502", - "hash": "de348637cc18a3f5e4c81fa791580495", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "カジュアルスタイル", - "alias_name_display": "カジュアルスタイル", - "id": "3213801", - "hash": "2432eb32593381cfec0f4f599fec4f36", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "カジュアルスタイル", - "alias_name_display": "カジュアルスタイル", - "id": "3313802", - "hash": "c002a51fc066d05b168e709c067abd3b", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "カジュアルチアー", - "alias_name_display": "カジュアルチアー", - "id": "3216701", - "hash": "2b41c4a4cb28d37563feb07668337853", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": "016", - "event_name": "第16回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "カジュアルチアー", - "alias_name_display": "カジュアルチアー", - "id": "3316702", - "hash": "ce408b02973567997eb52f3e61c8bfec", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": "016", - "event_name": "第16回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "ガーリースタイル", - "alias_name_display": "ガーリースタイル", - "id": "3222001", - "hash": "0b1e16ffc8a773f87a5ad8cc7f8bf0f8", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "ガーリースタイル", - "alias_name_display": "ガーリースタイル", - "id": "3322002", - "hash": "a5f4297b7066dfc5f18b8542bc15c08a", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "シェイプアップ", - "alias_name_display": "シェイプアップ", - "id": "3224801", - "hash": "6b37e98cb7731439ed6f3cae9fee2306", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "シェイプアップ", - "alias_name_display": "シェイプアップ", - "id": "3324802", - "hash": "b3d0922a9fd538b1d6503904d0defc49", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "節分豆撒", - "alias_name_display": "節分豆撒", - "id": "3227401", - "hash": "ff9f17efbe7d2c3470f6a0c7c8e7f54b", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 719, - "event_name": "ドリームLIVEフェスティバル 節分SP" - } - ] - }, - { - "alias_name": "節分豆撒", - "alias_name_display": "節分豆撒", - "id": "3327402", - "hash": "3ccaaf0d3541e34f974b94e453c6a19f", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 719, - "event_name": "ドリームLIVEフェスティバル 節分SP" - } - ] - }, - { - "alias_name": "サーカスパフォーマー", - "alias_name_display": "サーカスパフォーマー", - "id": "3232801", - "hash": "77dbd0fac660c71139ab3a8a1e93cfae", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 1709, - "event_name": "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" - } - ] - }, - { - "alias_name": "サーカスパフォーマー", - "alias_name_display": "サーカスパフォーマー", - "id": "3332802", - "hash": "6327296e1442dcf684f2454f116b4d0f", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 1709, - "event_name": "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" - } - ] - }, - { - "alias_name": "スマイリーパフォーマー", - "alias_name_display": "スマイリーパフォーマー", - "id": "3232901", - "hash": "47e364881876ef5d26ff179d2e0a1ae2", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 1709, - "event_name": "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" - } - ] - }, - { - "alias_name": "スマイリーパフォーマー", - "alias_name_display": "スマイリーパフォーマー", - "id": "3332902", - "hash": "ff4d10646fd683720b03ba75ee2ac087", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 1709, - "event_name": "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" - } - ] - }, - { - "alias_name": "ハッピープレジャー", - "alias_name_display": "ハッピープレジャー", - "id": "3406601", - "hash": "7f9a18fa7616eb1439f038c58b02f983", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 210, - "event_name": "アイドルサバイバルinテーマパーク2013" - } - ] - }, - { - "alias_name": "ハッピープレジャー", - "alias_name_display": "ハッピープレジャー", - "id": "3506602", - "hash": "a4f446a8b78c3ea7fdbafe5866892169", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 210, - "event_name": "アイドルサバイバルinテーマパーク2013" - } - ] - }, - { - "alias_name": "拳舞酔客", - "alias_name_display": "拳舞酔客", - "id": "3417401", - "hash": "6af497e47078dc8ea2c6691297cc7300", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 514, - "event_name": "功夫公演 香港大決戦" - } - ] - }, - { - "alias_name": "拳舞酔客", - "alias_name_display": "拳舞酔客", - "id": "3517402", - "hash": "5ed37ce77056ed6867c6d70631496a34", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 514, - "event_name": "功夫公演 香港大決戦" - } - ] - }, - { - "alias_name": "ふるき待ち人", - "alias_name_display": "ふるき待ち人", - "id": "3434401", - "hash": "ce4ea40b0df3c2d7af34153ff9d00a69", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 1903, - "event_name": "怪奇公演 心霊探偵の事件簿" - } - ] - }, - { - "alias_name": "ふるき待ち人", - "alias_name_display": "ふるき待ち人", - "id": "3534402", - "hash": "83aa3c1928c1a0b2055c71ccd32ef090", - "profile": { - "height": "165", - "weight": "46", - "bust": "85", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 1903, - "event_name": "怪奇公演 心霊探偵の事件簿" - } - ] - } - ], - "units": [ - { - "id": "150", - "name": "ヒートアップ☆チアーズ" - }, - { - "id": "175", - "name": "ライトグリーンセーフ" - } - ] - }, - "146": { - "idol_id": 146, - "idol_name": "大槻唯", - "idol_name_display": "大槻唯", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3001301", - "hash": "1515860fd22175a20c99d8007cf8faae", - "profile": { - "height": "155", - "weight": "42", - "bust": "84", - "waist": "56", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3101302", - "hash": "120b0acaa2c1419c3de79c1e6ef6890a", - "profile": { - "height": "155", - "weight": "42", - "bust": "84", - "waist": "56", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "お花見", - "alias_name_display": "お花見", - "id": "3002301", - "hash": "212bb3e0d7f2ba5bcdeced90bf48561b", - "profile": { - "height": "155", - "weight": "42", - "bust": "84", - "waist": "56", - "hip": "83" - }, - "event": [ - { - "event_id": 104, - "event_name": "桜舞う花見祭り" - } - ] - }, - { - "alias_name": "お花見", - "alias_name_display": "お花見", - "id": "3102302", - "hash": "c8e7deaf2263a700b6f7d41902770f41", - "profile": { - "height": "155", - "weight": "42", - "bust": "84", - "waist": "56", - "hip": "83" - }, - "event": [ - { - "event_id": 104, - "event_name": "桜舞う花見祭り" - } - ] - }, - { - "alias_name": "サマーガールオレンジ", - "alias_name_display": "サマーガールオレンジ", - "id": "3205401", - "hash": "9a21c3eaede2b44ea3fbeb6c46f631f5", - "profile": { - "height": "155", - "weight": "42", - "bust": "84", - "waist": "56", - "hip": "83" - }, - "event": [ - { - "event_id": 106, - "event_name": "アイドル水泳大会 水着のシンデレラ" - } - ] - }, - { - "alias_name": "サマーガールグリーン", - "alias_name_display": "サマーガールグリーン", - "id": "3205402", - "hash": "01501d1215a4b5d6a9260a2a13acd4cf", - "profile": { - "height": "155", - "weight": "42", - "bust": "84", - "waist": "56", - "hip": "83" - }, - "event": [ - { - "event_id": 106, - "event_name": "アイドル水泳大会 水着のシンデレラ" - } - ] - }, - { - "alias_name": "サマーガールブルー", - "alias_name_display": "サマーガールブルー", - "id": "3205403", - "hash": "bdfb3cab23611b7efcf2a0d26d6241c0", - "profile": { - "height": "155", - "weight": "42", - "bust": "84", - "waist": "56", - "hip": "83" - }, - "event": [ - { - "event_id": 106, - "event_name": "アイドル水泳大会 水着のシンデレラ" - } - ] - }, - { - "alias_name": "サマーガールイエロー", - "alias_name_display": "サマーガールイエロー", - "id": "3205404", - "hash": "f4f935084bfe52e387f6bd30ce760ad0", - "profile": { - "height": "155", - "weight": "42", - "bust": "84", - "waist": "56", - "hip": "83" - }, - "event": [ - { - "event_id": 106, - "event_name": "アイドル水泳大会 水着のシンデレラ" - } - ] - }, - { - "alias_name": "サマーショッピングイエロー", - "alias_name_display": "サマーショッピングイエロー", - "id": "3305405", - "hash": "653b7a8fbbfbad90d029a8ab600f056b", - "profile": { - "height": "155", - "weight": "42", - "bust": "84", - "waist": "56", - "hip": "83" - }, - "event": [ - { - "event_id": 106, - "event_name": "アイドル水泳大会 水着のシンデレラ" - } - ] - }, - { - "alias_name": "サマーショッピンググリーン", - "alias_name_display": "サマーショッピンググリーン", - "id": "3305406", - "hash": "69c82c51bd137b4225908435cb8455e4", - "profile": { - "height": "155", - "weight": "42", - "bust": "84", - "waist": "56", - "hip": "83" - }, - "event": [ - { - "event_id": 106, - "event_name": "アイドル水泳大会 水着のシンデレラ" - } - ] - }, - { - "alias_name": "サマーショッピングピンク", - "alias_name_display": "サマーショッピングピンク", - "id": "3305407", - "hash": "9929a169843d9f7e7312eca020caf3cc", - "profile": { - "height": "155", - "weight": "42", - "bust": "84", - "waist": "56", - "hip": "83" - }, - "event": [ - { - "event_id": 106, - "event_name": "アイドル水泳大会 水着のシンデレラ" - } - ] - }, - { - "alias_name": "サマーショッピングブラウン", - "alias_name_display": "サマーショッピングブラウン", - "id": "3305408", - "hash": "df467ee38a2c1a4b771029f24a419529", - "profile": { - "height": "155", - "weight": "42", - "bust": "84", - "waist": "56", - "hip": "83" - }, - "event": [ - { - "event_id": 106, - "event_name": "アイドル水泳大会 水着のシンデレラ" - } - ] - }, - { - "alias_name": "サマーショッピングアメリカン", - "alias_name_display": "サマーショッピングアメリカン", - "id": "3305409", - "hash": "5cc4622076643ca2818b7793393fc531", - "profile": { - "height": "155", - "weight": "42", - "bust": "84", - "waist": "56", - "hip": "83" - }, - "event": [ - { - "event_id": 106, - "event_name": "アイドル水泳大会 水着のシンデレラ" - } - ] - }, - { - "alias_name": "レインドロップ", - "alias_name_display": "レインドロップ", - "id": "3210601", - "hash": "0dcfcc73c8e1fe5f8c2afded0838cff5", - "profile": { - "height": "155", - "weight": "41", - "bust": "84", - "waist": "56", - "hip": "83" - }, - "event": [ - { - "event_id": 407, - "event_name": "アイドルプロデュース 鎌倉あじさい巡り" - } - ] - }, - { - "alias_name": "レインドロップ", - "alias_name_display": "レインドロップ", - "id": "3310602", - "hash": "aa671e6aed1e53e554f9b9589de70d48", - "profile": { - "height": "155", - "weight": "41", - "bust": "84", - "waist": "56", - "hip": "83" - }, - "event": [ - { - "event_id": 407, - "event_name": "アイドルプロデュース 鎌倉あじさい巡り" - } - ] - }, - { - "alias_name": "レインドロップスマイル", - "alias_name_display": "レインドロップスマイル", - "id": "3210701", - "hash": "91f1b140eec2747dd2a2cb31c005d37f", - "profile": { - "height": "155", - "weight": "41", - "bust": "84", - "waist": "56", - "hip": "83" - }, - "event": [ - { - "event_id": 407, - "event_name": "アイドルプロデュース 鎌倉あじさい巡り" - } - ] - }, - { - "alias_name": "レインドロップスマイル", - "alias_name_display": "レインドロップスマイル", - "id": "3310702", - "hash": "915507cb01b608f92add67390ad849c3", - "profile": { - "height": "155", - "weight": "41", - "bust": "84", - "waist": "56", - "hip": "83" - }, - "event": [ - { - "event_id": 407, - "event_name": "アイドルプロデュース 鎌倉あじさい巡り" - } - ] - }, - { - "alias_name": "バレンタインデビル", - "alias_name_display": "バレンタインデビル", - "id": "3221401", - "hash": "79b5a5fe045e3d04bd7fe1045a280011", - "profile": { - "height": "155", - "weight": "41", - "bust": "84", - "waist": "56", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "バレンタインデビル", - "alias_name_display": "バレンタインデビル", - "id": "3321402", - "hash": "bda80f1fe71cef7ba31a51521b1ec5dc", - "profile": { - "height": "155", - "weight": "41", - "bust": "84", - "waist": "56", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "セレクテッド", - "alias_name_display": "セレクテッド", - "id": "3228901", - "hash": "589a124c4fa6098a722264d6e676341a", - "profile": { - "height": "155", - "weight": "41", - "bust": "84", - "waist": "56", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "セレクテッド", - "alias_name_display": "セレクテッド", - "id": "3328902", - "hash": "b6d13d92ef2602a297f285d0b08fdead", - "profile": { - "height": "155", - "weight": "41", - "bust": "84", - "waist": "56", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "サマースプラッシュ", - "alias_name_display": "サマースプラッシュ", - "id": "3402101", - "hash": "252492330a944c5dcb457bb2683c07dc", - "profile": { - "height": "155", - "weight": "42", - "bust": "84", - "waist": "56", - "hip": "83" - }, - "event": [ - { - "event_id": 106, - "event_name": "アイドル水泳大会 水着のシンデレラ" - } - ] - }, - { - "alias_name": "サマースプラッシュ", - "alias_name_display": "サマースプラッシュ", - "id": "3502102", - "hash": "161aba59d0e7079677a6344345b890a1", - "profile": { - "height": "155", - "weight": "42", - "bust": "84", - "waist": "56", - "hip": "83" - }, - "event": [ - { - "event_id": 106, - "event_name": "アイドル水泳大会 水着のシンデレラ" - } - ] - }, - { - "alias_name": "湯けむりギャル", - "alias_name_display": "湯けむりギャル", - "id": "3403801", - "hash": "b1d4347b0562c9b9257a1bbfe8007256", - "profile": { - "height": "155", - "weight": "41", - "bust": "84", - "waist": "56", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "湯けむりギャル", - "alias_name_display": "湯けむりギャル", - "id": "3503802", - "hash": "e2e85e351b7f8739d4c1f2f132ef2ef3", - "profile": { - "height": "155", - "weight": "41", - "bust": "84", - "waist": "56", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "クリスマス☆ギャル", - "alias_name_display": "クリスマス☆ギャル", - "id": "3410601", - "hash": "9894ac29d3d2f85e6a8e9a2975710ede", - "profile": { - "height": "155", - "weight": "41", - "bust": "84", - "waist": "56", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "クリスマス☆ギャル", - "alias_name_display": "クリスマス☆ギャル", - "id": "3510602", - "hash": "cc195ea8b89a4c42db5db2054f3e512f", - "profile": { - "height": "155", - "weight": "41", - "bust": "84", - "waist": "56", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "自由の海姫", - "alias_name_display": "自由の海姫", - "id": "3415701", - "hash": "0cb4c2a94c73c4dee9e2911ae33b9349", - "profile": { - "height": "155", - "weight": "41", - "bust": "84", - "waist": "56", - "hip": "83" - }, - "event": [ - { - "event_id": 513, - "event_name": "海賊公演 オーシャンクルーズ" - } - ] - }, - { - "alias_name": "自由の海姫", - "alias_name_display": "自由の海姫", - "id": "3515702", - "hash": "50e4cbc50998270b16051eb4c3eb98aa", - "profile": { - "height": "155", - "weight": "41", - "bust": "84", - "waist": "56", - "hip": "83" - }, - "event": [ - { - "event_id": 513, - "event_name": "海賊公演 オーシャンクルーズ" - } - ] - }, - { - "alias_name": "きまぐれアラカルト", - "alias_name_display": "きまぐれアラカルト", - "id": "3422901", - "hash": "c77f15a9ae5b41cab5c25dd81fc8b439", - "profile": { - "height": "155", - "weight": "41", - "bust": "84", - "waist": "56", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "きまぐれアラカルト", - "alias_name_display": "きまぐれアラカルト", - "id": "3522902", - "hash": "5be7e798333d3df7bae2151d64547659", - "profile": { - "height": "155", - "weight": "41", - "bust": "84", - "waist": "56", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "フリーダムノーツ", - "alias_name_display": "フリーダムノーツ", - "id": "3427101", - "hash": "d98730214d1599bdf4c6da1e9baeb783", - "profile": { - "height": "155", - "weight": "41", - "bust": "84", - "waist": "56", - "hip": "83" - }, - "event": [ - { - "event_id": 1504, - "event_name": "第4回チーム対抗トークバトルショー" - } - ] - }, - { - "alias_name": "フリーダムノーツ", - "alias_name_display": "フリーダムノーツ", - "id": "3527102", - "hash": "7b4aaee0f26206451ecfa1d472badb1a", - "profile": { - "height": "155", - "weight": "41", - "bust": "84", - "waist": "56", - "hip": "83" - }, - "event": [ - { - "event_id": 1504, - "event_name": "第4回チーム対抗トークバトルショー" - } - ] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "3430701", - "hash": "958ee39a6a98210ef9e12bb51af82a99", - "profile": { - "height": "155", - "weight": "42", - "bust": "84", - "waist": "56", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "3530702", - "hash": "6e869ad95d0b0c12b200342730b0c8d2", - "profile": { - "height": "155", - "weight": "42", - "bust": "84", - "waist": "56", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "5thアニバーサリー", - "alias_name_display": "5thアニバーサリー", - "id": "3436701", - "hash": "16bc1b80f078bbbcee22f54b02ffde34", - "profile": { - "height": "155", - "weight": "41", - "bust": "84", - "waist": "56", - "hip": "83" - }, - "event": [ - { - "event_id": 1708, - "event_name": "アイドルプロデュース the 5th Anniversary" - } - ] - }, - { - "alias_name": "5thアニバーサリー", - "alias_name_display": "5thアニバーサリー", - "id": "3536702", - "hash": "d8d934b5f927a10360e68a68f0ebe00b", - "profile": { - "height": "155", - "weight": "41", - "bust": "84", - "waist": "56", - "hip": "83" - }, - "event": [ - { - "event_id": 1708, - "event_name": "アイドルプロデュース the 5th Anniversary" - } - ] - }, - { - "alias_name": "5thアニバーサリー・S", - "alias_name_display": "5thアニバーサリー・S", - "id": "3436801", - "hash": "a8285d3a36a915d9d87530d72a4d7f03", - "profile": { - "height": "155", - "weight": "41", - "bust": "84", - "waist": "56", - "hip": "83" - }, - "event": [ - { - "event_id": 1708, - "event_name": "アイドルプロデュース the 5th Anniversary" - } - ] - }, - { - "alias_name": "5thアニバーサリー・S", - "alias_name_display": "5thアニバーサリー・S", - "id": "3536802", - "hash": "ebd89ca488c46fd5f7ffcae59c61f2e0", - "profile": { - "height": "155", - "weight": "41", - "bust": "84", - "waist": "56", - "hip": "83" - }, - "event": [ - { - "event_id": 1708, - "event_name": "アイドルプロデュース the 5th Anniversary" - } - ] - }, - { - "alias_name": "おねだりサボタージュ", - "alias_name_display": "おねだりサボタージュ", - "id": "3439901", - "hash": "7d61e916c1009fe5c94281bb2804ca3b", - "profile": { - "height": "155", - "weight": "41", - "bust": "84", - "waist": "56", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "おねだりサボタージュ", - "alias_name_display": "おねだりサボタージュ", - "id": "3539902", - "hash": "3989619894f357d64debb55929ca0edc", - "profile": { - "height": "155", - "weight": "41", - "bust": "84", - "waist": "56", - "hip": "83" - }, - "event": [] - } - ], - "units": [ - { - "id": "18", - "name": "サクラブロッサム" - }, - { - "id": "106", - "name": "レインドロップ" - }, - { - "id": "112", - "name": "ギャルズパーティー" - }, - { - "id": "113", - "name": "セクシーギャルズ" - }, - { - "id": "155", - "name": "セレクテッド" - }, - { - "id": "174", - "name": "カナリアサマー" - }, - { - "id": "202", - "name": "サンフラワー" - }, - { - "id": "215", - "name": "Project:Krone" - } - ] - }, - "147": { - "idol_id": 147, - "idol_name": "姫川友紀", - "idol_name_display": "姫川友紀", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3001401", - "hash": "70e2c81b06c8865ca2b615df8ee4ff93", - "profile": { - "height": "161", - "weight": "44", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3101402", - "hash": "d3b1f19515db0f6b68de3891bca053aa", - "profile": { - "height": "161", - "weight": "44", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "お花見", - "alias_name_display": "お花見", - "id": "3203801", - "hash": "e1d1e2125f47a113e3f713279449b89f", - "profile": { - "height": "161", - "weight": "44", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 104, - "event_name": "桜舞う花見祭り" - } - ] - }, - { - "alias_name": "お花見", - "alias_name_display": "お花見", - "id": "3303802", - "hash": "49596a983a3633415ef8bc526bc3bf87", - "profile": { - "height": "161", - "weight": "44", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 104, - "event_name": "桜舞う花見祭り" - } - ] - }, - { - "alias_name": "クッキングチャレンジ", - "alias_name_display": "クッキングチャレンジ", - "id": "3212701", - "hash": "0a909c1a66f53d5148005a8a8d9f8ac2", - "profile": { - "height": "161", - "weight": "44", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 409, - "event_name": "アイドルプロデュース チャレンジクッキング イタリアン編" - } - ] - }, - { - "alias_name": "クッキングチャレンジ", - "alias_name_display": "クッキングチャレンジ", - "id": "3312702", - "hash": "1e7a035696e095ced606582c232843aa", - "profile": { - "height": "161", - "weight": "44", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 409, - "event_name": "アイドルプロデュース チャレンジクッキング イタリアン編" - } - ] - }, - { - "alias_name": "クッキング・スマイル", - "alias_name_display": "クッキング・スマイル", - "id": "3212801", - "hash": "3ff62a9466016547f90ed44c7840c560", - "profile": { - "height": "161", - "weight": "44", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 409, - "event_name": "アイドルプロデュース チャレンジクッキング イタリアン編" - } - ] - }, - { - "alias_name": "クッキング・スマイル", - "alias_name_display": "クッキング・スマイル", - "id": "3312802", - "hash": "2fad2373d17b2e6470454b2469c9161a", - "profile": { - "height": "161", - "weight": "44", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 409, - "event_name": "アイドルプロデュース チャレンジクッキング イタリアン編" - } - ] - }, - { - "alias_name": "サマーシーズン", - "alias_name_display": "サマーシーズン", - "id": "3223701", - "hash": "c629d8330bbadfcaab5de5b4b1613e6b", - "profile": { - "height": "161", - "weight": "44", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "サマーシーズン", - "alias_name_display": "サマーシーズン", - "id": "3323702", - "hash": "9cc97855d3b407da47211b55983dfed2", - "profile": { - "height": "161", - "weight": "44", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "全力インタビュー", - "alias_name_display": "全力インタビュー", - "id": "3230801", - "hash": "ee335947e8e5c66353550496c1ef76a9", - "profile": { - "height": "161", - "weight": "44", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "全力インタビュー", - "alias_name_display": "全力インタビュー", - "id": "3330802", - "hash": "6f1244bd2e41ac322ca9b745556c1dea", - "profile": { - "height": "161", - "weight": "44", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "全力チアガール", - "alias_name_display": "全力チアガール", - "id": "3403301", - "hash": "346a8fe47bf44812289254630a3246d7", - "profile": { - "height": "161", - "weight": "44", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 206, - "event_name": "アイドルサバイバルin学園祭" - } - ] - }, - { - "alias_name": "全力チアガール", - "alias_name_display": "全力チアガール", - "id": "3503302", - "hash": "74de50d140d29d3775b7b4d9b7dab726", - "profile": { - "height": "161", - "weight": "44", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 206, - "event_name": "アイドルサバイバルin学園祭" - } - ] - }, - { - "alias_name": "チアフルエース", - "alias_name_display": "チアフルエース", - "id": "3406901", - "hash": "244571d79f62f7e92f4864005d0c5b7f", - "profile": { - "height": "161", - "weight": "44", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "チアフルエース", - "alias_name_display": "チアフルエース", - "id": "3506902", - "hash": "bec7aaa5a179f7543cd32b81ee1791b1", - "profile": { - "height": "161", - "weight": "44", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ユッキ☆レボリューション", - "alias_name_display": "ユッキ☆レボリューション", - "id": "3412501", - "hash": "b54d7f133cee9d01ae67eff3ba70d9ad", - "profile": { - "height": "161", - "weight": "44", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 804, - "event_name": "第4回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ユッキ☆レボリューション", - "alias_name_display": "ユッキ☆レボリューション", - "id": "3512502", - "hash": "be2d31e96f2501ddf6cca066da9a35f3", - "profile": { - "height": "161", - "weight": "44", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 804, - "event_name": "第4回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ハッピーホームラン", - "alias_name_display": "ハッピーホームラン", - "id": "3414801", - "hash": "36e3f8bdb6303b5bba63e1d38d487c44", - "profile": { - "height": "161", - "weight": "44", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ハッピーホームラン", - "alias_name_display": "ハッピーホームラン", - "id": "3514802", - "hash": "f7f85a3949cd94e6fe04a9b30189eb57", - "profile": { - "height": "161", - "weight": "44", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "3421301", - "hash": "12954acb6219dd4841a6d1f7f57d3f0a", - "profile": { - "height": "161", - "weight": "44", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "3521302", - "hash": "5b885f6976141113bc26b21c5a61ef35", - "profile": { - "height": "161", - "weight": "44", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "1番センター", - "alias_name_display": "1番センター", - "id": "3421701", - "hash": "6f6a927a66ac554f5e790bcfe480f5ca", - "profile": { - "height": "161", - "weight": "44", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "1番センター", - "alias_name_display": "1番センター", - "id": "3521702", - "hash": "9cf7b202de8b66500945e79e2860f412", - "profile": { - "height": "161", - "weight": "44", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "秋色センター", - "alias_name_display": "秋色センター", - "id": "3427001", - "hash": "9ff71f444262cc7258e36d981c1ac617", - "profile": { - "height": "161", - "weight": "44", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "秋色センター", - "alias_name_display": "秋色センター", - "id": "3527002", - "hash": "732db8a3c5364c55fba41ccba39ae41e", - "profile": { - "height": "161", - "weight": "44", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "GO!GO!レッツゴー", - "alias_name_display": "GO!GO!レッツゴー", - "id": "3431601", - "hash": "e4ca80856602723aa2498d0322c09d4a", - "profile": { - "height": "161", - "weight": "44", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "GO!GO!レッツゴー", - "alias_name_display": "GO!GO!レッツゴー", - "id": "3531602", - "hash": "634e9b498ffbbf3083d18df6f99e012f", - "profile": { - "height": "161", - "weight": "44", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "満塁バレンタイン", - "alias_name_display": "満塁バレンタイン", - "id": "3438001", - "hash": "93e98bdad1fea731728b2c13f79782be", - "profile": { - "height": "161", - "weight": "44", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 1906, - "event_name": "ディアリースターハート ~ラブキュンバレンタイン~" - } - ] - }, - { - "alias_name": "満塁バレンタイン", - "alias_name_display": "満塁バレンタイン", - "id": "3538002", - "hash": "85688ae1cb65177f8acc8c407901267b", - "profile": { - "height": "161", - "weight": "44", - "bust": "80", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 1906, - "event_name": "ディアリースターハート ~ラブキュンバレンタイン~" - } - ] - } - ], - "units": [ - { - "id": "54", - "name": "ボール・フレンズ" - }, - { - "id": "87", - "name": "ウィンター・F・ドライバーズ" - }, - { - "id": "96", - "name": "チャレンジクッキング" - }, - { - "id": "131", - "name": "KBYD" - }, - { - "id": "148", - "name": "チアフルボンバーズ" - }, - { - "id": "152", - "name": "B.B.ロワイヤル" - }, - { - "id": "174", - "name": "カナリアサマー" - }, - { - "id": "191", - "name": "Love Yell" - }, - { - "id": "202", - "name": "サンフラワー" - } - ] - }, - "148": { - "idol_id": 148, - "idol_name": "トレーナー", - "idol_name_display": "トレーナー", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3001501", - "hash": "a398078875ab4c504e9a1bf8881f1611", - "profile": { - "height": "160", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 303, - "event_name": "アイドル強化合宿" - } - ] - }, - { - "alias_name": "聖夜", - "alias_name_display": "聖夜", - "id": "3001701", - "hash": "a7673fe01d9509ff3e9aba10cb5b2cb2", - "profile": { - "height": "160", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "新春", - "alias_name_display": "新春", - "id": "3001901", - "hash": "e1bcd7081670a0d4d323c29a7027f790", - "profile": { - "height": "160", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "バレンタイン", - "alias_name_display": "バレンタイン", - "id": "3002201", - "hash": "d33a56bef548f47c75d4b9a857031ceb", - "profile": { - "height": "160", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "サマースタイル", - "alias_name_display": "サマースタイル", - "id": "3002801", - "hash": "b20beba7135aeafec64debff48a007d6", - "profile": { - "height": "160", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "スイミングレッスン", - "alias_name_display": "スイミングレッスン", - "id": "3212201", - "hash": "35298581105317744d50303a73e59816", - "profile": { - "height": "160", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "85" - }, - "event": [] - } - ] - }, - "149": { - "idol_id": 149, - "idol_name": "喜多見柚", - "idol_name_display": "喜多見柚", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3001601", - "hash": "76e94c283b186a3461922f4ec21881ea", - "profile": { - "height": "156", - "weight": "43", - "bust": "82", - "waist": "57", - "hip": "82" - }, - "event": [ - { - "event_id": 101, - "event_name": "星降るクリスマス" - } - ] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3101602", - "hash": "9ddb7f0e4c699e93d3735c56d163bc1b", - "profile": { - "height": "156", - "weight": "43", - "bust": "82", - "waist": "57", - "hip": "82" - }, - "event": [ - { - "event_id": 101, - "event_name": "星降るクリスマス" - } - ] - }, - { - "alias_name": "ハロウィンヴァンパイア", - "alias_name_display": "ハロウィンヴァンパイア", - "id": "3207001", - "hash": "a64fe8b98f2e7b40a6a342368f412450", - "profile": { - "height": "156", - "weight": "43", - "bust": "82", - "waist": "57", - "hip": "82" - }, - "event": [ - { - "event_id": 207, - "event_name": "アイドルサバイバル ハロウィン編" - } - ] - }, - { - "alias_name": "ハロウィンヴァンパイア", - "alias_name_display": "ハロウィンヴァンパイア", - "id": "3307002", - "hash": "100cd905a11b9720c2c2900c2d29cd24", - "profile": { - "height": "156", - "weight": "43", - "bust": "82", - "waist": "57", - "hip": "82" - }, - "event": [ - { - "event_id": 207, - "event_name": "アイドルサバイバル ハロウィン編" - } - ] - }, - { - "alias_name": "制服コレクション", - "alias_name_display": "制服コレクション", - "id": "3209701", - "hash": "9ff651d605c80ce711f075fac892e4ba", - "profile": { - "height": "156", - "weight": "43", - "bust": "82", - "waist": "57", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "制服コレクション", - "alias_name_display": "制服コレクション", - "id": "3309702", - "hash": "ca525a89021186705bef26286ca60aa0", - "profile": { - "height": "156", - "weight": "43", - "bust": "82", - "waist": "57", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "イノセントカジュアル", - "alias_name_display": "イノセントカジュアル", - "id": "3210301", - "hash": "43dc4ab01d267de125f55814e78d562d", - "profile": { - "height": "156", - "weight": "43", - "bust": "82", - "waist": "57", - "hip": "82" - }, - "event": [ - { - "event_id": 210, - "event_name": "アイドルサバイバルinテーマパーク2013" - } - ] - }, - { - "alias_name": "イノセントカジュアル", - "alias_name_display": "イノセントカジュアル", - "id": "3310302", - "hash": "6c5ed46ea8e57d875cee7a9a156f94dd", - "profile": { - "height": "156", - "weight": "43", - "bust": "82", - "waist": "57", - "hip": "82" - }, - "event": [ - { - "event_id": 210, - "event_name": "アイドルサバイバルinテーマパーク2013" - } - ] - }, - { - "alias_name": "フレンズホリデー", - "alias_name_display": "フレンズホリデー", - "id": "3218801", - "hash": "96aaa980d88be40c137aba05e087cf31", - "profile": { - "height": "156", - "weight": "43", - "bust": "82", - "waist": "57", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "フレンズホリデー", - "alias_name_display": "フレンズホリデー", - "id": "3318802", - "hash": "0981d408ac65375660c7f0e6e9c9aacb", - "profile": { - "height": "156", - "weight": "43", - "bust": "82", - "waist": "57", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "お転婆ひな娘", - "alias_name_display": "お転婆ひな娘", - "id": "3401201", - "hash": "f6f5df7f8023462cfbe413c9ffe6b0e6", - "profile": { - "height": "156", - "weight": "43", - "bust": "82", - "waist": "57", - "hip": "82" - }, - "event": [ - { - "event_id": 202, - "event_name": "アイドルサバイバルひな祭り編" - } - ] - }, - { - "alias_name": "お転婆ひな娘", - "alias_name_display": "お転婆ひな娘", - "id": "3501202", - "hash": "fccbc1e099783725061730d71f4f3c7f", - "profile": { - "height": "156", - "weight": "43", - "bust": "82", - "waist": "57", - "hip": "82" - }, - "event": [ - { - "event_id": 202, - "event_name": "アイドルサバイバルひな祭り編" - } - ] - }, - { - "alias_name": "フード☆メイド", - "alias_name_display": "フード☆メイド", - "id": "3408801", - "hash": "6784ca2ff27361baf60e5656d41aa7b3", - "profile": { - "height": "156", - "weight": "43", - "bust": "82", - "waist": "57", - "hip": "82" - }, - "event": [ - { - "event_id": 409, - "event_name": "アイドルプロデュース チャレンジクッキング イタリアン編" - } - ] - }, - { - "alias_name": "フード☆メイド", - "alias_name_display": "フード☆メイド", - "id": "3508802", - "hash": "c2cc3cb89e8a952d912ac52cc4ea29ea", - "profile": { - "height": "156", - "weight": "43", - "bust": "82", - "waist": "57", - "hip": "82" - }, - "event": [ - { - "event_id": 409, - "event_name": "アイドルプロデュース チャレンジクッキング イタリアン編" - } - ] - }, - { - "alias_name": "無防備☆ガール", - "alias_name_display": "無防備☆ガール", - "id": "3411601", - "hash": "0bd28c1f2662bd35b68a149c97b2dc9d", - "profile": { - "height": "156", - "weight": "43", - "bust": "82", - "waist": "57", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "無防備☆ガール", - "alias_name_display": "無防備☆ガール", - "id": "3511602", - "hash": "1c54bb41c531be11a13a01ab43943f85", - "profile": { - "height": "156", - "weight": "43", - "bust": "82", - "waist": "57", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ロワイヤル・スクエア", - "alias_name_display": "ロワイヤル・スクエア", - "id": "3420501", - "hash": "e64f42e43c60813b610e0629287cf330", - "profile": { - "height": "156", - "weight": "43", - "bust": "82", - "waist": "57", - "hip": "82" - }, - "event": [ - { - "event_id": 809, - "event_name": "第9回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ロワイヤル・スクエア", - "alias_name_display": "ロワイヤル・スクエア", - "id": "3520502", - "hash": "688a91e414403d1ce4dca71260eef0e1", - "profile": { - "height": "156", - "weight": "43", - "bust": "82", - "waist": "57", - "hip": "82" - }, - "event": [ - { - "event_id": 809, - "event_name": "第9回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ホップステップサマー", - "alias_name_display": "ホップステップサマー", - "id": "3424701", - "hash": "3d198b386e57e5d7982ef82b7347f39a", - "profile": { - "height": "156", - "weight": "43", - "bust": "82", - "waist": "57", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ホップステップサマー", - "alias_name_display": "ホップステップサマー", - "id": "3524702", - "hash": "266fa426c7b00f75b3148cb82ad3ec05", - "profile": { - "height": "156", - "weight": "43", - "bust": "82", - "waist": "57", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "桃園花娘", - "alias_name_display": "桃園花娘", - "id": "3431001", - "hash": "201c8374336e2c79188ec5840052aecb", - "profile": { - "height": "156", - "weight": "43", - "bust": "82", - "waist": "57", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "桃園花娘", - "alias_name_display": "桃園花娘", - "id": "3531002", - "hash": "4b14cd287e67145814d5ddb0c187ae8a", - "profile": { - "height": "156", - "weight": "43", - "bust": "82", - "waist": "57", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ひらめき☆アンサー", - "alias_name_display": "ひらめき☆アンサー", - "id": "3434901", - "hash": "93008f94a5c66e998d1a0e45e7bab89a", - "profile": { - "height": "156", - "weight": "43", - "bust": "82", - "waist": "57", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ひらめき☆アンサー", - "alias_name_display": "ひらめき☆アンサー", - "id": "3534902", - "hash": "d2f0b1423a844ac537fa255c1e383b22", - "profile": { - "height": "156", - "weight": "43", - "bust": "82", - "waist": "57", - "hip": "82" - }, - "event": [] - } - ], - "units": [ - { - "id": "101", - "name": "ハロウィンヴァンパイア" - }, - { - "id": "163", - "name": "フリルドスクエア" - } - ] - }, - "150": { - "idol_id": 150, - "idol_name": "上田鈴帆", - "idol_name_display": "上田鈴帆", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3001801", - "hash": "d20b8ca340a2b6ee42797c966f3a79b3", - "profile": { - "height": "156", - "weight": "42", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [ - { - "event_id": 102, - "event_name": "アイドルおもちつき大会" - } - ] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3101802", - "hash": "8c704c3ba88575367b7800a88e72eb9a", - "profile": { - "height": "156", - "weight": "42", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [ - { - "event_id": 102, - "event_name": "アイドルおもちつき大会" - } - ] - }, - { - "alias_name": "ひな祭り", - "alias_name_display": "ひな祭り", - "id": "3203601", - "hash": "c21299fa797c699cd1962bfc3803e736", - "profile": { - "height": "156", - "weight": "42", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [ - { - "event_id": 202, - "event_name": "アイドルサバイバルひな祭り編" - } - ] - }, - { - "alias_name": "ひな祭り", - "alias_name_display": "ひな祭り", - "id": "3303602", - "hash": "fc4b2b4edf58524ab549dc95abef1c44", - "profile": { - "height": "156", - "weight": "42", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [ - { - "event_id": 202, - "event_name": "アイドルサバイバルひな祭り編" - } - ] - }, - { - "alias_name": "ハロウィンパーティー", - "alias_name_display": "ハロウィンパーティー", - "id": "3206501", - "hash": "e6e361376fc4005af6546bf627d8cdfe", - "profile": { - "height": "156", - "weight": "42", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "ハロウィンパーティー", - "alias_name_display": "ハロウィンパーティー", - "id": "3306502", - "hash": "6157e73a9eb2323a89bc9948fe7e5aa9", - "profile": { - "height": "156", - "weight": "42", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "テーマパーク", - "alias_name_display": "テーマパーク", - "id": "3210201", - "hash": "99f4555961526cda5c748127bef7870e", - "profile": { - "height": "156", - "weight": "42", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [ - { - "event_id": 210, - "event_name": "アイドルサバイバルinテーマパーク2013" - } - ] - }, - { - "alias_name": "テーマパーク", - "alias_name_display": "テーマパーク", - "id": "3310202", - "hash": "15b1e56e15dc511c428b7ef1b46ea4c9", - "profile": { - "height": "156", - "weight": "42", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [ - { - "event_id": 210, - "event_name": "アイドルサバイバルinテーマパーク2013" - } - ] - }, - { - "alias_name": "ハロウィンナイト", - "alias_name_display": "ハロウィンナイト", - "id": "3213101", - "hash": "c038a0397e933eae426c272eff7f482e", - "profile": { - "height": "156", - "weight": "42", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "ハロウィンナイト", - "alias_name_display": "ハロウィンナイト", - "id": "3313102", - "hash": "258fd3521d2a8454f156a30388a15342", - "profile": { - "height": "156", - "weight": "42", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "食えないスタイル", - "alias_name_display": "食えないスタイル", - "id": "3220701", - "hash": "63b4835e9f506fd149e300b69c640ed1", - "profile": { - "height": "156", - "weight": "42", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [ - { - "event_id": 710, - "event_name": "サンタDEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "食えないスタイル", - "alias_name_display": "食えないスタイル", - "id": "3320702", - "hash": "a8f9ae620ce05852ae3e99e6540dd062", - "profile": { - "height": "156", - "weight": "42", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [ - { - "event_id": 710, - "event_name": "サンタDEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "メデタイガール", - "alias_name_display": "メデタイガール", - "id": "3225201", - "hash": "6d67f83eba3d6fe3c8831b9f6767b518", - "profile": { - "height": "156", - "weight": "42", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "メデタイガール", - "alias_name_display": "メデタイガール", - "id": "3325202", - "hash": "fd402f4d39b07f0d650348588df99235", - "profile": { - "height": "156", - "weight": "42", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "ホーリーコーラス", - "alias_name_display": "ホーリーコーラス", - "id": "3231701", - "hash": "f6a5cf105b88bd60cc66bb32499f6895", - "profile": { - "height": "156", - "weight": "42", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "ホーリーコーラス", - "alias_name_display": "ホーリーコーラス", - "id": "3331702", - "hash": "d0d0373d0b07622c508aa5eeee1cc1f4", - "profile": { - "height": "156", - "weight": "42", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "ジ・アース", - "alias_name_display": "ジ・アース", - "id": "3234401", - "hash": "c8bd49d003289cdd8def158eb3588760", - "profile": { - "height": "156", - "weight": "42", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "ジ・アース", - "alias_name_display": "ジ・アース", - "id": "3334402", - "hash": "6f796b27b0eab4db53272233989c4a30", - "profile": { - "height": "156", - "weight": "42", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "みんなの太陽", - "alias_name_display": "みんなの太陽", - "id": "3415501", - "hash": "2c81a2d0f28abd511851284ad313c915", - "profile": { - "height": "156", - "weight": "42", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "みんなの太陽", - "alias_name_display": "みんなの太陽", - "id": "3515502", - "hash": "4c250678e7988d72cd313a1a87e5c3de", - "profile": { - "height": "156", - "weight": "42", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "ファッション☆モンスター", - "alias_name_display": "ファッション☆モンスター", - "id": "3423601", - "hash": "0eed071ca9aabe1e0dc62630767ae5f8", - "profile": { - "height": "156", - "weight": "42", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [ - { - "event_id": 1402, - "event_name": "第2回ぷちデレラコレクション" - } - ] - }, - { - "alias_name": "ファッション☆モンスター", - "alias_name_display": "ファッション☆モンスター", - "id": "3523602", - "hash": "8ac2145403872fa99ee3b074be4c4dc6", - "profile": { - "height": "156", - "weight": "42", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [ - { - "event_id": 1402, - "event_name": "第2回ぷちデレラコレクション" - } - ] - }, - { - "alias_name": "ファニー・ロワイヤル", - "alias_name_display": "ファニー・ロワイヤル", - "id": "3433101", - "hash": "61fe8ff699e7e51036c0faf6f85f7d57", - "profile": { - "height": "156", - "weight": "42", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [ - { - "event_id": 818, - "event_name": "アイドルLIVEロワイヤル 雨の日SP" - } - ] - }, - { - "alias_name": "ファニー・ロワイヤル", - "alias_name_display": "ファニー・ロワイヤル", - "id": "3533102", - "hash": "ddf643f7944b7f55b9867bb33c17e9c6", - "profile": { - "height": "156", - "weight": "42", - "bust": "76", - "waist": "55", - "hip": "79" - }, - "event": [ - { - "event_id": 818, - "event_name": "アイドルLIVEロワイヤル 雨の日SP" - } - ] - } - ], - "units": [ - { - "id": "6", - "name": "笑美と鈴帆の爆笑エブリデイ" - }, - { - "id": "161", - "name": "ハロウィンナイト" - }, - { - "id": "180", - "name": "ハロウィンパーティー" - }, - { - "id": "190", - "name": "サマプリ" - }, - { - "id": "211", - "name": "ワンダー・フル" - } - ] - }, - "151": { - "idol_id": 151, - "idol_name": "海老原菜帆", - "idol_name_display": "海老原菜帆", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3002001", - "hash": "f11481993da76a38d7f289c35cae41f5", - "profile": { - "height": "162", - "weight": "58", - "bust": "92", - "waist": "65", - "hip": "93" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3102002", - "hash": "6393963b2feeb36881d4263c72bfa0cd", - "profile": { - "height": "162", - "weight": "59", - "bust": "92", - "waist": "67", - "hip": "93" - }, - "event": [] - }, - { - "alias_name": "浴衣祭り", - "alias_name_display": "浴衣祭り", - "id": "3205201", - "hash": "a9b3485ee109892c4a263b990ed57be6", - "profile": { - "height": "162", - "weight": "59", - "bust": "92", - "waist": "67", - "hip": "93" - }, - "event": [] - }, - { - "alias_name": "浴衣祭り", - "alias_name_display": "浴衣祭り", - "id": "3305202", - "hash": "882d09cd56864c6f8e27e24437215b42", - "profile": { - "height": "162", - "weight": "59", - "bust": "92", - "waist": "67", - "hip": "93" - }, - "event": [] - }, - { - "alias_name": "デビリッシュゴシック", - "alias_name_display": "デビリッシュゴシック", - "id": "3210101", - "hash": "99a8eba4e46f0b16a51a372d4a4dc565", - "profile": { - "height": "162", - "weight": "59", - "bust": "92", - "waist": "67", - "hip": "93" - }, - "event": [] - }, - { - "alias_name": "デビリッシュゴシック", - "alias_name_display": "デビリッシュゴシック", - "id": "3310102", - "hash": "721088da0e9e7de67a903eea16dd5b4c", - "profile": { - "height": "162", - "weight": "59", - "bust": "92", - "waist": "67", - "hip": "93" - }, - "event": [] - }, - { - "alias_name": "ぷにぷにサマー", - "alias_name_display": "ぷにぷにサマー", - "id": "3212101", - "hash": "393c6cafd2d14a97c4949f0bf386bb03", - "profile": { - "height": "162", - "weight": "59", - "bust": "92", - "waist": "67", - "hip": "93" - }, - "event": [ - { - "event_id": 506, - "event_name": "アイドルLIVEツアーinハワイ" - } - ] - }, - { - "alias_name": "ぷにぷにサマー", - "alias_name_display": "ぷにぷにサマー", - "id": "3312102", - "hash": "ad08ca71aac4affbd98e2c8613e2ef72", - "profile": { - "height": "162", - "weight": "59", - "bust": "92", - "waist": "67", - "hip": "93" - }, - "event": [ - { - "event_id": 506, - "event_name": "アイドルLIVEツアーinハワイ" - } - ] - }, - { - "alias_name": "あまあまボディ", - "alias_name_display": "あまあまボディ", - "id": "3218001", - "hash": "5feee873f7f71f93bc9c64f7488223ee", - "profile": { - "height": "162", - "weight": "59", - "bust": "92", - "waist": "67", - "hip": "93" - }, - "event": [ - { - "event_id": 1301, - "event_name": "プロダクションマッチフェスティバルS" - } - ] - }, - { - "alias_name": "あまあまボディ", - "alias_name_display": "あまあまボディ", - "id": "3318002", - "hash": "1606de8faf4939054583ca16ef1d834e", - "profile": { - "height": "162", - "weight": "59", - "bust": "92", - "waist": "67", - "hip": "93" - }, - "event": [ - { - "event_id": 1301, - "event_name": "プロダクションマッチフェスティバルS" - } - ] - }, - { - "alias_name": "自慢の一皿", - "alias_name_display": "自慢の一皿", - "id": "3323002", - "hash": "2801a1e061cc7bd20fd826efef86e591", - "profile": { - "height": "162", - "weight": "59", - "bust": "92", - "waist": "67", - "hip": "93" - }, - "event": [ - { - "event_id": 519, - "event_name": "美食公演 女神に捧ぐ御馳走" - } - ] - }, - { - "alias_name": "紅葉温泉", - "alias_name_display": "紅葉温泉", - "id": "3226201", - "hash": "a0d8f9c70a90965f5383f23fc9297e73", - "profile": { - "height": "162", - "weight": "59", - "bust": "92", - "waist": "67", - "hip": "93" - }, - "event": [] - }, - { - "alias_name": "紅葉温泉", - "alias_name_display": "紅葉温泉", - "id": "3326202", - "hash": "edc726ca8c756384a88415b7a3caf667", - "profile": { - "height": "162", - "weight": "59", - "bust": "92", - "waist": "67", - "hip": "93" - }, - "event": [] - }, - { - "alias_name": "ランプの魔神", - "alias_name_display": "ランプの魔神", - "id": "3329702", - "hash": "07db6378f0e35643cac8d82235b68123", - "profile": { - "height": "162", - "weight": "59", - "bust": "92", - "waist": "67", - "hip": "93" - }, - "event": [ - { - "event_id": 1902, - "event_name": "御伽公演 おてんば姫とまぢヤバな魔法のランプ" - } - ] - }, - { - "alias_name": "プニョフワ乙女", - "alias_name_display": "プニョフワ乙女", - "id": "3409901", - "hash": "c86d7c82683d60607bc5d143515334af", - "profile": { - "height": "162", - "weight": "59", - "bust": "92", - "waist": "67", - "hip": "93" - }, - "event": [ - { - "event_id": 704, - "event_name": "第4回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "プニョフワ乙女", - "alias_name_display": "プニョフワ乙女", - "id": "3509902", - "hash": "63bca4c7ba8800505ce5a061d4aee09c", - "profile": { - "height": "162", - "weight": "59", - "bust": "92", - "waist": "67", - "hip": "93" - }, - "event": [ - { - "event_id": 704, - "event_name": "第4回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ぷにむにフィーリング", - "alias_name_display": "ぷにむにフィーリング", - "id": "3418901", - "hash": "322962fdcf32dd19ff02fc6cb50077a8", - "profile": { - "height": "162", - "weight": "59", - "bust": "92", - "waist": "67", - "hip": "93" - }, - "event": [ - { - "event_id": "019", - "event_name": "第19回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "ぷにむにフィーリング", - "alias_name_display": "ぷにむにフィーリング", - "id": "3518902", - "hash": "b469418a2073c780c8641fe2a23c7224", - "profile": { - "height": "162", - "weight": "59", - "bust": "92", - "waist": "67", - "hip": "93" - }, - "event": [ - { - "event_id": "019", - "event_name": "第19回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "ぷにっとチアー", - "alias_name_display": "ぷにっとチアー", - "id": "3430901", - "hash": "4b48f10d4de9328c9c106f9077981894", - "profile": { - "height": "162", - "weight": "59", - "bust": "92", - "waist": "67", - "hip": "93" - }, - "event": [ - { - "event_id": 1506, - "event_name": "第6回チーム対抗トークバトルショー" - } - ] - }, - { - "alias_name": "ぷにっとチアー", - "alias_name_display": "ぷにっとチアー", - "id": "3530902", - "hash": "82e103ab4c545dc25fd404a6ff80ba59", - "profile": { - "height": "162", - "weight": "59", - "bust": "92", - "waist": "67", - "hip": "93" - }, - "event": [ - { - "event_id": 1506, - "event_name": "第6回チーム対抗トークバトルショー" - } - ] - }, - { - "alias_name": "ふわっと艶乙女", - "alias_name_display": "ふわっと艶乙女", - "id": "3437601", - "hash": "6561e1ef73f3ae607ff507d0cb6596c6", - "profile": { - "height": "162", - "weight": "59", - "bust": "92", - "waist": "67", - "hip": "93" - }, - "event": [] - }, - { - "alias_name": "ふわっと艶乙女", - "alias_name_display": "ふわっと艶乙女", - "id": "3537602", - "hash": "f918315bf0b28276e87d685d545c8145", - "profile": { - "height": "162", - "weight": "59", - "bust": "92", - "waist": "67", - "hip": "93" - }, - "event": [] - } - ], - "units": [ - { - "id": "157", - "name": "デビリッシュゴシック" - }, - { - "id": "178", - "name": "からぱれ" - }, - { - "id": "206", - "name": "セクシーボンデージ" - } - ] - }, - "152": { - "idol_id": 152, - "idol_name": "ルーキートレーナー", - "idol_name_display": "ルーキートレーナー", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3002401", - "hash": "9d8f7ddf9814571ec92baa652f20ead5", - "profile": { - "height": "157", - "weight": "45", - "bust": "77", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 303, - "event_name": "アイドル強化合宿" - } - ] - }, - { - "alias_name": "バレンタイン", - "alias_name_display": "バレンタイン", - "id": "3003701", - "hash": "36e37884b950605dc92c789b5b270b37", - "profile": { - "height": "157", - "weight": "45", - "bust": "77", - "waist": "56", - "hip": "82" - }, - "event": [] - } - ] - }, - "153": { - "idol_id": 153, - "idol_name": "及川雫", - "idol_name_display": "及川雫", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3002501", - "hash": "66fbc3ffdc1d467d4656be4e6a806c8d", - "profile": { - "height": "170", - "weight": "56", - "bust": "105", - "waist": "64", - "hip": "92" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3102502", - "hash": "73887de78a57a5c49170947f2b83c81b", - "profile": { - "height": "170", - "weight": "56", - "bust": "105", - "waist": "64", - "hip": "92" - }, - "event": [] - }, - { - "alias_name": "マーメイドパラダイス", - "alias_name_display": "マーメイドパラダイス", - "id": "3205801", - "hash": "07d404f5b5197204f9664334fa255730", - "profile": { - "height": "170", - "weight": "56", - "bust": "105", - "waist": "64", - "hip": "92" - }, - "event": [] - }, - { - "alias_name": "マーメイドパラダイス", - "alias_name_display": "マーメイドパラダイス", - "id": "3305802", - "hash": "69a5fd83ed2443c3bd79c2cc133c6334", - "profile": { - "height": "170", - "weight": "56", - "bust": "105", - "waist": "64", - "hip": "92" - }, - "event": [] - }, - { - "alias_name": "浴衣祭り", - "alias_name_display": "浴衣祭り", - "id": "3211301", - "hash": "6e35b42e385c8c1ba43173498fb1e76f", - "profile": { - "height": "170", - "weight": "56", - "bust": "105", - "waist": "64", - "hip": "92" - }, - "event": [] - }, - { - "alias_name": "浴衣祭り", - "alias_name_display": "浴衣祭り", - "id": "3311302", - "hash": "88101417f347a5f1a8f3eb488c36e8d2", - "profile": { - "height": "170", - "weight": "56", - "bust": "105", - "waist": "64", - "hip": "92" - }, - "event": [] - }, - { - "alias_name": "ミルキーB.B", - "alias_name_display": "ミルキーB.B", - "id": "3221601", - "hash": "77aa04216bfb980d6a349ebc31f297f5", - "profile": { - "height": "170", - "weight": "56", - "bust": "105", - "waist": "64", - "hip": "92" - }, - "event": [] - }, - { - "alias_name": "ミルキーB.B", - "alias_name_display": "ミルキーB.B", - "id": "3321602", - "hash": "bb05e3e826f6b264c9b9fab8920f40ca", - "profile": { - "height": "170", - "weight": "56", - "bust": "105", - "waist": "64", - "hip": "92" - }, - "event": [] - }, - { - "alias_name": "ビーチガール", - "alias_name_display": "ビーチガール", - "id": "3224101", - "hash": "a9916b3a3bfdeee7e137a0fe098260bc", - "profile": { - "height": "170", - "weight": "56", - "bust": "105", - "waist": "64", - "hip": "92" - }, - "event": [ - { - "event_id": 1703, - "event_name": "アイドルプロデュース おいでよ!海の家" - } - ] - }, - { - "alias_name": "ビーチガール", - "alias_name_display": "ビーチガール", - "id": "3324102", - "hash": "cb6e0046c38105c34bf814d7de9faf54", - "profile": { - "height": "170", - "weight": "56", - "bust": "105", - "waist": "64", - "hip": "92" - }, - "event": [ - { - "event_id": 1703, - "event_name": "アイドルプロデュース おいでよ!海の家" - } - ] - }, - { - "alias_name": "ビーチガール・S", - "alias_name_display": "ビーチガール・S", - "id": "3224201", - "hash": "f3339d2dacbd08cab3248fed296c152e", - "profile": { - "height": "170", - "weight": "56", - "bust": "105", - "waist": "64", - "hip": "92" - }, - "event": [ - { - "event_id": 1703, - "event_name": "アイドルプロデュース おいでよ!海の家" - } - ] - }, - { - "alias_name": "ビーチガール・S", - "alias_name_display": "ビーチガール・S", - "id": "3324202", - "hash": "330125851af71481cec10cd6c08ead5d", - "profile": { - "height": "170", - "weight": "56", - "bust": "105", - "waist": "64", - "hip": "92" - }, - "event": [ - { - "event_id": 1703, - "event_name": "アイドルプロデュース おいでよ!海の家" - } - ] - }, - { - "alias_name": "バレンタインI.C", - "alias_name_display": "バレンタインI.C", - "id": "3327702", - "hash": "64a0bb938d41f1029525df2e503ac1c4", - "profile": { - "height": "170", - "weight": "56", - "bust": "105", - "waist": "64", - "hip": "92" - }, - "event": [ - { - "event_id": 1209, - "event_name": "アイドルチャレンジ チャレンジクッキング バレンタイン編" - } - ] - }, - { - "alias_name": "コロッセオクイーン", - "alias_name_display": "コロッセオクイーン", - "id": "3405401", - "hash": "e70d367d497a566cf2c90eba7cf20acc", - "profile": { - "height": "170", - "weight": "56", - "bust": "105", - "waist": "64", - "hip": "92" - }, - "event": [ - { - "event_id": 503, - "event_name": "アイドルLIVEツアーinイタリア" - } - ] - }, - { - "alias_name": "コロッセオクイーン", - "alias_name_display": "コロッセオクイーン", - "id": "3505402", - "hash": "0037cb7e98c14596a6eb124788dfb080", - "profile": { - "height": "170", - "weight": "56", - "bust": "105", - "waist": "64", - "hip": "92" - }, - "event": [ - { - "event_id": 503, - "event_name": "アイドルLIVEツアーinイタリア" - } - ] - }, - { - "alias_name": "愛の癒し系", - "alias_name_display": "愛の癒し系", - "id": "3411001", - "hash": "aa3c25c011a1152a9af8e920df5533c5", - "profile": { - "height": "170", - "weight": "56", - "bust": "105", - "waist": "64", - "hip": "92" - }, - "event": [] - }, - { - "alias_name": "愛の癒し系", - "alias_name_display": "愛の癒し系", - "id": "3511002", - "hash": "7ce85c1cb569dab668f55c5019084f36", - "profile": { - "height": "170", - "weight": "56", - "bust": "105", - "waist": "64", - "hip": "92" - }, - "event": [] - }, - { - "alias_name": "癒しの満月", - "alias_name_display": "癒しの満月", - "id": "3413301", - "hash": "04b085f6025a0db0dd34223ff1ecefbd", - "profile": { - "height": "170", - "weight": "56", - "bust": "105", - "waist": "64", - "hip": "92" - }, - "event": [] - }, - { - "alias_name": "癒しの満月", - "alias_name_display": "癒しの満月", - "id": "3513302", - "hash": "198d50500bd1408485c99c5a33719597", - "profile": { - "height": "170", - "weight": "56", - "bust": "105", - "waist": "64", - "hip": "92" - }, - "event": [] - }, - { - "alias_name": "真夏の果実", - "alias_name_display": "真夏の果実", - "id": "3416601", - "hash": "3b35a7be62c1baf6d0320e704af57c35", - "profile": { - "height": "170", - "weight": "56", - "bust": "105", - "waist": "64", - "hip": "92" - }, - "event": [ - { - "event_id": "018", - "event_name": "第18回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "真夏の果実", - "alias_name_display": "真夏の果実", - "id": "3516602", - "hash": "b0b2836b44bcc84f30cb2a0b4ee95811", - "profile": { - "height": "170", - "weight": "56", - "bust": "105", - "waist": "64", - "hip": "92" - }, - "event": [ - { - "event_id": "018", - "event_name": "第18回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "たっぷりクッキング", - "alias_name_display": "たっぷりクッキング", - "id": "3429901", - "hash": "429bd4b9d09119bf50561fd585ff2a03", - "profile": { - "height": "170", - "weight": "56", - "bust": "105", - "waist": "64", - "hip": "92" - }, - "event": [ - { - "event_id": 1209, - "event_name": "アイドルチャレンジ チャレンジクッキング バレンタイン編" - } - ] - }, - { - "alias_name": "たっぷりクッキング", - "alias_name_display": "たっぷりクッキング", - "id": "3529902", - "hash": "06eb2a01d94dbc499b79359b3cff0fea", - "profile": { - "height": "170", - "weight": "56", - "bust": "105", - "waist": "64", - "hip": "92" - }, - "event": [ - { - "event_id": 1209, - "event_name": "アイドルチャレンジ チャレンジクッキング バレンタイン編" - } - ] - }, - { - "alias_name": "たっぷりクッキング・S", - "alias_name_display": "たっぷりクッキング・S", - "id": "3430001", - "hash": "559790e9b6e4de4ac9449d337663ddbb", - "profile": { - "height": "170", - "weight": "56", - "bust": "105", - "waist": "64", - "hip": "92" - }, - "event": [ - { - "event_id": 1209, - "event_name": "アイドルチャレンジ チャレンジクッキング バレンタイン編" - } - ] - }, - { - "alias_name": "たっぷりクッキング・S", - "alias_name_display": "たっぷりクッキング・S", - "id": "3530002", - "hash": "14c5a8ec192752cbd093a8f6273d2b1e", - "profile": { - "height": "170", - "weight": "56", - "bust": "105", - "waist": "64", - "hip": "92" - }, - "event": [ - { - "event_id": 1209, - "event_name": "アイドルチャレンジ チャレンジクッキング バレンタイン編" - } - ] - }, - { - "alias_name": "実りの季節", - "alias_name_display": "実りの季節", - "id": "3435101", - "hash": "bbbfa253851f09e73d360a8d7e870e8c", - "profile": { - "height": "170", - "weight": "56", - "bust": "105", - "waist": "64", - "hip": "92" - }, - "event": [ - { - "event_id": 724, - "event_name": "第24回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "実りの季節", - "alias_name_display": "実りの季節", - "id": "3535102", - "hash": "c68c5ef6c59aa24884cab075a33569cc", - "profile": { - "height": "170", - "weight": "56", - "bust": "105", - "waist": "64", - "hip": "92" - }, - "event": [ - { - "event_id": 724, - "event_name": "第24回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "バウンシーラウンド", - "alias_name_display": "バウンシーラウンド", - "id": "3438501", - "hash": "bc1a87fb25e1da16048f98be8a1d3610", - "profile": { - "height": "170", - "weight": "56", - "bust": "105", - "waist": "64", - "hip": "92" - }, - "event": [] - }, - { - "alias_name": "バウンシーラウンド", - "alias_name_display": "バウンシーラウンド", - "id": "3538502", - "hash": "8f67ec464f14c69c9abff99d4e5c4eae", - "profile": { - "height": "170", - "weight": "56", - "bust": "105", - "waist": "64", - "hip": "92" - }, - "event": [] - } - ], - "units": [ - { - "id": "71", - "name": "B.B" - }, - { - "id": "147", - "name": "セクシーギルティ" - }, - { - "id": "182", - "name": "マーメイドパラダイス" - }, - { - "id": "188", - "name": "Sweetches" - } - ] - }, - "154": { - "idol_id": 154, - "idol_name": "小関麗奈", - "idol_name_display": "小関麗奈", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3002601", - "hash": "95dfef96c030c77201ff9ed0faa2077f", - "profile": { - "height": "148", - "weight": "41", - "bust": "75", - "waist": "50", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3102602", - "hash": "78df21dcef6a0526a64a6d9cac16b48c", - "profile": { - "height": "148", - "weight": "41", - "bust": "75", - "waist": "50", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "イタズラっ子", - "alias_name_display": "イタズラっ子", - "id": "3205701", - "hash": "14a463ebd0706f1db075f8cccb392178", - "profile": { - "height": "148", - "weight": "41", - "bust": "75", - "waist": "50", - "hip": "77" - }, - "event": [ - { - "event_id": 205, - "event_name": "アイドルサバイバルinサマーライブ" - } - ] - }, - { - "alias_name": "イタズラっ子", - "alias_name_display": "イタズラっ子", - "id": "3305702", - "hash": "20500acb55c3d5d486308c993316b64a", - "profile": { - "height": "148", - "weight": "41", - "bust": "75", - "waist": "50", - "hip": "77" - }, - "event": [ - { - "event_id": 205, - "event_name": "アイドルサバイバルinサマーライブ" - } - ] - }, - { - "alias_name": "イタズラゴシック", - "alias_name_display": "イタズラゴシック", - "id": "3212301", - "hash": "37709b95b40e62f7d715e388278a899c", - "profile": { - "height": "148", - "weight": "41", - "bust": "75", - "waist": "50", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "イタズラゴシック", - "alias_name_display": "イタズラゴシック", - "id": "3312302", - "hash": "d89af5643544548c921520265fa69492", - "profile": { - "height": "148", - "weight": "41", - "bust": "75", - "waist": "50", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "魔女っ娘I.C", - "alias_name_display": "魔女っ娘I.C", - "id": "3317102", - "hash": "c48cd2738311b6a1f088e92adb23dab6", - "profile": { - "height": "148", - "weight": "41", - "bust": "75", - "waist": "50", - "hip": "77" - }, - "event": [ - { - "event_id": 1201, - "event_name": "目指せ魔女っ娘 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "秋色温泉", - "alias_name_display": "秋色温泉", - "id": "3220001", - "hash": "8cb9abd592c10bbf1255a9d404541b5b", - "profile": { - "height": "148", - "weight": "41", - "bust": "75", - "waist": "50", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "秋色温泉", - "alias_name_display": "秋色温泉", - "id": "3320002", - "hash": "48121be6ac23c40b833653f041f850e6", - "profile": { - "height": "148", - "weight": "41", - "bust": "75", - "waist": "50", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "ノルウェー紀行", - "alias_name_display": "ノルウェー紀行", - "id": "3228001", - "hash": "3b1f8e51a11ceb203de8a734f9f7dd35", - "profile": { - "height": "148", - "weight": "41", - "bust": "75", - "waist": "50", - "hip": "77" - }, - "event": [ - { - "event_id": 1705, - "event_name": "アイドルプロデュース きらめくオーロラ紀行" - } - ] - }, - { - "alias_name": "ノルウェー紀行", - "alias_name_display": "ノルウェー紀行", - "id": "3328002", - "hash": "822067804b45cef47ecf9c2a870d2338", - "profile": { - "height": "148", - "weight": "41", - "bust": "75", - "waist": "50", - "hip": "77" - }, - "event": [ - { - "event_id": 1705, - "event_name": "アイドルプロデュース きらめくオーロラ紀行" - } - ] - }, - { - "alias_name": "ノルウェー紀行・S", - "alias_name_display": "ノルウェー紀行・S", - "id": "3228101", - "hash": "b8546cf7912612caf25933c15242f9e1", - "profile": { - "height": "148", - "weight": "41", - "bust": "75", - "waist": "50", - "hip": "77" - }, - "event": [ - { - "event_id": 1705, - "event_name": "アイドルプロデュース きらめくオーロラ紀行" - } - ] - }, - { - "alias_name": "ノルウェー紀行・S", - "alias_name_display": "ノルウェー紀行・S", - "id": "3328102", - "hash": "3a09dcfe3af2d7bfba567bb4d0eba840", - "profile": { - "height": "148", - "weight": "41", - "bust": "75", - "waist": "50", - "hip": "77" - }, - "event": [ - { - "event_id": 1705, - "event_name": "アイドルプロデュース きらめくオーロラ紀行" - } - ] - }, - { - "alias_name": "スライリーボス", - "alias_name_display": "スライリーボス", - "id": "3234101", - "hash": "1450cb40e9291f7b9da2581ab121abd3", - "profile": { - "height": "148", - "weight": "41", - "bust": "75", - "waist": "50", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "スライリーボス", - "alias_name_display": "スライリーボス", - "id": "3334102", - "hash": "037fba15808ccc155155baa5294fc88b", - "profile": { - "height": "148", - "weight": "41", - "bust": "75", - "waist": "50", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "スクールデビル", - "alias_name_display": "スクールデビル", - "id": "3405901", - "hash": "0fcdc2e5ed21fa7c29cc526213ddf9f7", - "profile": { - "height": "148", - "weight": "41", - "bust": "75", - "waist": "50", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "スクールデビル", - "alias_name_display": "スクールデビル", - "id": "3505902", - "hash": "cf9738e0a6277c8199423e64327f9a0b", - "profile": { - "height": "148", - "weight": "41", - "bust": "75", - "waist": "50", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "ロワイヤルジョーカー", - "alias_name_display": "ロワイヤルジョーカー", - "id": "3411101", - "hash": "1ea77064b2e69011cac2b271cea19e49", - "profile": { - "height": "148", - "weight": "41", - "bust": "75", - "waist": "50", - "hip": "77" - }, - "event": [ - { - "event_id": 803, - "event_name": "第3回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ロワイヤルジョーカー", - "alias_name_display": "ロワイヤルジョーカー", - "id": "3511102", - "hash": "de341f17a3de36ce56f9ed87c89942be", - "profile": { - "height": "148", - "weight": "41", - "bust": "75", - "waist": "50", - "hip": "77" - }, - "event": [ - { - "event_id": 803, - "event_name": "第3回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "マジカルガール・フレイム", - "alias_name_display": "マジカルガール・フレイム", - "id": "3414401", - "hash": "89154211f3d3df8c15937f18b01c8641", - "profile": { - "height": "148", - "weight": "41", - "bust": "75", - "waist": "50", - "hip": "77" - }, - "event": [ - { - "event_id": 1201, - "event_name": "目指せ魔女っ娘 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "マジカルガール・フレイム", - "alias_name_display": "マジカルガール・フレイム", - "id": "3514402", - "hash": "f1bdc15bec53fd74b3e11de6e3a77eab", - "profile": { - "height": "148", - "weight": "41", - "bust": "75", - "waist": "50", - "hip": "77" - }, - "event": [ - { - "event_id": 1201, - "event_name": "目指せ魔女っ娘 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "マジカルガールS・フレイム", - "alias_name_display": "マジカルガールS・フレイム", - "id": "3414501", - "hash": "aeaa5782beec126061a02b18ddb73d77", - "profile": { - "height": "148", - "weight": "41", - "bust": "75", - "waist": "50", - "hip": "77" - }, - "event": [ - { - "event_id": 1201, - "event_name": "目指せ魔女っ娘 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "マジカルガールS・フレイム", - "alias_name_display": "マジカルガールS・フレイム", - "id": "3514502", - "hash": "c8bfa6571c1447a4a3eacf97e2233006", - "profile": { - "height": "148", - "weight": "41", - "bust": "75", - "waist": "50", - "hip": "77" - }, - "event": [ - { - "event_id": 1201, - "event_name": "目指せ魔女っ娘 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "イタズラ☆クイーン", - "alias_name_display": "イタズラ☆クイーン", - "id": "3421601", - "hash": "e2a0fb6aa0a659039f7f426e68ba3d5b", - "profile": { - "height": "148", - "weight": "41", - "bust": "75", - "waist": "50", - "hip": "77" - }, - "event": [ - { - "event_id": "020", - "event_name": "第20回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "イタズラ☆クイーン", - "alias_name_display": "イタズラ☆クイーン", - "id": "3521602", - "hash": "3c37b1a01265b61ac9fe41f006a58536", - "profile": { - "height": "148", - "weight": "41", - "bust": "75", - "waist": "50", - "hip": "77" - }, - "event": [ - { - "event_id": "020", - "event_name": "第20回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "マーチング☆ラウド", - "alias_name_display": "マーチング☆ラウド", - "id": "3424401", - "hash": "6f4015168a5dd90b7c312c398ea46a7b", - "profile": { - "height": "148", - "weight": "41", - "bust": "75", - "waist": "50", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "マーチング☆ラウド", - "alias_name_display": "マーチング☆ラウド", - "id": "3524402", - "hash": "6ebb6a6bb44de19413523eb7e59051b7", - "profile": { - "height": "148", - "weight": "41", - "bust": "75", - "waist": "50", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "ライブリージョーカー", - "alias_name_display": "ライブリージョーカー", - "id": "3435801", - "hash": "2c28f7721ac9396626a999e6339b2c88", - "profile": { - "height": "148", - "weight": "41", - "bust": "75", - "waist": "50", - "hip": "77" - }, - "event": [ - { - "event_id": 725, - "event_name": "第25回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ライブリージョーカー", - "alias_name_display": "ライブリージョーカー", - "id": "3535802", - "hash": "f6119202da4cb7287258017f533e28a7", - "profile": { - "height": "148", - "weight": "41", - "bust": "75", - "waist": "50", - "hip": "77" - }, - "event": [ - { - "event_id": 725, - "event_name": "第25回ドリームLIVEフェスティバル" - } - ] - } - ], - "units": [ - { - "id": "46", - "name": "ヒーローヴァーサス" - }, - { - "id": "59", - "name": "ムシバレイナと小春ちゃん" - }, - { - "id": "154", - "name": "秋色温泉" - }, - { - "id": "164", - "name": "マジカルテット" - }, - { - "id": "214", - "name": "L.M.B.G" - } - ] - }, - "155": { - "idol_id": 155, - "idol_name": "衛藤美紗希", - "idol_name_display": "衛藤美紗希", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3002901", - "hash": "ce41501e26f10c602104c8ea99058fac", - "profile": { - "height": "160", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3102902", - "hash": "9b84bbcea8121a56969c15b2173a4e41", - "profile": { - "height": "160", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ショービズガール", - "alias_name_display": "ショービズガール", - "id": "3207401", - "hash": "d080f0c1cd8fe5edd66a70752ad330f9", - "profile": { - "height": "160", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ショービズガール", - "alias_name_display": "ショービズガール", - "id": "3307402", - "hash": "11c15104d7999e6f18f959a5959525c1", - "profile": { - "height": "160", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "エレガントスタイル", - "alias_name_display": "エレガントスタイル", - "id": "3212601", - "hash": "7397b8aef0b374bfda98b7585fa5975a", - "profile": { - "height": "160", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": "012", - "event_name": "第12回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "エレガントスタイル", - "alias_name_display": "エレガントスタイル", - "id": "3312602", - "hash": "2fcfc69158f584eda0c93f680cea3b9c", - "profile": { - "height": "160", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": "012", - "event_name": "第12回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "セレクトメイド", - "alias_name_display": "セレクトメイド", - "id": "3216001", - "hash": "77254317d91c39c769bb9ea89a4dd7a9", - "profile": { - "height": "160", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "セレクトメイド", - "alias_name_display": "セレクトメイド", - "id": "3316002", - "hash": "eccdb961c4d022c046a8769df1db6ebb", - "profile": { - "height": "160", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "シーパイレーツ", - "alias_name_display": "シーパイレーツ", - "id": "3217901", - "hash": "78f0e9e484234a2349b36a911138382b", - "profile": { - "height": "160", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 513, - "event_name": "海賊公演 オーシャンクルーズ" - } - ] - }, - { - "alias_name": "シーパイレーツ", - "alias_name_display": "シーパイレーツ", - "id": "3317902", - "hash": "2140acc12cf828a2f2a3edb5d5b8c6fa", - "profile": { - "height": "160", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 513, - "event_name": "海賊公演 オーシャンクルーズ" - } - ] - }, - { - "alias_name": "ガールズモード", - "alias_name_display": "ガールズモード", - "id": "3223201", - "hash": "ed18ec00d1882aab7d3bffd12eeb6ff7", - "profile": { - "height": "160", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 713, - "event_name": "第13回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ガールズモード", - "alias_name_display": "ガールズモード", - "id": "3323202", - "hash": "6a45bdcaacbacf08ace0cdf463f8564c", - "profile": { - "height": "160", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 713, - "event_name": "第13回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ナデシコI.C", - "alias_name_display": "ナデシコI.C", - "id": "3325402", - "hash": "45d8d8a1d481ed88a1b379ae38724496", - "profile": { - "height": "160", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 1207, - "event_name": "目指せ大和撫子 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "フレッシュPG", - "alias_name_display": "フレッシュPG", - "id": "3227801", - "hash": "c1de4993ff2cb610b6bb1df718fac98c", - "profile": { - "height": "160", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "フレッシュPG", - "alias_name_display": "フレッシュPG", - "id": "3327802", - "hash": "af02f2cc9eff0cc1b65cdfb25c4d7e46", - "profile": { - "height": "160", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ビターバレンタイン", - "alias_name_display": "ビターバレンタイン", - "id": "3405001", - "hash": "5d714716503f34d64e3793fd1a2f3d16", - "profile": { - "height": "160", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ビターバレンタイン", - "alias_name_display": "ビターバレンタイン", - "id": "3505002", - "hash": "3d652688429abc27f23dfe08203c0a2c", - "profile": { - "height": "160", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "あたしの磨き方", - "alias_name_display": "あたしの磨き方", - "id": "3418101", - "hash": "6c2a19b5543568e87ea94e385348ae09", - "profile": { - "height": "160", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 1302, - "event_name": "第2回プロダクションマッチフェスティバルS" - } - ] - }, - { - "alias_name": "あたしの磨き方", - "alias_name_display": "あたしの磨き方", - "id": "3518102", - "hash": "80d9025585c14a2d82acfed3696ed523", - "profile": { - "height": "160", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 1302, - "event_name": "第2回プロダクションマッチフェスティバルS" - } - ] - }, - { - "alias_name": "華道の大和撫子", - "alias_name_display": "華道の大和撫子", - "id": "3426601", - "hash": "c3dee40a36c07b80e0ac30fc33656961", - "profile": { - "height": "160", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 1207, - "event_name": "目指せ大和撫子 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "華道の大和撫子", - "alias_name_display": "華道の大和撫子", - "id": "3526602", - "hash": "d13a2d0afa9cf52d1649abe6cfb8d90c", - "profile": { - "height": "160", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 1207, - "event_name": "目指せ大和撫子 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "華道の大和撫子・S", - "alias_name_display": "華道の大和撫子・S", - "id": "3426701", - "hash": "a7a27109f7578b5ce87588c613000daf", - "profile": { - "height": "160", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 1207, - "event_name": "目指せ大和撫子 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "華道の大和撫子・S", - "alias_name_display": "華道の大和撫子・S", - "id": "3526702", - "hash": "1bf6398daee19fd22d81891ea63f807d", - "profile": { - "height": "160", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 1207, - "event_name": "目指せ大和撫子 アイドルチャレンジ" - } - ] - }, - { - "alias_name": "ガールズアドバンス", - "alias_name_display": "ガールズアドバンス", - "id": "3434601", - "hash": "2dc7b60647c7602b90c9424e99a4e8a2", - "profile": { - "height": "160", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 1408, - "event_name": "第8回ぷちデレラコレクション" - } - ] - }, - { - "alias_name": "ガールズアドバンス", - "alias_name_display": "ガールズアドバンス", - "id": "3534602", - "hash": "a0a4ffd9f9b3ccef042c60afb65fcf16", - "profile": { - "height": "160", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 1408, - "event_name": "第8回ぷちデレラコレクション" - } - ] - }, - { - "alias_name": "フェミニンチアー", - "alias_name_display": "フェミニンチアー", - "id": "3438301", - "hash": "b52cc985711baa1789287d1e8aa54152", - "profile": { - "height": "160", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 1511, - "event_name": "第11回チーム対抗トークバトルショー" - } - ] - }, - { - "alias_name": "フェミニンチアー", - "alias_name_display": "フェミニンチアー", - "id": "3538302", - "hash": "7b95eee4202b9c3265ba5a41194b1d34", - "profile": { - "height": "160", - "weight": "45", - "bust": "84", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 1511, - "event_name": "第11回チーム対抗トークバトルショー" - } - ] - } - ], - "units": [ - { - "id": "89", - "name": "ガールズ・パワー" - }, - { - "id": "210", - "name": "ロワイヤルスタイルND" - } - ] - }, - "156": { - "idol_id": 156, - "idol_name": "星輝子", - "idol_name_display": "星輝子", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3003101", - "hash": "f07c10e7c7e68491371b5c0b6fcbf1a6", - "profile": { - "height": "142", - "weight": "35", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3103102", - "hash": "efa9219cd5f005681c2c8f35faf2b281", - "profile": { - "height": "142", - "weight": "35", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "クリスマスパーティー", - "alias_name_display": "クリスマスパーティー", - "id": "3207701", - "hash": "1970c0edfde84ab46dac71b558e1b491", - "profile": { - "height": "142", - "weight": "35", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "クリスマスパーティー", - "alias_name_display": "クリスマスパーティー", - "id": "3307702", - "hash": "0fd92436ed9230b2eb474918832a34bf", - "profile": { - "height": "142", - "weight": "35", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "絶叫★ヴァンパイア", - "alias_name_display": "絶叫★ヴァンパイア", - "id": "3405501", - "hash": "34bf5a625a64f94a63b733219a6a5552", - "profile": { - "height": "142", - "weight": "35", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "絶叫★ヴァンパイア", - "alias_name_display": "絶叫★ヴァンパイア", - "id": "3505502", - "hash": "e6f94f2ab308857c0c0bb39db6f8b44b", - "profile": { - "height": "142", - "weight": "35", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "あやしい少女", - "alias_name_display": "あやしい少女", - "id": "3407801", - "hash": "0a7f97b5a04101aaf4c0f079bb970612", - "profile": { - "height": "142", - "weight": "35", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": "011", - "event_name": "第11回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "あやしい少女", - "alias_name_display": "あやしい少女", - "id": "3507802", - "hash": "68cf9aa71ce3ce45e7b62eceec103417", - "profile": { - "height": "142", - "weight": "35", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": "011", - "event_name": "第11回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "ブラックバレンタイン", - "alias_name_display": "ブラックバレンタイン", - "id": "3411401", - "hash": "f86bda677cae35d624ba494f3bb55b5c", - "profile": { - "height": "142", - "weight": "35", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "ブラックバレンタイン", - "alias_name_display": "ブラックバレンタイン", - "id": "3511402", - "hash": "70b15d671e957c51bbcf418fab66baef", - "profile": { - "height": "142", - "weight": "35", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "3413601", - "hash": "5c0203a4bfdf4ee9d147a04274cfa231", - "profile": { - "height": "142", - "weight": "35", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "3513602", - "hash": "069ce3db030a5ee081a1fa53626e4e30", - "profile": { - "height": "142", - "weight": "35", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "ラブ☆キノコ", - "alias_name_display": "ラブ☆キノコ", - "id": "3415001", - "hash": "7ffa484262f73c8a238d9246cf1b0814", - "profile": { - "height": "142", - "weight": "35", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "ラブ☆キノコ", - "alias_name_display": "ラブ☆キノコ", - "id": "3515002", - "hash": "981498bd59de8a3b833367e486c09b1a", - "profile": { - "height": "142", - "weight": "35", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "ナイトメア・キノコ", - "alias_name_display": "ナイトメア・キノコ", - "id": "3422001", - "hash": "e94008cbc6d10fcb7568c0350661979d", - "profile": { - "height": "142", - "weight": "35", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "ナイトメア・キノコ", - "alias_name_display": "ナイトメア・キノコ", - "id": "3522002", - "hash": "bf8d8709702aeee5c69ae801d11edd37", - "profile": { - "height": "142", - "weight": "35", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "爆発★キノコ", - "alias_name_display": "爆発★キノコ", - "id": "3428801", - "hash": "3f7874784573946c967d1fb2056dbeae", - "profile": { - "height": "142", - "weight": "35", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "爆発★キノコ", - "alias_name_display": "爆発★キノコ", - "id": "3528802", - "hash": "122c028d272b414af53fb6331e1e1408", - "profile": { - "height": "142", - "weight": "35", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "熱風★マーメイド", - "alias_name_display": "熱風★マーメイド", - "id": "3433501", - "hash": "d923a0d3e684bbc79bdb9c76538e3f27", - "profile": { - "height": "142", - "weight": "35", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "熱風★マーメイド", - "alias_name_display": "熱風★マーメイド", - "id": "3533502", - "hash": "1f8420bcda1dbe084bb88738dfb8ebee", - "profile": { - "height": "142", - "weight": "35", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "5thアニバーサリー", - "alias_name_display": "5thアニバーサリー", - "id": "3436401", - "hash": "6c3cedcaf10692458192b79ba6324334", - "profile": { - "height": "142", - "weight": "35", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 1708, - "event_name": "アイドルプロデュース the 5th Anniversary" - } - ] - }, - { - "alias_name": "5thアニバーサリー", - "alias_name_display": "5thアニバーサリー", - "id": "3536402", - "hash": "957dfa01a9625ff274c6d7d600d5e163", - "profile": { - "height": "142", - "weight": "35", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 1708, - "event_name": "アイドルプロデュース the 5th Anniversary" - } - ] - }, - { - "alias_name": "5thアニバーサリー・S", - "alias_name_display": "5thアニバーサリー・S", - "id": "3436501", - "hash": "965ed7a9106c0c6e8ffe951bbabbd530", - "profile": { - "height": "142", - "weight": "35", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 1708, - "event_name": "アイドルプロデュース the 5th Anniversary" - } - ] - }, - { - "alias_name": "5thアニバーサリー・S", - "alias_name_display": "5thアニバーサリー・S", - "id": "3536502", - "hash": "22aced971fa5898c838516e6f15fe27d", - "profile": { - "height": "142", - "weight": "35", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 1708, - "event_name": "アイドルプロデュース the 5th Anniversary" - } - ] - } - ], - "units": [ - { - "id": "17", - "name": "サイレントスクリーマー" - }, - { - "id": "79", - "name": "NiGHT ENCOUNTER" - }, - { - "id": "85", - "name": "アンダーザデスク" - }, - { - "id": "90", - "name": "カワイイボクと142's" - }, - { - "id": "94", - "name": "シャイニングゴッドチェリー" - }, - { - "id": "108", - "name": "individuals" - }, - { - "id": "111", - "name": "アンチェイン・シグナル" - }, - { - "id": "187", - "name": "NEX-US" - }, - { - "id": "203", - "name": "ゼッケンズ" - } - ] - }, - "157": { - "idol_id": 157, - "idol_name": "片桐早苗", - "idol_name_display": "片桐早苗", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3003201", - "hash": "b87dd23cc34603944cd75e87db7435d8", - "profile": { - "height": "152", - "weight": "47", - "bust": "92", - "waist": "58", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3103202", - "hash": "fbc70efe03d1bd54fbd28175460510a8", - "profile": { - "height": "152", - "weight": "47", - "bust": "92", - "waist": "58", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "ハイレグマーメイド", - "alias_name_display": "ハイレグマーメイド", - "id": "3208301", - "hash": "ecffbe70cac95bf6992918d5e652a8f7", - "profile": { - "height": "152", - "weight": "47", - "bust": "92", - "waist": "58", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "ハイレグマーメイド", - "alias_name_display": "ハイレグマーメイド", - "id": "3308302", - "hash": "d5622930911cee8dfb082a6144ab24b9", - "profile": { - "height": "152", - "weight": "47", - "bust": "92", - "waist": "58", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "桜祭り", - "alias_name_display": "桜祭り", - "id": "3209401", - "hash": "e9f5d3a721a4e8b8dbbbab8eb237d7de", - "profile": { - "height": "152", - "weight": "47", - "bust": "92", - "waist": "58", - "hip": "84" - }, - "event": [ - { - "event_id": 406, - "event_name": "アイドルプロデュース 春の桜祭り編" - } - ] - }, - { - "alias_name": "桜祭り", - "alias_name_display": "桜祭り", - "id": "3309402", - "hash": "86dab11a4ee3cf83fe7e3e3a5372fc09", - "profile": { - "height": "152", - "weight": "47", - "bust": "92", - "waist": "58", - "hip": "84" - }, - "event": [ - { - "event_id": 406, - "event_name": "アイドルプロデュース 春の桜祭り編" - } - ] - }, - { - "alias_name": "桜祭りスマイル", - "alias_name_display": "桜祭りスマイル", - "id": "3209501", - "hash": "377fbdfb1d83aa9567368f6f6859ba59", - "profile": { - "height": "152", - "weight": "47", - "bust": "92", - "waist": "58", - "hip": "84" - }, - "event": [ - { - "event_id": 406, - "event_name": "アイドルプロデュース 春の桜祭り編" - } - ] - }, - { - "alias_name": "桜祭りスマイル", - "alias_name_display": "桜祭りスマイル", - "id": "3309502", - "hash": "d721cc2ce2e66a6b1e23fce55363a5cf", - "profile": { - "height": "152", - "weight": "47", - "bust": "92", - "waist": "58", - "hip": "84" - }, - "event": [ - { - "event_id": 406, - "event_name": "アイドルプロデュース 春の桜祭り編" - } - ] - }, - { - "alias_name": "ワーキング・ダーティ", - "alias_name_display": "ワーキング・ダーティ", - "id": "3216901", - "hash": "d9dd32e691096c60b1c0601c95925066", - "profile": { - "height": "152", - "weight": "47", - "bust": "92", - "waist": "58", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "ワーキング・ダーティ", - "alias_name_display": "ワーキング・ダーティ", - "id": "3316902", - "hash": "ef3322348ca2d2ea6fe9667562652fbd", - "profile": { - "height": "152", - "weight": "47", - "bust": "92", - "waist": "58", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "ウェディングI.C", - "alias_name_display": "ウェディングI.C", - "id": "3323402", - "hash": "e752c3b2e14d3d50dce6c8218aa6e1a7", - "profile": { - "height": "152", - "weight": "47", - "bust": "92", - "waist": "58", - "hip": "84" - }, - "event": [ - { - "event_id": 1206, - "event_name": "目指せウェディングモデル アイドルチャレンジ" - } - ] - }, - { - "alias_name": "デンジャーフレッシュ", - "alias_name_display": "デンジャーフレッシュ", - "id": "3225701", - "hash": "41828c6114091713176d8f841add07d0", - "profile": { - "height": "152", - "weight": "47", - "bust": "92", - "waist": "58", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "デンジャーフレッシュ", - "alias_name_display": "デンジャーフレッシュ", - "id": "3325702", - "hash": "411086d51c041d47c644c4acb2bcbb8f", - "profile": { - "height": "152", - "weight": "47", - "bust": "92", - "waist": "58", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "酔いどれお姉さん", - "alias_name_display": "酔いどれお姉さん", - "id": "3407501", - "hash": "f0c2e711d5f1c4d49bfcd612c0903e33", - "profile": { - "height": "152", - "weight": "47", - "bust": "92", - "waist": "58", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "酔いどれお姉さん", - "alias_name_display": "酔いどれお姉さん", - "id": "3507502", - "hash": "698e43a20181b5d63fde302f85247b21", - "profile": { - "height": "152", - "weight": "47", - "bust": "92", - "waist": "58", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "やりすぎお姉さん", - "alias_name_display": "やりすぎお姉さん", - "id": "3409301", - "hash": "0dbb918c0150f688583630318d8e5cf0", - "profile": { - "height": "152", - "weight": "47", - "bust": "92", - "waist": "58", - "hip": "84" - }, - "event": [ - { - "event_id": 212, - "event_name": "アイドルサバイバル 秋の大運動会" - } - ] - }, - { - "alias_name": "やりすぎお姉さん", - "alias_name_display": "やりすぎお姉さん", - "id": "3509302", - "hash": "bccea5972ad490da05d26a045a2f988f", - "profile": { - "height": "152", - "weight": "47", - "bust": "92", - "waist": "58", - "hip": "84" - }, - "event": [ - { - "event_id": 212, - "event_name": "アイドルサバイバル 秋の大運動会" - } - ] - }, - { - "alias_name": "デンジャラスアダルティ", - "alias_name_display": "デンジャラスアダルティ", - "id": "3416401", - "hash": "60f7cf692d9c64ad96e43a115b9e9a76", - "profile": { - "height": "152", - "weight": "47", - "bust": "92", - "waist": "58", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "デンジャラスアダルティ", - "alias_name_display": "デンジャラスアダルティ", - "id": "3516402", - "hash": "7f6090794a05cb3592915bf8b5be2d6a", - "profile": { - "height": "152", - "weight": "47", - "bust": "92", - "waist": "58", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "ボンバー・ロワイヤル", - "alias_name_display": "ボンバー・ロワイヤル", - "id": "3421501", - "hash": "9205795bcfa72efcbaf3fbc3d3ed2507", - "profile": { - "height": "152", - "weight": "47", - "bust": "92", - "waist": "58", - "hip": "84" - }, - "event": [ - { - "event_id": 810, - "event_name": "アイドルLIVEロワイヤル バレンタインSP" - } - ] - }, - { - "alias_name": "ボンバー・ロワイヤル", - "alias_name_display": "ボンバー・ロワイヤル", - "id": "3521502", - "hash": "5c6a7d91faf763f00693b4571c4ea210", - "profile": { - "height": "152", - "weight": "47", - "bust": "92", - "waist": "58", - "hip": "84" - }, - "event": [ - { - "event_id": 810, - "event_name": "アイドルLIVEロワイヤル バレンタインSP" - } - ] - }, - { - "alias_name": "はりきり花嫁", - "alias_name_display": "はりきり花嫁", - "id": "3424101", - "hash": "1683444bf90b1c5b16e8d8cf56a46191", - "profile": { - "height": "152", - "weight": "47", - "bust": "92", - "waist": "58", - "hip": "84" - }, - "event": [ - { - "event_id": 1206, - "event_name": "目指せウェディングモデル アイドルチャレンジ" - } - ] - }, - { - "alias_name": "はりきり花嫁", - "alias_name_display": "はりきり花嫁", - "id": "3524102", - "hash": "570d11792a06edcd84948256ea98650c", - "profile": { - "height": "152", - "weight": "47", - "bust": "92", - "waist": "58", - "hip": "84" - }, - "event": [ - { - "event_id": 1206, - "event_name": "目指せウェディングモデル アイドルチャレンジ" - } - ] - }, - { - "alias_name": "はりきり花嫁・S", - "alias_name_display": "はりきり花嫁・S", - "id": "3424201", - "hash": "549cdd87b8efe48b3bc5de9aff27424c", - "profile": { - "height": "152", - "weight": "47", - "bust": "92", - "waist": "58", - "hip": "84" - }, - "event": [ - { - "event_id": 1206, - "event_name": "目指せウェディングモデル アイドルチャレンジ" - } - ] - }, - { - "alias_name": "はりきり花嫁・S", - "alias_name_display": "はりきり花嫁・S", - "id": "3524202", - "hash": "8d93c8ee952ca04150a7dd645b4be51f", - "profile": { - "height": "152", - "weight": "47", - "bust": "92", - "waist": "58", - "hip": "84" - }, - "event": [ - { - "event_id": 1206, - "event_name": "目指せウェディングモデル アイドルチャレンジ" - } - ] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "3427701", - "hash": "40e5ce644fe9b9d8d4db3797c8df1636", - "profile": { - "height": "152", - "weight": "47", - "bust": "92", - "waist": "58", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "3527702", - "hash": "6967d76548f6c4bcefbdea44d9f0058a", - "profile": { - "height": "152", - "weight": "47", - "bust": "92", - "waist": "58", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "極楽お姉さん", - "alias_name_display": "極楽お姉さん", - "id": "3432601", - "hash": "bf738f2f9689ce80fd3c885b1baf80f7", - "profile": { - "height": "152", - "weight": "47", - "bust": "92", - "waist": "58", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "極楽お姉さん", - "alias_name_display": "極楽お姉さん", - "id": "3532602", - "hash": "c0b85368c419f35c0f544181e7b07d0c", - "profile": { - "height": "152", - "weight": "47", - "bust": "92", - "waist": "58", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "深秋いろは", - "alias_name_display": "深秋いろは", - "id": "3435901", - "hash": "d6f4c8132723e974386c6f16355d77b3", - "profile": { - "height": "152", - "weight": "47", - "bust": "92", - "waist": "58", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "深秋いろは", - "alias_name_display": "深秋いろは", - "id": "3535902", - "hash": "5d00b2bc12676b4ae3679763dab02d1c", - "profile": { - "height": "152", - "weight": "47", - "bust": "92", - "waist": "58", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "ギルティグローリー", - "alias_name_display": "ギルティグローリー", - "id": "3439701", - "hash": "6d97cb9bb465d14cde626b232bb59928", - "profile": { - "height": "152", - "weight": "47", - "bust": "92", - "waist": "58", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "ギルティグローリー", - "alias_name_display": "ギルティグローリー", - "id": "3539702", - "hash": "c28e1707af95249b5b67568cfb748a50", - "profile": { - "height": "152", - "weight": "47", - "bust": "92", - "waist": "58", - "hip": "84" - }, - "event": [] - } - ], - "units": [ - { - "id": "8", - "name": "越後小町" - }, - { - "id": "19", - "name": "さつきの頃" - }, - { - "id": "88", - "name": "桜花小町" - }, - { - "id": "124", - "name": "女神たちの夏宴" - }, - { - "id": "147", - "name": "セクシーギルティ" - }, - { - "id": "184", - "name": "宵乙女" - }, - { - "id": "202", - "name": "サンフラワー" - } - ] - }, - "158": { - "idol_id": 158, - "idol_name": "堀裕子", - "idol_name_display": "堀裕子", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3003301", - "hash": "c55d799ec6a7189b86c2c61309ff705e", - "profile": { - "height": "157", - "weight": "44", - "bust": "81", - "waist": "58", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3103302", - "hash": "af03f83edd3f6081e7a94f7dee76c69c", - "profile": { - "height": "157", - "weight": "44", - "bust": "81", - "waist": "58", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "スパニッシュスタイル", - "alias_name_display": "スパニッシュスタイル", - "id": "3210001", - "hash": "366697976ec9eadf5d9af8aa05627c06", - "profile": { - "height": "157", - "weight": "44", - "bust": "81", - "waist": "58", - "hip": "80" - }, - "event": [ - { - "event_id": 504, - "event_name": "アイドルLIVEツアーinスペイン" - } - ] - }, - { - "alias_name": "スパニッシュスタイル", - "alias_name_display": "スパニッシュスタイル", - "id": "3310002", - "hash": "0704a849a66af4661b4b5fca9bdd29d8", - "profile": { - "height": "157", - "weight": "44", - "bust": "81", - "waist": "58", - "hip": "80" - }, - "event": [ - { - "event_id": 504, - "event_name": "アイドルLIVEツアーinスペイン" - } - ] - }, - { - "alias_name": "おちゃめなサイキッカー", - "alias_name_display": "おちゃめなサイキッカー", - "id": "3211801", - "hash": "8e63cd4a640f8f1d81aa58b0f5b965e1", - "profile": { - "height": "157", - "weight": "44", - "bust": "81", - "waist": "58", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "おちゃめなサイキッカー", - "alias_name_display": "おちゃめなサイキッカー", - "id": "3311802", - "hash": "206627c86b320778aa94bb336021a57f", - "profile": { - "height": "157", - "weight": "44", - "bust": "81", - "waist": "58", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ビター&スウィート", - "alias_name_display": "ビター&スウィート", - "id": "3227501", - "hash": "ffb2c98591b0c9c025db8d210b9eceb7", - "profile": { - "height": "157", - "weight": "44", - "bust": "81", - "waist": "58", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ビター&スウィート", - "alias_name_display": "ビター&スウィート", - "id": "3327502", - "hash": "1bad11e08f6d67660858e2a625af9706", - "profile": { - "height": "157", - "weight": "44", - "bust": "81", - "waist": "58", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "湯けむりサイキッカー", - "alias_name_display": "湯けむりサイキッカー", - "id": "3409501", - "hash": "0662af7af3c7bf97ba34266f06737dd4", - "profile": { - "height": "157", - "weight": "44", - "bust": "81", - "waist": "58", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "湯けむりサイキッカー", - "alias_name_display": "湯けむりサイキッカー", - "id": "3509502", - "hash": "756110c37e69d992aa3a8d4ba539f3e8", - "profile": { - "height": "157", - "weight": "44", - "bust": "81", - "waist": "58", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "3413701", - "hash": "3d3269835487382b0df4e3c8579bb76a", - "profile": { - "height": "157", - "weight": "44", - "bust": "81", - "waist": "58", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "3513702", - "hash": "753c417a7ec341db7cea1b1310039afe", - "profile": { - "height": "157", - "weight": "44", - "bust": "81", - "waist": "58", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "サイキックマジシャン", - "alias_name_display": "サイキックマジシャン", - "id": "3414001", - "hash": "6b9c0707971d95fd191fea1138c10722", - "profile": { - "height": "157", - "weight": "44", - "bust": "81", - "waist": "58", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "サイキックマジシャン", - "alias_name_display": "サイキックマジシャン", - "id": "3514002", - "hash": "cab748d4dfb5cbe80afb594b3c3f3a2c", - "profile": { - "height": "157", - "weight": "44", - "bust": "81", - "waist": "58", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "大地のぱわー☆", - "alias_name_display": "大地のぱわー☆", - "id": "3417101", - "hash": "99264bf5143c8ef20d5799bcee877921", - "profile": { - "height": "157", - "weight": "44", - "bust": "81", - "waist": "58", - "hip": "80" - }, - "event": [ - { - "event_id": 414, - "event_name": "どうぶつアドベンチャー オーストラリア編" - } - ] - }, - { - "alias_name": "大地のぱわー☆", - "alias_name_display": "大地のぱわー☆", - "id": "3517102", - "hash": "9549306aa4c5394f93ee2eb93809485d", - "profile": { - "height": "157", - "weight": "44", - "bust": "81", - "waist": "58", - "hip": "80" - }, - "event": [ - { - "event_id": 414, - "event_name": "どうぶつアドベンチャー オーストラリア編" - } - ] - }, - { - "alias_name": "さいきっく☆ボイス", - "alias_name_display": "さいきっく☆ボイス", - "id": "3422201", - "hash": "4d914ac85a06f7643c5b327242a6c30b", - "profile": { - "height": "157", - "weight": "44", - "bust": "81", - "waist": "58", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "さいきっく☆ボイス", - "alias_name_display": "さいきっく☆ボイス", - "id": "3522202", - "hash": "210300780515553e62e96bea844e9a8d", - "profile": { - "height": "157", - "weight": "44", - "bust": "81", - "waist": "58", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ミラクルパティシエール☆", - "alias_name_display": "ミラクルパティシエール☆", - "id": "3426301", - "hash": "e60c6c9469235806c84c200bd1336dc6", - "profile": { - "height": "157", - "weight": "44", - "bust": "81", - "waist": "58", - "hip": "80" - }, - "event": [ - { - "event_id": 1801, - "event_name": "アイドルバラエティ 究極のショートケーキを作ろう!" - } - ] - }, - { - "alias_name": "ミラクルパティシエール☆", - "alias_name_display": "ミラクルパティシエール☆", - "id": "3526302", - "hash": "cd82605167df5280f7a1496dfb819801", - "profile": { - "height": "157", - "weight": "44", - "bust": "81", - "waist": "58", - "hip": "80" - }, - "event": [ - { - "event_id": 1801, - "event_name": "アイドルバラエティ 究極のショートケーキを作ろう!" - } - ] - }, - { - "alias_name": "海のぱわー☆", - "alias_name_display": "海のぱわー☆", - "id": "3434301", - "hash": "fcadcbebe66c5cbafbfcda3fde7aed3c", - "profile": { - "height": "157", - "weight": "44", - "bust": "81", - "waist": "58", - "hip": "80" - }, - "event": [ - { - "event_id": 1508, - "event_name": "チーム対抗トークバトルショー in SUMMER" - } - ] - }, - { - "alias_name": "海のぱわー☆", - "alias_name_display": "海のぱわー☆", - "id": "3534302", - "hash": "c45a6475300f696474afa6e473eaef75", - "profile": { - "height": "157", - "weight": "44", - "bust": "81", - "waist": "58", - "hip": "80" - }, - "event": [ - { - "event_id": 1508, - "event_name": "チーム対抗トークバトルショー in SUMMER" - } - ] - }, - { - "alias_name": "夕焼けテレパシー", - "alias_name_display": "夕焼けテレパシー", - "id": "3438201", - "hash": "b0c6e9c33f363fe1bfea05c3d007983c", - "profile": { - "height": "157", - "weight": "44", - "bust": "81", - "waist": "58", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "夕焼けテレパシー", - "alias_name_display": "夕焼けテレパシー", - "id": "3538202", - "hash": "64bfd146a17bcae9c53f47b939d3199a", - "profile": { - "height": "157", - "weight": "44", - "bust": "81", - "waist": "58", - "hip": "80" - }, - "event": [] - } - ], - "units": [ - { - "id": "15", - "name": "サイキックヒーツ" - }, - { - "id": "28", - "name": "スパニッシュスタイル" - }, - { - "id": "56", - "name": "ミステリアスガールズ" - }, - { - "id": "80", - "name": "P・U" - }, - { - "id": "147", - "name": "セクシーギルティ" - }, - { - "id": "190", - "name": "サマプリ" - }, - { - "id": "203", - "name": "ゼッケンズ" - } - ] - }, - "159": { - "idol_id": 159, - "idol_name": "西島櫂", - "idol_name_display": "西島櫂", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3003401", - "hash": "90e1a482a68770c0117ff910db7209c2", - "profile": { - "height": "172", - "weight": "49", - "bust": "86", - "waist": "59", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3103402", - "hash": "2deaaf0de326f04174e4c0187d20d1e2", - "profile": { - "height": "172", - "weight": "49", - "bust": "86", - "waist": "59", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "浴衣祭り", - "alias_name_display": "浴衣祭り", - "id": "3211201", - "hash": "9d3b68f92212bd2b95d73a5ba2358b4e", - "profile": { - "height": "172", - "weight": "49", - "bust": "86", - "waist": "59", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "浴衣祭り", - "alias_name_display": "浴衣祭り", - "id": "3311202", - "hash": "bb91c7a10a12b5a3ed01557f161ba4a1", - "profile": { - "height": "172", - "weight": "49", - "bust": "86", - "waist": "59", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "スペーススタイル", - "alias_name_display": "スペーススタイル", - "id": "3213501", - "hash": "c996e8c27de072d99879b307e536a874", - "profile": { - "height": "172", - "weight": "49", - "bust": "86", - "waist": "59", - "hip": "83" - }, - "event": [ - { - "event_id": 508, - "event_name": "LIVEツアーカーニバルinスペースワールド" - } - ] - }, - { - "alias_name": "スペーススタイル", - "alias_name_display": "スペーススタイル", - "id": "3313502", - "hash": "d84b4a1cfb08637667606e72446d417b", - "profile": { - "height": "172", - "weight": "49", - "bust": "86", - "waist": "59", - "hip": "83" - }, - "event": [ - { - "event_id": 508, - "event_name": "LIVEツアーカーニバルinスペースワールド" - } - ] - }, - { - "alias_name": "パラダイスリゾート", - "alias_name_display": "パラダイスリゾート", - "id": "3218501", - "hash": "115667c89bcb3a1e593ccddf15bb1709", - "profile": { - "height": "172", - "weight": "49", - "bust": "86", - "waist": "59", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "パラダイスリゾート", - "alias_name_display": "パラダイスリゾート", - "id": "3318502", - "hash": "d3a6e3bf2a9fa94c1acfb5b91dccce53", - "profile": { - "height": "172", - "weight": "49", - "bust": "86", - "waist": "59", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "セルフセレクト", - "alias_name_display": "セルフセレクト", - "id": "3220301", - "hash": "6d5fe6750042dc9c21589f254b91e1e5", - "profile": { - "height": "172", - "weight": "49", - "bust": "86", - "waist": "59", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "セルフセレクト", - "alias_name_display": "セルフセレクト", - "id": "3320302", - "hash": "0ed637b2de3041121021c52989c82533", - "profile": { - "height": "172", - "weight": "49", - "bust": "86", - "waist": "59", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "人狼将軍", - "alias_name_display": "人狼将軍", - "id": "3325902", - "hash": "2dd54667369628560e906717044d5d92", - "profile": { - "height": "172", - "weight": "49", - "bust": "86", - "waist": "59", - "hip": "83" - }, - "event": [ - { - "event_id": 522, - "event_name": "魔界公演 幽鬱女王とハロウィンの祝祭" - } - ] - }, - { - "alias_name": "人波のスイマー", - "alias_name_display": "人波のスイマー", - "id": "3412101", - "hash": "1f39f1a654d566d8bf94dda9cc0d54f6", - "profile": { - "height": "172", - "weight": "49", - "bust": "86", - "waist": "59", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "人波のスイマー", - "alias_name_display": "人波のスイマー", - "id": "3512102", - "hash": "3615fdeb23d847c39fb844c9bf446ff9", - "profile": { - "height": "172", - "weight": "49", - "bust": "86", - "waist": "59", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "ドルフィンチアー", - "alias_name_display": "ドルフィンチアー", - "id": "3423101", - "hash": "427b561348d55eed4db451a497176f95", - "profile": { - "height": "172", - "weight": "49", - "bust": "86", - "waist": "59", - "hip": "83" - }, - "event": [ - { - "event_id": 1501, - "event_name": "チーム対抗トークバトルショー" - } - ] - }, - { - "alias_name": "ドルフィンチアー", - "alias_name_display": "ドルフィンチアー", - "id": "3523102", - "hash": "2ab8abfbcbada4e1877149d06f200fad", - "profile": { - "height": "172", - "weight": "49", - "bust": "86", - "waist": "59", - "hip": "83" - }, - "event": [ - { - "event_id": 1501, - "event_name": "チーム対抗トークバトルショー" - } - ] - }, - { - "alias_name": "ホットクルージング", - "alias_name_display": "ホットクルージング", - "id": "3433701", - "hash": "c4956742e83de544e7bb1f10bf4362e4", - "profile": { - "height": "172", - "weight": "49", - "bust": "86", - "waist": "59", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "ホットクルージング", - "alias_name_display": "ホットクルージング", - "id": "3533702", - "hash": "d97b128c8dbc9235834e5e045e75339c", - "profile": { - "height": "172", - "weight": "49", - "bust": "86", - "waist": "59", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "グリルドスピリット", - "alias_name_display": "グリルドスピリット", - "id": "3439801", - "hash": "6f5389395cfeec54633e3bd18ab02bd6", - "profile": { - "height": "172", - "weight": "49", - "bust": "86", - "waist": "59", - "hip": "83" - }, - "event": [ - { - "event_id": 729, - "event_name": "ドリームLIVEフェスティバル ゴールデンウィークSP" - } - ] - }, - { - "alias_name": "グリルドスピリット", - "alias_name_display": "グリルドスピリット", - "id": "3539802", - "hash": "dd34bfe74931aeab10c7aaafe2832d86", - "profile": { - "height": "172", - "weight": "49", - "bust": "86", - "waist": "59", - "hip": "83" - }, - "event": [ - { - "event_id": 729, - "event_name": "ドリームLIVEフェスティバル ゴールデンウィークSP" - } - ] - } - ], - "units": [ - { - "id": "95", - "name": "スペーススタイル" - }, - { - "id": "122", - "name": "ホットアートジャンピン" - } - ] - }, - "160": { - "idol_id": 160, - "idol_name": "的場梨沙", - "idol_name_display": "的場梨沙", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3003501", - "hash": "d95254e127a889746034022f82cb5798", - "profile": { - "height": "143", - "weight": "38", - "bust": "71", - "waist": "58", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3103502", - "hash": "5fd2939e3e1b4403ed6f3886c48a1d32", - "profile": { - "height": "143", - "weight": "38", - "bust": "71", - "waist": "58", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "ニューイヤースタイル", - "alias_name_display": "ニューイヤースタイル", - "id": "3214901", - "hash": "27886dda8120d9992e0bde75d3132487", - "profile": { - "height": "143", - "weight": "38", - "bust": "71", - "waist": "58", - "hip": "73" - }, - "event": [ - { - "event_id": 509, - "event_name": "新春LIVEツアーカーニバル" - } - ] - }, - { - "alias_name": "ニューイヤースタイル", - "alias_name_display": "ニューイヤースタイル", - "id": "3314902", - "hash": "d9f8828d3ee7daf7c3287b4414d76aa0", - "profile": { - "height": "143", - "weight": "38", - "bust": "71", - "waist": "58", - "hip": "73" - }, - "event": [ - { - "event_id": 509, - "event_name": "新春LIVEツアーカーニバル" - } - ] - }, - { - "alias_name": "サファリアドベンチャー", - "alias_name_display": "サファリアドベンチャー", - "id": "3219201", - "hash": "81884ba2df20b5ecab3e6db70413b9c3", - "profile": { - "height": "143", - "weight": "38", - "bust": "71", - "waist": "58", - "hip": "73" - }, - "event": [ - { - "event_id": 414, - "event_name": "どうぶつアドベンチャー オーストラリア編" - } - ] - }, - { - "alias_name": "サファリアドベンチャー", - "alias_name_display": "サファリアドベンチャー", - "id": "3319202", - "hash": "01a473d058eccb980f44c6cf2b07b540", - "profile": { - "height": "143", - "weight": "38", - "bust": "71", - "waist": "58", - "hip": "73" - }, - "event": [ - { - "event_id": 414, - "event_name": "どうぶつアドベンチャー オーストラリア編" - } - ] - }, - { - "alias_name": "サファリアドベンチャー・S", - "alias_name_display": "サファリアドベンチャー・S", - "id": "3219301", - "hash": "280a9941a00ec7d1954fb70d5c806151", - "profile": { - "height": "143", - "weight": "38", - "bust": "71", - "waist": "58", - "hip": "73" - }, - "event": [ - { - "event_id": 414, - "event_name": "どうぶつアドベンチャー オーストラリア編" - } - ] - }, - { - "alias_name": "サファリアドベンチャー・S", - "alias_name_display": "サファリアドベンチャー・S", - "id": "3319302", - "hash": "1b7a0a4e902ae4dcdcc7f2045f241656", - "profile": { - "height": "143", - "weight": "38", - "bust": "71", - "waist": "58", - "hip": "73" - }, - "event": [ - { - "event_id": 414, - "event_name": "どうぶつアドベンチャー オーストラリア編" - } - ] - }, - { - "alias_name": "乙女武将", - "alias_name_display": "乙女武将", - "id": "3221701", - "hash": "9378c5e537cb2acc360dd0bdb0dfdd70", - "profile": { - "height": "143", - "weight": "38", - "bust": "71", - "waist": "58", - "hip": "73" - }, - "event": [ - { - "event_id": 517, - "event_name": "戦国公演 風来剣客伝" - } - ] - }, - { - "alias_name": "乙女武将", - "alias_name_display": "乙女武将", - "id": "3321702", - "hash": "4c786bf74a7f7bf25daa7b91fe7c7e0a", - "profile": { - "height": "143", - "weight": "38", - "bust": "71", - "waist": "58", - "hip": "73" - }, - "event": [ - { - "event_id": 517, - "event_name": "戦国公演 風来剣客伝" - } - ] - }, - { - "alias_name": "サンタI.C", - "alias_name_display": "サンタI.C", - "id": "3326902", - "hash": "b7b438513131f3e40cd1bad252c38d1a", - "profile": { - "height": "143", - "weight": "38", - "bust": "71", - "waist": "58", - "hip": "73" - }, - "event": [ - { - "event_id": 1208, - "event_name": "目指せサンタクロース アイドルチャレンジ" - } - ] - }, - { - "alias_name": "マーチングバンド", - "alias_name_display": "マーチングバンド", - "id": "3228301", - "hash": "3e9ae5337b2b5222c5270c9561fbf0b8", - "profile": { - "height": "143", - "weight": "38", - "bust": "71", - "waist": "58", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "マーチングバンド", - "alias_name_display": "マーチングバンド", - "id": "3328302", - "hash": "1868d1975710558fe8bdea18220ce69f", - "profile": { - "height": "143", - "weight": "38", - "bust": "71", - "waist": "58", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "セクシーパンサー", - "alias_name_display": "セクシーパンサー", - "id": "3411801", - "hash": "8ad64acb66ae95edb5e955375d51b90b", - "profile": { - "height": "143", - "weight": "38", - "bust": "71", - "waist": "58", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "セクシーパンサー", - "alias_name_display": "セクシーパンサー", - "id": "3511802", - "hash": "5c68f5a84cbeaee1a887b7a1691577b4", - "profile": { - "height": "143", - "weight": "38", - "bust": "71", - "waist": "58", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "スウィートハニーハート", - "alias_name_display": "スウィートハニーハート", - "id": "3414901", - "hash": "5ab593bd5d05f2e496f088706687f7da", - "profile": { - "height": "143", - "weight": "38", - "bust": "71", - "waist": "58", - "hip": "73" - }, - "event": [ - { - "event_id": "017", - "event_name": "第17回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "スウィートハニーハート", - "alias_name_display": "スウィートハニーハート", - "id": "3514902", - "hash": "3a71223fc974c44985da17ab245e9401", - "profile": { - "height": "143", - "weight": "38", - "bust": "71", - "waist": "58", - "hip": "73" - }, - "event": [ - { - "event_id": "017", - "event_name": "第17回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "ファントムレディ", - "alias_name_display": "ファントムレディ", - "id": "3425801", - "hash": "23c506cfa1119f316cd9b7e07e30b490", - "profile": { - "height": "143", - "weight": "38", - "bust": "71", - "waist": "58", - "hip": "73" - }, - "event": [ - { - "event_id": 521, - "event_name": "怪盗公演 美しき追跡者" - } - ] - }, - { - "alias_name": "ファントムレディ", - "alias_name_display": "ファントムレディ", - "id": "3525802", - "hash": "c94eb2410c0f5c98643fa4cc5dc00a2d", - "profile": { - "height": "143", - "weight": "38", - "bust": "71", - "waist": "58", - "hip": "73" - }, - "event": [ - { - "event_id": 521, - "event_name": "怪盗公演 美しき追跡者" - } - ] - }, - { - "alias_name": "どきどきクリスマス", - "alias_name_display": "どきどきクリスマス", - "id": "3428601", - "hash": "258f6b36adac5b6da65d8cf1ebf8a5a8", - "profile": { - "height": "143", - "weight": "38", - "bust": "71", - "waist": "58", - "hip": "73" - }, - "event": [ - { - "event_id": 1208, - "event_name": "目指せサンタクロース アイドルチャレンジ" - } - ] - }, - { - "alias_name": "どきどきクリスマス", - "alias_name_display": "どきどきクリスマス", - "id": "3528602", - "hash": "3902966b6611ebad08386b3e8e1665c9", - "profile": { - "height": "143", - "weight": "38", - "bust": "71", - "waist": "58", - "hip": "73" - }, - "event": [ - { - "event_id": 1208, - "event_name": "目指せサンタクロース アイドルチャレンジ" - } - ] - }, - { - "alias_name": "どきどきクリスマス・S", - "alias_name_display": "どきどきクリスマス・S", - "id": "3428701", - "hash": "9a8d92a67b66329fb01f13f151d0f9fb", - "profile": { - "height": "143", - "weight": "38", - "bust": "71", - "waist": "58", - "hip": "73" - }, - "event": [ - { - "event_id": 1208, - "event_name": "目指せサンタクロース アイドルチャレンジ" - } - ] - }, - { - "alias_name": "どきどきクリスマス・S", - "alias_name_display": "どきどきクリスマス・S", - "id": "3528702", - "hash": "70e4a170e6d8ac1de9f6f103c9c3dfd1", - "profile": { - "height": "143", - "weight": "38", - "bust": "71", - "waist": "58", - "hip": "73" - }, - "event": [ - { - "event_id": 1208, - "event_name": "目指せサンタクロース アイドルチャレンジ" - } - ] - }, - { - "alias_name": "オトメのポリシー", - "alias_name_display": "オトメのポリシー", - "id": "3435701", - "hash": "64698d63ae6f12f30ac46ff5e61550f7", - "profile": { - "height": "143", - "weight": "38", - "bust": "71", - "waist": "58", - "hip": "73" - }, - "event": [ - { - "event_id": 1409, - "event_name": "第9回ぷちデレラコレクション" - } - ] - }, - { - "alias_name": "オトメのポリシー", - "alias_name_display": "オトメのポリシー", - "id": "3535702", - "hash": "8311d865f81f1063978d094431e038d4", - "profile": { - "height": "143", - "weight": "38", - "bust": "71", - "waist": "58", - "hip": "73" - }, - "event": [ - { - "event_id": 1409, - "event_name": "第9回ぷちデレラコレクション" - } - ] - }, - { - "alias_name": "プラウディスポット", - "alias_name_display": "プラウディスポット", - "id": "3439501", - "hash": "0bfee936f43c4008bb7446d70950d81a", - "profile": { - "height": "143", - "weight": "38", - "bust": "71", - "waist": "58", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "プラウディスポット", - "alias_name_display": "プラウディスポット", - "id": "3539502", - "hash": "076ff2416464383dd10c0895f1118c57", - "profile": { - "height": "143", - "weight": "38", - "bust": "71", - "waist": "58", - "hip": "73" - }, - "event": [] - } - ], - "units": [ - { - "id": "45", - "name": "ビートシューター" - }, - { - "id": "98", - "name": "ニューイヤースタイル" - }, - { - "id": "104", - "name": "ももぺあべりー" - }, - { - "id": "177", - "name": "桜舞隊" - }, - { - "id": "214", - "name": "L.M.B.G" - } - ] - }, - "161": { - "idol_id": 161, - "idol_name": "財前時子", - "idol_name_display": "財前時子", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3003601", - "hash": "d1aa3bc716ff2f22ebf41c1fe9b83266", - "profile": { - "height": "168", - "weight": "46", - "bust": "83", - "waist": "55", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3103602", - "hash": "c0f2d0167e0d5623f5bbc035eb412c26", - "profile": { - "height": "168", - "weight": "46", - "bust": "83", - "waist": "55", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ロワイヤルスタイルNP", - "alias_name_display": "ロワイヤルスタイルNP", - "id": "3216201", - "hash": "15bad0e239396c14ba25c714bfdc9f9e", - "profile": { - "height": "168", - "weight": "46", - "bust": "83", - "waist": "55", - "hip": "85" - }, - "event": [ - { - "event_id": 804, - "event_name": "第4回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ロワイヤルスタイルNP", - "alias_name_display": "ロワイヤルスタイルNP", - "id": "3316202", - "hash": "a878dde61487baf7b31c28093da0df1b", - "profile": { - "height": "168", - "weight": "46", - "bust": "83", - "waist": "55", - "hip": "85" - }, - "event": [ - { - "event_id": 804, - "event_name": "第4回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "スクールガール", - "alias_name_display": "スクールガール", - "id": "3219701", - "hash": "e99733454b58967e0160ccf1959de480", - "profile": { - "height": "168", - "weight": "46", - "bust": "83", - "waist": "55", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "スクールガール", - "alias_name_display": "スクールガール", - "id": "3319702", - "hash": "3675545fba8738750a3f60c573dde3a6", - "profile": { - "height": "168", - "weight": "46", - "bust": "83", - "waist": "55", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "レディタイラント", - "alias_name_display": "レディタイラント", - "id": "3221101", - "hash": "5e137bfe353c3f0d1425e32982c8f226", - "profile": { - "height": "168", - "weight": "46", - "bust": "83", - "waist": "55", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "レディタイラント", - "alias_name_display": "レディタイラント", - "id": "3321102", - "hash": "37865a0f7f25d1f9f20b1b0932fd0a15", - "profile": { - "height": "168", - "weight": "46", - "bust": "83", - "waist": "55", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "サマービーチ", - "alias_name_display": "サマービーチ", - "id": "3230001", - "hash": "8b9fcba48ed38f79114879a280024fd9", - "profile": { - "height": "168", - "weight": "46", - "bust": "83", - "waist": "55", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "サマービーチ", - "alias_name_display": "サマービーチ", - "id": "3330002", - "hash": "4ea2df5004456c968bdc36873337f71a", - "profile": { - "height": "168", - "weight": "46", - "bust": "83", - "waist": "55", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "マジェスティックオーダー", - "alias_name_display": "マジェスティックオーダー", - "id": "3232701", - "hash": "62e0388dff948bed0191ad5a3bbdc629", - "profile": { - "height": "168", - "weight": "46", - "bust": "83", - "waist": "55", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "マジェスティックオーダー", - "alias_name_display": "マジェスティックオーダー", - "id": "3332702", - "hash": "3ae8b4914157e90a7e0070f39d0afc10", - "profile": { - "height": "168", - "weight": "46", - "bust": "83", - "waist": "55", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "メディアの女王", - "alias_name_display": "メディアの女王", - "id": "3414101", - "hash": "79028ffc2d4dc2ab861d09cdaba8ba68", - "profile": { - "height": "168", - "weight": "46", - "bust": "83", - "waist": "55", - "hip": "85" - }, - "event": [ - { - "event_id": 1102, - "event_name": "第2回プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "メディアの女王", - "alias_name_display": "メディアの女王", - "id": "3514102", - "hash": "838a4c6a770f35ab005c376a6e480316", - "profile": { - "height": "168", - "weight": "46", - "bust": "83", - "waist": "55", - "hip": "85" - }, - "event": [ - { - "event_id": 1102, - "event_name": "第2回プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "ベルベットクイーン", - "alias_name_display": "ベルベットクイーン", - "id": "3423501", - "hash": "8b0c9ce3e5eb4ae076626729c5476784", - "profile": { - "height": "168", - "weight": "46", - "bust": "83", - "waist": "55", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ベルベットクイーン", - "alias_name_display": "ベルベットクイーン", - "id": "3523502", - "hash": "d2c90e9e8f108c4d9d7e373ff21da35b", - "profile": { - "height": "168", - "weight": "46", - "bust": "83", - "waist": "55", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ドミネイトクリスマス", - "alias_name_display": "ドミネイトクリスマス", - "id": "3428301", - "hash": "19df0dce995f785d6347b7905879b11d", - "profile": { - "height": "168", - "weight": "46", - "bust": "83", - "waist": "55", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ドミネイトクリスマス", - "alias_name_display": "ドミネイトクリスマス", - "id": "3528302", - "hash": "7ade063367ad652bc5d05aa008a75237", - "profile": { - "height": "168", - "weight": "46", - "bust": "83", - "waist": "55", - "hip": "85" - }, - "event": [] - } - ], - "units": [ - { - "id": "209", - "name": "ロワイヤルスタイルNP" - } - ] - }, - "162": { - "idol_id": 162, - "idol_name": "依田芳乃", - "idol_name_display": "依田芳乃", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3003801", - "hash": "ddf7d3e8d751523496c1bb75a1aa2124", - "profile": { - "height": "151", - "weight": "40", - "bust": "73", - "waist": "53", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3103802", - "hash": "3217691d80f41d408aa0def73b17b549", - "profile": { - "height": "151", - "weight": "40", - "bust": "73", - "waist": "53", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "T.B.チアーズ", - "alias_name_display": "T.B.チアーズ", - "id": "3218601", - "hash": "351c45b33901b324a5a827d191de82f4", - "profile": { - "height": "151", - "weight": "40", - "bust": "73", - "waist": "53", - "hip": "73" - }, - "event": [ - { - "event_id": 1104, - "event_name": "プロダクション対抗トークバトルショーinSUMMER" - } - ] - }, - { - "alias_name": "T.B.チアーズ", - "alias_name_display": "T.B.チアーズ", - "id": "3318602", - "hash": "d7d7bfee2160054f5bd522c3f2d212af", - "profile": { - "height": "151", - "weight": "40", - "bust": "73", - "waist": "53", - "hip": "73" - }, - "event": [ - { - "event_id": 1104, - "event_name": "プロダクション対抗トークバトルショーinSUMMER" - } - ] - }, - { - "alias_name": "ラブリーメイド", - "alias_name_display": "ラブリーメイド", - "id": "3224901", - "hash": "481689442ba6392b4f7f7c1abf423cb1", - "profile": { - "height": "151", - "weight": "40", - "bust": "73", - "waist": "53", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "ラブリーメイド", - "alias_name_display": "ラブリーメイド", - "id": "3324902", - "hash": "640c775e1aa6d19d4498c15ab3d52875", - "profile": { - "height": "151", - "weight": "40", - "bust": "73", - "waist": "53", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "湯浴みの踊子", - "alias_name_display": "湯浴みの踊子", - "id": "3418501", - "hash": "fbb5477c8bd9c2c96d1ab988bc13176a", - "profile": { - "height": "151", - "weight": "40", - "bust": "73", - "waist": "53", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "湯浴みの踊子", - "alias_name_display": "湯浴みの踊子", - "id": "3518502", - "hash": "4774371e15f23136d1bd20eb453c9c17", - "profile": { - "height": "151", - "weight": "40", - "bust": "73", - "waist": "53", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "詩詠みの赤ずきん", - "alias_name_display": "詩詠みの赤ずきん", - "id": "3422801", - "hash": "959f6f75f20bd4127d4bf753ddbe6190", - "profile": { - "height": "151", - "weight": "40", - "bust": "73", - "waist": "53", - "hip": "73" - }, - "event": [ - { - "event_id": 518, - "event_name": "御伽公演 ふれあい狼と小さな赤ずきんちゃん" - } - ] - }, - { - "alias_name": "詩詠みの赤ずきん", - "alias_name_display": "詩詠みの赤ずきん", - "id": "3522802", - "hash": "680348a16a23bd1ab4b7a2bca513b4fb", - "profile": { - "height": "151", - "weight": "40", - "bust": "73", - "waist": "53", - "hip": "73" - }, - "event": [ - { - "event_id": 518, - "event_name": "御伽公演 ふれあい狼と小さな赤ずきんちゃん" - } - ] - }, - { - "alias_name": "春光の少女", - "alias_name_display": "春光の少女", - "id": "3429001", - "hash": "3f57a6b17e176fb96686d081f79e3231", - "profile": { - "height": "151", - "weight": "40", - "bust": "73", - "waist": "53", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "春光の少女", - "alias_name_display": "春光の少女", - "id": "3529002", - "hash": "38f60f4a3ee2a8ada8fed10044b64ea4", - "profile": { - "height": "151", - "weight": "40", - "bust": "73", - "waist": "53", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "ひと結び", - "alias_name_display": "ひと結び", - "id": "3431501", - "hash": "5bc53e5cbba34aff18f7009d50c17f0e", - "profile": { - "height": "151", - "weight": "40", - "bust": "73", - "waist": "53", - "hip": "73" - }, - "event": [ - { - "event_id": 720, - "event_name": "第20回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ひと結び", - "alias_name_display": "ひと結び", - "id": "3531502", - "hash": "db65dbfc1d0326aaacab3176a4160e90", - "profile": { - "height": "151", - "weight": "40", - "bust": "73", - "waist": "53", - "hip": "73" - }, - "event": [ - { - "event_id": 720, - "event_name": "第20回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "黄昏の映し人", - "alias_name_display": "黄昏の映し人", - "id": "3435201", - "hash": "10e4d88969fd0d9e4b366ea9e3fccdb7", - "profile": { - "height": "151", - "weight": "40", - "bust": "73", - "waist": "53", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "黄昏の映し人", - "alias_name_display": "黄昏の映し人", - "id": "3535202", - "hash": "86045c8c5c85b81aa51156dbcdb0e1a5", - "profile": { - "height": "151", - "weight": "40", - "bust": "73", - "waist": "53", - "hip": "73" - }, - "event": [] - } - ], - "units": [ - { - "id": "20", - "name": "山紫水明" - }, - { - "id": "179", - "name": "春霞" - } - ] - }, - "163": { - "idol_id": 163, - "idol_name": "相葉夕美", - "idol_name_display": "相葉夕美", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3200101", - "hash": "af64f16df0293b28f4bd8fd8e213b98a", - "profile": { - "height": "158", - "weight": "42", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3300102", - "hash": "4f7f75478ec8088e7b44680ccf69e601", - "profile": { - "height": "158", - "weight": "42", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "フラワーブーケ", - "alias_name_display": "フラワーブーケ", - "id": "3204301", - "hash": "ea1c96b7284f8fbf531f1c7a17565d01", - "profile": { - "height": "158", - "weight": "42", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "フラワーブーケ", - "alias_name_display": "フラワーブーケ", - "id": "3304302", - "hash": "7c983cf4f268272d5ff3fbc72e20477f", - "profile": { - "height": "158", - "weight": "42", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ガーリースタイルブルー", - "alias_name_display": "ガーリースタイルブルー", - "id": "3206201", - "hash": "91bf66e462541654840ad63b590f7a92", - "profile": { - "height": "158", - "weight": "42", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 107, - "event_name": "秋夜のお月見会" - } - ] - }, - { - "alias_name": "ガーリースタイルピンク", - "alias_name_display": "ガーリースタイルピンク", - "id": "3206202", - "hash": "cc13b2455d70284fa028ffbc71109f3c", - "profile": { - "height": "158", - "weight": "42", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 107, - "event_name": "秋夜のお月見会" - } - ] - }, - { - "alias_name": "ガーリースタイルグリーン", - "alias_name_display": "ガーリースタイルグリーン", - "id": "3206203", - "hash": "a004ebf66be0062d592367afaa9df9c6", - "profile": { - "height": "158", - "weight": "42", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 107, - "event_name": "秋夜のお月見会" - } - ] - }, - { - "alias_name": "ガーリースタイルホワイト", - "alias_name_display": "ガーリースタイルホワイト", - "id": "3206204", - "hash": "e2d746d67b2f486c24276cfdd6c04b91", - "profile": { - "height": "158", - "weight": "42", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 107, - "event_name": "秋夜のお月見会" - } - ] - }, - { - "alias_name": "スタイルセレクトヴァイオレット", - "alias_name_display": "スタイルセレクトヴァイオレット", - "id": "3306205", - "hash": "bc13d4418e9a47ce43493ee837c079f7", - "profile": { - "height": "158", - "weight": "42", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 107, - "event_name": "秋夜のお月見会" - } - ] - }, - { - "alias_name": "スタイルセレクトピンク", - "alias_name_display": "スタイルセレクトピンク", - "id": "3306206", - "hash": "a145b90c3b7a076a742f1243fc934c36", - "profile": { - "height": "158", - "weight": "42", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 107, - "event_name": "秋夜のお月見会" - } - ] - }, - { - "alias_name": "スタイルセレクトグレー", - "alias_name_display": "スタイルセレクトグレー", - "id": "3306207", - "hash": "88d68028d63bd897115d57cb468133a2", - "profile": { - "height": "158", - "weight": "42", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 107, - "event_name": "秋夜のお月見会" - } - ] - }, - { - "alias_name": "スタイルセレクトパープル", - "alias_name_display": "スタイルセレクトパープル", - "id": "3306208", - "hash": "b55a300ec52c0ede5b78a0870d2cfe53", - "profile": { - "height": "158", - "weight": "42", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 107, - "event_name": "秋夜のお月見会" - } - ] - }, - { - "alias_name": "スタイルセレクトホワイト", - "alias_name_display": "スタイルセレクトホワイト", - "id": "3306209", - "hash": "5de0ef2c7289a92299b5870d38c2e290", - "profile": { - "height": "158", - "weight": "42", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 107, - "event_name": "秋夜のお月見会" - } - ] - }, - { - "alias_name": "ニューイヤー", - "alias_name_display": "ニューイヤー", - "id": "3208001", - "hash": "6d85e7f52925d9aeb18f207ea86023de", - "profile": { - "height": "158", - "weight": "42", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 404, - "event_name": "新春アイドルプロデュース" - } - ] - }, - { - "alias_name": "ニューイヤー", - "alias_name_display": "ニューイヤー", - "id": "3308002", - "hash": "e387585b395a759ba2774b9a49921303", - "profile": { - "height": "158", - "weight": "42", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 404, - "event_name": "新春アイドルプロデュース" - } - ] - }, - { - "alias_name": "ムーンライトフラワー", - "alias_name_display": "ムーンライトフラワー", - "id": "3403101", - "hash": "142f146366609731aa64a5c2c2a1a912", - "profile": { - "height": "158", - "weight": "42", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 107, - "event_name": "秋夜のお月見会" - } - ] - }, - { - "alias_name": "ムーンライトフラワー", - "alias_name_display": "ムーンライトフラワー", - "id": "3503102", - "hash": "33f1fa5b1d518cf7c16da1d7d9090aa8", - "profile": { - "height": "158", - "weight": "42", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 107, - "event_name": "秋夜のお月見会" - } - ] - }, - { - "alias_name": "真夏のフラワーガール", - "alias_name_display": "真夏のフラワーガール", - "id": "3408001", - "hash": "9e89c636ff5da917444ca1cabe028fc9", - "profile": { - "height": "158", - "weight": "42", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "真夏のフラワーガール", - "alias_name_display": "真夏のフラワーガール", - "id": "3508002", - "hash": "37589decfcf637e2c37feeee7ddc5ad8", - "profile": { - "height": "158", - "weight": "42", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "甘い花束", - "alias_name_display": "甘い花束", - "id": "3411501", - "hash": "05977029f17dd39831b673314a817238", - "profile": { - "height": "158", - "weight": "42", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 411, - "event_name": "アイドルプロデュース チョコレートフォーユー!" - } - ] - }, - { - "alias_name": "甘い花束", - "alias_name_display": "甘い花束", - "id": "3511502", - "hash": "172930f3ec38def704b5d886c7109aa6", - "profile": { - "height": "158", - "weight": "42", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 411, - "event_name": "アイドルプロデュース チョコレートフォーユー!" - } - ] - }, - { - "alias_name": "花の小悪魔", - "alias_name_display": "花の小悪魔", - "id": "3418301", - "hash": "ab9d06b633142cecac28895ff15b7106", - "profile": { - "height": "158", - "weight": "42", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "花の小悪魔", - "alias_name_display": "花の小悪魔", - "id": "3518302", - "hash": "27dc4499bc995e764ee5277377a7ad11", - "profile": { - "height": "158", - "weight": "42", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "さくらふわり", - "alias_name_display": "さくらふわり", - "id": "3422601", - "hash": "5bc2eb8496976790007a468b9029038b", - "profile": { - "height": "158", - "weight": "42", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "さくらふわり", - "alias_name_display": "さくらふわり", - "id": "3522602", - "hash": "a1a5ad34d1f639456d074faf6cbee8fd", - "profile": { - "height": "158", - "weight": "42", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ふんわり花乙女", - "alias_name_display": "ふんわり花乙女", - "id": "3425701", - "hash": "e60349af525f22282f0cce54d5ddfc39", - "profile": { - "height": "158", - "weight": "42", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ふんわり花乙女", - "alias_name_display": "ふんわり花乙女", - "id": "3525702", - "hash": "3b24b0c37eaa7e5b936d38660580ddeb", - "profile": { - "height": "158", - "weight": "42", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "スプリングフラワー", - "alias_name_display": "スプリングフラワー", - "id": "3429601", - "hash": "ba6e73113054aad2140a54f733256d17", - "profile": { - "height": "158", - "weight": "42", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 719, - "event_name": "ドリームLIVEフェスティバル 節分SP" - } - ] - }, - { - "alias_name": "スプリングフラワー", - "alias_name_display": "スプリングフラワー", - "id": "3529602", - "hash": "3ee0da58a0a9b42484666b12293bcc11", - "profile": { - "height": "158", - "weight": "42", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [ - { - "event_id": 719, - "event_name": "ドリームLIVEフェスティバル 節分SP" - } - ] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "3430801", - "hash": "37c34a83da57161eb7ebe0ad62d4b144", - "profile": { - "height": "158", - "weight": "42", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "3530802", - "hash": "1fc18af0c5a0f3b65e228e7d5abfd54e", - "profile": { - "height": "158", - "weight": "42", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "花しずく", - "alias_name_display": "花しずく", - "id": "3434801", - "hash": "1fd2e753404d29ba95066c277f752db7", - "profile": { - "height": "158", - "weight": "42", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "花しずく", - "alias_name_display": "花しずく", - "id": "3534802", - "hash": "eff3e13dd30475d420b7f95ce86c2bc4", - "profile": { - "height": "158", - "weight": "42", - "bust": "81", - "waist": "57", - "hip": "80" - }, - "event": [] - } - ], - "units": [ - { - "id": "51", - "name": "フィオレンティナ" - }, - { - "id": "57", - "name": "ミステリックガーデン" - }, - { - "id": "75", - "name": "Flowery" - }, - { - "id": "189", - "name": "アインフェリア" - }, - { - "id": "202", - "name": "サンフラワー" - } - ] - }, - "164": { - "idol_id": 164, - "idol_name": "野々村そら", - "idol_name_display": "野々村そら", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3200201", - "hash": "bb90dd3425c2e096e9b48a928e734b8b", - "profile": { - "height": "157", - "weight": "46", - "bust": "84", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3300202", - "hash": "91a74c8b18e013ecb8a341d4586aa8f5", - "profile": { - "height": "157", - "weight": "46", - "bust": "84", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "イタリアンスタイル", - "alias_name_display": "イタリアンスタイル", - "id": "3209201", - "hash": "a2b68b8474b5286d60a33891113e57df", - "profile": { - "height": "157", - "weight": "46", - "bust": "84", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 503, - "event_name": "アイドルLIVEツアーinイタリア" - } - ] - }, - { - "alias_name": "イタリアンスタイル", - "alias_name_display": "イタリアンスタイル", - "id": "3309202", - "hash": "e1e647efe2dc11ccc84bd244ced05c06", - "profile": { - "height": "157", - "weight": "46", - "bust": "84", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 503, - "event_name": "アイドルLIVEツアーinイタリア" - } - ] - }, - { - "alias_name": "ロワイヤルスタイル", - "alias_name_display": "ロワイヤルスタイル", - "id": "3212901", - "hash": "9305d01a77298c6ccd1dc85c31312ed6", - "profile": { - "height": "157", - "weight": "46", - "bust": "84", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 801, - "event_name": "アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ロワイヤルスタイル", - "alias_name_display": "ロワイヤルスタイル", - "id": "3312902", - "hash": "bf38507a985eb502dc11b0669c035668", - "profile": { - "height": "157", - "weight": "46", - "bust": "84", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 801, - "event_name": "アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "はっぴーはっぴー", - "alias_name_display": "はっぴーはっぴー", - "id": "3215101", - "hash": "76e96d82a4a7800e7f41379167f70830", - "profile": { - "height": "157", - "weight": "46", - "bust": "84", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "はっぴーはっぴー", - "alias_name_display": "はっぴーはっぴー", - "id": "3315102", - "hash": "ba7243eb399089267666d8b44f3eb6a2", - "profile": { - "height": "157", - "weight": "46", - "bust": "84", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "T.B.ハロウィン", - "alias_name_display": "T.B.ハロウィン", - "id": "3219901", - "hash": "2dbac60081ce8d246d03957ff5c8337d", - "profile": { - "height": "157", - "weight": "46", - "bust": "84", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 1106, - "event_name": "プロダクション対抗トークバトルショー ハロウィンSP" - } - ] - }, - { - "alias_name": "T.B.ハロウィン", - "alias_name_display": "T.B.ハロウィン", - "id": "3319902", - "hash": "cd3b73854b58929671aa432ab259417e", - "profile": { - "height": "157", - "weight": "46", - "bust": "84", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 1106, - "event_name": "プロダクション対抗トークバトルショー ハロウィンSP" - } - ] - }, - { - "alias_name": "ラブリーメイド", - "alias_name_display": "ラブリーメイド", - "id": "3225001", - "hash": "152e419be9a216a353b9297511456a15", - "profile": { - "height": "157", - "weight": "46", - "bust": "84", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ラブリーメイド", - "alias_name_display": "ラブリーメイド", - "id": "3325002", - "hash": "ac84d4d34bca1fb65b66233fc5b864b6", - "profile": { - "height": "157", - "weight": "46", - "bust": "84", - "waist": "57", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "フライトバラエティ", - "alias_name_display": "フライトバラエティ", - "id": "3329002", - "hash": "7ef301dfd58f3bb7ce5d82667ade6bf4", - "profile": { - "height": "157", - "weight": "46", - "bust": "84", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 1803, - "event_name": "アイドルバラエティ 大空への挑戦 ~Fly me to the Sky~" - } - ] - }, - { - "alias_name": "ろでお☆がーる", - "alias_name_display": "ろでお☆がーる", - "id": "3414701", - "hash": "5a3f49b98c1c6eed21a5554324df93a4", - "profile": { - "height": "157", - "weight": "46", - "bust": "84", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 512, - "event_name": "西部公演 ガンスリンガージャーニー" - } - ] - }, - { - "alias_name": "ろでお☆がーる", - "alias_name_display": "ろでお☆がーる", - "id": "3514702", - "hash": "4549aa1570a45b094e0c93f87e7456a8", - "profile": { - "height": "157", - "weight": "46", - "bust": "84", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 512, - "event_name": "西部公演 ガンスリンガージャーニー" - } - ] - }, - { - "alias_name": "わいるどしゃうと", - "alias_name_display": "わいるどしゃうと", - "id": "3423001", - "hash": "ac00fc26dcf39db7b99b0dbd25fba25d", - "profile": { - "height": "157", - "weight": "46", - "bust": "84", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": "021", - "event_name": "第21回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "わいるどしゃうと", - "alias_name_display": "わいるどしゃうと", - "id": "3523002", - "hash": "9f7bcd2b186da54f58a6c708b6673e2b", - "profile": { - "height": "157", - "weight": "46", - "bust": "84", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": "021", - "event_name": "第21回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "ぷりむすたいる", - "alias_name_display": "ぷりむすたいる", - "id": "3437101", - "hash": "c9ff2aa64967a2cbc5455bb32ebc02ec", - "profile": { - "height": "157", - "weight": "46", - "bust": "84", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 1410, - "event_name": "第10回ぷちデレラコレクション" - } - ] - }, - { - "alias_name": "ぷりむすたいる", - "alias_name_display": "ぷりむすたいる", - "id": "3537102", - "hash": "3c9777fee6bd72b52c4700f384987b3a", - "profile": { - "height": "157", - "weight": "46", - "bust": "84", - "waist": "57", - "hip": "85" - }, - "event": [ - { - "event_id": 1410, - "event_name": "第10回ぷちデレラコレクション" - } - ] - } - ], - "units": [ - { - "id": "86", - "name": "イタリアンスタイル" - }, - { - "id": "208", - "name": "ロワイヤルスタイル" - } - ] - }, - "165": { - "idol_id": 165, - "idol_name": "浜川愛結奈", - "idol_name_display": "浜川愛結奈", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3200301", - "hash": "7fa02e42c440b57785448072345ef8e0", - "profile": { - "height": "168", - "weight": "50", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3300302", - "hash": "a3ccb7b3c841ae42ca70437699830a6b", - "profile": { - "height": "168", - "weight": "50", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "浴衣祭り", - "alias_name_display": "浴衣祭り", - "id": "3205301", - "hash": "5041107d9f74a0719ed4c66d7945f270", - "profile": { - "height": "168", - "weight": "50", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "浴衣祭り", - "alias_name_display": "浴衣祭り", - "id": "3305302", - "hash": "da62089ea524fd4255801e539746c146", - "profile": { - "height": "168", - "weight": "50", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "エレガントJKT", - "alias_name_display": "エレガントJKT", - "id": "3213301", - "hash": "18303720c0d458d42f75000b7a801f94", - "profile": { - "height": "168", - "weight": "50", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "エレガントJKT", - "alias_name_display": "エレガントJKT", - "id": "3313302", - "hash": "1c2b58322ae59b405e3147536884ac99", - "profile": { - "height": "168", - "weight": "50", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ビーチサイド", - "alias_name_display": "ビーチサイド", - "id": "3217801", - "hash": "fb666de8cb248a5cb534465aad1a1ee6", - "profile": { - "height": "168", - "weight": "50", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ビーチサイド", - "alias_name_display": "ビーチサイド", - "id": "3317802", - "hash": "3c1c4486f502c31f1da9502917400d14", - "profile": { - "height": "168", - "weight": "50", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ジョッキースタイル", - "alias_name_display": "ジョッキースタイル", - "id": "3222501", - "hash": "a0e1b3d2ecd96234e3477d67e302d240", - "profile": { - "height": "168", - "weight": "50", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ジョッキースタイル", - "alias_name_display": "ジョッキースタイル", - "id": "3322502", - "hash": "53b5cd0bd501f09c4c6a209b3b2ef963", - "profile": { - "height": "168", - "weight": "50", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "クッキングバラエティ", - "alias_name_display": "クッキングバラエティ", - "id": "3325302", - "hash": "9db33f824b8d4ecb038436a2e7399d57", - "profile": { - "height": "168", - "weight": "50", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [ - { - "event_id": 1801, - "event_name": "アイドルバラエティ 究極のショートケーキを作ろう!" - } - ] - }, - { - "alias_name": "自信の裏側", - "alias_name_display": "自信の裏側", - "id": "3227901", - "hash": "098b55088316d0bd6eb28bdea008654d", - "profile": { - "height": "168", - "weight": "50", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "自信の裏側", - "alias_name_display": "自信の裏側", - "id": "3327902", - "hash": "c1f3b08ee2f0a1121be49b71b54bd721", - "profile": { - "height": "168", - "weight": "50", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "サマーガール", - "alias_name_display": "サマーガール", - "id": "3229501", - "hash": "e82a880bb685e3fd108f1720cdc27959", - "profile": { - "height": "168", - "weight": "50", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [ - { - "event_id": 722, - "event_name": "夏祭りDEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "サマーガール", - "alias_name_display": "サマーガール", - "id": "3329502", - "hash": "df4914c7a9d1da0c7113ff56dfff3175", - "profile": { - "height": "168", - "weight": "50", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [ - { - "event_id": 722, - "event_name": "夏祭りDEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ハイカラガンナー", - "alias_name_display": "ハイカラガンナー", - "id": "3333802", - "hash": "dec1007c6dc06d01e61a7bf2ff65e44b", - "profile": { - "height": "168", - "weight": "50", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [ - { - "event_id": 1907, - "event_name": "ディアリースタークエスト ~夜桜奇譚~" - } - ] - }, - { - "alias_name": "セクシーディーヴァ", - "alias_name_display": "セクシーディーヴァ", - "id": "3406401", - "hash": "bd8544d7fee8e557f5b223836d20ff0d", - "profile": { - "height": "168", - "weight": "50", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [ - { - "event_id": 504, - "event_name": "アイドルLIVEツアーinスペイン" - } - ] - }, - { - "alias_name": "セクシーディーヴァ", - "alias_name_display": "セクシーディーヴァ", - "id": "3506402", - "hash": "447b6056924998cacf744688697a4f1d", - "profile": { - "height": "168", - "weight": "50", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [ - { - "event_id": 504, - "event_name": "アイドルLIVEツアーinスペイン" - } - ] - }, - { - "alias_name": "パナシェ・ロワイヤル", - "alias_name_display": "パナシェ・ロワイヤル", - "id": "3418001", - "hash": "688413c83d5f09927ee6ab46b0247988", - "profile": { - "height": "168", - "weight": "50", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [ - { - "event_id": 807, - "event_name": "第7回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "パナシェ・ロワイヤル", - "alias_name_display": "パナシェ・ロワイヤル", - "id": "3518002", - "hash": "0ff15c0dd87a8d2bed9916f45007d884", - "profile": { - "height": "168", - "weight": "50", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [ - { - "event_id": 807, - "event_name": "第7回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "アンルーリィチアー", - "alias_name_display": "アンルーリィチアー", - "id": "3436001", - "hash": "e8a3517e4e352e1a355526953320449b", - "profile": { - "height": "168", - "weight": "50", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [ - { - "event_id": 1509, - "event_name": "第9回チーム対抗トークバトルショー" - } - ] - }, - { - "alias_name": "アンルーリィチアー", - "alias_name_display": "アンルーリィチアー", - "id": "3536002", - "hash": "aa9f7f62858b8a7afc5bf79a5d8bb989", - "profile": { - "height": "168", - "weight": "50", - "bust": "92", - "waist": "58", - "hip": "85" - }, - "event": [ - { - "event_id": 1509, - "event_name": "第9回チーム対抗トークバトルショー" - } - ] - } - ], - "units": [ - { - "id": "118", - "name": "ビューティーアリュール" - } - ] - }, - "166": { - "idol_id": 166, - "idol_name": "若林智香", - "idol_name_display": "若林智香", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3200401", - "hash": "bf61ef00c0f50870767799b93134aed8", - "profile": { - "height": "156", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3300402", - "hash": "aeed90627f00bd22dca766f74cba96b7", - "profile": { - "height": "156", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "パジャマパーティー", - "alias_name_display": "パジャマパーティー", - "id": "3204501", - "hash": "131c89b09553e3b1adf8211a825bef94", - "profile": { - "height": "156", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "パジャマパーティー", - "alias_name_display": "パジャマパーティー", - "id": "3304502", - "hash": "108bc0c3aa328e2ac67782b356672155", - "profile": { - "height": "156", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "バレンタインパーティー", - "alias_name_display": "バレンタインパーティー", - "id": "3208501", - "hash": "5804656c2c53a974b9dfd2df368f4309", - "profile": { - "height": "156", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "バレンタインパーティー", - "alias_name_display": "バレンタインパーティー", - "id": "3308502", - "hash": "ec7057af8940d714ad8af9f3ae8300ea", - "profile": { - "height": "156", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "サマーバケーション", - "alias_name_display": "サマーバケーション", - "id": "3212401", - "hash": "f08432b1b1ed5f779e4a05950da2869b", - "profile": { - "height": "156", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 211, - "event_name": "アイドルサバイバルinサマーバケーション" - } - ] - }, - { - "alias_name": "サマーバケーション", - "alias_name_display": "サマーバケーション", - "id": "3312402", - "hash": "38d77ce3afc38411d2dae8c5fe362cd9", - "profile": { - "height": "156", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 211, - "event_name": "アイドルサバイバルinサマーバケーション" - } - ] - }, - { - "alias_name": "青春のありか", - "alias_name_display": "青春のありか", - "id": "3218901", - "hash": "ad51b71ac5197e926d54027ee34c5439", - "profile": { - "height": "156", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 708, - "event_name": "第8回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "青春のありか", - "alias_name_display": "青春のありか", - "id": "3318902", - "hash": "53ef3721dd9737e2ff8d88136230886b", - "profile": { - "height": "156", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 708, - "event_name": "第8回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ネクサスガール", - "alias_name_display": "ネクサスガール", - "id": "3223901", - "hash": "752bf582313e7183b20823fdcfaf64db", - "profile": { - "height": "156", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "ネクサスガール", - "alias_name_display": "ネクサスガール", - "id": "3323902", - "hash": "2c4e927cadd73b11da5c722e6b32019a", - "profile": { - "height": "156", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "スクールプール", - "alias_name_display": "スクールプール", - "id": "3229601", - "hash": "4fb0aa129a4ecd3a5ae5fb262c77dd5a", - "profile": { - "height": "156", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "スクールプール", - "alias_name_display": "スクールプール", - "id": "3329602", - "hash": "22177b0b3d43621ab1f291b07ad87c2f", - "profile": { - "height": "156", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "ロワイヤルスタイルND", - "alias_name_display": "ロワイヤルスタイルND", - "id": "3232301", - "hash": "9c9bd76b06bada99f133ffe795d63d51", - "profile": { - "height": "156", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 821, - "event_name": "第21回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ロワイヤルスタイルND", - "alias_name_display": "ロワイヤルスタイルND", - "id": "3332302", - "hash": "95eca02219ea79f8580e430b77051710", - "profile": { - "height": "156", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 821, - "event_name": "第21回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "フレッシュチアガール", - "alias_name_display": "フレッシュチアガール", - "id": "3405601", - "hash": "cdb51d58743eed84230167094b26d0e1", - "profile": { - "height": "156", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "フレッシュチアガール", - "alias_name_display": "フレッシュチアガール", - "id": "3505602", - "hash": "00bea124dc35973d55b52fa765ad9668", - "profile": { - "height": "156", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "ハッピーチアー", - "alias_name_display": "ハッピーチアー", - "id": "3410701", - "hash": "83d9e2030ef0d1c4ab0f46e104bebe2d", - "profile": { - "height": "156", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 509, - "event_name": "新春LIVEツアーカーニバル" - } - ] - }, - { - "alias_name": "ハッピーチアー", - "alias_name_display": "ハッピーチアー", - "id": "3510702", - "hash": "0a37155927a181d59ee7979bf5f98698", - "profile": { - "height": "156", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 509, - "event_name": "新春LIVEツアーカーニバル" - } - ] - }, - { - "alias_name": "チアフル・ロワイヤル", - "alias_name_display": "チアフル・ロワイヤル", - "id": "3422401", - "hash": "fd801652029b6d929ee53d416b4e8ec0", - "profile": { - "height": "156", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 811, - "event_name": "第11回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "チアフル・ロワイヤル", - "alias_name_display": "チアフル・ロワイヤル", - "id": "3522402", - "hash": "d072b96acd476cccdb2b94bd8199a5d8", - "profile": { - "height": "156", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": 811, - "event_name": "第11回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "春うらら", - "alias_name_display": "春うらら", - "id": "3430201", - "hash": "097f3b60e7f177c70488cb8d993b77fa", - "profile": { - "height": "156", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": "026", - "event_name": "第26回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "春うらら", - "alias_name_display": "春うらら", - "id": "3530202", - "hash": "90acff12db7ec8895021c3726ee2ab58", - "profile": { - "height": "156", - "weight": "45", - "bust": "82", - "waist": "57", - "hip": "83" - }, - "event": [ - { - "event_id": "026", - "event_name": "第26回プロダクションマッチフェスティバル" - } - ] - } - ], - "units": [ - { - "id": "148", - "name": "チアフルボンバーズ" - }, - { - "id": "150", - "name": "ヒートアップ☆チアーズ" - }, - { - "id": "210", - "name": "ロワイヤルスタイルND" - } - ] - }, - "167": { - "idol_id": 167, - "idol_name": "城ヶ崎美嘉", - "idol_name_display": "城ヶ崎美嘉", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3200501", - "hash": "73eea87bdec62f29de318e50e84f021d", - "profile": { - "height": "162", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3300502", - "hash": "61a1dfc4c713b5d5a094a19923bacc08", - "profile": { - "height": "162", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ギャルブロッサム", - "alias_name_display": "ギャルブロッサム", - "id": "3222201", - "hash": "c407e2e483b9ff36689e486dfbd847e4", - "profile": { - "height": "162", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 712, - "event_name": "花見DEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ギャルブロッサム", - "alias_name_display": "ギャルブロッサム", - "id": "3322202", - "hash": "4f4bc793b515a5c802b9ab7e0a9198e8", - "profile": { - "height": "162", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 712, - "event_name": "花見DEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ニューヴォーグ", - "alias_name_display": "ニューヴォーグ", - "id": "3230401", - "hash": "d6fdc4c2a992ea8b249d6015d1186e6c", - "profile": { - "height": "162", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ニューヴォーグ", - "alias_name_display": "ニューヴォーグ", - "id": "3330402", - "hash": "7fe0b25036ad4318f240e85827e4ba96", - "profile": { - "height": "162", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "カリスマギャル", - "alias_name_display": "カリスマギャル", - "id": "3402201", - "hash": "30fe4887cbc082bf375169d6f83a1ffa", - "profile": { - "height": "162", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "カリスマギャル", - "alias_name_display": "カリスマギャル", - "id": "3502202", - "hash": "6ccf37a6cfdd206dc34434a1be3d56b8", - "profile": { - "height": "162", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "3402701", - "hash": "7af6cc3d2ca1f5d15230f2366280a444", - "profile": { - "height": "162", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "3502702", - "hash": "53a89429c64132c4d0058aea4b233fca", - "profile": { - "height": "162", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "シークレット★ハート", - "alias_name_display": "シークレット★ハート", - "id": "3404701", - "hash": "f6e5a4e341770463ef088e55921596fa", - "profile": { - "height": "162", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "シークレット★ハート", - "alias_name_display": "シークレット★ハート", - "id": "3504702", - "hash": "f9385a42acabcfae3013c79d5466edf4", - "profile": { - "height": "162", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ラブ★クリスマス", - "alias_name_display": "ラブ★クリスマス", - "id": "3410201", - "hash": "c34d79efd9030ebf948a18cbf9df7bf3", - "profile": { - "height": "162", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ラブ★クリスマス", - "alias_name_display": "ラブ★クリスマス", - "id": "3510202", - "hash": "70ca98bb88391ddbaf3841e5912c7367", - "profile": { - "height": "162", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ワンダフルマジック", - "alias_name_display": "ワンダフルマジック", - "id": "3412801", - "hash": "4a3abe4cfb93b694333cddf0c8521f64", - "profile": { - "height": "162", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ワンダフルマジック", - "alias_name_display": "ワンダフルマジック", - "id": "3512802", - "hash": "e204975f21b0e3374a0633d0522f1b19", - "profile": { - "height": "162", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "夏のユウワク", - "alias_name_display": "夏のユウワク", - "id": "3416301", - "hash": "76c2eb6eac6f3d975264dfaac44157c7", - "profile": { - "height": "162", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "夏のユウワク", - "alias_name_display": "夏のユウワク", - "id": "3516302", - "hash": "eb38818dc3fd59a5cae7f69a4f743f6c", - "profile": { - "height": "162", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "3rdアニバーサリー", - "alias_name_display": "3rdアニバーサリー", - "id": "3419401", - "hash": "21886e4c2903ab6da97230b772c6804f", - "profile": { - "height": "162", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 415, - "event_name": "アイドルプロデュース the 3rd Anniversary" - } - ] - }, - { - "alias_name": "3rdアニバーサリー", - "alias_name_display": "3rdアニバーサリー", - "id": "3519402", - "hash": "5f0ff7b6385298516aedd9b4e334a018", - "profile": { - "height": "162", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 415, - "event_name": "アイドルプロデュース the 3rd Anniversary" - } - ] - }, - { - "alias_name": "3rdアニバーサリー・S", - "alias_name_display": "3rdアニバーサリー・S", - "id": "3419501", - "hash": "942ee9cb2a6140de3f7f35122ebe7e00", - "profile": { - "height": "162", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 415, - "event_name": "アイドルプロデュース the 3rd Anniversary" - } - ] - }, - { - "alias_name": "3rdアニバーサリー・S", - "alias_name_display": "3rdアニバーサリー・S", - "id": "3519502", - "hash": "e6bafa973570753123cd686c18c2b975", - "profile": { - "height": "162", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [ - { - "event_id": 415, - "event_name": "アイドルプロデュース the 3rd Anniversary" - } - ] - }, - { - "alias_name": "ラブ★サマーナイト", - "alias_name_display": "ラブ★サマーナイト", - "id": "3424801", - "hash": "3ea30b1c14dafc422ae4b4eb46aaa54e", - "profile": { - "height": "162", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ラブ★サマーナイト", - "alias_name_display": "ラブ★サマーナイト", - "id": "3524802", - "hash": "f84e6d3c1d11b46d7efe8e53e1013eb4", - "profile": { - "height": "162", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "G4U!", - "alias_name_display": "G4U!", - "id": "3530502", - "hash": "8d9c26ea00d4d16b952f129ce7c80034", - "profile": { - "height": "162", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ラブ★ドクター", - "alias_name_display": "ラブ★ドクター", - "id": "3430601", - "hash": "7523568f90f1dabbcacf633f6f178729", - "profile": { - "height": "162", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ラブ★ドクター", - "alias_name_display": "ラブ★ドクター", - "id": "3530602", - "hash": "61497838f9a33ff6592fa0e11c4c2c1a", - "profile": { - "height": "162", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ユア★ウォーム", - "alias_name_display": "ユア★ウォーム", - "id": "3437501", - "hash": "4de072a494475aa83d7ee9eca92de2bb", - "profile": { - "height": "162", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "ユア★ウォーム", - "alias_name_display": "ユア★ウォーム", - "id": "3537502", - "hash": "cd1aaa15207932e56aaa449c14daa578", - "profile": { - "height": "162", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "たたいてご褒美", - "alias_name_display": "たたいてご褒美", - "id": "3538702", - "hash": "062f663090a8424fca1a20133b774120", - "profile": { - "height": "162", - "weight": "43", - "bust": "80", - "waist": "56", - "hip": "82" - }, - "event": [] - } - ], - "units": [ - { - "id": "50", - "name": "ファミリアツイン" - }, - { - "id": "113", - "name": "セクシーギャルズ" - }, - { - "id": "185", - "name": "LiPPS" - }, - { - "id": "204", - "name": "トロピカル☆スターズ" - }, - { - "id": "212", - "name": "CINDERELLA GIRLS" - } - ] - }, - "168": { - "idol_id": 168, - "idol_name": "城ヶ崎莉嘉", - "idol_name_display": "城ヶ崎莉嘉", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3200601", - "hash": "959bc006631151106b824edd21901161", - "profile": { - "height": "149", - "weight": "36", - "bust": "72", - "waist": "54", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3300602", - "hash": "2e78f311230052d2ccf604dc941ebc8c", - "profile": { - "height": "149", - "weight": "36", - "bust": "72", - "waist": "54", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "夏休み", - "alias_name_display": "夏休み", - "id": "3218101", - "hash": "d8d930d28b4ce932041240e81f907905", - "profile": { - "height": "149", - "weight": "36", - "bust": "72", - "waist": "54", - "hip": "75" - }, - "event": [ - { - "event_id": 413, - "event_name": "みんなのなつやすみ" - } - ] - }, - { - "alias_name": "夏休み", - "alias_name_display": "夏休み", - "id": "3318102", - "hash": "78f52e2a15799e1e06822dfe51d3eaa3", - "profile": { - "height": "149", - "weight": "36", - "bust": "72", - "waist": "54", - "hip": "75" - }, - "event": [ - { - "event_id": 413, - "event_name": "みんなのなつやすみ" - } - ] - }, - { - "alias_name": "笑顔の夏休み", - "alias_name_display": "笑顔の夏休み", - "id": "3218201", - "hash": "7adcfc7258831785ce0f855a13f244a6", - "profile": { - "height": "149", - "weight": "36", - "bust": "72", - "waist": "54", - "hip": "75" - }, - "event": [ - { - "event_id": 413, - "event_name": "みんなのなつやすみ" - } - ] - }, - { - "alias_name": "笑顔の夏休み", - "alias_name_display": "笑顔の夏休み", - "id": "3318202", - "hash": "a8164aee777ecd0f1802e98e5acaeaef", - "profile": { - "height": "149", - "weight": "36", - "bust": "72", - "waist": "54", - "hip": "75" - }, - "event": [ - { - "event_id": 413, - "event_name": "みんなのなつやすみ" - } - ] - }, - { - "alias_name": "ハイカラサクラ", - "alias_name_display": "ハイカラサクラ", - "id": "3222301", - "hash": "fb731622d7dbb239f5877d838b883c02", - "profile": { - "height": "149", - "weight": "36", - "bust": "72", - "waist": "54", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "ハイカラサクラ", - "alias_name_display": "ハイカラサクラ", - "id": "3322302", - "hash": "5013bb8c3861ccf38077eb5222cb2282", - "profile": { - "height": "149", - "weight": "36", - "bust": "72", - "waist": "54", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "3401401", - "hash": "6ea43f0179614b007603260b8bdf8fe1", - "profile": { - "height": "149", - "weight": "36", - "bust": "72", - "waist": "54", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "3501402", - "hash": "f4a121eb8de314497224aed4155c7291", - "profile": { - "height": "149", - "weight": "36", - "bust": "72", - "waist": "54", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "カリスマちびギャル", - "alias_name_display": "カリスマちびギャル", - "id": "3402301", - "hash": "98998d4de666be93b4e9667965b80808", - "profile": { - "height": "149", - "weight": "36", - "bust": "72", - "waist": "54", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "カリスマちびギャル", - "alias_name_display": "カリスマちびギャル", - "id": "3502302", - "hash": "ae8fb02e54bda306eb45dd2ecf875185", - "profile": { - "height": "149", - "weight": "36", - "bust": "72", - "waist": "54", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "ハッピー☆クリスマス", - "alias_name_display": "ハッピー☆クリスマス", - "id": "3404101", - "hash": "d9b090bc9ba7b6b5cf9004ac1014fde3", - "profile": { - "height": "149", - "weight": "36", - "bust": "72", - "waist": "54", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "ハッピー☆クリスマス", - "alias_name_display": "ハッピー☆クリスマス", - "id": "3504102", - "hash": "59b6132bdb66f678941338690c3eca2f", - "profile": { - "height": "149", - "weight": "36", - "bust": "72", - "waist": "54", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "シークレット☆モード", - "alias_name_display": "シークレット☆モード", - "id": "3409401", - "hash": "5f884308996c7f7369f304379ac028cc", - "profile": { - "height": "149", - "weight": "36", - "bust": "72", - "waist": "54", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "シークレット☆モード", - "alias_name_display": "シークレット☆モード", - "id": "3509402", - "hash": "e3990a65bbb99ede5a0fd7cd3ce57100", - "profile": { - "height": "149", - "weight": "36", - "bust": "72", - "waist": "54", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "ワンダフルマジック", - "alias_name_display": "ワンダフルマジック", - "id": "3412601", - "hash": "4ecd248e0f400d89b150c7d9c6f125ae", - "profile": { - "height": "149", - "weight": "36", - "bust": "72", - "waist": "54", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "ワンダフルマジック", - "alias_name_display": "ワンダフルマジック", - "id": "3512602", - "hash": "45e3224de0e8d9b80d0739e4dbc6e523", - "profile": { - "height": "149", - "weight": "36", - "bust": "72", - "waist": "54", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "ウィンター☆モード", - "alias_name_display": "ウィンター☆モード", - "id": "3420001", - "hash": "5ae975e8058ac9fa8dfe9fdabe6d9249", - "profile": { - "height": "149", - "weight": "36", - "bust": "72", - "waist": "54", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "ウィンター☆モード", - "alias_name_display": "ウィンター☆モード", - "id": "3520002", - "hash": "b67b9f2b0751ff7104544f92e91151b9", - "profile": { - "height": "149", - "weight": "36", - "bust": "72", - "waist": "54", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "DONDOKOリズム", - "alias_name_display": "DONDOKOリズム", - "id": "3521002", - "hash": "c412e6116df1c59a54a022a2e4c0ae2a", - "profile": { - "height": "149", - "weight": "36", - "bust": "72", - "waist": "54", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "凸レーション", - "alias_name_display": "凸レーション", - "id": "3525502", - "hash": "79455fc3b740c160d1c1dc6d652b551a", - "profile": { - "height": "149", - "weight": "36", - "bust": "72", - "waist": "54", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "G4U!", - "alias_name_display": "G4U!", - "id": "3526002", - "hash": "4850054db6e522f5a192e1bbef55e563", - "profile": { - "height": "149", - "weight": "36", - "bust": "72", - "waist": "54", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "ナイト☆バニーギャル", - "alias_name_display": "ナイト☆バニーギャル", - "id": "3426401", - "hash": "1cf8e7776ccc0f5695f30fc7fced834d", - "profile": { - "height": "149", - "weight": "36", - "bust": "72", - "waist": "54", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "ナイト☆バニーギャル", - "alias_name_display": "ナイト☆バニーギャル", - "id": "3526402", - "hash": "e254aad0347bd2ef9680f7313b26dbe9", - "profile": { - "height": "149", - "weight": "36", - "bust": "72", - "waist": "54", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "ちょこっと☆ギャル", - "alias_name_display": "ちょこっと☆ギャル", - "id": "3429801", - "hash": "8bcbc5887f1256838f7ea35c8cd3d351", - "profile": { - "height": "149", - "weight": "36", - "bust": "72", - "waist": "54", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "ちょこっと☆ギャル", - "alias_name_display": "ちょこっと☆ギャル", - "id": "3529802", - "hash": "efc88c60acb3ff739690c459246d436b", - "profile": { - "height": "149", - "weight": "36", - "bust": "72", - "waist": "54", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "シンデレラドリーム", - "alias_name_display": "シンデレラドリーム", - "id": "3433301", - "hash": "71e2444ffa964bc4222f3afcb11af6b7", - "profile": { - "height": "149", - "weight": "36", - "bust": "72", - "waist": "54", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "シンデレラドリーム", - "alias_name_display": "シンデレラドリーム", - "id": "3533302", - "hash": "10b54a98f80b3573f8a64e1f4f1517e8", - "profile": { - "height": "149", - "weight": "36", - "bust": "72", - "waist": "54", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "とびきり☆ニューイヤー", - "alias_name_display": "とびきり☆ニューイヤー", - "id": "3437201", - "hash": "44d249234243ecd62758f1119e59670e", - "profile": { - "height": "149", - "weight": "36", - "bust": "72", - "waist": "54", - "hip": "75" - }, - "event": [ - { - "event_id": 726, - "event_name": "ドリームLIVEフェスティバル新春SP" - } - ] - }, - { - "alias_name": "とびきり☆ニューイヤー", - "alias_name_display": "とびきり☆ニューイヤー", - "id": "3537202", - "hash": "2c6f68904c5e8c886b60fcc1c01682df", - "profile": { - "height": "149", - "weight": "36", - "bust": "72", - "waist": "54", - "hip": "75" - }, - "event": [ - { - "event_id": 726, - "event_name": "ドリームLIVEフェスティバル新春SP" - } - ] - } - ], - "units": [ - { - "id": "50", - "name": "ファミリアツイン" - }, - { - "id": "107", - "name": "ロッキングガール" - }, - { - "id": "149", - "name": "凸レーション" - }, - { - "id": "158", - "name": "ハイカラサクラ" - }, - { - "id": "186", - "name": "LittlePOPS" - }, - { - "id": "204", - "name": "トロピカル☆スターズ" - }, - { - "id": "213", - "name": "CINDERELLA PROJECT" - } - ] - }, - "169": { - "idol_id": 169, - "idol_name": "仙崎恵磨", - "idol_name_display": "仙崎恵磨", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3200701", - "hash": "9ffc7c24c1e76bcb922e7b8c1b40fd66", - "profile": { - "height": "156", - "weight": "45", - "bust": "81", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3300702", - "hash": "d76f5e3183e18f6bdc72e2c29842942b", - "profile": { - "height": "156", - "weight": "45", - "bust": "81", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "UKスタイル", - "alias_name_display": "UKスタイル", - "id": "3208401", - "hash": "95f215e70e1bcf2d255ba093a53fc51a", - "profile": { - "height": "156", - "weight": "45", - "bust": "81", - "waist": "55", - "hip": "81" - }, - "event": [ - { - "event_id": 502, - "event_name": "アイドルLIVEツアーinイギリス" - } - ] - }, - { - "alias_name": "UKスタイル", - "alias_name_display": "UKスタイル", - "id": "3308402", - "hash": "908dafec84548cbf8c75842184023c91", - "profile": { - "height": "156", - "weight": "45", - "bust": "81", - "waist": "55", - "hip": "81" - }, - "event": [ - { - "event_id": 502, - "event_name": "アイドルLIVEツアーinイギリス" - } - ] - }, - { - "alias_name": "ロワイヤルスタイル", - "alias_name_display": "ロワイヤルスタイル", - "id": "3214501", - "hash": "fde23288979f4580f5deedef60cb501a", - "profile": { - "height": "156", - "weight": "45", - "bust": "81", - "waist": "55", - "hip": "81" - }, - "event": [ - { - "event_id": 802, - "event_name": "第2回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ロワイヤルスタイル", - "alias_name_display": "ロワイヤルスタイル", - "id": "3314502", - "hash": "cb50684de885349d4aa14adf1dadd9b4", - "profile": { - "height": "156", - "weight": "45", - "bust": "81", - "waist": "55", - "hip": "81" - }, - "event": [ - { - "event_id": 802, - "event_name": "第2回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "スリーピースパンクス", - "alias_name_display": "スリーピースパンクス", - "id": "3217401", - "hash": "1eb173041b3bf713cef78c219d521b76", - "profile": { - "height": "156", - "weight": "45", - "bust": "81", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "スリーピースパンクス", - "alias_name_display": "スリーピースパンクス", - "id": "3317402", - "hash": "e3ac8ab38a64054351d2e1299a9c6e3f", - "profile": { - "height": "156", - "weight": "45", - "bust": "81", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "秋色温泉", - "alias_name_display": "秋色温泉", - "id": "3220101", - "hash": "287daffde22b976c189b75a094c22f5f", - "profile": { - "height": "156", - "weight": "45", - "bust": "81", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "秋色温泉", - "alias_name_display": "秋色温泉", - "id": "3320102", - "hash": "6a8b35f08771019784ec87e3be87d16f", - "profile": { - "height": "156", - "weight": "45", - "bust": "81", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ハウリングダンサー", - "alias_name_display": "ハウリングダンサー", - "id": "3325802", - "hash": "5b35d5a564068d9a4eabb7d3e29fd334", - "profile": { - "height": "156", - "weight": "45", - "bust": "81", - "waist": "55", - "hip": "81" - }, - "event": [ - { - "event_id": "024", - "event_name": "第24回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "T.B.オーシャン", - "alias_name_display": "T.B.オーシャン", - "id": "3230201", - "hash": "492f86962e67178c2c2faf2915bc2dd9", - "profile": { - "height": "156", - "weight": "45", - "bust": "81", - "waist": "55", - "hip": "81" - }, - "event": [ - { - "event_id": 1508, - "event_name": "チーム対抗トークバトルショー in SUMMER" - } - ] - }, - { - "alias_name": "T.B.オーシャン", - "alias_name_display": "T.B.オーシャン", - "id": "3330202", - "hash": "4400c05573122de64ed14d39a7bdcbc9", - "profile": { - "height": "156", - "weight": "45", - "bust": "81", - "waist": "55", - "hip": "81" - }, - "event": [ - { - "event_id": 1508, - "event_name": "チーム対抗トークバトルショー in SUMMER" - } - ] - }, - { - "alias_name": "ゴーフォーヴィクトリー", - "alias_name_display": "ゴーフォーヴィクトリー", - "id": "3233001", - "hash": "1a488f8bab8e0efae8f777f10b21dc6a", - "profile": { - "height": "156", - "weight": "45", - "bust": "81", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ゴーフォーヴィクトリー", - "alias_name_display": "ゴーフォーヴィクトリー", - "id": "3333002", - "hash": "da406e1470dbda90d69b49c622d235fb", - "profile": { - "height": "156", - "weight": "45", - "bust": "81", - "waist": "55", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "アッパーテンション", - "alias_name_display": "アッパーテンション", - "id": "3407601", - "hash": "7f26f3f44be087e5e97f699666dacd54", - "profile": { - "height": "156", - "weight": "45", - "bust": "81", - "waist": "55", - "hip": "81" - }, - "event": [ - { - "event_id": 505, - "event_name": "アイドルLIVEツアーinバリ島" - } - ] - }, - { - "alias_name": "アッパーテンション", - "alias_name_display": "アッパーテンション", - "id": "3507602", - "hash": "5106e3a24d812aa9ed097708c9166f18", - "profile": { - "height": "156", - "weight": "45", - "bust": "81", - "waist": "55", - "hip": "81" - }, - "event": [ - { - "event_id": 505, - "event_name": "アイドルLIVEツアーinバリ島" - } - ] - }, - { - "alias_name": "パワフル・ロワイヤル", - "alias_name_display": "パワフル・ロワイヤル", - "id": "3423701", - "hash": "884598c99e835d4c6306f2dac9e083a5", - "profile": { - "height": "156", - "weight": "45", - "bust": "81", - "waist": "55", - "hip": "81" - }, - "event": [ - { - "event_id": 812, - "event_name": "第12回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "パワフル・ロワイヤル", - "alias_name_display": "パワフル・ロワイヤル", - "id": "3523702", - "hash": "35d6ff804d2fa7642da6cf413c94feed", - "profile": { - "height": "156", - "weight": "45", - "bust": "81", - "waist": "55", - "hip": "81" - }, - "event": [ - { - "event_id": 812, - "event_name": "第12回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "クルーエルクロウ", - "alias_name_display": "クルーエルクロウ", - "id": "3431201", - "hash": "922f70e6284cac4909124ad587aad82f", - "profile": { - "height": "156", - "weight": "45", - "bust": "81", - "waist": "55", - "hip": "81" - }, - "event": [ - { - "event_id": 1901, - "event_name": "童話公演 気まぐれアリスと不思議の国" - } - ] - }, - { - "alias_name": "クルーエルクロウ", - "alias_name_display": "クルーエルクロウ", - "id": "3531202", - "hash": "1ee716e4411265ade87048be92422d1d", - "profile": { - "height": "156", - "weight": "45", - "bust": "81", - "waist": "55", - "hip": "81" - }, - "event": [ - { - "event_id": 1901, - "event_name": "童話公演 気まぐれアリスと不思議の国" - } - ] - } - ], - "units": [ - { - "id": "112", - "name": "ギャルズパーティー" - }, - { - "id": "154", - "name": "秋色温泉" - }, - { - "id": "170", - "name": "UKスタイル" - }, - { - "id": "208", - "name": "ロワイヤルスタイル" - } - ] - }, - "170": { - "idol_id": 170, - "idol_name": "日野茜", - "idol_name_display": "日野茜", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3200801", - "hash": "2ba9aa6bf49a8d75a1cf6ae3a131de74", - "profile": { - "height": "148", - "weight": "40", - "bust": "80", - "waist": "60", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3300802", - "hash": "3d0085be5f6add9c2d1eb2b484a02fbf", - "profile": { - "height": "148", - "weight": "40", - "bust": "80", - "waist": "60", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "湯けむり紀行", - "alias_name_display": "湯けむり紀行", - "id": "3231301", - "hash": "0fea5846d80145b07c4a992b77c85922", - "profile": { - "height": "148", - "weight": "40", - "bust": "80", - "waist": "60", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "湯けむり紀行", - "alias_name_display": "湯けむり紀行", - "id": "3331302", - "hash": "d963e9624da72e02228195db55a89219", - "profile": { - "height": "148", - "weight": "40", - "bust": "80", - "waist": "60", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "全力熱血", - "alias_name_display": "全力熱血", - "id": "3402801", - "hash": "5d7f41615b787cc7d3ab3a1f377fd936", - "profile": { - "height": "148", - "weight": "40", - "bust": "80", - "waist": "60", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "全力熱血", - "alias_name_display": "全力熱血", - "id": "3502802", - "hash": "363a16627a484afd5d6a40db7fc761e8", - "profile": { - "height": "148", - "weight": "40", - "bust": "80", - "waist": "60", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "3406701", - "hash": "36ba64d4547b90ed4a529998022f112f", - "profile": { - "height": "148", - "weight": "40", - "bust": "80", - "waist": "60", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "3506702", - "hash": "3c7d9f82c5984e67fc79749cfe3869cc", - "profile": { - "height": "148", - "weight": "40", - "bust": "80", - "waist": "60", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "暴走☆花嫁", - "alias_name_display": "暴走☆花嫁", - "id": "3407101", - "hash": "8f54ab4a77270d5799c31edff371e945", - "profile": { - "height": "148", - "weight": "40", - "bust": "80", - "waist": "60", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "暴走☆花嫁", - "alias_name_display": "暴走☆花嫁", - "id": "3507102", - "hash": "1d1b4eba1b4f97930d41cd9bd6e8c45e", - "profile": { - "height": "148", - "weight": "40", - "bust": "80", - "waist": "60", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "バーニングハート", - "alias_name_display": "バーニングハート", - "id": "3410101", - "hash": "1a41c58580b5f380f9ae1080f1bd01c5", - "profile": { - "height": "148", - "weight": "40", - "bust": "80", - "waist": "60", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "バーニングハート", - "alias_name_display": "バーニングハート", - "id": "3510102", - "hash": "1c048cc1b02c25f972f8147b14c2c19b", - "profile": { - "height": "148", - "weight": "40", - "bust": "80", - "waist": "60", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "プールサイドクイーン", - "alias_name_display": "プールサイドクイーン", - "id": "3415601", - "hash": "0a49238fa8e0451304135adbc957705c", - "profile": { - "height": "148", - "weight": "40", - "bust": "80", - "waist": "60", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "プールサイドクイーン", - "alias_name_display": "プールサイドクイーン", - "id": "3515602", - "hash": "50a3f572c3c17067f6a37ba5b2b58da4", - "profile": { - "height": "148", - "weight": "40", - "bust": "80", - "waist": "60", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "3rdアニバーサリー", - "alias_name_display": "3rdアニバーサリー", - "id": "3419601", - "hash": "99e843a15f7f2073232bb045f5f59baf", - "profile": { - "height": "148", - "weight": "40", - "bust": "80", - "waist": "60", - "hip": "82" - }, - "event": [ - { - "event_id": 415, - "event_name": "アイドルプロデュース the 3rd Anniversary" - } - ] - }, - { - "alias_name": "3rdアニバーサリー", - "alias_name_display": "3rdアニバーサリー", - "id": "3519602", - "hash": "b5432fa0d132d27b02039aea00da87d3", - "profile": { - "height": "148", - "weight": "40", - "bust": "80", - "waist": "60", - "hip": "82" - }, - "event": [ - { - "event_id": 415, - "event_name": "アイドルプロデュース the 3rd Anniversary" - } - ] - }, - { - "alias_name": "3rdアニバーサリー・S", - "alias_name_display": "3rdアニバーサリー・S", - "id": "3419701", - "hash": "bd500c4da4d4b7e1ca5e54f813177ed6", - "profile": { - "height": "148", - "weight": "40", - "bust": "80", - "waist": "60", - "hip": "82" - }, - "event": [ - { - "event_id": 415, - "event_name": "アイドルプロデュース the 3rd Anniversary" - } - ] - }, - { - "alias_name": "3rdアニバーサリー・S", - "alias_name_display": "3rdアニバーサリー・S", - "id": "3519702", - "hash": "e27d096696fd3ffd8baaf504f526864d", - "profile": { - "height": "148", - "weight": "40", - "bust": "80", - "waist": "60", - "hip": "82" - }, - "event": [ - { - "event_id": 415, - "event_name": "アイドルプロデュース the 3rd Anniversary" - } - ] - }, - { - "alias_name": "放課後トライ", - "alias_name_display": "放課後トライ", - "id": "3424301", - "hash": "bdc9cebae8d2f4aa75cbe2ac77876726", - "profile": { - "height": "148", - "weight": "40", - "bust": "80", - "waist": "60", - "hip": "82" - }, - "event": [ - { - "event_id": "022", - "event_name": "第22回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "放課後トライ", - "alias_name_display": "放課後トライ", - "id": "3524302", - "hash": "40577520ba74911e5233e36f28eac68d", - "profile": { - "height": "148", - "weight": "40", - "bust": "80", - "waist": "60", - "hip": "82" - }, - "event": [ - { - "event_id": "022", - "event_name": "第22回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "シンデレラドリーム", - "alias_name_display": "シンデレラドリーム", - "id": "3429701", - "hash": "c3eca737aebfe22448304ff91b552b4e", - "profile": { - "height": "148", - "weight": "40", - "bust": "80", - "waist": "60", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "シンデレラドリーム", - "alias_name_display": "シンデレラドリーム", - "id": "3529702", - "hash": "a90865f4f336e89e69fe55f45137c05d", - "profile": { - "height": "148", - "weight": "40", - "bust": "80", - "waist": "60", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "シャイニーブルーム", - "alias_name_display": "シャイニーブルーム", - "id": "3432401", - "hash": "2149410a8b10577676fd93962e65e72d", - "profile": { - "height": "148", - "weight": "40", - "bust": "80", - "waist": "60", - "hip": "82" - }, - "event": [] - }, - { - "alias_name": "シャイニーブルーム", - "alias_name_display": "シャイニーブルーム", - "id": "3532402", - "hash": "9c04faffee708181d50dca5884d3fb1e", - "profile": { - "height": "148", - "weight": "40", - "bust": "80", - "waist": "60", - "hip": "82" - }, - "event": [] - } - ], - "units": [ - { - "id": "15", - "name": "サイキックヒーツ" - }, - { - "id": "148", - "name": "チアフルボンバーズ" - }, - { - "id": "153", - "name": "Positive Passion" - }, - { - "id": "190", - "name": "サマプリ" - }, - { - "id": "203", - "name": "ゼッケンズ" - }, - { - "id": "212", - "name": "CINDERELLA GIRLS" - } - ] - }, - "171": { - "idol_id": 171, - "idol_name": "諸星きらり", - "idol_name_display": "諸星きらり", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3200901", - "hash": "e36b10a6274efaa7836e5b54f9a47ffa", - "profile": { - "height": "182", - "weight": "60", - "bust": "91", - "waist": "64", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3300902", - "hash": "67fb7b5c31807c904c0fac573a185733", - "profile": { - "height": "184", - "weight": "61", - "bust": "91", - "waist": "65", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "京町乙女", - "alias_name_display": "京町乙女", - "id": "3206801", - "hash": "27768e59fb3f6273046deb807ed464d1", - "profile": { - "height": "186", - "weight": "61.5", - "bust": "92", - "waist": "65", - "hip": "87" - }, - "event": [ - { - "event_id": 402, - "event_name": "アイドルプロデュース京町編" - } - ] - }, - { - "alias_name": "京町乙女", - "alias_name_display": "京町乙女", - "id": "3306802", - "hash": "d114ead173608ffaaa6d3865c7cf001b", - "profile": { - "height": "186.2", - "weight": "61.5", - "bust": "92", - "waist": "65", - "hip": "87" - }, - "event": [ - { - "event_id": 402, - "event_name": "アイドルプロデュース京町編" - } - ] - }, - { - "alias_name": "ナイトパーティー", - "alias_name_display": "ナイトパーティー", - "id": "3224001", - "hash": "bf0808c3848632a3eae9e4f9ac3b2d2d", - "profile": { - "height": "186.2", - "weight": "61.5", - "bust": "92", - "waist": "65", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "ナイトパーティー", - "alias_name_display": "ナイトパーティー", - "id": "3324002", - "hash": "91323eeabe7830ac1134cb7cd640abed", - "profile": { - "height": "186.2", - "weight": "61.5", - "bust": "92", - "waist": "65", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "ラブリープリンセス", - "alias_name_display": "ラブリープリンセス", - "id": "3400801", - "hash": "13d35f865ec01a0b67bd9298ce18fde1", - "profile": { - "height": "184.5", - "weight": "61", - "bust": "91", - "waist": "64", - "hip": "86" - }, - "event": [ - { - "event_id": 201, - "event_name": "アイドルサバイバル" - } - ] - }, - { - "alias_name": "ラブリープリンセス", - "alias_name_display": "ラブリープリンセス", - "id": "3500802", - "hash": "8d11496014d025ce5a9d6b29798cbb28", - "profile": { - "height": "185", - "weight": "61.5", - "bust": "91", - "waist": "65", - "hip": "87" - }, - "event": [ - { - "event_id": 201, - "event_name": "アイドルサバイバル" - } - ] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "3402601", - "hash": "98e1c97f110919d0776c498088d498a2", - "profile": { - "height": "182", - "weight": "60", - "bust": "91", - "waist": "64", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "3502602", - "hash": "805521caf23ffffe33935a44a3c3bb9f", - "profile": { - "height": "184", - "weight": "61", - "bust": "91", - "waist": "65", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "キューティーメイド", - "alias_name_display": "キューティーメイド", - "id": "3403001", - "hash": "681565d6931e8942e07aa96914bae78a", - "profile": { - "height": "185.5", - "weight": "61", - "bust": "92", - "waist": "65", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "キューティーメイド", - "alias_name_display": "キューティーメイド", - "id": "3503002", - "hash": "c838c2b59f98bf1c5a788e6f735da0b1", - "profile": { - "height": "186", - "weight": "61.5", - "bust": "92", - "waist": "65", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "ゴシックプリンセス", - "alias_name_display": "ゴシックプリンセス", - "id": "3405301", - "hash": "f4932a6e93017b3dde0189c4b2c765af", - "profile": { - "height": "186", - "weight": "61.5", - "bust": "92", - "waist": "65", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "ゴシックプリンセス", - "alias_name_display": "ゴシックプリンセス", - "id": "3505302", - "hash": "4ce06aedcdc3452d744898d33dacf148", - "profile": { - "height": "186.2", - "weight": "61.5", - "bust": "92", - "waist": "65", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "ニューイヤープリンセス", - "alias_name_display": "ニューイヤープリンセス", - "id": "3410801", - "hash": "a913d3efecf382ac9179ba1073df905c", - "profile": { - "height": "186.2", - "weight": "61.5", - "bust": "92", - "waist": "65", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "ニューイヤープリンセス", - "alias_name_display": "ニューイヤープリンセス", - "id": "3510802", - "hash": "eccdc3e012a96c6c4f69cebfb8774946", - "profile": { - "height": "186.2", - "weight": "61.5", - "bust": "92", - "waist": "65", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "ワンダフルマジック", - "alias_name_display": "ワンダフルマジック", - "id": "3412401", - "hash": "e4cf30032d3151909b22ee89cdc5a16d", - "profile": { - "height": "186.2", - "weight": "61.5", - "bust": "92", - "waist": "65", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "ワンダフルマジック", - "alias_name_display": "ワンダフルマジック", - "id": "3512402", - "hash": "5dda31240aff8ba47ce49dc2b381009e", - "profile": { - "height": "186.2", - "weight": "61.5", - "bust": "92", - "waist": "65", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "びびっど☆モデル", - "alias_name_display": "びびっど☆モデル", - "id": "3417601", - "hash": "3f3e317ba9be747dc17321a725664108", - "profile": { - "height": "186.2", - "weight": "61.5", - "bust": "92", - "waist": "65", - "hip": "87" - }, - "event": [ - { - "event_id": 1203, - "event_name": "目指せきらきらモデル アイドルチャレンジ" - } - ] - }, - { - "alias_name": "びびっど☆モデル", - "alias_name_display": "びびっど☆モデル", - "id": "3517602", - "hash": "90977ab9ab78e092fa509d5313e532b4", - "profile": { - "height": "186.2", - "weight": "61.5", - "bust": "92", - "waist": "65", - "hip": "87" - }, - "event": [ - { - "event_id": 1203, - "event_name": "目指せきらきらモデル アイドルチャレンジ" - } - ] - }, - { - "alias_name": "はぴはぴデビル", - "alias_name_display": "はぴはぴデビル", - "id": "3421201", - "hash": "db62b848e999ac5f02979ed4a00c2f9e", - "profile": { - "height": "186.2", - "weight": "61.5", - "bust": "92", - "waist": "65", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "はぴはぴデビル", - "alias_name_display": "はぴはぴデビル", - "id": "3521202", - "hash": "c10030d3b38bd695450f91a5177e5eb4", - "profile": { - "height": "186.2", - "weight": "61.5", - "bust": "92", - "waist": "65", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "凸レーション", - "alias_name_display": "凸レーション", - "id": "3522702", - "hash": "a289fc73aa922d84f7917c8eb21428e0", - "profile": { - "height": "185", - "weight": "61.5", - "bust": "91", - "waist": "65", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "ぐれいと博士", - "alias_name_display": "ぐれいと博士", - "id": "3429101", - "hash": "8318239c3aa1500c359147deafe04495", - "profile": { - "height": "186.2", - "weight": "61.5", - "bust": "92", - "waist": "65", - "hip": "87" - }, - "event": [ - { - "event_id": 523, - "event_name": "鋼鉄公演 きらりんロボ -襲来!コスメティア帝国-" - } - ] - }, - { - "alias_name": "ぐれいと博士", - "alias_name_display": "ぐれいと博士", - "id": "3529102", - "hash": "2d2bd33c37a21e558eb0c9fab16a8776", - "profile": { - "height": "186.2", - "weight": "61.5", - "bust": "92", - "waist": "65", - "hip": "87" - }, - "event": [ - { - "event_id": 523, - "event_name": "鋼鉄公演 きらりんロボ -襲来!コスメティア帝国-" - } - ] - }, - { - "alias_name": "はぴはぴウェディング", - "alias_name_display": "はぴはぴウェディング", - "id": "3432901", - "hash": "885b27d2b03761b4a9dc6fbaa438b094", - "profile": { - "height": "186.2", - "weight": "61.5", - "bust": "92", - "waist": "65", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "はぴはぴウェディング", - "alias_name_display": "はぴはぴウェディング", - "id": "3532902", - "hash": "076806b1ad6aeae0acb06132c6bb6929", - "profile": { - "height": "186.2", - "weight": "61.5", - "bust": "92", - "waist": "65", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "ぷちっと☆スウィート", - "alias_name_display": "ぷちっと☆スウィート", - "id": "3435601", - "hash": "45cb660714f8f59460d315604f53b314", - "profile": { - "height": "186.2", - "weight": "61.5", - "bust": "92", - "waist": "65", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "ぷちっと☆スウィート", - "alias_name_display": "ぷちっと☆スウィート", - "id": "3535602", - "hash": "ded71c9bb18c1052fb0640e53f40ea04", - "profile": { - "height": "186.2", - "weight": "61.5", - "bust": "92", - "waist": "65", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "ろまんすジェット", - "alias_name_display": "ろまんすジェット", - "id": "3438801", - "hash": "e34a8cecd07eb4a178c622a6d45f7f50", - "profile": { - "height": "186.2", - "weight": "61.5", - "bust": "92", - "waist": "65", - "hip": "87" - }, - "event": [ - { - "event_id": "034", - "event_name": "第34回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "ろまんすジェット", - "alias_name_display": "ろまんすジェット", - "id": "3538802", - "hash": "d5d01a505a212461f49c618591073cf5", - "profile": { - "height": "186.2", - "weight": "61.5", - "bust": "92", - "waist": "65", - "hip": "87" - }, - "event": [ - { - "event_id": "034", - "event_name": "第34回プロダクションマッチフェスティバル" - } - ] - } - ], - "units": [ - { - "id": "76", - "name": "HappyHappyTwin" - }, - { - "id": "91", - "name": "京町乙女" - }, - { - "id": "149", - "name": "凸レーション" - }, - { - "id": "191", - "name": "Love Yell" - }, - { - "id": "204", - "name": "トロピカル☆スターズ" - }, - { - "id": "213", - "name": "CINDERELLA PROJECT" - } - ] - }, - "172": { - "idol_id": 172, - "idol_name": "十時愛梨", - "idol_name_display": "十時愛梨", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3201001", - "hash": "2af54b80c9be9ffde43904089069d877", - "profile": { - "height": "161", - "weight": "46", - "bust": "86", - "waist": "58", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3301002", - "hash": "7fedbb6c9f01d1ac667ae1978cc2b3f5", - "profile": { - "height": "161", - "weight": "46", - "bust": "86", - "waist": "58", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "ビーチガール", - "alias_name_display": "ビーチガール", - "id": "3324402", - "hash": "342e254d0cc96070e10c97f6cb744832", - "profile": { - "height": "161", - "weight": "47", - "bust": "88", - "waist": "57", - "hip": "88" - }, - "event": [ - { - "event_id": 1703, - "event_name": "アイドルプロデュース おいでよ!海の家" - } - ] - }, - { - "alias_name": "ビーチガール・S", - "alias_name_display": "ビーチガール・S", - "id": "3324502", - "hash": "d8a1b40c7f18b184bf206fef877eb34b", - "profile": { - "height": "161", - "weight": "47", - "bust": "88", - "waist": "57", - "hip": "88" - }, - "event": [ - { - "event_id": 1703, - "event_name": "アイドルプロデュース おいでよ!海の家" - } - ] - }, - { - "alias_name": "スイートバレンタイン", - "alias_name_display": "スイートバレンタイン", - "id": "3400901", - "hash": "ff99cc10da22220420bd52ef92a8d135", - "profile": { - "height": "161", - "weight": "46", - "bust": "86", - "waist": "58", - "hip": "88" - }, - "event": [ - { - "event_id": 103, - "event_name": "バレンタインパーティー" - } - ] - }, - { - "alias_name": "スイートバレンタイン", - "alias_name_display": "スイートバレンタイン", - "id": "3500902", - "hash": "bab8fa10fde7b5a62fbd398303d36b79", - "profile": { - "height": "161", - "weight": "46", - "bust": "86", - "waist": "58", - "hip": "88" - }, - "event": [ - { - "event_id": 103, - "event_name": "バレンタインパーティー" - } - ] - }, - { - "alias_name": "シンデレラガール", - "alias_name_display": "シンデレラガール", - "id": "3403201", - "hash": "034377942c947a0ecf549e21e8b0c6be", - "profile": { - "height": "161", - "weight": "47", - "bust": "88", - "waist": "57", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "シンデレラガール", - "alias_name_display": "シンデレラガール", - "id": "3503202", - "hash": "9c90f735aa3431dd6c1d78ed0fd2e4e1", - "profile": { - "height": "161", - "weight": "47", - "bust": "88", - "waist": "57", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "アニバーサリープリンセス", - "alias_name_display": "アニバーサリープリンセス", - "id": "3403901", - "hash": "11a50ed020b2340a327caced00b51b5c", - "profile": { - "height": "161", - "weight": "47", - "bust": "88", - "waist": "57", - "hip": "88" - }, - "event": [ - { - "event_id": 403, - "event_name": "アイドルプロデュース the 1st Anniversary" - } - ] - }, - { - "alias_name": "アニバーサリープリンセス", - "alias_name_display": "アニバーサリープリンセス", - "id": "3503902", - "hash": "f769e6ce429482fbbdcde602a3c3309f", - "profile": { - "height": "161", - "weight": "47", - "bust": "88", - "waist": "57", - "hip": "88" - }, - "event": [ - { - "event_id": 403, - "event_name": "アイドルプロデュース the 1st Anniversary" - } - ] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "3404801", - "hash": "25d5b934facd2e7774950f0739677c73", - "profile": { - "height": "161", - "weight": "46", - "bust": "86", - "waist": "58", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "3504802", - "hash": "06aed4cfdfc8300c80e61e7baca31e71", - "profile": { - "height": "161", - "weight": "46", - "bust": "86", - "waist": "58", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "プリンセスバニー", - "alias_name_display": "プリンセスバニー", - "id": "3408501", - "hash": "4d4a2e681beeaef1858015166d1f9f5d", - "profile": { - "height": "161", - "weight": "47", - "bust": "88", - "waist": "57", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "プリンセスバニー", - "alias_name_display": "プリンセスバニー", - "id": "3508502", - "hash": "7fbb40e99cb6fea16823cf3fc7c50cd1", - "profile": { - "height": "161", - "weight": "47", - "bust": "88", - "waist": "57", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "ふわふわメイド", - "alias_name_display": "ふわふわメイド", - "id": "3412001", - "hash": "7efecb6b29255582379ee2a4256047e9", - "profile": { - "height": "161", - "weight": "47", - "bust": "88", - "waist": "57", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "ふわふわメイド", - "alias_name_display": "ふわふわメイド", - "id": "3512002", - "hash": "4aa960584fafb8410e3ed44ae8ca26b2", - "profile": { - "height": "161", - "weight": "47", - "bust": "88", - "waist": "57", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "シンデレラドリーム", - "alias_name_display": "シンデレラドリーム", - "id": "3416701", - "hash": "d7ca177e2b83a24a67c781c249182925", - "profile": { - "height": "161", - "weight": "47", - "bust": "88", - "waist": "57", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "シンデレラドリーム", - "alias_name_display": "シンデレラドリーム", - "id": "3516702", - "hash": "faa98701e195ebc5d0d2da415e0e0d73", - "profile": { - "height": "161", - "weight": "47", - "bust": "88", - "waist": "57", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "スウィートトゥスウィート", - "alias_name_display": "スウィートトゥスウィート", - "id": "3419001", - "hash": "db8c193960aff622a0cec3ce39ee9989", - "profile": { - "height": "161", - "weight": "47", - "bust": "88", - "waist": "57", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "スウィートトゥスウィート", - "alias_name_display": "スウィートトゥスウィート", - "id": "3519002", - "hash": "1a77b2cd5134093cda454212e9c4847e", - "profile": { - "height": "161", - "weight": "47", - "bust": "88", - "waist": "57", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "いっしょにえいっ!", - "alias_name_display": "いっしょにえいっ!", - "id": "3423201", - "hash": "2c022714d96cafa06555dd9f20f40835", - "profile": { - "height": "161", - "weight": "47", - "bust": "88", - "waist": "57", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "いっしょにえいっ!", - "alias_name_display": "いっしょにえいっ!", - "id": "3523202", - "hash": "55ddccc958d486c8347c694072d1d5cc", - "profile": { - "height": "161", - "weight": "47", - "bust": "88", - "waist": "57", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "夏のお届け", - "alias_name_display": "夏のお届け", - "id": "3425301", - "hash": "e82f2ce53d0dcc09860e503516407b62", - "profile": { - "height": "161", - "weight": "47", - "bust": "88", - "waist": "57", - "hip": "88" - }, - "event": [ - { - "event_id": 1703, - "event_name": "アイドルプロデュース おいでよ!海の家" - } - ] - }, - { - "alias_name": "夏のお届け", - "alias_name_display": "夏のお届け", - "id": "3525302", - "hash": "7dd0c60d4ab37295a9201125ad8c178c", - "profile": { - "height": "161", - "weight": "47", - "bust": "88", - "waist": "57", - "hip": "88" - }, - "event": [ - { - "event_id": 1703, - "event_name": "アイドルプロデュース おいでよ!海の家" - } - ] - }, - { - "alias_name": "スウィートサマーナイト", - "alias_name_display": "スウィートサマーナイト", - "id": "3433401", - "hash": "a3ba1315b2d8f4e7feee004b53c16b49", - "profile": { - "height": "161", - "weight": "47", - "bust": "88", - "waist": "57", - "hip": "88" - }, - "event": [ - { - "event_id": 722, - "event_name": "夏祭りDEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "スウィートサマーナイト", - "alias_name_display": "スウィートサマーナイト", - "id": "3533402", - "hash": "8f7c91d9148d3f3651eaa326b49052d9", - "profile": { - "height": "161", - "weight": "47", - "bust": "88", - "waist": "57", - "hip": "88" - }, - "event": [ - { - "event_id": 722, - "event_name": "夏祭りDEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ホーリーリゾートナイト", - "alias_name_display": "ホーリーリゾートナイト", - "id": "3437001", - "hash": "eea0e747d0a7d87755a66d81a80348ae", - "profile": { - "height": "161", - "weight": "47", - "bust": "88", - "waist": "57", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "ホーリーリゾートナイト", - "alias_name_display": "ホーリーリゾートナイト", - "id": "3537002", - "hash": "b188b901992026dee7ba0b274a118a60", - "profile": { - "height": "161", - "weight": "47", - "bust": "88", - "waist": "57", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "空のおくりもの", - "alias_name_display": "空のおくりもの", - "id": "3440101", - "hash": "0b19c1ca9b7472477bc293eed4ce1cee", - "profile": { - "height": "161", - "weight": "47", - "bust": "88", - "waist": "57", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "空のおくりもの", - "alias_name_display": "空のおくりもの", - "id": "3540102", - "hash": "36516e31833083116be887f5b74985ab", - "profile": { - "height": "161", - "weight": "47", - "bust": "88", - "waist": "57", - "hip": "88" - }, - "event": [] - } - ], - "units": [ - { - "id": "25", - "name": "スウィートラヴァーズ" - }, - { - "id": "69", - "name": "Ai's" - }, - { - "id": "188", - "name": "Sweetches" - }, - { - "id": "203", - "name": "ゼッケンズ" - }, - { - "id": "205", - "name": "シンデレラガール" - }, - { - "id": "212", - "name": "CINDERELLA GIRLS" - } - ] - }, - "173": { - "idol_id": 173, - "idol_name": "ナターリア", - "idol_name_display": "ナターリア", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3201101", - "hash": "f382a774439acb0a89167e8d2923b630", - "profile": { - "height": "155", - "weight": "43", - "bust": "84", - "waist": "55", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3301102", - "hash": "6099b368b8bf9782cebecb0e44a41232", - "profile": { - "height": "155", - "weight": "43", - "bust": "84", - "waist": "55", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "聖夜", - "alias_name_display": "聖夜", - "id": "3202101", - "hash": "440a03665b455c7bcfd3dc0d98b824ff", - "profile": { - "height": "155", - "weight": "43", - "bust": "84", - "waist": "55", - "hip": "86" - }, - "event": [ - { - "event_id": 101, - "event_name": "星降るクリスマス" - } - ] - }, - { - "alias_name": "聖夜", - "alias_name_display": "聖夜", - "id": "3302102", - "hash": "266144cbb02edc5958e0568f11557c93", - "profile": { - "height": "155", - "weight": "43", - "bust": "84", - "waist": "55", - "hip": "86" - }, - "event": [ - { - "event_id": 101, - "event_name": "星降るクリスマス" - } - ] - }, - { - "alias_name": "トラベルスタイル ブラウン", - "alias_name_display": "トラベルスタイル ブラウン", - "id": "3206901", - "hash": "efa6d6607cc1a82d8a87acf0a8169655", - "profile": { - "height": "155", - "weight": "43", - "bust": "84", - "waist": "55", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "トラベルスタイル グリーン", - "alias_name_display": "トラベルスタイル グリーン", - "id": "3206902", - "hash": "4c715aaa8d5e67763d6331346aa91542", - "profile": { - "height": "155", - "weight": "43", - "bust": "84", - "waist": "55", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "トラベルスタイル ピンク", - "alias_name_display": "トラベルスタイル ピンク", - "id": "3206903", - "hash": "6f18bdce1306af0aee712f91b24e5dab", - "profile": { - "height": "155", - "weight": "43", - "bust": "84", - "waist": "55", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "トラベルスタイル ブラック", - "alias_name_display": "トラベルスタイル ブラック", - "id": "3206904", - "hash": "b5b11e6049d261c4d9dba48f90a74c4a", - "profile": { - "height": "155", - "weight": "43", - "bust": "84", - "waist": "55", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "アラビアンドレス グリーン", - "alias_name_display": "アラビアンドレス グリーン", - "id": "3306905", - "hash": "1df9b2a1e81a015409d89ec644398a92", - "profile": { - "height": "155", - "weight": "43", - "bust": "84", - "waist": "55", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "アラビアンドレス ブルー", - "alias_name_display": "アラビアンドレス ブルー", - "id": "3306906", - "hash": "3272befd917e2a1d74d75acb4a64ce7f", - "profile": { - "height": "155", - "weight": "43", - "bust": "84", - "waist": "55", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "アラビアンドレス レッド", - "alias_name_display": "アラビアンドレス レッド", - "id": "3306907", - "hash": "16ddd10637f3d70cd0d3b670be191dc3", - "profile": { - "height": "155", - "weight": "43", - "bust": "84", - "waist": "55", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "アラビアンドレス ブラック", - "alias_name_display": "アラビアンドレス ブラック", - "id": "3306908", - "hash": "7a208c090db9ec7b3dab29117f4346a5", - "profile": { - "height": "155", - "weight": "43", - "bust": "84", - "waist": "55", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "アラビアンドレス ゴールド", - "alias_name_display": "アラビアンドレス ゴールド", - "id": "3306909", - "hash": "e7643a2c9f27cad76554e8aab9c3bb93", - "profile": { - "height": "155", - "weight": "43", - "bust": "84", - "waist": "55", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "新春コレクション", - "alias_name_display": "新春コレクション", - "id": "3214801", - "hash": "2021128f14e5bfcadd20a0973ba8258f", - "profile": { - "height": "155", - "weight": "43", - "bust": "84", - "waist": "55", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "新春コレクション", - "alias_name_display": "新春コレクション", - "id": "3314802", - "hash": "5be5890f3317c441ebc4e2ad70cf75ae", - "profile": { - "height": "155", - "weight": "43", - "bust": "84", - "waist": "55", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "ファーバースタイル", - "alias_name_display": "ファーバースタイル", - "id": "3227301", - "hash": "282db7b7a41863a84f27da47ee75e6ad", - "profile": { - "height": "155", - "weight": "43", - "bust": "84", - "waist": "55", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "ファーバースタイル", - "alias_name_display": "ファーバースタイル", - "id": "3327302", - "hash": "f2b082328617efad27ef7189c8f93e41", - "profile": { - "height": "155", - "weight": "43", - "bust": "84", - "waist": "55", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "ハッピーブライダル", - "alias_name_display": "ハッピーブライダル", - "id": "3401801", - "hash": "bd67c595320eec896b20adab8246cb8e", - "profile": { - "height": "155", - "weight": "43", - "bust": "84", - "waist": "55", - "hip": "86" - }, - "event": [ - { - "event_id": 105, - "event_name": "きらめくブライダルショー" - } - ] - }, - { - "alias_name": "ハッピーブライダル", - "alias_name_display": "ハッピーブライダル", - "id": "3501802", - "hash": "f6e881bd45b483f16c9c307a6f5fa9d5", - "profile": { - "height": "155", - "weight": "43", - "bust": "84", - "waist": "55", - "hip": "86" - }, - "event": [ - { - "event_id": 105, - "event_name": "きらめくブライダルショー" - } - ] - }, - { - "alias_name": "千夜一夜舞姫", - "alias_name_display": "千夜一夜舞姫", - "id": "3403510", - "hash": "1724e54c47dc1c5ea2665d24939bf5ae", - "profile": { - "height": "155", - "weight": "43", - "bust": "84", - "waist": "55", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "千夜一夜舞姫", - "alias_name_display": "千夜一夜舞姫", - "id": "3503511", - "hash": "21fe7b8165a5785bf25cce6710551f3d", - "profile": { - "height": "155", - "weight": "43", - "bust": "84", - "waist": "55", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "カーニバルスター", - "alias_name_display": "カーニバルスター", - "id": "3407301", - "hash": "b5a925908f8d9e107c00ed5da3053525", - "profile": { - "height": "155", - "weight": "43", - "bust": "84", - "waist": "55", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "カーニバルスター", - "alias_name_display": "カーニバルスター", - "id": "3507302", - "hash": "22df606bb7b17d4cf58ace3ebcfcc1b2", - "profile": { - "height": "155", - "weight": "43", - "bust": "84", - "waist": "55", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "ヴォヤージュ・プリンセス", - "alias_name_display": "ヴォヤージュ・プリンセス", - "id": "3413201", - "hash": "98eb2fe3e133b3729a7da417a389d155", - "profile": { - "height": "155", - "weight": "43", - "bust": "84", - "waist": "55", - "hip": "86" - }, - "event": [ - { - "event_id": 511, - "event_name": "幻想公演 黒薔薇姫のヴォヤージュ" - } - ] - }, - { - "alias_name": "ヴォヤージュ・プリンセス", - "alias_name_display": "ヴォヤージュ・プリンセス", - "id": "3513202", - "hash": "e565c552c27db943ad6db5ba2a7240da", - "profile": { - "height": "155", - "weight": "43", - "bust": "84", - "waist": "55", - "hip": "86" - }, - "event": [ - { - "event_id": 511, - "event_name": "幻想公演 黒薔薇姫のヴォヤージュ" - } - ] - }, - { - "alias_name": "南国オニむすめ", - "alias_name_display": "南国オニむすめ", - "id": "3421101", - "hash": "186891067486fac1d3dd32ee5d8f60ec", - "profile": { - "height": "155", - "weight": "43", - "bust": "84", - "waist": "55", - "hip": "86" - }, - "event": [ - { - "event_id": 711, - "event_name": "福は内DEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "南国オニむすめ", - "alias_name_display": "南国オニむすめ", - "id": "3521102", - "hash": "e03ea585a3b44cc59e7f35e478f6aad6", - "profile": { - "height": "155", - "weight": "43", - "bust": "84", - "waist": "55", - "hip": "86" - }, - "event": [ - { - "event_id": 711, - "event_name": "福は内DEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "熱情のメイド", - "alias_name_display": "熱情のメイド", - "id": "3426201", - "hash": "641de8e01bf4bcb53165e17e145c394c", - "profile": { - "height": "155", - "weight": "43", - "bust": "84", - "waist": "55", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "熱情のメイド", - "alias_name_display": "熱情のメイド", - "id": "3526202", - "hash": "930037884bb22ac36fac0509dba6b7c1", - "profile": { - "height": "155", - "weight": "43", - "bust": "84", - "waist": "55", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "おいしい体験", - "alias_name_display": "おいしい体験", - "id": "3432701", - "hash": "6324dade2fc264bb093679995e739ce4", - "profile": { - "height": "155", - "weight": "43", - "bust": "84", - "waist": "55", - "hip": "86" - }, - "event": [ - { - "event_id": 1706, - "event_name": "アイドルプロデュース 北の大地と夜さりの祭" - } - ] - }, - { - "alias_name": "おいしい体験", - "alias_name_display": "おいしい体験", - "id": "3532702", - "hash": "110ecffefb66009043e02b1e6a502ee8", - "profile": { - "height": "155", - "weight": "43", - "bust": "84", - "waist": "55", - "hip": "86" - }, - "event": [ - { - "event_id": 1706, - "event_name": "アイドルプロデュース 北の大地と夜さりの祭" - } - ] - }, - { - "alias_name": "おいしい笑顔", - "alias_name_display": "おいしい笑顔", - "id": "3432801", - "hash": "af2db88bb0e5382e09ddab757998481c", - "profile": { - "height": "155", - "weight": "43", - "bust": "84", - "waist": "55", - "hip": "86" - }, - "event": [ - { - "event_id": 1706, - "event_name": "アイドルプロデュース 北の大地と夜さりの祭" - } - ] - }, - { - "alias_name": "おいしい笑顔", - "alias_name_display": "おいしい笑顔", - "id": "3532802", - "hash": "eb1010945d948fdbdef7deff5dd0f069", - "profile": { - "height": "155", - "weight": "43", - "bust": "84", - "waist": "55", - "hip": "86" - }, - "event": [ - { - "event_id": 1706, - "event_name": "アイドルプロデュース 北の大地と夜さりの祭" - } - ] - }, - { - "alias_name": "真冬の太陽", - "alias_name_display": "真冬の太陽", - "id": "3436901", - "hash": "7c92b21376459ee6864ed24def650fcf", - "profile": { - "height": "155", - "weight": "43", - "bust": "84", - "waist": "55", - "hip": "86" - }, - "event": [ - { - "event_id": 1510, - "event_name": "チーム対抗トークバトルショー オールスターSP" - } - ] - }, - { - "alias_name": "真冬の太陽", - "alias_name_display": "真冬の太陽", - "id": "3536902", - "hash": "6dc2df6837dff054aaaf63c93f92256b", - "profile": { - "height": "155", - "weight": "43", - "bust": "84", - "waist": "55", - "hip": "86" - }, - "event": [ - { - "event_id": 1510, - "event_name": "チーム対抗トークバトルショー オールスターSP" - } - ] - } - ], - "units": [ - { - "id": "31", - "name": "ソル・カマル" - }, - { - "id": "125", - "name": "ユア・フレンズ" - } - ] - }, - "174": { - "idol_id": 174, - "idol_name": "相馬夏美", - "idol_name_display": "相馬夏美", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3201201", - "hash": "df8b4a9675f16bdc8379a8e5f59a20ad", - "profile": { - "height": "160", - "weight": "46", - "bust": "83", - "waist": "60", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3301202", - "hash": "ba2d9fc0c2d88014e875358f245b6e05", - "profile": { - "height": "160", - "weight": "46", - "bust": "83", - "waist": "60", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "ストイックビューティ", - "alias_name_display": "ストイックビューティ", - "id": "3207901", - "hash": "54f6c52057b1ee155af0f9b3d9675a25", - "profile": { - "height": "160", - "weight": "46", - "bust": "83", - "waist": "60", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "ストイックビューティ", - "alias_name_display": "ストイックビューティ", - "id": "3307902", - "hash": "f00fcf5ddeafeaa2451d5ba27d270ba8", - "profile": { - "height": "160", - "weight": "46", - "bust": "83", - "waist": "60", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "バニーガール", - "alias_name_display": "バニーガール", - "id": "3212501", - "hash": "014c596e3f63a4268e1b08f577c7e4aa", - "profile": { - "height": "160", - "weight": "46", - "bust": "83", - "waist": "60", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "バニーガール", - "alias_name_display": "バニーガール", - "id": "3312502", - "hash": "8693753c14c0e5dbff7021c880c8b4ad", - "profile": { - "height": "160", - "weight": "46", - "bust": "83", - "waist": "60", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "アダルティフェミニン", - "alias_name_display": "アダルティフェミニン", - "id": "3217501", - "hash": "29afbffb42d6fabb1c7cd796b1bec5db", - "profile": { - "height": "160", - "weight": "46", - "bust": "83", - "waist": "60", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "アダルティフェミニン", - "alias_name_display": "アダルティフェミニン", - "id": "3317502", - "hash": "f36f9067bd023981ae6ec8081920ac3c", - "profile": { - "height": "160", - "weight": "46", - "bust": "83", - "waist": "60", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "T.B.チアーズ", - "alias_name_display": "T.B.チアーズ", - "id": "3225601", - "hash": "dacd3782cc330619e7b2505008e4527a", - "profile": { - "height": "160", - "weight": "46", - "bust": "83", - "waist": "60", - "hip": "89" - }, - "event": [ - { - "event_id": 1504, - "event_name": "第4回チーム対抗トークバトルショー" - } - ] - }, - { - "alias_name": "T.B.チアーズ", - "alias_name_display": "T.B.チアーズ", - "id": "3325602", - "hash": "cdc01ceb8c597ab043e4a0c4b1d611f5", - "profile": { - "height": "160", - "weight": "46", - "bust": "83", - "waist": "60", - "hip": "89" - }, - "event": [ - { - "event_id": 1504, - "event_name": "第4回チーム対抗トークバトルショー" - } - ] - }, - { - "alias_name": "ビター&スウィート", - "alias_name_display": "ビター&スウィート", - "id": "3227601", - "hash": "08c8021dd356090cf6e6c67ce364c6c5", - "profile": { - "height": "160", - "weight": "46", - "bust": "83", - "waist": "60", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "ビター&スウィート", - "alias_name_display": "ビター&スウィート", - "id": "3327602", - "hash": "52f9319275299caf7bea5eeb1617c8fe", - "profile": { - "height": "160", - "weight": "46", - "bust": "83", - "waist": "60", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "サマービーチ", - "alias_name_display": "サマービーチ", - "id": "3230101", - "hash": "73aafeafe35337515de4a8ea14811e4b", - "profile": { - "height": "160", - "weight": "46", - "bust": "83", - "waist": "60", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "サマービーチ", - "alias_name_display": "サマービーチ", - "id": "3330102", - "hash": "2dff8b1eb623fe157e9994f11a8c4272", - "profile": { - "height": "160", - "weight": "46", - "bust": "83", - "waist": "60", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "湯けむり紀行", - "alias_name_display": "湯けむり紀行", - "id": "3233301", - "hash": "5cdaef85b672564c81aae4d446c0d1fe", - "profile": { - "height": "160", - "weight": "46", - "bust": "83", - "waist": "60", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "湯けむり紀行", - "alias_name_display": "湯けむり紀行", - "id": "3333302", - "hash": "cae2391c1b618fc95dd8b35d508b240e", - "profile": { - "height": "160", - "weight": "46", - "bust": "83", - "waist": "60", - "hip": "89" - }, - "event": [] - }, - { - "alias_name": "明日へのフライト", - "alias_name_display": "明日へのフライト", - "id": "3411701", - "hash": "caa77dc7a7f1de14f95233f4f6fab724", - "profile": { - "height": "160", - "weight": "46", - "bust": "83", - "waist": "60", - "hip": "89" - }, - "event": [ - { - "event_id": "015", - "event_name": "第15回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "明日へのフライト", - "alias_name_display": "明日へのフライト", - "id": "3511702", - "hash": "1b437d9ca380059cc9b380c5f2354511", - "profile": { - "height": "160", - "weight": "46", - "bust": "83", - "waist": "60", - "hip": "89" - }, - "event": [ - { - "event_id": "015", - "event_name": "第15回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "紅葉色の風", - "alias_name_display": "紅葉色の風", - "id": "3418401", - "hash": "9086936700dd75591e0cfa109819e211", - "profile": { - "height": "160", - "weight": "46", - "bust": "83", - "waist": "60", - "hip": "89" - }, - "event": [ - { - "event_id": 709, - "event_name": "第9回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "紅葉色の風", - "alias_name_display": "紅葉色の風", - "id": "3518402", - "hash": "497bf3092363f016268cf298c5b99146", - "profile": { - "height": "160", - "weight": "46", - "bust": "83", - "waist": "60", - "hip": "89" - }, - "event": [ - { - "event_id": 709, - "event_name": "第9回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ストイック・ロワイヤル", - "alias_name_display": "ストイック・ロワイヤル", - "id": "3425101", - "hash": "f9c3a2a5ede2924c4dc5b9829481e789", - "profile": { - "height": "160", - "weight": "46", - "bust": "83", - "waist": "60", - "hip": "89" - }, - "event": [ - { - "event_id": 813, - "event_name": "第13回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ストイック・ロワイヤル", - "alias_name_display": "ストイック・ロワイヤル", - "id": "3525102", - "hash": "53c6e0d594d07c777aa0cceeb7e425b8", - "profile": { - "height": "160", - "weight": "46", - "bust": "83", - "waist": "60", - "hip": "89" - }, - "event": [ - { - "event_id": 813, - "event_name": "第13回アイドルLIVEロワイヤル" - } - ] - } - ], - "units": [ - { - "id": "159", - "name": "パステル・カクテル" - }, - { - "id": "167", - "name": "ロマンティックツアーズ" - } - ] - }, - "175": { - "idol_id": 175, - "idol_name": "槙原志保", - "idol_name_display": "槙原志保", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3201301", - "hash": "631512ff6dcc396969055e90d1430a6d", - "profile": { - "height": "162", - "weight": "46", - "bust": "86", - "waist": "57", - "hip": "91" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3301302", - "hash": "569f02751f9ff485931fd93d5c1c81a3", - "profile": { - "height": "162", - "weight": "46", - "bust": "86", - "waist": "57", - "hip": "91" - }, - "event": [] - }, - { - "alias_name": "メイドコレクション", - "alias_name_display": "メイドコレクション", - "id": "3206101", - "hash": "25efbdc5d98716f254d4b615ab27b120", - "profile": { - "height": "162", - "weight": "46", - "bust": "86", - "waist": "57", - "hip": "91" - }, - "event": [] - }, - { - "alias_name": "メイドコレクション", - "alias_name_display": "メイドコレクション", - "id": "3306102", - "hash": "e5c75d9bfc61b4443d47ab881673d791", - "profile": { - "height": "162", - "weight": "46", - "bust": "86", - "waist": "57", - "hip": "91" - }, - "event": [] - }, - { - "alias_name": "バリスタイル", - "alias_name_display": "バリスタイル", - "id": "3211101", - "hash": "da57276b8114b62e0baf4b45abe791c1", - "profile": { - "height": "162", - "weight": "46", - "bust": "86", - "waist": "57", - "hip": "91" - }, - "event": [ - { - "event_id": 505, - "event_name": "アイドルLIVEツアーinバリ島" - } - ] - }, - { - "alias_name": "バリスタイル", - "alias_name_display": "バリスタイル", - "id": "3311102", - "hash": "d961c9e96664a1780df29863d264ac1f", - "profile": { - "height": "162", - "weight": "46", - "bust": "86", - "waist": "57", - "hip": "91" - }, - "event": [ - { - "event_id": 505, - "event_name": "アイドルLIVEツアーinバリ島" - } - ] - }, - { - "alias_name": "ティーフレーバーメイド", - "alias_name_display": "ティーフレーバーメイド", - "id": "3214601", - "hash": "a3b8047efc21fd4c75c213c46c6ef4ba", - "profile": { - "height": "162", - "weight": "46", - "bust": "86", - "waist": "57", - "hip": "91" - }, - "event": [] - }, - { - "alias_name": "ティーフレーバーメイド", - "alias_name_display": "ティーフレーバーメイド", - "id": "3314602", - "hash": "8c102de57f48bcbcf728f33a178490ab", - "profile": { - "height": "162", - "weight": "46", - "bust": "86", - "waist": "57", - "hip": "91" - }, - "event": [] - }, - { - "alias_name": "クリスマスプレゼント", - "alias_name_display": "クリスマスプレゼント", - "id": "3220601", - "hash": "8d214505b61bc523bb8d2c961f6cc893", - "profile": { - "height": "162", - "weight": "46", - "bust": "86", - "waist": "57", - "hip": "91" - }, - "event": [] - }, - { - "alias_name": "クリスマスプレゼント", - "alias_name_display": "クリスマスプレゼント", - "id": "3320602", - "hash": "c7c70767452bba98330bdfe14af0138b", - "profile": { - "height": "162", - "weight": "46", - "bust": "86", - "waist": "57", - "hip": "91" - }, - "event": [] - }, - { - "alias_name": "フレッシュライフ", - "alias_name_display": "フレッシュライフ", - "id": "3223601", - "hash": "9627ead9b834427fda965a722669ff1f", - "profile": { - "height": "162", - "weight": "46", - "bust": "86", - "waist": "57", - "hip": "91" - }, - "event": [] - }, - { - "alias_name": "フレッシュライフ", - "alias_name_display": "フレッシュライフ", - "id": "3323602", - "hash": "c5f8a13d83c343ba3e671d9d48766c10", - "profile": { - "height": "162", - "weight": "46", - "bust": "86", - "waist": "57", - "hip": "91" - }, - "event": [] - }, - { - "alias_name": "チェンジタイム", - "alias_name_display": "チェンジタイム", - "id": "3228601", - "hash": "70c0319dc14965836d47b43a0eb0231b", - "profile": { - "height": "162", - "weight": "46", - "bust": "86", - "waist": "57", - "hip": "91" - }, - "event": [] - }, - { - "alias_name": "チェンジタイム", - "alias_name_display": "チェンジタイム", - "id": "3328602", - "hash": "219b941411f0d170137aa0dbc575da04", - "profile": { - "height": "162", - "weight": "46", - "bust": "86", - "waist": "57", - "hip": "91" - }, - "event": [] - }, - { - "alias_name": "ぷちぷちフレッシュ", - "alias_name_display": "ぷちぷちフレッシュ", - "id": "3234001", - "hash": "d8cdf407e9f473221b46a24aefb9ff5f", - "profile": { - "height": "162", - "weight": "46", - "bust": "86", - "waist": "57", - "hip": "91" - }, - "event": [] - }, - { - "alias_name": "ぷちぷちフレッシュ", - "alias_name_display": "ぷちぷちフレッシュ", - "id": "3334002", - "hash": "b2b089c4cb75471d8e24873800d34d05", - "profile": { - "height": "162", - "weight": "46", - "bust": "86", - "waist": "57", - "hip": "91" - }, - "event": [] - }, - { - "alias_name": "甘いひととき", - "alias_name_display": "甘いひととき", - "id": "3415101", - "hash": "46622b85db85b604f09c7761c3c961e9", - "profile": { - "height": "162", - "weight": "46", - "bust": "86", - "waist": "57", - "hip": "91" - }, - "event": [ - { - "event_id": 805, - "event_name": "第5回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "甘いひととき", - "alias_name_display": "甘いひととき", - "id": "3515102", - "hash": "a109b84c1e6b327f91f5844d4ae07435", - "profile": { - "height": "162", - "weight": "46", - "bust": "86", - "waist": "57", - "hip": "91" - }, - "event": [ - { - "event_id": 805, - "event_name": "第5回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "小悪魔ヴァンパイア", - "alias_name_display": "小悪魔ヴァンパイア", - "id": "3427301", - "hash": "28333045bbce33e1dc610922ae42c0b3", - "profile": { - "height": "162", - "weight": "46", - "bust": "86", - "waist": "57", - "hip": "91" - }, - "event": [ - { - "event_id": 522, - "event_name": "魔界公演 幽鬱女王とハロウィンの祝祭" - } - ] - }, - { - "alias_name": "小悪魔ヴァンパイア", - "alias_name_display": "小悪魔ヴァンパイア", - "id": "3527302", - "hash": "c4aec86eca5285bc73297ce6233f9afc", - "profile": { - "height": "162", - "weight": "46", - "bust": "86", - "waist": "57", - "hip": "91" - }, - "event": [ - { - "event_id": 522, - "event_name": "魔界公演 幽鬱女王とハロウィンの祝祭" - } - ] - }, - { - "alias_name": "至福のボリューム", - "alias_name_display": "至福のボリューム", - "id": "3436201", - "hash": "045dd1edac3495d38bb59e44b36b637e", - "profile": { - "height": "162", - "weight": "46", - "bust": "86", - "waist": "57", - "hip": "91" - }, - "event": [] - }, - { - "alias_name": "至福のボリューム", - "alias_name_display": "至福のボリューム", - "id": "3536202", - "hash": "fdce336ae18237fdf6e8811aa42d5444", - "profile": { - "height": "162", - "weight": "46", - "bust": "86", - "waist": "57", - "hip": "91" - }, - "event": [] - } - ], - "units": [ - { - "id": "42", - "name": "バリスタイル" - }, - { - "id": "119", - "name": "フランメ・ルージュ" - }, - { - "id": "183", - "name": "メイドコレクション" - } - ] - }, - "176": { - "idol_id": 176, - "idol_name": "萩原雪歩", - "idol_name_display": "萩原雪歩", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3201401", - "hash": "e01a1807c67d2fc57825c3acbb06bb0f", - "profile": { - "height": "155", - "weight": "42", - "bust": "81", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3301402", - "hash": "48bd1e2b725fbcbabf8836f901a797c9", - "profile": { - "height": "155", - "weight": "42", - "bust": "81", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "制服ブルー", - "alias_name_display": "制服ブルー", - "id": "3203901", - "hash": "e6e076765046fdfe473b17ecce87b081", - "profile": { - "height": "155", - "weight": "42", - "bust": "81", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "制服レッド", - "alias_name_display": "制服レッド", - "id": "3203902", - "hash": "a64b6c62e587d382e6b7f13898f731b1", - "profile": { - "height": "155", - "weight": "42", - "bust": "81", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "制服グリーン", - "alias_name_display": "制服グリーン", - "id": "3203903", - "hash": "dd098abcaa327e6d1b3e87f5ae0ca630", - "profile": { - "height": "155", - "weight": "42", - "bust": "81", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "制服ベージュ", - "alias_name_display": "制服ベージュ", - "id": "3203904", - "hash": "f55b11ed9a3bae507601e01b808d7fcd", - "profile": { - "height": "155", - "weight": "42", - "bust": "81", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ピンクダイヤモンド765", - "alias_name_display": "ピンクダイヤモンド765", - "id": "3303905", - "hash": "14b07aa0c4c86609327f71c9fe3234a7", - "profile": { - "height": "155", - "weight": "42", - "bust": "81", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "パウダースノーホワイティ", - "alias_name_display": "パウダースノーホワイティ", - "id": "3303906", - "hash": "ccbf1bef431de35d49f91b4b33e1c071", - "profile": { - "height": "155", - "weight": "42", - "bust": "81", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ファイアオパール76ct", - "alias_name_display": "ファイアオパール76ct", - "id": "3303907", - "hash": "67304a52ef511f0a1d867ed94bc34733", - "profile": { - "height": "155", - "weight": "42", - "bust": "81", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "メイデンインブラック", - "alias_name_display": "メイデンインブラック", - "id": "3303908", - "hash": "8a7da5a3b073b6a34f903f467c226483", - "profile": { - "height": "155", - "weight": "42", - "bust": "81", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "ギルデッドマドモアゼル", - "alias_name_display": "ギルデッドマドモアゼル", - "id": "3303909", - "hash": "4361c6d74eb62bd54389b51636065de7", - "profile": { - "height": "155", - "weight": "42", - "bust": "81", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "臆病な天使", - "alias_name_display": "臆病な天使", - "id": "3400201", - "hash": "06dafddc14d8e0d892dd9894823096bb", - "profile": { - "height": "155", - "weight": "42", - "bust": "81", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "臆病な天使", - "alias_name_display": "臆病な天使", - "id": "3500202", - "hash": "f1e541422f10cf882ca4a0193ceafbcb", - "profile": { - "height": "155", - "weight": "42", - "bust": "81", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "癒しの天使", - "alias_name_display": "癒しの天使", - "id": "3401310", - "hash": "cf3f8b4f5eb92c82d7db89d358fbb222", - "profile": { - "height": "155", - "weight": "42", - "bust": "81", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "癒しの天使", - "alias_name_display": "癒しの天使", - "id": "3501311", - "hash": "0621e2c41675c75cc29d0b2a6a3fad12", - "profile": { - "height": "155", - "weight": "42", - "bust": "81", - "waist": "56", - "hip": "81" - }, - "event": [] - }, - { - "alias_name": "アニス衣装", - "alias_name_display": "アニス衣装", - "id": "3501902", - "hash": "a627c4d6e7a223402aa99e1d174dd7ce", - "profile": { - "height": "155", - "weight": "42", - "bust": "81", - "waist": "56", - "hip": "81" - }, - "event": [] - } - ] - }, - "177": { - "idol_id": 177, - "idol_name": "双海亜美", - "idol_name_display": "双海亜美", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3201501", - "hash": "c161cb226474f58f3393e3d6aabfc9b2", - "profile": { - "height": "158", - "weight": "42", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3301502", - "hash": "11db690ef5aec1cd0cd9c9e2aedfb2cd", - "profile": { - "height": "158", - "weight": "42", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "パワフル双子妹", - "alias_name_display": "パワフル双子妹", - "id": "3401001", - "hash": "65b0cc4a2afc8a4e9e4c194b4aecd267", - "profile": { - "height": "158", - "weight": "42", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "パワフル双子妹", - "alias_name_display": "パワフル双子妹", - "id": "3501002", - "hash": "d604961da03fd554556bf5ec24eae13a", - "profile": { - "height": "158", - "weight": "42", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [] - } - ] - }, - "178": { - "idol_id": 178, - "idol_name": "双海真美", - "idol_name_display": "双海真美", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3201601", - "hash": "421870a18b78ade223c811fe38edf51e", - "profile": { - "height": "158", - "weight": "42", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3301602", - "hash": "ee397ecc1f873bb6d986acb05e5b9916", - "profile": { - "height": "158", - "weight": "42", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "パワフル双子姉", - "alias_name_display": "パワフル双子姉", - "id": "3401101", - "hash": "cb92615dedf1df3d4b4971b256254d39", - "profile": { - "height": "158", - "weight": "42", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [] - }, - { - "alias_name": "パワフル双子姉", - "alias_name_display": "パワフル双子姉", - "id": "3501102", - "hash": "7174c14b3213a89f45cc5375eb1fff5a", - "profile": { - "height": "158", - "weight": "42", - "bust": "78", - "waist": "55", - "hip": "77" - }, - "event": [] - } - ] - }, - "179": { - "idol_id": 179, - "idol_name": "星井美希", - "idol_name_display": "星井美希", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3201701", - "hash": "0fd395f1fae53b17c20854465439ca1d", - "profile": { - "height": "161", - "weight": "45", - "bust": "86", - "waist": "55", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3301702", - "hash": "8370a885b84e453d5dc557005de4fd17", - "profile": { - "height": "161", - "weight": "45", - "bust": "86", - "waist": "55", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "制服オレンジ", - "alias_name_display": "制服オレンジ", - "id": "3202801", - "hash": "ebb522ecfbd377353069ebd81c91fb16", - "profile": { - "height": "161", - "weight": "45", - "bust": "86", - "waist": "55", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "制服レッド", - "alias_name_display": "制服レッド", - "id": "3202802", - "hash": "6b3065f0a962d20cff5d955a3dbc4314", - "profile": { - "height": "161", - "weight": "45", - "bust": "86", - "waist": "55", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "制服ブルー", - "alias_name_display": "制服ブルー", - "id": "3202803", - "hash": "04c878def0b7d2bb8dda5f2f756ab53d", - "profile": { - "height": "161", - "weight": "45", - "bust": "86", - "waist": "55", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "制服グリーン", - "alias_name_display": "制服グリーン", - "id": "3202804", - "hash": "a79af47eae779e8bea9e4d779616fb2f", - "profile": { - "height": "161", - "weight": "45", - "bust": "86", - "waist": "55", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "ピンクダイヤモンド765", - "alias_name_display": "ピンクダイヤモンド765", - "id": "3302805", - "hash": "5831bf84cae2c72d1e14475a3d10a4fd", - "profile": { - "height": "161", - "weight": "45", - "bust": "86", - "waist": "55", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "ギルデッドマドモアゼル", - "alias_name_display": "ギルデッドマドモアゼル", - "id": "3302806", - "hash": "a9ed29a9f57923d25c99a7439136e26d", - "profile": { - "height": "161", - "weight": "45", - "bust": "86", - "waist": "55", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "メイデンインブラック", - "alias_name_display": "メイデンインブラック", - "id": "3302807", - "hash": "9ba2da0a155f2a20df7aa61826b2883c", - "profile": { - "height": "161", - "weight": "45", - "bust": "86", - "waist": "55", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "ベイビーブルージャガー", - "alias_name_display": "ベイビーブルージャガー", - "id": "3302808", - "hash": "ff56ed5787d63f5a6a73ab567452cd49", - "profile": { - "height": "161", - "weight": "45", - "bust": "86", - "waist": "55", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "トワイライトサファリ", - "alias_name_display": "トワイライトサファリ", - "id": "3302809", - "hash": "ff83137129b578d3c62b7fc2a984de58", - "profile": { - "height": "161", - "weight": "45", - "bust": "86", - "waist": "55", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "才能無限大", - "alias_name_display": "才能無限大", - "id": "3400710", - "hash": "5ee38ca4a88f80c624feb7fb5cec0ba7", - "profile": { - "height": "161", - "weight": "45", - "bust": "86", - "waist": "55", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "才能無限大", - "alias_name_display": "才能無限大", - "id": "3500711", - "hash": "92102c96222350216184f02f45dc7d84", - "profile": { - "height": "161", - "weight": "45", - "bust": "86", - "waist": "55", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "眠れる姫君", - "alias_name_display": "眠れる姫君", - "id": "3401601", - "hash": "3c0f40fdeba208d3fc9eee9cd90d8843", - "profile": { - "height": "161", - "weight": "45", - "bust": "86", - "waist": "55", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "眠れる姫君", - "alias_name_display": "眠れる姫君", - "id": "3501602", - "hash": "d68e4b36d3e506fbbb958c0bf1434867", - "profile": { - "height": "161", - "weight": "45", - "bust": "86", - "waist": "55", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "1stセレブレイト", - "alias_name_display": "1stセレブレイト", - "id": "3504202", - "hash": "76b1355f3c75a11675d5e5fbd7477c36", - "profile": { - "height": "161", - "weight": "45", - "bust": "86", - "waist": "55", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "ワンフォーオール", - "alias_name_display": "ワンフォーオール", - "id": "3514302", - "hash": "c504c5f878ac85da8d9ccb70ef44fbe4", - "profile": { - "height": "161", - "weight": "45", - "bust": "86", - "waist": "55", - "hip": "83" - }, - "event": [] - } - ] - }, - "180": { - "idol_id": 180, - "idol_name": "向井拓海", - "idol_name_display": "向井拓海", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3201801", - "hash": "20f58f004dad13ba670869c921dc32b9", - "profile": { - "height": "163", - "weight": "53", - "bust": "95", - "waist": "60", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3301802", - "hash": "25ddc32b1b3797057b29bf5fb6de3092", - "profile": { - "height": "163", - "weight": "51", - "bust": "95", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "姉御肌", - "alias_name_display": "姉御肌", - "id": "3204701", - "hash": "092c5efbc6e0e566958d7fc507821e0d", - "profile": { - "height": "163", - "weight": "51", - "bust": "95", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "姉御肌", - "alias_name_display": "姉御肌", - "id": "3304702", - "hash": "9457d1172204c626ec30cfe67f0bdb32", - "profile": { - "height": "163", - "weight": "51", - "bust": "95", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "ビーチパラダイス", - "alias_name_display": "ビーチパラダイス", - "id": "3212001", - "hash": "92248cecce1bf62b838a10634aac23b8", - "profile": { - "height": "163", - "weight": "51", - "bust": "95", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "ビーチパラダイス", - "alias_name_display": "ビーチパラダイス", - "id": "3312002", - "hash": "7a94d2b2aa7c63db4e6653313a31546a", - "profile": { - "height": "163", - "weight": "51", - "bust": "95", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "硬派乙女", - "alias_name_display": "硬派乙女", - "id": "3403401", - "hash": "0e90856cd6e941b956af90027490d868", - "profile": { - "height": "163", - "weight": "51", - "bust": "95", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "硬派乙女", - "alias_name_display": "硬派乙女", - "id": "3503402", - "hash": "f3186c8e8aafb4bc748f8eb08ced1d45", - "profile": { - "height": "163", - "weight": "51", - "bust": "95", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "はにかみバレンタイン", - "alias_name_display": "はにかみバレンタイン", - "id": "3405101", - "hash": "918ea661dcd0221ad5cb7a69c5f3822d", - "profile": { - "height": "163", - "weight": "51", - "bust": "95", - "waist": "58", - "hip": "87" - }, - "event": [ - { - "event_id": 405, - "event_name": "アイドルプロデュース バレンタイン編" - } - ] - }, - { - "alias_name": "はにかみバレンタイン", - "alias_name_display": "はにかみバレンタイン", - "id": "3505102", - "hash": "f87ee02a7edd0c6e4ec18b561de3979d", - "profile": { - "height": "163", - "weight": "51", - "bust": "95", - "waist": "58", - "hip": "87" - }, - "event": [ - { - "event_id": 405, - "event_name": "アイドルプロデュース バレンタイン編" - } - ] - }, - { - "alias_name": "走志走愛", - "alias_name_display": "走志走愛", - "id": "3411901", - "hash": "232fa3d7136a3427103cbcf6e5ba7e2f", - "profile": { - "height": "163", - "weight": "51", - "bust": "95", - "waist": "58", - "hip": "87" - }, - "event": [ - { - "event_id": 510, - "event_name": "ひな祭りLIVEツアーカーニバル" - } - ] - }, - { - "alias_name": "走志走愛", - "alias_name_display": "走志走愛", - "id": "3511902", - "hash": "66bd2e19f6654df596306b2b8602b1d2", - "profile": { - "height": "163", - "weight": "51", - "bust": "95", - "waist": "58", - "hip": "87" - }, - "event": [ - { - "event_id": 510, - "event_name": "ひな祭りLIVEツアーカーニバル" - } - ] - }, - { - "alias_name": "百獣の女王", - "alias_name_display": "百獣の女王", - "id": "3417001", - "hash": "a017f0aeb84bba360795e5c8ff59bcdd", - "profile": { - "height": "163", - "weight": "51", - "bust": "95", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "百獣の女王", - "alias_name_display": "百獣の女王", - "id": "3517002", - "hash": "b9b7cc2cbce8aaf53fe3bda1a44996ff", - "profile": { - "height": "163", - "weight": "51", - "bust": "95", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "初日の出変装", - "alias_name_display": "初日の出変装", - "id": "3420601", - "hash": "348d7861a7a71b576d14599b1c55f26c", - "profile": { - "height": "163", - "weight": "51", - "bust": "95", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "初日の出変装", - "alias_name_display": "初日の出変装", - "id": "3520602", - "hash": "1ba2870e74e721957e0a2730047f9ce7", - "profile": { - "height": "163", - "weight": "51", - "bust": "95", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "炎天の女王", - "alias_name_display": "炎天の女王", - "id": "3425401", - "hash": "c59fb577d23dbfce5a08c9b53e6947c8", - "profile": { - "height": "163", - "weight": "51", - "bust": "95", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "炎天の女王", - "alias_name_display": "炎天の女王", - "id": "3525402", - "hash": "f00fb6b6b7eb49b5ebaae24580a0b917", - "profile": { - "height": "163", - "weight": "51", - "bust": "95", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "4thアニバーサリー", - "alias_name_display": "4thアニバーサリー", - "id": "3428001", - "hash": "62558d3fb34d3585e7d45da67c3a796e", - "profile": { - "height": "163", - "weight": "51", - "bust": "95", - "waist": "58", - "hip": "87" - }, - "event": [ - { - "event_id": 1704, - "event_name": "アイドルプロデュース the 4th Anniversary" - } - ] - }, - { - "alias_name": "4thアニバーサリー", - "alias_name_display": "4thアニバーサリー", - "id": "3528002", - "hash": "1c907965f5315da790eee90f018e1662", - "profile": { - "height": "163", - "weight": "51", - "bust": "95", - "waist": "58", - "hip": "87" - }, - "event": [ - { - "event_id": 1704, - "event_name": "アイドルプロデュース the 4th Anniversary" - } - ] - }, - { - "alias_name": "4thアニバーサリー・S", - "alias_name_display": "4thアニバーサリー・S", - "id": "3428101", - "hash": "b0f137bebf1a85a9e07a83ee645abae2", - "profile": { - "height": "163", - "weight": "51", - "bust": "95", - "waist": "58", - "hip": "87" - }, - "event": [ - { - "event_id": 1704, - "event_name": "アイドルプロデュース the 4th Anniversary" - } - ] - }, - { - "alias_name": "4thアニバーサリー・S", - "alias_name_display": "4thアニバーサリー・S", - "id": "3528102", - "hash": "d1cadffd8525c34cf2351c5c99b288a5", - "profile": { - "height": "163", - "weight": "51", - "bust": "95", - "waist": "58", - "hip": "87" - }, - "event": [ - { - "event_id": 1704, - "event_name": "アイドルプロデュース the 4th Anniversary" - } - ] - }, - { - "alias_name": "ワン・サマー・カーニバル", - "alias_name_display": "ワン・サマー・カーニバル", - "id": "3434001", - "hash": "7315e47ffb4d283653056bb6cf405b6b", - "profile": { - "height": "163", - "weight": "51", - "bust": "95", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "ワン・サマー・カーニバル", - "alias_name_display": "ワン・サマー・カーニバル", - "id": "3534002", - "hash": "edecc7f8cfda4fdf6274a9bd2754d2b8", - "profile": { - "height": "163", - "weight": "51", - "bust": "95", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "シンデレラドリーム", - "alias_name_display": "シンデレラドリーム", - "id": "3437701", - "hash": "c7083266edd7edc700f07c910f77b6f3", - "profile": { - "height": "163", - "weight": "51", - "bust": "95", - "waist": "58", - "hip": "87" - }, - "event": [] - }, - { - "alias_name": "シンデレラドリーム", - "alias_name_display": "シンデレラドリーム", - "id": "3537702", - "hash": "2198eb80f3fc029ca19d09a514a66a30", - "profile": { - "height": "163", - "weight": "51", - "bust": "95", - "waist": "58", - "hip": "87" - }, - "event": [] - } - ], - "units": [ - { - "id": "39", - "name": "ノーティギャルズ" - }, - { - "id": "123", - "name": "マッシブライダース" - }, - { - "id": "176", - "name": "炎陣" - } - ] - }, - "181": { - "idol_id": 181, - "idol_name": "水瀬伊織", - "idol_name_display": "水瀬伊織", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3201901", - "hash": "5d06736b102de0b7c12dc2ff98d00eec", - "profile": { - "height": "153", - "weight": "40", - "bust": "77", - "waist": "54", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3301902", - "hash": "3ad04e62905e3fac4f2c1a40ec0b80a8", - "profile": { - "height": "153", - "weight": "40", - "bust": "77", - "waist": "54", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "高飛車お嬢様", - "alias_name_display": "高飛車お嬢様", - "id": "3400101", - "hash": "953571fbea83b361e8d2a0ee086b71bb", - "profile": { - "height": "153", - "weight": "40", - "bust": "77", - "waist": "54", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "高飛車お嬢様", - "alias_name_display": "高飛車お嬢様", - "id": "3500102", - "hash": "933333b6f15c88a6e8564a2dee2f125a", - "profile": { - "height": "153", - "weight": "40", - "bust": "77", - "waist": "54", - "hip": "79" - }, - "event": [] - } - ] - }, - "182": { - "idol_id": 182, - "idol_name": "ベテラントレーナー", - "idol_name_display": "ベテラントレーナー", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3202001", - "hash": "b0fca5a125b526c755eeec59253e3bb3", - "profile": { - "height": "163", - "weight": "45", - "bust": "83", - "waist": "56", - "hip": "84" - }, - "event": [ - { - "event_id": 303, - "event_name": "アイドル強化合宿" - } - ] - }, - { - "alias_name": "聖夜", - "alias_name_display": "聖夜", - "id": "3202201", - "hash": "c7b48696b8c78ad11d3fb0f898b1343b", - "profile": { - "height": "163", - "weight": "45", - "bust": "83", - "waist": "56", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "新春", - "alias_name_display": "新春", - "id": "3202401", - "hash": "16df3c000e1bd9af11046666963cfdb9", - "profile": { - "height": "163", - "weight": "45", - "bust": "83", - "waist": "56", - "hip": "84" - }, - "event": [] - }, - { - "alias_name": "バレンタイン", - "alias_name_display": "バレンタイン", - "id": "3203301", - "hash": "313b271eddfdc8c9d223cfc16fc55eb9", - "profile": { - "height": "163", - "weight": "45", - "bust": "83", - "waist": "56", - "hip": "84" - }, - "event": [] - } - ] - }, - "183": { - "idol_id": 183, - "idol_name": "市原仁奈", - "idol_name_display": "市原仁奈", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3202501", - "hash": "461c0f642b5623fcd0df84af1de98fc7", - "profile": { - "height": "128", - "weight": "29", - "bust": "61", - "waist": "57", - "hip": "67" - }, - "event": [ - { - "event_id": 102, - "event_name": "アイドルおもちつき大会" - } - ] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3302502", - "hash": "101a6b754f02d297fac368dd7644cc16", - "profile": { - "height": "129", - "weight": "30", - "bust": "62", - "waist": "58", - "hip": "67" - }, - "event": [ - { - "event_id": 102, - "event_name": "アイドルおもちつき大会" - } - ] - }, - { - "alias_name": "アニマルパーク", - "alias_name_display": "アニマルパーク", - "id": "3205001", - "hash": "16c84938d5bc45ce243e3c42a00ca98f", - "profile": { - "height": "129", - "weight": "30", - "bust": "62", - "waist": "58", - "hip": "67" - }, - "event": [ - { - "event_id": 204, - "event_name": "アイドルサバイバルin動物園" - } - ] - }, - { - "alias_name": "アニマルパーク", - "alias_name_display": "アニマルパーク", - "id": "3305002", - "hash": "373178c8cac8f998af6b1b10e5b65754", - "profile": { - "height": "129", - "weight": "30", - "bust": "62", - "waist": "58", - "hip": "67" - }, - "event": [ - { - "event_id": 204, - "event_name": "アイドルサバイバルin動物園" - } - ] - }, - { - "alias_name": "きぐるみもふもふ", - "alias_name_display": "きぐるみもふもふ", - "id": "3404501", - "hash": "a6babedb100170e974c49456628b367f", - "profile": { - "height": "129", - "weight": "30", - "bust": "62", - "waist": "58", - "hip": "67" - }, - "event": [ - { - "event_id": "007", - "event_name": "第7回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "きぐるみもふもふ", - "alias_name_display": "きぐるみもふもふ", - "id": "3504502", - "hash": "5482291c15f4a0b26b81eac4702b255b", - "profile": { - "height": "129", - "weight": "30", - "bust": "62", - "waist": "58", - "hip": "67" - }, - "event": [ - { - "event_id": "007", - "event_name": "第7回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "うみのいきもの", - "alias_name_display": "うみのいきもの", - "id": "3408101", - "hash": "c4d48bdb3ffa6f6d408619a0a34fe9f4", - "profile": { - "height": "129", - "weight": "30", - "bust": "62", - "waist": "58", - "hip": "67" - }, - "event": [ - { - "event_id": 702, - "event_name": "水着DEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "うみのいきもの", - "alias_name_display": "うみのいきもの", - "id": "3508102", - "hash": "18a4aaa5bcd5dc6fddd2d01ec7e0f526", - "profile": { - "height": "129", - "weight": "30", - "bust": "62", - "waist": "58", - "hip": "67" - }, - "event": [ - { - "event_id": 702, - "event_name": "水着DEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "にゅーきぐるみ", - "alias_name_display": "にゅーきぐるみ", - "id": "3410901", - "hash": "7644ffcf30392370091e558404adcc6a", - "profile": { - "height": "129", - "weight": "30", - "bust": "62", - "waist": "58", - "hip": "67" - }, - "event": [ - { - "event_id": "014", - "event_name": "第14回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "にゅーきぐるみ", - "alias_name_display": "にゅーきぐるみ", - "id": "3510902", - "hash": "5c393f00c7cca8fffb369c91099f15d4", - "profile": { - "height": "129", - "weight": "30", - "bust": "62", - "waist": "58", - "hip": "67" - }, - "event": [ - { - "event_id": "014", - "event_name": "第14回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "きぐるみわーく", - "alias_name_display": "きぐるみわーく", - "id": "3417201", - "hash": "81ce951e49b513921c0fc0aa91889e59", - "profile": { - "height": "129", - "weight": "30", - "bust": "62", - "waist": "58", - "hip": "67" - }, - "event": [] - }, - { - "alias_name": "きぐるみわーく", - "alias_name_display": "きぐるみわーく", - "id": "3517202", - "hash": "d8f0b946466ef70a0f705364696a8b09", - "profile": { - "height": "129", - "weight": "30", - "bust": "62", - "waist": "58", - "hip": "67" - }, - "event": [] - }, - { - "alias_name": "にゅーいやー", - "alias_name_display": "にゅーいやー", - "id": "3420401", - "hash": "a79bdcc89bd7b9fdcd59f0c3e42caddc", - "profile": { - "height": "129", - "weight": "30", - "bust": "62", - "waist": "58", - "hip": "67" - }, - "event": [] - }, - { - "alias_name": "にゅーいやー", - "alias_name_display": "にゅーいやー", - "id": "3520402", - "hash": "9ce5c63b01d63ae3a72544427e599088", - "profile": { - "height": "129", - "weight": "30", - "bust": "62", - "waist": "58", - "hip": "67" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "3421401", - "hash": "dfbef98b0d7c10d4053b30906c38c351", - "profile": { - "height": "128", - "weight": "29", - "bust": "61", - "waist": "57", - "hip": "67" - }, - "event": [] - }, - { - "alias_name": "CDデビュー", - "alias_name_display": "CDデビュー", - "id": "3521402", - "hash": "6b7b27756e32560ebd97a01021ce4b9d", - "profile": { - "height": "128", - "weight": "29", - "bust": "61", - "waist": "57", - "hip": "67" - }, - "event": [] - }, - { - "alias_name": "わくわくきゃんぷ", - "alias_name_display": "わくわくきゃんぷ", - "id": "3423301", - "hash": "1676fb40ccf5df3f3ee58a16e2cddae6", - "profile": { - "height": "129", - "weight": "30", - "bust": "62", - "waist": "58", - "hip": "67" - }, - "event": [ - { - "event_id": 1701, - "event_name": "アイドルプロデュース はじめてのキャンプ" - } - ] - }, - { - "alias_name": "わくわくきゃんぷ", - "alias_name_display": "わくわくきゃんぷ", - "id": "3523302", - "hash": "320a45ed640a34b288113d3745e88f70", - "profile": { - "height": "129", - "weight": "30", - "bust": "62", - "waist": "58", - "hip": "67" - }, - "event": [ - { - "event_id": 1701, - "event_name": "アイドルプロデュース はじめてのキャンプ" - } - ] - }, - { - "alias_name": "うきうききゃんぷ", - "alias_name_display": "うきうききゃんぷ", - "id": "3423401", - "hash": "190125c60157b1943b89c47e92fe6493", - "profile": { - "height": "129", - "weight": "30", - "bust": "62", - "waist": "58", - "hip": "67" - }, - "event": [ - { - "event_id": 1701, - "event_name": "アイドルプロデュース はじめてのキャンプ" - } - ] - }, - { - "alias_name": "うきうききゃんぷ", - "alias_name_display": "うきうききゃんぷ", - "id": "3523402", - "hash": "fcad0b83c13c9d2ce611c181a8ac16f8", - "profile": { - "height": "129", - "weight": "30", - "bust": "62", - "waist": "58", - "hip": "67" - }, - "event": [ - { - "event_id": 1701, - "event_name": "アイドルプロデュース はじめてのキャンプ" - } - ] - }, - { - "alias_name": "もふもふうぃんたー", - "alias_name_display": "もふもふうぃんたー", - "id": "3430101", - "hash": "89df1bfca5012ae06d8b214eedba6a73", - "profile": { - "height": "129", - "weight": "30", - "bust": "62", - "waist": "58", - "hip": "67" - }, - "event": [] - }, - { - "alias_name": "もふもふうぃんたー", - "alias_name_display": "もふもふうぃんたー", - "id": "3530102", - "hash": "966af1bfc59670c22a6005a9ea61670d", - "profile": { - "height": "129", - "weight": "30", - "bust": "62", - "waist": "58", - "hip": "67" - }, - "event": [] - }, - { - "alias_name": "わんつー☆マーチング", - "alias_name_display": "わんつー☆マーチング", - "id": "3434501", - "hash": "18197892c34249d75d985645aec8e49f", - "profile": { - "height": "129", - "weight": "30", - "bust": "62", - "waist": "58", - "hip": "67" - }, - "event": [] - }, - { - "alias_name": "わんつー☆マーチング", - "alias_name_display": "わんつー☆マーチング", - "id": "3534502", - "hash": "ea3503c100442dae6d2bd0959a68046e", - "profile": { - "height": "129", - "weight": "30", - "bust": "62", - "waist": "58", - "hip": "67" - }, - "event": [] - }, - { - "alias_name": "はるかぜぶんぶん", - "alias_name_display": "はるかぜぶんぶん", - "id": "3439201", - "hash": "6b23c2fa9aaa385717a346f4bbb6d6b6", - "profile": { - "height": "129", - "weight": "30", - "bust": "62", - "waist": "58", - "hip": "67" - }, - "event": [ - { - "event_id": 728, - "event_name": "ドリームLIVEフェスティバル スプリングSP" - } - ] - }, - { - "alias_name": "はるかぜぶんぶん", - "alias_name_display": "はるかぜぶんぶん", - "id": "3539202", - "hash": "f8e4f10ef977349e598b44f6ca5f0141", - "profile": { - "height": "129", - "weight": "30", - "bust": "62", - "waist": "58", - "hip": "67" - }, - "event": [ - { - "event_id": 728, - "event_name": "ドリームLIVEフェスティバル スプリングSP" - } - ] - } - ], - "units": [ - { - "id": "4", - "name": "イカバラプリンセス" - }, - { - "id": "84", - "name": "アニマルパーク" - }, - { - "id": "202", - "name": "サンフラワー" - }, - { - "id": "214", - "name": "L.M.B.G" - } - ] - }, - "184": { - "idol_id": 184, - "idol_name": "喜多日菜子", - "idol_name_display": "喜多日菜子", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3202701", - "hash": "35ed8cc4e33cec53aea016cb9e2f0f22", - "profile": { - "height": "151", - "weight": "38", - "bust": "78", - "waist": "56", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3302702", - "hash": "64ba99c6d5b579d020a5a2e8731648d4", - "profile": { - "height": "151", - "weight": "38", - "bust": "78", - "waist": "56", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "花火祭り", - "alias_name_display": "花火祭り", - "id": "3211601", - "hash": "d43d25a428dd282462276f7ea893e15c", - "profile": { - "height": "151", - "weight": "38", - "bust": "78", - "waist": "56", - "hip": "78" - }, - "event": [ - { - "event_id": 408, - "event_name": "アイドルプロデュース 夜空に咲く花火編" - } - ] - }, - { - "alias_name": "花火祭り", - "alias_name_display": "花火祭り", - "id": "3311602", - "hash": "b1e253723b1b2b4a276636717e943356", - "profile": { - "height": "151", - "weight": "38", - "bust": "78", - "waist": "56", - "hip": "78" - }, - "event": [ - { - "event_id": 408, - "event_name": "アイドルプロデュース 夜空に咲く花火編" - } - ] - }, - { - "alias_name": "花火祭りスマイル", - "alias_name_display": "花火祭りスマイル", - "id": "3211701", - "hash": "de01bd005756ddc45569087214ffa088", - "profile": { - "height": "151", - "weight": "38", - "bust": "78", - "waist": "56", - "hip": "78" - }, - "event": [ - { - "event_id": 408, - "event_name": "アイドルプロデュース 夜空に咲く花火編" - } - ] - }, - { - "alias_name": "花火祭りスマイル", - "alias_name_display": "花火祭りスマイル", - "id": "3311702", - "hash": "71bf844f9d6bba187861e9a94c4d1a2a", - "profile": { - "height": "151", - "weight": "38", - "bust": "78", - "waist": "56", - "hip": "78" - }, - "event": [ - { - "event_id": 408, - "event_name": "アイドルプロデュース 夜空に咲く花火編" - } - ] - }, - { - "alias_name": "グリッターステージ", - "alias_name_display": "グリッターステージ", - "id": "3216301", - "hash": "283f95982e58cb966d2a07d4fb85ca94", - "profile": { - "height": "151", - "weight": "38", - "bust": "78", - "waist": "56", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "グリッターステージ", - "alias_name_display": "グリッターステージ", - "id": "3316302", - "hash": "0de6cb9fa2f79c444b5a8bc6c80b126b", - "profile": { - "height": "151", - "weight": "38", - "bust": "78", - "waist": "56", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "ドリームペイント", - "alias_name_display": "ドリームペイント", - "id": "3219401", - "hash": "82abdf981278d1ac8db9caf12c77fd3d", - "profile": { - "height": "151", - "weight": "38", - "bust": "78", - "waist": "56", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "ドリームペイント", - "alias_name_display": "ドリームペイント", - "id": "3319402", - "hash": "965f5c538bbd1baa8ba16e8a092d0921", - "profile": { - "height": "151", - "weight": "38", - "bust": "78", - "waist": "56", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "ふらふら☆トリッパー", - "alias_name_display": "ふらふら☆トリッパー", - "id": "3232001", - "hash": "07030bb9c263382fb19cde7b091561a8", - "profile": { - "height": "151", - "weight": "38", - "bust": "78", - "waist": "56", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "ふらふら☆トリッパー", - "alias_name_display": "ふらふら☆トリッパー", - "id": "3332002", - "hash": "c1bb3d0591ba0ff7d0f8c6d3aaf19186", - "profile": { - "height": "151", - "weight": "38", - "bust": "78", - "waist": "56", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "妄想お姫様", - "alias_name_display": "妄想お姫様", - "id": "3401501", - "hash": "bddbbf700738b76daca74173b181733a", - "profile": { - "height": "151", - "weight": "38", - "bust": "78", - "waist": "56", - "hip": "78" - }, - "event": [ - { - "event_id": 203, - "event_name": "アイドルサバイバルinテーマパーク" - } - ] - }, - { - "alias_name": "妄想お姫様", - "alias_name_display": "妄想お姫様", - "id": "3501502", - "hash": "7ff7bf1dca35b8b2572ca73a0caecc49", - "profile": { - "height": "151", - "weight": "38", - "bust": "78", - "waist": "56", - "hip": "78" - }, - "event": [ - { - "event_id": 203, - "event_name": "アイドルサバイバルinテーマパーク" - } - ] - }, - { - "alias_name": "妄想☆暴走★", - "alias_name_display": "妄想☆暴走★", - "id": "3403701", - "hash": "1a1d4bdd3145e5fec11094585f8d5e25", - "profile": { - "height": "151", - "weight": "38", - "bust": "78", - "waist": "56", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "妄想☆暴走★", - "alias_name_display": "妄想☆暴走★", - "id": "3503702", - "hash": "d02f7c4e0e91862a3732593aede41145", - "profile": { - "height": "151", - "weight": "38", - "bust": "78", - "waist": "56", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "ビューティフルドリーマー", - "alias_name_display": "ビューティフルドリーマー", - "id": "3410401", - "hash": "2282ba15a285c7df2a7f85f1bd3365b5", - "profile": { - "height": "151", - "weight": "38", - "bust": "78", - "waist": "56", - "hip": "78" - }, - "event": [ - { - "event_id": 802, - "event_name": "第2回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ビューティフルドリーマー", - "alias_name_display": "ビューティフルドリーマー", - "id": "3510402", - "hash": "dc63d553aea48ddd20cb3623f8a85308", - "profile": { - "height": "151", - "weight": "38", - "bust": "78", - "waist": "56", - "hip": "78" - }, - "event": [ - { - "event_id": 802, - "event_name": "第2回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "妄想☆わんだふる", - "alias_name_display": "妄想☆わんだふる", - "id": "3422101", - "hash": "fec2cb1b8c1742c4551d262e56f2dfd3", - "profile": { - "height": "151", - "weight": "38", - "bust": "78", - "waist": "56", - "hip": "78" - }, - "event": [ - { - "event_id": 1109, - "event_name": "第9回プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "妄想☆わんだふる", - "alias_name_display": "妄想☆わんだふる", - "id": "3522102", - "hash": "8885845534e6d6e29cb32c72d6eb2165", - "profile": { - "height": "151", - "weight": "38", - "bust": "78", - "waist": "56", - "hip": "78" - }, - "event": [ - { - "event_id": 1109, - "event_name": "第9回プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "ワンダフルブライド", - "alias_name_display": "ワンダフルブライド", - "id": "3427201", - "hash": "cd55b9e1c5d5063cc373eeaee5edf646", - "profile": { - "height": "151", - "weight": "38", - "bust": "78", - "waist": "56", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "ワンダフルブライド", - "alias_name_display": "ワンダフルブライド", - "id": "3527202", - "hash": "ed70d31790fd506b7a5a966d1f441028", - "profile": { - "height": "151", - "weight": "38", - "bust": "78", - "waist": "56", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "ひらひらふわり", - "alias_name_display": "ひらひらふわり", - "id": "3433601", - "hash": "b3b1fa6ac4889d1847f4af965b3fe390", - "profile": { - "height": "151", - "weight": "38", - "bust": "78", - "waist": "56", - "hip": "78" - }, - "event": [ - { - "event_id": "030", - "event_name": "第30回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "ひらひらふわり", - "alias_name_display": "ひらひらふわり", - "id": "3533602", - "hash": "2b84984d9d6c5a8c0520fe96a7ba45d6", - "profile": { - "height": "151", - "weight": "38", - "bust": "78", - "waist": "56", - "hip": "78" - }, - "event": [ - { - "event_id": "030", - "event_name": "第30回プロダクションマッチフェスティバル" - } - ] - } - ], - "units": [ - { - "id": "48", - "name": "日菜子と愛海の妄想ワールド" - }, - { - "id": "151", - "name": "ブエナ・スエルテ" - } - ] - }, - "185": { - "idol_id": 185, - "idol_name": "杉坂海", - "idol_name_display": "杉坂海", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3202601", - "hash": "6edab62ef4c1db15158c13d522310985", - "profile": { - "height": "162", - "weight": "45", - "bust": "88", - "waist": "58", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3302602", - "hash": "6b619f987d78ad43e4b7a872c7af6f45", - "profile": { - "height": "162", - "weight": "45", - "bust": "88", - "waist": "58", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "メルヘン&ゴシック", - "alias_name_display": "メルヘン&ゴシック", - "id": "3209101", - "hash": "0a9233d5c36f67535bc550c2a37a160b", - "profile": { - "height": "162", - "weight": "45", - "bust": "88", - "waist": "58", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "メルヘン&ゴシック", - "alias_name_display": "メルヘン&ゴシック", - "id": "3309102", - "hash": "3d7ae831c66c150cd8df504d9ec2726c", - "profile": { - "height": "162", - "weight": "45", - "bust": "88", - "waist": "58", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "エキゾチックダンサー", - "alias_name_display": "エキゾチックダンサー", - "id": "3210901", - "hash": "506c7af5dd9e88a07d624b02e8b10477", - "profile": { - "height": "162", - "weight": "45", - "bust": "88", - "waist": "58", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "エキゾチックダンサー", - "alias_name_display": "エキゾチックダンサー", - "id": "3310902", - "hash": "1f24f868254f226ca4d9cb49821353d8", - "profile": { - "height": "162", - "weight": "45", - "bust": "88", - "waist": "58", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "ほのかな甘さ", - "alias_name_display": "ほのかな甘さ", - "id": "3218301", - "hash": "795d079f6a4cae7c0e83302f07753de1", - "profile": { - "height": "162", - "weight": "45", - "bust": "88", - "waist": "58", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "ほのかな甘さ", - "alias_name_display": "ほのかな甘さ", - "id": "3318302", - "hash": "6b44a9f0dd3b99a82ab313a0ae0a6959", - "profile": { - "height": "162", - "weight": "45", - "bust": "88", - "waist": "58", - "hip": "86" - }, - "event": [] - }, - { - "alias_name": "エスニックタイガー", - "alias_name_display": "エスニックタイガー", - "id": "3221301", - "hash": "d8ff0d484c0b918e0b7d9c175a50fe7f", - "profile": { - "height": "162", - "weight": "45", - "bust": "88", - "waist": "58", - "hip": "86" - }, - "event": [ - { - "event_id": 711, - "event_name": "福は内DEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "エスニックタイガー", - "alias_name_display": "エスニックタイガー", - "id": "3321302", - "hash": "92ec6bdec324e9f28ed76acfdf0b6689", - "profile": { - "height": "162", - "weight": "45", - "bust": "88", - "waist": "58", - "hip": "86" - }, - "event": [ - { - "event_id": 711, - "event_name": "福は内DEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "テンダーハート", - "alias_name_display": "テンダーハート", - "id": "3227101", - "hash": "14e16ee65ada054132b63a298a16f969", - "profile": { - "height": "162", - "weight": "45", - "bust": "88", - "waist": "58", - "hip": "86" - }, - "event": [ - { - "event_id": "025", - "event_name": "第25回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "テンダーハート", - "alias_name_display": "テンダーハート", - "id": "3327102", - "hash": "b6062625d2b3926c7ff59586fabf9a59", - "profile": { - "height": "162", - "weight": "45", - "bust": "88", - "waist": "58", - "hip": "86" - }, - "event": [ - { - "event_id": "025", - "event_name": "第25回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "ほっこりゲン担ぎ", - "alias_name_display": "ほっこりゲン担ぎ", - "id": "3232101", - "hash": "daa724181b0eaabdb0703cf6d8511879", - "profile": { - "height": "162", - "weight": "45", - "bust": "88", - "waist": "58", - "hip": "86" - }, - "event": [ - { - "event_id": 726, - "event_name": "ドリームLIVEフェスティバル新春SP" - } - ] - }, - { - "alias_name": "ほっこりゲン担ぎ", - "alias_name_display": "ほっこりゲン担ぎ", - "id": "3332102", - "hash": "39c3ae689cbc1723753ab102b3420b34", - "profile": { - "height": "162", - "weight": "45", - "bust": "88", - "waist": "58", - "hip": "86" - }, - "event": [ - { - "event_id": 726, - "event_name": "ドリームLIVEフェスティバル新春SP" - } - ] - }, - { - "alias_name": "エキゾチックサーファー", - "alias_name_display": "エキゾチックサーファー", - "id": "3412701", - "hash": "55ad3fbb5d19ca6c12a8262cc9596cef", - "profile": { - "height": "162", - "weight": "45", - "bust": "88", - "waist": "58", - "hip": "86" - }, - "event": [ - { - "event_id": 804, - "event_name": "第4回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "エキゾチックサーファー", - "alias_name_display": "エキゾチックサーファー", - "id": "3512702", - "hash": "b82a9987c891d3e29b18d15d90c7d884", - "profile": { - "height": "162", - "weight": "45", - "bust": "88", - "waist": "58", - "hip": "86" - }, - "event": [ - { - "event_id": 804, - "event_name": "第4回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "夏色情緒", - "alias_name_display": "夏色情緒", - "id": "3424601", - "hash": "b15a029083439aac358a12f9e5c48ea5", - "profile": { - "height": "162", - "weight": "45", - "bust": "88", - "waist": "58", - "hip": "86" - }, - "event": [ - { - "event_id": 714, - "event_name": "夏祭りDEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "夏色情緒", - "alias_name_display": "夏色情緒", - "id": "3524602", - "hash": "caa08ae235a5cb1fcacdac027f8f9f2a", - "profile": { - "height": "162", - "weight": "45", - "bust": "88", - "waist": "58", - "hip": "86" - }, - "event": [ - { - "event_id": 714, - "event_name": "夏祭りDEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "エキゾチックドレッサー", - "alias_name_display": "エキゾチックドレッサー", - "id": "3433001", - "hash": "ac452a8f4078b9c8a4e2df386eefe0c9", - "profile": { - "height": "162", - "weight": "45", - "bust": "88", - "waist": "58", - "hip": "86" - }, - "event": [ - { - "event_id": 1407, - "event_name": "第7回ぷちデレラコレクション" - } - ] - }, - { - "alias_name": "エキゾチックドレッサー", - "alias_name_display": "エキゾチックドレッサー", - "id": "3533002", - "hash": "26a0294ebbd82d18425173f46b4d8860", - "profile": { - "height": "162", - "weight": "45", - "bust": "88", - "waist": "58", - "hip": "86" - }, - "event": [ - { - "event_id": 1407, - "event_name": "第7回ぷちデレラコレクション" - } - ] - } - ], - "units": [ - { - "id": "100", - "name": "ハートウォーマー" - }, - { - "id": "165", - "name": "メルヘンゴシック" - } - ] - }, - "186": { - "idol_id": 186, - "idol_name": "北川真尋", - "idol_name_display": "北川真尋", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3202901", - "hash": "ded225525d77bc5e164da6ec41d0342e", - "profile": { - "height": "158", - "weight": "43", - "bust": "75", - "waist": "57", - "hip": "79" - }, - "event": [ - { - "event_id": 201, - "event_name": "アイドルサバイバル" - } - ] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3302902", - "hash": "f17d6bd4caee1e6ace28eb66c2c0160c", - "profile": { - "height": "158", - "weight": "43", - "bust": "75", - "waist": "57", - "hip": "79" - }, - "event": [ - { - "event_id": 201, - "event_name": "アイドルサバイバル" - } - ] - }, - { - "alias_name": "スポーツ祭", - "alias_name_display": "スポーツ祭", - "id": "3204901", - "hash": "5d9bbfe79fb467cff5efcc33fe949228", - "profile": { - "height": "158", - "weight": "43", - "bust": "75", - "waist": "57", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "スポーツ祭", - "alias_name_display": "スポーツ祭", - "id": "3304902", - "hash": "a49d2ce44927c252d39b05c3ec553044", - "profile": { - "height": "158", - "weight": "43", - "bust": "75", - "waist": "57", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "スポーティガール", - "alias_name_display": "スポーティガール", - "id": "3209301", - "hash": "c37466d224d79ec5b4582a2e05865f5c", - "profile": { - "height": "158", - "weight": "43", - "bust": "75", - "waist": "57", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "スポーティガール", - "alias_name_display": "スポーティガール", - "id": "3309302", - "hash": "f0627779554f7932ca75fba796816000", - "profile": { - "height": "158", - "weight": "43", - "bust": "75", - "waist": "57", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "ひな祭り", - "alias_name_display": "ひな祭り", - "id": "3215901", - "hash": "53b74090a5ced2280a40b699017e80d2", - "profile": { - "height": "158", - "weight": "43", - "bust": "75", - "waist": "57", - "hip": "79" - }, - "event": [ - { - "event_id": 510, - "event_name": "ひな祭りLIVEツアーカーニバル" - } - ] - }, - { - "alias_name": "ひな祭り", - "alias_name_display": "ひな祭り", - "id": "3315902", - "hash": "c2cee09440f26baf18469aa365b2df73", - "profile": { - "height": "158", - "weight": "43", - "bust": "75", - "waist": "57", - "hip": "79" - }, - "event": [ - { - "event_id": 510, - "event_name": "ひな祭りLIVEツアーカーニバル" - } - ] - }, - { - "alias_name": "メルヘンアニマルズ", - "alias_name_display": "メルヘンアニマルズ", - "id": "3219001", - "hash": "90f843c2f09a7ddc764aacce7fa7074f", - "profile": { - "height": "158", - "weight": "43", - "bust": "75", - "waist": "57", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "メルヘンアニマルズ", - "alias_name_display": "メルヘンアニマルズ", - "id": "3319002", - "hash": "c4cbadee96999cfe3a34797d3ccff9a1", - "profile": { - "height": "158", - "weight": "43", - "bust": "75", - "waist": "57", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "ごきげんスターター", - "alias_name_display": "ごきげんスターター", - "id": "3229101", - "hash": "276fb5e876944d35f8f7261be7464d58", - "profile": { - "height": "158", - "weight": "43", - "bust": "75", - "waist": "57", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "ごきげんスターター", - "alias_name_display": "ごきげんスターター", - "id": "3329102", - "hash": "c700626ff44e2158a1e3917f0c60d934", - "profile": { - "height": "158", - "weight": "43", - "bust": "75", - "waist": "57", - "hip": "79" - }, - "event": [] - }, - { - "alias_name": "ディアンドルガール", - "alias_name_display": "ディアンドルガール", - "id": "3408401", - "hash": "3f15212a15a1422e0a5cebff2094ee3a", - "profile": { - "height": "158", - "weight": "43", - "bust": "75", - "waist": "57", - "hip": "79" - }, - "event": [ - { - "event_id": 507, - "event_name": "LIVEツアーカーニバルinドイツ" - } - ] - }, - { - "alias_name": "ディアンドルガール", - "alias_name_display": "ディアンドルガール", - "id": "3508402", - "hash": "7ec7936571af537a32f0c8256789ab73", - "profile": { - "height": "158", - "weight": "43", - "bust": "75", - "waist": "57", - "hip": "79" - }, - "event": [ - { - "event_id": 507, - "event_name": "LIVEツアーカーニバルinドイツ" - } - ] - }, - { - "alias_name": "ジョイフル・ロワイヤル", - "alias_name_display": "ジョイフル・ロワイヤル", - "id": "3422301", - "hash": "178edad79aa9ee2b9cbbd9bdaf003b52", - "profile": { - "height": "158", - "weight": "43", - "bust": "75", - "waist": "57", - "hip": "79" - }, - "event": [ - { - "event_id": 811, - "event_name": "第11回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ジョイフル・ロワイヤル", - "alias_name_display": "ジョイフル・ロワイヤル", - "id": "3522302", - "hash": "5a260e4dd152105385c08cf8fc4904ff", - "profile": { - "height": "158", - "weight": "43", - "bust": "75", - "waist": "57", - "hip": "79" - }, - "event": [ - { - "event_id": 811, - "event_name": "第11回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "バイタルシャウト", - "alias_name_display": "バイタルシャウト", - "id": "3426901", - "hash": "6facfc1c890c01ada655add731f9d797", - "profile": { - "height": "158", - "weight": "43", - "bust": "75", - "waist": "57", - "hip": "79" - }, - "event": [ - { - "event_id": 716, - "event_name": "第16回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "バイタルシャウト", - "alias_name_display": "バイタルシャウト", - "id": "3526902", - "hash": "bccd086a6baf5aa7c9836b1744b2961b", - "profile": { - "height": "158", - "weight": "43", - "bust": "75", - "waist": "57", - "hip": "79" - }, - "event": [ - { - "event_id": 716, - "event_name": "第16回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ダッシュ・ロワイヤル", - "alias_name_display": "ダッシュ・ロワイヤル", - "id": "3436301", - "hash": "caa40a2b61e26c6bc67b7e8e19ef0050", - "profile": { - "height": "158", - "weight": "43", - "bust": "75", - "waist": "57", - "hip": "79" - }, - "event": [ - { - "event_id": 820, - "event_name": "第20回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ダッシュ・ロワイヤル", - "alias_name_display": "ダッシュ・ロワイヤル", - "id": "3536302", - "hash": "73510215f3daefbf89a05623b83e3fd8", - "profile": { - "height": "158", - "weight": "43", - "bust": "75", - "waist": "57", - "hip": "79" - }, - "event": [ - { - "event_id": 820, - "event_name": "第20回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ペッピーウォーキン☆", - "alias_name_display": "ペッピーウォーキン☆", - "id": "3439401", - "hash": "152d472f4e2ac23df690fde0685bb3f6", - "profile": { - "height": "158", - "weight": "43", - "bust": "75", - "waist": "57", - "hip": "79" - }, - "event": [ - { - "event_id": 1412, - "event_name": "第12回ぷちデレラコレクション" - } - ] - }, - { - "alias_name": "ペッピーウォーキン☆", - "alias_name_display": "ペッピーウォーキン☆", - "id": "3539402", - "hash": "b24f3818f1e1073ea376f64f62004d15", - "profile": { - "height": "158", - "weight": "43", - "bust": "75", - "waist": "57", - "hip": "79" - }, - "event": [ - { - "event_id": 1412, - "event_name": "第12回ぷちデレラコレクション" - } - ] - } - ], - "units": [ - { - "id": "97", - "name": "ドイツスタイル" - }, - { - "id": "166", - "name": "メルヘンアニマルズ" - }, - { - "id": "181", - "name": "フレッシュアスリーテス" - }, - { - "id": "211", - "name": "ワンダー・フル" - } - ] - }, - "187": { - "idol_id": 187, - "idol_name": "メアリー・コクラン", - "idol_name_display": "メアリー・コクラン", - "aliases": [ - { - "alias_name": "水泳大会", - "alias_name_display": "水泳大会", - "id": "3003001", - "hash": "886e0e6ddf996f029d572480ab02dd81", - "profile": { - "height": "152", - "weight": "41", - "bust": "71", - "waist": "59", - "hip": "73" - }, - "event": [ - { - "event_id": 106, - "event_name": "アイドル水泳大会 水着のシンデレラ" - } - ] - }, - { - "alias_name": "水泳大会", - "alias_name_display": "水泳大会", - "id": "3103002", - "hash": "3e0a6ce679f6f028f72df476ee639a2d", - "profile": { - "height": "152", - "weight": "41", - "bust": "71", - "waist": "59", - "hip": "73" - }, - "event": [ - { - "event_id": 106, - "event_name": "アイドル水泳大会 水着のシンデレラ" - } - ] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3203001", - "hash": "18489764f5cbce4a977c80ee9d7783a1", - "profile": { - "height": "150", - "weight": "40", - "bust": "70", - "waist": "58", - "hip": "72" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3303002", - "hash": "65101cc645b1b98eba948fe54046ff6f", - "profile": { - "height": "152", - "weight": "41", - "bust": "71", - "waist": "59", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "湯けむり温泉", - "alias_name_display": "湯けむり温泉", - "id": "3207101", - "hash": "bd4274434813bd239fc7ea3c76f536c5", - "profile": { - "height": "152", - "weight": "41", - "bust": "71", - "waist": "59", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "湯けむり温泉", - "alias_name_display": "湯けむり温泉", - "id": "3307102", - "hash": "e94f806191848660212e2e8d5cf8e788", - "profile": { - "height": "152", - "weight": "41", - "bust": "71", - "waist": "59", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "リトルアクトレス", - "alias_name_display": "リトルアクトレス", - "id": "3211401", - "hash": "d26384fd64b2ba4dd1c1d86cfb67b8a0", - "profile": { - "height": "152", - "weight": "41", - "bust": "71", - "waist": "59", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "リトルアクトレス", - "alias_name_display": "リトルアクトレス", - "id": "3311402", - "hash": "4651350df55caf44e7f2cab5de005a4e", - "profile": { - "height": "152", - "weight": "41", - "bust": "71", - "waist": "59", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "ブライダルセレクション", - "alias_name_display": "ブライダルセレクション", - "id": "3223301", - "hash": "dee7d5cc58fb28e3a1e115ca1c86fd4c", - "profile": { - "height": "152", - "weight": "41", - "bust": "71", - "waist": "59", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "ブライダルセレクション", - "alias_name_display": "ブライダルセレクション", - "id": "3323302", - "hash": "e92cc31ad73eaa57f553a47e360d33cf", - "profile": { - "height": "152", - "weight": "41", - "bust": "71", - "waist": "59", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "レディスタイル", - "alias_name_display": "レディスタイル", - "id": "3229401", - "hash": "75e021f7d250349ad9200dc8a41078cc", - "profile": { - "height": "152", - "weight": "41", - "bust": "71", - "waist": "59", - "hip": "73" - }, - "event": [ - { - "event_id": "029", - "event_name": "第29回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "レディスタイル", - "alias_name_display": "レディスタイル", - "id": "3329402", - "hash": "f07ac41e9accff6a007922b58505d2a5", - "profile": { - "height": "152", - "weight": "41", - "bust": "71", - "waist": "59", - "hip": "73" - }, - "event": [ - { - "event_id": "029", - "event_name": "第29回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "マーチングバンド", - "alias_name_display": "マーチングバンド", - "id": "3231601", - "hash": "bf401761087be840072f8fabc7f3b073", - "profile": { - "height": "152", - "weight": "41", - "bust": "71", - "waist": "59", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "マーチングバンド", - "alias_name_display": "マーチングバンド", - "id": "3331602", - "hash": "f2661e2d6e1a47730b985c6d3346b2bd", - "profile": { - "height": "152", - "weight": "41", - "bust": "71", - "waist": "59", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "おませなリトルガール", - "alias_name_display": "おませなリトルガール", - "id": "3404601", - "hash": "eabcfd8ee79889adba48d73ad1f69c79", - "profile": { - "height": "152", - "weight": "41", - "bust": "71", - "waist": "59", - "hip": "73" - }, - "event": [ - { - "event_id": 502, - "event_name": "アイドルLIVEツアーinイギリス" - } - ] - }, - { - "alias_name": "おませなリトルガール", - "alias_name_display": "おませなリトルガール", - "id": "3504602", - "hash": "3390b977532c2288bfeaf47e57853643", - "profile": { - "height": "152", - "weight": "41", - "bust": "71", - "waist": "59", - "hip": "73" - }, - "event": [ - { - "event_id": 502, - "event_name": "アイドルLIVEツアーinイギリス" - } - ] - }, - { - "alias_name": "オトメのお勉強", - "alias_name_display": "オトメのお勉強", - "id": "3411201", - "hash": "382b58a89b0ff8b39f719704e4723e44", - "profile": { - "height": "152", - "weight": "41", - "bust": "71", - "waist": "59", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "オトメのお勉強", - "alias_name_display": "オトメのお勉強", - "id": "3511202", - "hash": "92fb772d2d95efadf4b23d64a88d9598", - "profile": { - "height": "152", - "weight": "41", - "bust": "71", - "waist": "59", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "学園の魔女", - "alias_name_display": "学園の魔女", - "id": "3413801", - "hash": "dec0c48fb7ff2cea33acedc86d60ed77", - "profile": { - "height": "152", - "weight": "41", - "bust": "71", - "waist": "59", - "hip": "73" - }, - "event": [ - { - "event_id": 412, - "event_name": "聖靴学園の七不思議" - } - ] - }, - { - "alias_name": "学園の魔女", - "alias_name_display": "学園の魔女", - "id": "3513802", - "hash": "860470aa8c2a41e31fb01ef84b3ff1fa", - "profile": { - "height": "152", - "weight": "41", - "bust": "71", - "waist": "59", - "hip": "73" - }, - "event": [ - { - "event_id": 412, - "event_name": "聖靴学園の七不思議" - } - ] - }, - { - "alias_name": "学園の魔女・S", - "alias_name_display": "学園の魔女・S", - "id": "3413901", - "hash": "81f2b25fee15cd052eb46e500a139a58", - "profile": { - "height": "152", - "weight": "41", - "bust": "71", - "waist": "59", - "hip": "73" - }, - "event": [ - { - "event_id": 412, - "event_name": "聖靴学園の七不思議" - } - ] - }, - { - "alias_name": "学園の魔女・S", - "alias_name_display": "学園の魔女・S", - "id": "3513902", - "hash": "1a5a05e3855800ce1bd8a029a381d3ae", - "profile": { - "height": "152", - "weight": "41", - "bust": "71", - "waist": "59", - "hip": "73" - }, - "event": [ - { - "event_id": 412, - "event_name": "聖靴学園の七不思議" - } - ] - }, - { - "alias_name": "碧眼の姫君", - "alias_name_display": "碧眼の姫君", - "id": "3418801", - "hash": "990199c5bd44be16361a787dda7e5ec2", - "profile": { - "height": "152", - "weight": "41", - "bust": "71", - "waist": "59", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "碧眼の姫君", - "alias_name_display": "碧眼の姫君", - "id": "3518802", - "hash": "1cff2e692e16e4a5080e58d376ac647a", - "profile": { - "height": "152", - "weight": "41", - "bust": "71", - "waist": "59", - "hip": "73" - }, - "event": [] - }, - { - "alias_name": "スーパーリトルヒーロー", - "alias_name_display": "スーパーリトルヒーロー", - "id": "3429301", - "hash": "21aedb74f5d55532af0ec8d9405eb4d7", - "profile": { - "height": "152", - "weight": "41", - "bust": "71", - "waist": "59", - "hip": "73" - }, - "event": [ - { - "event_id": 523, - "event_name": "鋼鉄公演 きらりんロボ -襲来!コスメティア帝国-" - } - ] - }, - { - "alias_name": "スーパーリトルヒーロー", - "alias_name_display": "スーパーリトルヒーロー", - "id": "3529302", - "hash": "f9e2aa124e090e96d8f60f125f9ff172", - "profile": { - "height": "152", - "weight": "41", - "bust": "71", - "waist": "59", - "hip": "73" - }, - "event": [ - { - "event_id": 523, - "event_name": "鋼鉄公演 きらりんロボ -襲来!コスメティア帝国-" - } - ] - }, - { - "alias_name": "プリティブロンド", - "alias_name_display": "プリティブロンド", - "id": "3440001", - "hash": "571191f721985c5482bbb81971f25b98", - "profile": { - "height": "152", - "weight": "41", - "bust": "71", - "waist": "59", - "hip": "73" - }, - "event": [ - { - "event_id": 823, - "event_name": "第23回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "プリティブロンド", - "alias_name_display": "プリティブロンド", - "id": "3540002", - "hash": "cda5c513974a4e22bdafa7fb7e662c56", - "profile": { - "height": "152", - "weight": "41", - "bust": "71", - "waist": "59", - "hip": "73" - }, - "event": [ - { - "event_id": 823, - "event_name": "第23回アイドルLIVEロワイヤル" - } - ] - } - ], - "units": [ - { - "id": "125", - "name": "ユア・フレンズ" - }, - { - "id": "162", - "name": "ブライダルセレクション" - }, - { - "id": "170", - "name": "UKスタイル" - }, - { - "id": "214", - "name": "L.M.B.G" - } - ] - }, - "188": { - "idol_id": 188, - "idol_name": "小松伊吹", - "idol_name_display": "小松伊吹", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3203101", - "hash": "981843c62010419ba465420262c9550f", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "59", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3303102", - "hash": "f5c48d566baf361906d0951ebfdc9234", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "59", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "学園祭", - "alias_name_display": "学園祭", - "id": "3206401", - "hash": "71acc3f7453e1a9821d89a1d545f5c94", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "59", - "hip": "88" - }, - "event": [ - { - "event_id": 206, - "event_name": "アイドルサバイバルin学園祭" - } - ] - }, - { - "alias_name": "学園祭", - "alias_name_display": "学園祭", - "id": "3306402", - "hash": "d82c7d5601b6218d47b3f619d13bfe55", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "59", - "hip": "88" - }, - "event": [ - { - "event_id": 206, - "event_name": "アイドルサバイバルin学園祭" - } - ] - }, - { - "alias_name": "ハッピーバレンタイン", - "alias_name_display": "ハッピーバレンタイン", - "id": "3208701", - "hash": "230c5b5ec92445aaed128c7508cb8356", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "59", - "hip": "88" - }, - "event": [ - { - "event_id": 405, - "event_name": "アイドルプロデュース バレンタイン編" - } - ] - }, - { - "alias_name": "ハッピーバレンタイン", - "alias_name_display": "ハッピーバレンタイン", - "id": "3308702", - "hash": "220f83f980eec9c9351bed10645e0405", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "59", - "hip": "88" - }, - "event": [ - { - "event_id": 405, - "event_name": "アイドルプロデュース バレンタイン編" - } - ] - }, - { - "alias_name": "スマイルバレンタイン", - "alias_name_display": "スマイルバレンタイン", - "id": "3208801", - "hash": "fbbfc8130fff846c3e712282ca7f841b", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "59", - "hip": "88" - }, - "event": [ - { - "event_id": 405, - "event_name": "アイドルプロデュース バレンタイン編" - } - ] - }, - { - "alias_name": "スマイルバレンタイン", - "alias_name_display": "スマイルバレンタイン", - "id": "3308802", - "hash": "66a35e542777658570fd3b0579538e63", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "59", - "hip": "88" - }, - "event": [ - { - "event_id": 405, - "event_name": "アイドルプロデュース バレンタイン編" - } - ] - }, - { - "alias_name": "ダンシングブライド", - "alias_name_display": "ダンシングブライド", - "id": "3213901", - "hash": "d8bc3c2d3dc0cff584279852792d7a95", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "59", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "ダンシングブライド", - "alias_name_display": "ダンシングブライド", - "id": "3313902", - "hash": "3a2aa4fc0fb6337f9451d4efad5b9916", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "59", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "カジュアル&フリル", - "alias_name_display": "カジュアル&フリル", - "id": "3216101", - "hash": "dfb65b80dbdb7746d7eb0b0037744684", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "59", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "カジュアル&フリル", - "alias_name_display": "カジュアル&フリル", - "id": "3316102", - "hash": "7dc7df39668d17d3e6aefc45dad172c8", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "59", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "さわやかスポーツ", - "alias_name_display": "さわやかスポーツ", - "id": "3222901", - "hash": "2ed81a3a0badd66417a9d8dac2380dcd", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "59", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "さわやかスポーツ", - "alias_name_display": "さわやかスポーツ", - "id": "3322902", - "hash": "2f113b28d941cd9250d02f9491e2425a", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "59", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "ディライトタイム", - "alias_name_display": "ディライトタイム", - "id": "3326102", - "hash": "e026a9a2e9fdd0cb527ab89ce1ac8b62", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "59", - "hip": "88" - }, - "event": [ - { - "event_id": 717, - "event_name": "第17回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "サバゲーI.C", - "alias_name_display": "サバゲーI.C", - "id": "3328502", - "hash": "0dbc072b0335f879d112086ca78ad77a", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "59", - "hip": "88" - }, - "event": [ - { - "event_id": 1210, - "event_name": "アイドルチャレンジ サバイバルゲーム編" - } - ] - }, - { - "alias_name": "ストリートスパークル", - "alias_name_display": "ストリートスパークル", - "id": "3233501", - "hash": "94bff0502f041e4baae4b676e3468a23", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "59", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "ストリートスパークル", - "alias_name_display": "ストリートスパークル", - "id": "3333502", - "hash": "804b115656386639daea4c52420f7105", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "59", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "トロピカルダンサー", - "alias_name_display": "トロピカルダンサー", - "id": "3407401", - "hash": "664ca1e6850282545e40668063e9f05d", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "59", - "hip": "88" - }, - "event": [ - { - "event_id": 505, - "event_name": "アイドルLIVEツアーinバリ島" - } - ] - }, - { - "alias_name": "トロピカルダンサー", - "alias_name_display": "トロピカルダンサー", - "id": "3507402", - "hash": "08cd13a051d1962fee067b9e38acd6c4", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "59", - "hip": "88" - }, - "event": [ - { - "event_id": 505, - "event_name": "アイドルLIVEツアーinバリ島" - } - ] - }, - { - "alias_name": "フェイバリット☆タイム", - "alias_name_display": "フェイバリット☆タイム", - "id": "3417501", - "hash": "56fb7869be014b15e2daccaf1dc6d4dc", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "59", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "フェイバリット☆タイム", - "alias_name_display": "フェイバリット☆タイム", - "id": "3517502", - "hash": "1af95abc44fe62d8324257c1f6290018", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "59", - "hip": "88" - }, - "event": [] - }, - { - "alias_name": "フレッシュソルジャー", - "alias_name_display": "フレッシュソルジャー", - "id": "3431901", - "hash": "d23f88fda4981caa35655e6be23fc54c", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "59", - "hip": "88" - }, - "event": [ - { - "event_id": 1210, - "event_name": "アイドルチャレンジ サバイバルゲーム編" - } - ] - }, - { - "alias_name": "フレッシュソルジャー", - "alias_name_display": "フレッシュソルジャー", - "id": "3531902", - "hash": "64765fd2a7760ab7c85ff530a7ee1014", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "59", - "hip": "88" - }, - "event": [ - { - "event_id": 1210, - "event_name": "アイドルチャレンジ サバイバルゲーム編" - } - ] - }, - { - "alias_name": "フレッシュソルジャー・S", - "alias_name_display": "フレッシュソルジャー・S", - "id": "3432001", - "hash": "14b9f5fc5395420c5fba5f8f9b6982ae", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "59", - "hip": "88" - }, - "event": [ - { - "event_id": 1210, - "event_name": "アイドルチャレンジ サバイバルゲーム編" - } - ] - }, - { - "alias_name": "フレッシュソルジャー・S", - "alias_name_display": "フレッシュソルジャー・S", - "id": "3532002", - "hash": "93ff417b98647caf533179ef85083542", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "59", - "hip": "88" - }, - "event": [ - { - "event_id": 1210, - "event_name": "アイドルチャレンジ サバイバルゲーム編" - } - ] - }, - { - "alias_name": "月夜のダンサー", - "alias_name_display": "月夜のダンサー", - "id": "3435001", - "hash": "c49c6d77d6640d6be62d4f0043739f4f", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "59", - "hip": "88" - }, - "event": [ - { - "event_id": 819, - "event_name": "アイドルLIVEロワイヤル お月見SP" - } - ] - }, - { - "alias_name": "月夜のダンサー", - "alias_name_display": "月夜のダンサー", - "id": "3535002", - "hash": "74726c9cfa072e384c992e8d8bde9ff9", - "profile": { - "height": "165", - "weight": "48", - "bust": "85", - "waist": "59", - "hip": "88" - }, - "event": [ - { - "event_id": 819, - "event_name": "アイドルLIVEロワイヤル お月見SP" - } - ] - } - ], - "units": [ - { - "id": "2", - "name": "アーティスター" - }, - { - "id": "119", - "name": "フランメ・ルージュ" - }, - { - "id": "160", - "name": "ハッピーバレンタイン" - } - ] - }, - "189": { - "idol_id": 189, - "idol_name": "三好紗南", - "idol_name_display": "三好紗南", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3203401", - "hash": "74a5d336821a3ccbb0e27083910eb4a2", - "profile": { - "height": "149", - "weight": "39", - "bust": "75", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3303402", - "hash": "6975abbc1acbd11dc0761db34100eeff", - "profile": { - "height": "149", - "weight": "39", - "bust": "75", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "サマーライブ", - "alias_name_display": "サマーライブ", - "id": "3205501", - "hash": "a2c76c7c3d6cd4ed9bfae16a519606e3", - "profile": { - "height": "149", - "weight": "39", - "bust": "75", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 205, - "event_name": "アイドルサバイバルinサマーライブ" - } - ] - }, - { - "alias_name": "サマーライブ", - "alias_name_display": "サマーライブ", - "id": "3305502", - "hash": "55f4201ee5b5f40f49f375d912ca5a48", - "profile": { - "height": "149", - "weight": "39", - "bust": "75", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 205, - "event_name": "アイドルサバイバルinサマーライブ" - } - ] - }, - { - "alias_name": "バレンタインパーティー", - "alias_name_display": "バレンタインパーティー", - "id": "3208601", - "hash": "a912475f262c6610d16fd01a89b67b4f", - "profile": { - "height": "149", - "weight": "39", - "bust": "75", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "バレンタインパーティー", - "alias_name_display": "バレンタインパーティー", - "id": "3308602", - "hash": "035f0fe78149312386a6359970285410", - "profile": { - "height": "149", - "weight": "39", - "bust": "75", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ドリームプレイヤー", - "alias_name_display": "ドリームプレイヤー", - "id": "3210401", - "hash": "ec9534560df91355b8d8237b6ac478d2", - "profile": { - "height": "149", - "weight": "39", - "bust": "75", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ドリームプレイヤー", - "alias_name_display": "ドリームプレイヤー", - "id": "3310402", - "hash": "39462197c42755367ed51077cd00d7d0", - "profile": { - "height": "149", - "weight": "39", - "bust": "75", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ロワイヤルスタイル", - "alias_name_display": "ロワイヤルスタイル", - "id": "3215001", - "hash": "a16bd6a20aae0e2a289296b10faa0816", - "profile": { - "height": "149", - "weight": "39", - "bust": "75", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 803, - "event_name": "第3回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ロワイヤルスタイル", - "alias_name_display": "ロワイヤルスタイル", - "id": "3315002", - "hash": "7eadf1a32f2acd16c352cc821d3edd11", - "profile": { - "height": "149", - "weight": "39", - "bust": "75", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 803, - "event_name": "第3回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ビーチサイド", - "alias_name_display": "ビーチサイド", - "id": "3217701", - "hash": "1a49f2b52578fca59c62611f515030ea", - "profile": { - "height": "149", - "weight": "39", - "bust": "75", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ビーチサイド", - "alias_name_display": "ビーチサイド", - "id": "3317702", - "hash": "ebb3ac001f3f27dd4ae4303f9a68bb0d", - "profile": { - "height": "149", - "weight": "39", - "bust": "75", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "春キャンプ", - "alias_name_display": "春キャンプ", - "id": "3222601", - "hash": "d1603fa7ad370e35126a6d5c7aa76111", - "profile": { - "height": "149", - "weight": "39", - "bust": "75", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 1701, - "event_name": "アイドルプロデュース はじめてのキャンプ" - } - ] - }, - { - "alias_name": "春キャンプ", - "alias_name_display": "春キャンプ", - "id": "3322602", - "hash": "1ef60a5f56267922ef2c087e52328d28", - "profile": { - "height": "149", - "weight": "39", - "bust": "75", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 1701, - "event_name": "アイドルプロデュース はじめてのキャンプ" - } - ] - }, - { - "alias_name": "笑顔でキャンプ", - "alias_name_display": "笑顔でキャンプ", - "id": "3222701", - "hash": "5e70ce9f10f6cceae13ad3ab5b62cdff", - "profile": { - "height": "149", - "weight": "39", - "bust": "75", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 1701, - "event_name": "アイドルプロデュース はじめてのキャンプ" - } - ] - }, - { - "alias_name": "笑顔でキャンプ", - "alias_name_display": "笑顔でキャンプ", - "id": "3322702", - "hash": "bc4fe5771be756b951a3bfe654de6c1a", - "profile": { - "height": "149", - "weight": "39", - "bust": "75", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 1701, - "event_name": "アイドルプロデュース はじめてのキャンプ" - } - ] - }, - { - "alias_name": "コレクションスタイル", - "alias_name_display": "コレクションスタイル", - "id": "3324602", - "hash": "3941f572ab28142e287098298b0dc886", - "profile": { - "height": "149", - "weight": "39", - "bust": "75", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 1403, - "event_name": "第3回ぷちデレラコレクション" - } - ] - }, - { - "alias_name": "秋の学園祭", - "alias_name_display": "秋の学園祭", - "id": "3231001", - "hash": "e491607723ee289413421eb50c7865ad", - "profile": { - "height": "149", - "weight": "39", - "bust": "75", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "秋の学園祭", - "alias_name_display": "秋の学園祭", - "id": "3331002", - "hash": "0188bc58f63647f0b7862f81905b8698", - "profile": { - "height": "149", - "weight": "39", - "bust": "75", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ピコピコ☆ゲーマー", - "alias_name_display": "ピコピコ☆ゲーマー", - "id": "3408301", - "hash": "7e318d7290da68dd33c9c312042da379", - "profile": { - "height": "149", - "weight": "39", - "bust": "75", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ピコピコ☆ゲーマー", - "alias_name_display": "ピコピコ☆ゲーマー", - "id": "3508302", - "hash": "4a13052e4c41d9c815300df353359412", - "profile": { - "height": "149", - "weight": "39", - "bust": "75", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ゲームトークナイト", - "alias_name_display": "ゲームトークナイト", - "id": "3418201", - "hash": "8e9bd7c98e4c86491db3a28af15d607b", - "profile": { - "height": "149", - "weight": "39", - "bust": "75", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 1106, - "event_name": "プロダクション対抗トークバトルショー ハロウィンSP" - } - ] - }, - { - "alias_name": "ゲームトークナイト", - "alias_name_display": "ゲームトークナイト", - "id": "3518202", - "hash": "1b31aa81142324e6e5817be4e32a26a8", - "profile": { - "height": "149", - "weight": "39", - "bust": "75", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 1106, - "event_name": "プロダクション対抗トークバトルショー ハロウィンSP" - } - ] - }, - { - "alias_name": "ミッション☆コンプリート", - "alias_name_display": "ミッション☆コンプリート", - "id": "3427801", - "hash": "008dfb4279896adf547835f3f11a408f", - "profile": { - "height": "149", - "weight": "39", - "bust": "75", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 1802, - "event_name": "アイドルバラエティ 手作りライブプロジェクト!" - } - ] - }, - { - "alias_name": "ミッション☆コンプリート", - "alias_name_display": "ミッション☆コンプリート", - "id": "3527802", - "hash": "dca3fed6718b0a88528a6c1482136d79", - "profile": { - "height": "149", - "weight": "39", - "bust": "75", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 1802, - "event_name": "アイドルバラエティ 手作りライブプロジェクト!" - } - ] - }, - { - "alias_name": "冒険者", - "alias_name_display": "冒険者", - "id": "3431301", - "hash": "12294135f86976c08cd019bd74bb9617", - "profile": { - "height": "149", - "weight": "39", - "bust": "75", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "冒険者", - "alias_name_display": "冒険者", - "id": "3531302", - "hash": "5caedbb13727f0afdd234d8e73a40a32", - "profile": { - "height": "149", - "weight": "39", - "bust": "75", - "waist": "56", - "hip": "80" - }, - "event": [] - } - ], - "units": [ - { - "id": "93", - "name": "サマーライブセーラー" - }, - { - "id": "208", - "name": "ロワイヤルスタイル" - } - ] - }, - "190": { - "idol_id": 190, - "idol_name": "キャシー・グラハム", - "idol_name_display": "キャシー・グラハム", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3203501", - "hash": "b3484b86731fa47b0a59f2d1fb3af249", - "profile": { - "height": "168", - "weight": "49", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3303502", - "hash": "b8843d1031f4438aba54223452579b4d", - "profile": { - "height": "168", - "weight": "49", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "新春コレクション", - "alias_name_display": "新春コレクション", - "id": "3208101", - "hash": "03e13b764bf732aa5f4f075a2d1e95b2", - "profile": { - "height": "168", - "weight": "49", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "新春コレクション", - "alias_name_display": "新春コレクション", - "id": "3308102", - "hash": "a687207d5948158046e24f5fb94f6821", - "profile": { - "height": "168", - "weight": "49", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "フレッシュマンダリン", - "alias_name_display": "フレッシュマンダリン", - "id": "3210501", - "hash": "b625f2e8a25e839e2e5cb9664fb71b7a", - "profile": { - "height": "168", - "weight": "49", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "フレッシュマンダリン", - "alias_name_display": "フレッシュマンダリン", - "id": "3310502", - "hash": "ab2bb97e46e8102de86579aff4b90518", - "profile": { - "height": "168", - "weight": "49", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ガンスリンガー", - "alias_name_display": "ガンスリンガー", - "id": "3217301", - "hash": "afe03e20c836f8ff906a253a56ee26b4", - "profile": { - "height": "168", - "weight": "49", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 512, - "event_name": "西部公演 ガンスリンガージャーニー" - } - ] - }, - { - "alias_name": "ガンスリンガー", - "alias_name_display": "ガンスリンガー", - "id": "3317302", - "hash": "b8ebb0a9955fa101aa15e6e1a5783a91", - "profile": { - "height": "168", - "weight": "49", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 512, - "event_name": "西部公演 ガンスリンガージャーニー" - } - ] - }, - { - "alias_name": "お笑いスタイル", - "alias_name_display": "お笑いスタイル", - "id": "3219801", - "hash": "f5f8259dc3787f4f8b0f206197fcf841", - "profile": { - "height": "168", - "weight": "49", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "お笑いスタイル", - "alias_name_display": "お笑いスタイル", - "id": "3319802", - "hash": "8f06d715ec61652d3319aa6b5b598985", - "profile": { - "height": "168", - "weight": "49", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "オータムコレクション", - "alias_name_display": "オータムコレクション", - "id": "3225501", - "hash": "cbfeca48ab63abe8384f4ad14fafb16d", - "profile": { - "height": "168", - "weight": "49", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "オータムコレクション", - "alias_name_display": "オータムコレクション", - "id": "3325502", - "hash": "d1f3863d47e6b365bfcaa26abc17bfd7", - "profile": { - "height": "168", - "weight": "49", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ウェディングセレモニー", - "alias_name_display": "ウェディングセレモニー", - "id": "3229201", - "hash": "05fce5bf386ef6017a6682a7d150b3b2", - "profile": { - "height": "168", - "weight": "49", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ウェディングセレモニー", - "alias_name_display": "ウェディングセレモニー", - "id": "3329202", - "hash": "d5499ca5008c269d303d65621dc37893", - "profile": { - "height": "168", - "weight": "49", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "スクールプール", - "alias_name_display": "スクールプール", - "id": "3231501", - "hash": "99ad862dd87829dfeea90bff61767a6d", - "profile": { - "height": "168", - "weight": "49", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "スクールプール", - "alias_name_display": "スクールプール", - "id": "3331502", - "hash": "6ba750a1ecbc961392b6751f7a1bf65e", - "profile": { - "height": "168", - "weight": "49", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "ベーカリーI.C", - "alias_name_display": "ベーカリーI.C", - "id": "3334302", - "hash": "42ca5290aba119f9e690b169d75aedd8", - "profile": { - "height": "168", - "weight": "49", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "スペーススター", - "alias_name_display": "スペーススター", - "id": "3409601", - "hash": "2dcce81c8d5ba61f3f882ed5dc1bb7c2", - "profile": { - "height": "168", - "weight": "49", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 508, - "event_name": "LIVEツアーカーニバルinスペースワールド" - } - ] - }, - { - "alias_name": "スペーススター", - "alias_name_display": "スペーススター", - "id": "3509602", - "hash": "273db82fa4d3ec9a7b8065f541094314", - "profile": { - "height": "168", - "weight": "49", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 508, - "event_name": "LIVEツアーカーニバルinスペースワールド" - } - ] - }, - { - "alias_name": "お喋りチアー", - "alias_name_display": "お喋りチアー", - "id": "3420901", - "hash": "63b3d81129e7a3f06f0c2057752eeace", - "profile": { - "height": "168", - "weight": "49", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 1108, - "event_name": "第8回プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "お喋りチアー", - "alias_name_display": "お喋りチアー", - "id": "3520902", - "hash": "608a40ac8502a9e202ff4a4e94172e1e", - "profile": { - "height": "168", - "weight": "49", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 1108, - "event_name": "第8回プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "ラフ&ガーリー", - "alias_name_display": "ラフ&ガーリー", - "id": "3429501", - "hash": "e1da7a5efed1a5603f126ce01d6b7190", - "profile": { - "height": "168", - "weight": "49", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 1405, - "event_name": "第5回ぷちデレラコレクション" - } - ] - }, - { - "alias_name": "ラフ&ガーリー", - "alias_name_display": "ラフ&ガーリー", - "id": "3529502", - "hash": "afd21d0607cc0a99723267c0a5ca4625", - "profile": { - "height": "168", - "weight": "49", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 1405, - "event_name": "第5回ぷちデレラコレクション" - } - ] - }, - { - "alias_name": "ジョイフルベーカー", - "alias_name_display": "ジョイフルベーカー", - "id": "3440201", - "hash": "1770ac1f502f862edc4e9d03bc2f26ea", - "profile": { - "height": "168", - "weight": "49", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 1216, - "event_name": "先生と一緒に♪目指せおいしいパン作り アイドルチャレンジ" - } - ] - }, - { - "alias_name": "ジョイフルベーカー", - "alias_name_display": "ジョイフルベーカー", - "id": "3540202", - "hash": "0851d1fa2ae859921bc702b404c67de7", - "profile": { - "height": "168", - "weight": "49", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [ - { - "event_id": 1216, - "event_name": "先生と一緒に♪目指せおいしいパン作り アイドルチャレンジ" - } - ] - }, - { - "alias_name": "にっこりベーカー", - "alias_name_display": "にっこりベーカー", - "id": "3440301", - "hash": "786235d566b59592b81ca34c53c5668b", - "profile": { - "height": "168", - "weight": "49", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [] - }, - { - "alias_name": "にっこりベーカー", - "alias_name_display": "にっこりベーカー", - "id": "3540302", - "hash": "7257d04c6b64058492bc0279c5b1da20", - "profile": { - "height": "168", - "weight": "49", - "bust": "83", - "waist": "56", - "hip": "85" - }, - "event": [] - } - ], - "units": [ - { - "id": "73", - "name": "ERICATHY" - } - ] - }, - "191": { - "idol_id": 191, - "idol_name": "難波笑美", - "idol_name_display": "難波笑美", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3203701", - "hash": "462788ef215a343a2f7ea3cdf5a79fd3", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3303702", - "hash": "0c755957e7a21af1c343c8976620b90e", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ハロウィンパーティー", - "alias_name_display": "ハロウィンパーティー", - "id": "3206601", - "hash": "0802e6c069e5eb587b99f54a91c3b35f", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ハロウィンパーティー", - "alias_name_display": "ハロウィンパーティー", - "id": "3306602", - "hash": "91d84bb565062b321b0656140a64229e", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "メデタイガール", - "alias_name_display": "メデタイガール", - "id": "3214701", - "hash": "f4520ebc0eb2a8f9c7604e6dd5d1ff2c", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "メデタイガール", - "alias_name_display": "メデタイガール", - "id": "3314702", - "hash": "2c534b1284f41395baad36dfe778d53f", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ロワイヤルスタイルNP", - "alias_name_display": "ロワイヤルスタイルNP", - "id": "3220401", - "hash": "407561052d14f76e674387a9bf26ae21", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 808, - "event_name": "第8回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "ロワイヤルスタイルNP", - "alias_name_display": "ロワイヤルスタイルNP", - "id": "3320402", - "hash": "14fe0cc1973b33542f4cd53504468157", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 808, - "event_name": "第8回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "サマーバケーション", - "alias_name_display": "サマーバケーション", - "id": "3224301", - "hash": "fb3a18ab728bd89b803f635d1dcbe2ee", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "サマーバケーション", - "alias_name_display": "サマーバケーション", - "id": "3324302", - "hash": "2248a6d3a1dc713c0369a1d7341e6086", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "コレクションスタイル", - "alias_name_display": "コレクションスタイル", - "id": "3326302", - "hash": "7c668cd224c4b1481a50265b2fad07ba", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 1404, - "event_name": "第4回ぷちデレラコレクション" - } - ] - }, - { - "alias_name": "湯けむり紀行", - "alias_name_display": "湯けむり紀行", - "id": "3231401", - "hash": "0b90d9ced62058b2ebd6346f901ee365", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "湯けむり紀行", - "alias_name_display": "湯けむり紀行", - "id": "3331402", - "hash": "aebaafab9c096221c76d6f101a84bcab", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "浪速の派手娘", - "alias_name_display": "浪速の派手娘", - "id": "3407201", - "hash": "201ebec439117f0f54102f5846e86c12", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 701, - "event_name": "ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "浪速の派手娘", - "alias_name_display": "浪速の派手娘", - "id": "3507202", - "hash": "06ab397c7df69732c1952897a4b3a7f8", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 701, - "event_name": "ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "お笑い☆伝道師", - "alias_name_display": "お笑い☆伝道師", - "id": "3414601", - "hash": "0811dd9530eb29e539e0eaec1b603a30", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "お笑い☆伝道師", - "alias_name_display": "お笑い☆伝道師", - "id": "3514602", - "hash": "52c8883ccd2ca956eaa81d9b55b4c04b", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "爆笑チアー", - "alias_name_display": "爆笑チアー", - "id": "3429401", - "hash": "2d77fd6c9641905d6751667510c2b70e", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 1505, - "event_name": "チーム対抗トークバトルショー ウィンターSP" - } - ] - }, - { - "alias_name": "爆笑チアー", - "alias_name_display": "爆笑チアー", - "id": "3529402", - "hash": "7ca0bf3dd109857d28f794f7772d3729", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 1505, - "event_name": "チーム対抗トークバトルショー ウィンターSP" - } - ] - }, - { - "alias_name": "花盛り☆乙女", - "alias_name_display": "花盛り☆乙女", - "id": "3431701", - "hash": "00f30f05193ace2cf45ee2e131248543", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 817, - "event_name": "アイドルLIVEロワイヤル お花見SP" - } - ] - }, - { - "alias_name": "花盛り☆乙女", - "alias_name_display": "花盛り☆乙女", - "id": "3531702", - "hash": "557803a0324c4d494b78d83b42174e61", - "profile": { - "height": "158", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 817, - "event_name": "アイドルLIVEロワイヤル お花見SP" - } - ] - } - ], - "units": [ - { - "id": "6", - "name": "笑美と鈴帆の爆笑エブリデイ" - }, - { - "id": "128", - "name": "ラビュー☆アイス☆マウンテン" - }, - { - "id": "152", - "name": "B.B.ロワイヤル" - }, - { - "id": "180", - "name": "ハロウィンパーティー" - }, - { - "id": "190", - "name": "サマプリ" - }, - { - "id": "209", - "name": "ロワイヤルスタイルNP" - } - ] - }, - "192": { - "idol_id": 192, - "idol_name": "浜口あやめ", - "idol_name_display": "浜口あやめ", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3204201", - "hash": "ca56d3f1c3dfddc86c3e2d5c12c12747", - "profile": { - "height": "154", - "weight": "42", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3304202", - "hash": "792bcdf081da623dd1fdbac58b9e4399", - "profile": { - "height": "154", - "weight": "42", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "くのいち忍ドル", - "alias_name_display": "くのいち忍ドル", - "id": "3207201", - "hash": "9f221e53168c21925ff336e2c2331eff", - "profile": { - "height": "154", - "weight": "42", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": "006", - "event_name": "第6回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "くのいち忍ドル", - "alias_name_display": "くのいち忍ドル", - "id": "3307202", - "hash": "159060b683d4e8bea49d2c90753f61c7", - "profile": { - "height": "154", - "weight": "42", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": "006", - "event_name": "第6回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "制服コレクション", - "alias_name_display": "制服コレクション", - "id": "3209601", - "hash": "66004323a3b953d2e44968f078de54ab", - "profile": { - "height": "154", - "weight": "42", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "制服コレクション", - "alias_name_display": "制服コレクション", - "id": "3309602", - "hash": "7b0a05b33bd4ab2cff635918cdf66049", - "profile": { - "height": "154", - "weight": "42", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "リゾート忍ドル", - "alias_name_display": "リゾート忍ドル", - "id": "3221201", - "hash": "16912bf56b6bdeb5720986c2865f0c9d", - "profile": { - "height": "154", - "weight": "42", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "リゾート忍ドル", - "alias_name_display": "リゾート忍ドル", - "id": "3321202", - "hash": "0f1161d9c1966cb505756ca600be8d8e", - "profile": { - "height": "154", - "weight": "42", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "春風スポーツ", - "alias_name_display": "春風スポーツ", - "id": "3228401", - "hash": "aeae61e9c8eadfbaa9a18d4d1957f02c", - "profile": { - "height": "154", - "weight": "42", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "春風スポーツ", - "alias_name_display": "春風スポーツ", - "id": "3328402", - "hash": "8bb4775d1c95510634789152546fb595", - "profile": { - "height": "154", - "weight": "42", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ロコガール", - "alias_name_display": "ロコガール", - "id": "3230501", - "hash": "aba42cf3647de7baed67ea72dfafe288", - "profile": { - "height": "154", - "weight": "42", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 1707, - "event_name": "アイドルプロデュース アロハ!常夏の楽園" - } - ] - }, - { - "alias_name": "ロコガール", - "alias_name_display": "ロコガール", - "id": "3330502", - "hash": "cdfbd3cc796f86bd72bfbc59ddb0d37a", - "profile": { - "height": "154", - "weight": "42", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 1707, - "event_name": "アイドルプロデュース アロハ!常夏の楽園" - } - ] - }, - { - "alias_name": "オリ・ロコガール", - "alias_name_display": "オリ・ロコガール", - "id": "3230601", - "hash": "346bf79369d960b64b2687a91743526d", - "profile": { - "height": "154", - "weight": "42", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 1707, - "event_name": "アイドルプロデュース アロハ!常夏の楽園" - } - ] - }, - { - "alias_name": "オリ・ロコガール", - "alias_name_display": "オリ・ロコガール", - "id": "3330602", - "hash": "b2f583b8ab6e0e38ff6b5eac684b30fc", - "profile": { - "height": "154", - "weight": "42", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 1707, - "event_name": "アイドルプロデュース アロハ!常夏の楽園" - } - ] - }, - { - "alias_name": "華麗なくのいち", - "alias_name_display": "華麗なくのいち", - "id": "3407701", - "hash": "006b31b74f05473ef9f96d9da18aad5b", - "profile": { - "height": "154", - "weight": "42", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "華麗なくのいち", - "alias_name_display": "華麗なくのいち", - "id": "3507702", - "hash": "71558cd2e1d7a1664f22956ce2b3a358", - "profile": { - "height": "154", - "weight": "42", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "筆術くのいち", - "alias_name_display": "筆術くのいち", - "id": "3409801", - "hash": "b0fed18f01b130a35af0a63a73c34e5f", - "profile": { - "height": "154", - "weight": "42", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": "013", - "event_name": "第13回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "筆術くのいち", - "alias_name_display": "筆術くのいち", - "id": "3509802", - "hash": "8479a11885622091deeb77207c85c369", - "profile": { - "height": "154", - "weight": "42", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": "013", - "event_name": "第13回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "助太刀☆チアー", - "alias_name_display": "助太刀☆チアー", - "id": "3412301", - "hash": "bb55ef853d7164b8b6d29a4b28be3c3e", - "profile": { - "height": "154", - "weight": "42", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 1101, - "event_name": "プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "助太刀☆チアー", - "alias_name_display": "助太刀☆チアー", - "id": "3512302", - "hash": "889a7a96129faba04a608bf55171c80c", - "profile": { - "height": "154", - "weight": "42", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 1101, - "event_name": "プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "海風の使者", - "alias_name_display": "海風の使者", - "id": "3415801", - "hash": "56297f6f253dada7215cdc52fa5ecbe5", - "profile": { - "height": "154", - "weight": "42", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "海風の使者", - "alias_name_display": "海風の使者", - "id": "3515802", - "hash": "eae651188d4cdbac6e4773e9587cdd77", - "profile": { - "height": "154", - "weight": "42", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "秘伝☆くのいち", - "alias_name_display": "秘伝☆くのいち", - "id": "3423901", - "hash": "0c892e7b0943a2914287dfa8bb44bc9b", - "profile": { - "height": "154", - "weight": "42", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 713, - "event_name": "第13回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "秘伝☆くのいち", - "alias_name_display": "秘伝☆くのいち", - "id": "3523902", - "hash": "bafd37229535e91c6103b32b90bbd970", - "profile": { - "height": "154", - "weight": "42", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 713, - "event_name": "第13回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "純真☆変化", - "alias_name_display": "純真☆変化", - "id": "3426801", - "hash": "6ce3af540ca2b7a1c77c6fc26794a4cc", - "profile": { - "height": "154", - "weight": "42", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "純真☆変化", - "alias_name_display": "純真☆変化", - "id": "3526802", - "hash": "ac99882834472fa2caf60e75690f8aca", - "profile": { - "height": "154", - "weight": "42", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "月影の刺客", - "alias_name_display": "月影の刺客", - "id": "3437401", - "hash": "1d71db748957b5c2a6d9e01a4757a7f9", - "profile": { - "height": "154", - "weight": "42", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 1214, - "event_name": "目指せくのいち アイドルチャレンジ" - } - ] - }, - { - "alias_name": "月影の刺客", - "alias_name_display": "月影の刺客", - "id": "3537402", - "hash": "fc4b0d7524dab986a0d4a97f5eab93ff", - "profile": { - "height": "154", - "weight": "42", - "bust": "78", - "waist": "55", - "hip": "80" - }, - "event": [ - { - "event_id": 1214, - "event_name": "目指せくのいち アイドルチャレンジ" - } - ] - } - ], - "units": [ - { - "id": "0", - "name": "くノ一あやめ忍法帖" - }, - { - "id": "19", - "name": "さつきの頃" - }, - { - "id": "30", - "name": "センゴク☆ランブ" - }, - { - "id": "38", - "name": "忍武☆繚乱" - }, - { - "id": "156", - "name": "センゴク☆華☆ランブ" - }, - { - "id": "179", - "name": "春霞" - } - ] - }, - "193": { - "idol_id": 193, - "idol_name": "村上巴", - "idol_name_display": "村上巴", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3205101", - "hash": "52a9739a10a91ce69139bb28d742e99e", - "profile": { - "height": "146", - "weight": "37", - "bust": "74", - "waist": "53", - "hip": "76" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3305102", - "hash": "e104bb799ff765c82e1be6be6fba6291", - "profile": { - "height": "146", - "weight": "37", - "bust": "74", - "waist": "53", - "hip": "76" - }, - "event": [] - }, - { - "alias_name": "緋桜お嬢", - "alias_name_display": "緋桜お嬢", - "id": "3206701", - "hash": "9229fa2ac5d27d5ff9cb61c3edd49baa", - "profile": { - "height": "146", - "weight": "37", - "bust": "74", - "waist": "53", - "hip": "76" - }, - "event": [ - { - "event_id": "005", - "event_name": "第5回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "緋桜お嬢", - "alias_name_display": "緋桜お嬢", - "id": "3306702", - "hash": "324a9f368dfba1870822807887b3ba7f", - "profile": { - "height": "146", - "weight": "37", - "bust": "74", - "waist": "53", - "hip": "76" - }, - "event": [ - { - "event_id": "005", - "event_name": "第5回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "クリスマスパーティー", - "alias_name_display": "クリスマスパーティー", - "id": "3214401", - "hash": "063ffec0aa97792c72174763408ba1fb", - "profile": { - "height": "146", - "weight": "37", - "bust": "74", - "waist": "53", - "hip": "76" - }, - "event": [] - }, - { - "alias_name": "クリスマスパーティー", - "alias_name_display": "クリスマスパーティー", - "id": "3314402", - "hash": "1b8738bbc354106b60524b170c267ff3", - "profile": { - "height": "146", - "weight": "37", - "bust": "74", - "waist": "53", - "hip": "76" - }, - "event": [] - }, - { - "alias_name": "セレクトメイド", - "alias_name_display": "セレクトメイド", - "id": "3218701", - "hash": "c6dac2259d77a69bee5cdc6948f96642", - "profile": { - "height": "146", - "weight": "37", - "bust": "74", - "waist": "53", - "hip": "76" - }, - "event": [] - }, - { - "alias_name": "セレクトメイド", - "alias_name_display": "セレクトメイド", - "id": "3318702", - "hash": "ca6c5513c5e2fa0020de3baca8b6a0ef", - "profile": { - "height": "146", - "weight": "37", - "bust": "74", - "waist": "53", - "hip": "76" - }, - "event": [] - }, - { - "alias_name": "クライムI.C", - "alias_name_display": "クライムI.C", - "id": "3329802", - "hash": "9322735592db663dcc49f60e49f3183f", - "profile": { - "height": "146", - "weight": "37", - "bust": "74", - "waist": "53", - "hip": "76" - }, - "event": [ - { - "event_id": 1211, - "event_name": "目指せ山頂! アイドルチャレンジ" - } - ] - }, - { - "alias_name": "新春花道", - "alias_name_display": "新春花道", - "id": "3404401", - "hash": "7c46a92d5aed4d00fadb147482537d7b", - "profile": { - "height": "146", - "weight": "37", - "bust": "74", - "waist": "53", - "hip": "76" - }, - "event": [] - }, - { - "alias_name": "新春花道", - "alias_name_display": "新春花道", - "id": "3504402", - "hash": "a357bf9e03b66e27cbfe061765e9d1cc", - "profile": { - "height": "146", - "weight": "37", - "bust": "74", - "waist": "53", - "hip": "76" - }, - "event": [] - }, - { - "alias_name": "緋色のプリンセス", - "alias_name_display": "緋色のプリンセス", - "id": "3407901", - "hash": "0f82f32aefe18696235be44d706de892", - "profile": { - "height": "146", - "weight": "37", - "bust": "74", - "waist": "53", - "hip": "76" - }, - "event": [ - { - "event_id": 506, - "event_name": "アイドルLIVEツアーinハワイ" - } - ] - }, - { - "alias_name": "緋色のプリンセス", - "alias_name_display": "緋色のプリンセス", - "id": "3507902", - "hash": "b1fedfbdbeb47a1cd00a555204dc42bc", - "profile": { - "height": "146", - "weight": "37", - "bust": "74", - "waist": "53", - "hip": "76" - }, - "event": [ - { - "event_id": 506, - "event_name": "アイドルLIVEツアーinハワイ" - } - ] - }, - { - "alias_name": "緋色の一皿", - "alias_name_display": "緋色の一皿", - "id": "3412901", - "hash": "9ea724a88193776de79ef5f2dc68deed", - "profile": { - "height": "146", - "weight": "37", - "bust": "74", - "waist": "53", - "hip": "76" - }, - "event": [ - { - "event_id": 706, - "event_name": "第6回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "緋色の一皿", - "alias_name_display": "緋色の一皿", - "id": "3512902", - "hash": "204d94633810b7fc3d886f04802acadd", - "profile": { - "height": "146", - "weight": "37", - "bust": "74", - "waist": "53", - "hip": "76" - }, - "event": [ - { - "event_id": 706, - "event_name": "第6回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "紅の一指し", - "alias_name_display": "紅の一指し", - "id": "3419201", - "hash": "bede574c4a9a90ab62205799fd9139ef", - "profile": { - "height": "146", - "weight": "37", - "bust": "74", - "waist": "53", - "hip": "76" - }, - "event": [] - }, - { - "alias_name": "紅の一指し", - "alias_name_display": "紅の一指し", - "id": "3519202", - "hash": "4bea26175c846e829776dea3b708ea5e", - "profile": { - "height": "146", - "weight": "37", - "bust": "74", - "waist": "53", - "hip": "76" - }, - "event": [] - }, - { - "alias_name": "緋桜宵一刻", - "alias_name_display": "緋桜宵一刻", - "id": "3422501", - "hash": "1bbf65958a8b15249f7b3ded9686ba8a", - "profile": { - "height": "146", - "weight": "37", - "bust": "74", - "waist": "53", - "hip": "76" - }, - "event": [ - { - "event_id": 712, - "event_name": "花見DEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "緋桜宵一刻", - "alias_name_display": "緋桜宵一刻", - "id": "3522502", - "hash": "08507b1415aac3425a832f673c3de275", - "profile": { - "height": "146", - "weight": "37", - "bust": "74", - "waist": "53", - "hip": "76" - }, - "event": [ - { - "event_id": 712, - "event_name": "花見DEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "紅染まる情景", - "alias_name_display": "紅染まる情景", - "id": "3427401", - "hash": "f61ce6f523670d1df4811683c3d88932", - "profile": { - "height": "146", - "weight": "37", - "bust": "74", - "waist": "53", - "hip": "76" - }, - "event": [ - { - "event_id": 717, - "event_name": "第17回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "紅染まる情景", - "alias_name_display": "紅染まる情景", - "id": "3527402", - "hash": "9ed607c190b8f31085a90adb4b333564", - "profile": { - "height": "146", - "weight": "37", - "bust": "74", - "waist": "53", - "hip": "76" - }, - "event": [ - { - "event_id": 717, - "event_name": "第17回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "情熱クライマー", - "alias_name_display": "情熱クライマー", - "id": "3433801", - "hash": "0274b29c98fd5fb1b83903f2b6a184d6", - "profile": { - "height": "146", - "weight": "37", - "bust": "74", - "waist": "53", - "hip": "76" - }, - "event": [ - { - "event_id": 1211, - "event_name": "目指せ山頂! アイドルチャレンジ" - } - ] - }, - { - "alias_name": "情熱クライマー", - "alias_name_display": "情熱クライマー", - "id": "3533802", - "hash": "9f856d31ab13638093c2bae804bda29d", - "profile": { - "height": "146", - "weight": "37", - "bust": "74", - "waist": "53", - "hip": "76" - }, - "event": [ - { - "event_id": 1211, - "event_name": "目指せ山頂! アイドルチャレンジ" - } - ] - }, - { - "alias_name": "笑顔でクライマー", - "alias_name_display": "笑顔でクライマー", - "id": "3433901", - "hash": "56d28fdbe680efdacbfee5769b324d16", - "profile": { - "height": "146", - "weight": "37", - "bust": "74", - "waist": "53", - "hip": "76" - }, - "event": [ - { - "event_id": 1211, - "event_name": "目指せ山頂! アイドルチャレンジ" - } - ] - }, - { - "alias_name": "笑顔でクライマー", - "alias_name_display": "笑顔でクライマー", - "id": "3533902", - "hash": "83b53b4dceb9b7022e17587ced38dc4e", - "profile": { - "height": "146", - "weight": "37", - "bust": "74", - "waist": "53", - "hip": "76" - }, - "event": [ - { - "event_id": 1211, - "event_name": "目指せ山頂! アイドルチャレンジ" - } - ] - }, - { - "alias_name": "義理と愛情", - "alias_name_display": "義理と愛情", - "id": "3437901", - "hash": "d663200d41b0a9411ce984ffa964cfc5", - "profile": { - "height": "146", - "weight": "37", - "bust": "74", - "waist": "53", - "hip": "76" - }, - "event": [] - }, - { - "alias_name": "義理と愛情", - "alias_name_display": "義理と愛情", - "id": "3537902", - "hash": "1c6ff2bbe0458219764965de70302d56", - "profile": { - "height": "146", - "weight": "37", - "bust": "74", - "waist": "53", - "hip": "76" - }, - "event": [] - } - ], - "units": [ - { - "id": "52", - "name": "フォーリンシーサイド" - }, - { - "id": "66", - "name": "レッドベリィズ" - }, - { - "id": "152", - "name": "B.B.ロワイヤル" - }, - { - "id": "177", - "name": "桜舞隊" - } - ] - }, - "194": { - "idol_id": 194, - "idol_name": "土屋亜子", - "idol_name_display": "土屋亜子", - "aliases": [ - { - "alias_name": "ニューウェーブ", - "alias_name_display": "ニューウェーブ", - "id": "3205901", - "hash": "84775bd2804d19b99d77eddeaa86a02c", - "profile": { - "height": "156", - "weight": "42", - "bust": "85", - "waist": "54", - "hip": "83" - }, - "event": [ - { - "event_id": 401, - "event_name": "新人アイドルプロデュース" - } - ] - }, - { - "alias_name": "ニューウェーブ", - "alias_name_display": "ニューウェーブ", - "id": "3305902", - "hash": "2e4405c20b2ef8458796c8efe0e0a592", - "profile": { - "height": "156", - "weight": "42", - "bust": "85", - "waist": "54", - "hip": "83" - }, - "event": [ - { - "event_id": 401, - "event_name": "新人アイドルプロデュース" - } - ] - }, - { - "alias_name": "アメリカンスタイル", - "alias_name_display": "アメリカンスタイル", - "id": "3207301", - "hash": "b22058d3eb900c919dc0c48711d34618", - "profile": { - "height": "156", - "weight": "42", - "bust": "85", - "waist": "54", - "hip": "83" - }, - "event": [ - { - "event_id": 501, - "event_name": "アイドルLIVEツアーinUSA" - } - ] - }, - { - "alias_name": "アメリカンスタイル", - "alias_name_display": "アメリカンスタイル", - "id": "3307302", - "hash": "07288a321d758444cb8b4d80bcb77948", - "profile": { - "height": "156", - "weight": "42", - "bust": "85", - "waist": "54", - "hip": "83" - }, - "event": [ - { - "event_id": 501, - "event_name": "アイドルLIVEツアーinUSA" - } - ] - }, - { - "alias_name": "ジューンブライド", - "alias_name_display": "ジューンブライド", - "id": "3210801", - "hash": "a37cd388993bc752c3145e815649c566", - "profile": { - "height": "156", - "weight": "42", - "bust": "85", - "waist": "54", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "ジューンブライド", - "alias_name_display": "ジューンブライド", - "id": "3310802", - "hash": "2c344452271d9b3ace6f5f815025a7a7", - "profile": { - "height": "156", - "weight": "42", - "bust": "85", - "waist": "54", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "サルファーブライト", - "alias_name_display": "サルファーブライト", - "id": "3215801", - "hash": "90653f94871586fd61fb3c1f3a6363ef", - "profile": { - "height": "156", - "weight": "42", - "bust": "85", - "waist": "54", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "サルファーブライト", - "alias_name_display": "サルファーブライト", - "id": "3315802", - "hash": "80452b67b1eed6240a01c5b71b98f539", - "profile": { - "height": "156", - "weight": "42", - "bust": "85", - "waist": "54", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "振袖まつり", - "alias_name_display": "振袖まつり", - "id": "3221001", - "hash": "2d1449e0672588d77f37bd725f5cd491", - "profile": { - "height": "156", - "weight": "42", - "bust": "85", - "waist": "54", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "振袖まつり", - "alias_name_display": "振袖まつり", - "id": "3321002", - "hash": "94d5a2817b51f852833622f3c84f06b0", - "profile": { - "height": "156", - "weight": "42", - "bust": "85", - "waist": "54", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "LIVEバラエティ", - "alias_name_display": "LIVEバラエティ", - "id": "3326402", - "hash": "474d81de241426873715c3d2e2a7d006", - "profile": { - "height": "156", - "weight": "42", - "bust": "85", - "waist": "54", - "hip": "83" - }, - "event": [ - { - "event_id": 1802, - "event_name": "アイドルバラエティ 手作りライブプロジェクト!" - } - ] - }, - { - "alias_name": "ファンサーキット", - "alias_name_display": "ファンサーキット", - "id": "3228701", - "hash": "ccf090e74a63bbd02c4adbcc61062c0c", - "profile": { - "height": "156", - "weight": "42", - "bust": "85", - "waist": "54", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "ファンサーキット", - "alias_name_display": "ファンサーキット", - "id": "3328702", - "hash": "6bd4684e21d43d1bd95105c7501ea253", - "profile": { - "height": "156", - "weight": "42", - "bust": "85", - "waist": "54", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "サルファージョリー", - "alias_name_display": "サルファージョリー", - "id": "3233601", - "hash": "8d0283221223adb708f446581e51ca4d", - "profile": { - "height": "156", - "weight": "42", - "bust": "85", - "waist": "54", - "hip": "83" - }, - "event": [ - { - "event_id": 728, - "event_name": "ドリームLIVEフェスティバル スプリングSP" - } - ] - }, - { - "alias_name": "サルファージョリー", - "alias_name_display": "サルファージョリー", - "id": "3333602", - "hash": "ba8adbf8b689ab078caddbc7cba45fd6", - "profile": { - "height": "156", - "weight": "42", - "bust": "85", - "waist": "54", - "hip": "83" - }, - "event": [ - { - "event_id": 728, - "event_name": "ドリームLIVEフェスティバル スプリングSP" - } - ] - }, - { - "alias_name": "サルファーウェーブ", - "alias_name_display": "サルファーウェーブ", - "id": "3409101", - "hash": "cc587b5c006d330d28dd586f5aa01ab5", - "profile": { - "height": "156", - "weight": "42", - "bust": "85", - "waist": "54", - "hip": "83" - }, - "event": [ - { - "event_id": 801, - "event_name": "アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "サルファーウェーブ", - "alias_name_display": "サルファーウェーブ", - "id": "3509102", - "hash": "40b0bf0485405d6fe0253371c92c0932", - "profile": { - "height": "156", - "weight": "42", - "bust": "85", - "waist": "54", - "hip": "83" - }, - "event": [ - { - "event_id": 801, - "event_name": "アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "黄金の好運", - "alias_name_display": "黄金の好運", - "id": "3415301", - "hash": "67e21e4b8d91d5a75e1810c40a58f2d2", - "profile": { - "height": "156", - "weight": "42", - "bust": "85", - "waist": "54", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "黄金の好運", - "alias_name_display": "黄金の好運", - "id": "3515302", - "hash": "dea4197fb41bc0d916debf2f4263c8a5", - "profile": { - "height": "156", - "weight": "42", - "bust": "85", - "waist": "54", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "シャイニーチアー", - "alias_name_display": "シャイニーチアー", - "id": "3424501", - "hash": "d0511dd81329bcff9ae0bd87dd0f7daf", - "profile": { - "height": "156", - "weight": "42", - "bust": "85", - "waist": "54", - "hip": "83" - }, - "event": [ - { - "event_id": 1502, - "event_name": "チーム対抗雨の日トークバトルショー" - } - ] - }, - { - "alias_name": "シャイニーチアー", - "alias_name_display": "シャイニーチアー", - "id": "3524502", - "hash": "17a8da8f1b09741e0cad2f3f5ccd323e", - "profile": { - "height": "156", - "weight": "42", - "bust": "85", - "waist": "54", - "hip": "83" - }, - "event": [ - { - "event_id": 1502, - "event_name": "チーム対抗雨の日トークバトルショー" - } - ] - }, - { - "alias_name": "魔科学ドクトル", - "alias_name_display": "魔科学ドクトル", - "id": "3435301", - "hash": "9b8c49c88c689859176c103c9624c131", - "profile": { - "height": "156", - "weight": "42", - "bust": "85", - "waist": "54", - "hip": "83" - }, - "event": [ - { - "event_id": 1904, - "event_name": "魔界公演 妖艶魔女と消えたハロウィン" - } - ] - }, - { - "alias_name": "魔科学ドクトル", - "alias_name_display": "魔科学ドクトル", - "id": "3535302", - "hash": "bd055ba043dc7166491f48b3587b1984", - "profile": { - "height": "156", - "weight": "42", - "bust": "85", - "waist": "54", - "hip": "83" - }, - "event": [ - { - "event_id": 1904, - "event_name": "魔界公演 妖艶魔女と消えたハロウィン" - } - ] - } - ], - "units": [ - { - "id": "99", - "name": "ニューウェーブ" - }, - { - "id": "151", - "name": "ブエナ・スエルテ" - } - ] - }, - "195": { - "idol_id": 195, - "idol_name": "首藤葵", - "idol_name_display": "首藤葵", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3206301", - "hash": "43868973b8854862d7c02d14e3c03740", - "profile": { - "height": "145", - "weight": "39", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3306302", - "hash": "cf3952309d0a044864fe64891a138a49", - "profile": { - "height": "145", - "weight": "39", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "ひな祭り", - "alias_name_display": "ひな祭り", - "id": "3209001", - "hash": "029c39ffd4a7437d563d418abb957075", - "profile": { - "height": "145", - "weight": "39", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 209, - "event_name": "アイドルサバイバルひな祭り2013" - } - ] - }, - { - "alias_name": "ひな祭り", - "alias_name_display": "ひな祭り", - "id": "3309002", - "hash": "d453b8b6edc12b7d723e1a1a2969d007", - "profile": { - "height": "145", - "weight": "39", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 209, - "event_name": "アイドルサバイバルひな祭り2013" - } - ] - }, - { - "alias_name": "はいから料理娘", - "alias_name_display": "はいから料理娘", - "id": "3211001", - "hash": "a428515798abc1514df83ae3066cb0c6", - "profile": { - "height": "145", - "weight": "39", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "はいから料理娘", - "alias_name_display": "はいから料理娘", - "id": "3311002", - "hash": "f8f9d86199c34e4684ba54d055d9bcfd", - "profile": { - "height": "145", - "weight": "39", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "グリッターステージ", - "alias_name_display": "グリッターステージ", - "id": "3216401", - "hash": "6f89d22c276f688ac37de02735b6e0a9", - "profile": { - "height": "145", - "weight": "39", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "グリッターステージ", - "alias_name_display": "グリッターステージ", - "id": "3316402", - "hash": "d52d6627d5a0add014631032375ae337", - "profile": { - "height": "145", - "weight": "39", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "新春I.C", - "alias_name_display": "新春I.C", - "id": "3320902", - "hash": "8079dc0e0dea63c3571ae36597c62b20", - "profile": { - "height": "145", - "weight": "39", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 1204, - "event_name": "新年かくし芸SP アイドルチャレンジ" - } - ] - }, - { - "alias_name": "パワフルメイト", - "alias_name_display": "パワフルメイト", - "id": "3323802", - "hash": "a788612caf23b550865996cab821698f", - "profile": { - "height": "145", - "weight": "39", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 520, - "event_name": "青春公演 シング・ア・ソング" - } - ] - }, - { - "alias_name": "まごころ若女将", - "alias_name_display": "まごころ若女将", - "id": "3409201", - "hash": "740d796bdc3fe5bc331f25df386164e4", - "profile": { - "height": "145", - "weight": "39", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 703, - "event_name": "第3回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "まごころ若女将", - "alias_name_display": "まごころ若女将", - "id": "3509202", - "hash": "62fbdf5d61178972214ab660b8b71541", - "profile": { - "height": "145", - "weight": "39", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 703, - "event_name": "第3回ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "手鞠の芸達者", - "alias_name_display": "手鞠の芸達者", - "id": "3420201", - "hash": "f359083d4dd5ab80912ac670b4fcfa2a", - "profile": { - "height": "145", - "weight": "39", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 1204, - "event_name": "新年かくし芸SP アイドルチャレンジ" - } - ] - }, - { - "alias_name": "手鞠の芸達者", - "alias_name_display": "手鞠の芸達者", - "id": "3520202", - "hash": "914aa8f542329e1039dd149af2501faa", - "profile": { - "height": "145", - "weight": "39", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 1204, - "event_name": "新年かくし芸SP アイドルチャレンジ" - } - ] - }, - { - "alias_name": "手鞠の芸達者・S", - "alias_name_display": "手鞠の芸達者・S", - "id": "3420301", - "hash": "67e86f423d1bd82990e21e6e99d88425", - "profile": { - "height": "145", - "weight": "39", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 1204, - "event_name": "新年かくし芸SP アイドルチャレンジ" - } - ] - }, - { - "alias_name": "手鞠の芸達者・S", - "alias_name_display": "手鞠の芸達者・S", - "id": "3520302", - "hash": "702c4529eb6c6a90f7800123193d10eb", - "profile": { - "height": "145", - "weight": "39", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 1204, - "event_name": "新年かくし芸SP アイドルチャレンジ" - } - ] - }, - { - "alias_name": "チャーミー・ロワイヤル", - "alias_name_display": "チャーミー・ロワイヤル", - "id": "3428401", - "hash": "b91dddc951d13df4f5901c66b653a248", - "profile": { - "height": "145", - "weight": "39", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 815, - "event_name": "アイドルLIVEロワイヤル クリスマスSP" - } - ] - }, - { - "alias_name": "チャーミー・ロワイヤル", - "alias_name_display": "チャーミー・ロワイヤル", - "id": "3528402", - "hash": "f7457ada3cc849fac7b99099be1206b6", - "profile": { - "height": "145", - "weight": "39", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 815, - "event_name": "アイドルLIVEロワイヤル クリスマスSP" - } - ] - }, - { - "alias_name": "サマージャンピン", - "alias_name_display": "サマージャンピン", - "id": "3434101", - "hash": "4a8c3fded5624bb3fd188663949c599f", - "profile": { - "height": "145", - "weight": "39", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 723, - "event_name": "水着DEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "サマージャンピン", - "alias_name_display": "サマージャンピン", - "id": "3534102", - "hash": "a288f6905fe80b48ac93124a6ed086e2", - "profile": { - "height": "145", - "weight": "39", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [ - { - "event_id": 723, - "event_name": "水着DEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "チャキチャキ☆晴れ娘", - "alias_name_display": "チャキチャキ☆晴れ娘", - "id": "3438901", - "hash": "eea58dceca065bf2321c38cb03194094", - "profile": { - "height": "145", - "weight": "39", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [] - }, - { - "alias_name": "チャキチャキ☆晴れ娘", - "alias_name_display": "チャキチャキ☆晴れ娘", - "id": "3538902", - "hash": "b55c0b1bb4d08a833d7ae0fbbd248731", - "profile": { - "height": "145", - "weight": "39", - "bust": "73", - "waist": "53", - "hip": "75" - }, - "event": [] - } - ], - "units": [ - { - "id": "102", - "name": "パワフルヒーラーズ" - }, - { - "id": "156", - "name": "センゴク☆華☆ランブ" - } - ] - }, - "196": { - "idol_id": 196, - "idol_name": "冴島清美", - "idol_name_display": "冴島清美", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3211501", - "hash": "697e19df704f2ef4b9aca8fb57aa39d2", - "profile": { - "height": "153", - "weight": "43", - "bust": "76", - "waist": "58", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3311502", - "hash": "a795675b428cf7cc384eedde31c6258a", - "profile": { - "height": "153", - "weight": "43", - "bust": "76", - "waist": "58", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "湯けむり月夜", - "alias_name_display": "湯けむり月夜", - "id": "3213601", - "hash": "0b195865a262327e4732c68aeff5456c", - "profile": { - "height": "153", - "weight": "43", - "bust": "76", - "waist": "58", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "湯けむり月夜", - "alias_name_display": "湯けむり月夜", - "id": "3313602", - "hash": "748d86d7610287f202ac26a1d4195269", - "profile": { - "height": "153", - "weight": "43", - "bust": "76", - "waist": "58", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "ショコラフレーバー", - "alias_name_display": "ショコラフレーバー", - "id": "3215301", - "hash": "096e063d60b4b7702c871871d66b4519", - "profile": { - "height": "153", - "weight": "43", - "bust": "76", - "waist": "58", - "hip": "78" - }, - "event": [ - { - "event_id": 411, - "event_name": "アイドルプロデュース チョコレートフォーユー!" - } - ] - }, - { - "alias_name": "ショコラフレーバー", - "alias_name_display": "ショコラフレーバー", - "id": "3315302", - "hash": "60aac231822dea54e7042584603fc4d8", - "profile": { - "height": "153", - "weight": "43", - "bust": "76", - "waist": "58", - "hip": "78" - }, - "event": [ - { - "event_id": 411, - "event_name": "アイドルプロデュース チョコレートフォーユー!" - } - ] - }, - { - "alias_name": "ショコラフレーバー・S", - "alias_name_display": "ショコラフレーバー・S", - "id": "3215401", - "hash": "e96c0d9f1bc2c591042ff10001a3e28e", - "profile": { - "height": "153", - "weight": "43", - "bust": "76", - "waist": "58", - "hip": "78" - }, - "event": [ - { - "event_id": 411, - "event_name": "アイドルプロデュース チョコレートフォーユー!" - } - ] - }, - { - "alias_name": "ショコラフレーバー・S", - "alias_name_display": "ショコラフレーバー・S", - "id": "3315402", - "hash": "7a3d5393fa60cfe4bf872cbcde7bd740", - "profile": { - "height": "153", - "weight": "43", - "bust": "76", - "waist": "58", - "hip": "78" - }, - "event": [ - { - "event_id": 411, - "event_name": "アイドルプロデュース チョコレートフォーユー!" - } - ] - }, - { - "alias_name": "ロックI.C", - "alias_name_display": "ロックI.C", - "id": "3318402", - "hash": "1d8fc0d491ca864c126ce13cff71e55b", - "profile": { - "height": "153", - "weight": "43", - "bust": "76", - "waist": "58", - "hip": "78" - }, - "event": [ - { - "event_id": 1202, - "event_name": "目指せロックスター アイドルチャレンジ" - } - ] - }, - { - "alias_name": "アイドル取締係", - "alias_name_display": "アイドル取締係", - "id": "3223101", - "hash": "8917cbf796fc48c5a8e55d383339eba5", - "profile": { - "height": "153", - "weight": "43", - "bust": "76", - "waist": "58", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "アイドル取締係", - "alias_name_display": "アイドル取締係", - "id": "3323102", - "hash": "39802652866ea5548a61d257a6d787c3", - "profile": { - "height": "153", - "weight": "43", - "bust": "76", - "waist": "58", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "タラン・アナリーズ", - "alias_name_display": "タラン・アナリーズ", - "id": "3230701", - "hash": "94c08885da41d1fc80e33b8e7e23ea6b", - "profile": { - "height": "153", - "weight": "43", - "bust": "76", - "waist": "58", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "タラン・アナリーズ", - "alias_name_display": "タラン・アナリーズ", - "id": "3330702", - "hash": "f9adb6b00e178dc8dbddd07a8c9d3629", - "profile": { - "height": "153", - "weight": "43", - "bust": "76", - "waist": "58", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "学園の超☆新星", - "alias_name_display": "学園の超☆新星", - "id": "3413501", - "hash": "8dd85e79dbfde7f5888c4aabd5805d4b", - "profile": { - "height": "153", - "weight": "43", - "bust": "76", - "waist": "58", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "学園の超☆新星", - "alias_name_display": "学園の超☆新星", - "id": "3513502", - "hash": "789218d49debfd49fe6ea42ed26e7839", - "profile": { - "height": "153", - "weight": "43", - "bust": "76", - "waist": "58", - "hip": "78" - }, - "event": [] - }, - { - "alias_name": "ガールズロッカー", - "alias_name_display": "ガールズロッカー", - "id": "3416101", - "hash": "65358f57a96b392c90e1b573723939e1", - "profile": { - "height": "153", - "weight": "43", - "bust": "76", - "waist": "58", - "hip": "78" - }, - "event": [ - { - "event_id": 1202, - "event_name": "目指せロックスター アイドルチャレンジ" - } - ] - }, - { - "alias_name": "ガールズロッカー", - "alias_name_display": "ガールズロッカー", - "id": "3516102", - "hash": "db755eae0641bef500fb12fda1026268", - "profile": { - "height": "153", - "weight": "43", - "bust": "76", - "waist": "58", - "hip": "78" - }, - "event": [ - { - "event_id": 1202, - "event_name": "目指せロックスター アイドルチャレンジ" - } - ] - }, - { - "alias_name": "ガールズロッカー・S", - "alias_name_display": "ガールズロッカー・S", - "id": "3416201", - "hash": "b5912188c743433a82f5866f9e473ff9", - "profile": { - "height": "153", - "weight": "43", - "bust": "76", - "waist": "58", - "hip": "78" - }, - "event": [ - { - "event_id": 1202, - "event_name": "目指せロックスター アイドルチャレンジ" - } - ] - }, - { - "alias_name": "ガールズロッカー・S", - "alias_name_display": "ガールズロッカー・S", - "id": "3516202", - "hash": "f913a86dcbf8a9c3d60cc4c3beac9944", - "profile": { - "height": "153", - "weight": "43", - "bust": "76", - "waist": "58", - "hip": "78" - }, - "event": [ - { - "event_id": 1202, - "event_name": "目指せロックスター アイドルチャレンジ" - } - ] - }, - { - "alias_name": "ベリーメリーチアー", - "alias_name_display": "ベリーメリーチアー", - "id": "3420101", - "hash": "07e0aefc7c9c5fbb79cca7355977460e", - "profile": { - "height": "153", - "weight": "43", - "bust": "76", - "waist": "58", - "hip": "78" - }, - "event": [ - { - "event_id": 1107, - "event_name": "プロダクション対抗トークバトルショー クリスマスSP" - } - ] - }, - { - "alias_name": "ベリーメリーチアー", - "alias_name_display": "ベリーメリーチアー", - "id": "3520102", - "hash": "8e832b807804f4f50dc1bba42ef61426", - "profile": { - "height": "153", - "weight": "43", - "bust": "76", - "waist": "58", - "hip": "78" - }, - "event": [ - { - "event_id": 1107, - "event_name": "プロダクション対抗トークバトルショー クリスマスSP" - } - ] - }, - { - "alias_name": "超☆スーパーモデル", - "alias_name_display": "超☆スーパーモデル", - "id": "3431101", - "hash": "2b63b7e0ec092dfd36a67f809c36a5a9", - "profile": { - "height": "153", - "weight": "43", - "bust": "76", - "waist": "58", - "hip": "78" - }, - "event": [ - { - "event_id": 1406, - "event_name": "第6回ぷちデレラコレクション" - } - ] - }, - { - "alias_name": "超☆スーパーモデル", - "alias_name_display": "超☆スーパーモデル", - "id": "3531102", - "hash": "795be75c072fbeca019121e5a065f41b", - "profile": { - "height": "153", - "weight": "43", - "bust": "76", - "waist": "58", - "hip": "78" - }, - "event": [ - { - "event_id": 1406, - "event_name": "第6回ぷちデレラコレクション" - } - ] - }, - { - "alias_name": "超☆風紀・ロワイヤル", - "alias_name_display": "超☆風紀・ロワイヤル", - "id": "3438601", - "hash": "ed713f3796903b39b2859de02333692e", - "profile": { - "height": "153", - "weight": "43", - "bust": "76", - "waist": "58", - "hip": "78" - }, - "event": [ - { - "event_id": 822, - "event_name": "第22回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "超☆風紀・ロワイヤル", - "alias_name_display": "超☆風紀・ロワイヤル", - "id": "3538602", - "hash": "d6be32a4312ef65e6697fbd4da5b3926", - "profile": { - "height": "153", - "weight": "43", - "bust": "76", - "waist": "58", - "hip": "78" - }, - "event": [ - { - "event_id": 822, - "event_name": "第22回アイドルLIVEロワイヤル" - } - ] - } - ], - "units": [ - { - "id": "169", - "name": "FOUR PIECE" - }, - { - "id": "211", - "name": "ワンダー・フル" - } - ] - }, - "197": { - "idol_id": 197, - "idol_name": "佐藤心", - "idol_name_display": "佐藤心", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3215601", - "hash": "d9a0ec5b2f49514b8f6fdbc2b3771f44", - "profile": { - "height": "166", - "weight": "ダイエットちゅう", - "bust": "ぼんっ", - "waist": "きゅっ", - "hip": "ぼんっ♪" - }, - "event": [] - }, - { - "alias_name": null, - "alias_name_display": null, - "id": "3315602", - "hash": "340ab00d64a6d94dfc46bdc4ceb2cc5f", - "profile": { - "height": "166", - "weight": "ダイエットちゅう", - "bust": "ぼんっ", - "waist": "きゅっ", - "hip": "ぼんっ♪" - }, - "event": [] - }, - { - "alias_name": "T.B.スウィーティー", - "alias_name_display": "T.B.スウィーティー", - "id": "3217601", - "hash": "c9e9b869be6e4d8b500f800793636dce", - "profile": { - "height": "166", - "weight": "ダイエットちゅう", - "bust": "ぼんっ", - "waist": "きゅっ", - "hip": "ぼんっ♪" - }, - "event": [ - { - "event_id": 1103, - "event_name": "第3回プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "T.B.スウィーティー", - "alias_name_display": "T.B.スウィーティー", - "id": "3317602", - "hash": "97f9fb8f9bf728f75d26d1c22f49477c", - "profile": { - "height": "166", - "weight": "ダイエットちゅう", - "bust": "ぼんっ", - "waist": "きゅっ", - "hip": "ぼんっ♪" - }, - "event": [ - { - "event_id": 1103, - "event_name": "第3回プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "ネクストスターI.C", - "alias_name_display": "ネクストスターI.C", - "id": "3319602", - "hash": "2d067cd983148c41ec37a279bfa8486d", - "profile": { - "height": "166", - "weight": "ダイエットちゅう", - "bust": "ぼんっ", - "waist": "きゅっ", - "hip": "ぼんっ♪" - }, - "event": [ - { - "event_id": 1203, - "event_name": "目指せきらきらモデル アイドルチャレンジ" - } - ] - }, - { - "alias_name": "ワーキング・スウィーティー", - "alias_name_display": "ワーキング・スウィーティー", - "id": "3228201", - "hash": "6385fb5d76d87acc8a5ba8595a7acf6d", - "profile": { - "height": "166", - "weight": "ダイエットちゅう", - "bust": "ぼんっ", - "waist": "きゅっ", - "hip": "ぼんっ♪" - }, - "event": [] - }, - { - "alias_name": "ワーキング・スウィーティー", - "alias_name_display": "ワーキング・スウィーティー", - "id": "3328202", - "hash": "e1488e5ae3ac05066a970d9944e8a3a9", - "profile": { - "height": "166", - "weight": "ダイエットちゅう", - "bust": "ぼんっ", - "waist": "きゅっ", - "hip": "ぼんっ♪" - }, - "event": [] - }, - { - "alias_name": "チクッとスウィーティー", - "alias_name_display": "チクッとスウィーティー", - "id": "3232401", - "hash": "7fce9acadfec04fbcaeffd38ee89a37c", - "profile": { - "height": "166", - "weight": "ダイエットちゅう", - "bust": "ぼんっ", - "waist": "きゅっ", - "hip": "ぼんっ♪" - }, - "event": [] - }, - { - "alias_name": "チクッとスウィーティー", - "alias_name_display": "チクッとスウィーティー", - "id": "3332402", - "hash": "b4f0b6752da23051ae62d105fd8e635a", - "profile": { - "height": "166", - "weight": "ダイエットちゅう", - "bust": "ぼんっ", - "waist": "きゅっ", - "hip": "ぼんっ♪" - }, - "event": [] - }, - { - "alias_name": "ハート・モデル", - "alias_name_display": "ハート・モデル", - "id": "3417701", - "hash": "694a57d1825e26a2132b02becd9912ed", - "profile": { - "height": "166", - "weight": "ダイエットちゅう", - "bust": "ぼんっ", - "waist": "きゅっ", - "hip": "ぼんっ♪" - }, - "event": [ - { - "event_id": 1203, - "event_name": "目指せきらきらモデル アイドルチャレンジ" - } - ] - }, - { - "alias_name": "ハート・モデル", - "alias_name_display": "ハート・モデル", - "id": "3517702", - "hash": "44f999f95a88e0041b321292f5db456c", - "profile": { - "height": "166", - "weight": "ダイエットちゅう", - "bust": "ぼんっ", - "waist": "きゅっ", - "hip": "ぼんっ♪" - }, - "event": [ - { - "event_id": 1203, - "event_name": "目指せきらきらモデル アイドルチャレンジ" - } - ] - }, - { - "alias_name": "ハート・モデル・S", - "alias_name_display": "ハート・モデル・S", - "id": "3417801", - "hash": "e35da96f170e1b96f8e95725f0134d1a", - "profile": { - "height": "166", - "weight": "ダイエットちゅう", - "bust": "ぼんっ", - "waist": "きゅっ", - "hip": "ぼんっ♪" - }, - "event": [ - { - "event_id": 1203, - "event_name": "目指せきらきらモデル アイドルチャレンジ" - } - ] - }, - { - "alias_name": "ハート・モデル・S", - "alias_name_display": "ハート・モデル・S", - "id": "3517802", - "hash": "fdf75acee757844ae1c7ec62cc122b95", - "profile": { - "height": "166", - "weight": "ダイエットちゅう", - "bust": "ぼんっ", - "waist": "きゅっ", - "hip": "ぼんっ♪" - }, - "event": [ - { - "event_id": 1203, - "event_name": "目指せきらきらモデル アイドルチャレンジ" - } - ] - }, - { - "alias_name": "えんじぇるはぁと", - "alias_name_display": "えんじぇるはぁと", - "id": "3420801", - "hash": "e4312ec25c1a71e1e6a6f813ee481471", - "profile": { - "height": "166", - "weight": "ダイエットちゅう", - "bust": "ぼんっ", - "waist": "きゅっ", - "hip": "ぼんっ♪" - }, - "event": [] - }, - { - "alias_name": "えんじぇるはぁと", - "alias_name_display": "えんじぇるはぁと", - "id": "3520802", - "hash": "789f1a503d40faaf26a0035c6cc3c407", - "profile": { - "height": "166", - "weight": "ダイエットちゅう", - "bust": "ぼんっ", - "waist": "きゅっ", - "hip": "ぼんっ♪" - }, - "event": [] - }, - { - "alias_name": "はぁとの嫁入り", - "alias_name_display": "はぁとの嫁入り", - "id": "3424001", - "hash": "70d4fbc5a0fdde7d00431fcebd27ef00", - "profile": { - "height": "166", - "weight": "ダイエットちゅう", - "bust": "ぼんっ", - "waist": "きゅっ", - "hip": "ぼんっ♪" - }, - "event": [] - }, - { - "alias_name": "はぁとの嫁入り", - "alias_name_display": "はぁとの嫁入り", - "id": "3524002", - "hash": "f5507a6ede55324eade6917c61cf9d95", - "profile": { - "height": "166", - "weight": "ダイエットちゅう", - "bust": "ぼんっ", - "waist": "きゅっ", - "hip": "ぼんっ♪" - }, - "event": [] - }, - { - "alias_name": "スウィーティー・ロワイヤル", - "alias_name_display": "スウィーティー・ロワイヤル", - "id": "3427601", - "hash": "494edfe064b8fb4d35d104020969742d", - "profile": { - "height": "166", - "weight": "ダイエットちゅう", - "bust": "ぼんっ", - "waist": "きゅっ", - "hip": "ぼんっ♪" - }, - "event": [ - { - "event_id": 814, - "event_name": "第14回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "スウィーティー・ロワイヤル", - "alias_name_display": "スウィーティー・ロワイヤル", - "id": "3527602", - "hash": "6c4b16f4c3351cd74d4f757ba7e67a5e", - "profile": { - "height": "166", - "weight": "ダイエットちゅう", - "bust": "ぼんっ", - "waist": "きゅっ", - "hip": "ぼんっ♪" - }, - "event": [ - { - "event_id": 814, - "event_name": "第14回アイドルLIVEロワイヤル" - } - ] - }, - { - "alias_name": "常夏パラダイス", - "alias_name_display": "常夏パラダイス", - "id": "3434201", - "hash": "bdcb6defb92cad18920c35ced7e4d272", - "profile": { - "height": "166", - "weight": "ダイエットちゅう", - "bust": "ぼんっ", - "waist": "きゅっ", - "hip": "ぼんっ♪" - }, - "event": [] - }, - { - "alias_name": "常夏パラダイス", - "alias_name_display": "常夏パラダイス", - "id": "3534202", - "hash": "00a73075d65a7d0c56ceef9dd11c7a06", - "profile": { - "height": "166", - "weight": "ダイエットちゅう", - "bust": "ぼんっ", - "waist": "きゅっ", - "hip": "ぼんっ♪" - }, - "event": [] - } - ], - "units": [ - { - "id": "7", - "name": "エターナルレディエイト" - }, - { - "id": "13", - "name": "カワスウィーティーなボクはぁと(仮)" - }, - { - "id": "23", - "name": "しゅがしゅが☆み~ん" - }, - { - "id": "184", - "name": "宵乙女" - }, - { - "id": "207", - "name": "ムーランルージュ" - } - ] - }, - "198": { - "idol_id": 198, - "idol_name": "南条光", - "idol_name_display": "南条光", - "aliases": [ - { - "alias_name": "等身大の素顔", - "alias_name_display": "等身大の素顔", - "id": "3213001", - "hash": "8e9bb5d91c1612e5a4962aed94f45a78", - "profile": { - "height": "140", - "weight": "41", - "bust": "79", - "waist": "58", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "等身大の素顔", - "alias_name_display": "等身大の素顔", - "id": "3313002", - "hash": "3c3c58aa3056c75b8139189c71d2afa5", - "profile": { - "height": "140", - "weight": "41", - "bust": "79", - "waist": "58", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "レジェンドシーフ", - "alias_name_display": "レジェンドシーフ", - "id": "3324702", - "hash": "c59d82869331715bcd9d9f0a8b9a1c06", - "profile": { - "height": "140", - "weight": "41", - "bust": "79", - "waist": "58", - "hip": "80" - }, - "event": [ - { - "event_id": 521, - "event_name": "怪盗公演 美しき追跡者" - } - ] - }, - { - "alias_name": "マーチングバンド", - "alias_name_display": "マーチングバンド", - "id": "3226501", - "hash": "ab06c2777617f9bcff312f943cc6f866", - "profile": { - "height": "140", - "weight": "41", - "bust": "79", - "waist": "58", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "マーチングバンド", - "alias_name_display": "マーチングバンド", - "id": "3326502", - "hash": "469b6a4ccbd38b20234c7709cfa14637", - "profile": { - "height": "140", - "weight": "41", - "bust": "79", - "waist": "58", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "まごころメイド", - "alias_name_display": "まごころメイド", - "id": "3234201", - "hash": "5c67bd0d15b98bd30c121d41d898805d", - "profile": { - "height": "140", - "weight": "41", - "bust": "79", - "waist": "58", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "まごころメイド", - "alias_name_display": "まごころメイド", - "id": "3334202", - "hash": "a2a18aad6f03d8eff6eb539a3f7d1b63", - "profile": { - "height": "140", - "weight": "41", - "bust": "79", - "waist": "58", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "小さな英雄", - "alias_name_display": "小さな英雄", - "id": "3400401", - "hash": "abbbabfa5e9a819053742de3ca99ba21", - "profile": { - "height": "140", - "weight": "41", - "bust": "79", - "waist": "58", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "小さな英雄", - "alias_name_display": "小さな英雄", - "id": "3500402", - "hash": "91439894ec4fdaed270c83fc0e6d6dfb", - "profile": { - "height": "140", - "weight": "41", - "bust": "79", - "waist": "58", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ミンナノミカタ", - "alias_name_display": "ミンナノミカタ", - "id": "3415201", - "hash": "c9de774c074706e3b00f4c57bcaf19fb", - "profile": { - "height": "140", - "weight": "41", - "bust": "79", - "waist": "58", - "hip": "80" - }, - "event": [ - { - "event_id": 1103, - "event_name": "第3回プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "ミンナノミカタ", - "alias_name_display": "ミンナノミカタ", - "id": "3515202", - "hash": "bbcc7d08ecafb83fa87d6eb23346d512", - "profile": { - "height": "140", - "weight": "41", - "bust": "79", - "waist": "58", - "hip": "80" - }, - "event": [ - { - "event_id": 1103, - "event_name": "第3回プロダクション対抗トークバトルショー" - } - ] - }, - { - "alias_name": "無限大の夢", - "alias_name_display": "無限大の夢", - "id": "3430301", - "hash": "90704fe71aac46fb8a34b98a0d4dd7f4", - "profile": { - "height": "140", - "weight": "41", - "bust": "79", - "waist": "58", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "無限大の夢", - "alias_name_display": "無限大の夢", - "id": "3530302", - "hash": "a3697dced0815fc5f72fdbabdcc000ff", - "profile": { - "height": "140", - "weight": "41", - "bust": "79", - "waist": "58", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ジャスティスブレイズ", - "alias_name_display": "ジャスティスブレイズ", - "id": "3436101", - "hash": "afc890c6cbb5ba31bd2c0b60baa3fb15", - "profile": { - "height": "140", - "weight": "41", - "bust": "79", - "waist": "58", - "hip": "80" - }, - "event": [ - { - "event_id": "032", - "event_name": "第32回プロダクションマッチフェスティバル" - } - ] - }, - { - "alias_name": "ジャスティスブレイズ", - "alias_name_display": "ジャスティスブレイズ", - "id": "3536102", - "hash": "6cdda5b7a8549133166ba9eb9be99096", - "profile": { - "height": "140", - "weight": "41", - "bust": "79", - "waist": "58", - "hip": "80" - }, - "event": [ - { - "event_id": "032", - "event_name": "第32回プロダクションマッチフェスティバル" - } - ] - } - ], - "units": [ - { - "id": "46", - "name": "ヒーローヴァーサス" - }, - { - "id": "64", - "name": "リトルヒーロー" - }, - { - "id": "214", - "name": "L.M.B.G" - } - ] - }, - "199": { - "idol_id": 199, - "idol_name": "マスタートレーナー", - "idol_name_display": "マスタートレーナー", - "aliases": [ - { - "alias_name": null, - "alias_name_display": null, - "id": "3400501", - "hash": "24d5423d9fe8deb825e29b8a516d39de", - "profile": { - "height": "166", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "83" - }, - "event": [] - }, - { - "alias_name": "スペシャルテクニック", - "alias_name_display": "スペシャルテクニック", - "id": "3402401", - "hash": "e9c8869f89f20e106098b24f222d9769", - "profile": { - "height": "166", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "83" - }, - "event": [ - { - "event_id": 303, - "event_name": "アイドル強化合宿" - } - ] - }, - { - "alias_name": "地獄の特訓", - "alias_name_display": "地獄の特訓", - "id": "3412201", - "hash": "6681d3a0c30f354a44317608a1d68971", - "profile": { - "height": "166", - "weight": "45", - "bust": "82", - "waist": "56", - "hip": "83" - }, - "event": [] - } - ] - }, - "200": { - "idol_id": 200, - "idol_name": "イヴ・サンタクロース", - "idol_name_display": "イヴ・サンタクロース", - "aliases": [ - { - "alias_name": "ホーリーガール", - "alias_name_display": "ホーリーガール", - "id": "3229901", - "hash": "f8c5c2664ca76f4aa84b267300290d54", - "profile": { - "height": "165", - "weight": "44", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ホーリーガール", - "alias_name_display": "ホーリーガール", - "id": "3329902", - "hash": "b886108b5b598273662056ff15dc76cb", - "profile": { - "height": "165", - "weight": "44", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "聖夜の使者", - "alias_name_display": "聖夜の使者", - "id": "3400601", - "hash": "49f6fd4549adcb500dcc21d87297e5bb", - "profile": { - "height": "165", - "weight": "44", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 101, - "event_name": "星降るクリスマス" - } - ] - }, - { - "alias_name": "聖夜の使者", - "alias_name_display": "聖夜の使者", - "id": "3500602", - "hash": "106db7ae8a02839fbaac3658a11cf2b9", - "profile": { - "height": "165", - "weight": "44", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 101, - "event_name": "星降るクリスマス" - } - ] - }, - { - "alias_name": "渚のマーメイド", - "alias_name_display": "渚のマーメイド", - "id": "3402501", - "hash": "4aecdc034fc76ca31243603d3fdfbca8", - "profile": { - "height": "165", - "weight": "44", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "渚のマーメイド", - "alias_name_display": "渚のマーメイド", - "id": "3502502", - "hash": "c9d1b3f76a38a9e4b8897028c4430754", - "profile": { - "height": "165", - "weight": "44", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "温泉郷の救世主", - "alias_name_display": "温泉郷の救世主", - "id": "3406001", - "hash": "657a35f18d07f00a1dc67170ef05ca36", - "profile": { - "height": "165", - "weight": "44", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "温泉郷の救世主", - "alias_name_display": "温泉郷の救世主", - "id": "3506002", - "hash": "266483313283264643bb92cfdb9b520f", - "profile": { - "height": "165", - "weight": "44", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "ハッピーホーリーナイト", - "alias_name_display": "ハッピーホーリーナイト", - "id": "3410501", - "hash": "ead06a92514b67ede47e8b0ff2d7ec36", - "profile": { - "height": "165", - "weight": "44", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 1001, - "event_name": "プロダクション対抗ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ハッピーホーリーナイト", - "alias_name_display": "ハッピーホーリーナイト", - "id": "3510502", - "hash": "9aa5c47cb237eca12686c8310a9a1617", - "profile": { - "height": "165", - "weight": "44", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 1001, - "event_name": "プロダクション対抗ドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ふわふわホーリーナイト", - "alias_name_display": "ふわふわホーリーナイト", - "id": "3419901", - "hash": "13cd8e91ab44bed6a0eb3ad73ac98d55", - "profile": { - "height": "165", - "weight": "44", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 710, - "event_name": "サンタDEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "ふわふわホーリーナイト", - "alias_name_display": "ふわふわホーリーナイト", - "id": "3519902", - "hash": "86e560efafce2bd5b91d2da5fa9a9649", - "profile": { - "height": "165", - "weight": "44", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 710, - "event_name": "サンタDEドリームLIVEフェスティバル" - } - ] - }, - { - "alias_name": "マジカルホーリーナイト", - "alias_name_display": "マジカルホーリーナイト", - "id": "3428501", - "hash": "8700eb37ea90c08296384294dcba8f0b", - "profile": { - "height": "165", - "weight": "44", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 1208, - "event_name": "目指せサンタクロース アイドルチャレンジ" - } - ] - }, - { - "alias_name": "マジカルホーリーナイト", - "alias_name_display": "マジカルホーリーナイト", - "id": "3528502", - "hash": "b4157ceea09c89490bcefdf47e81f2c8", - "profile": { - "height": "165", - "weight": "44", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [ - { - "event_id": 1208, - "event_name": "目指せサンタクロース アイドルチャレンジ" - } - ] - }, - { - "alias_name": "幸せのお届け人", - "alias_name_display": "幸せのお届け人", - "id": "3436601", - "hash": "7b4c4efa720fb207fccb3a7161c73360", - "profile": { - "height": "165", - "weight": "44", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [] - }, - { - "alias_name": "幸せのお届け人", - "alias_name_display": "幸せのお届け人", - "id": "3536602", - "hash": "876fb43ce5ef639022ddf7ce233a859a", - "profile": { - "height": "165", - "weight": "44", - "bust": "81", - "waist": "56", - "hip": "80" - }, - "event": [] - } - ] - }, - "201": { - "idol_id": 201, - "idol_name": "日高愛", - "idol_name_display": "日高愛", - "aliases": [ - { - "alias_name": "ラブキュンバレンタイン", - "alias_name_display": "ラブキュンバレンタイン", - "id": "1232001", - "hash": "5b85ccd2e62127d71edeb18ca68a43b6", - "profile": { - "height": "149", - "weight": "40", - "bust": "78", - "waist": "55", - "hip": "79" - }, - "event": [ - { - "event_id": 1906, - "event_name": "ディアリースターハート ~ラブキュンバレンタイン~" - } - ] - }, - { - "alias_name": "ラブキュンバレンタイン", - "alias_name_display": "ラブキュンバレンタイン", - "id": "1332002", - "hash": "caa9df35d41ce022727122458d34a5b3", - "profile": { - "height": "149", - "weight": "40", - "bust": "78", - "waist": "55", - "hip": "79" - }, - "event": [ - { - "event_id": 1906, - "event_name": "ディアリースターハート ~ラブキュンバレンタイン~" - } - ] - }, - { - "alias_name": "夜桜奇譚", - "alias_name_display": "夜桜奇譚", - "id": "1232701", - "hash": "c3dc039dbb8e4e3b2ea2ce70dcc0279a", - "profile": { - "height": "149", - "weight": "40", - "bust": "78", - "waist": "55", - "hip": "79" - }, - "event": [ - { - "event_id": 1907, - "event_name": "ディアリースタークエスト ~夜桜奇譚~" - } - ] - }, - { - "alias_name": "夜桜奇譚", - "alias_name_display": "夜桜奇譚", - "id": "1332702", - "hash": "acb21dca7cfc523e0a041f32c92f0c8e", - "profile": { - "height": "149", - "weight": "40", - "bust": "78", - "waist": "55", - "hip": "79" - }, - "event": [ - { - "event_id": 1907, - "event_name": "ディアリースタークエスト ~夜桜奇譚~" - } - ] - }, - { - "alias_name": "聖夜のキセキ", - "alias_name_display": "聖夜のキセキ", - "id": "1437201", - "hash": "4270223bf3b0fa1fe9ad07050b397f65", - "profile": { - "height": "149", - "weight": "40", - "bust": "78", - "waist": "55", - "hip": "79" - }, - "event": [ - { - "event_id": 1905, - "event_name": "ディアリースターナイト ~聖夜のキセキ~" - } - ] - }, - { - "alias_name": "聖夜のキセキ", - "alias_name_display": "聖夜のキセキ", - "id": "1537202", - "hash": "e39015d925db23fa7c4a5fbfeaf09534", - "profile": { - "height": "149", - "weight": "40", - "bust": "78", - "waist": "55", - "hip": "79" - }, - "event": [ - { - "event_id": 1905, - "event_name": "ディアリースターナイト ~聖夜のキセキ~" - } - ] - } - ] - }, - "202": { - "idol_id": 202, - "idol_name": "水谷絵理", - "idol_name_display": "水谷絵理", - "aliases": [ - { - "alias_name": "聖夜のキセキ", - "alias_name_display": "聖夜のキセキ", - "id": "2229601", - "hash": "addeb97fac43f59ea040b91102e7a6fd", - "profile": { - "height": "152", - "weight": "36", - "bust": "82", - "waist": "53", - "hip": "76" - }, - "event": [ - { - "event_id": 1905, - "event_name": "ディアリースターナイト ~聖夜のキセキ~" - } - ] - }, - { - "alias_name": "聖夜のキセキ", - "alias_name_display": "聖夜のキセキ", - "id": "2329602", - "hash": "4ff1e97c188a31e681f47940481fd2e4", - "profile": { - "height": "152", - "weight": "36", - "bust": "82", - "waist": "53", - "hip": "76" - }, - "event": [ - { - "event_id": 1905, - "event_name": "ディアリースターナイト ~聖夜のキセキ~" - } - ] - }, - { - "alias_name": "ラブキュンバレンタイン", - "alias_name_display": "ラブキュンバレンタイン", - "id": "2230501", - "hash": "e9e3e22a50cb40f14e8af378610d8827", - "profile": { - "height": "152", - "weight": "36", - "bust": "82", - "waist": "53", - "hip": "76" - }, - "event": [ - { - "event_id": 1906, - "event_name": "ディアリースターハート ~ラブキュンバレンタイン~" - } - ] - }, - { - "alias_name": "ラブキュンバレンタイン", - "alias_name_display": "ラブキュンバレンタイン", - "id": "2330502", - "hash": "70927bba624b93645c5e3d510c8efa69", - "profile": { - "height": "152", - "weight": "36", - "bust": "82", - "waist": "53", - "hip": "76" - }, - "event": [ - { - "event_id": 1906, - "event_name": "ディアリースターハート ~ラブキュンバレンタイン~" - } - ] - }, - { - "alias_name": "夜桜奇譚", - "alias_name_display": "夜桜奇譚", - "id": "2439301", - "hash": "7ad6bd146fe2c0a9d7f4d1d70e85339a", - "profile": { - "height": "152", - "weight": "36", - "bust": "82", - "waist": "53", - "hip": "76" - }, - "event": [ - { - "event_id": 1907, - "event_name": "ディアリースタークエスト ~夜桜奇譚~" - } - ] - }, - { - "alias_name": "夜桜奇譚", - "alias_name_display": "夜桜奇譚", - "id": "2539302", - "hash": "2c578bcb320f60bfd692e097bff03291", - "profile": { - "height": "152", - "weight": "36", - "bust": "82", - "waist": "53", - "hip": "76" - }, - "event": [ - { - "event_id": 1907, - "event_name": "ディアリースタークエスト ~夜桜奇譚~" - } - ] - } - ] - }, - "203": { - "idol_id": 203, - "idol_name": "秋月涼", - "idol_name_display": "秋月涼", - "aliases": [ - { - "alias_name": "聖夜のキセキ", - "alias_name_display": "聖夜のキセキ", - "id": "3231901", - "hash": "74bfb36578411126f56d04baeb48212d", - "profile": { - "height": "162", - "weight": "54", - "bust": "80", - "waist": "59", - "hip": "80" - }, - "event": [ - { - "event_id": 1905, - "event_name": "ディアリースターナイト ~聖夜のキセキ~" - } - ] - }, - { - "alias_name": "聖夜のキセキ", - "alias_name_display": "聖夜のキセキ", - "id": "3331902", - "hash": "c79b5a90e44cbca6c6b31c566e8b0878", - "profile": { - "height": "162", - "weight": "54", - "bust": "80", - "waist": "59", - "hip": "80" - }, - "event": [ - { - "event_id": 1905, - "event_name": "ディアリースターナイト ~聖夜のキセキ~" - } - ] - }, - { - "alias_name": "夜桜奇譚", - "alias_name_display": "夜桜奇譚", - "id": "3233901", - "hash": "8528eab7689a81e088cc8b537a7308b3", - "profile": { - "height": "162", - "weight": "54", - "bust": "80", - "waist": "59", - "hip": "80" - }, - "event": [ - { - "event_id": 1907, - "event_name": "ディアリースタークエスト ~夜桜奇譚~" - } - ] - }, - { - "alias_name": "夜桜奇譚", - "alias_name_display": "夜桜奇譚", - "id": "3333902", - "hash": "9ec1db535f6c5277ab50ffd22d33953c", - "profile": { - "height": "162", - "weight": "54", - "bust": "80", - "waist": "59", - "hip": "80" - }, - "event": [ - { - "event_id": 1907, - "event_name": "ディアリースタークエスト ~夜桜奇譚~" - } - ] - }, - { - "alias_name": "ラブキュンバレンタイン", - "alias_name_display": "ラブキュンバレンタイン", - "id": "3438101", - "hash": "3b618f0273fecf8b47e9c4b5fd9366a4", - "profile": { - "height": "162", - "weight": "54", - "bust": "80", - "waist": "59", - "hip": "80" - }, - "event": [ - { - "event_id": 1906, - "event_name": "ディアリースターハート ~ラブキュンバレンタイン~" - } - ] - }, - { - "alias_name": "ラブキュンバレンタイン", - "alias_name_display": "ラブキュンバレンタイン", - "id": "3538102", - "hash": "cb10db1e0bcf18c7ae8b49edee29eea2", - "profile": { - "height": "162", - "weight": "54", - "bust": "80", - "waist": "59", - "hip": "80" - }, - "event": [ - { - "event_id": 1906, - "event_name": "ディアリースターハート ~ラブキュンバレンタイン~" - } - ] - } - ] - } - } - } -} \ No newline at end of file From 0755bec74f97cf98b3b1ec8c453894ffda64f6f4 Mon Sep 17 00:00:00 2001 From: ne-peer Date: Tue, 5 Dec 2017 15:04:05 +0900 Subject: [PATCH 10/19] [update] sldb-card into overview --- .../db/master/core/dere_overview-export.json | 3444 +++++++++++------ 1 file changed, 2225 insertions(+), 1219 deletions(-) diff --git a/resource/db/master/core/dere_overview-export.json b/resource/db/master/core/dere_overview-export.json index cda0b8c..f1f2baa 100644 --- a/resource/db/master/core/dere_overview-export.json +++ b/resource/db/master/core/dere_overview-export.json @@ -1,1220 +1,2226 @@ { - "アナスタシア" : { - "id" : "127", - "kana" : "あなすたしあ", - "latest_hash" : "c0e1d6f4481ba3fabd64f9c6c9675156", - "name" : "アナスタシア" - }, - "イヴ・サンタクロース" : { - "id" : "200", - "kana" : "いヴ・さんたくろーす", - "latest_hash" : "876fb43ce5ef639022ddf7ce233a859a", - "name" : "イヴ・サンタクロース" - }, - "キャシー・グラハム" : { - "id" : "190", - "kana" : "きゃしー・ぐらはむ", - "latest_hash" : "7257d04c6b64058492bc0279c5b1da20", - "name" : "キャシー・グラハム" - }, - "クラリス" : { - "id" : "58", - "kana" : "くらりす", - "latest_hash" : "982a1fa17a690105cf07772a7d5bc5a4", - "name" : "クラリス" - }, - "ケイト" : { - "id" : "102", - "kana" : "けいと", - "latest_hash" : "e931ed75eb91bcd9735bc590a92c07d6", - "name" : "ケイト" - }, - "トレーナー" : { - "id" : "148", - "kana" : "とれーなー", - "latest_hash" : "35298581105317744d50303a73e59816", - "name" : "トレーナー" - }, - "ナターリア" : { - "id" : "173", - "kana" : "なたーりあ", - "latest_hash" : "6dc2df6837dff054aaaf63c93f92256b", - "name" : "ナターリア" - }, - "ヘレン" : { - "id" : "93", - "kana" : "へれん", - "latest_hash" : "cc0698a6cf2cb1334013fe8b8ade9708", - "name" : "ヘレン" - }, - "ベテラントレーナー" : { - "id" : "182", - "kana" : "べてらんとれーなー", - "latest_hash" : "313b271eddfdc8c9d223cfc16fc55eb9", - "name" : "ベテラントレーナー" - }, - "マスタートレーナー" : { - "id" : "199", - "kana" : "ますたーとれーなー", - "latest_hash" : "6681d3a0c30f354a44317608a1d68971", - "name" : "マスタートレーナー" - }, - "メアリー・コクラン" : { - "id" : "187", - "kana" : "めありー・こくらん", - "latest_hash" : "cda5c513974a4e22bdafa7fb7e662c56", - "name" : "メアリー・コクラン" - }, - "ライラ" : { - "id" : "91", - "kana" : "らいら", - "latest_hash" : "d5736287d3ece82c8ab060128aeceaeb", - "name" : "ライラ" - }, - "ルーキートレーナー" : { - "id" : "152", - "kana" : "るーきーとれーなー", - "latest_hash" : "36e37884b950605dc92c789b5b270b37", - "name" : "ルーキートレーナー" - }, - "一ノ瀬志希" : { - "id" : "26", - "kana" : "いちのせこころざしのぞみ", - "latest_hash" : "bb156a253fc247462a87b20eee8770f5", - "name" : "一ノ瀬志希" - }, - "三好紗南" : { - "id" : "189", - "kana" : "みよしさな", - "latest_hash" : "5caedbb13727f0afdd234d8e73a40a32", - "name" : "三好紗南" - }, - "三村かな子" : { - "id" : "8", - "kana" : "みむらかなこ", - "latest_hash" : "c8c44f8080c9c5fe57633092232f5dee", - "name" : "三村かな子" - }, - "三浦あずさ" : { - "id" : "107", - "kana" : "みうらあずさ", - "latest_hash" : "035141c2768cddbab1153b2dcbcb3013", - "name" : "三浦あずさ" - }, - "三船美優" : { - "id" : "81", - "kana" : "みふねみゅう", - "latest_hash" : "be6c919489145ab6fcf4735fccad0f5c", - "name" : "三船美優" - }, - "上条春菜" : { - "id" : "75", - "kana" : "かみじょうはるな", - "latest_hash" : "895adb42cedd503a357282110c7c92c9", - "name" : "上条春菜" - }, - "上田鈴帆" : { - "id" : "150", - "kana" : "うえだすずほ", - "latest_hash" : "ddf643f7944b7f55b9867bb33c17e9c6", - "name" : "上田鈴帆" - }, - "並木芽衣子" : { - "id" : "136", - "kana" : "なみきめいこ", - "latest_hash" : "9a07422c4498c97ae7b7a9d9117fe9fd", - "name" : "並木芽衣子" - }, - "中野有香" : { - "id" : "2", - "kana" : "なかのゆか", - "latest_hash" : "b1976493a44373a42a7087ea012da84a", - "name" : "中野有香" - }, - "丹羽仁美" : { - "id" : "40", - "kana" : "にわひとみ", - "latest_hash" : "9392cd6501637b7e2d621e7459fc742f", - "name" : "丹羽仁美" - }, - "乙倉悠貴" : { - "id" : "64", - "kana" : "おつくらゆき", - "latest_hash" : "ad1d9695914de9d5464ffe838872530f", - "name" : "乙倉悠貴" - }, - "二宮飛鳥" : { - "id" : "130", - "kana" : "にのみやあすか", - "latest_hash" : "3f93733e01fed8506d57f0c5894586f6", - "name" : "二宮飛鳥" - }, - "五十嵐響子" : { - "id" : "13", - "kana" : "いがらしきょうこ", - "latest_hash" : "0bacaa88e323666ac8790a16a2ac46ee", - "name" : "五十嵐響子" - }, - "井村雪菜" : { - "id" : "47", - "kana" : "いむらゆきな", - "latest_hash" : "9394a74e8344967cbf42eb20eae12ab5", - "name" : "井村雪菜" - }, - "今井加奈" : { - "id" : "6", - "kana" : "いまいかな", - "latest_hash" : "2ed07d073761b8d9b26106a1bebea34a", - "name" : "今井加奈" - }, - "仙崎恵磨" : { - "id" : "169", - "kana" : "せんざきめぐみま", - "latest_hash" : "1ee716e4411265ade87048be92422d1d", - "name" : "仙崎恵磨" - }, - "伊集院惠" : { - "id" : "99", - "kana" : "いじゅういんめぐみ", - "latest_hash" : "2b04d07128e9d3935b7505599d21f522", - "name" : "伊集院惠" - }, - "佐々木千枝" : { - "id" : "80", - "kana" : "ささきちえ", - "latest_hash" : "54022827f6129503d2444697e275e075", - "name" : "佐々木千枝" - }, - "佐久間まゆ" : { - "id" : "59", - "kana" : "さくままゆ", - "latest_hash" : "992e3ae2a449f25bc4678f9bde5e327d", - "name" : "佐久間まゆ" - }, - "佐城雪美" : { - "id" : "105", - "kana" : "さじょうゆきみ", - "latest_hash" : "674f4cb361e967bca336653539ed6613", - "name" : "佐城雪美" - }, - "佐藤心" : { - "id" : "197", - "kana" : "さとうしん", - "latest_hash" : "00a73075d65a7d0c56ceef9dd11c7a06", - "name" : "佐藤心" - }, - "依田芳乃" : { - "id" : "162", - "kana" : "よだよしの", - "latest_hash" : "86045c8c5c85b81aa51156dbcdb0e1a5", - "name" : "依田芳乃" - }, - "八神マキノ" : { - "id" : "90", - "kana" : "やがみまきの", - "latest_hash" : "615b301570633d1f4eeb36d15fa9c890", - "name" : "八神マキノ" - }, - "兵藤レナ" : { - "id" : "39", - "kana" : "ひょうどうれな", - "latest_hash" : "9cf74ba99862e8a7d52677bca5e48c3b", - "name" : "兵藤レナ" - }, - "冴島清美" : { - "id" : "196", - "kana" : "さえじまきよみ", - "latest_hash" : "d6be32a4312ef65e6697fbd4da5b3926", - "name" : "冴島清美" - }, - "前川みく" : { - "id" : "27", - "kana" : "まえかわみく", - "latest_hash" : "e863deaf923d0239d7d118503386c7c4", - "name" : "前川みく" - }, - "北川真尋" : { - "id" : "186", - "kana" : "きたがわまひろ", - "latest_hash" : "b24f3818f1e1073ea376f64f62004d15", - "name" : "北川真尋" - }, - "北条加蓮" : { - "id" : "101", - "kana" : "ほうじょうかれん", - "latest_hash" : "846cbe9ab87264c80ab22de8776c78a9", - "name" : "北条加蓮" - }, - "十時愛梨" : { - "id" : "172", - "kana" : "とときえり", - "latest_hash" : "36516e31833083116be887f5b74985ab", - "name" : "十時愛梨" - }, - "南条光" : { - "id" : "198", - "kana" : "なんじょうひかり", - "latest_hash" : "6cdda5b7a8549133166ba9eb9be99096", - "name" : "南条光" - }, - "原田美世" : { - "id" : "65", - "kana" : "はらだみせい", - "latest_hash" : "1be46e70f136716b759b15340806be70", - "name" : "原田美世" - }, - "及川雫" : { - "id" : "153", - "kana" : "おいかわしずく", - "latest_hash" : "8f67ec464f14c69c9abff99d4e5c4eae", - "name" : "及川雫" - }, - "双海亜美" : { - "id" : "177", - "kana" : "ふたみあみ", - "latest_hash" : "d604961da03fd554556bf5ec24eae13a", - "name" : "双海亜美" - }, - "双海真美" : { - "id" : "178", - "kana" : "ふたみまみ", - "latest_hash" : "7174c14b3213a89f45cc5375eb1fff5a", - "name" : "双海真美" - }, - "双葉杏" : { - "id" : "34", - "kana" : "ふたばあんず", - "latest_hash" : "458454502049072b7c4f264362088614", - "name" : "双葉杏" - }, - "古澤頼子" : { - "id" : "87", - "kana" : "ふるさわよりこ", - "latest_hash" : "0fdb985e97611cb4df916563d6e7a27b", - "name" : "古澤頼子" - }, - "古賀小春" : { - "id" : "57", - "kana" : "こがこはる", - "latest_hash" : "50a0bb6a83031685c407e03c4bd7d5b1", - "name" : "古賀小春" - }, - "吉岡沙紀" : { - "id" : "112", - "kana" : "よしおかさき", - "latest_hash" : "c3a21b688770def90cda930429d9d580", - "name" : "吉岡沙紀" - }, - "向井拓海" : { - "id" : "180", - "kana" : "むかいたくみ", - "latest_hash" : "2198eb80f3fc029ca19d09a514a66a30", - "name" : "向井拓海" - }, - "和久井留美" : { - "id" : "111", - "kana" : "わくいるみ", - "latest_hash" : "303643dbb839ee0d48bfb7def91c193f", - "name" : "和久井留美" - }, - "喜多日菜子" : { - "id" : "184", - "kana" : "きたひなこ", - "latest_hash" : "2b84984d9d6c5a8c0520fe96a7ba45d6", - "name" : "喜多日菜子" - }, - "喜多見柚" : { - "id" : "149", - "kana" : "きたみゆ", - "latest_hash" : "d2f0b1423a844ac537fa255c1e383b22", - "name" : "喜多見柚" - }, - "四条貴音" : { - "id" : "109", - "kana" : "しじょうたかね", - "latest_hash" : "166fb623aae4d975387c3fbc8770a099", - "name" : "四条貴音" - }, - "土屋亜子" : { - "id" : "194", - "kana" : "つちやあこ", - "latest_hash" : "bd055ba043dc7166491f48b3587b1984", - "name" : "土屋亜子" - }, - "城ヶ崎美嘉" : { - "id" : "167", - "kana" : "じょうがさきみか", - "latest_hash" : "062f663090a8424fca1a20133b774120", - "name" : "城ヶ崎美嘉" - }, - "城ヶ崎莉嘉" : { - "id" : "168", - "kana" : "じょうがさきりか", - "latest_hash" : "2c6f68904c5e8c886b60fcc1c01682df", - "name" : "城ヶ崎莉嘉" - }, - "堀裕子" : { - "id" : "158", - "kana" : "ほりゆうこ", - "latest_hash" : "64bfd146a17bcae9c53f47b939d3199a", - "name" : "堀裕子" - }, - "塩見周子" : { - "id" : "120", - "kana" : "しおみしゅうこ", - "latest_hash" : "e02867846f13e03eb619cb5e9bddae89", - "name" : "塩見周子" - }, - "多田李衣菜" : { - "id" : "78", - "kana" : "ただりいな", - "latest_hash" : "4a688e97246cf40a0e8850db9199e694", - "name" : "多田李衣菜" - }, - "大原みちる" : { - "id" : "23", - "kana" : "おおはらみちる", - "latest_hash" : "6982bf46c7bfa21df65e8b12044e9555", - "name" : "大原みちる" - }, - "大和亜季" : { - "id" : "128", - "kana" : "やまとあき", - "latest_hash" : "3fd70cf35e090606cfb1d891b35fb013", - "name" : "大和亜季" - }, - "大槻唯" : { - "id" : "146", - "kana" : "おおつきゆい", - "latest_hash" : "3989619894f357d64debb55929ca0edc", - "name" : "大槻唯" - }, - "大沼くるみ" : { - "id" : "25", - "kana" : "おおぬまくるみ", - "latest_hash" : "d76492cb5a1cc1202e993013da0e48cd", - "name" : "大沼くるみ" - }, - "大石泉" : { - "id" : "124", - "kana" : "おおいしいずみ", - "latest_hash" : "ea24d74d3d4603863842d1464a3f82dd", - "name" : "大石泉" - }, - "大西由里子" : { - "id" : "53", - "kana" : "おおにしゆりこ", - "latest_hash" : "493a01e58a43693352fd7343e3987069", - "name" : "大西由里子" - }, - "天海春香" : { - "id" : "46", - "kana" : "あまみはるか", - "latest_hash" : "eb10c4da293f3f132f146989bd997f64", - "name" : "天海春香" - }, - "太田優" : { - "id" : "20", - "kana" : "おおたゆう", - "latest_hash" : "2763a2afd43cf1d265c968e8a9711692", - "name" : "太田優" - }, - "奥山沙織" : { - "id" : "9", - "kana" : "おくやまさおり", - "latest_hash" : "d5524d87d135dae077956ca332579a7e", - "name" : "奥山沙織" - }, - "如月千早" : { - "id" : "106", - "kana" : "きさらぎちはや", - "latest_hash" : "dfe34529a4dc472ca44c6ad923e44b5b", - "name" : "如月千早" - }, - "姫川友紀" : { - "id" : "147", - "kana" : "ひめかわゆき", - "latest_hash" : "85688ae1cb65177f8acc8c407901267b", - "name" : "姫川友紀" - }, - "安斎都" : { - "id" : "51", - "kana" : "あんざいみやこ", - "latest_hash" : "0da70e0edc3ce8b0d0fcf9caf198d7d6", - "name" : "安斎都" - }, - "安部菜々" : { - "id" : "54", - "kana" : "あべさい々", - "latest_hash" : "4646da2024bcd18a3334ba0c06a7770d", - "name" : "安部菜々" - }, - "宮本フレデリカ" : { - "id" : "31", - "kana" : "みやもとふれでりか", - "latest_hash" : "09346bd07794d16a01ebdf62ea8fd570", - "name" : "宮本フレデリカ" - }, - "小室千奈美" : { - "id" : "95", - "kana" : "こむろちなみ", - "latest_hash" : "5adfeb655cf51c970156064c22dfb037", - "name" : "小室千奈美" - }, - "小日向美穂" : { - "id" : "11", - "kana" : "おびなたみほ", - "latest_hash" : "6c7bab6998ae7b616fc1598308ba201b", - "name" : "小日向美穂" - }, - "小早川紗枝" : { - "id" : "32", - "kana" : "こばやかわさえ", - "latest_hash" : "76301262a0d6d164f8d35b6148bc96cb", - "name" : "小早川紗枝" - }, - "小松伊吹" : { - "id" : "188", - "kana" : "こまついぶき", - "latest_hash" : "74726c9cfa072e384c992e8d8bde9ff9", - "name" : "小松伊吹" - }, - "小関麗奈" : { - "id" : "154", - "kana" : "こせきれな", - "latest_hash" : "f6119202da4cb7287258017f533e28a7", - "name" : "小関麗奈" - }, - "岡崎泰葉" : { - "id" : "122", - "kana" : "おかざきやすは", - "latest_hash" : "4753beff820055994390f5d38cd6c31e", - "name" : "岡崎泰葉" - }, - "岸部彩華" : { - "id" : "115", - "kana" : "きしべいろは", - "latest_hash" : "2c67e5e41d85f043ffc99b92a4873ae1", - "name" : "岸部彩華" - }, - "島村卯月" : { - "id" : "1", - "kana" : "しまむらうづき", - "latest_hash" : "1338de950f95214e111dad2943f191c8", - "name" : "島村卯月" - }, - "川島瑞樹" : { - "id" : "73", - "kana" : "かわしまみずき", - "latest_hash" : "f8290c4530003b664115639282feddd3", - "name" : "川島瑞樹" - }, - "工藤忍" : { - "id" : "55", - "kana" : "くどうしのぶ", - "latest_hash" : "dd3cbc7d99d27b18163a05c94d5fcbd1", - "name" : "工藤忍" - }, - "市原仁奈" : { - "id" : "183", - "kana" : "いちはらひとしな", - "latest_hash" : "f8e4f10ef977349e598b44f6ca5f0141", - "name" : "市原仁奈" - }, - "愛野渚" : { - "id" : "144", - "kana" : "あいのなぎさ", - "latest_hash" : "b3c0ab815b7dae87ea9a636433655d89", - "name" : "愛野渚" - }, - "成宮由愛" : { - "id" : "118", - "kana" : "なるみやゆめ", - "latest_hash" : "3a91b3c21892380bf9febb395bf4baa5", - "name" : "成宮由愛" - }, - "我那覇響" : { - "id" : "44", - "kana" : "がなはひびき", - "latest_hash" : "c5e1fe7ef2b387eb27a9adbb9d9dfa6c", - "name" : "我那覇響" - }, - "持田亜里沙" : { - "id" : "7", - "kana" : "もちだありさ", - "latest_hash" : "baf115536838f243cc9a52df9853fb22", - "name" : "持田亜里沙" - }, - "斉藤洋子" : { - "id" : "140", - "kana" : "さいとうようこ", - "latest_hash" : "1013f20a456ce20449239b3e587bb424", - "name" : "斉藤洋子" - }, - "新田美波" : { - "id" : "85", - "kana" : "にったみなみ", - "latest_hash" : "05967e0044c4828455e8547b98df1d06", - "name" : "新田美波" - }, - "日下部若葉" : { - "id" : "48", - "kana" : "くさかべわかば", - "latest_hash" : "16b3f7c98071fcc566c63e350f6d6755", - "name" : "日下部若葉" - }, - "日野茜" : { - "id" : "170", - "kana" : "ひのあかね", - "latest_hash" : "9c04faffee708181d50dca5884d3fb1e", - "name" : "日野茜" - }, - "日高愛" : { - "id" : "201", - "kana" : "ひだかあい", - "latest_hash" : "e39015d925db23fa7c4a5fbfeaf09534", - "name" : "日高愛" - }, - "早坂美玲" : { - "id" : "62", - "kana" : "はやさかみれい", - "latest_hash" : "1aea545811f830d6c6baad2453571a96", - "name" : "早坂美玲" - }, - "星井美希" : { - "id" : "179", - "kana" : "ほしいみき", - "latest_hash" : "c504c5f878ac85da8d9ccb70ef44fbe4", - "name" : "星井美希" - }, - "星輝子" : { - "id" : "156", - "kana" : "ほしてるこ", - "latest_hash" : "22aced971fa5898c838516e6f15fe27d", - "name" : "星輝子" - }, - "月宮雅" : { - "id" : "38", - "kana" : "つきみやまさし", - "latest_hash" : "ea6ea7bc7bb994ee3f40bf04f6126ec8", - "name" : "月宮雅" - }, - "有浦柑奈" : { - "id" : "63", - "kana" : "ゆううらかんな", - "latest_hash" : "23ad85825d08c2b01758a0a95eee45d2", - "name" : "有浦柑奈" - }, - "服部瞳子" : { - "id" : "82", - "kana" : "はっとりとうこ", - "latest_hash" : "8c428918c3def67003cdb73be7eb1b85", - "name" : "服部瞳子" - }, - "望月聖" : { - "id" : "132", - "kana" : "もちづききよし", - "latest_hash" : "3e6deec005701d78f54d7108ff35df41", - "name" : "望月聖" - }, - "木場真奈美" : { - "id" : "83", - "kana" : "こばまなみ", - "latest_hash" : "a53f598eea9637e74b08e76c96d18d4b", - "name" : "木場真奈美" - }, - "木村夏樹" : { - "id" : "138", - "kana" : "きむらなつき", - "latest_hash" : "f3a9f6ffd1b7e0ed7bad2d27cb3604af", - "name" : "木村夏樹" - }, - "本田未央" : { - "id" : "134", - "kana" : "ほんだみお", - "latest_hash" : "fdda617ed4a59a8d1127c50336535a52", - "name" : "本田未央" - }, - "杉坂海" : { - "id" : "185", - "kana" : "すぎさかうみ", - "latest_hash" : "26a0294ebbd82d18425173f46b4d8860", - "name" : "杉坂海" - }, - "村上巴" : { - "id" : "193", - "kana" : "むらかみともえ", - "latest_hash" : "1c6ff2bbe0458219764965de70302d56", - "name" : "村上巴" - }, - "村松さくら" : { - "id" : "60", - "kana" : "むらまつさくら", - "latest_hash" : "f3a647752b0e6c8f4d4938a2a5bbd308", - "name" : "村松さくら" - }, - "東郷あい" : { - "id" : "77", - "kana" : "とうごうあい", - "latest_hash" : "18587c946f96cd9c273730176ecbcec8", - "name" : "東郷あい" - }, - "松原早耶" : { - "id" : "29", - "kana" : "まつばらさや", - "latest_hash" : "eab519121d4491eb02a6ba19010da935", - "name" : "松原早耶" - }, - "松尾千鶴" : { - "id" : "125", - "kana" : "まつおちづる", - "latest_hash" : "49313322c5fd3c9bed6e752b20b7dcd9", - "name" : "松尾千鶴" - }, - "松山久美子" : { - "id" : "139", - "kana" : "まつやまくみこ", - "latest_hash" : "e23409154c61e745d3e92fe075d8d7e8", - "name" : "松山久美子" - }, - "松本沙理奈" : { - "id" : "69", - "kana" : "まつもとさりな", - "latest_hash" : "2e3a40d67d49dc6574282976c7ede024", - "name" : "松本沙理奈" - }, - "松永涼" : { - "id" : "94", - "kana" : "まつながりょう", - "latest_hash" : "7c6d691dff4f6353fdf2ab67ccea3e35", - "name" : "松永涼" - }, - "柊志乃" : { - "id" : "100", - "kana" : "ひいらぎしの", - "latest_hash" : "eebf9cbe74825c11552fc61be114e2cc", - "name" : "柊志乃" - }, - "柳清良" : { - "id" : "45", - "kana" : "やなぎきよしりょう", - "latest_hash" : "5889d8f072f2fac046d4e3b55e2ac4ce", - "name" : "柳清良" - }, - "柳瀬美由紀" : { - "id" : "14", - "kana" : "やなせみゆき", - "latest_hash" : "12c2c842a331db791b909c0003a105ba", - "name" : "柳瀬美由紀" - }, - "栗原ネネ" : { - "id" : "56", - "kana" : "くりはらねね", - "latest_hash" : "7a9fe2cd8a14757af1ce02c24ab770e4", - "name" : "栗原ネネ" - }, - "桃井あずき" : { - "id" : "36", - "kana" : "ももいあずき", - "latest_hash" : "cf166d5c57c0446980b7393d66318f22", - "name" : "桃井あずき" - }, - "桐生つかさ" : { - "id" : "131", - "kana" : "きりゅうつかさ", - "latest_hash" : "bf5c1105baa37c752c0733f015513f75", - "name" : "桐生つかさ" - }, - "桐野アヤ" : { - "id" : "70", - "kana" : "きりのあや", - "latest_hash" : "81fd47cf40cbfb59f9dc779f0b2e6258", - "name" : "桐野アヤ" - }, - "梅木音葉" : { - "id" : "113", - "kana" : "うめきおとは", - "latest_hash" : "725a7367f2c8c08fa9f88fb14c58786a", - "name" : "梅木音葉" - }, - "棟方愛海" : { - "id" : "21", - "kana" : "むなかたあいうみ", - "latest_hash" : "6266ac4f14b93b3859953ec5f6e94cb4", - "name" : "棟方愛海" - }, - "森久保乃々" : { - "id" : "126", - "kana" : "もりくぼの々", - "latest_hash" : "323901218db4adb11070ca80dbaa2339", - "name" : "森久保乃々" - }, - "椎名法子" : { - "id" : "5", - "kana" : "しいなのりこ", - "latest_hash" : "6e42fd90357609b6d27c0afa237f117b", - "name" : "椎名法子" - }, - "楊菲菲" : { - "id" : "35", - "kana" : "よううすうす", - "latest_hash" : "6f2cef2655f476d2f3f6ea80d8f481ec", - "name" : "楊菲菲" - }, - "榊原里美" : { - "id" : "49", - "kana" : "さかきばらさとみ", - "latest_hash" : "f5513ccc6e9fbd159a8a1c770341ca42", - "name" : "榊原里美" - }, - "槙原志保" : { - "id" : "175", - "kana" : "まきはらしほ", - "latest_hash" : "fdce336ae18237fdf6e8811aa42d5444", - "name" : "槙原志保" - }, - "横山千佳" : { - "id" : "18", - "kana" : "よこやまちか", - "latest_hash" : "d02199911575371c301fa3f8d1f937fe", - "name" : "横山千佳" - }, - "橘ありす" : { - "id" : "88", - "kana" : "たちばなありす", - "latest_hash" : "abfa3a0acdc184e3339b139c308eef21", - "name" : "橘ありす" - }, - "櫻井桃華" : { - "id" : "15", - "kana" : "さくらいももか", - "latest_hash" : "d32d219a3c0ad6dc84734d1fc3f9f94e", - "name" : "櫻井桃華" - }, - "氏家むつみ" : { - "id" : "116", - "kana" : "うじいえむつみ", - "latest_hash" : "b0a88d8ab733b0a8b4603a9ed1905b9a", - "name" : "氏家むつみ" - }, - "水木聖來" : { - "id" : "79", - "kana" : "みずきせいら", - "latest_hash" : "ba06248f504e77b5b221773f218ea8a2", - "name" : "水木聖來" - }, - "水本ゆかり" : { - "id" : "3", - "kana" : "みずもとゆかり", - "latest_hash" : "0ae0b50138bbf05741509420d5324943", - "name" : "水本ゆかり" - }, - "水瀬伊織" : { - "id" : "181", - "kana" : "みなせいおり", - "latest_hash" : "933333b6f15c88a6e8564a2dee2f125a", - "name" : "水瀬伊織" - }, - "水谷絵理" : { - "id" : "202", - "kana" : "みずたにえり", - "latest_hash" : "2c578bcb320f60bfd692e097bff03291", - "name" : "水谷絵理" - }, - "水野翠" : { - "id" : "86", - "kana" : "みずのみどり", - "latest_hash" : "cff720f0338a7ae16dc936a802809a2f", - "name" : "水野翠" - }, - "江上椿" : { - "id" : "16", - "kana" : "えがみつばき", - "latest_hash" : "beba5121254d967e0be4895fbe2fac3c", - "name" : "江上椿" - }, - "池袋晶葉" : { - "id" : "66", - "kana" : "いけぶくろあきらよう", - "latest_hash" : "f14270b8f9920a77b665767587d06b48", - "name" : "池袋晶葉" - }, - "沢田麻理菜" : { - "id" : "141", - "kana" : "さわだまりな", - "latest_hash" : "1714cda17ded0f8215ee4c0f217a2c91", - "name" : "沢田麻理菜" - }, - "浅利七海" : { - "id" : "92", - "kana" : "あさりななうみ", - "latest_hash" : "3680d1991b44b9d38b902639964525ed", - "name" : "浅利七海" - }, - "浅野風香" : { - "id" : "52", - "kana" : "あさのふうかおる", - "latest_hash" : "3e11cdda3fb461943a95a243ccb16db8", - "name" : "浅野風香" - }, - "浜口あやめ" : { - "id" : "192", - "kana" : "はまぐちあやめ", - "latest_hash" : "fc4b0d7524dab986a0d4a97f5eab93ff", - "name" : "浜口あやめ" - }, - "浜川愛結奈" : { - "id" : "165", - "kana" : "はまかわあいゆいな", - "latest_hash" : "aa9f7f62858b8a7afc5bf79a5d8bb989", - "name" : "浜川愛結奈" - }, - "海老原菜帆" : { - "id" : "151", - "kana" : "えびはらなほ", - "latest_hash" : "f918315bf0b28276e87d685d545c8145", - "name" : "海老原菜帆" - }, - "涼宮星花" : { - "id" : "37", - "kana" : "すずみやせいか", - "latest_hash" : "a27419ca801cfd72eb2a724f82cdaf55", - "name" : "涼宮星花" - }, - "渋谷凛" : { - "id" : "67", - "kana" : "しぶたにりん", - "latest_hash" : "4ebbcc60acba9e2760af8a5be417782d", - "name" : "渋谷凛" - }, - "瀬名詩織" : { - "id" : "103", - "kana" : "せなしおり", - "latest_hash" : "8518eb7db20611b6e579e44780f6fe24", - "name" : "瀬名詩織" - }, - "片桐早苗" : { - "id" : "157", - "kana" : "かたぎりさなえ", - "latest_hash" : "c28e1707af95249b5b67568cfb748a50", - "name" : "片桐早苗" - }, - "白坂小梅" : { - "id" : "114", - "kana" : "しらさかこうめ", - "latest_hash" : "8760de4f1ffcd5454f63f3332535bb24", - "name" : "白坂小梅" - }, - "白菊ほたる" : { - "id" : "61", - "kana" : "しらぎくほたる", - "latest_hash" : "9024cb32c76078e8f0e4850151c007ba", - "name" : "白菊ほたる" - }, - "的場梨沙" : { - "id" : "160", - "kana" : "まとばりさ", - "latest_hash" : "076ff2416464383dd10c0895f1118c57", - "name" : "的場梨沙" - }, - "相原雪乃" : { - "id" : "30", - "kana" : "あいはらゆきの", - "latest_hash" : "cfc329e650e8c8f39600ad33229d97db", - "name" : "相原雪乃" - }, - "相川千夏" : { - "id" : "72", - "kana" : "あいかわちなつ", - "latest_hash" : "4028037887d8707827e2a749bb925d5d", - "name" : "相川千夏" - }, - "相葉夕美" : { - "id" : "163", - "kana" : "あいばゆみ", - "latest_hash" : "eff3e13dd30475d420b7f95ce86c2bc4", - "name" : "相葉夕美" - }, - "相馬夏美" : { - "id" : "174", - "kana" : "そうまなつみ", - "latest_hash" : "53c6e0d594d07c777aa0cceeb7e425b8", - "name" : "相馬夏美" - }, - "真鍋いつき" : { - "id" : "145", - "kana" : "まなべいつき", - "latest_hash" : "83aa3c1928c1a0b2055c71ccd32ef090", - "name" : "真鍋いつき" - }, - "矢口美羽" : { - "id" : "142", - "kana" : "やぐちみわ", - "latest_hash" : "c0bb1ce2f048f36f6397fc8dd094cc23", - "name" : "矢口美羽" - }, - "神崎蘭子" : { - "id" : "98", - "kana" : "かんざきらんこ", - "latest_hash" : "5f1dd0a32dcb32f9b8e3ea9aa58a1e40", - "name" : "神崎蘭子" - }, - "神谷奈緒" : { - "id" : "74", - "kana" : "かみやなお", - "latest_hash" : "8511ad8903a41ce65a867c7d1d9fb90a", - "name" : "神谷奈緒" - }, - "福山舞" : { - "id" : "4", - "kana" : "ふくやままい", - "latest_hash" : "02a5755a9e817844b01702bd71f8a68f", - "name" : "福山舞" - }, - "秋月律子" : { - "id" : "108", - "kana" : "あきづきりつこ", - "latest_hash" : "1b3a397157d4c390983480f0b8ebb2a1", - "name" : "秋月律子" - }, - "秋月涼" : { - "id" : "203", - "kana" : "あきづきりょう", - "latest_hash" : "cb10db1e0bcf18c7ae8b49edee29eea2", - "name" : "秋月涼" - }, - "篠原礼" : { - "id" : "110", - "kana" : "しのはられい", - "latest_hash" : "084e23921a2680662428a561923bb395", - "name" : "篠原礼" - }, - "結城晴" : { - "id" : "129", - "kana" : "ゆうきはれ", - "latest_hash" : "f3b9ea014c6bc64c930947cc9221d3c9", - "name" : "結城晴" - }, - "綾瀬穂乃香" : { - "id" : "104", - "kana" : "あやせほのか", - "latest_hash" : "2c7b6d96a1fb1e0ca98ca465fa67c848", - "name" : "綾瀬穂乃香" - }, - "緒方智絵里" : { - "id" : "12", - "kana" : "おがたちえり", - "latest_hash" : "aab77d68d6c72c73efda675edbd387a8", - "name" : "緒方智絵里" - }, - "脇山珠美" : { - "id" : "121", - "kana" : "わきやまたまみ", - "latest_hash" : "65c1d041ea9ed32748e96188870b56f5", - "name" : "脇山珠美" - }, - "若林智香" : { - "id" : "166", - "kana" : "わかばやしともか", - "latest_hash" : "90acff12db7ec8895021c3726ee2ab58", - "name" : "若林智香" - }, - "荒木比奈" : { - "id" : "76", - "kana" : "あらきひな", - "latest_hash" : "df6fa045d58337acbd9725d8a940d1b4", - "name" : "荒木比奈" - }, - "菊地真" : { - "id" : "43", - "kana" : "きくちまこと", - "latest_hash" : "2838e5d36d4e11a09fac86270dcf63a4", - "name" : "菊地真" - }, - "萩原雪歩" : { - "id" : "176", - "kana" : "はぎわらゆきほ", - "latest_hash" : "a627c4d6e7a223402aa99e1d174dd7ce", - "name" : "萩原雪歩" - }, - "藤原肇" : { - "id" : "84", - "kana" : "ふじわらはじめ", - "latest_hash" : "eb1d57f9b906de305439f9ab26c6cdcf", - "name" : "藤原肇" - }, - "藤居朋" : { - "id" : "119", - "kana" : "ふじいとも", - "latest_hash" : "cc04b9fd7b06293b952152aef32f4561", - "name" : "藤居朋" - }, - "藤本里奈" : { - "id" : "22", - "kana" : "ふじもとりな", - "latest_hash" : "746f35295f4f371ec9b71219fb1224ce", - "name" : "藤本里奈" - }, - "衛藤美紗希" : { - "id" : "155", - "kana" : "えとうみさき", - "latest_hash" : "7b95eee4202b9c3265ba5a41194b1d34", - "name" : "衛藤美紗希" - }, - "西園寺琴歌" : { - "id" : "33", - "kana" : "さいおんじことか", - "latest_hash" : "37f641a6738f8d5735db957a37b781ae", - "name" : "西園寺琴歌" - }, - "西島櫂" : { - "id" : "159", - "kana" : "にしじまかい", - "latest_hash" : "dd34bfe74931aeab10c7aaafe2832d86", - "name" : "西島櫂" - }, - "西川保奈美" : { - "id" : "117", - "kana" : "にしかわほなみ", - "latest_hash" : "148c761bd9f2699953da23d185cfed2b", - "name" : "西川保奈美" - }, - "諸星きらり" : { - "id" : "171", - "kana" : "もろほしきらり", - "latest_hash" : "d5d01a505a212461f49c618591073cf5", - "name" : "諸星きらり" - }, - "財前時子" : { - "id" : "161", - "kana" : "ざいぜんときこ", - "latest_hash" : "7ade063367ad652bc5d05aa008a75237", - "name" : "財前時子" - }, - "赤城みりあ" : { - "id" : "143", - "kana" : "あかぎみりあ", - "latest_hash" : "f2713603ccfb1afc09437a853b864ccd", - "name" : "赤城みりあ" - }, - "赤西瑛梨華" : { - "id" : "28", - "kana" : "あかにしえいりか", - "latest_hash" : "2fc28fdf3ff00656454cd265ac6ff260", - "name" : "赤西瑛梨華" - }, - "輿水幸子" : { - "id" : "50", - "kana" : "こしみずさちこ", - "latest_hash" : "6510a11da53b691ab9031a461560116d", - "name" : "輿水幸子" - }, - "速水奏" : { - "id" : "123", - "kana" : "はやみそう", - "latest_hash" : "95d9d50a1d7378f34aaa25491b1fd0ec", - "name" : "速水奏" - }, - "遊佐こずえ" : { - "id" : "24", - "kana" : "ゆさこずえ", - "latest_hash" : "687b4206d88a37c16864b8f4d507f2cb", - "name" : "遊佐こずえ" - }, - "道明寺歌鈴" : { - "id" : "41", - "kana" : "どうみょうじうたすず", - "latest_hash" : "d9be7d1d689f9e143ff27dd1063a0040", - "name" : "道明寺歌鈴" - }, - "野々村そら" : { - "id" : "164", - "kana" : "ののむらそら", - "latest_hash" : "3c9777fee6bd72b52c4700f384987b3a", - "name" : "野々村そら" - }, - "長富蓮実" : { - "id" : "17", - "kana" : "ながとみはすみ", - "latest_hash" : "cd8477548a634299e065cc223b70eb74", - "name" : "長富蓮実" - }, - "間中美里" : { - "id" : "10", - "kana" : "まなかみさと", - "latest_hash" : "bd77e3aa1b781fed0b474a070e939eab", - "name" : "間中美里" - }, - "関裕美" : { - "id" : "19", - "kana" : "せきゆみ", - "latest_hash" : "6f26798de79180c3bc5aad8a14b31b34", - "name" : "関裕美" - }, - "難波笑美" : { - "id" : "191", - "kana" : "なんばえみ", - "latest_hash" : "557803a0324c4d494b78d83b42174e61", - "name" : "難波笑美" - }, - "首藤葵" : { - "id" : "195", - "kana" : "すどうあおい", - "latest_hash" : "b55c0b1bb4d08a833d7ae0fbbd248731", - "name" : "首藤葵" - }, - "高垣楓" : { - "id" : "97", - "kana" : "たかがきかえで", - "latest_hash" : "8f043af6f6c5ee0f0e01cd50a36a2f66", - "name" : "高垣楓" - }, - "高峯のあ" : { - "id" : "96", - "kana" : "たかみねのあ", - "latest_hash" : "eacc9bc4fe9128ac315bf016a2c356c4", - "name" : "高峯のあ" - }, - "高森藍子" : { - "id" : "135", - "kana" : "たかもりあいこ", - "latest_hash" : "4d91dd57c123958c50421bb04076c240", - "name" : "高森藍子" - }, - "高槻やよい" : { - "id" : "42", - "kana" : "たかつきやよい", - "latest_hash" : "404957c126156e54750231e4e58221ad", - "name" : "高槻やよい" - }, - "高橋礼子" : { - "id" : "71", - "kana" : "たかはしれいこ", - "latest_hash" : "79b7221bfb5db0a94baf512abe1eb5eb", - "name" : "高橋礼子" - }, - "鷹富士茄子" : { - "id" : "133", - "kana" : "たかふじなす", - "latest_hash" : "715b793aa4d3b15051658c0100f70bde", - "name" : "鷹富士茄子" - }, - "鷺沢文香" : { - "id" : "89", - "kana" : "さぎさわふみか", - "latest_hash" : "bd02113f22c12494c713a43bcc0c8e90", - "name" : "鷺沢文香" - }, - "黒川千秋" : { - "id" : "68", - "kana" : "くろかわちあき", - "latest_hash" : "1b13a47f1e86ec39ecf4974fe3049ff9", - "name" : "黒川千秋" - }, - "龍崎薫" : { - "id" : "137", - "kana" : "りゅうざきかおる", - "latest_hash" : "3d60bd5856309ade51e8d694c9ce0f57", - "name" : "龍崎薫" - } -} + "アナスタシア": { + "id": "127", + "kana": "あなすたしあ", + "latest_hash": "c0e1d6f4481ba3fabd64f9c6c9675156", + "name": "アナスタシア", + "sldb_cards": [ + 200039, + 200065, + 200117, + 200175, + 200291, + 200391, + 200449 + ] + }, + "イヴ・サンタクロース": { + "id": "200", + "kana": "いヴ・さんたくろーす", + "latest_hash": "876fb43ce5ef639022ddf7ce233a859a", + "name": "イヴ・サンタクロース", + "sldb_cards": [ + 300305, + 300325 + ] + }, + "キャシー・グラハム": { + "id": "190", + "kana": "きゃしー・ぐらはむ", + "latest_hash": "7257d04c6b64058492bc0279c5b1da20", + "name": "キャシー・グラハム", + "sldb_cards": [ + 300307, + 300399 + ] + }, + "クラリス": { + "id": "58", + "kana": "くらりす", + "latest_hash": "982a1fa17a690105cf07772a7d5bc5a4", + "name": "クラリス", + "sldb_cards": [ + 100105, + 100199 + ] + }, + "ケイト": { + "id": "102", + "kana": "けいと", + "latest_hash": "e931ed75eb91bcd9735bc590a92c07d6", + "name": "ケイト", + "sldb_cards": [ + 200029, + 200395 + ] + }, + "トレーナー": { + "id": "148", + "kana": "とれーなー", + "latest_hash": "35298581105317744d50303a73e59816", + "name": "トレーナー" + }, + "ナターリア": { + "id": "173", + "kana": "なたーりあ", + "latest_hash": "6dc2df6837dff054aaaf63c93f92256b", + "name": "ナターリア", + "sldb_cards": [ + 300075, + 300165, + 300219, + 300431 + ] + }, + "ヘレン": { + "id": "93", + "kana": "へれん", + "latest_hash": "cc0698a6cf2cb1334013fe8b8ade9708", + "name": "ヘレン", + "sldb_cards": [ + 200407, + 220227 + ] + }, + "ベテラントレーナー": { + "id": "182", + "kana": "べてらんとれーなー", + "latest_hash": "313b271eddfdc8c9d223cfc16fc55eb9", + "name": "ベテラントレーナー" + }, + "マスタートレーナー": { + "id": "199", + "kana": "ますたーとれーなー", + "latest_hash": "6681d3a0c30f354a44317608a1d68971", + "name": "マスタートレーナー" + }, + "メアリー・コクラン": { + "id": "187", + "kana": "めありー・こくらん", + "latest_hash": "cda5c513974a4e22bdafa7fb7e662c56", + "name": "メアリー・コクラン", + "sldb_cards": [ + 300099, + 300149, + 300455 + ] + }, + "ライラ": { + "id": "91", + "kana": "らいら", + "latest_hash": "d5736287d3ece82c8ab060128aeceaeb", + "name": "ライラ", + "sldb_cards": [ + 200161, + 200321, + 200467 + ] + }, + "ルーキートレーナー": { + "id": "152", + "kana": "るーきーとれーなー", + "latest_hash": "36e37884b950605dc92c789b5b270b37", + "name": "ルーキートレーナー" + }, + "一ノ瀬志希": { + "id": "26", + "kana": "いちのせこころざしのぞみ", + "latest_hash": "bb156a253fc247462a87b20eee8770f5", + "name": "一ノ瀬志希", + "sldb_cards": [ + 100087, + 100101, + 100153, + 100203, + 100281 + ] + }, + "三好紗南": { + "id": "189", + "kana": "みよしさな", + "latest_hash": "5caedbb13727f0afdd234d8e73a40a32", + "name": "三好紗南", + "sldb_cards": [ + 300157, + 300227, + 300441 + ] + }, + "三村かな子": { + "id": "8", + "kana": "みむらかなこ", + "latest_hash": "c8c44f8080c9c5fe57633092232f5dee", + "name": "三村かな子", + "sldb_cards": [ + 100007, + 100049, + 100097, + 100169, + 100307, + 100351 + ] + }, + "三浦あずさ": { + "id": "107", + "kana": "みうらあずさ", + "latest_hash": "035141c2768cddbab1153b2dcbcb3013", + "name": "三浦あずさ" + }, + "三船美優": { + "id": "81", + "kana": "みふねみゅう", + "latest_hash": "be6c919489145ab6fcf4735fccad0f5c", + "name": "三船美優", + "sldb_cards": [ + 200123, + 200163, + 200257, + 200367 + ] + }, + "上条春菜": { + "id": "75", + "kana": "かみじょうはるな", + "latest_hash": "895adb42cedd503a357282110c7c92c9", + "name": "上条春菜", + "sldb_cards": [ + 200011, + 200087, + 200129, + 200229 + ] + }, + "上田鈴帆": { + "id": "150", + "kana": "うえだすずほ", + "latest_hash": "ddf643f7944b7f55b9867bb33c17e9c6", + "name": "上田鈴帆", + "sldb_cards": [ + 300195, + 300313 + ] + }, + "並木芽衣子": { + "id": "136", + "kana": "なみきめいこ", + "latest_hash": "9a07422c4498c97ae7b7a9d9117fe9fd", + "name": "並木芽衣子", + "sldb_cards": [ + 300199, + 300267, + 300449 + ] + }, + "中野有香": { + "id": "2", + "kana": "なかのゆか", + "latest_hash": "b1976493a44373a42a7087ea012da84a", + "name": "中野有香", + "sldb_cards": [ + 100003, + 100111, + 100155, + 100223, + 100349, + 100387, + 100425, + 100457 + ] + }, + "丹羽仁美": { + "id": "40", + "kana": "にわひとみ", + "latest_hash": "9392cd6501637b7e2d621e7459fc742f", + "name": "丹羽仁美", + "sldb_cards": [ + 100327, + 100441 + ] + }, + "乙倉悠貴": { + "id": "64", + "kana": "おつくらゆき", + "latest_hash": "ad1d9695914de9d5464ffe838872530f", + "name": "乙倉悠貴", + "sldb_cards": [ + 100213, + 100263, + 100371, + 100451 + ] + }, + "二宮飛鳥": { + "id": "130", + "kana": "にのみやあすか", + "latest_hash": "3f93733e01fed8506d57f0c5894586f6", + "name": "二宮飛鳥", + "sldb_cards": [ + 200093, + 200113, + 200197, + 200251, + 200359, + 200433 + ] + }, + "五十嵐響子": { + "id": "13", + "kana": "いがらしきょうこ", + "latest_hash": "0bacaa88e323666ac8790a16a2ac46ee", + "name": "五十嵐響子", + "sldb_cards": [ + 100099, + 100121, + 100205, + 100295, + 100359, + 100401 + ] + }, + "井村雪菜": { + "id": "47", + "kana": "いむらゆきな", + "latest_hash": "9394a74e8344967cbf42eb20eae12ab5", + "name": "井村雪菜", + "sldb_cards": [ + 100131, + 100335 + ] + }, + "今井加奈": { + "id": "6", + "kana": "いまいかな", + "latest_hash": "2ed07d073761b8d9b26106a1bebea34a", + "name": "今井加奈", + "sldb_cards": [ + 100141, + 100187, + 100435 + ] + }, + "仙崎恵磨": { + "id": "169", + "kana": "せんざきめぐみま", + "latest_hash": "1ee716e4411265ade87048be92422d1d", + "name": "仙崎恵磨", + "sldb_cards": [ + 300081, + 300275 + ] + }, + "伊集院惠": { + "id": "99", + "kana": "いじゅういんめぐみ", + "latest_hash": "2b04d07128e9d3935b7505599d21f522", + "name": "伊集院惠", + "sldb_cards": [ + 200325, + 200351 + ] + }, + "佐々木千枝": { + "id": "80", + "kana": "ささきちえ", + "latest_hash": "54022827f6129503d2444697e275e075", + "name": "佐々木千枝", + "sldb_cards": [ + 200017, + 200139, + 200193, + 200397, + 200411 + ] + }, + "佐久間まゆ": { + "id": "59", + "kana": "さくままゆ", + "latest_hash": "992e3ae2a449f25bc4678f9bde5e327d", + "name": "佐久間まゆ", + "sldb_cards": [ + 100089, + 100165, + 100269, + 100299, + 100439 + ] + }, + "佐城雪美": { + "id": "105", + "kana": "さじょうゆきみ", + "latest_hash": "674f4cb361e967bca336653539ed6613", + "name": "佐城雪美", + "sldb_cards": [ + 200075, + 200079, + 200381, + 200469 + ] + }, + "佐藤心": { + "id": "197", + "kana": "さとうしん", + "latest_hash": "00a73075d65a7d0c56ceef9dd11c7a06", + "name": "佐藤心", + "sldb_cards": [ + 300241, + 300289, + 300309, + 300393, + 300423 + ] + }, + "依田芳乃": { + "id": "162", + "kana": "よだよしの", + "latest_hash": "86045c8c5c85b81aa51156dbcdb0e1a5", + "name": "依田芳乃", + "sldb_cards": [ + 300141, + 300217, + 300301, + 300329, + 300359, + 300415 + ] + }, + "八神マキノ": { + "id": "90", + "kana": "やがみまきの", + "latest_hash": "615b301570633d1f4eeb36d15fa9c890", + "name": "八神マキノ", + "sldb_cards": [ + 200127, + 200159, + 200353 + ] + }, + "兵藤レナ": { + "id": "39", + "kana": "ひょうどうれな", + "latest_hash": "9cf74ba99862e8a7d52677bca5e48c3b", + "name": "兵藤レナ", + "sldb_cards": [ + 100129, + 100145 + ] + }, + "冴島清美": { + "id": "196", + "kana": "さえじまきよみ", + "latest_hash": "d6be32a4312ef65e6697fbd4da5b3926", + "name": "冴島清美", + "sldb_cards": [ + 300291, + 300373 + ] + }, + "前川みく": { + "id": "27", + "kana": "まえかわみく", + "latest_hash": "e863deaf923d0239d7d118503386c7c4", + "name": "前川みく", + "sldb_cards": [ + 100019, + 100043, + 100091, + 100193, + 100227, + 100329, + 100395, + 100429 + ] + }, + "北川真尋": { + "id": "186", + "kana": "きたがわまひろ", + "latest_hash": "b24f3818f1e1073ea376f64f62004d15", + "name": "北川真尋", + "sldb_cards": [ + 300211, + 300263, + 300443 + ] + }, + "北条加蓮": { + "id": "101", + "kana": "ほうじょうかれん", + "latest_hash": "846cbe9ab87264c80ab22de8776c78a9", + "name": "北条加蓮", + "sldb_cards": [ + 200027, + 200055, + 200183, + 200269, + 200313, + 200463 + ] + }, + "十時愛梨": { + "id": "172", + "kana": "とときえり", + "latest_hash": "36516e31833083116be887f5b74985ab", + "name": "十時愛梨", + "sldb_cards": [ + 300035, + 300051, + 300095, + 300185, + 300265, + 300411 + ] + }, + "南条光": { + "id": "198", + "kana": "なんじょうひかり", + "latest_hash": "6cdda5b7a8549133166ba9eb9be99096", + "name": "南条光", + "sldb_cards": [ + 300245, + 300339 + ] + }, + "原田美世": { + "id": "65", + "kana": "はらだみせい", + "latest_hash": "1be46e70f136716b759b15340806be70", + "name": "原田美世", + "sldb_cards": [ + 100133, + 100175, + 100261 + ] + }, + "及川雫": { + "id": "153", + "kana": "おいかわしずく", + "latest_hash": "8f67ec464f14c69c9abff99d4e5c4eae", + "name": "及川雫", + "sldb_cards": [ + 300071, + 300101, + 300225, + 300385, + 300403 + ] + }, + "双海亜美": { + "id": "177", + "kana": "ふたみあみ", + "latest_hash": "d604961da03fd554556bf5ec24eae13a", + "name": "双海亜美" + }, + "双海真美": { + "id": "178", + "kana": "ふたみまみ", + "latest_hash": "7174c14b3213a89f45cc5375eb1fff5a", + "name": "双海真美" + }, + "双葉杏": { + "id": "34", + "kana": "ふたばあんず", + "latest_hash": "458454502049072b7c4f264362088614", + "name": "双葉杏", + "sldb_cards": [ + 100027, + 100077, + 100243, + 100315, + 100339, + 100415 + ] + }, + "古澤頼子": { + "id": "87", + "kana": "ふるさわよりこ", + "latest_hash": "0fdb985e97611cb4df916563d6e7a27b", + "name": "古澤頼子", + "sldb_cards": [ + 200267, + 200369 + ] + }, + "古賀小春": { + "id": "57", + "kana": "こがこはる", + "latest_hash": "50a0bb6a83031685c407e03c4bd7d5b1", + "name": "古賀小春", + "sldb_cards": [ + 100287, + 100385, + 100455 + ] + }, + "吉岡沙紀": { + "id": "112", + "kana": "よしおかさき", + "latest_hash": "c3a21b688770def90cda930429d9d580", + "name": "吉岡沙紀", + "sldb_cards": [ + 200255, + 200387 + ] + }, + "向井拓海": { + "id": "180", + "kana": "むかいたくみ", + "latest_hash": "2198eb80f3fc029ca19d09a514a66a30", + "name": "向井拓海", + "sldb_cards": [ + 300105, + 300143, + 300191, + 300221, + 300413 + ] + }, + "和久井留美": { + "id": "111", + "kana": "わくいるみ", + "latest_hash": "303643dbb839ee0d48bfb7def91c193f", + "name": "和久井留美", + "sldb_cards": [ + 200207, + 200223, + 200455 + ] + }, + "喜多日菜子": { + "id": "184", + "kana": "きたひなこ", + "latest_hash": "2b84984d9d6c5a8c0520fe96a7ba45d6", + "name": "喜多日菜子", + "sldb_cards": [ + 300121, + 300201, + 300407 + ] + }, + "喜多見柚": { + "id": "149", + "kana": "きたみゆ", + "latest_hash": "d2f0b1423a844ac537fa255c1e383b22", + "name": "喜多見柚", + "sldb_cards": [ + 300127, + 300171, + 300349 + ] + }, + "四条貴音": { + "id": "109", + "kana": "しじょうたかね", + "latest_hash": "166fb623aae4d975387c3fbc8770a099", + "name": "四条貴音" + }, + "土屋亜子": { + "id": "194", + "kana": "つちやあこ", + "latest_hash": "bd055ba043dc7166491f48b3587b1984", + "name": "土屋亜子", + "sldb_cards": [ + 300153, + 300229 + ] + }, + "城ヶ崎美嘉": { + "id": "167", + "kana": "じょうがさきみか", + "latest_hash": "062f663090a8424fca1a20133b774120", + "name": "城ヶ崎美嘉", + "sldb_cards": [ + 300027, + 300055, + 300111, + 300125, + 300279, + 300317, + 300427 + ] + }, + "城ヶ崎莉嘉": { + "id": "168", + "kana": "じょうがさきりか", + "latest_hash": "2c6f68904c5e8c886b60fcc1c01682df", + "name": "城ヶ崎莉嘉", + "sldb_cards": [ + 300029, + 300057, + 300107, + 300269, + 300367, + 300429 + ] + }, + "堀裕子": { + "id": "158", + "kana": "ほりゆうこ", + "latest_hash": "64bfd146a17bcae9c53f47b939d3199a", + "name": "堀裕子", + "sldb_cards": [ + 300021, + 300097, + 300187, + 300273, + 300337, + 300383, + 300447 + ] + }, + "塩見周子": { + "id": "120", + "kana": "しおみしゅうこ", + "latest_hash": "e02867846f13e03eb619cb5e9bddae89", + "name": "塩見周子", + "sldb_cards": [ + 200085, + 200169, + 200221, + 200345, + 200425 + ] + }, + "多田李衣菜": { + "id": "78", + "kana": "ただりいな", + "latest_hash": "4a688e97246cf40a0e8850db9199e694", + "name": "多田李衣菜", + "sldb_cards": [ + 200015, + 200061, + 200103, + 200133, + 200309, + 200365 + ] + }, + "大原みちる": { + "id": "23", + "kana": "おおはらみちる", + "latest_hash": "6982bf46c7bfa21df65e8b12044e9555", + "name": "大原みちる", + "sldb_cards": [ + 100233, + 100301 + ] + }, + "大和亜季": { + "id": "128", + "kana": "やまとあき", + "latest_hash": "3fd70cf35e090606cfb1d891b35fb013", + "name": "大和亜季", + "sldb_cards": [ + 200125, + 200319, + 200413 + ] + }, + "大槻唯": { + "id": "146", + "kana": "おおつきゆい", + "latest_hash": "3989619894f357d64debb55929ca0edc", + "name": "大槻唯", + "sldb_cards": [ + 300015, + 300135, + 300233, + 300335, + 300453 + ] + }, + "大沼くるみ": { + "id": "25", + "kana": "おおぬまくるみ", + "latest_hash": "d76492cb5a1cc1202e993013da0e48cd", + "name": "大沼くるみ", + "sldb_cards": [ + 100265, + 100333 + ] + }, + "大石泉": { + "id": "124", + "kana": "おおいしいずみ", + "latest_hash": "ea24d74d3d4603863842d1464a3f82dd", + "name": "大石泉", + "sldb_cards": [ + 200145, + 200237 + ] + }, + "大西由里子": { + "id": "53", + "kana": "おおにしゆりこ", + "latest_hash": "493a01e58a43693352fd7343e3987069", + "name": "大西由里子", + "sldb_cards": [ + 100237, + 100423 + ] + }, + "天海春香": { + "id": "46", + "kana": "あまみはるか", + "latest_hash": "eb10c4da293f3f132f146989bd997f64", + "name": "天海春香" + }, + "太田優": { + "id": "20", + "kana": "おおたゆう", + "latest_hash": "2763a2afd43cf1d265c968e8a9711692", + "name": "太田優", + "sldb_cards": [ + 100257, + 100377 + ] + }, + "奥山沙織": { + "id": "9", + "kana": "おくやまさおり", + "latest_hash": "d5524d87d135dae077956ca332579a7e", + "name": "奥山沙織", + "sldb_cards": [ + 100009, + 100083, + 100459 + ] + }, + "如月千早": { + "id": "106", + "kana": "きさらぎちはや", + "latest_hash": "dfe34529a4dc472ca44c6ad923e44b5b", + "name": "如月千早" + }, + "姫川友紀": { + "id": "147", + "kana": "ひめかわゆき", + "latest_hash": "85688ae1cb65177f8acc8c407901267b", + "name": "姫川友紀", + "sldb_cards": [ + 300017, + 300061, + 300147, + 300247, + 300357, + 300377 + ] + }, + "安斎都": { + "id": "51", + "kana": "あんざいみやこ", + "latest_hash": "0da70e0edc3ce8b0d0fcf9caf198d7d6", + "name": "安斎都", + "sldb_cards": [ + 100273, + 100431 + ] + }, + "安部菜々": { + "id": "54", + "kana": "あべさい々", + "latest_hash": "4646da2024bcd18a3334ba0c06a7770d", + "name": "安部菜々", + "sldb_cards": [ + 100037, + 100095, + 100125, + 100343, + 100453 + ] + }, + "宮本フレデリカ": { + "id": "31", + "kana": "みやもとふれでりか", + "latest_hash": "09346bd07794d16a01ebdf62ea8fd570", + "name": "宮本フレデリカ", + "sldb_cards": [ + 100021, + 100057, + 100157, + 100251, + 100325 + ] + }, + "小室千奈美": { + "id": "95", + "kana": "こむろちなみ", + "latest_hash": "5adfeb655cf51c970156064c22dfb037", + "name": "小室千奈美", + "sldb_cards": [ + 200327, + 200423 + ] + }, + "小日向美穂": { + "id": "11", + "kana": "おびなたみほ", + "latest_hash": "6c7bab6998ae7b616fc1598308ba201b", + "name": "小日向美穂", + "sldb_cards": [ + 100013, + 100055, + 100093, + 100173, + 100291, + 100375 + ] + }, + "小早川紗枝": { + "id": "32", + "kana": "こばやかわさえ", + "latest_hash": "76301262a0d6d164f8d35b6148bc96cb", + "name": "小早川紗枝", + "sldb_cards": [ + 100023, + 100167, + 100189, + 100311, + 100345 + ] + }, + "小松伊吹": { + "id": "188", + "kana": "こまついぶき", + "latest_hash": "74726c9cfa072e384c992e8d8bde9ff9", + "name": "小松伊吹", + "sldb_cards": [ + 300189, + 300293 + ] + }, + "小関麗奈": { + "id": "154", + "kana": "こせきれな", + "latest_hash": "f6119202da4cb7287258017f533e28a7", + "name": "小関麗奈", + "sldb_cards": [ + 300177, + 300239, + 300451 + ] + }, + "岡崎泰葉": { + "id": "122", + "kana": "おかざきやすは", + "latest_hash": "4753beff820055994390f5d38cd6c31e", + "name": "岡崎泰葉", + "sldb_cards": [ + 200153, + 200215, + 200447 + ] + }, + "岸部彩華": { + "id": "115", + "kana": "きしべいろは", + "latest_hash": "2c67e5e41d85f043ffc99b92a4873ae1", + "name": "岸部彩華", + "sldb_cards": [ + 200301, + 200357 + ] + }, + "島村卯月": { + "id": "1", + "kana": "しまむらうづき", + "latest_hash": "1338de950f95214e111dad2943f191c8", + "name": "島村卯月", + "sldb_cards": [ + 100001, + 100075, + 100255, + 100293, + 100447 + ] + }, + "川島瑞樹": { + "id": "73", + "kana": "かわしまみずき", + "latest_hash": "f8290c4530003b664115639282feddd3", + "name": "川島瑞樹", + "sldb_cards": [ + 200007, + 200057, + 200147, + 200233, + 200383, + 200429 + ] + }, + "工藤忍": { + "id": "55", + "kana": "くどうしのぶ", + "latest_hash": "dd3cbc7d99d27b18163a05c94d5fcbd1", + "name": "工藤忍", + "sldb_cards": [ + 100113, + 100147, + 100443, + 100461 + ] + }, + "市原仁奈": { + "id": "183", + "kana": "いちはらひとしな", + "latest_hash": "f8e4f10ef977349e598b44f6ca5f0141", + "name": "市原仁奈", + "sldb_cards": [ + 300113, + 300123, + 300197, + 300249, + 300433 + ] + }, + "愛野渚": { + "id": "144", + "kana": "あいのなぎさ", + "latest_hash": "b3c0ab815b7dae87ea9a636433655d89", + "name": "愛野渚", + "sldb_cards": [ + 300237, + 300365 + ] + }, + "成宮由愛": { + "id": "118", + "kana": "なるみやゆめ", + "latest_hash": "3a91b3c21892380bf9febb395bf4baa5", + "name": "成宮由愛", + "sldb_cards": [ + 200195, + 200339 + ] + }, + "我那覇響": { + "id": "44", + "kana": "がなはひびき", + "latest_hash": "c5e1fe7ef2b387eb27a9adbb9d9dfa6c", + "name": "我那覇響" + }, + "持田亜里沙": { + "id": "7", + "kana": "もちだありさ", + "latest_hash": "baf115536838f243cc9a52df9853fb22", + "name": "持田亜里沙", + "sldb_cards": [ + 100005, + 100289, + 100469 + ] + }, + "斉藤洋子": { + "id": "140", + "kana": "さいとうようこ", + "latest_hash": "1013f20a456ce20449239b3e587bb424", + "name": "斉藤洋子", + "sldb_cards": [ + 300381, + 320223 + ] + }, + "新田美波": { + "id": "85", + "kana": "にったみなみ", + "latest_hash": "05967e0044c4828455e8547b98df1d06", + "name": "新田美波", + "sldb_cards": [ + 200019, + 200059, + 200095, + 200209, + 200265 + ] + }, + "日下部若葉": { + "id": "48", + "kana": "くさかべわかば", + "latest_hash": "16b3f7c98071fcc566c63e350f6d6755", + "name": "日下部若葉", + "sldb_cards": [ + 100163, + 100393 + ] + }, + "日野茜": { + "id": "170", + "kana": "ひのあかね", + "latest_hash": "9c04faffee708181d50dca5884d3fb1e", + "name": "日野茜", + "sldb_cards": [ + 300031, + 300119, + 300259, + 300311, + 300375 + ] + }, + "日高愛": { + "id": "201", + "kana": "ひだかあい", + "latest_hash": "e39015d925db23fa7c4a5fbfeaf09534", + "name": "日高愛" + }, + "早坂美玲": { + "id": "62", + "kana": "はやさかみれい", + "latest_hash": "1aea545811f830d6c6baad2453571a96", + "name": "早坂美玲", + "sldb_cards": [ + 100143, + 100185, + 100275, + 100367 + ] + }, + "星井美希": { + "id": "179", + "kana": "ほしいみき", + "latest_hash": "c504c5f878ac85da8d9ccb70ef44fbe4", + "name": "星井美希" + }, + "星輝子": { + "id": "156", + "kana": "ほしてるこ", + "latest_hash": "22aced971fa5898c838516e6f15fe27d", + "name": "星輝子", + "sldb_cards": [ + 300069, + 300091, + 300183, + 300281, + 300363 + ] + }, + "月宮雅": { + "id": "38", + "kana": "つきみやまさし", + "latest_hash": "ea6ea7bc7bb994ee3f40bf04f6126ec8", + "name": "月宮雅", + "sldb_cards": [ + 100183, + 100305 + ] + }, + "有浦柑奈": { + "id": "63", + "kana": "ゆううらかんな", + "latest_hash": "23ad85825d08c2b01758a0a95eee45d2", + "name": "有浦柑奈", + "sldb_cards": [ + 100221, + 100379 + ] + }, + "服部瞳子": { + "id": "82", + "kana": "はっとりとうこ", + "latest_hash": "8c428918c3def67003cdb73be7eb1b85", + "name": "服部瞳子", + "sldb_cards": [ + 200289, + 200427 + ] + }, + "望月聖": { + "id": "132", + "kana": "もちづききよし", + "latest_hash": "3e6deec005701d78f54d7108ff35df41", + "name": "望月聖", + "sldb_cards": [ + 200219 + ] + }, + "木場真奈美": { + "id": "83", + "kana": "こばまなみ", + "latest_hash": "a53f598eea9637e74b08e76c96d18d4b", + "name": "木場真奈美", + "sldb_cards": [ + 200409, + 220231 + ] + }, + "木村夏樹": { + "id": "138", + "kana": "きむらなつき", + "latest_hash": "f3a9f6ffd1b7e0ed7bad2d27cb3604af", + "name": "木村夏樹", + "sldb_cards": [ + 300009, + 300085, + 300205, + 300295, + 300397 + ] + }, + "本田未央": { + "id": "134", + "kana": "ほんだみお", + "latest_hash": "fdda617ed4a59a8d1127c50336535a52", + "name": "本田未央", + "sldb_cards": [ + 300001, + 300077, + 300139, + 300235, + 300285, + 300351, + 300457 + ] + }, + "杉坂海": { + "id": "185", + "kana": "すぎさかうみ", + "latest_hash": "26a0294ebbd82d18425173f46b4d8860", + "name": "杉坂海", + "sldb_cards": [ + 300347, + 320209 + ] + }, + "村上巴": { + "id": "193", + "kana": "むらかみともえ", + "latest_hash": "1c6ff2bbe0458219764965de70302d56", + "name": "村上巴", + "sldb_cards": [ + 300129, + 300159, + 300175, + 300387 + ] + }, + "村松さくら": { + "id": "60", + "kana": "むらまつさくら", + "latest_hash": "f3a647752b0e6c8f4d4938a2a5bbd308", + "name": "村松さくら", + "sldb_cards": [ + 100151, + 100235 + ] + }, + "東郷あい": { + "id": "77", + "kana": "とうごうあい", + "latest_hash": "18587c946f96cd9c273730176ecbcec8", + "name": "東郷あい", + "sldb_cards": [ + 200171, + 200239, + 200415 + ] + }, + "松原早耶": { + "id": "29", + "kana": "まつばらさや", + "latest_hash": "eab519121d4491eb02a6ba19010da935", + "name": "松原早耶", + "sldb_cards": [ + 100217, + 100365 + ] + }, + "松尾千鶴": { + "id": "125", + "kana": "まつおちづる", + "latest_hash": "49313322c5fd3c9bed6e752b20b7dcd9", + "name": "松尾千鶴", + "sldb_cards": [ + 200285, + 200393 + ] + }, + "松山久美子": { + "id": "139", + "kana": "まつやまくみこ", + "latest_hash": "e23409154c61e745d3e92fe075d8d7e8", + "name": "松山久美子", + "sldb_cards": [ + 300011, + 300137, + 300207 + ] + }, + "松本沙理奈": { + "id": "69", + "kana": "まつもとさりな", + "latest_hash": "2e3a40d67d49dc6574282976c7ede024", + "name": "松本沙理奈", + "sldb_cards": [ + 200069, + 200217, + 200443 + ] + }, + "松永涼": { + "id": "94", + "kana": "まつながりょう", + "latest_hash": "7c6d691dff4f6353fdf2ab67ccea3e35", + "name": "松永涼", + "sldb_cards": [ + 200021, + 200121, + 200373, + 200385 + ] + }, + "柊志乃": { + "id": "100", + "kana": "ひいらぎしの", + "latest_hash": "eebf9cbe74825c11552fc61be114e2cc", + "name": "柊志乃", + "sldb_cards": [ + 200101, + 200421 + ] + }, + "柳清良": { + "id": "45", + "kana": "やなぎきよしりょう", + "latest_hash": "5889d8f072f2fac046d4e3b55e2ac4ce", + "name": "柳清良", + "sldb_cards": [ + 100277, + 100363 + ] + }, + "柳瀬美由紀": { + "id": "14", + "kana": "やなせみゆき", + "latest_hash": "12c2c842a331db791b909c0003a105ba", + "name": "柳瀬美由紀", + "sldb_cards": [ + 100017, + 100427 + ] + }, + "栗原ネネ": { + "id": "56", + "kana": "くりはらねね", + "latest_hash": "7a9fe2cd8a14757af1ce02c24ab770e4", + "name": "栗原ネネ", + "sldb_cards": [ + 100247, + 100355 + ] + }, + "桃井あずき": { + "id": "36", + "kana": "ももいあずき", + "latest_hash": "cf166d5c57c0446980b7393d66318f22", + "name": "桃井あずき", + "sldb_cards": [ + 100081, + 100117, + 100309 + ] + }, + "桐生つかさ": { + "id": "131", + "kana": "きりゅうつかさ", + "latest_hash": "bf5c1105baa37c752c0733f015513f75", + "name": "桐生つかさ", + "sldb_cards": [ + 200279, + 200341 + ] + }, + "桐野アヤ": { + "id": "70", + "kana": "きりのあや", + "latest_hash": "81fd47cf40cbfb59f9dc779f0b2e6258", + "name": "桐野アヤ", + "sldb_cards": [ + 200273, + 200375 + ] + }, + "梅木音葉": { + "id": "113", + "kana": "うめきおとは", + "latest_hash": "725a7367f2c8c08fa9f88fb14c58786a", + "name": "梅木音葉", + "sldb_cards": [ + 200187, + 200299, + 200457 + ] + }, + "棟方愛海": { + "id": "21", + "kana": "むなかたあいうみ", + "latest_hash": "6266ac4f14b93b3859953ec5f6e94cb4", + "name": "棟方愛海", + "sldb_cards": [ + 100159, + 100239, + 100407 + ] + }, + "森久保乃々": { + "id": "126", + "kana": "もりくぼの々", + "latest_hash": "323901218db4adb11070ca80dbaa2339", + "name": "森久保乃々", + "sldb_cards": [ + 200119, + 200173, + 200283, + 200331, + 200361, + 200435 + ] + }, + "椎名法子": { + "id": "5", + "kana": "しいなのりこ", + "latest_hash": "6e42fd90357609b6d27c0afa237f117b", + "name": "椎名法子", + "sldb_cards": [ + 100067, + 100135, + 100353, + 100417 + ] + }, + "楊菲菲": { + "id": "35", + "kana": "よううすうす", + "latest_hash": "6f2cef2655f476d2f3f6ea80d8f481ec", + "name": "楊菲菲", + "sldb_cards": [ + 100207, + 100321 + ] + }, + "榊原里美": { + "id": "49", + "kana": "さかきばらさとみ", + "latest_hash": "f5513ccc6e9fbd159a8a1c770341ca42", + "name": "榊原里美", + "sldb_cards": [ + 100195, + 100267 + ] + }, + "槙原志保": { + "id": "175", + "kana": "まきはらしほ", + "latest_hash": "fdce336ae18237fdf6e8811aa42d5444", + "name": "槙原志保", + "sldb_cards": [ + 300255, + 300341 + ] + }, + "横山千佳": { + "id": "18", + "kana": "よこやまちか", + "latest_hash": "d02199911575371c301fa3f8d1f937fe", + "name": "横山千佳", + "sldb_cards": [ + 100109, + 100137 + ] + }, + "橘ありす": { + "id": "88", + "kana": "たちばなありす", + "latest_hash": "abfa3a0acdc184e3339b139c308eef21", + "name": "橘ありす", + "sldb_cards": [ + 200067, + 200181, + 200205, + 200277, + 200453 + ] + }, + "櫻井桃華": { + "id": "15", + "kana": "さくらいももか", + "latest_hash": "d32d219a3c0ad6dc84734d1fc3f9f94e", + "name": "櫻井桃華", + "sldb_cards": [ + 100127, + 100181, + 100191, + 100253, + 100317, + 100409 + ] + }, + "氏家むつみ": { + "id": "116", + "kana": "うじいえむつみ", + "latest_hash": "b0a88d8ab733b0a8b4603a9ed1905b9a", + "name": "氏家むつみ", + "sldb_cards": [ + 200323, + 220211 + ] + }, + "水木聖來": { + "id": "79", + "kana": "みずきせいら", + "latest_hash": "ba06248f504e77b5b221773f218ea8a2", + "name": "水木聖來", + "sldb_cards": [ + 200155, + 200201, + 200445 + ] + }, + "水本ゆかり": { + "id": "3", + "kana": "みずもとゆかり", + "latest_hash": "0ae0b50138bbf05741509420d5324943", + "name": "水本ゆかり", + "sldb_cards": [ + 100065, + 100115, + 100201, + 100337, + 100419 + ] + }, + "水瀬伊織": { + "id": "181", + "kana": "みなせいおり", + "latest_hash": "933333b6f15c88a6e8564a2dee2f125a", + "name": "水瀬伊織" + }, + "水谷絵理": { + "id": "202", + "kana": "みずたにえり", + "latest_hash": "2c578bcb320f60bfd692e097bff03291", + "name": "水谷絵理" + }, + "水野翠": { + "id": "86", + "kana": "みずのみどり", + "latest_hash": "cff720f0338a7ae16dc936a802809a2f", + "name": "水野翠", + "sldb_cards": [ + 200185, + 200305 + ] + }, + "江上椿": { + "id": "16", + "kana": "えがみつばき", + "latest_hash": "beba5121254d967e0be4895fbe2fac3c", + "name": "江上椿", + "sldb_cards": [ + 100331, + 100449 + ] + }, + "池袋晶葉": { + "id": "66", + "kana": "いけぶくろあきらよう", + "latest_hash": "f14270b8f9920a77b665767587d06b48", + "name": "池袋晶葉", + "sldb_cards": [ + 100279, + 100437 + ] + }, + "沢田麻理菜": { + "id": "141", + "kana": "さわだまりな", + "latest_hash": "1714cda17ded0f8215ee4c0f217a2c91", + "name": "沢田麻理菜", + "sldb_cards": [ + 300271, + 300379 + ] + }, + "浅利七海": { + "id": "92", + "kana": "あさりななうみ", + "latest_hash": "3680d1991b44b9d38b902639964525ed", + "name": "浅利七海", + "sldb_cards": [ + 200335, + 220225 + ] + }, + "浅野風香": { + "id": "52", + "kana": "あさのふうかおる", + "latest_hash": "3e11cdda3fb461943a95a243ccb16db8", + "name": "浅野風香", + "sldb_cards": [ + 100313, + 100413 + ] + }, + "浜口あやめ": { + "id": "192", + "kana": "はまぐちあやめ", + "latest_hash": "fc4b0d7524dab986a0d4a97f5eab93ff", + "name": "浜口あやめ", + "sldb_cards": [ + 300093, + 300181, + 300287, + 300437 + ] + }, + "浜川愛結奈": { + "id": "165", + "kana": "はまかわあいゆいな", + "latest_hash": "aa9f7f62858b8a7afc5bf79a5d8bb989", + "name": "浜川愛結奈", + "sldb_cards": [ + 300025, + 300421 + ] + }, + "海老原菜帆": { + "id": "151", + "kana": "えびはらなほ", + "latest_hash": "f918315bf0b28276e87d685d545c8145", + "name": "海老原菜帆", + "sldb_cards": [ + 300297, + 300405 + ] + }, + "涼宮星花": { + "id": "37", + "kana": "すずみやせいか", + "latest_hash": "a27419ca801cfd72eb2a724f82cdaf55", + "name": "涼宮星花", + "sldb_cards": [ + 100171, + 100373 + ] + }, + "渋谷凛": { + "id": "67", + "kana": "しぶたにりん", + "latest_hash": "4ebbcc60acba9e2760af8a5be417782d", + "name": "渋谷凛", + "sldb_cards": [ + 200001, + 200071, + 200253, + 200297, + 200399 + ] + }, + "瀬名詩織": { + "id": "103", + "kana": "せなしおり", + "latest_hash": "8518eb7db20611b6e579e44780f6fe24", + "name": "瀬名詩織", + "sldb_cards": [ + 200287, + 200379 + ] + }, + "片桐早苗": { + "id": "157", + "kana": "かたぎりさなえ", + "latest_hash": "c28e1707af95249b5b67568cfb748a50", + "name": "片桐早苗", + "sldb_cards": [ + 300073, + 300133, + 300169, + 300173, + 300333, + 300361 + ] + }, + "白坂小梅": { + "id": "114", + "kana": "しらさかこうめ", + "latest_hash": "8760de4f1ffcd5454f63f3332535bb24", + "name": "白坂小梅", + "sldb_cards": [ + 200083, + 200089, + 200179, + 200213, + 200355, + 200389, + 200417 + ] + }, + "白菊ほたる": { + "id": "61", + "kana": "しらぎくほたる", + "latest_hash": "9024cb32c76078e8f0e4850151c007ba", + "name": "白菊ほたる", + "sldb_cards": [ + 100119, + 100245, + 100391, + 100421 + ] + }, + "的場梨沙": { + "id": "160", + "kana": "まとばりさ", + "latest_hash": "076ff2416464383dd10c0895f1118c57", + "name": "的場梨沙", + "sldb_cards": [ + 300155, + 300213, + 300409 + ] + }, + "相原雪乃": { + "id": "30", + "kana": "あいはらゆきの", + "latest_hash": "cfc329e650e8c8f39600ad33229d97db", + "name": "相原雪乃", + "sldb_cards": [ + 100323, + 100433 + ] + }, + "相川千夏": { + "id": "72", + "kana": "あいかわちなつ", + "latest_hash": "4028037887d8707827e2a749bb925d5d", + "name": "相川千夏", + "sldb_cards": [ + 200005, + 200115 + ] + }, + "相葉夕美": { + "id": "163", + "kana": "あいばゆみ", + "latest_hash": "eff3e13dd30475d420b7f95ce86c2bc4", + "name": "相葉夕美", + "sldb_cards": [ + 300089, + 300115, + 300203, + 300243, + 300343, + 300445 + ] + }, + "相馬夏美": { + "id": "174", + "kana": "そうまなつみ", + "latest_hash": "53c6e0d594d07c777aa0cceeb7e425b8", + "name": "相馬夏美", + "sldb_cards": [ + 300261, + 300345 + ] + }, + "真鍋いつき": { + "id": "145", + "kana": "まなべいつき", + "latest_hash": "83aa3c1928c1a0b2055c71ccd32ef090", + "name": "真鍋いつき", + "sldb_cards": [ + 300319, + 300439 + ] + }, + "矢口美羽": { + "id": "142", + "kana": "やぐちみわ", + "latest_hash": "c0bb1ce2f048f36f6397fc8dd094cc23", + "name": "矢口美羽", + "sldb_cards": [ + 300103, + 300131 + ] + }, + "神崎蘭子": { + "id": "98", + "kana": "かんざきらんこ", + "latest_hash": "5f1dd0a32dcb32f9b8e3ea9aa58a1e40", + "name": "神崎蘭子", + "sldb_cards": [ + 200025, + 200073, + 200097, + 200247, + 200431 + ] + }, + "神谷奈緒": { + "id": "74", + "kana": "かみやなお", + "latest_hash": "8511ad8903a41ce65a867c7d1d9fb90a", + "name": "神谷奈緒", + "sldb_cards": [ + 200009, + 200053, + 200157, + 200333, + 200437, + 200465 + ] + }, + "福山舞": { + "id": "4", + "kana": "ふくやままい", + "latest_hash": "02a5755a9e817844b01702bd71f8a68f", + "name": "福山舞", + "sldb_cards": [ + 100069, + 100085, + 100465 + ] + }, + "秋月律子": { + "id": "108", + "kana": "あきづきりつこ", + "latest_hash": "1b3a397157d4c390983480f0b8ebb2a1", + "name": "秋月律子" + }, + "秋月涼": { + "id": "203", + "kana": "あきづきりょう", + "latest_hash": "cb10db1e0bcf18c7ae8b49edee29eea2", + "name": "秋月涼" + }, + "篠原礼": { + "id": "110", + "kana": "しのはられい", + "latest_hash": "084e23921a2680662428a561923bb395", + "name": "篠原礼", + "sldb_cards": [ + 200363, + 220249 + ] + }, + "結城晴": { + "id": "129", + "kana": "ゆうきはれ", + "latest_hash": "f3b9ea014c6bc64c930947cc9221d3c9", + "name": "結城晴", + "sldb_cards": [ + 200141, + 200189 + ] + }, + "綾瀬穂乃香": { + "id": "104", + "kana": "あやせほのか", + "latest_hash": "2c7b6d96a1fb1e0ca98ca465fa67c848", + "name": "綾瀬穂乃香", + "sldb_cards": [ + 200077, + 200109, + 200243 + ] + }, + "緒方智絵里": { + "id": "12", + "kana": "おがたちえり", + "latest_hash": "aab77d68d6c72c73efda675edbd387a8", + "name": "緒方智絵里", + "sldb_cards": [ + 100015, + 100063, + 100107, + 100241, + 100285, + 100467 + ] + }, + "脇山珠美": { + "id": "121", + "kana": "わきやまたまみ", + "latest_hash": "65c1d041ea9ed32748e96188870b56f5", + "name": "脇山珠美", + "sldb_cards": [ + 200111, + 200131, + 200203, + 200329, + 200419, + 200451 + ] + }, + "若林智香": { + "id": "166", + "kana": "わかばやしともか", + "latest_hash": "90acff12db7ec8895021c3726ee2ab58", + "name": "若林智香", + "sldb_cards": [ + 300083, + 300117, + 300425 + ] + }, + "荒木比奈": { + "id": "76", + "kana": "あらきひな", + "latest_hash": "df6fa045d58337acbd9725d8a940d1b4", + "name": "荒木比奈", + "sldb_cards": [ + 200013, + 200081, + 200271, + 200343 + ] + }, + "菊地真": { + "id": "43", + "kana": "きくちまこと", + "latest_hash": "2838e5d36d4e11a09fac86270dcf63a4", + "name": "菊地真" + }, + "萩原雪歩": { + "id": "176", + "kana": "はぎわらゆきほ", + "latest_hash": "a627c4d6e7a223402aa99e1d174dd7ce", + "name": "萩原雪歩" + }, + "藤原肇": { + "id": "84", + "kana": "ふじわらはじめ", + "latest_hash": "eb1d57f9b906de305439f9ab26c6cdcf", + "name": "藤原肇", + "sldb_cards": [ + 200135, + 200261, + 200307, + 200471 + ] + }, + "藤居朋": { + "id": "119", + "kana": "ふじいとも", + "latest_hash": "cc04b9fd7b06293b952152aef32f4561", + "name": "藤居朋", + "sldb_cards": [ + 200177, + 200263 + ] + }, + "藤本里奈": { + "id": "22", + "kana": "ふじもとりな", + "latest_hash": "746f35295f4f371ec9b71219fb1224ce", + "name": "藤本里奈", + "sldb_cards": [ + 100071, + 100161, + 100231, + 100383 + ] + }, + "衛藤美紗希": { + "id": "155", + "kana": "えとうみさき", + "latest_hash": "7b95eee4202b9c3265ba5a41194b1d34", + "name": "衛藤美紗希", + "sldb_cards": [ + 300257, + 300371 + ] + }, + "西園寺琴歌": { + "id": "33", + "kana": "さいおんじことか", + "latest_hash": "37f641a6738f8d5735db957a37b781ae", + "name": "西園寺琴歌", + "sldb_cards": [ + 100025, + 100061, + 100215, + 100445 + ] + }, + "西島櫂": { + "id": "159", + "kana": "にしじまかい", + "latest_hash": "dd34bfe74931aeab10c7aaafe2832d86", + "name": "西島櫂", + "sldb_cards": [ + 300231, + 300355 + ] + }, + "西川保奈美": { + "id": "117", + "kana": "にしかわほなみ", + "latest_hash": "148c761bd9f2699953da23d185cfed2b", + "name": "西川保奈美", + "sldb_cards": [ + 200315, + 200403 + ] + }, + "諸星きらり": { + "id": "171", + "kana": "もろほしきらり", + "latest_hash": "d5d01a505a212461f49c618591073cf5", + "name": "諸星きらり", + "sldb_cards": [ + 300033, + 300079, + 300109, + 300251, + 300323, + 300391 + ] + }, + "財前時子": { + "id": "161", + "kana": "ざいぜんときこ", + "latest_hash": "7ade063367ad652bc5d05aa008a75237", + "name": "財前時子", + "sldb_cards": [ + 300283, + 300315, + 300419 + ] + }, + "赤城みりあ": { + "id": "143", + "kana": "あかぎみりあ", + "latest_hash": "f2713603ccfb1afc09437a853b864ccd", + "name": "赤城みりあ", + "sldb_cards": [ + 300013, + 300053, + 300151, + 300327, + 300369 + ] + }, + "赤西瑛梨華": { + "id": "28", + "kana": "あかにしえいりか", + "latest_hash": "2fc28fdf3ff00656454cd265ac6ff260", + "name": "赤西瑛梨華", + "sldb_cards": [ + 100341, + 100405 + ] + }, + "輿水幸子": { + "id": "50", + "kana": "こしみずさちこ", + "latest_hash": "6510a11da53b691ab9031a461560116d", + "name": "輿水幸子", + "sldb_cards": [ + 100073, + 100123, + 100209, + 100297, + 100347, + 100411 + ] + }, + "速水奏": { + "id": "123", + "kana": "はやみそう", + "latest_hash": "95d9d50a1d7378f34aaa25491b1fd0ec", + "name": "速水奏", + "sldb_cards": [ + 200037, + 200063, + 200137, + 200235, + 200377, + 200459 + ] + }, + "遊佐こずえ": { + "id": "24", + "kana": "ゆさこずえ", + "latest_hash": "687b4206d88a37c16864b8f4d507f2cb", + "name": "遊佐こずえ", + "sldb_cards": [ + 100283, + 100319, + 100389 + ] + }, + "道明寺歌鈴": { + "id": "41", + "kana": "どうみょうじうたすず", + "latest_hash": "d9be7d1d689f9e143ff27dd1063a0040", + "name": "道明寺歌鈴", + "sldb_cards": [ + 100079, + 100139, + 100271, + 100361, + 100397 + ] + }, + "野々村そら": { + "id": "164", + "kana": "ののむらそら", + "latest_hash": "3c9777fee6bd72b52c4700f384987b3a", + "name": "野々村そら", + "sldb_cards": [ + 300023, + 300401 + ] + }, + "長富蓮実": { + "id": "17", + "kana": "ながとみはすみ", + "latest_hash": "cd8477548a634299e065cc223b70eb74", + "name": "長富蓮実", + "sldb_cards": [ + 100303, + 100381 + ] + }, + "間中美里": { + "id": "10", + "kana": "まなかみさと", + "latest_hash": "bd77e3aa1b781fed0b474a070e939eab", + "name": "間中美里", + "sldb_cards": [ + 100011, + 100463 + ] + }, + "関裕美": { + "id": "19", + "kana": "せきゆみ", + "latest_hash": "6f26798de79180c3bc5aad8a14b31b34", + "name": "関裕美", + "sldb_cards": [ + 100197, + 100259, + 100369, + 100471 + ] + }, + "難波笑美": { + "id": "191", + "kana": "なんばえみ", + "latest_hash": "557803a0324c4d494b78d83b42174e61", + "name": "難波笑美", + "sldb_cards": [ + 300145, + 300161, + 300417 + ] + }, + "首藤葵": { + "id": "195", + "kana": "すどうあおい", + "latest_hash": "b55c0b1bb4d08a833d7ae0fbbd248731", + "name": "首藤葵", + "sldb_cards": [ + 300167, + 300277 + ] + }, + "高垣楓": { + "id": "97", + "kana": "たかがきかえで", + "latest_hash": "8f043af6f6c5ee0f0e01cd50a36a2f66", + "name": "高垣楓", + "sldb_cards": [ + 200023, + 200051, + 200099, + 200165, + 200293, + 200349, + 200441 + ] + }, + "高峯のあ": { + "id": "96", + "kana": "たかみねのあ", + "latest_hash": "eacc9bc4fe9128ac315bf016a2c356c4", + "name": "高峯のあ", + "sldb_cards": [ + 200303, + 200371 + ] + }, + "高森藍子": { + "id": "135", + "kana": "たかもりあいこ", + "latest_hash": "4d91dd57c123958c50421bb04076c240", + "name": "高森藍子", + "sldb_cards": [ + 300003, + 300065, + 300163, + 300303, + 300353, + 300435, + 320225 + ] + }, + "高槻やよい": { + "id": "42", + "kana": "たかつきやよい", + "latest_hash": "404957c126156e54750231e4e58221ad", + "name": "高槻やよい" + }, + "高橋礼子": { + "id": "71", + "kana": "たかはしれいこ", + "latest_hash": "79b7221bfb5db0a94baf512abe1eb5eb", + "name": "高橋礼子", + "sldb_cards": [ + 200245, + 200275 + ] + }, + "鷹富士茄子": { + "id": "133", + "kana": "たかふじなす", + "latest_hash": "715b793aa4d3b15051658c0100f70bde", + "name": "鷹富士茄子", + "sldb_cards": [ + 200337, + 200347 + ] + }, + "鷺沢文香": { + "id": "89", + "kana": "さぎさわふみか", + "latest_hash": "bd02113f22c12494c713a43bcc0c8e90", + "name": "鷺沢文香", + "sldb_cards": [ + 200091, + 200107, + 200249, + 200281, + 200439 + ] + }, + "黒川千秋": { + "id": "68", + "kana": "くろかわちあき", + "latest_hash": "1b13a47f1e86ec39ecf4974fe3049ff9", + "name": "黒川千秋", + "sldb_cards": [ + 200003, + 200167, + 200461 + ] + }, + "龍崎薫": { + "id": "137", + "kana": "りゅうざきかおる", + "latest_hash": "3d60bd5856309ade51e8d694c9ce0f57", + "name": "龍崎薫", + "sldb_cards": [ + 300007, + 300087, + 300193, + 300321 + ] + } +} \ No newline at end of file From c418dfe91324534c58e1c8957258ce290fd9430b Mon Sep 17 00:00:00 2001 From: ne-peer Date: Tue, 5 Dec 2017 15:05:44 +0900 Subject: [PATCH 11/19] [add] create char model --- src/app/models/api/starlightdb/list/char.ts | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/app/models/api/starlightdb/list/char.ts diff --git a/src/app/models/api/starlightdb/list/char.ts b/src/app/models/api/starlightdb/list/char.ts new file mode 100644 index 0000000..5021d11 --- /dev/null +++ b/src/app/models/api/starlightdb/list/char.ts @@ -0,0 +1,17 @@ +import { Serializable } from '../../../base/serializable'; + +export class Char extends Serializable { + + constructor( + public charaId?: number, + public conventional?: string, + public kanjiSpaced?: string, + public kanaSpaced?: string, + public cards?: number[], + public ref?: string + ) { + // 親コンストラクタの呼び出し + super(); + } + +} From 6cd080766b26bcf75777c0a8d8d41429b412d6c7 Mon Sep 17 00:00:00 2001 From: ne-peer Date: Tue, 5 Dec 2017 15:15:38 +0900 Subject: [PATCH 12/19] =?UTF-8?q?[fix]=20sldb=E3=83=87=E3=83=BC=E3=82=BF?= =?UTF-8?q?=E3=82=92=E3=82=82=E3=81=A8=E3=81=ABoverview=E3=81=AE=E3=81=B5?= =?UTF-8?q?=E3=82=8A=E3=81=8C=E3=81=AA=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../db/master/core/dere_overview-export.json | 78 +++++++++---------- 1 file changed, 39 insertions(+), 39 deletions(-) diff --git a/resource/db/master/core/dere_overview-export.json b/resource/db/master/core/dere_overview-export.json index f1f2baa..cb51c26 100644 --- a/resource/db/master/core/dere_overview-export.json +++ b/resource/db/master/core/dere_overview-export.json @@ -16,7 +16,7 @@ }, "イヴ・サンタクロース": { "id": "200", - "kana": "いヴ・さんたくろーす", + "kana": "いゔ・さんたくろーす", "latest_hash": "876fb43ce5ef639022ddf7ce233a859a", "name": "イヴ・サンタクロース", "sldb_cards": [ @@ -124,7 +124,7 @@ }, "一ノ瀬志希": { "id": "26", - "kana": "いちのせこころざしのぞみ", + "kana": "いちのせしき", "latest_hash": "bb156a253fc247462a87b20eee8770f5", "name": "一ノ瀬志希", "sldb_cards": [ @@ -168,7 +168,7 @@ }, "三船美優": { "id": "81", - "kana": "みふねみゅう", + "kana": "みふねみゆ", "latest_hash": "be6c919489145ab6fcf4735fccad0f5c", "name": "三船美優", "sldb_cards": [ @@ -239,7 +239,7 @@ }, "乙倉悠貴": { "id": "64", - "kana": "おつくらゆき", + "kana": "おとくらゆうき", "latest_hash": "ad1d9695914de9d5464ffe838872530f", "name": "乙倉悠貴", "sldb_cards": [ @@ -279,7 +279,7 @@ }, "井村雪菜": { "id": "47", - "kana": "いむらゆきな", + "kana": "いむらせつな", "latest_hash": "9394a74e8344967cbf42eb20eae12ab5", "name": "井村雪菜", "sldb_cards": [ @@ -300,7 +300,7 @@ }, "仙崎恵磨": { "id": "169", - "kana": "せんざきめぐみま", + "kana": "せんざきえま", "latest_hash": "1ee716e4411265ade87048be92422d1d", "name": "仙崎恵磨", "sldb_cards": [ @@ -371,7 +371,7 @@ }, "依田芳乃": { "id": "162", - "kana": "よだよしの", + "kana": "よりたよしの", "latest_hash": "86045c8c5c85b81aa51156dbcdb0e1a5", "name": "依田芳乃", "sldb_cards": [ @@ -457,7 +457,7 @@ }, "十時愛梨": { "id": "172", - "kana": "とときえり", + "kana": "とときあいり", "latest_hash": "36516e31833083116be887f5b74985ab", "name": "十時愛梨", "sldb_cards": [ @@ -471,7 +471,7 @@ }, "南条光": { "id": "198", - "kana": "なんじょうひかり", + "kana": "なんじょうひかる", "latest_hash": "6cdda5b7a8549133166ba9eb9be99096", "name": "南条光", "sldb_cards": [ @@ -481,7 +481,7 @@ }, "原田美世": { "id": "65", - "kana": "はらだみせい", + "kana": "はらだみよ", "latest_hash": "1be46e70f136716b759b15340806be70", "name": "原田美世", "sldb_cards": [ @@ -597,7 +597,7 @@ }, "喜多見柚": { "id": "149", - "kana": "きたみゆ", + "kana": "きたみゆず", "latest_hash": "d2f0b1423a844ac537fa255c1e383b22", "name": "喜多見柚", "sldb_cards": [ @@ -816,7 +816,7 @@ }, "安部菜々": { "id": "54", - "kana": "あべさい々", + "kana": "あべなな", "latest_hash": "4646da2024bcd18a3334ba0c06a7770d", "name": "安部菜々", "sldb_cards": [ @@ -852,7 +852,7 @@ }, "小日向美穂": { "id": "11", - "kana": "おびなたみほ", + "kana": "こひなたみほ", "latest_hash": "6c7bab6998ae7b616fc1598308ba201b", "name": "小日向美穂", "sldb_cards": [ @@ -889,7 +889,7 @@ }, "小関麗奈": { "id": "154", - "kana": "こせきれな", + "kana": "こせきれいな", "latest_hash": "f6119202da4cb7287258017f533e28a7", "name": "小関麗奈", "sldb_cards": [ @@ -911,7 +911,7 @@ }, "岸部彩華": { "id": "115", - "kana": "きしべいろは", + "kana": "きしべあやか", "latest_hash": "2c67e5e41d85f043ffc99b92a4873ae1", "name": "岸部彩華", "sldb_cards": [ @@ -960,7 +960,7 @@ }, "市原仁奈": { "id": "183", - "kana": "いちはらひとしな", + "kana": "いちはらにな", "latest_hash": "f8e4f10ef977349e598b44f6ca5f0141", "name": "市原仁奈", "sldb_cards": [ @@ -1080,7 +1080,7 @@ }, "星輝子": { "id": "156", - "kana": "ほしてるこ", + "kana": "ほししょうこ", "latest_hash": "22aced971fa5898c838516e6f15fe27d", "name": "星輝子", "sldb_cards": [ @@ -1093,7 +1093,7 @@ }, "月宮雅": { "id": "38", - "kana": "つきみやまさし", + "kana": "つきみやみやび", "latest_hash": "ea6ea7bc7bb994ee3f40bf04f6126ec8", "name": "月宮雅", "sldb_cards": [ @@ -1103,7 +1103,7 @@ }, "有浦柑奈": { "id": "63", - "kana": "ゆううらかんな", + "kana": "ありうらかんな", "latest_hash": "23ad85825d08c2b01758a0a95eee45d2", "name": "有浦柑奈", "sldb_cards": [ @@ -1123,7 +1123,7 @@ }, "望月聖": { "id": "132", - "kana": "もちづききよし", + "kana": "もちづきひじり", "latest_hash": "3e6deec005701d78f54d7108ff35df41", "name": "望月聖", "sldb_cards": [ @@ -1132,7 +1132,7 @@ }, "木場真奈美": { "id": "83", - "kana": "こばまなみ", + "kana": "きばまなみ", "latest_hash": "a53f598eea9637e74b08e76c96d18d4b", "name": "木場真奈美", "sldb_cards": [ @@ -1277,7 +1277,7 @@ }, "柳清良": { "id": "45", - "kana": "やなぎきよしりょう", + "kana": "やなぎきよら", "latest_hash": "5889d8f072f2fac046d4e3b55e2ac4ce", "name": "柳清良", "sldb_cards": [ @@ -1349,7 +1349,7 @@ }, "棟方愛海": { "id": "21", - "kana": "むなかたあいうみ", + "kana": "むなかたあつみ", "latest_hash": "6266ac4f14b93b3859953ec5f6e94cb4", "name": "棟方愛海", "sldb_cards": [ @@ -1360,7 +1360,7 @@ }, "森久保乃々": { "id": "126", - "kana": "もりくぼの々", + "kana": "もりくぼのの", "latest_hash": "323901218db4adb11070ca80dbaa2339", "name": "森久保乃々", "sldb_cards": [ @@ -1386,7 +1386,7 @@ }, "楊菲菲": { "id": "35", - "kana": "よううすうす", + "kana": "やおふぇいふぇい", "latest_hash": "6f2cef2655f476d2f3f6ea80d8f481ec", "name": "楊菲菲", "sldb_cards": [ @@ -1519,7 +1519,7 @@ }, "池袋晶葉": { "id": "66", - "kana": "いけぶくろあきらよう", + "kana": "いけぶくろあきは", "latest_hash": "f14270b8f9920a77b665767587d06b48", "name": "池袋晶葉", "sldb_cards": [ @@ -1539,7 +1539,7 @@ }, "浅利七海": { "id": "92", - "kana": "あさりななうみ", + "kana": "あさりななみ", "latest_hash": "3680d1991b44b9d38b902639964525ed", "name": "浅利七海", "sldb_cards": [ @@ -1549,7 +1549,7 @@ }, "浅野風香": { "id": "52", - "kana": "あさのふうかおる", + "kana": "あさのふうか", "latest_hash": "3e11cdda3fb461943a95a243ccb16db8", "name": "浅野風香", "sldb_cards": [ @@ -1571,7 +1571,7 @@ }, "浜川愛結奈": { "id": "165", - "kana": "はまかわあいゆいな", + "kana": "はまかわあゆな", "latest_hash": "aa9f7f62858b8a7afc5bf79a5d8bb989", "name": "浜川愛結奈", "sldb_cards": [ @@ -1601,7 +1601,7 @@ }, "渋谷凛": { "id": "67", - "kana": "しぶたにりん", + "kana": "しぶやりん", "latest_hash": "4ebbcc60acba9e2760af8a5be417782d", "name": "渋谷凛", "sldb_cards": [ @@ -1730,7 +1730,7 @@ }, "矢口美羽": { "id": "142", - "kana": "やぐちみわ", + "kana": "やぐちみう", "latest_hash": "c0bb1ce2f048f36f6397fc8dd094cc23", "name": "矢口美羽", "sldb_cards": [ @@ -1800,7 +1800,7 @@ }, "結城晴": { "id": "129", - "kana": "ゆうきはれ", + "kana": "ゆうきはる", "latest_hash": "f3b9ea014c6bc64c930947cc9221d3c9", "name": "結城晴", "sldb_cards": [ @@ -1960,7 +1960,7 @@ }, "諸星きらり": { "id": "171", - "kana": "もろほしきらり", + "kana": "もろぼしきらり", "latest_hash": "d5d01a505a212461f49c618591073cf5", "name": "諸星きらり", "sldb_cards": [ @@ -1998,7 +1998,7 @@ }, "赤西瑛梨華": { "id": "28", - "kana": "あかにしえいりか", + "kana": "あかにしえりか", "latest_hash": "2fc28fdf3ff00656454cd265ac6ff260", "name": "赤西瑛梨華", "sldb_cards": [ @@ -2022,7 +2022,7 @@ }, "速水奏": { "id": "123", - "kana": "はやみそう", + "kana": "はやみかなで", "latest_hash": "95d9d50a1d7378f34aaa25491b1fd0ec", "name": "速水奏", "sldb_cards": [ @@ -2047,7 +2047,7 @@ }, "道明寺歌鈴": { "id": "41", - "kana": "どうみょうじうたすず", + "kana": "どうみょうじかりん", "latest_hash": "d9be7d1d689f9e143ff27dd1063a0040", "name": "道明寺歌鈴", "sldb_cards": [ @@ -2090,7 +2090,7 @@ }, "関裕美": { "id": "19", - "kana": "せきゆみ", + "kana": "せきひろみ", "latest_hash": "6f26798de79180c3bc5aad8a14b31b34", "name": "関裕美", "sldb_cards": [ @@ -2113,7 +2113,7 @@ }, "首藤葵": { "id": "195", - "kana": "すどうあおい", + "kana": "しゅとうあおい", "latest_hash": "b55c0b1bb4d08a833d7ae0fbbd248731", "name": "首藤葵", "sldb_cards": [ @@ -2179,7 +2179,7 @@ }, "鷹富士茄子": { "id": "133", - "kana": "たかふじなす", + "kana": "たかふじかこ", "latest_hash": "715b793aa4d3b15051658c0100f70bde", "name": "鷹富士茄子", "sldb_cards": [ From f2e00ee67541092e0926e800cbcbf8276fd1a467 Mon Sep 17 00:00:00 2001 From: ne-peer Date: Tue, 5 Dec 2017 15:18:47 +0900 Subject: [PATCH 13/19] [update] json formated --- resource/db/master/core/dere_list-export.json | 139322 ++++++++------- resource/db/master/core/unit_list-export.json | 2877 +- 2 files changed, 76585 insertions(+), 65614 deletions(-) diff --git a/resource/db/master/core/dere_list-export.json b/resource/db/master/core/dere_list-export.json index 38b8678..bfa39a6 100644 --- a/resource/db/master/core/dere_list-export.json +++ b/resource/db/master/core/dere_list-export.json @@ -1,64749 +1,74573 @@ -[ null, { - "aliases" : [ { - "hash" : "0dabb79ff64691111a0abae2ffed01ce", - "id" : "1000101", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "87", - "waist" : "59", - "weight" : "45" - } - }, { - "hash" : "798ed3093c682f20234934cef65c2106", - "id" : "1100102", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "87", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "2ndアニバーサリー", - "alias_name_display" : "2ndアニバーサリー", - "event" : [ { - "event_id" : 410, - "event_name" : "アイドルプロデュース the 2nd Anniversary" - } ], - "hash" : "250645af5bca76120314f21e69b0caca", - "id" : "1213201", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "87", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "2ndアニバーサリー", - "alias_name_display" : "2ndアニバーサリー", - "event" : [ { - "event_id" : 410, - "event_name" : "アイドルプロデュース the 2nd Anniversary" - } ], - "hash" : "5ebb3e7bbe7fd6a46a5bfc3eab50097f", - "id" : "1313202", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "87", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "2ndアニバーサリー・スマイル", - "alias_name_display" : "2ndアニバーサリー・スマイル", - "event" : [ { - "event_id" : 410, - "event_name" : "アイドルプロデュース the 2nd Anniversary" - } ], - "hash" : "61bde20d527ff4744e91729ffbd67058", - "id" : "1213301", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "87", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "2ndアニバーサリー・スマイル", - "alias_name_display" : "2ndアニバーサリー・スマイル", - "event" : [ { - "event_id" : 410, - "event_name" : "アイドルプロデュース the 2nd Anniversary" - } ], - "hash" : "421e19ae69094b30d5edd8fa97e4d7bf", - "id" : "1313302", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "87", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "2ndアニバーサリー・ネコミミ", - "alias_name_display" : "2ndアニバーサリー・ネコミミ", - "event" : [ { - "event_id" : 410, - "event_name" : "アイドルプロデュース the 2nd Anniversary" - } ], - "hash" : "7d7fa151dcc1e44e6aaeadb3fd14eab7", - "id" : "1213401", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "87", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "2ndアニバーサリー・ネコミミ", - "alias_name_display" : "2ndアニバーサリー・ネコミミ", - "event" : [ { - "event_id" : 410, - "event_name" : "アイドルプロデュース the 2nd Anniversary" - } ], - "hash" : "09b1b846d0f89dc251b0bcac4e497e14", - "id" : "1313402", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "87", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "ニュージェネレーション", - "alias_name_display" : "ニュージェネレーション", - "hash" : "00f4266728c5a057c338b3033a9aa17c", - "id" : "1401801", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "87", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "ニュージェネレーション", - "alias_name_display" : "ニュージェネレーション", - "hash" : "c33c2372ddc593434572ddc9265d64e4", - "id" : "1501802", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "87", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "f69c865e5d5e3ef35843e5900ffad3be", - "id" : "1402501", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "87", - "waist" : "59", - "weight" : "45" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "aa559b2b0e83b4b98c5372b171b2e9f7", - "id" : "1502502", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "87", - "waist" : "59", - "weight" : "45" - } - }, { - "alias_name" : "新春の華姫", - "alias_name_display" : "新春の華姫", - "hash" : "6628f9feaa319f6b228fb52b057388d0", - "id" : "1404501", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "87", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "新春の華姫", - "alias_name_display" : "新春の華姫", - "hash" : "eb58e141b268cd2c22134a8572fb14bc", - "id" : "1504502", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "87", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "はじけて♪サマー", - "alias_name_display" : "はじけて♪サマー", - "hash" : "a8ac3c44eb75cd9b5b3b359cab9f3f31", - "id" : "1411801", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "87", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "はじけて♪サマー", - "alias_name_display" : "はじけて♪サマー", - "hash" : "15159f0ac1f58bdd90ddd0532faaa4d1", - "id" : "1511802", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "87", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "ワンダフルマジック", - "alias_name_display" : "ワンダフルマジック", - "hash" : "00a10e6b8e178ce3976b1b0456af74ca", - "id" : "1413401", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "87", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "ワンダフルマジック", - "alias_name_display" : "ワンダフルマジック", - "hash" : "865bdc197f5ee49d902694d6ebfc9022", - "id" : "1513402", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "87", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "ウィーアーザフレンズ", - "alias_name_display" : "ウィーアーザフレンズ", - "hash" : "f781ef4c14e675083bc0068d34e09386", - "id" : "1517002", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "87", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "アニバーサリーフォーユー", - "alias_name_display" : "アニバーサリーフォーユー", - "hash" : "a9377e14d83aad99d635f52da5bdaaee", - "id" : "1420301", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "87", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "アニバーサリーフォーユー", - "alias_name_display" : "アニバーサリーフォーユー", - "hash" : "616664284f3ddf53a42d0b626133a9f4", - "id" : "1520302", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "87", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "ドリームストーリー", - "alias_name_display" : "ドリームストーリー", - "hash" : "34e7b232ee8887d3561285595ce8ce8b", - "id" : "1521402", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "87", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "G4U!", - "alias_name_display" : "G4U!", - "hash" : "f28077a23bfe9608f2ee0971655cd492", - "id" : "1523802", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "87", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "ワンダーメイド", - "alias_name_display" : "ワンダーメイド", - "hash" : "c7424c2f32ffb2348a2fe5f7bb9d70ba", - "id" : "1427201", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "87", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "ワンダーメイド", - "alias_name_display" : "ワンダーメイド", - "hash" : "700fb803afd6413117dcd8d4b499745b", - "id" : "1527202", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "87", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "笑顔の原点", - "alias_name_display" : "笑顔の原点", - "hash" : "ba0bdaa1002fbe32da508725212d1f92", - "id" : "1432701", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "87", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "笑顔の原点", - "alias_name_display" : "笑顔の原点", - "hash" : "a366ceb2fcfda4f30ada58439dfc80c1", - "id" : "1532702", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "87", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "シンデレラガール", - "alias_name_display" : "シンデレラガール", - "hash" : "d42b08b2d8bccbfaa9324bbda41de0d1", - "id" : "1434001", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "87", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "シンデレラガール", - "alias_name_display" : "シンデレラガール", - "hash" : "2e4a0459415d8d8b8600bb80a777d85b", - "id" : "1534002", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "87", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "アニバーサリープリンセス", - "alias_name_display" : "アニバーサリープリンセス", - "event" : [ { - "event_id" : 1708, - "event_name" : "アイドルプロデュース the 5th Anniversary" - } ], - "hash" : "8b1ad6b6bd53c893b9107819c9bd0495", - "id" : "1436601", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "87", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "アニバーサリープリンセス", - "alias_name_display" : "アニバーサリープリンセス", - "event" : [ { - "event_id" : 1708, - "event_name" : "アイドルプロデュース the 5th Anniversary" - } ], - "hash" : "1338de950f95214e111dad2943f191c8", - "id" : "1536602", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "87", - "waist" : "58", - "weight" : "44" - } - } ], - "idol_id" : 1, - "idol_name" : "島村卯月", - "idol_name_display" : "島村卯月", - "units" : [ { - "id" : "21", - "name" : "ジェネレーションオブサマー" - }, { - "id" : "109", - "name" : "new generations" - }, { - "id" : "135", - "name" : "ピンキーキュート" - }, { - "id" : "138", - "name" : "ピンクチェックスクール" - }, { - "id" : "195", - "name" : "C5" - }, { - "id" : "205", - "name" : "シンデレラガール" - }, { - "id" : "213", - "name" : "CINDERELLA PROJECT" - } ] -}, { - "aliases" : [ { - "hash" : "46c53f722dfaa05a4f4d36b7821a686a", - "id" : "1000201", - "profile" : { - "bust" : "77", - "height" : "149", - "hip" : "81", - "waist" : "57", - "weight" : "40" - } - }, { - "hash" : "929d8ba093d1be6624734173b6e5066a", - "id" : "1100202", - "profile" : { - "bust" : "77", - "height" : "149", - "hip" : "81", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "お花見", - "alias_name_display" : "お花見", - "event" : [ { - "event_id" : 104, - "event_name" : "桜舞う花見祭り" - } ], - "hash" : "22fd192e16f0ee5d1539b343a8f18925", - "id" : "1203701", - "profile" : { - "bust" : "77", - "height" : "149", - "hip" : "81", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "お花見", - "alias_name_display" : "お花見", - "event" : [ { - "event_id" : 104, - "event_name" : "桜舞う花見祭り" - } ], - "hash" : "2c97a783f38ff22d0a8a903358acf92a", - "id" : "1303702", - "profile" : { - "bust" : "77", - "height" : "149", - "hip" : "81", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "パワフル&スマイル", - "alias_name_display" : "パワフル&スマイル", - "hash" : "5f74fa33d7f4d70270d5de88b9607222", - "id" : "1205701", - "profile" : { - "bust" : "77", - "height" : "149", - "hip" : "81", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "パワフル&スマイル", - "alias_name_display" : "パワフル&スマイル", - "hash" : "e23e339b42039e29def1a1d3fb53f341", - "id" : "1305702", - "profile" : { - "bust" : "77", - "height" : "149", - "hip" : "81", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "ビキニチャレンジ", - "alias_name_display" : "ビキニチャレンジ", - "event" : [ { - "event_id" : 702, - "event_name" : "水着DEドリームLIVEフェスティバル" - } ], - "hash" : "2a44bb0f8a3f6056ee6ae93ce85d37e0", - "id" : "1211201", - "profile" : { - "bust" : "77", - "height" : "149", - "hip" : "81", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "ビキニチャレンジ", - "alias_name_display" : "ビキニチャレンジ", - "event" : [ { - "event_id" : 702, - "event_name" : "水着DEドリームLIVEフェスティバル" - } ], - "hash" : "5728168713d43f6166617778d5383d17", - "id" : "1311202", - "profile" : { - "bust" : "77", - "height" : "149", - "hip" : "81", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "ナデシコI.C", - "alias_name_display" : "ナデシコI.C", - "event" : [ { - "event_id" : 1207, - "event_name" : "目指せ大和撫子 アイドルチャレンジ" - } ], - "hash" : "c544cf8434aad3802004185664a27d82", - "id" : "1323702", - "profile" : { - "bust" : "77", - "height" : "149", - "hip" : "81", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "ウェディングセレモニー", - "alias_name_display" : "ウェディングセレモニー", - "hash" : "036055e8855d54d50bf860b2e8e886c0", - "id" : "1230301", - "profile" : { - "bust" : "77", - "height" : "149", - "hip" : "81", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "ウェディングセレモニー", - "alias_name_display" : "ウェディングセレモニー", - "hash" : "887f02780b02259ae8143b985b2d7510", - "id" : "1330302", - "profile" : { - "bust" : "77", - "height" : "149", - "hip" : "81", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "プリティパティシエ", - "alias_name_display" : "プリティパティシエ", - "event" : [ { - "event_id" : 405, - "event_name" : "アイドルプロデュース バレンタイン編" - } ], - "hash" : "f93a42096ba8aa95b7c3bc45aa0a3003", - "id" : "1405101", - "profile" : { - "bust" : "77", - "height" : "149", - "hip" : "81", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "プリティパティシエ", - "alias_name_display" : "プリティパティシエ", - "event" : [ { - "event_id" : 405, - "event_name" : "アイドルプロデュース バレンタイン編" - } ], - "hash" : "f4391f44173bd50a0c6dd83065936908", - "id" : "1505102", - "profile" : { - "bust" : "77", - "height" : "149", - "hip" : "81", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "スマイルパティシエ", - "alias_name_display" : "スマイルパティシエ", - "event" : [ { - "event_id" : 405, - "event_name" : "アイドルプロデュース バレンタイン編" - } ], - "hash" : "070e8c432c9dbd4fa1b2fa926d307839", - "id" : "1405201", - "profile" : { - "bust" : "77", - "height" : "149", - "hip" : "81", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "スマイルパティシエ", - "alias_name_display" : "スマイルパティシエ", - "event" : [ { - "event_id" : 405, - "event_name" : "アイドルプロデュース バレンタイン編" - } ], - "hash" : "3bcf46aeeb08f4688e1bcd7cc505be95", - "id" : "1505202", - "profile" : { - "bust" : "77", - "height" : "149", - "hip" : "81", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "ファイティングチアー", - "alias_name_display" : "ファイティングチアー", - "event" : [ { - "event_id" : 1101, - "event_name" : "プロダクション対抗トークバトルショー" - } ], - "hash" : "c9aed64496ffbddde3dfe139f5821d81", - "id" : "1412801", - "profile" : { - "bust" : "77", - "height" : "149", - "hip" : "81", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "ファイティングチアー", - "alias_name_display" : "ファイティングチアー", - "event" : [ { - "event_id" : 1101, - "event_name" : "プロダクション対抗トークバトルショー" - } ], - "hash" : "f1f5d41ea64dc5f21d2f22b17bf37972", - "id" : "1512802", - "profile" : { - "bust" : "77", - "height" : "149", - "hip" : "81", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "流麗武闘", - "alias_name_display" : "流麗武闘", - "event" : [ { - "event_id" : 514, - "event_name" : "功夫公演 香港大決戦" - } ], - "hash" : "aee2ad73ab0ea320d72882ee5d3c12b5", - "id" : "1418401", - "profile" : { - "bust" : "77", - "height" : "149", - "hip" : "81", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "流麗武闘", - "alias_name_display" : "流麗武闘", - "event" : [ { - "event_id" : 514, - "event_name" : "功夫公演 香港大決戦" - } ], - "hash" : "1a647c3d7de9bc4ca3b5ec62c7a3d4f5", - "id" : "1518402", - "profile" : { - "bust" : "77", - "height" : "149", - "hip" : "81", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "日々鍛錬", - "alias_name_display" : "日々鍛錬", - "hash" : "077286881073bf516cb65a8fa9aedaf2", - "id" : "1423301", - "profile" : { - "bust" : "77", - "height" : "149", - "hip" : "81", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "日々鍛錬", - "alias_name_display" : "日々鍛錬", - "hash" : "026f207848544f8ddba5ca6743dc56f4", - "id" : "1523302", - "profile" : { - "bust" : "77", - "height" : "149", - "hip" : "81", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "舞踊の大和撫子", - "alias_name_display" : "舞踊の大和撫子", - "event" : [ { - "event_id" : 1207, - "event_name" : "目指せ大和撫子 アイドルチャレンジ" - } ], - "hash" : "96c0809449a3a9c7eea157ffa9c586d7", - "id" : "1427601", - "profile" : { - "bust" : "77", - "height" : "149", - "hip" : "81", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "舞踊の大和撫子", - "alias_name_display" : "舞踊の大和撫子", - "event" : [ { - "event_id" : 1207, - "event_name" : "目指せ大和撫子 アイドルチャレンジ" - } ], - "hash" : "bf895736a930908d3f6ccd71065ee6d8", - "id" : "1527602", - "profile" : { - "bust" : "77", - "height" : "149", - "hip" : "81", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "舞踊の大和撫子・S", - "alias_name_display" : "舞踊の大和撫子・S", - "event" : [ { - "event_id" : 1207, - "event_name" : "目指せ大和撫子 アイドルチャレンジ" - } ], - "hash" : "742359412cdfd26e34574d29b931e81a", - "id" : "1427701", - "profile" : { - "bust" : "77", - "height" : "149", - "hip" : "81", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "舞踊の大和撫子・S", - "alias_name_display" : "舞踊の大和撫子・S", - "event" : [ { - "event_id" : 1207, - "event_name" : "目指せ大和撫子 アイドルチャレンジ" - } ], - "hash" : "cd2ea844567cc89df463cc94e87ede48", - "id" : "1527702", - "profile" : { - "bust" : "77", - "height" : "149", - "hip" : "81", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "2a73950f13b4fe7b694e9ecbdf8e9216", - "id" : "1431601", - "profile" : { - "bust" : "77", - "height" : "149", - "hip" : "81", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "0b8aba8c0d1c322588c7786f420d0717", - "id" : "1531602", - "profile" : { - "bust" : "77", - "height" : "149", - "hip" : "81", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "パワフルチャージ", - "alias_name_display" : "パワフルチャージ", - "hash" : "1e636fde2ac167157ac7a3110085f226", - "id" : "1432201", - "profile" : { - "bust" : "77", - "height" : "149", - "hip" : "81", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "パワフルチャージ", - "alias_name_display" : "パワフルチャージ", - "hash" : "7fe5882d01aa44bbd57c2a3e4bf8307d", - "id" : "1532202", - "profile" : { - "bust" : "77", - "height" : "149", - "hip" : "81", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "湯の花乙女", - "alias_name_display" : "湯の花乙女", - "hash" : "3822324e5238a535b49fd5be10e0f985", - "id" : "1439101", - "profile" : { - "bust" : "77", - "height" : "149", - "hip" : "81", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "湯の花乙女", - "alias_name_display" : "湯の花乙女", - "hash" : "b1976493a44373a42a7087ea012da84a", - "id" : "1539102", - "profile" : { - "bust" : "77", - "height" : "149", - "hip" : "81", - "waist" : "57", - "weight" : "40" - } - } ], - "idol_id" : 2, - "idol_name" : "中野有香", - "idol_name_display" : "中野有香", - "units" : [ { - "id" : "27", - "name" : "ストレートフルート" - }, { - "id" : "136", - "name" : "メロウ・イエロー" - }, { - "id" : "160", - "name" : "ハッピーバレンタイン" - }, { - "id" : "187", - "name" : "NEX-US" - }, { - "id" : "193", - "name" : "イエローリリー" - }, { - "id" : "196", - "name" : "la Roseraie" - } ] -}, { - "aliases" : [ { - "hash" : "5a32b53f2943c5c7b76b18c0e098f400", - "id" : "1000301", - "profile" : { - "bust" : "81", - "height" : "155", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "hash" : "4b39f05563a8175f27b8d893561976ee", - "id" : "1100302", - "profile" : { - "bust" : "81", - "height" : "155", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "純粋奏者", - "alias_name_display" : "純粋奏者", - "hash" : "57c3dca535e8b78bb9ba031c065690ed", - "id" : "1203501", - "profile" : { - "bust" : "81", - "height" : "155", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "純粋奏者", - "alias_name_display" : "純粋奏者", - "hash" : "e3ae28f9dae9077d49ff85eedf90d38d", - "id" : "1303502", - "profile" : { - "bust" : "81", - "height" : "155", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "ヴォヤージュ・ヒーラー", - "alias_name_display" : "ヴォヤージュ・ヒーラー", - "event" : [ { - "event_id" : 511, - "event_name" : "幻想公演 黒薔薇姫のヴォヤージュ" - } ], - "hash" : "12a16e06fe32d7bfec53eba8ca6f67de", - "id" : "1215401", - "profile" : { - "bust" : "81", - "height" : "155", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "ヴォヤージュ・ヒーラー", - "alias_name_display" : "ヴォヤージュ・ヒーラー", - "event" : [ { - "event_id" : 511, - "event_name" : "幻想公演 黒薔薇姫のヴォヤージュ" - } ], - "hash" : "ce97613529cae736a80ecd5a24ff0c05", - "id" : "1315402", - "profile" : { - "bust" : "81", - "height" : "155", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "自然なテンポ", - "alias_name_display" : "自然なテンポ", - "hash" : "99994fd85c91d0c29fe5531d99fcf38d", - "id" : "1220901", - "profile" : { - "bust" : "81", - "height" : "155", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "自然なテンポ", - "alias_name_display" : "自然なテンポ", - "hash" : "cdbe1c879b7bbb71c58e0d0b7d0161a1", - "id" : "1320902", - "profile" : { - "bust" : "81", - "height" : "155", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "ウェディングI.C", - "alias_name_display" : "ウェディングI.C", - "event" : [ { - "event_id" : 1206, - "event_name" : "目指せウェディングモデル アイドルチャレンジ" - } ], - "hash" : "7d5aa18aec3123ba1e95812ef0561f39", - "id" : "1322002", - "profile" : { - "bust" : "81", - "height" : "155", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "スクールメロディー", - "alias_name_display" : "スクールメロディー", - "hash" : "1068a0adedbd74a596f77200e983813f", - "id" : "1232101", - "profile" : { - "bust" : "81", - "height" : "155", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "スクールメロディー", - "alias_name_display" : "スクールメロディー", - "hash" : "801ae1b1b6aae6d32a62ae3f6e05f5f6", - "id" : "1332102", - "profile" : { - "bust" : "81", - "height" : "155", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "清純令嬢", - "alias_name_display" : "清純令嬢", - "hash" : "063b5513bbd62fb98cfab5b98edee7b6", - "id" : "1404401", - "profile" : { - "bust" : "81", - "height" : "155", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "清純令嬢", - "alias_name_display" : "清純令嬢", - "hash" : "39fcc8af5585b77a898d2b0a30ba7b9a", - "id" : "1504402", - "profile" : { - "bust" : "81", - "height" : "155", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "素顔のお嬢様", - "alias_name_display" : "素顔のお嬢様", - "event" : [ { - "event_id" : 801, - "event_name" : "アイドルLIVEロワイヤル" - } ], - "hash" : "3916b51a4d2993ae85d4315532fb635c", - "id" : "1409301", - "profile" : { - "bust" : "81", - "height" : "155", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "素顔のお嬢様", - "alias_name_display" : "素顔のお嬢様", - "event" : [ { - "event_id" : 801, - "event_name" : "アイドルLIVEロワイヤル" - } ], - "hash" : "65b1614f1d60f9654a0e57ed0e157409", - "id" : "1509302", - "profile" : { - "bust" : "81", - "height" : "155", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "誠実なる花嫁", - "alias_name_display" : "誠実なる花嫁", - "event" : [ { - "event_id" : 1206, - "event_name" : "目指せウェディングモデル アイドルチャレンジ" - } ], - "hash" : "36b04f9bf0aa3a07751364ba1660cddf", - "id" : "1424901", - "profile" : { - "bust" : "81", - "height" : "155", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "誠実なる花嫁", - "alias_name_display" : "誠実なる花嫁", - "event" : [ { - "event_id" : 1206, - "event_name" : "目指せウェディングモデル アイドルチャレンジ" - } ], - "hash" : "4eac93743268759f36147deee87e59e9", - "id" : "1524902", - "profile" : { - "bust" : "81", - "height" : "155", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "誠実なる花嫁・S", - "alias_name_display" : "誠実なる花嫁・S", - "event" : [ { - "event_id" : 1206, - "event_name" : "目指せウェディングモデル アイドルチャレンジ" - } ], - "hash" : "7fdbcc0917346497b8c7fbf9241e9ce1", - "id" : "1425001", - "profile" : { - "bust" : "81", - "height" : "155", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "誠実なる花嫁・S", - "alias_name_display" : "誠実なる花嫁・S", - "event" : [ { - "event_id" : 1206, - "event_name" : "目指せウェディングモデル アイドルチャレンジ" - } ], - "hash" : "722d3107b2c4c73e3ca66ad25ba67cfa", - "id" : "1525002", - "profile" : { - "bust" : "81", - "height" : "155", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "冬のハーモニー", - "alias_name_display" : "冬のハーモニー", - "event" : [ { - "event_id" : 1505, - "event_name" : "チーム対抗トークバトルショー ウィンターSP" - } ], - "hash" : "718d1b6bbb63606ba766256b8527b66c", - "id" : "1430701", - "profile" : { - "bust" : "81", - "height" : "155", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "冬のハーモニー", - "alias_name_display" : "冬のハーモニー", - "event" : [ { - "event_id" : 1505, - "event_name" : "チーム対抗トークバトルショー ウィンターSP" - } ], - "hash" : "19dca795d6ca96446f8949d9619c441d", - "id" : "1530702", - "profile" : { - "bust" : "81", - "height" : "155", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "エフォートブリランテ", - "alias_name_display" : "エフォートブリランテ", - "hash" : "4cb935f4cee9ad752573a9d41f34d024", - "id" : "1434701", - "profile" : { - "bust" : "81", - "height" : "155", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "エフォートブリランテ", - "alias_name_display" : "エフォートブリランテ", - "hash" : "0ae0b50138bbf05741509420d5324943", - "id" : "1534702", - "profile" : { - "bust" : "81", - "height" : "155", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - } ], - "idol_id" : 3, - "idol_name" : "水本ゆかり", - "idol_name_display" : "水本ゆかり", - "units" : [ { - "id" : "27", - "name" : "ストレートフルート" - }, { - "id" : "134", - "name" : "ノーブルセレブリティ" - }, { - "id" : "136", - "name" : "メロウ・イエロー" - }, { - "id" : "191", - "name" : "Love Yell" - }, { - "id" : "193", - "name" : "イエローリリー" - } ] -}, { - "aliases" : [ { - "hash" : "9e4c72332c4881ae0bdc40ed2ec88c89", - "id" : "1000401", - "profile" : { - "bust" : "64", - "height" : "132", - "hip" : "70", - "waist" : "56", - "weight" : "28" - } - }, { - "hash" : "4b7647610d30d56613fa83e5e9616afb", - "id" : "1100402", - "profile" : { - "bust" : "64", - "height" : "132", - "hip" : "70", - "waist" : "56", - "weight" : "28" - } - }, { - "alias_name" : "ひな祭り", - "alias_name_display" : "ひな祭り", - "event" : [ { - "event_id" : 202, - "event_name" : "アイドルサバイバルひな祭り編" - } ], - "hash" : "432ad39240f6444c7b5f475a40b94cdd", - "id" : "1203401", - "profile" : { - "bust" : "64", - "height" : "132", - "hip" : "70", - "waist" : "56", - "weight" : "28" - } - }, { - "alias_name" : "ひな祭り", - "alias_name_display" : "ひな祭り", - "event" : [ { - "event_id" : 202, - "event_name" : "アイドルサバイバルひな祭り編" - } ], - "hash" : "c7e09d78076a52fe3585aea1c6a8cd22", - "id" : "1303402", - "profile" : { - "bust" : "64", - "height" : "132", - "hip" : "70", - "waist" : "56", - "weight" : "28" - } - }, { - "alias_name" : "ビーチパラダイス", - "alias_name_display" : "ビーチパラダイス", - "hash" : "3bce49b8578a3244816aea3c4b946970", - "id" : "1211001", - "profile" : { - "bust" : "64", - "height" : "132", - "hip" : "70", - "waist" : "56", - "weight" : "28" - } - }, { - "alias_name" : "ビーチパラダイス", - "alias_name_display" : "ビーチパラダイス", - "hash" : "74fb1af8cf551785d0eb3c886169b29c", - "id" : "1311002", - "profile" : { - "bust" : "64", - "height" : "132", - "hip" : "70", - "waist" : "56", - "weight" : "28" - } - }, { - "alias_name" : "マーチングバンド", - "alias_name_display" : "マーチングバンド", - "hash" : "5f198336d9cb50f8ab727a22ec32aa97", - "id" : "1213101", - "profile" : { - "bust" : "64", - "height" : "132", - "hip" : "70", - "waist" : "56", - "weight" : "28" - } - }, { - "alias_name" : "マーチングバンド", - "alias_name_display" : "マーチングバンド", - "hash" : "12a280521ddf493e5f868b618494392a", - "id" : "1313102", - "profile" : { - "bust" : "64", - "height" : "132", - "hip" : "70", - "waist" : "56", - "weight" : "28" - } - }, { - "alias_name" : "魔女っ娘I.C", - "alias_name_display" : "魔女っ娘I.C", - "event" : [ { - "event_id" : 1201, - "event_name" : "目指せ魔女っ娘 アイドルチャレンジ" - } ], - "hash" : "7afc67a566bd72f23eedb3a19bb3a982", - "id" : "1316202", - "profile" : { - "bust" : "64", - "height" : "132", - "hip" : "70", - "waist" : "56", - "weight" : "28" - } - }, { - "alias_name" : "フレンドシップ", - "alias_name_display" : "フレンドシップ", - "event" : [ { - "event_id" : "020", - "event_name" : "第20回プロダクションマッチフェスティバル" - } ], - "hash" : "a626e8ea3402255c88c43fa7e35fb2ff", - "id" : "1220401", - "profile" : { - "bust" : "64", - "height" : "132", - "hip" : "70", - "waist" : "56", - "weight" : "28" - } - }, { - "alias_name" : "フレンドシップ", - "alias_name_display" : "フレンドシップ", - "event" : [ { - "event_id" : "020", - "event_name" : "第20回プロダクションマッチフェスティバル" - } ], - "hash" : "ba304a7ee476e2e6f34d1d1380710dcf", - "id" : "1320402", - "profile" : { - "bust" : "64", - "height" : "132", - "hip" : "70", - "waist" : "56", - "weight" : "28" - } - }, { - "alias_name" : "クリスマスナイト", - "alias_name_display" : "クリスマスナイト", - "hash" : "fd3ac0d9e8392a40fd5f88a0f8f4a135", - "id" : "1224901", - "profile" : { - "bust" : "64", - "height" : "132", - "hip" : "70", - "waist" : "56", - "weight" : "28" - } - }, { - "alias_name" : "クリスマスナイト", - "alias_name_display" : "クリスマスナイト", - "hash" : "ab388a028b0c06ac2b8ad7e5b87c14e9", - "id" : "1324902", - "profile" : { - "bust" : "64", - "height" : "132", - "hip" : "70", - "waist" : "56", - "weight" : "28" - } - }, { - "alias_name" : "コレクションスタイル", - "alias_name_display" : "コレクションスタイル", - "event" : [ { - "event_id" : 1406, - "event_name" : "第6回ぷちデレラコレクション" - } ], - "hash" : "b8f180aef3da364b62a7d9d94c49f790", - "id" : "1326902", - "profile" : { - "bust" : "64", - "height" : "132", - "hip" : "70", - "waist" : "56", - "weight" : "28" - } - }, { - "alias_name" : "ロワイヤルスタイルND", - "alias_name_display" : "ロワイヤルスタイルND", - "event" : [ { - "event_id" : 823, - "event_name" : "第23回アイドルLIVEロワイヤル" - } ], - "hash" : "88261973e6dc33c1efcf5f13fd5024ad", - "id" : "1233201", - "profile" : { - "bust" : "64", - "height" : "132", - "hip" : "70", - "waist" : "56", - "weight" : "28" - } - }, { - "alias_name" : "ロワイヤルスタイルND", - "alias_name_display" : "ロワイヤルスタイルND", - "event" : [ { - "event_id" : 823, - "event_name" : "第23回アイドルLIVEロワイヤル" - } ], - "hash" : "2ce3a5f3b4995d42f6e8e0687b189e11", - "id" : "1333202", - "profile" : { - "bust" : "64", - "height" : "132", - "hip" : "70", - "waist" : "56", - "weight" : "28" - } - }, { - "alias_name" : "リトルプリンセス", - "alias_name_display" : "リトルプリンセス", - "event" : [ { - "event_id" : 502, - "event_name" : "アイドルLIVEツアーinイギリス" - } ], - "hash" : "d59c444656b4257c797792a85ea7087b", - "id" : "1404701", - "profile" : { - "bust" : "64", - "height" : "132", - "hip" : "70", - "waist" : "56", - "weight" : "28" - } - }, { - "alias_name" : "リトルプリンセス", - "alias_name_display" : "リトルプリンセス", - "event" : [ { - "event_id" : 502, - "event_name" : "アイドルLIVEツアーinイギリス" - } ], - "hash" : "1795c63d5c362fe01f69b2ff03031d34", - "id" : "1504702", - "profile" : { - "bust" : "64", - "height" : "132", - "hip" : "70", - "waist" : "56", - "weight" : "28" - } - }, { - "alias_name" : "マジカルガール・アクア", - "alias_name_display" : "マジカルガール・アクア", - "event" : [ { - "event_id" : 1201, - "event_name" : "目指せ魔女っ娘 アイドルチャレンジ" - } ], - "hash" : "64ceb0a3aba19347f000e9ea2e320c3e", - "id" : "1414601", - "profile" : { - "bust" : "64", - "height" : "132", - "hip" : "70", - "waist" : "56", - "weight" : "28" - } - }, { - "alias_name" : "マジカルガール・アクア", - "alias_name_display" : "マジカルガール・アクア", - "event" : [ { - "event_id" : 1201, - "event_name" : "目指せ魔女っ娘 アイドルチャレンジ" - } ], - "hash" : "7bab85379544f5baa52a0c14e399b63a", - "id" : "1514602", - "profile" : { - "bust" : "64", - "height" : "132", - "hip" : "70", - "waist" : "56", - "weight" : "28" - } - }, { - "alias_name" : "マジカルガールS・アクア", - "alias_name_display" : "マジカルガールS・アクア", - "event" : [ { - "event_id" : 1201, - "event_name" : "目指せ魔女っ娘 アイドルチャレンジ" - } ], - "hash" : "f3a7e94a6dfa24bdaf63dde0c51184d6", - "id" : "1414701", - "profile" : { - "bust" : "64", - "height" : "132", - "hip" : "70", - "waist" : "56", - "weight" : "28" - } - }, { - "alias_name" : "マジカルガールS・アクア", - "alias_name_display" : "マジカルガールS・アクア", - "event" : [ { - "event_id" : 1201, - "event_name" : "目指せ魔女っ娘 アイドルチャレンジ" - } ], - "hash" : "186553b4e590e75736c7b2e3620abc8f", - "id" : "1514702", - "profile" : { - "bust" : "64", - "height" : "132", - "hip" : "70", - "waist" : "56", - "weight" : "28" - } - }, { - "alias_name" : "からふるタイム", - "alias_name_display" : "からふるタイム", - "hash" : "c141ec5c30df557ec8b4c70280222551", - "id" : "1425101", - "profile" : { - "bust" : "64", - "height" : "132", - "hip" : "70", - "waist" : "56", - "weight" : "28" - } - }, { - "alias_name" : "からふるタイム", - "alias_name_display" : "からふるタイム", - "hash" : "29b2e04c3b9aad43ab45f10697f24ee2", - "id" : "1525102", - "profile" : { - "bust" : "64", - "height" : "132", - "hip" : "70", - "waist" : "56", - "weight" : "28" - } - }, { - "alias_name" : "ちいさな秋", - "alias_name_display" : "ちいさな秋", - "event" : [ { - "event_id" : 724, - "event_name" : "第24回ドリームLIVEフェスティバル" - } ], - "hash" : "ebd6eb001f23da8db802a95ac4f0334f", - "id" : "1435701", - "profile" : { - "bust" : "64", - "height" : "132", - "hip" : "70", - "waist" : "56", - "weight" : "28" - } - }, { - "alias_name" : "ちいさな秋", - "alias_name_display" : "ちいさな秋", - "event" : [ { - "event_id" : 724, - "event_name" : "第24回ドリームLIVEフェスティバル" - } ], - "hash" : "02a5755a9e817844b01702bd71f8a68f", - "id" : "1535702", - "profile" : { - "bust" : "64", - "height" : "132", - "hip" : "70", - "waist" : "56", - "weight" : "28" - } - } ], - "idol_id" : 4, - "idol_name" : "福山舞", - "idol_name_display" : "福山舞", - "units" : [ { - "id" : "164", - "name" : "マジカルテット" - }, { - "id" : "177", - "name" : "桜舞隊" - }, { - "id" : "210", - "name" : "ロワイヤルスタイルND" - }, { - "id" : "214", - "name" : "L.M.B.G" - } ] -}, { - "aliases" : [ { - "hash" : "2c27422ff05ee7bb687d23d68b8e5437", - "id" : "1000501", - "profile" : { - "bust" : "76", - "height" : "147", - "hip" : "79", - "waist" : "55", - "weight" : "38" - } - }, { - "hash" : "9afc857da9d69bf96e603bf8837a66ce", - "id" : "1100502", - "profile" : { - "bust" : "76", - "height" : "147", - "hip" : "79", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "バレンタイン", - "alias_name_display" : "バレンタイン", - "event" : [ { - "event_id" : 103, - "event_name" : "バレンタインパーティー" - } ], - "hash" : "8d83c2c10b5dda3a24ab3fd2d2d5a65e", - "id" : "1001801", - "profile" : { - "bust" : "76", - "height" : "147", - "hip" : "79", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "バレンタイン", - "alias_name_display" : "バレンタイン", - "event" : [ { - "event_id" : 103, - "event_name" : "バレンタインパーティー" - } ], - "hash" : "93917a715e96a0ed275f0bc15236ce9d", - "id" : "1101802", - "profile" : { - "bust" : "76", - "height" : "147", - "hip" : "79", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "ハッピーバレンタイン", - "alias_name_display" : "ハッピーバレンタイン", - "event" : [ { - "event_id" : 405, - "event_name" : "アイドルプロデュース バレンタイン編" - } ], - "hash" : "6a3760f4ae142edb4fa79c55c0711f16", - "id" : "1207701", - "profile" : { - "bust" : "76", - "height" : "147", - "hip" : "79", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "ハッピーバレンタイン", - "alias_name_display" : "ハッピーバレンタイン", - "event" : [ { - "event_id" : 405, - "event_name" : "アイドルプロデュース バレンタイン編" - } ], - "hash" : "f662c0d2f39ebe7c9f6f2b5801a5637f", - "id" : "1307702", - "profile" : { - "bust" : "76", - "height" : "147", - "hip" : "79", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "スマイルバレンタイン", - "alias_name_display" : "スマイルバレンタイン", - "event" : [ { - "event_id" : 405, - "event_name" : "アイドルプロデュース バレンタイン編" - } ], - "hash" : "600d9532a365f51b484cde2e1968dbb0", - "id" : "1207801", - "profile" : { - "bust" : "76", - "height" : "147", - "hip" : "79", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "スマイルバレンタイン", - "alias_name_display" : "スマイルバレンタイン", - "event" : [ { - "event_id" : 405, - "event_name" : "アイドルプロデュース バレンタイン編" - } ], - "hash" : "ed5efe1f4f7f8fab7501b684faa673f5", - "id" : "1307802", - "profile" : { - "bust" : "76", - "height" : "147", - "hip" : "79", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "ロワイヤルスタイルNP", - "alias_name_display" : "ロワイヤルスタイルNP", - "event" : [ { - "event_id" : 804, - "event_name" : "第4回アイドルLIVEロワイヤル" - } ], - "hash" : "f342a9da146eba2799e8451dab7c0a22", - "id" : "1215201", - "profile" : { - "bust" : "76", - "height" : "147", - "hip" : "79", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "ロワイヤルスタイルNP", - "alias_name_display" : "ロワイヤルスタイルNP", - "event" : [ { - "event_id" : 804, - "event_name" : "第4回アイドルLIVEロワイヤル" - } ], - "hash" : "9ac4c4497893b1212e1a4b5fef670c74", - "id" : "1315202", - "profile" : { - "bust" : "76", - "height" : "147", - "hip" : "79", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "スクールガール", - "alias_name_display" : "スクールガール", - "hash" : "5f4163ebaa3db4ae6a40335feeab9d05", - "id" : "1218601", - "profile" : { - "bust" : "76", - "height" : "147", - "hip" : "79", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "スクールガール", - "alias_name_display" : "スクールガール", - "hash" : "5bd608ecda1c88289f543f740fa31798", - "id" : "1318602", - "profile" : { - "bust" : "76", - "height" : "147", - "hip" : "79", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "なかよし☆ドーナッツ", - "alias_name_display" : "なかよし☆ドーナッツ", - "hash" : "df0842fcb37dca93468e740e24134f38", - "id" : "1220801", - "profile" : { - "bust" : "76", - "height" : "147", - "hip" : "79", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "なかよし☆ドーナッツ", - "alias_name_display" : "なかよし☆ドーナッツ", - "hash" : "b830925d4da9a4ebb45aad7b456f68a6", - "id" : "1320802", - "profile" : { - "bust" : "76", - "height" : "147", - "hip" : "79", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "ハイカラガール", - "alias_name_display" : "ハイカラガール", - "hash" : "59774669f6fd1ce8779b3ad085780d99", - "id" : "1223001", - "profile" : { - "bust" : "76", - "height" : "147", - "hip" : "79", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "ハイカラガール", - "alias_name_display" : "ハイカラガール", - "hash" : "53aa3e20e3981711db5c1c9c00490217", - "id" : "1323002", - "profile" : { - "bust" : "76", - "height" : "147", - "hip" : "79", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "スイートサマー", - "alias_name_display" : "スイートサマー", - "event" : [ { - "event_id" : 205, - "event_name" : "アイドルサバイバルinサマーライブ" - } ], - "hash" : "75d17e59127cb32465dd5f4cf7a35f69", - "id" : "1402201", - "profile" : { - "bust" : "76", - "height" : "147", - "hip" : "79", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "スイートサマー", - "alias_name_display" : "スイートサマー", - "event" : [ { - "event_id" : 205, - "event_name" : "アイドルサバイバルinサマーライブ" - } ], - "hash" : "d4d7df4f74b6612da8f3b9256354039e", - "id" : "1502202", - "profile" : { - "bust" : "76", - "height" : "147", - "hip" : "79", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "ドーナッツ☆マーメイド", - "alias_name_display" : "ドーナッツ☆マーメイド", - "hash" : "6639dfcca711df063ea40a7e8e423a5d", - "id" : "1408301", - "profile" : { - "bust" : "76", - "height" : "147", - "hip" : "79", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "ドーナッツ☆マーメイド", - "alias_name_display" : "ドーナッツ☆マーメイド", - "hash" : "c5686d14889a1c7a421a38304dc8f88c", - "id" : "1508302", - "profile" : { - "bust" : "76", - "height" : "147", - "hip" : "79", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "目覚めし勇者", - "alias_name_display" : "目覚めし勇者", - "event" : [ { - "event_id" : 516, - "event_name" : "幻想公演栄光のシュヴァリエ" - } ], - "hash" : "7a53687160966f6fc639e8581c961d45", - "id" : "1420801", - "profile" : { - "bust" : "76", - "height" : "147", - "hip" : "79", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "目覚めし勇者", - "alias_name_display" : "目覚めし勇者", - "event" : [ { - "event_id" : 516, - "event_name" : "幻想公演栄光のシュヴァリエ" - } ], - "hash" : "6d3ed0a7f03b9b5fd51721010eaf81f1", - "id" : "1520802", - "profile" : { - "bust" : "76", - "height" : "147", - "hip" : "79", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "スウィートサークル", - "alias_name_display" : "スウィートサークル", - "event" : [ { - "event_id" : 720, - "event_name" : "第20回ドリームLIVEフェスティバル" - } ], - "hash" : "380c5bc88f6fc5c34164164c8b721e66", - "id" : "1432101", - "profile" : { - "bust" : "76", - "height" : "147", - "hip" : "79", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "スウィートサークル", - "alias_name_display" : "スウィートサークル", - "event" : [ { - "event_id" : 720, - "event_name" : "第20回ドリームLIVEフェスティバル" - } ], - "hash" : "4451be66b36f225beba93e12fa235f36", - "id" : "1532102", - "profile" : { - "bust" : "76", - "height" : "147", - "hip" : "79", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "あま~い★誘惑", - "alias_name_display" : "あま~い★誘惑", - "event" : [ { - "event_id" : 1213, - "event_name" : "目指せお菓子なハロウィン アイドルチャレンジ" - } ], - "hash" : "f2a2dfca90f836b1d98d889179daad59", - "id" : "1436001", - "profile" : { - "bust" : "76", - "height" : "147", - "hip" : "79", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "あま~い★誘惑", - "alias_name_display" : "あま~い★誘惑", - "event" : [ { - "event_id" : 1213, - "event_name" : "目指せお菓子なハロウィン アイドルチャレンジ" - } ], - "hash" : "06f18e9f5532d8fd04e01d1a64c16df4", - "id" : "1536002", - "profile" : { - "bust" : "76", - "height" : "147", - "hip" : "79", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "できたてシュガー", - "alias_name_display" : "できたてシュガー", - "hash" : "c6e0e9ac726d8b09a19f833255f8ca38", - "id" : "1440001", - "profile" : { - "bust" : "76", - "height" : "147", - "hip" : "79", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "できたてシュガー", - "alias_name_display" : "できたてシュガー", - "hash" : "6e42fd90357609b6d27c0afa237f117b", - "id" : "1540002", - "profile" : { - "bust" : "76", - "height" : "147", - "hip" : "79", - "waist" : "55", - "weight" : "38" - } - } ], - "idol_id" : 5, - "idol_name" : "椎名法子", - "idol_name_display" : "椎名法子", - "units" : [ { - "id" : "33", - "name" : "チーム・フラワー" - }, { - "id" : "136", - "name" : "メロウ・イエロー" - }, { - "id" : "160", - "name" : "ハッピーバレンタイン" - }, { - "id" : "188", - "name" : "Sweetches" - }, { - "id" : "193", - "name" : "イエローリリー" - }, { - "id" : "209", - "name" : "ロワイヤルスタイルNP" - } ] -}, { - "aliases" : [ { - "hash" : "ed6aeeec0997ee6943d1791c228c1ec7", - "id" : "1000601", - "profile" : { - "bust" : "81", - "height" : "153", - "hip" : "79", - "waist" : "56", - "weight" : "41" - } - }, { - "hash" : "f3f2597ca67e9fc3058a86fc5394c6ef", - "id" : "1100602", - "profile" : { - "bust" : "81", - "height" : "153", - "hip" : "79", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "スポーツ祭", - "alias_name_display" : "スポーツ祭", - "hash" : "ba32b49a158314a1fca1cc2183fccd4b", - "id" : "1204401", - "profile" : { - "bust" : "81", - "height" : "153", - "hip" : "79", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "スポーツ祭", - "alias_name_display" : "スポーツ祭", - "hash" : "086e26928b30bbc058eb89c453157284", - "id" : "1304402", - "profile" : { - "bust" : "81", - "height" : "153", - "hip" : "79", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "クリスマスパーティー", - "alias_name_display" : "クリスマスパーティー", - "hash" : "62618351b0bcde86f002c3bcec730148", - "id" : "1213601", - "profile" : { - "bust" : "81", - "height" : "153", - "hip" : "79", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "クリスマスパーティー", - "alias_name_display" : "クリスマスパーティー", - "hash" : "898a7b7cee8c3554b096fb44fbf1c6e5", - "id" : "1313602", - "profile" : { - "bust" : "81", - "height" : "153", - "hip" : "79", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "フラワーガーデン", - "alias_name_display" : "フラワーガーデン", - "event" : [ { - "event_id" : 213, - "event_name" : "アイドルサバイバルinフラワーガーデン" - } ], - "hash" : "78c348ee69a886457da80ac238317a5c", - "id" : "1215601", - "profile" : { - "bust" : "81", - "height" : "153", - "hip" : "79", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "フラワーガーデン", - "alias_name_display" : "フラワーガーデン", - "event" : [ { - "event_id" : 213, - "event_name" : "アイドルサバイバルinフラワーガーデン" - } ], - "hash" : "2f5762635183f75a5be435de3a0c58b4", - "id" : "1315602", - "profile" : { - "bust" : "81", - "height" : "153", - "hip" : "79", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "ファンシーガール", - "alias_name_display" : "ファンシーガール", - "hash" : "6b35883cb4c64cec7edbbbcffd5a3390", - "id" : "1406901", - "profile" : { - "bust" : "81", - "height" : "153", - "hip" : "79", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "ファンシーガール", - "alias_name_display" : "ファンシーガール", - "hash" : "5d1e7b399154bdf492febc326a51a8bb", - "id" : "1506902", - "profile" : { - "bust" : "81", - "height" : "153", - "hip" : "79", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "こぼれるスマイル", - "alias_name_display" : "こぼれるスマイル", - "event" : [ { - "event_id" : 709, - "event_name" : "第9回ドリームLIVEフェスティバル" - } ], - "hash" : "2c5a5b78471f6d6c40dbe61cd3e9900d", - "id" : "1419501", - "profile" : { - "bust" : "81", - "height" : "153", - "hip" : "79", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "こぼれるスマイル", - "alias_name_display" : "こぼれるスマイル", - "event" : [ { - "event_id" : 709, - "event_name" : "第9回ドリームLIVEフェスティバル" - } ], - "hash" : "a445a50c0d5fb02ff4f82c959384d750", - "id" : "1519502", - "profile" : { - "bust" : "81", - "height" : "153", - "hip" : "79", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "フレンドリーチアー", - "alias_name_display" : "フレンドリーチアー", - "event" : [ { - "event_id" : 1109, - "event_name" : "第9回プロダクション対抗トークバトルショー" - } ], - "hash" : "21aafbfb633a28a9bd5a24f0e75efe80", - "id" : "1423001", - "profile" : { - "bust" : "81", - "height" : "153", - "hip" : "79", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "フレンドリーチアー", - "alias_name_display" : "フレンドリーチアー", - "event" : [ { - "event_id" : 1109, - "event_name" : "第9回プロダクション対抗トークバトルショー" - } ], - "hash" : "e84038818af54434a5dade1f5e257738", - "id" : "1523002", - "profile" : { - "bust" : "81", - "height" : "153", - "hip" : "79", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "コーラスリーダー", - "alias_name_display" : "コーラスリーダー", - "event" : [ { - "event_id" : 520, - "event_name" : "青春公演 シング・ア・ソング" - } ], - "hash" : "436039c361c04185b59793ac385a5d82", - "id" : "1425601", - "profile" : { - "bust" : "81", - "height" : "153", - "hip" : "79", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "コーラスリーダー", - "alias_name_display" : "コーラスリーダー", - "event" : [ { - "event_id" : 520, - "event_name" : "青春公演 シング・ア・ソング" - } ], - "hash" : "6d640f84d12ca279bca2fe4f10d6e4ec", - "id" : "1525602", - "profile" : { - "bust" : "81", - "height" : "153", - "hip" : "79", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "南国バケーション", - "alias_name_display" : "南国バケーション", - "hash" : "9def754016201d226cdb8f58a13c294c", - "id" : "1428901", - "profile" : { - "bust" : "81", - "height" : "153", - "hip" : "79", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "南国バケーション", - "alias_name_display" : "南国バケーション", - "hash" : "9525aeca682cb5138adfad2b93165509", - "id" : "1528902", - "profile" : { - "bust" : "81", - "height" : "153", - "hip" : "79", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "ライクアバッドガール", - "alias_name_display" : "ライクアバッドガール", - "event" : [ { - "event_id" : 1407, - "event_name" : "第7回ぷちデレラコレクション" - } ], - "hash" : "0d75122abd7d6be852284b94fbedf2ea", - "id" : "1433401", - "profile" : { - "bust" : "81", - "height" : "153", - "hip" : "79", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "ライクアバッドガール", - "alias_name_display" : "ライクアバッドガール", - "event" : [ { - "event_id" : 1407, - "event_name" : "第7回ぷちデレラコレクション" - } ], - "hash" : "d4bee022093890359552c612a72b9b89", - "id" : "1533402", - "profile" : { - "bust" : "81", - "height" : "153", - "hip" : "79", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "ワンダーホーリーナイト", - "alias_name_display" : "ワンダーホーリーナイト", - "hash" : "db115e1ba38a17d275397d1b00513ddb", - "id" : "1437001", - "profile" : { - "bust" : "81", - "height" : "153", - "hip" : "79", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "ワンダーホーリーナイト", - "alias_name_display" : "ワンダーホーリーナイト", - "hash" : "2ed07d073761b8d9b26106a1bebea34a", - "id" : "1537002", - "profile" : { - "bust" : "81", - "height" : "153", - "hip" : "79", - "waist" : "56", - "weight" : "41" - } - } ], - "idol_id" : 6, - "idol_name" : "今井加奈", - "idol_name_display" : "今井加奈", - "units" : [ { - "id" : "11", - "name" : "かな☆かな☆ふぁんしー" - }, { - "id" : "103", - "name" : "ビビッドカラーエイジ" - }, { - "id" : "133", - "name" : "スケルツォ・プリマヴェーラ" - }, { - "id" : "181", - "name" : "フレッシュアスリーテス" - }, { - "id" : "193", - "name" : "イエローリリー" - } ] -}, { - "aliases" : [ { - "hash" : "bb74192d2815e42c51cbf484f0e7c57b", - "id" : "1000701", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "76", - "waist" : "54", - "weight" : "45" - } - }, { - "hash" : "590ea3d4692769eab56d96af4d5c6298", - "id" : "1100702", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "76", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "ウサコちゃんと", - "alias_name_display" : "ウサコちゃんと", - "event" : [ { - "event_id" : 203, - "event_name" : "アイドルサバイバルinテーマパーク" - } ], - "hash" : "bb1565b0cc877336f3c836abbf54aa7e", - "id" : "1204001", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "76", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "ウサコちゃんと", - "alias_name_display" : "ウサコちゃんと", - "event" : [ { - "event_id" : 203, - "event_name" : "アイドルサバイバルinテーマパーク" - } ], - "hash" : "2726872f85e9ca83e70c9897d833cbbe", - "id" : "1304002", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "76", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "浴衣祭り", - "alias_name_display" : "浴衣祭り", - "hash" : "c38e02af7867d399dc755701470f8fb6", - "id" : "1210401", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "76", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "浴衣祭り", - "alias_name_display" : "浴衣祭り", - "hash" : "393b6b1b2e28e60508ecfc9f13769c3c", - "id" : "1310402", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "76", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "パラダイスリゾート", - "alias_name_display" : "パラダイスリゾート", - "hash" : "28351f2aa36a19be5e71535a9da90df2", - "id" : "1217701", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "76", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "パラダイスリゾート", - "alias_name_display" : "パラダイスリゾート", - "hash" : "e62386d71c2fd0d5ad4dd47207df9b39", - "id" : "1317702", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "76", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "オータムコレクション", - "alias_name_display" : "オータムコレクション", - "hash" : "8e287b6e2675f27792f7c11ae46cdbcd", - "id" : "1223901", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "76", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "オータムコレクション", - "alias_name_display" : "オータムコレクション", - "hash" : "dfaef83aefde74600203a567895707b1", - "id" : "1323902", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "76", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "クライムI.C", - "alias_name_display" : "クライムI.C", - "event" : [ { - "event_id" : 1211, - "event_name" : "目指せ山頂! アイドルチャレンジ" - } ], - "hash" : "5284e8ed9804a5f52178ffad4654693c", - "id" : "1329002", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "76", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "ハロウィンクイーン", - "alias_name_display" : "ハロウィンクイーン", - "event" : [ { - "event_id" : 207, - "event_name" : "アイドルサバイバル ハロウィン編" - } ], - "hash" : "02e6e6ca1a87c6990997bd7e95004bf2", - "id" : "1403401", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "76", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "ハロウィンクイーン", - "alias_name_display" : "ハロウィンクイーン", - "event" : [ { - "event_id" : 207, - "event_name" : "アイドルサバイバル ハロウィン編" - } ], - "hash" : "b4ce1229bd3669f873535993c78119a4", - "id" : "1503402", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "76", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "うたのおねえさん", - "alias_name_display" : "うたのおねえさん", - "hash" : "5b22bf84b28a80e6bc9bba507cb475ca", - "id" : "1412001", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "76", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "うたのおねえさん", - "alias_name_display" : "うたのおねえさん", - "hash" : "7ff72968fd3f03a494d52e24b597be01", - "id" : "1512002", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "76", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "甲斐のウサトラ", - "alias_name_display" : "甲斐のウサトラ", - "event" : [ { - "event_id" : 515, - "event_name" : "戦国公演 天魔の乱" - } ], - "hash" : "3cc897e17eb9ec00935c3f09dd790b44", - "id" : "1419701", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "76", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "甲斐のウサトラ", - "alias_name_display" : "甲斐のウサトラ", - "event" : [ { - "event_id" : 515, - "event_name" : "戦国公演 天魔の乱" - } ], - "hash" : "545f910a45bcaf27bf287cf9ae8149e5", - "id" : "1519702", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "76", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "ウサコちゃんとチアー", - "alias_name_display" : "ウサコちゃんとチアー", - "event" : [ { - "event_id" : 1501, - "event_name" : "チーム対抗トークバトルショー" - } ], - "hash" : "1ca5b0c45103639cf0269381b7c00758", - "id" : "1423901", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "76", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "ウサコちゃんとチアー", - "alias_name_display" : "ウサコちゃんとチアー", - "event" : [ { - "event_id" : 1501, - "event_name" : "チーム対抗トークバトルショー" - } ], - "hash" : "a4b95d602f54ab58070cacc27508ccc0", - "id" : "1523902", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "76", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "たのしくクライマー", - "alias_name_display" : "たのしくクライマー", - "event" : [ { - "event_id" : 1211, - "event_name" : "目指せ山頂! アイドルチャレンジ" - } ], - "hash" : "125e81ee1827f6f200d28b40aa1be60c", - "id" : "1434201", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "76", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "たのしくクライマー", - "alias_name_display" : "たのしくクライマー", - "event" : [ { - "event_id" : 1211, - "event_name" : "目指せ山頂! アイドルチャレンジ" - } ], - "hash" : "ab230b11f6a1d816f09e09d220d47773", - "id" : "1534202", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "76", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "にこにこクライマー", - "alias_name_display" : "にこにこクライマー", - "event" : [ { - "event_id" : 1211, - "event_name" : "目指せ山頂! アイドルチャレンジ" - } ], - "hash" : "64effa640e159e91df4d2536e9fb2ef1", - "id" : "1434301", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "76", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "にこにこクライマー", - "alias_name_display" : "にこにこクライマー", - "event" : [ { - "event_id" : 1211, - "event_name" : "目指せ山頂! アイドルチャレンジ" - } ], - "hash" : "9d21319e84f61ca87cc24dfd1aa511dc", - "id" : "1534302", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "76", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "クラッシールージュ", - "alias_name_display" : "クラッシールージュ", - "event" : [ { - "event_id" : 1411, - "event_name" : "第11回ぷちデレラコレクション" - } ], - "hash" : "0bafd8a70b95838077ee10b32b1c12e6", - "id" : "1438401", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "76", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "クラッシールージュ", - "alias_name_display" : "クラッシールージュ", - "event" : [ { - "event_id" : 1411, - "event_name" : "第11回ぷちデレラコレクション" - } ], - "hash" : "baf115536838f243cc9a52df9853fb22", - "id" : "1538402", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "76", - "waist" : "54", - "weight" : "45" - } - } ], - "idol_id" : 7, - "idol_name" : "持田亜里沙", - "idol_name_display" : "持田亜里沙", - "units" : [ { - "id" : "173", - "name" : "ピンクドットバルーン" - } ] -}, { - "aliases" : [ { - "hash" : "9934868123e14bccac84dfb85f7ecd8a", - "id" : "1000801", - "profile" : { - "bust" : "90", - "height" : "153", - "hip" : "89", - "waist" : "65", - "weight" : "52" - } - }, { - "hash" : "4a82a002228540b7fb96ca744599f1b1", - "id" : "1100802", - "profile" : { - "bust" : "90", - "height" : "153", - "hip" : "89", - "waist" : "63", - "weight" : "51" - } - }, { - "alias_name" : "春風スポーツ", - "alias_name_display" : "春風スポーツ", - "hash" : "9c9fb21dc78b7642279e08ce560b9326", - "id" : "1227201", - "profile" : { - "bust" : "90", - "height" : "153", - "hip" : "89", - "waist" : "63", - "weight" : "51" - } - }, { - "alias_name" : "春風スポーツ", - "alias_name_display" : "春風スポーツ", - "hash" : "a4e16ebe27838b975e37bfe74c84ddc2", - "id" : "1327202", - "profile" : { - "bust" : "90", - "height" : "153", - "hip" : "89", - "waist" : "63", - "weight" : "51" - } - }, { - "alias_name" : "ワイルドフレンズ", - "alias_name_display" : "ワイルドフレンズ", - "hash" : "16d9293bf83ba6bf24a6852f8d34c0a7", - "id" : "1232601", - "profile" : { - "bust" : "90", - "height" : "153", - "hip" : "89", - "waist" : "63", - "weight" : "51" - } - }, { - "alias_name" : "ワイルドフレンズ", - "alias_name_display" : "ワイルドフレンズ", - "hash" : "82aa4935c95e87e5a62185d63a42dd2c", - "id" : "1332602", - "profile" : { - "bust" : "90", - "height" : "153", - "hip" : "89", - "waist" : "63", - "weight" : "51" - } - }, { - "alias_name" : "ふわふわスマイル", - "alias_name_display" : "ふわふわスマイル", - "hash" : "5bc1016a4121d230bcadb3e57ae9becc", - "id" : "1401301", - "profile" : { - "bust" : "90", - "height" : "153", - "hip" : "89", - "waist" : "64", - "weight" : "52" - } - }, { - "alias_name" : "ふわふわスマイル", - "alias_name_display" : "ふわふわスマイル", - "hash" : "a58abdbbc7258e54993ab40137c6cd78", - "id" : "1501302", - "profile" : { - "bust" : "91", - "height" : "153", - "hip" : "89", - "waist" : "63", - "weight" : "51" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "98d99f1382acbdcffbdf1f2c2b878c86", - "id" : "1401501", - "profile" : { - "bust" : "90", - "height" : "153", - "hip" : "89", - "waist" : "65", - "weight" : "52" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "207845571c37f60aa09865f7ad5684d4", - "id" : "1501502", - "profile" : { - "bust" : "90", - "height" : "153", - "hip" : "89", - "waist" : "63", - "weight" : "51" - } - }, { - "alias_name" : "LIVEゲスト", - "alias_name_display" : "LIVEゲスト", - "event" : [ { - "event_id" : 401, - "event_name" : "新人アイドルプロデュース" - } ], - "hash" : "5f3df9ce0891daba5ad5462315bc6542", - "id" : "1402601", - "profile" : { - "bust" : "90", - "height" : "153", - "hip" : "89", - "waist" : "63", - "weight" : "51" - } - }, { - "alias_name" : "LIVEゲスト", - "alias_name_display" : "LIVEゲスト", - "event" : [ { - "event_id" : 401, - "event_name" : "新人アイドルプロデュース" - } ], - "hash" : "f055efc23fbee62b7f35ff7957efaf19", - "id" : "1502602", - "profile" : { - "bust" : "90", - "height" : "153", - "hip" : "89", - "waist" : "63", - "weight" : "51" - } - }, { - "alias_name" : "メルティスイート", - "alias_name_display" : "メルティスイート", - "hash" : "1af7bfaac9ee148dd2e9046e761a5430", - "id" : "1405401", - "profile" : { - "bust" : "90", - "height" : "153", - "hip" : "89", - "waist" : "63", - "weight" : "51" - } - }, { - "alias_name" : "メルティスイート", - "alias_name_display" : "メルティスイート", - "hash" : "9d95cb4e0a29f5df3d19ce03bab584a5", - "id" : "1505402", - "profile" : { - "bust" : "90", - "height" : "153", - "hip" : "89", - "waist" : "63", - "weight" : "51" - } - }, { - "alias_name" : "シンデレラドリーム", - "alias_name_display" : "シンデレラドリーム", - "hash" : "9be2474eed1f4bb918def97edd402d7b", - "id" : "1409101", - "profile" : { - "bust" : "90", - "height" : "153", - "hip" : "89", - "waist" : "63", - "weight" : "51" - } - }, { - "alias_name" : "シンデレラドリーム", - "alias_name_display" : "シンデレラドリーム", - "hash" : "67f12e31fbef152f316ccab074033751", - "id" : "1509102", - "profile" : { - "bust" : "90", - "height" : "153", - "hip" : "89", - "waist" : "63", - "weight" : "51" - } - }, { - "alias_name" : "LIVEゲスト・スマイル", - "alias_name_display" : "LIVEゲスト・スマイル", - "event" : [ { - "event_id" : 401, - "event_name" : "新人アイドルプロデュース" - } ], - "hash" : "885560563387d31c9c3df18f4acf5b65", - "id" : "1410901", - "profile" : { - "bust" : "90", - "height" : "153", - "hip" : "89", - "waist" : "63", - "weight" : "51" - } - }, { - "alias_name" : "LIVEゲスト・スマイル", - "alias_name_display" : "LIVEゲスト・スマイル", - "event" : [ { - "event_id" : 401, - "event_name" : "新人アイドルプロデュース" - } ], - "hash" : "70626858ff6676ee4f1eafbf6d52706f", - "id" : "1510902", - "profile" : { - "bust" : "90", - "height" : "153", - "hip" : "89", - "waist" : "63", - "weight" : "51" - } - }, { - "alias_name" : "ワンダフルマジック", - "alias_name_display" : "ワンダフルマジック", - "hash" : "1690e6ca3699ea1491a93ac6ad33f835", - "id" : "1412901", - "profile" : { - "bust" : "90", - "height" : "153", - "hip" : "89", - "waist" : "63", - "weight" : "51" - } - }, { - "alias_name" : "ワンダフルマジック", - "alias_name_display" : "ワンダフルマジック", - "hash" : "29c61e62f922a8da71ff6782d757b18e", - "id" : "1512902", - "profile" : { - "bust" : "90", - "height" : "153", - "hip" : "89", - "waist" : "63", - "weight" : "51" - } - }, { - "alias_name" : "桜色の華姫", - "alias_name_display" : "桜色の華姫", - "hash" : "28bcf7054852b0cc022339a29fbab508", - "id" : "1419601", - "profile" : { - "bust" : "90", - "height" : "153", - "hip" : "89", - "waist" : "63", - "weight" : "51" - } - }, { - "alias_name" : "桜色の華姫", - "alias_name_display" : "桜色の華姫", - "hash" : "b3b00bc958af646c2c96a1c9235117ff", - "id" : "1519602", - "profile" : { - "bust" : "90", - "height" : "153", - "hip" : "89", - "waist" : "63", - "weight" : "51" - } - }, { - "alias_name" : "キャンディアイランド", - "alias_name_display" : "キャンディアイランド", - "hash" : "672ec165dd3a8a5cdfbf40fafafe20aa", - "id" : "1523202", - "profile" : { - "bust" : "90", - "height" : "153", - "hip" : "89", - "waist" : "63", - "weight" : "51" - } - }, { - "alias_name" : "クリーミィトライフル", - "alias_name_display" : "クリーミィトライフル", - "hash" : "a7c2006bb177f730e7b13d57fb1b5665", - "id" : "1425301", - "profile" : { - "bust" : "90", - "height" : "153", - "hip" : "89", - "waist" : "63", - "weight" : "51" - } - }, { - "alias_name" : "クリーミィトライフル", - "alias_name_display" : "クリーミィトライフル", - "hash" : "a96314dfbb8bddd68b73adaff44f5261", - "id" : "1525302", - "profile" : { - "bust" : "90", - "height" : "153", - "hip" : "89", - "waist" : "63", - "weight" : "51" - } - }, { - "alias_name" : "メルティスノー", - "alias_name_display" : "メルティスノー", - "hash" : "b0cc22595859cf3a35cb7fad726acf0c", - "id" : "1430101", - "profile" : { - "bust" : "90", - "height" : "153", - "hip" : "89", - "waist" : "63", - "weight" : "51" - } - }, { - "alias_name" : "メルティスノー", - "alias_name_display" : "メルティスノー", - "hash" : "de08ee30102b9de8473d24f8cab704d1", - "id" : "1530102", - "profile" : { - "bust" : "90", - "height" : "153", - "hip" : "89", - "waist" : "63", - "weight" : "51" - } - }, { - "alias_name" : "スイートサマータイム", - "alias_name_display" : "スイートサマータイム", - "hash" : "a971864b897eb298bf98410917dcff59", - "id" : "1434501", - "profile" : { - "bust" : "90", - "height" : "153", - "hip" : "89", - "waist" : "63", - "weight" : "51" - } - }, { - "alias_name" : "スイートサマータイム", - "alias_name_display" : "スイートサマータイム", - "hash" : "c8c44f8080c9c5fe57633092232f5dee", - "id" : "1534502", - "profile" : { - "bust" : "90", - "height" : "153", - "hip" : "89", - "waist" : "63", - "weight" : "51" - } - } ], - "idol_id" : 8, - "idol_name" : "三村かな子", - "idol_name_display" : "三村かな子", - "units" : [ { - "id" : "11", - "name" : "かな☆かな☆ふぁんしー" - }, { - "id" : "25", - "name" : "スウィートラヴァーズ" - }, { - "id" : "107", - "name" : "ロッキングガール" - }, { - "id" : "137", - "name" : "CANDY ISLAND" - }, { - "id" : "173", - "name" : "ピンクドットバルーン" - }, { - "id" : "188", - "name" : "Sweetches" - }, { - "id" : "194", - "name" : "サクヤヒメ" - }, { - "id" : "213", - "name" : "CINDERELLA PROJECT" - } ] -}, { - "aliases" : [ { - "hash" : "2bc8b92d3444429e10e29e7fd056aaab", - "id" : "1000901", - "profile" : { - "bust" : "83", - "height" : "156", - "hip" : "81", - "waist" : "57", - "weight" : "47" - } - }, { - "hash" : "8617333c94b6505b0e39c62dbbd7239b", - "id" : "1100902", - "profile" : { - "bust" : "83", - "height" : "156", - "hip" : "81", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "浴衣祭り", - "alias_name_display" : "浴衣祭り", - "hash" : "12a84ee0f8802a28922bea40d190b1d3", - "id" : "1204901", - "profile" : { - "bust" : "83", - "height" : "156", - "hip" : "81", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "浴衣祭り", - "alias_name_display" : "浴衣祭り", - "hash" : "fd16eb68d5aa1b68d4301ade853b1b82", - "id" : "1304902", - "profile" : { - "bust" : "83", - "height" : "156", - "hip" : "81", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "ライラックガーリー", - "alias_name_display" : "ライラックガーリー", - "event" : [ { - "event_id" : 701, - "event_name" : "ドリームLIVEフェスティバル" - } ], - "hash" : "80334ec678333541b423f0cfe2c6b8a4", - "id" : "1210201", - "profile" : { - "bust" : "83", - "height" : "156", - "hip" : "81", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "ライラックガーリー", - "alias_name_display" : "ライラックガーリー", - "event" : [ { - "event_id" : 701, - "event_name" : "ドリームLIVEフェスティバル" - } ], - "hash" : "6bcc7d82ba156c52ffefe1389c7aa795", - "id" : "1310202", - "profile" : { - "bust" : "83", - "height" : "156", - "hip" : "81", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "学園の生徒", - "alias_name_display" : "学園の生徒", - "event" : [ { - "event_id" : 412, - "event_name" : "聖靴学園の七不思議" - } ], - "hash" : "e2e9a35d29f0513a02423cb6d7655557", - "id" : "1215701", - "profile" : { - "bust" : "83", - "height" : "156", - "hip" : "81", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "学園の生徒", - "alias_name_display" : "学園の生徒", - "event" : [ { - "event_id" : 412, - "event_name" : "聖靴学園の七不思議" - } ], - "hash" : "0cc148d8ef200b2482c77d0b249d682f", - "id" : "1315702", - "profile" : { - "bust" : "83", - "height" : "156", - "hip" : "81", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "学園の生徒・H", - "alias_name_display" : "学園の生徒・H", - "event" : [ { - "event_id" : 412, - "event_name" : "聖靴学園の七不思議" - } ], - "hash" : "2d5c37db9e10793884e2649a98d18af1", - "id" : "1215801", - "profile" : { - "bust" : "83", - "height" : "156", - "hip" : "81", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "学園の生徒・H", - "alias_name_display" : "学園の生徒・H", - "event" : [ { - "event_id" : 412, - "event_name" : "聖靴学園の七不思議" - } ], - "hash" : "50127e06e323eda201d204a8ec4ae63d", - "id" : "1315802", - "profile" : { - "bust" : "83", - "height" : "156", - "hip" : "81", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "T.B.チアーズ", - "alias_name_display" : "T.B.チアーズ", - "event" : [ { - "event_id" : 1502, - "event_name" : "チーム対抗雨の日トークバトルショー" - } ], - "hash" : "b3ef5644d3ea4f71b6c07f4b6ced0142", - "id" : "1222301", - "profile" : { - "bust" : "83", - "height" : "156", - "hip" : "81", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "T.B.チアーズ", - "alias_name_display" : "T.B.チアーズ", - "event" : [ { - "event_id" : 1502, - "event_name" : "チーム対抗雨の日トークバトルショー" - } ], - "hash" : "9d0e515e9a0f87f9fbf510d5db8972a0", - "id" : "1322302", - "profile" : { - "bust" : "83", - "height" : "156", - "hip" : "81", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "純朴ネズミ", - "alias_name_display" : "純朴ネズミ", - "event" : [ { - "event_id" : 1901, - "event_name" : "童話公演 気まぐれアリスと不思議の国" - } ], - "hash" : "cb38626d995af7e002dd35bb675d9094", - "id" : "1327002", - "profile" : { - "bust" : "83", - "height" : "156", - "hip" : "81", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "ブルーローゼス", - "alias_name_display" : "ブルーローゼス", - "event" : [ { - "event_id" : "031", - "event_name" : "第31回プロダクションマッチフェスティバル" - } ], - "hash" : "1d00a1b541167b75e92acf127b30351a", - "id" : "1229901", - "profile" : { - "bust" : "83", - "height" : "156", - "hip" : "81", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "ブルーローゼス", - "alias_name_display" : "ブルーローゼス", - "event" : [ { - "event_id" : "031", - "event_name" : "第31回プロダクションマッチフェスティバル" - } ], - "hash" : "499bcaf9ec86b7f1ebda4f6aff7b7815", - "id" : "1329902", - "profile" : { - "bust" : "83", - "height" : "156", - "hip" : "81", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "ポップスクリーン", - "alias_name_display" : "ポップスクリーン", - "event" : [ { - "event_id" : 729, - "event_name" : "ドリームLIVEフェスティバル ゴールデンウィークSP" - } ], - "hash" : "968454d2d888cba54601af388d0bd810", - "id" : "1232901", - "profile" : { - "bust" : "83", - "height" : "156", - "hip" : "81", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "ポップスクリーン", - "alias_name_display" : "ポップスクリーン", - "event" : [ { - "event_id" : 729, - "event_name" : "ドリームLIVEフェスティバル ゴールデンウィークSP" - } ], - "hash" : "5b7e98ea91e703b48b6f44353c1933f8", - "id" : "1332902", - "profile" : { - "bust" : "83", - "height" : "156", - "hip" : "81", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "ピュアリーガール", - "alias_name_display" : "ピュアリーガール", - "hash" : "48f052c21de4a7b3f2414314364ccc40", - "id" : "1409701", - "profile" : { - "bust" : "83", - "height" : "156", - "hip" : "81", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "ピュアリーガール", - "alias_name_display" : "ピュアリーガール", - "hash" : "ce5c146a7f092ebd7b118ec5ad736c7d", - "id" : "1509702", - "profile" : { - "bust" : "83", - "height" : "156", - "hip" : "81", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "ピュアリー・ロワイヤル", - "alias_name_display" : "ピュアリー・ロワイヤル", - "event" : [ { - "event_id" : 807, - "event_name" : "第7回アイドルLIVEロワイヤル" - } ], - "hash" : "a6f51bce5e094052da09c95b382edbc8", - "id" : "1419101", - "profile" : { - "bust" : "83", - "height" : "156", - "hip" : "81", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "ピュアリー・ロワイヤル", - "alias_name_display" : "ピュアリー・ロワイヤル", - "event" : [ { - "event_id" : 807, - "event_name" : "第7回アイドルLIVEロワイヤル" - } ], - "hash" : "33c1f059acc1311a5f74820b875be8ba", - "id" : "1519102", - "profile" : { - "bust" : "83", - "height" : "156", - "hip" : "81", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "イノセントアミューズ", - "alias_name_display" : "イノセントアミューズ", - "event" : [ { - "event_id" : 717, - "event_name" : "第17回ドリームLIVEフェスティバル" - } ], - "hash" : "f8fecd863bd847cb1a36312f50bca69c", - "id" : "1428601", - "profile" : { - "bust" : "83", - "height" : "156", - "hip" : "81", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "イノセントアミューズ", - "alias_name_display" : "イノセントアミューズ", - "event" : [ { - "event_id" : 717, - "event_name" : "第17回ドリームLIVEフェスティバル" - } ], - "hash" : "d5524d87d135dae077956ca332579a7e", - "id" : "1528602", - "profile" : { - "bust" : "83", - "height" : "156", - "hip" : "81", - "waist" : "57", - "weight" : "47" - } - } ], - "idol_id" : 9, - "idol_name" : "奥山沙織", - "idol_name_display" : "奥山沙織", - "units" : [ { - "id" : "49", - "name" : "ピュアリーツイン" - } ] -}, { - "aliases" : [ { - "hash" : "729dbe34998bc4505ec54c4a91d6274c", - "id" : "1001001", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "hash" : "6655d43d8c1acde40cdc1740c3096403", - "id" : "1101002", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "パジャマパーティー", - "alias_name_display" : "パジャマパーティー", - "hash" : "2f69d0c03220e324a6ef7c3a6f3cddd0", - "id" : "1204201", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "パジャマパーティー", - "alias_name_display" : "パジャマパーティー", - "hash" : "e57b36e27f8f7a01204a79a4d8556424", - "id" : "1304202", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "デビリッシュゴシック", - "alias_name_display" : "デビリッシュゴシック", - "hash" : "da37673cb29940724a44320a4eb5b9c7", - "id" : "1212501", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "デビリッシュゴシック", - "alias_name_display" : "デビリッシュゴシック", - "hash" : "43257fa67c9e153c2342a7a9b3f68570", - "id" : "1312502", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "スクールガール", - "alias_name_display" : "スクールガール", - "hash" : "fb5049ce7e308b41e7b7ff194b4d4c8c", - "id" : "1218701", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "スクールガール", - "alias_name_display" : "スクールガール", - "hash" : "5070ff91ff6e35dfd983aaa23d49c4f8", - "id" : "1318702", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ブライダルセレクション", - "alias_name_display" : "ブライダルセレクション", - "hash" : "9f456971110744b4582cdc908daff847", - "id" : "1224101", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ブライダルセレクション", - "alias_name_display" : "ブライダルセレクション", - "hash" : "789d621e2350e2918f7de22eaa885ce5", - "id" : "1324102", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ロワイヤルスタイルNP", - "alias_name_display" : "ロワイヤルスタイルNP", - "event" : [ { - "event_id" : 817, - "event_name" : "アイドルLIVEロワイヤル お花見SP" - } ], - "hash" : "239a7383564dda0b8581c60fd9e91d19", - "id" : "1227401", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ロワイヤルスタイルNP", - "alias_name_display" : "ロワイヤルスタイルNP", - "event" : [ { - "event_id" : 817, - "event_name" : "アイドルLIVEロワイヤル お花見SP" - } ], - "hash" : "a008d980b8fa78799cba20ca9ca26ba1", - "id" : "1327402", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "プリティー助手", - "alias_name_display" : "プリティー助手", - "event" : [ { - "event_id" : 1904, - "event_name" : "魔界公演 妖艶魔女と消えたハロウィン" - } ], - "hash" : "5910b23711ad9fad1d4b0422bdcb6e34", - "id" : "1330202", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "プリマヴェーラビアッジョ", - "alias_name_display" : "プリマヴェーラビアッジョ", - "event" : [ { - "event_id" : 503, - "event_name" : "アイドルLIVEツアーinイタリア" - } ], - "hash" : "98b0ed321a6ffcbd43865235bcddfeaf", - "id" : "1406001", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "プリマヴェーラビアッジョ", - "alias_name_display" : "プリマヴェーラビアッジョ", - "event" : [ { - "event_id" : 503, - "event_name" : "アイドルLIVEツアーinイタリア" - } ], - "hash" : "5a92ba70490bbfcc2beb6da09a4bfe49", - "id" : "1506002", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ホワイトピクシー", - "alias_name_display" : "ホワイトピクシー", - "event" : [ { - "event_id" : 1303, - "event_name" : "第3回プロダクションマッチフェスティバルS" - } ], - "hash" : "4e23cc6a906719f5abd9c071f6a951f3", - "id" : "1421501", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ホワイトピクシー", - "alias_name_display" : "ホワイトピクシー", - "event" : [ { - "event_id" : 1303, - "event_name" : "第3回プロダクションマッチフェスティバルS" - } ], - "hash" : "bd77e3aa1b781fed0b474a070e939eab", - "id" : "1521502", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - } ], - "idol_id" : 10, - "idol_name" : "間中美里", - "idol_name_display" : "間中美里", - "units" : [ { - "id" : "159", - "name" : "パステル・カクテル" - }, { - "id" : "193", - "name" : "イエローリリー" - }, { - "id" : "206", - "name" : "セクシーボンデージ" - }, { - "id" : "207", - "name" : "ムーランルージュ" - }, { - "id" : "209", - "name" : "ロワイヤルスタイルNP" - } ] -}, { - "aliases" : [ { - "hash" : "bef9093335fbcbe9e92a41d2d68a206d", - "id" : "1001101", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "86", - "waist" : "59", - "weight" : "42" - } - }, { - "hash" : "d25ce47acff65352ce0a24e20ff15178", - "id" : "1101102", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "86", - "waist" : "58", - "weight" : "42" - } - }, { - "alias_name" : "聖夜", - "alias_name_display" : "聖夜", - "event" : [ { - "event_id" : 101, - "event_name" : "星降るクリスマス" - } ], - "hash" : "4907a5097709ffb270d71d19a4535cee", - "id" : "1202001", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "86", - "waist" : "59", - "weight" : "42" - } - }, { - "alias_name" : "聖夜", - "alias_name_display" : "聖夜", - "event" : [ { - "event_id" : 101, - "event_name" : "星降るクリスマス" - } ], - "hash" : "892b6b0c9aa3f3edbf2ea1b05e3c70ea", - "id" : "1302002", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "86", - "waist" : "58", - "weight" : "42" - } - }, { - "alias_name" : "戦国姫", - "alias_name_display" : "戦国姫", - "hash" : "2d5bc0c5df458224606809495dc1afcd", - "id" : "1500902", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "86", - "waist" : "58", - "weight" : "42" - } - }, { - "alias_name" : "はにかみ乙女", - "alias_name_display" : "はにかみ乙女", - "hash" : "4f6605f1390ff27296abf8072f06d1a7", - "id" : "1402301", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "86", - "waist" : "59", - "weight" : "42" - } - }, { - "alias_name" : "はにかみ乙女", - "alias_name_display" : "はにかみ乙女", - "hash" : "d6ddb3065b0006be872bc532d29297ec", - "id" : "1502302", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "86", - "waist" : "59", - "weight" : "42" - } - }, { - "alias_name" : "聖夜のプレゼント", - "alias_name_display" : "聖夜のプレゼント", - "hash" : "94d3ea2fc6d661ab277e492432568e22", - "id" : "1404301", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "86", - "waist" : "59", - "weight" : "42" - } - }, { - "alias_name" : "聖夜のプレゼント", - "alias_name_display" : "聖夜のプレゼント", - "hash" : "02fb1d61edfcf0ab6ea439807a8ad914", - "id" : "1504302", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "86", - "waist" : "59", - "weight" : "42" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "255795031bff51e2289b75d660d2d292", - "id" : "1404801", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "86", - "waist" : "59", - "weight" : "42" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "2a0ba73e0e08299a21d28ac6f7512b1d", - "id" : "1504802", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "86", - "waist" : "59", - "weight" : "42" - } - }, { - "alias_name" : "ハロウィンうぃっち", - "alias_name_display" : "ハロウィンうぃっち", - "hash" : "4666ad388b7ba759654a7299eb302356", - "id" : "1409501", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "86", - "waist" : "59", - "weight" : "42" - } - }, { - "alias_name" : "ハロウィンうぃっち", - "alias_name_display" : "ハロウィンうぃっち", - "hash" : "d8acf685442132547a1c399fd9d342bc", - "id" : "1509502", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "86", - "waist" : "59", - "weight" : "42" - } - }, { - "alias_name" : "ワンダフルマジック", - "alias_name_display" : "ワンダフルマジック", - "hash" : "dfc136bcf818e927b74615613332e737", - "id" : "1413001", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "86", - "waist" : "59", - "weight" : "42" - } - }, { - "alias_name" : "ワンダフルマジック", - "alias_name_display" : "ワンダフルマジック", - "hash" : "136657fa4a63321ec624a82fb10e97a4", - "id" : "1513002", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "86", - "waist" : "59", - "weight" : "42" - } - }, { - "alias_name" : "3rdアニバーサリー", - "alias_name_display" : "3rdアニバーサリー", - "event" : [ { - "event_id" : 415, - "event_name" : "アイドルプロデュース the 3rd Anniversary" - } ], - "hash" : "8a42faefd560fa7d67825f9922b0a5c9", - "id" : "1420101", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "86", - "waist" : "59", - "weight" : "42" - } - }, { - "alias_name" : "3rdアニバーサリー", - "alias_name_display" : "3rdアニバーサリー", - "event" : [ { - "event_id" : 415, - "event_name" : "アイドルプロデュース the 3rd Anniversary" - } ], - "hash" : "086525ca98f96b889095348482203f98", - "id" : "1520102", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "86", - "waist" : "59", - "weight" : "42" - } - }, { - "alias_name" : "3rdアニバーサリー・S", - "alias_name_display" : "3rdアニバーサリー・S", - "event" : [ { - "event_id" : 415, - "event_name" : "アイドルプロデュース the 3rd Anniversary" - } ], - "hash" : "7a9aeb6c91fce6a201f9249503875b6e", - "id" : "1420201", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "86", - "waist" : "59", - "weight" : "42" - } - }, { - "alias_name" : "3rdアニバーサリー・S", - "alias_name_display" : "3rdアニバーサリー・S", - "event" : [ { - "event_id" : 415, - "event_name" : "アイドルプロデュース the 3rd Anniversary" - } ], - "hash" : "aa66da9ab10d44dc6b422f12befbfbb8", - "id" : "1520202", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "86", - "waist" : "59", - "weight" : "42" - } - }, { - "alias_name" : "プレシャスエモーション", - "alias_name_display" : "プレシャスエモーション", - "hash" : "b6c6287c284349785258a66ddf5cc487", - "id" : "1424201", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "86", - "waist" : "59", - "weight" : "42" - } - }, { - "alias_name" : "プレシャスエモーション", - "alias_name_display" : "プレシャスエモーション", - "hash" : "3166f21cb4b0a33660bc162146a7d129", - "id" : "1524202", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "86", - "waist" : "59", - "weight" : "42" - } - }, { - "alias_name" : "ホワイトニューイヤー", - "alias_name_display" : "ホワイトニューイヤー", - "hash" : "658b39b8d4cebd6c30cfc5e2d7dd04c6", - "id" : "1430401", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "86", - "waist" : "59", - "weight" : "42" - } - }, { - "alias_name" : "ホワイトニューイヤー", - "alias_name_display" : "ホワイトニューイヤー", - "hash" : "4b4e748d60b9a1b78aec215fb49c2227", - "id" : "1530402", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "86", - "waist" : "59", - "weight" : "42" - } - }, { - "alias_name" : "シンデレラドリーム", - "alias_name_display" : "シンデレラドリーム", - "hash" : "4b123c9565147d559a1900bc29cc143e", - "id" : "1433101", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "86", - "waist" : "59", - "weight" : "42" - } - }, { - "alias_name" : "シンデレラドリーム", - "alias_name_display" : "シンデレラドリーム", - "hash" : "06634f09752a3c79a39c537123cd9f95", - "id" : "1533102", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "86", - "waist" : "59", - "weight" : "42" - } - }, { - "alias_name" : "キープオンゴーイング", - "alias_name_display" : "キープオンゴーイング", - "hash" : "ed3895ce9f0156ac1a737b5f52c229e3", - "id" : "1436901", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "86", - "waist" : "59", - "weight" : "42" - } - }, { - "alias_name" : "キープオンゴーイング", - "alias_name_display" : "キープオンゴーイング", - "hash" : "319223e824af7aed34094925be62c94c", - "id" : "1536902", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "86", - "waist" : "59", - "weight" : "42" - } - }, { - "alias_name" : "つなげてドロップス", - "alias_name_display" : "つなげてドロップス", - "hash" : "9b6f3d979994b95c68ec9a6057ff9681", - "id" : "1440201", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "86", - "waist" : "59", - "weight" : "42" - } - }, { - "alias_name" : "つなげてドロップス", - "alias_name_display" : "つなげてドロップス", - "hash" : "6c7bab6998ae7b616fc1598308ba201b", - "id" : "1540202", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "86", - "waist" : "59", - "weight" : "42" - } - } ], - "idol_id" : 11, - "idol_name" : "小日向美穂", - "idol_name_display" : "小日向美穂", - "units" : [ { - "id" : "43", - "name" : "春色姫君" - }, { - "id" : "135", - "name" : "ピンキーキュート" - }, { - "id" : "138", - "name" : "ピンクチェックスクール" - }, { - "id" : "192", - "name" : "Masque:Rade" - }, { - "id" : "195", - "name" : "C5" - }, { - "id" : "212", - "name" : "CINDERELLA GIRLS" - } ] -}, { - "aliases" : [ { - "hash" : "e0ac4f8b1faf39c137d2bef65559b5f5", - "id" : "1001201", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "hash" : "fa69e322ed10a34ef9b35030d5250e4c", - "id" : "1101202", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "バレンタイン", - "alias_name_display" : "バレンタイン", - "event" : [ { - "event_id" : 103, - "event_name" : "バレンタインパーティー" - } ], - "hash" : "4c51173ad96349b44354060477ee821d", - "id" : "1202901", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "バレンタイン", - "alias_name_display" : "バレンタイン", - "event" : [ { - "event_id" : 103, - "event_name" : "バレンタインパーティー" - } ], - "hash" : "a1efe353a69781c9b79c3755f2f39ed4", - "id" : "1302902", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "パジャマパーティー", - "alias_name_display" : "パジャマパーティー", - "hash" : "76d8828c447915a4dc60fff5907a58a7", - "id" : "1204101", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "パジャマパーティー", - "alias_name_display" : "パジャマパーティー", - "hash" : "f6a64a87bff96b4a2e0f53edb6779af6", - "id" : "1304102", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "京町乙女", - "alias_name_display" : "京町乙女", - "event" : [ { - "event_id" : 402, - "event_name" : "アイドルプロデュース京町編" - } ], - "hash" : "1c4243ff6b135d3a6ad27e1fa4bb3a2c", - "id" : "1205901", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "京町乙女", - "alias_name_display" : "京町乙女", - "event" : [ { - "event_id" : 402, - "event_name" : "アイドルプロデュース京町編" - } ], - "hash" : "7b98a6c56f9eeb63d49689d3afa516e8", - "id" : "1305902", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "バレンタインエンジェル", - "alias_name_display" : "バレンタインエンジェル", - "hash" : "41da088536def062d420ebad260e37c2", - "id" : "1405001", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "バレンタインエンジェル", - "alias_name_display" : "バレンタインエンジェル", - "hash" : "56e0f5e7c766e4719720b824f51e5a55", - "id" : "1505002", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "浴衣の華姫", - "alias_name_display" : "浴衣の華姫", - "hash" : "5440e9e9c4cfbc57188213c0aff1639e", - "id" : "1407601", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "浴衣の華姫", - "alias_name_display" : "浴衣の華姫", - "hash" : "56b9e10a10d166583011ef60a58a9c82", - "id" : "1507602", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "e0bc2a1ae04cb1a3e0045ece2eb6935f", - "id" : "1410301", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "da5e0614a354a5c21a1afc915a91ba97", - "id" : "1510302", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "冬のメロディー", - "alias_name_display" : "冬のメロディー", - "hash" : "80d79214f75af36736b7bd2e55a76cc2", - "id" : "1410701", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "冬のメロディー", - "alias_name_display" : "冬のメロディー", - "hash" : "f3a4a141eb2c9ec791d984c1655ed24d", - "id" : "1510702", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "クローバーエンジェル", - "alias_name_display" : "クローバーエンジェル", - "event" : [ { - "event_id" : 706, - "event_name" : "第6回ドリームLIVEフェスティバル" - } ], - "hash" : "f9c770b61a35768542faa7ef959070e6", - "id" : "1413301", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "クローバーエンジェル", - "alias_name_display" : "クローバーエンジェル", - "event" : [ { - "event_id" : 706, - "event_name" : "第6回ドリームLIVEフェスティバル" - } ], - "hash" : "265938c96a3a1d74ccbc5cc7577fa546", - "id" : "1513302", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ふわふわうさぎ", - "alias_name_display" : "ふわふわうさぎ", - "hash" : "cdf131bfe5c184dbc3decfc85773a8fa", - "id" : "1417901", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ふわふわうさぎ", - "alias_name_display" : "ふわふわうさぎ", - "hash" : "5bc43718ce56eb04476f0e60a08eca4f", - "id" : "1517902", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ブライダルエンジェル", - "alias_name_display" : "ブライダルエンジェル", - "hash" : "fbf203c786aef175dc76a2aa8227a5d9", - "id" : "1424801", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ブライダルエンジェル", - "alias_name_display" : "ブライダルエンジェル", - "hash" : "fc04f9389656bde489e65ae8d36e6a2e", - "id" : "1524802", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "キャンディアイランド", - "alias_name_display" : "キャンディアイランド", - "hash" : "93dfb2c011a794668c1653f097a4b464", - "id" : "1526002", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "はじめての太鼓", - "alias_name_display" : "はじめての太鼓", - "hash" : "61f90183b1e6c59133ec8c0ae4d3f2cd", - "id" : "1528002", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "G4U!", - "alias_name_display" : "G4U!", - "hash" : "f32aa981899a3e4f8367b6346e59e8c8", - "id" : "1530902", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ハピネスチューン", - "alias_name_display" : "ハピネスチューン", - "hash" : "7b2d41d513acc6f434bc29bacca28529", - "id" : "1431501", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ハピネスチューン", - "alias_name_display" : "ハピネスチューン", - "hash" : "7881ef1cb6cf776ed071272ca3dbf5e7", - "id" : "1531502", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "スクールデイズ", - "alias_name_display" : "スクールデイズ", - "hash" : "277f54caf12509c27e2a04db25fb43c1", - "id" : "1435801", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "スクールデイズ", - "alias_name_display" : "スクールデイズ", - "hash" : "89d14a4ef29eabee5f88b05e4c133846", - "id" : "1535802", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "シンデレラドリーム", - "alias_name_display" : "シンデレラドリーム", - "hash" : "986579406645926e00ee0cf4857fb25d", - "id" : "1439201", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "シンデレラドリーム", - "alias_name_display" : "シンデレラドリーム", - "hash" : "aab77d68d6c72c73efda675edbd387a8", - "id" : "1539202", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - } ], - "idol_id" : 12, - "idol_name" : "緒方智絵里", - "idol_name_display" : "緒方智絵里", - "units" : [ { - "id" : "91", - "name" : "京町乙女" - }, { - "id" : "94", - "name" : "シャイニングゴッドチェリー" - }, { - "id" : "135", - "name" : "ピンキーキュート" - }, { - "id" : "137", - "name" : "CANDY ISLAND" - }, { - "id" : "139", - "name" : "397cherry" - }, { - "id" : "173", - "name" : "ピンクドットバルーン" - }, { - "id" : "192", - "name" : "Masque:Rade" - }, { - "id" : "194", - "name" : "サクヤヒメ" - }, { - "id" : "213", - "name" : "CINDERELLA PROJECT" - } ] -}, { - "aliases" : [ { - "hash" : "fb3b173c49703071b4dbdd5ed424640c", - "id" : "1001301", - "profile" : { - "bust" : "81", - "height" : "154", - "hip" : "80", - "waist" : "58", - "weight" : "43" - } - }, { - "hash" : "9e15861e6115bffdcce4d7115522857b", - "id" : "1101302", - "profile" : { - "bust" : "81", - "height" : "154", - "hip" : "80", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "ジューンブライド", - "alias_name_display" : "ジューンブライド", - "event" : [ { - "event_id" : 105, - "event_name" : "きらめくブライダルショー" - } ], - "hash" : "fc3e9297dd790e8cf196c3aad44ac280", - "id" : "1002101", - "profile" : { - "bust" : "81", - "height" : "154", - "hip" : "80", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "ジューンブライド", - "alias_name_display" : "ジューンブライド", - "event" : [ { - "event_id" : 105, - "event_name" : "きらめくブライダルショー" - } ], - "hash" : "9f990b2be46d9594ff3fb547b07974de", - "id" : "1102102", - "profile" : { - "bust" : "81", - "height" : "154", - "hip" : "80", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "マーメイドパラダイス", - "alias_name_display" : "マーメイドパラダイス", - "hash" : "2e581f1e6d6efc823c7c50f727df3515", - "id" : "1205201", - "profile" : { - "bust" : "81", - "height" : "154", - "hip" : "80", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "マーメイドパラダイス", - "alias_name_display" : "マーメイドパラダイス", - "hash" : "d5667b3d3207d1cb3d7655fa13b969fd", - "id" : "1305202", - "profile" : { - "bust" : "81", - "height" : "154", - "hip" : "80", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "ラブリーデイズ", - "alias_name_display" : "ラブリーデイズ", - "hash" : "5f46af2a7cfc01c41a697f621c12a8fb", - "id" : "1221701", - "profile" : { - "bust" : "81", - "height" : "154", - "hip" : "80", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "ラブリーデイズ", - "alias_name_display" : "ラブリーデイズ", - "hash" : "a49399e42faba8f22952e1fbb066fdce", - "id" : "1321702", - "profile" : { - "bust" : "81", - "height" : "154", - "hip" : "80", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "タラン・サリュ", - "alias_name_display" : "タラン・サリュ", - "hash" : "804fbc1bb11314fb878793df312736c6", - "id" : "1229601", - "profile" : { - "bust" : "81", - "height" : "154", - "hip" : "80", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "タラン・サリュ", - "alias_name_display" : "タラン・サリュ", - "hash" : "49050a377ed2b834ec13a980739f1430", - "id" : "1329602", - "profile" : { - "bust" : "81", - "height" : "154", - "hip" : "80", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "スイートクリスマス", - "alias_name_display" : "スイートクリスマス", - "hash" : "93ac99834f1bd8a4900266cee4fe87a3", - "id" : "1404001", - "profile" : { - "bust" : "81", - "height" : "154", - "hip" : "80", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "スイートクリスマス", - "alias_name_display" : "スイートクリスマス", - "hash" : "3060e7a4d2ecc75ca60ec384e40eaa6f", - "id" : "1504002", - "profile" : { - "bust" : "81", - "height" : "154", - "hip" : "80", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "カラフルレインボー", - "alias_name_display" : "カラフルレインボー", - "event" : [ { - "event_id" : 407, - "event_name" : "アイドルプロデュース 鎌倉あじさい巡り" - } ], - "hash" : "aa88b658b8901cf3bb0af315c145248e", - "id" : "1407001", - "profile" : { - "bust" : "81", - "height" : "154", - "hip" : "80", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "カラフルレインボー", - "alias_name_display" : "カラフルレインボー", - "event" : [ { - "event_id" : 407, - "event_name" : "アイドルプロデュース 鎌倉あじさい巡り" - } ], - "hash" : "17159c03d3380ca6670329df4722b3e4", - "id" : "1507002", - "profile" : { - "bust" : "81", - "height" : "154", - "hip" : "80", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "ハートフルサービス", - "alias_name_display" : "ハートフルサービス", - "hash" : "82977bbfbadf655998e449ebaa3f6b35", - "id" : "1411101", - "profile" : { - "bust" : "81", - "height" : "154", - "hip" : "80", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "ハートフルサービス", - "alias_name_display" : "ハートフルサービス", - "hash" : "973864636042aaedda0574601c8f2915", - "id" : "1511102", - "profile" : { - "bust" : "81", - "height" : "154", - "hip" : "80", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "学園の秘密", - "alias_name_display" : "学園の秘密", - "event" : [ { - "event_id" : 412, - "event_name" : "聖靴学園の七不思議" - } ], - "hash" : "486dd74101ffb18ea9e915e62a56e5a4", - "id" : "1414201", - "profile" : { - "bust" : "81", - "height" : "154", - "hip" : "80", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "学園の秘密", - "alias_name_display" : "学園の秘密", - "event" : [ { - "event_id" : 412, - "event_name" : "聖靴学園の七不思議" - } ], - "hash" : "e1e37fcbbe67e706cb0bb336f9d972c5", - "id" : "1514202", - "profile" : { - "bust" : "81", - "height" : "154", - "hip" : "80", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "学園の秘密・S", - "alias_name_display" : "学園の秘密・S", - "event" : [ { - "event_id" : 412, - "event_name" : "聖靴学園の七不思議" - } ], - "hash" : "4aa2c8c878931a167d1a1d87a70442e4", - "id" : "1414301", - "profile" : { - "bust" : "81", - "height" : "154", - "hip" : "80", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "学園の秘密・S", - "alias_name_display" : "学園の秘密・S", - "event" : [ { - "event_id" : 412, - "event_name" : "聖靴学園の七不思議" - } ], - "hash" : "04fc73953bac772e2030c32bd86e66a2", - "id" : "1514302", - "profile" : { - "bust" : "81", - "height" : "154", - "hip" : "80", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "ホームメイドハッピー", - "alias_name_display" : "ホームメイドハッピー", - "event" : [ { - "event_id" : 708, - "event_name" : "第8回ドリームLIVEフェスティバル" - } ], - "hash" : "da958ba98f8b7ff456eabc29c82648a5", - "id" : "1417801", - "profile" : { - "bust" : "81", - "height" : "154", - "hip" : "80", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "ホームメイドハッピー", - "alias_name_display" : "ホームメイドハッピー", - "event" : [ { - "event_id" : 708, - "event_name" : "第8回ドリームLIVEフェスティバル" - } ], - "hash" : "2b63366b029c03f89a8d9d08ed27a091", - "id" : "1517802", - "profile" : { - "bust" : "81", - "height" : "154", - "hip" : "80", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "ウィンターホリデーリゾート", - "alias_name_display" : "ウィンターホリデーリゾート", - "hash" : "eea0ece9a3e1f4abc11b3c0314a1c3df", - "id" : "1421701", - "profile" : { - "bust" : "81", - "height" : "154", - "hip" : "80", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "ウィンターホリデーリゾート", - "alias_name_display" : "ウィンターホリデーリゾート", - "hash" : "a21cdf41a5909ce5afd832ee49a95cb5", - "id" : "1521702", - "profile" : { - "bust" : "81", - "height" : "154", - "hip" : "80", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "サマーメモリー", - "alias_name_display" : "サマーメモリー", - "event" : [ { - "event_id" : 1304, - "event_name" : "第4回プロダクションマッチフェスティバルS" - } ], - "hash" : "fe4522316252c03ecf070a4ce8006420", - "id" : "1426101", - "profile" : { - "bust" : "81", - "height" : "154", - "hip" : "80", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "サマーメモリー", - "alias_name_display" : "サマーメモリー", - "event" : [ { - "event_id" : 1304, - "event_name" : "第4回プロダクションマッチフェスティバルS" - } ], - "hash" : "a9e1539ebecc3f6a7bd92247238517cb", - "id" : "1526102", - "profile" : { - "bust" : "81", - "height" : "154", - "hip" : "80", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "ハートキャプチャー", - "alias_name_display" : "ハートキャプチャー", - "hash" : "182d6a7355ec611af924f02f27c3b5cf", - "id" : "1431301", - "profile" : { - "bust" : "81", - "height" : "154", - "hip" : "80", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "ハートキャプチャー", - "alias_name_display" : "ハートキャプチャー", - "hash" : "198beec37ee1f0cf59423f1f5e674ce4", - "id" : "1531302", - "profile" : { - "bust" : "81", - "height" : "154", - "hip" : "80", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "42207079abfb5d0aae516e2774f5683c", - "id" : "1431701", - "profile" : { - "bust" : "81", - "height" : "154", - "hip" : "80", - "waist" : "58", - "weight" : "43" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "deb87e553eab1a1d04036d340c632d0c", - "id" : "1531702", - "profile" : { - "bust" : "81", - "height" : "154", - "hip" : "80", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "ハートオブユニティ", - "alias_name_display" : "ハートオブユニティ", - "event" : [ { - "event_id" : 1905, - "event_name" : "ディアリースターナイト ~聖夜のキセキ~" - } ], - "hash" : "ef73d6963acf01c99f2b7e304c1f603c", - "id" : "1437101", - "profile" : { - "bust" : "81", - "height" : "154", - "hip" : "80", - "waist" : "58", - "weight" : "43" - } - }, { - "alias_name" : "ハートオブユニティ", - "alias_name_display" : "ハートオブユニティ", - "event" : [ { - "event_id" : 1905, - "event_name" : "ディアリースターナイト ~聖夜のキセキ~" - } ], - "hash" : "0bacaa88e323666ac8790a16a2ac46ee", - "id" : "1537102", - "profile" : { - "bust" : "81", - "height" : "154", - "hip" : "80", - "waist" : "57", - "weight" : "43" - } - } ], - "idol_id" : 13, - "idol_name" : "五十嵐響子", - "idol_name_display" : "五十嵐響子", - "units" : [ { - "id" : "40", - "name" : "ハートハーモナイズ" - }, { - "id" : "138", - "name" : "ピンクチェックスクール" - }, { - "id" : "182", - "name" : "マーメイドパラダイス" - }, { - "id" : "191", - "name" : "Love Yell" - }, { - "id" : "196", - "name" : "la Roseraie" - } ] -}, { - "aliases" : [ { - "hash" : "64b53f490afd702be31de96b5ae28e36", - "id" : "1001401", - "profile" : { - "bust" : "75", - "height" : "144", - "hip" : "77", - "waist" : "54", - "weight" : "33" - } - }, { - "hash" : "1b1970e02f5855b63072777bcbb52293", - "id" : "1101402", - "profile" : { - "bust" : "75", - "height" : "144", - "hip" : "77", - "waist" : "54", - "weight" : "33" - } - }, { - "alias_name" : "テーマパーク", - "alias_name_display" : "テーマパーク", - "event" : [ { - "event_id" : 203, - "event_name" : "アイドルサバイバルinテーマパーク" - } ], - "hash" : "9561157dddcfefb3edfcf2965e025edc", - "id" : "1203901", - "profile" : { - "bust" : "75", - "height" : "144", - "hip" : "77", - "waist" : "54", - "weight" : "33" - } - }, { - "alias_name" : "テーマパーク", - "alias_name_display" : "テーマパーク", - "event" : [ { - "event_id" : 203, - "event_name" : "アイドルサバイバルinテーマパーク" - } ], - "hash" : "b76617a1099b216004254eeeaee57846", - "id" : "1303902", - "profile" : { - "bust" : "75", - "height" : "144", - "hip" : "77", - "waist" : "54", - "weight" : "33" - } - }, { - "alias_name" : "プリティ☆ウィッチ", - "alias_name_display" : "プリティ☆ウィッチ", - "hash" : "6a7eca54ae5c7fa44e5a6af92f3ae135", - "id" : "1208701", - "profile" : { - "bust" : "75", - "height" : "144", - "hip" : "77", - "waist" : "54", - "weight" : "33" - } - }, { - "alias_name" : "プリティ☆ウィッチ", - "alias_name_display" : "プリティ☆ウィッチ", - "hash" : "727ec3b14e0bede0acfde0c345314419", - "id" : "1308702", - "profile" : { - "bust" : "75", - "height" : "144", - "hip" : "77", - "waist" : "54", - "weight" : "33" - } - }, { - "alias_name" : "ひな祭り", - "alias_name_display" : "ひな祭り", - "event" : [ { - "event_id" : 510, - "event_name" : "ひな祭りLIVEツアーカーニバル" - } ], - "hash" : "d85836d7aa213eeaa97637ced5f4c905", - "id" : "1214901", - "profile" : { - "bust" : "75", - "height" : "144", - "hip" : "77", - "waist" : "54", - "weight" : "33" - } - }, { - "alias_name" : "ひな祭り", - "alias_name_display" : "ひな祭り", - "event" : [ { - "event_id" : 510, - "event_name" : "ひな祭りLIVEツアーカーニバル" - } ], - "hash" : "3f10e5b72b8ec50b7d0661ed47518e05", - "id" : "1314902", - "profile" : { - "bust" : "75", - "height" : "144", - "hip" : "77", - "waist" : "54", - "weight" : "33" - } - }, { - "alias_name" : "カニ☆ピース", - "alias_name_display" : "カニ☆ピース", - "event" : [ { - "event_id" : 1302, - "event_name" : "第2回プロダクションマッチフェスティバルS" - } ], - "hash" : "bc8c093931062396a2f92c167729fe61", - "id" : "1218901", - "profile" : { - "bust" : "75", - "height" : "144", - "hip" : "77", - "waist" : "54", - "weight" : "33" - } - }, { - "alias_name" : "カニ☆ピース", - "alias_name_display" : "カニ☆ピース", - "event" : [ { - "event_id" : 1302, - "event_name" : "第2回プロダクションマッチフェスティバルS" - } ], - "hash" : "8cde5ff1e02d37e807792a6423c9537d", - "id" : "1318902", - "profile" : { - "bust" : "75", - "height" : "144", - "hip" : "77", - "waist" : "54", - "weight" : "33" - } - }, { - "alias_name" : "マーチングバンド", - "alias_name_display" : "マーチングバンド", - "hash" : "81dacc4c39b0dc0b7e01c2b8e7e04887", - "id" : "1223601", - "profile" : { - "bust" : "75", - "height" : "144", - "hip" : "77", - "waist" : "54", - "weight" : "33" - } - }, { - "alias_name" : "マーチングバンド", - "alias_name_display" : "マーチングバンド", - "hash" : "a2b97d98b0f9ce2deec5a0e7cd0b8bc6", - "id" : "1323602", - "profile" : { - "bust" : "75", - "height" : "144", - "hip" : "77", - "waist" : "54", - "weight" : "33" - } - }, { - "alias_name" : "ビターミルキー", - "alias_name_display" : "ビターミルキー", - "hash" : "9df9b80b17154f73174f72929415acdd", - "id" : "1228501", - "profile" : { - "bust" : "75", - "height" : "144", - "hip" : "77", - "waist" : "54", - "weight" : "33" - } - }, { - "alias_name" : "ビターミルキー", - "alias_name_display" : "ビターミルキー", - "hash" : "326c2f9e2f203f305f9436112b522034", - "id" : "1328502", - "profile" : { - "bust" : "75", - "height" : "144", - "hip" : "77", - "waist" : "54", - "weight" : "33" - } - }, { - "alias_name" : "ロワイヤルスタイルND", - "alias_name_display" : "ロワイヤルスタイルND", - "event" : [ { - "event_id" : 820, - "event_name" : "第20回アイドルLIVEロワイヤル" - } ], - "hash" : "8ec6cfce021cf00090bec4fca426fe41", - "id" : "1230801", - "profile" : { - "bust" : "75", - "height" : "144", - "hip" : "77", - "waist" : "54", - "weight" : "33" - } - }, { - "alias_name" : "ロワイヤルスタイルND", - "alias_name_display" : "ロワイヤルスタイルND", - "event" : [ { - "event_id" : 820, - "event_name" : "第20回アイドルLIVEロワイヤル" - } ], - "hash" : "a6c7fd38a0f375a571248af4be5f7302", - "id" : "1330802", - "profile" : { - "bust" : "75", - "height" : "144", - "hip" : "77", - "waist" : "54", - "weight" : "33" - } - }, { - "alias_name" : "キラキラリコメンド", - "alias_name_display" : "キラキラリコメンド", - "hash" : "a56a124013e06a0399fd43f5612bae90", - "id" : "1233401", - "profile" : { - "bust" : "75", - "height" : "144", - "hip" : "77", - "waist" : "54", - "weight" : "33" - } - }, { - "alias_name" : "キラキラリコメンド", - "alias_name_display" : "キラキラリコメンド", - "hash" : "face73d591e33ea649dfb00040334ed8", - "id" : "1333402", - "profile" : { - "bust" : "75", - "height" : "144", - "hip" : "77", - "waist" : "54", - "weight" : "33" - } - }, { - "alias_name" : "夏色ガール", - "alias_name_display" : "夏色ガール", - "event" : [ { - "event_id" : 702, - "event_name" : "水着DEドリームLIVEフェスティバル" - } ], - "hash" : "6a9e56a14c98a683a788a243c107c5be", - "id" : "1408401", - "profile" : { - "bust" : "75", - "height" : "144", - "hip" : "77", - "waist" : "54", - "weight" : "33" - } - }, { - "alias_name" : "夏色ガール", - "alias_name_display" : "夏色ガール", - "event" : [ { - "event_id" : 702, - "event_name" : "水着DEドリームLIVEフェスティバル" - } ], - "hash" : "58176ddb838cc778720e4e3a388815ef", - "id" : "1508402", - "profile" : { - "bust" : "75", - "height" : "144", - "hip" : "77", - "waist" : "54", - "weight" : "33" - } - }, { - "alias_name" : "かわいいコックさん", - "alias_name_display" : "かわいいコックさん", - "event" : [ { - "event_id" : 519, - "event_name" : "美食公演 女神に捧ぐ御馳走" - } ], - "hash" : "ae0a204566199c5837bebf8fdd6173e7", - "id" : "1424301", - "profile" : { - "bust" : "75", - "height" : "144", - "hip" : "77", - "waist" : "54", - "weight" : "33" - } - }, { - "alias_name" : "かわいいコックさん", - "alias_name_display" : "かわいいコックさん", - "event" : [ { - "event_id" : 519, - "event_name" : "美食公演 女神に捧ぐ御馳走" - } ], - "hash" : "12c2c842a331db791b909c0003a105ba", - "id" : "1524302", - "profile" : { - "bust" : "75", - "height" : "144", - "hip" : "77", - "waist" : "54", - "weight" : "33" - } - } ], - "idol_id" : 14, - "idol_name" : "柳瀬美由紀", - "idol_name_display" : "柳瀬美由紀", - "units" : [ { - "id" : "173", - "name" : "ピンクドットバルーン" - }, { - "id" : "178", - "name" : "からぱれ" - }, { - "id" : "210", - "name" : "ロワイヤルスタイルND" - }, { - "id" : "214", - "name" : "L.M.B.G" - } ] -}, { - "aliases" : [ { - "event" : [ { - "event_id" : 101, - "event_name" : "星降るクリスマス" - } ], - "hash" : "1cefdef7df7c14eca803910b67e61dfc", - "id" : "1001501", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "event" : [ { - "event_id" : 101, - "event_name" : "星降るクリスマス" - } ], - "hash" : "fe2f3ecbf682014be99d3f94512a48bd", - "id" : "1101502", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "メルヘン&ゴシック", - "alias_name_display" : "メルヘン&ゴシック", - "hash" : "2b676cf6e1bd042f04a6e8367ac47fdd", - "id" : "1208201", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "メルヘン&ゴシック", - "alias_name_display" : "メルヘン&ゴシック", - "hash" : "21d48ab7d98d5800c7a8db34c89842cd", - "id" : "1308202", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "迎春神楽", - "alias_name_display" : "迎春神楽", - "hash" : "eb1d6cdcf74fa0b5467bb4479fbcb819", - "id" : "1231401", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "迎春神楽", - "alias_name_display" : "迎春神楽", - "hash" : "68e199a73566867818bddc1cea19666e", - "id" : "1331402", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "薔薇色お姫様", - "alias_name_display" : "薔薇色お姫様", - "event" : [ { - "event_id" : "001", - "event_name" : "プロダクションマッチフェスティバル" - } ], - "hash" : "9e47b6134fcc68ce03f1e646032535f6", - "id" : "1401101", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "薔薇色お姫様", - "alias_name_display" : "薔薇色お姫様", - "event" : [ { - "event_id" : "001", - "event_name" : "プロダクションマッチフェスティバル" - } ], - "hash" : "188588430665ce152a5da1c7bef37766", - "id" : "1501102", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "絢爛紅葉", - "alias_name_display" : "絢爛紅葉", - "event" : [ { - "event_id" : 402, - "event_name" : "アイドルプロデュース京町編" - } ], - "hash" : "0f6309b3a564f81155784e21c8c92bfe", - "id" : "1403101", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "絢爛紅葉", - "alias_name_display" : "絢爛紅葉", - "event" : [ { - "event_id" : 402, - "event_name" : "アイドルプロデュース京町編" - } ], - "hash" : "eebd6e6b152f50a6c3bc18fabb54a0a0", - "id" : "1503102", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "薔薇色花嫁", - "alias_name_display" : "薔薇色花嫁", - "hash" : "fe8cd968bd4ee6c8beaa758e650eee5d", - "id" : "1407101", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "薔薇色花嫁", - "alias_name_display" : "薔薇色花嫁", - "hash" : "d31209b053eb49962fdea278ece7e26b", - "id" : "1507102", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "ロゼ・マドモアゼル", - "alias_name_display" : "ロゼ・マドモアゼル", - "hash" : "b7284bd572e970f7140cef7484d47e4e", - "id" : "1414801", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "ロゼ・マドモアゼル", - "alias_name_display" : "ロゼ・マドモアゼル", - "hash" : "fd5714748c23dee73f43176c8bd71f29", - "id" : "1514802", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "バレンタインスウィート", - "alias_name_display" : "バレンタインスウィート", - "hash" : "1db672f026cfc1e8a82037549477dccf", - "id" : "1421901", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "バレンタインスウィート", - "alias_name_display" : "バレンタインスウィート", - "hash" : "81fc62c6d3dc7b6dd9ae05f2c9df4d31", - "id" : "1521902", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "オープンハート", - "alias_name_display" : "オープンハート", - "event" : [ { - "event_id" : 715, - "event_name" : "第15回ドリームLIVEフェスティバル" - } ], - "hash" : "287d93a6b5dcebe0774cc8dead51c237", - "id" : "1427101", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "オープンハート", - "alias_name_display" : "オープンハート", - "event" : [ { - "event_id" : 715, - "event_name" : "第15回ドリームLIVEフェスティバル" - } ], - "hash" : "45e1c5533ba0e0a103511f58ee17f850", - "id" : "1527102", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "77155375be053699373b3e7271072d5b", - "id" : "1429201", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "ffc736f0dd52509c5bc4724e6829d693", - "id" : "1529202", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "4thアニバーサリー", - "alias_name_display" : "4thアニバーサリー", - "event" : [ { - "event_id" : 1704, - "event_name" : "アイドルプロデュース the 4th Anniversary" - } ], - "hash" : "7ec7a2ad5161e9618958f951fd4752e4", - "id" : "1429601", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "4thアニバーサリー", - "alias_name_display" : "4thアニバーサリー", - "event" : [ { - "event_id" : 1704, - "event_name" : "アイドルプロデュース the 4th Anniversary" - } ], - "hash" : "940e4561030b7cb18e6f6f1d612618b7", - "id" : "1529602", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "4thアニバーサリー・S", - "alias_name_display" : "4thアニバーサリー・S", - "event" : [ { - "event_id" : 1704, - "event_name" : "アイドルプロデュース the 4th Anniversary" - } ], - "hash" : "555df2682110f80cc57e2a745e812661", - "id" : "1429701", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "4thアニバーサリー・S", - "alias_name_display" : "4thアニバーサリー・S", - "event" : [ { - "event_id" : 1704, - "event_name" : "アイドルプロデュース the 4th Anniversary" - } ], - "hash" : "ee70a56e781ee96f461da009805f49a8", - "id" : "1529702", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "サマーマドモアゼル", - "alias_name_display" : "サマーマドモアゼル", - "hash" : "f78ca58df1e12f7fdbed9f567a9dfdc0", - "id" : "1433801", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "サマーマドモアゼル", - "alias_name_display" : "サマーマドモアゼル", - "hash" : "d32d219a3c0ad6dc84734d1fc3f9f94e", - "id" : "1533802", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - } ], - "idol_id" : 15, - "idol_name" : "櫻井桃華", - "idol_name_display" : "櫻井桃華", - "units" : [ { - "id" : "4", - "name" : "イカバラプリンセス" - }, { - "id" : "61", - "name" : "ももべりー" - }, { - "id" : "104", - "name" : "ももぺあべりー" - }, { - "id" : "105", - "name" : "リトルチェリーブロッサム" - }, { - "id" : "165", - "name" : "メルヘンゴシック" - }, { - "id" : "171", - "name" : "Black/White-Roses" - }, { - "id" : "196", - "name" : "la Roseraie" - }, { - "id" : "214", - "name" : "L.M.B.G" - } ] -}, { - "aliases" : [ { - "event" : [ { - "event_id" : 102, - "event_name" : "アイドルおもちつき大会" - } ], - "hash" : "1b52629f3463de549e9e776fb9be9c73", - "id" : "1001601", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "46" - } - }, { - "event" : [ { - "event_id" : 102, - "event_name" : "アイドルおもちつき大会" - } ], - "hash" : "209c74c920b04b6aa1c88f2ae810c0ab", - "id" : "1101602", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "新春コレクション", - "alias_name_display" : "新春コレクション", - "hash" : "ae6475b68a873a19cbf2008ac66d2c12", - "id" : "1207101", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "新春コレクション", - "alias_name_display" : "新春コレクション", - "hash" : "f172e8d5a8a50a8cecf29d9e939b015d", - "id" : "1307102", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ハッピーメモリアル", - "alias_name_display" : "ハッピーメモリアル", - "hash" : "40aa9ec43d952fd28e1cce41237b5622", - "id" : "1211501", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ハッピーメモリアル", - "alias_name_display" : "ハッピーメモリアル", - "hash" : "664c40149a8f2c88ea211c5e7ccc5857", - "id" : "1311502", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "秋色温泉", - "alias_name_display" : "秋色温泉", - "hash" : "5a01b67ab301b1c982c5fc6c2bb3bb01", - "id" : "1219101", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "秋色温泉", - "alias_name_display" : "秋色温泉", - "hash" : "b0bf971f90f59c9cfc79b6a166fe6aed", - "id" : "1319102", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "シャイニーカーマイン", - "alias_name_display" : "シャイニーカーマイン", - "event" : [ { - "event_id" : 716, - "event_name" : "第16回ドリームLIVEフェスティバル" - } ], - "hash" : "5d97a337e5c70a470e14a590a104ebed", - "id" : "1323802", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "リレイトストーリー", - "alias_name_display" : "リレイトストーリー", - "event" : [ { - "event_id" : "033", - "event_name" : "第33回プロダクションマッチフェスティバル" - } ], - "hash" : "0627d85acc8c4c074c16f85e2e638446", - "id" : "1231701", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "リレイトストーリー", - "alias_name_display" : "リレイトストーリー", - "event" : [ { - "event_id" : "033", - "event_name" : "第33回プロダクションマッチフェスティバル" - } ], - "hash" : "3875503a08289671c8354eed6119eff3", - "id" : "1331702", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ゆかしい花椿", - "alias_name_display" : "ゆかしい花椿", - "hash" : "b8f040ade84d43170ba0ef6b2cde9e5a", - "id" : "1412601", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ゆかしい花椿", - "alias_name_display" : "ゆかしい花椿", - "hash" : "92b7a6ffc4084d14ed6af4dc45b41c92", - "id" : "1512602", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "カメリア・ロワイヤル", - "alias_name_display" : "カメリア・ロワイヤル", - "event" : [ { - "event_id" : 812, - "event_name" : "第12回アイドルLIVEロワイヤル" - } ], - "hash" : "f42b82c8b55c8379eea9ebd9f6aea00d", - "id" : "1424601", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "カメリア・ロワイヤル", - "alias_name_display" : "カメリア・ロワイヤル", - "event" : [ { - "event_id" : 812, - "event_name" : "第12回アイドルLIVEロワイヤル" - } ], - "hash" : "457370553d93e1da4d39ad3c2b742c27", - "id" : "1524602", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "夏のゆらぎ", - "alias_name_display" : "夏のゆらぎ", - "event" : [ { - "event_id" : 722, - "event_name" : "夏祭りDEドリームLIVEフェスティバル" - } ], - "hash" : "f4d7801c6c3496ae294ad932267b26e6", - "id" : "1433701", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "夏のゆらぎ", - "alias_name_display" : "夏のゆらぎ", - "event" : [ { - "event_id" : 722, - "event_name" : "夏祭りDEドリームLIVEフェスティバル" - } ], - "hash" : "beba5121254d967e0be4895fbe2fac3c", - "id" : "1533702", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "46" - } - } ], - "idol_id" : 16, - "idol_name" : "江上椿", - "idol_name_display" : "江上椿", - "units" : [ { - "id" : "8", - "name" : "越後小町" - }, { - "id" : "154", - "name" : "秋色温泉" - }, { - "id" : "167", - "name" : "ロマンティックツアーズ" - } ] -}, { - "aliases" : [ { - "hash" : "4d2e995945e069c1c219d6c6b45edfce", - "id" : "1001701", - "profile" : { - "bust" : "83", - "height" : "161", - "hip" : "85", - "waist" : "56", - "weight" : "45" - } - }, { - "hash" : "2443422535f988e8e6a19e358b7232df", - "id" : "1101702", - "profile" : { - "bust" : "83", - "height" : "161", - "hip" : "85", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "湯けむり温泉", - "alias_name_display" : "湯けむり温泉", - "hash" : "5f9fdc0febde1ca6beb90cfdbb90f565", - "id" : "1206201", - "profile" : { - "bust" : "83", - "height" : "161", - "hip" : "85", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "湯けむり温泉", - "alias_name_display" : "湯けむり温泉", - "hash" : "8253386575ab1a9138e7d522620e42a4", - "id" : "1306202", - "profile" : { - "bust" : "83", - "height" : "161", - "hip" : "85", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "シャイニービーチ", - "alias_name_display" : "シャイニービーチ", - "hash" : "6ab4b420570dd2342cb8807d5adcf179", - "id" : "1210601", - "profile" : { - "bust" : "83", - "height" : "161", - "hip" : "85", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "シャイニービーチ", - "alias_name_display" : "シャイニービーチ", - "hash" : "7cf254cf32563bd2bba7b9b621085ca7", - "id" : "1310602", - "profile" : { - "bust" : "83", - "height" : "161", - "hip" : "85", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ロワイヤルスタイルNP", - "alias_name_display" : "ロワイヤルスタイルNP", - "event" : [ { - "event_id" : 807, - "event_name" : "第7回アイドルLIVEロワイヤル" - } ], - "hash" : "81fcd084769a29d996613f500af1f511", - "id" : "1218801", - "profile" : { - "bust" : "83", - "height" : "161", - "hip" : "85", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ロワイヤルスタイルNP", - "alias_name_display" : "ロワイヤルスタイルNP", - "event" : [ { - "event_id" : 807, - "event_name" : "第7回アイドルLIVEロワイヤル" - } ], - "hash" : "955aa295eb3a76e87605c67cc2042b9e", - "id" : "1318802", - "profile" : { - "bust" : "83", - "height" : "161", - "hip" : "85", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ウォーミングフラワー", - "alias_name_display" : "ウォーミングフラワー", - "event" : [ { - "event_id" : "026", - "event_name" : "第26回プロダクションマッチフェスティバル" - } ], - "hash" : "6455518732d768b065bbd827ec98b400", - "id" : "1226301", - "profile" : { - "bust" : "83", - "height" : "161", - "hip" : "85", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ウォーミングフラワー", - "alias_name_display" : "ウォーミングフラワー", - "event" : [ { - "event_id" : "026", - "event_name" : "第26回プロダクションマッチフェスティバル" - } ], - "hash" : "2c885ccae440c5c059ee8098121b620c", - "id" : "1326302", - "profile" : { - "bust" : "83", - "height" : "161", - "hip" : "85", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "フェリーチェ・チョコラータ", - "alias_name_display" : "フェリーチェ・チョコラータ", - "hash" : "9820c330da30a1f41d14f220a384af70", - "id" : "1231901", - "profile" : { - "bust" : "83", - "height" : "161", - "hip" : "85", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "フェリーチェ・チョコラータ", - "alias_name_display" : "フェリーチェ・チョコラータ", - "hash" : "49f0f052f1dae481fa53872899b098ed", - "id" : "1331902", - "profile" : { - "bust" : "83", - "height" : "161", - "hip" : "85", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "フィーチャースイートピー", - "alias_name_display" : "フィーチャースイートピー", - "event" : [ { - "event_id" : 803, - "event_name" : "第3回アイドルLIVEロワイヤル" - } ], - "hash" : "23e7989e812ce2c789242acd8b1d8472", - "id" : "1411901", - "profile" : { - "bust" : "83", - "height" : "161", - "hip" : "85", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "フィーチャースイートピー", - "alias_name_display" : "フィーチャースイートピー", - "event" : [ { - "event_id" : 803, - "event_name" : "第3回アイドルLIVEロワイヤル" - } ], - "hash" : "129dff6ad85473683b876ba9171588bc", - "id" : "1511902", - "profile" : { - "bust" : "83", - "height" : "161", - "hip" : "85", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "素肌のチアー", - "alias_name_display" : "素肌のチアー", - "event" : [ { - "event_id" : 1503, - "event_name" : "チーム対抗 夏だ!プールだ!トークバトルショー" - } ], - "hash" : "56070f7414e85b8412e83ccc0c78184a", - "id" : "1426701", - "profile" : { - "bust" : "83", - "height" : "161", - "hip" : "85", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "素肌のチアー", - "alias_name_display" : "素肌のチアー", - "event" : [ { - "event_id" : 1503, - "event_name" : "チーム対抗 夏だ!プールだ!トークバトルショー" - } ], - "hash" : "906f4fcae92953c83c522c36d5ff5fe9", - "id" : "1526702", - "profile" : { - "bust" : "83", - "height" : "161", - "hip" : "85", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "コール・ミー・メイビー", - "alias_name_display" : "コール・ミー・メイビー", - "hash" : "416e3e705b08bbf389a6f2f18f5c69d4", - "id" : "1433201", - "profile" : { - "bust" : "83", - "height" : "161", - "hip" : "85", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "コール・ミー・メイビー", - "alias_name_display" : "コール・ミー・メイビー", - "hash" : "cd8477548a634299e065cc223b70eb74", - "id" : "1533202", - "profile" : { - "bust" : "83", - "height" : "161", - "hip" : "85", - "waist" : "56", - "weight" : "45" - } - } ], - "idol_id" : 17, - "idol_name" : "長富蓮実", - "idol_name_display" : "長富蓮実", - "units" : [ { - "id" : "178", - "name" : "からぱれ" - }, { - "id" : "209", - "name" : "ロワイヤルスタイルNP" - } ] -}, { - "aliases" : [ { - "hash" : "33e0fe9d3980f8fcc0146acf93b1527c", - "id" : "1001901", - "profile" : { - "bust" : "60", - "height" : "127", - "hip" : "65", - "waist" : "55", - "weight" : "31" - } - }, { - "hash" : "a837b5db80a3b8a16ca290a20d18251d", - "id" : "1101902", - "profile" : { - "bust" : "60", - "height" : "127", - "hip" : "65", - "waist" : "55", - "weight" : "31" - } - }, { - "alias_name" : "マーメイドパラダイス", - "alias_name_display" : "マーメイドパラダイス", - "hash" : "0f9eefd5d70b48f20f8816530e6d7d73", - "id" : "1205101", - "profile" : { - "bust" : "60", - "height" : "127", - "hip" : "65", - "waist" : "55", - "weight" : "31" - } - }, { - "alias_name" : "マーメイドパラダイス", - "alias_name_display" : "マーメイドパラダイス", - "hash" : "d5afe53e9eb4629197f42e744720cfa8", - "id" : "1305102", - "profile" : { - "bust" : "60", - "height" : "127", - "hip" : "65", - "waist" : "55", - "weight" : "31" - } - }, { - "alias_name" : "ラブリー魔女っ娘", - "alias_name_display" : "ラブリー魔女っ娘", - "hash" : "0a55494fafe73df2035f17c70ed79af8", - "id" : "1206101", - "profile" : { - "bust" : "60", - "height" : "127", - "hip" : "65", - "waist" : "55", - "weight" : "31" - } - }, { - "alias_name" : "ラブリー魔女っ娘", - "alias_name_display" : "ラブリー魔女っ娘", - "hash" : "19e6e1f54b5b9fccc005269962b858d0", - "id" : "1306102", - "profile" : { - "bust" : "60", - "height" : "127", - "hip" : "65", - "waist" : "55", - "weight" : "31" - } - }, { - "alias_name" : "マーチングバンド", - "alias_name_display" : "マーチングバンド", - "hash" : "66e4c9f29760c0b9c779dae9cec7555b", - "id" : "1211901", - "profile" : { - "bust" : "60", - "height" : "127", - "hip" : "65", - "waist" : "55", - "weight" : "31" - } - }, { - "alias_name" : "マーチングバンド", - "alias_name_display" : "マーチングバンド", - "hash" : "a7e07a4479fdecf1f54fef8a23bf6bca", - "id" : "1311902", - "profile" : { - "bust" : "60", - "height" : "127", - "hip" : "65", - "waist" : "55", - "weight" : "31" - } - }, { - "alias_name" : "T.B.チアーズ", - "alias_name_display" : "T.B.チアーズ", - "event" : [ { - "event_id" : 1505, - "event_name" : "チーム対抗トークバトルショー ウィンターSP" - } ], - "hash" : "7df797b6cd664971b45bd3087277b078", - "id" : "1225801", - "profile" : { - "bust" : "60", - "height" : "127", - "hip" : "65", - "waist" : "55", - "weight" : "31" - } - }, { - "alias_name" : "T.B.チアーズ", - "alias_name_display" : "T.B.チアーズ", - "event" : [ { - "event_id" : 1505, - "event_name" : "チーム対抗トークバトルショー ウィンターSP" - } ], - "hash" : "784b0d08e971844537fafc49e94341f8", - "id" : "1325802", - "profile" : { - "bust" : "60", - "height" : "127", - "hip" : "65", - "waist" : "55", - "weight" : "31" - } - }, { - "alias_name" : "ホーリーコーラス", - "alias_name_display" : "ホーリーコーラス", - "hash" : "78c1db8e016621883e2b0dc239e8ebc0", - "id" : "1231001", - "profile" : { - "bust" : "60", - "height" : "127", - "hip" : "65", - "waist" : "55", - "weight" : "31" - } - }, { - "alias_name" : "ホーリーコーラス", - "alias_name_display" : "ホーリーコーラス", - "hash" : "911de1e40e95c58e35d00eff5fb783f0", - "id" : "1331002", - "profile" : { - "bust" : "60", - "height" : "127", - "hip" : "65", - "waist" : "55", - "weight" : "31" - } - }, { - "alias_name" : "小さなおひな様", - "alias_name_display" : "小さなおひな様", - "event" : [ { - "event_id" : 209, - "event_name" : "アイドルサバイバルひな祭り2013" - } ], - "hash" : "d3ae6c8c118597de7131a46a7a98e3b8", - "id" : "1405701", - "profile" : { - "bust" : "60", - "height" : "127", - "hip" : "65", - "waist" : "55", - "weight" : "31" - } - }, { - "alias_name" : "小さなおひな様", - "alias_name_display" : "小さなおひな様", - "event" : [ { - "event_id" : 209, - "event_name" : "アイドルサバイバルひな祭り2013" - } ], - "hash" : "e194a3fabb57c40d442a1922eb36d09a", - "id" : "1505702", - "profile" : { - "bust" : "60", - "height" : "127", - "hip" : "65", - "waist" : "55", - "weight" : "31" - } - }, { - "alias_name" : "マジカル☆プリティーハート", - "alias_name_display" : "マジカル☆プリティーハート", - "event" : [ { - "event_id" : 1201, - "event_name" : "目指せ魔女っ娘 アイドルチャレンジ" - } ], - "hash" : "8932419ffa9d909cd881aa9093b1e487", - "id" : "1414501", - "profile" : { - "bust" : "60", - "height" : "127", - "hip" : "65", - "waist" : "55", - "weight" : "31" - } - }, { - "alias_name" : "マジカル☆プリティーハート", - "alias_name_display" : "マジカル☆プリティーハート", - "event" : [ { - "event_id" : 1201, - "event_name" : "目指せ魔女っ娘 アイドルチャレンジ" - } ], - "hash" : "1a5c40592d5a168e785ff6ddb49ba6c3", - "id" : "1514502", - "profile" : { - "bust" : "60", - "height" : "127", - "hip" : "65", - "waist" : "55", - "weight" : "31" - } - }, { - "alias_name" : "朱きツワモノ", - "alias_name_display" : "朱きツワモノ", - "event" : [ { - "event_id" : 517, - "event_name" : "戦国公演 風来剣客伝" - } ], - "hash" : "c7e31c5643afd8ae07eca3b1ab6373a7", - "id" : "1422401", - "profile" : { - "bust" : "60", - "height" : "127", - "hip" : "65", - "waist" : "55", - "weight" : "31" - } - }, { - "alias_name" : "朱きツワモノ", - "alias_name_display" : "朱きツワモノ", - "event" : [ { - "event_id" : 517, - "event_name" : "戦国公演 風来剣客伝" - } ], - "hash" : "6d85b413db065fb9ecbcd80f348d53e6", - "id" : "1522402", - "profile" : { - "bust" : "60", - "height" : "127", - "hip" : "65", - "waist" : "55", - "weight" : "31" - } - }, { - "alias_name" : "雨のまほう", - "alias_name_display" : "雨のまほう", - "event" : [ { - "event_id" : 818, - "event_name" : "アイドルLIVEロワイヤル 雨の日SP" - } ], - "hash" : "f7024ca8bc11f488de049b9316cdae6b", - "id" : "1433501", - "profile" : { - "bust" : "60", - "height" : "127", - "hip" : "65", - "waist" : "55", - "weight" : "31" - } - }, { - "alias_name" : "雨のまほう", - "alias_name_display" : "雨のまほう", - "event" : [ { - "event_id" : 818, - "event_name" : "アイドルLIVEロワイヤル 雨の日SP" - } ], - "hash" : "d02199911575371c301fa3f8d1f937fe", - "id" : "1533502", - "profile" : { - "bust" : "60", - "height" : "127", - "hip" : "65", - "waist" : "55", - "weight" : "31" - } - } ], - "idol_id" : 18, - "idol_name" : "横山千佳", - "idol_name_display" : "横山千佳", - "units" : [ { - "id" : "64", - "name" : "リトルヒーロー" - }, { - "id" : "164", - "name" : "マジカルテット" - }, { - "id" : "182", - "name" : "マーメイドパラダイス" - }, { - "id" : "214", - "name" : "L.M.B.G" - } ] -}, { - "aliases" : [ { - "hash" : "a62ddac0bbdf7507192e5ed73698a4be", - "id" : "1002001", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "hash" : "c2f5b454d115252ca5b31db8454abd31", - "id" : "1102002", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ハロウィンヴァンパイア", - "alias_name_display" : "ハロウィンヴァンパイア", - "event" : [ { - "event_id" : 207, - "event_name" : "アイドルサバイバル ハロウィン編" - } ], - "hash" : "dc62bf6ee089d872b8e4701d8b0f536e", - "id" : "1206001", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ハロウィンヴァンパイア", - "alias_name_display" : "ハロウィンヴァンパイア", - "event" : [ { - "event_id" : 207, - "event_name" : "アイドルサバイバル ハロウィン編" - } ], - "hash" : "d4ebad4f68b4f6c1d3e14aedd0e1fb70", - "id" : "1306002", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ファンシースパイリーア", - "alias_name_display" : "ファンシースパイリーア", - "hash" : "b98d47d489c846fcbb6b94a8632231ee", - "id" : "1214201", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ファンシースパイリーア", - "alias_name_display" : "ファンシースパイリーア", - "hash" : "c2796e3d650b904810108ee398953baf", - "id" : "1314202", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "夏休み", - "alias_name_display" : "夏休み", - "event" : [ { - "event_id" : 413, - "event_name" : "みんなのなつやすみ" - } ], - "hash" : "fe7a70caed6fe7087a172ca4d1545f7c", - "id" : "1217201", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "夏休み", - "alias_name_display" : "夏休み", - "event" : [ { - "event_id" : 413, - "event_name" : "みんなのなつやすみ" - } ], - "hash" : "d85152d27e941ab28409e1ce28515aa0", - "id" : "1317202", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "笑顔の夏休み", - "alias_name_display" : "笑顔の夏休み", - "event" : [ { - "event_id" : 413, - "event_name" : "みんなのなつやすみ" - } ], - "hash" : "8555c01eca24269514623464e978ebd7", - "id" : "1217301", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "笑顔の夏休み", - "alias_name_display" : "笑顔の夏休み", - "event" : [ { - "event_id" : 413, - "event_name" : "みんなのなつやすみ" - } ], - "hash" : "cd6dbe35df150439d6641aefa0eae7a9", - "id" : "1317302", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ラブリーメイド", - "alias_name_display" : "ラブリーメイド", - "hash" : "37214f0d7ec9a461beda96125f9071cf", - "id" : "1223401", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ラブリーメイド", - "alias_name_display" : "ラブリーメイド", - "hash" : "5ca334dd65bac13411c63caa54f0227f", - "id" : "1323402", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "スパニッシュダンサー", - "alias_name_display" : "スパニッシュダンサー", - "event" : [ { - "event_id" : 504, - "event_name" : "アイドルLIVEツアーinスペイン" - } ], - "hash" : "eaaecb4e719c48f55b564a275f4eb705", - "id" : "1406301", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "スパニッシュダンサー", - "alias_name_display" : "スパニッシュダンサー", - "event" : [ { - "event_id" : 504, - "event_name" : "アイドルLIVEツアーinスペイン" - } ], - "hash" : "49ece644aa45d424edba7b9c1fdef6c5", - "id" : "1506302", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "フォーチュンバニー", - "alias_name_display" : "フォーチュンバニー", - "hash" : "8254b5bd71ea17452086dba763e4844f", - "id" : "1408801", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "フォーチュンバニー", - "alias_name_display" : "フォーチュンバニー", - "hash" : "e30940ae9dcda36d0d5b06baec45646d", - "id" : "1508802", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "イノセントブライド", - "alias_name_display" : "イノセントブライド", - "hash" : "312b2c5020efdf60d43ba04e2830e58c", - "id" : "1419001", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "イノセントブライド", - "alias_name_display" : "イノセントブライド", - "hash" : "ae708b4006b536e7c436f68dc046479b", - "id" : "1519002", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ハピネスプリズム", - "alias_name_display" : "ハピネスプリズム", - "event" : [ { - "event_id" : "021", - "event_name" : "第21回プロダクションマッチフェスティバル" - } ], - "hash" : "3656160c6a0de5035d0ce51801b17929", - "id" : "1423601", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ハピネスプリズム", - "alias_name_display" : "ハピネスプリズム", - "event" : [ { - "event_id" : "021", - "event_name" : "第21回プロダクションマッチフェスティバル" - } ], - "hash" : "5301aa1b9c5b7f0acdad5d280323b120", - "id" : "1523602", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "手のひらの宝物", - "alias_name_display" : "手のひらの宝物", - "hash" : "839f27df591c223de347c63503e44191", - "id" : "1430601", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "手のひらの宝物", - "alias_name_display" : "手のひらの宝物", - "hash" : "18e29d6f25535be40fa370323e9e899e", - "id" : "1530602", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "笑顔のガーディアン", - "alias_name_display" : "笑顔のガーディアン", - "hash" : "66b1b474a97ac4e1b17d8522254223ce", - "id" : "1435201", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "笑顔のガーディアン", - "alias_name_display" : "笑顔のガーディアン", - "hash" : "c34d484a61ea8f7be3cfc5ede01b11e3", - "id" : "1535202", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ショコラドゥエタメール", - "alias_name_display" : "ショコラドゥエタメール", - "event" : [ { - "event_id" : 1906, - "event_name" : "ディアリースターハート ~ラブキュンバレンタイン~" - } ], - "hash" : "7a16a01f4a544cba2168a69382f3de40", - "id" : "1438301", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ショコラドゥエタメール", - "alias_name_display" : "ショコラドゥエタメール", - "event" : [ { - "event_id" : 1906, - "event_name" : "ディアリースターハート ~ラブキュンバレンタイン~" - } ], - "hash" : "6f26798de79180c3bc5aad8a14b31b34", - "id" : "1538302", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - } ], - "idol_id" : 19, - "idol_name" : "関裕美", - "idol_name_display" : "関裕美", - "units" : [ { - "id" : "101", - "name" : "ハロウィンヴァンパイア" - }, { - "id" : "129", - "name" : "ワンステップス" - }, { - "id" : "130", - "name" : "GIRLS BE" - }, { - "id" : "172", - "name" : "GIRLS BE NEXT STEP" - } ] -}, { - "aliases" : [ { - "hash" : "54ae8e0c640c6a7b14cb72b9395ea0fd", - "id" : "1002301", - "profile" : { - "bust" : "89", - "height" : "159", - "hip" : "87", - "waist" : "57", - "weight" : "45" - } - }, { - "hash" : "753e3e1d55fec03ac0355d390ecab888", - "id" : "1102302", - "profile" : { - "bust" : "89", - "height" : "159", - "hip" : "87", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "スプリングスイートピー", - "alias_name_display" : "スプリングスイートピー", - "event" : [ { - "event_id" : 209, - "event_name" : "アイドルサバイバルひな祭り2013" - } ], - "hash" : "f4d6767aeb7dd02ac99f8e6f35f3fb17", - "id" : "1208401", - "profile" : { - "bust" : "89", - "height" : "159", - "hip" : "87", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "スプリングスイートピー", - "alias_name_display" : "スプリングスイートピー", - "event" : [ { - "event_id" : 209, - "event_name" : "アイドルサバイバルひな祭り2013" - } ], - "hash" : "c68e3249a192693c4f6b0f09eee97624", - "id" : "1308402", - "profile" : { - "bust" : "89", - "height" : "159", - "hip" : "87", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "バニーガール", - "alias_name_display" : "バニーガール", - "hash" : "5b400c51e77b1d23d6aa5b163c72356a", - "id" : "1211701", - "profile" : { - "bust" : "89", - "height" : "159", - "hip" : "87", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "バニーガール", - "alias_name_display" : "バニーガール", - "hash" : "4c47dddab9272c5836546473bce0bc56", - "id" : "1311702", - "profile" : { - "bust" : "89", - "height" : "159", - "hip" : "87", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "バレンタインデビル", - "alias_name_display" : "バレンタインデビル", - "hash" : "aac128fdb81a96c932708fd67bde9f9e", - "id" : "1220301", - "profile" : { - "bust" : "89", - "height" : "159", - "hip" : "87", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "バレンタインデビル", - "alias_name_display" : "バレンタインデビル", - "hash" : "4e34fc26b435f80d3bbba9f8bd0d7045", - "id" : "1320302", - "profile" : { - "bust" : "89", - "height" : "159", - "hip" : "87", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "アップトゥデイト", - "alias_name_display" : "アップトゥデイト", - "hash" : "3301ddcd3460f7d6e8525580ec595ec5", - "id" : "1224801", - "profile" : { - "bust" : "89", - "height" : "159", - "hip" : "87", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "アップトゥデイト", - "alias_name_display" : "アップトゥデイト", - "hash" : "f9a1ac1703ec5ddf5a2a55a5c94191c3", - "id" : "1324802", - "profile" : { - "bust" : "89", - "height" : "159", - "hip" : "87", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "レディダウト", - "alias_name_display" : "レディダウト", - "event" : [ { - "event_id" : 1902, - "event_name" : "御伽公演 おてんば姫とまぢヤバな魔法のランプ" - } ], - "hash" : "7e62b71f86c28b8b0d275eb1e3d2c6ac", - "id" : "1328802", - "profile" : { - "bust" : "89", - "height" : "159", - "hip" : "87", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "プリティーニューイヤー", - "alias_name_display" : "プリティーニューイヤー", - "event" : [ { - "event_id" : 509, - "event_name" : "新春LIVEツアーカーニバル" - } ], - "hash" : "da6a8f7bf3ca40bab81dd29416beeb29", - "id" : "1411501", - "profile" : { - "bust" : "89", - "height" : "159", - "hip" : "87", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "プリティーニューイヤー", - "alias_name_display" : "プリティーニューイヤー", - "event" : [ { - "event_id" : 509, - "event_name" : "新春LIVEツアーカーニバル" - } ], - "hash" : "4d9a24cc8b10be07a95dfaf48f9f3320", - "id" : "1511502", - "profile" : { - "bust" : "89", - "height" : "159", - "hip" : "87", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "わんダフルチアー", - "alias_name_display" : "わんダフルチアー", - "event" : [ { - "event_id" : 1102, - "event_name" : "第2回プロダクション対抗トークバトルショー" - } ], - "hash" : "bb0cd321a47256a75dbb32b021e9f0a4", - "id" : "1414401", - "profile" : { - "bust" : "89", - "height" : "159", - "hip" : "87", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "わんダフルチアー", - "alias_name_display" : "わんダフルチアー", - "event" : [ { - "event_id" : 1102, - "event_name" : "第2回プロダクション対抗トークバトルショー" - } ], - "hash" : "6f373139364ab88fb2546aa671e71ac2", - "id" : "1514402", - "profile" : { - "bust" : "89", - "height" : "159", - "hip" : "87", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ラブリーマイベイビー", - "alias_name_display" : "ラブリーマイベイビー", - "hash" : "7bb355ad1b34e66736bcf328c92dfa6b", - "id" : "1437301", - "profile" : { - "bust" : "89", - "height" : "159", - "hip" : "87", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ラブリーマイベイビー", - "alias_name_display" : "ラブリーマイベイビー", - "hash" : "2763a2afd43cf1d265c968e8a9711692", - "id" : "1537302", - "profile" : { - "bust" : "89", - "height" : "159", - "hip" : "87", - "waist" : "57", - "weight" : "45" - } - } ], - "idol_id" : 20, - "idol_name" : "太田優", - "idol_name_display" : "太田優", - "units" : [ { - "id" : "110", - "name" : "アップトゥデイト" - } ] -}, { - "aliases" : [ { - "hash" : "668df5f627110fb638fed98ab6f0efdb", - "id" : "1002401", - "profile" : { - "bust" : "73", - "height" : "151", - "hip" : "75", - "waist" : "56", - "weight" : "41" - } - }, { - "hash" : "dffba4af62e6c806706ae927d6aa3a63", - "id" : "1102402", - "profile" : { - "bust" : "73", - "height" : "151", - "hip" : "75", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "デビリッシュゴシック", - "alias_name_display" : "デビリッシュゴシック", - "hash" : "73728f37f018acb8ac26efd204e3ebd1", - "id" : "1209301", - "profile" : { - "bust" : "73", - "height" : "151", - "hip" : "75", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "デビリッシュゴシック", - "alias_name_display" : "デビリッシュゴシック", - "hash" : "e3a357bb24fc6171859cc7d79ff8ebb1", - "id" : "1309302", - "profile" : { - "bust" : "73", - "height" : "151", - "hip" : "75", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "ハワイアンスタイル", - "alias_name_display" : "ハワイアンスタイル", - "event" : [ { - "event_id" : 506, - "event_name" : "アイドルLIVEツアーinハワイ" - } ], - "hash" : "6705b0f6fa31815de3a3a9a24186c172", - "id" : "1210901", - "profile" : { - "bust" : "73", - "height" : "151", - "hip" : "75", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "ハワイアンスタイル", - "alias_name_display" : "ハワイアンスタイル", - "event" : [ { - "event_id" : 506, - "event_name" : "アイドルLIVEツアーinハワイ" - } ], - "hash" : "21ae6f0acb669b55fe9470adf2d7781d", - "id" : "1310902", - "profile" : { - "bust" : "73", - "height" : "151", - "hip" : "75", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "ワーキング・おさわり", - "alias_name_display" : "ワーキング・おさわり", - "hash" : "c5859dbe3018a61d6edafe6d4adff04d", - "id" : "1215901", - "profile" : { - "bust" : "73", - "height" : "151", - "hip" : "75", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "ワーキング・おさわり", - "alias_name_display" : "ワーキング・おさわり", - "hash" : "428e1ebab8c7e5ebec444ddd9c702208", - "id" : "1315902", - "profile" : { - "bust" : "73", - "height" : "151", - "hip" : "75", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "イケナイオオカミ", - "alias_name_display" : "イケナイオオカミ", - "event" : [ { - "event_id" : 518, - "event_name" : "御伽公演 ふれあい狼と小さな赤ずきんちゃん" - } ], - "hash" : "6e82ddd934172c1ddfd40da18b541538", - "id" : "1221201", - "profile" : { - "bust" : "73", - "height" : "151", - "hip" : "75", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "イケナイオオカミ", - "alias_name_display" : "イケナイオオカミ", - "event" : [ { - "event_id" : 518, - "event_name" : "御伽公演 ふれあい狼と小さな赤ずきんちゃん" - } ], - "hash" : "24c92596b0ec15c3144510f5a0e1a931", - "id" : "1321202", - "profile" : { - "bust" : "73", - "height" : "151", - "hip" : "75", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "あなたのエンジェル", - "alias_name_display" : "あなたのエンジェル", - "hash" : "ac6cb9ba823f5c86e410d6b1982c5a91", - "id" : "1223101", - "profile" : { - "bust" : "73", - "height" : "151", - "hip" : "75", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "あなたのエンジェル", - "alias_name_display" : "あなたのエンジェル", - "hash" : "0657fcbc084dbe53351150271defb5a4", - "id" : "1323102", - "profile" : { - "bust" : "73", - "height" : "151", - "hip" : "75", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "サンタI.C", - "alias_name_display" : "サンタI.C", - "event" : [ { - "event_id" : 1208, - "event_name" : "目指せサンタクロース アイドルチャレンジ" - } ], - "hash" : "4278a96f12fa7a381b660192cd958f3f", - "id" : "1325102", - "profile" : { - "bust" : "73", - "height" : "151", - "hip" : "75", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "わきわきハンター", - "alias_name_display" : "わきわきハンター", - "event" : [ { - "event_id" : 704, - "event_name" : "第4回ドリームLIVEフェスティバル" - } ], - "hash" : "d3ee0211663368dab63f46d1a466ff68", - "id" : "1410401", - "profile" : { - "bust" : "73", - "height" : "151", - "hip" : "75", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "わきわきハンター", - "alias_name_display" : "わきわきハンター", - "event" : [ { - "event_id" : 704, - "event_name" : "第4回ドリームLIVEフェスティバル" - } ], - "hash" : "74f8f1da4f14be396b8e97914b4394d5", - "id" : "1510402", - "profile" : { - "bust" : "73", - "height" : "151", - "hip" : "75", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "愛の手", - "alias_name_display" : "愛の手", - "event" : [ { - "event_id" : "019", - "event_name" : "第19回プロダクションマッチフェスティバル" - } ], - "hash" : "45a7902898278b46aeb15740845d9471", - "id" : "1419801", - "profile" : { - "bust" : "73", - "height" : "151", - "hip" : "75", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "愛の手", - "alias_name_display" : "愛の手", - "event" : [ { - "event_id" : "019", - "event_name" : "第19回プロダクションマッチフェスティバル" - } ], - "hash" : "69fe9277fb8bad6c807c0fcb58ec7f4c", - "id" : "1519802", - "profile" : { - "bust" : "73", - "height" : "151", - "hip" : "75", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "わきわきクリスマス", - "alias_name_display" : "わきわきクリスマス", - "event" : [ { - "event_id" : 1208, - "event_name" : "目指せサンタクロース アイドルチャレンジ" - } ], - "hash" : "23924fe986972d26ed597b7116b81d70", - "id" : "1429901", - "profile" : { - "bust" : "73", - "height" : "151", - "hip" : "75", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "わきわきクリスマス", - "alias_name_display" : "わきわきクリスマス", - "event" : [ { - "event_id" : 1208, - "event_name" : "目指せサンタクロース アイドルチャレンジ" - } ], - "hash" : "8428e141a0f19853238dd295ba9c8122", - "id" : "1529902", - "profile" : { - "bust" : "73", - "height" : "151", - "hip" : "75", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "わきわきクリスマス・S", - "alias_name_display" : "わきわきクリスマス・S", - "event" : [ { - "event_id" : 1208, - "event_name" : "目指せサンタクロース アイドルチャレンジ" - } ], - "hash" : "297cab43151aa6dacc6873fb79fe7c25", - "id" : "1430001", - "profile" : { - "bust" : "73", - "height" : "151", - "hip" : "75", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "わきわきクリスマス・S", - "alias_name_display" : "わきわきクリスマス・S", - "event" : [ { - "event_id" : 1208, - "event_name" : "目指せサンタクロース アイドルチャレンジ" - } ], - "hash" : "e46d59be9f46daa789cb0fac05660407", - "id" : "1530002", - "profile" : { - "bust" : "73", - "height" : "151", - "hip" : "75", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "やわらかな夢", - "alias_name_display" : "やわらかな夢", - "event" : [ { - "event_id" : 721, - "event_name" : "第21回ドリームLIVEフェスティバル" - } ], - "hash" : "3a0dc8a0ffb83f0e7d739b9b38dacd2b", - "id" : "1432601", - "profile" : { - "bust" : "73", - "height" : "151", - "hip" : "75", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "やわらかな夢", - "alias_name_display" : "やわらかな夢", - "event" : [ { - "event_id" : 721, - "event_name" : "第21回ドリームLIVEフェスティバル" - } ], - "hash" : "00a24b06c95da5f54b0b000c9eed1c7c", - "id" : "1532602", - "profile" : { - "bust" : "73", - "height" : "151", - "hip" : "75", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "おさわりチアー", - "alias_name_display" : "おさわりチアー", - "event" : [ { - "event_id" : 1509, - "event_name" : "第9回チーム対抗トークバトルショー" - } ], - "hash" : "7eed576c2e8dbd09f8240ec36f8bd6d7", - "id" : "1436401", - "profile" : { - "bust" : "73", - "height" : "151", - "hip" : "75", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "おさわりチアー", - "alias_name_display" : "おさわりチアー", - "event" : [ { - "event_id" : 1509, - "event_name" : "第9回チーム対抗トークバトルショー" - } ], - "hash" : "6266ac4f14b93b3859953ec5f6e94cb4", - "id" : "1536402", - "profile" : { - "bust" : "73", - "height" : "151", - "hip" : "75", - "waist" : "56", - "weight" : "41" - } - } ], - "idol_id" : 21, - "idol_name" : "棟方愛海", - "idol_name_display" : "棟方愛海", - "units" : [ { - "id" : "44", - "name" : "ハワイアンツイン" - }, { - "id" : "48", - "name" : "日菜子と愛海の妄想ワールド" - }, { - "id" : "128", - "name" : "ラビュー☆アイス☆マウンテン" - }, { - "id" : "157", - "name" : "デビリッシュゴシック" - } ] -}, { - "aliases" : [ { - "hash" : "d2e5c0c476cfc344fce7fe03c8c9a4fb", - "id" : "1002501", - "profile" : { - "bust" : "77", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "hash" : "c896423b38ed849a1ef973c5c7f369de", - "id" : "1102502", - "profile" : { - "bust" : "77", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ラヴリーギャル", - "alias_name_display" : "ラヴリーギャル", - "event" : [ { - "event_id" : "010", - "event_name" : "第10回プロダクションマッチフェスティバル" - } ], - "hash" : "673b753d25d3f34cc74f4e66ff70a5ef", - "id" : "1209701", - "profile" : { - "bust" : "77", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ラヴリーギャル", - "alias_name_display" : "ラヴリーギャル", - "event" : [ { - "event_id" : "010", - "event_name" : "第10回プロダクションマッチフェスティバル" - } ], - "hash" : "ab24ce09e254e16c0644ea40dc1382f9", - "id" : "1309702", - "profile" : { - "bust" : "77", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ビーチパラダイス", - "alias_name_display" : "ビーチパラダイス", - "hash" : "1099c469420259169802a9a27d79ff58", - "id" : "1211101", - "profile" : { - "bust" : "77", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ビーチパラダイス", - "alias_name_display" : "ビーチパラダイス", - "hash" : "550797c200a26c62d2a2d27fbfff83fa", - "id" : "1311102", - "profile" : { - "bust" : "77", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "クリスマスプレゼント", - "alias_name_display" : "クリスマスプレゼント", - "hash" : "25d34e8c4e8e6db5267c90e5d66ff8c8", - "id" : "1219301", - "profile" : { - "bust" : "77", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "クリスマスプレゼント", - "alias_name_display" : "クリスマスプレゼント", - "hash" : "f23d11db5595c69dfba4380215f437b3", - "id" : "1319302", - "profile" : { - "bust" : "77", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "夏フェス☆ギャル", - "alias_name_display" : "夏フェス☆ギャル", - "hash" : "ef7004b6df4b22ebdd71f04a4f820b83", - "id" : "1222801", - "profile" : { - "bust" : "77", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "夏フェス☆ギャル", - "alias_name_display" : "夏フェス☆ギャル", - "hash" : "c89cbf65ba71e62e7dcde1ad925c3c28", - "id" : "1322802", - "profile" : { - "bust" : "77", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ちーぷり☆テイスト", - "alias_name_display" : "ちーぷり☆テイスト", - "hash" : "f0b132cb5b9924dd4b152fb7be41e15d", - "id" : "1231601", - "profile" : { - "bust" : "77", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ちーぷり☆テイスト", - "alias_name_display" : "ちーぷり☆テイスト", - "hash" : "5ae401df521201e18964635c8e00ce27", - "id" : "1331602", - "profile" : { - "bust" : "77", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ラヴリー☆ハート", - "alias_name_display" : "ラヴリー☆ハート", - "event" : [ { - "event_id" : 803, - "event_name" : "第3回アイドルLIVEロワイヤル" - } ], - "hash" : "2319725cfcde4156036a3da376d0e304", - "id" : "1411701", - "profile" : { - "bust" : "77", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ラヴリー☆ハート", - "alias_name_display" : "ラヴリー☆ハート", - "event" : [ { - "event_id" : 803, - "event_name" : "第3回アイドルLIVEロワイヤル" - } ], - "hash" : "a98cd69ad87bc017b0b7a5ab1719bbb7", - "id" : "1511702", - "profile" : { - "bust" : "77", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ラヴリー☆ライダー", - "alias_name_display" : "ラヴリー☆ライダー", - "hash" : "560a5de9054af39652fb3b48a1c22bc1", - "id" : "1415101", - "profile" : { - "bust" : "77", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ラヴリー☆ライダー", - "alias_name_display" : "ラヴリー☆ライダー", - "hash" : "7fd49e81f5b5d24cc99f84316ae4b149", - "id" : "1515102", - "profile" : { - "bust" : "77", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ラヴリー・ロワイヤル", - "alias_name_display" : "ラヴリー・ロワイヤル", - "event" : [ { - "event_id" : 811, - "event_name" : "第11回アイドルLIVEロワイヤル" - } ], - "hash" : "807e430846171e03e0490d4519e44b8c", - "id" : "1423101", - "profile" : { - "bust" : "77", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ラヴリー・ロワイヤル", - "alias_name_display" : "ラヴリー・ロワイヤル", - "event" : [ { - "event_id" : 811, - "event_name" : "第11回アイドルLIVEロワイヤル" - } ], - "hash" : "f4988f022dff8ff4dedfec2e679c0407", - "id" : "1523102", - "profile" : { - "bust" : "77", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "4thアニバーサリー", - "alias_name_display" : "4thアニバーサリー", - "event" : [ { - "event_id" : 1704, - "event_name" : "アイドルプロデュース the 4th Anniversary" - } ], - "hash" : "1f1da81fa810a213dc4f0ed50aed6119", - "id" : "1429301", - "profile" : { - "bust" : "77", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "4thアニバーサリー", - "alias_name_display" : "4thアニバーサリー", - "event" : [ { - "event_id" : 1704, - "event_name" : "アイドルプロデュース the 4th Anniversary" - } ], - "hash" : "9e83c80d3589ef5b8f21452a1d5288cd", - "id" : "1529302", - "profile" : { - "bust" : "77", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "4thアニバーサリー・S", - "alias_name_display" : "4thアニバーサリー・S", - "event" : [ { - "event_id" : 1704, - "event_name" : "アイドルプロデュース the 4th Anniversary" - } ], - "hash" : "ab7bfa84426b3b43094252eb65d41ab8", - "id" : "1429401", - "profile" : { - "bust" : "77", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "4thアニバーサリー・S", - "alias_name_display" : "4thアニバーサリー・S", - "event" : [ { - "event_id" : 1704, - "event_name" : "アイドルプロデュース the 4th Anniversary" - } ], - "hash" : "e4a4576044b3998542c3e03cba2b5ce0", - "id" : "1529402", - "profile" : { - "bust" : "77", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "砂漠のプリンセス", - "alias_name_display" : "砂漠のプリンセス", - "event" : [ { - "event_id" : 1902, - "event_name" : "御伽公演 おてんば姫とまぢヤバな魔法のランプ" - } ], - "hash" : "2fbab4bbe8033bf12ae330ad3013e932", - "id" : "1433901", - "profile" : { - "bust" : "77", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "砂漠のプリンセス", - "alias_name_display" : "砂漠のプリンセス", - "event" : [ { - "event_id" : 1902, - "event_name" : "御伽公演 おてんば姫とまぢヤバな魔法のランプ" - } ], - "hash" : "746f35295f4f371ec9b71219fb1224ce", - "id" : "1533902", - "profile" : { - "bust" : "77", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "41" - } - } ], - "idol_id" : 22, - "idol_name" : "藤本里奈", - "idol_name_display" : "藤本里奈", - "units" : [ { - "id" : "39", - "name" : "ノーティギャルズ" - }, { - "id" : "83", - "name" : "Shock'in Pink!" - }, { - "id" : "112", - "name" : "ギャルズパーティー" - }, { - "id" : "113", - "name" : "セクシーギャルズ" - }, { - "id" : "123", - "name" : "マッシブライダース" - }, { - "id" : "176", - "name" : "炎陣" - } ] -}, { - "aliases" : [ { - "hash" : "6b068f0f0e900fe2dd9026fc45e69c73", - "id" : "1002601", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "40" - } - }, { - "hash" : "dfa5a36128104882b3a46258220c6701", - "id" : "1102602", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "ドイツスタイル", - "alias_name_display" : "ドイツスタイル", - "event" : [ { - "event_id" : 507, - "event_name" : "LIVEツアーカーニバルinドイツ" - } ], - "hash" : "60af5036a77f2f8269fb6e88d920497f", - "id" : "1211601", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "ドイツスタイル", - "alias_name_display" : "ドイツスタイル", - "event" : [ { - "event_id" : 507, - "event_name" : "LIVEツアーカーニバルinドイツ" - } ], - "hash" : "d51d5eadd272f1b876ba341d6382868f", - "id" : "1311602", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "ロワイヤルスタイルNP", - "alias_name_display" : "ロワイヤルスタイルNP", - "event" : [ { - "event_id" : 805, - "event_name" : "第5回アイドルLIVEロワイヤル" - } ], - "hash" : "15eb02199aecce5e6f44cc03aedc29ac", - "id" : "1216801", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "ロワイヤルスタイルNP", - "alias_name_display" : "ロワイヤルスタイルNP", - "event" : [ { - "event_id" : 805, - "event_name" : "第5回アイドルLIVEロワイヤル" - } ], - "hash" : "286e0026f19374de60af40a8a7e0d06a", - "id" : "1316802", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "サマーシーズン", - "alias_name_display" : "サマーシーズン", - "hash" : "7edc3a0dfceed19ff46f0ebda96b8ee0", - "id" : "1222601", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "サマーシーズン", - "alias_name_display" : "サマーシーズン", - "hash" : "46961adee0f631616278501c02e47d1b", - "id" : "1322602", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "ノルウェー紀行", - "alias_name_display" : "ノルウェー紀行", - "event" : [ { - "event_id" : 1705, - "event_name" : "アイドルプロデュース きらめくオーロラ紀行" - } ], - "hash" : "be964026db56c2a6d7451db1085a5c15", - "id" : "1226401", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "ノルウェー紀行", - "alias_name_display" : "ノルウェー紀行", - "event" : [ { - "event_id" : 1705, - "event_name" : "アイドルプロデュース きらめくオーロラ紀行" - } ], - "hash" : "dfa5c5f04a0c8af6c6df3838046c8c31", - "id" : "1326402", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "ノルウェー紀行・S", - "alias_name_display" : "ノルウェー紀行・S", - "event" : [ { - "event_id" : 1705, - "event_name" : "アイドルプロデュース きらめくオーロラ紀行" - } ], - "hash" : "1268aaec4763af5b7c453126ee0877ce", - "id" : "1226501", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "ノルウェー紀行・S", - "alias_name_display" : "ノルウェー紀行・S", - "event" : [ { - "event_id" : 1705, - "event_name" : "アイドルプロデュース きらめくオーロラ紀行" - } ], - "hash" : "158f8d12822a0557a7a615e28bc434ea", - "id" : "1326502", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "ウェディングセレモニー", - "alias_name_display" : "ウェディングセレモニー", - "hash" : "c023db21214e7ae05e530ff7c55c58d5", - "id" : "1228301", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "ウェディングセレモニー", - "alias_name_display" : "ウェディングセレモニー", - "hash" : "b46221f37a06227726085fb255739bc4", - "id" : "1328302", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "ノーブレッドノーライフ", - "alias_name_display" : "ノーブレッドノーライフ", - "event" : [ { - "event_id" : "032", - "event_name" : "第32回プロダクションマッチフェスティバル" - } ], - "hash" : "0d022f6519fd7b401d70de6a2f8251c1", - "id" : "1230701", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "ノーブレッドノーライフ", - "alias_name_display" : "ノーブレッドノーライフ", - "event" : [ { - "event_id" : "032", - "event_name" : "第32回プロダクションマッチフェスティバル" - } ], - "hash" : "d24d7d1c13fa222394adeb1b8143c884", - "id" : "1330702", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "モグモグバレンタイン", - "alias_name_display" : "モグモグバレンタイン", - "hash" : "8166a4e7c07c118ab7202278f32bf89a", - "id" : "1412201", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "モグモグバレンタイン", - "alias_name_display" : "モグモグバレンタイン", - "hash" : "a154707291de46fdc9e9ec2c9d10055b", - "id" : "1512202", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "パンプキンチアー", - "alias_name_display" : "パンプキンチアー", - "event" : [ { - "event_id" : 1106, - "event_name" : "プロダクション対抗トークバトルショー ハロウィンSP" - } ], - "hash" : "d87837c56b1403c8047a7194db02a869", - "id" : "1419401", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "パンプキンチアー", - "alias_name_display" : "パンプキンチアー", - "event" : [ { - "event_id" : 1106, - "event_name" : "プロダクション対抗トークバトルショー ハロウィンSP" - } ], - "hash" : "32a2e1707518845648d1684210fce934", - "id" : "1519402", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "モグモグオータム", - "alias_name_display" : "モグモグオータム", - "event" : [ { - "event_id" : 814, - "event_name" : "第14回アイドルLIVEロワイヤル" - } ], - "hash" : "65844372377e2a3527d49cf506b2f6fc", - "id" : "1428801", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "モグモグオータム", - "alias_name_display" : "モグモグオータム", - "event" : [ { - "event_id" : 814, - "event_name" : "第14回アイドルLIVEロワイヤル" - } ], - "hash" : "77af3dbc70020d39d0731237345f44cf", - "id" : "1528802", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "焼きたてハピネス", - "alias_name_display" : "焼きたてハピネス", - "event" : [ { - "event_id" : 1216, - "event_name" : "先生と一緒に♪目指せおいしいパン作り アイドルチャレンジ" - } ], - "hash" : "ebf9935d9b73a4244db58227f97d8d2b", - "id" : "1440101", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "焼きたてハピネス", - "alias_name_display" : "焼きたてハピネス", - "event" : [ { - "event_id" : 1216, - "event_name" : "先生と一緒に♪目指せおいしいパン作り アイドルチャレンジ" - } ], - "hash" : "6982bf46c7bfa21df65e8b12044e9555", - "id" : "1540102", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "40" - } - } ], - "idol_id" : 23, - "idol_name" : "大原みちる", - "idol_name_display" : "大原みちる", - "units" : [ { - "id" : "33", - "name" : "チーム・フラワー" - }, { - "id" : "97", - "name" : "ドイツスタイル" - }, { - "id" : "133", - "name" : "スケルツォ・プリマヴェーラ" - }, { - "id" : "209", - "name" : "ロワイヤルスタイルNP" - } ] -}, { - "aliases" : [ { - "hash" : "45e99d9c3367c228d33f71058dd2f738", - "id" : "1002701", - "profile" : { - "bust" : "62", - "height" : "130", - "hip" : "65", - "waist" : "50", - "weight" : "28" - } - }, { - "hash" : "3144d1c17608aeeee8313c6cd507f9fb", - "id" : "1102702", - "profile" : { - "bust" : "62", - "height" : "130", - "hip" : "65", - "waist" : "50", - "weight" : "28" - } - }, { - "alias_name" : "スペーススタイル", - "alias_name_display" : "スペーススタイル", - "event" : [ { - "event_id" : 508, - "event_name" : "LIVEツアーカーニバルinスペースワールド" - } ], - "hash" : "d9f37d6cf95addd1b3965a4f0ce9b614", - "id" : "1212801", - "profile" : { - "bust" : "62", - "height" : "130", - "hip" : "65", - "waist" : "50", - "weight" : "28" - } - }, { - "alias_name" : "スペーススタイル", - "alias_name_display" : "スペーススタイル", - "event" : [ { - "event_id" : 508, - "event_name" : "LIVEツアーカーニバルinスペースワールド" - } ], - "hash" : "9d26767ec2bee81a2d044b4dfbf1d047", - "id" : "1312802", - "profile" : { - "bust" : "62", - "height" : "130", - "hip" : "65", - "waist" : "50", - "weight" : "28" - } - }, { - "alias_name" : "紅葉温泉", - "alias_name_display" : "紅葉温泉", - "hash" : "3c51dba58851ac10b8c11fed3d7c089f", - "id" : "1224401", - "profile" : { - "bust" : "62", - "height" : "130", - "hip" : "65", - "waist" : "50", - "weight" : "28" - } - }, { - "alias_name" : "紅葉温泉", - "alias_name_display" : "紅葉温泉", - "hash" : "aa2469f1804965e38a2a14d945c62b2a", - "id" : "1324402", - "profile" : { - "bust" : "62", - "height" : "130", - "hip" : "65", - "waist" : "50", - "weight" : "28" - } - }, { - "alias_name" : "ふしぎなちから", - "alias_name_display" : "ふしぎなちから", - "hash" : "3432d1de0c9fbb642ed0d612ea5525bc", - "id" : "1229501", - "profile" : { - "bust" : "62", - "height" : "130", - "hip" : "65", - "waist" : "50", - "weight" : "28" - } - }, { - "alias_name" : "ふしぎなちから", - "alias_name_display" : "ふしぎなちから", - "hash" : "16c97cfaf2b0ed17ac59a0c545c80286", - "id" : "1329502", - "profile" : { - "bust" : "62", - "height" : "130", - "hip" : "65", - "waist" : "50", - "weight" : "28" - } - }, { - "alias_name" : "マジカルエンジェル", - "alias_name_display" : "マジカルエンジェル", - "event" : [ { - "event_id" : "015", - "event_name" : "第15回プロダクションマッチフェスティバル" - } ], - "hash" : "efe818609edadb7a799cd5318a803c06", - "id" : "1412501", - "profile" : { - "bust" : "62", - "height" : "130", - "hip" : "65", - "waist" : "50", - "weight" : "28" - } - }, { - "alias_name" : "マジカルエンジェル", - "alias_name_display" : "マジカルエンジェル", - "event" : [ { - "event_id" : "015", - "event_name" : "第15回プロダクションマッチフェスティバル" - } ], - "hash" : "113a747db67955abdf42f480d82bfd0c", - "id" : "1512502", - "profile" : { - "bust" : "62", - "height" : "130", - "hip" : "65", - "waist" : "50", - "weight" : "28" - } - }, { - "alias_name" : "スウィートフェアリー", - "alias_name_display" : "スウィートフェアリー", - "hash" : "692f101a35f8d44b5cfdab20db41d07c", - "id" : "1416001", - "profile" : { - "bust" : "62", - "height" : "130", - "hip" : "65", - "waist" : "50", - "weight" : "28" - } - }, { - "alias_name" : "スウィートフェアリー", - "alias_name_display" : "スウィートフェアリー", - "hash" : "8d6a51322763437b0285d0014de453e1", - "id" : "1516002", - "profile" : { - "bust" : "62", - "height" : "130", - "hip" : "65", - "waist" : "50", - "weight" : "28" - } - }, { - "alias_name" : "はじめていっぱい", - "alias_name_display" : "はじめていっぱい", - "event" : [ { - "event_id" : 1701, - "event_name" : "アイドルプロデュース はじめてのキャンプ" - } ], - "hash" : "48ad4413bb8682b45c9dba484b79127d", - "id" : "1424101", - "profile" : { - "bust" : "62", - "height" : "130", - "hip" : "65", - "waist" : "50", - "weight" : "28" - } - }, { - "alias_name" : "はじめていっぱい", - "alias_name_display" : "はじめていっぱい", - "event" : [ { - "event_id" : 1701, - "event_name" : "アイドルプロデュース はじめてのキャンプ" - } ], - "hash" : "da45338f44ff37ffe855b752bf0abbd3", - "id" : "1524102", - "profile" : { - "bust" : "62", - "height" : "130", - "hip" : "65", - "waist" : "50", - "weight" : "28" - } - }, { - "alias_name" : "ホワイトテイル", - "alias_name_display" : "ホワイトテイル", - "hash" : "f54882d2d097483a70a35a82c42d40be", - "id" : "1430801", - "profile" : { - "bust" : "62", - "height" : "130", - "hip" : "65", - "waist" : "50", - "weight" : "28" - } - }, { - "alias_name" : "ホワイトテイル", - "alias_name_display" : "ホワイトテイル", - "hash" : "c50e292d766463d6113e97ee03cc6a38", - "id" : "1530802", - "profile" : { - "bust" : "62", - "height" : "130", - "hip" : "65", - "waist" : "50", - "weight" : "28" - } - }, { - "alias_name" : "無垢なる魔王", - "alias_name_display" : "無垢なる魔王", - "hash" : "51d28dcc1cffaf374a73ed53f77e9476", - "id" : "1437801", - "profile" : { - "bust" : "62", - "height" : "130", - "hip" : "65", - "waist" : "50", - "weight" : "28" - } - }, { - "alias_name" : "無垢なる魔王", - "alias_name_display" : "無垢なる魔王", - "hash" : "687b4206d88a37c16864b8f4d507f2cb", - "id" : "1537802", - "profile" : { - "bust" : "62", - "height" : "130", - "hip" : "65", - "waist" : "50", - "weight" : "28" - } - } ], - "idol_id" : 24, - "idol_name" : "遊佐こずえ", - "idol_name_display" : "遊佐こずえ", - "units" : [ { - "id" : "62", - "name" : "ようせいさんとおねえさん" - }, { - "id" : "95", - "name" : "スペーススタイル" - } ] -}, { - "aliases" : [ { - "hash" : "28789186bef61a4dcdd8eff8ef59fe7f", - "id" : "1002801", - "profile" : { - "bust" : "おっきい", - "height" : "145", - "hip" : "まぁまぁ", - "waist" : "ふつう", - "weight" : "40" - } - }, { - "hash" : "98e729ca168828acbf2ba02d89feda8b", - "id" : "1102802", - "profile" : { - "bust" : "おっきい", - "height" : "145", - "hip" : "まぁまぁ", - "waist" : "ふつう", - "weight" : "40" - } - }, { - "alias_name" : "トークLIVEチアガール", - "alias_name_display" : "トークLIVEチアガール", - "event" : [ { - "event_id" : 1101, - "event_name" : "プロダクション対抗トークバトルショー" - } ], - "hash" : "4d1ca7f4ecb2d1c02e68551e9bba2ab3", - "id" : "1215101", - "profile" : { - "bust" : "おっきい", - "height" : "145", - "hip" : "まぁまぁ", - "waist" : "ふつう", - "weight" : "40" - } - }, { - "alias_name" : "トークLIVEチアガール", - "alias_name_display" : "トークLIVEチアガール", - "event" : [ { - "event_id" : 1101, - "event_name" : "プロダクション対抗トークバトルショー" - } ], - "hash" : "d37d6a4498910c156f63189e2d40d6ed", - "id" : "1315102", - "profile" : { - "bust" : "おっきい", - "height" : "145", - "hip" : "まぁまぁ", - "waist" : "ふつう", - "weight" : "40" - } - }, { - "alias_name" : "大粒のドロップ", - "alias_name_display" : "大粒のドロップ", - "event" : [ { - "event_id" : "018", - "event_name" : "第18回プロダクションマッチフェスティバル" - } ], - "hash" : "66f135ec677fc6141ada012bbfcd01d7", - "id" : "1218001", - "profile" : { - "bust" : "おっきい", - "height" : "145", - "hip" : "まぁまぁ", - "waist" : "ふつう", - "weight" : "40" - } - }, { - "alias_name" : "大粒のドロップ", - "alias_name_display" : "大粒のドロップ", - "event" : [ { - "event_id" : "018", - "event_name" : "第18回プロダクションマッチフェスティバル" - } ], - "hash" : "6131913e660db86e1a50099c16bc325d", - "id" : "1318002", - "profile" : { - "bust" : "おっきい", - "height" : "145", - "hip" : "まぁまぁ", - "waist" : "ふつう", - "weight" : "40" - } - }, { - "alias_name" : "マーチングバンド", - "alias_name_display" : "マーチングバンド", - "hash" : "e0e1f48b20530c999a6b5a9559d6af6a", - "id" : "1226001", - "profile" : { - "bust" : "おっきい", - "height" : "145", - "hip" : "まぁまぁ", - "waist" : "ふつう", - "weight" : "40" - } - }, { - "alias_name" : "マーチングバンド", - "alias_name_display" : "マーチングバンド", - "hash" : "2ad0b3283dc5a010db5f158eb287e9fc", - "id" : "1326002", - "profile" : { - "bust" : "おっきい", - "height" : "145", - "hip" : "まぁまぁ", - "waist" : "ふつう", - "weight" : "40" - } - }, { - "alias_name" : "まごころメイド", - "alias_name_display" : "まごころメイド", - "hash" : "239499574a3170f40fa617e5e007ad72", - "id" : "1233101", - "profile" : { - "bust" : "おっきい", - "height" : "145", - "hip" : "まぁまぁ", - "waist" : "ふつう", - "weight" : "40" - } - }, { - "alias_name" : "まごころメイド", - "alias_name_display" : "まごころメイド", - "hash" : "9e651b1f7f469561931f12fc9a3b3e01", - "id" : "1333102", - "profile" : { - "bust" : "おっきい", - "height" : "145", - "hip" : "まぁまぁ", - "waist" : "ふつう", - "weight" : "40" - } - }, { - "alias_name" : "だだもれエモーション", - "alias_name_display" : "だだもれエモーション", - "event" : [ { - "event_id" : 807, - "event_name" : "第7回アイドルLIVEロワイヤル" - } ], - "hash" : "a4bbadf9252089f4d2d9ebd59b48ce7d", - "id" : "1418901", - "profile" : { - "bust" : "おっきい", - "height" : "145", - "hip" : "まぁまぁ", - "waist" : "ふつう", - "weight" : "40" - } - }, { - "alias_name" : "だだもれエモーション", - "alias_name_display" : "だだもれエモーション", - "event" : [ { - "event_id" : 807, - "event_name" : "第7回アイドルLIVEロワイヤル" - } ], - "hash" : "ceb069e649a43f33fcd76f03df331740", - "id" : "1518902", - "profile" : { - "bust" : "おっきい", - "height" : "145", - "hip" : "まぁまぁ", - "waist" : "ふつう", - "weight" : "40" - } - }, { - "alias_name" : "ぷるんぷるんB.B", - "alias_name_display" : "ぷるんぷるんB.B", - "hash" : "0b09d531c78b583e59cf03cef7673ea8", - "id" : "1422201", - "profile" : { - "bust" : "おっきい", - "height" : "145", - "hip" : "まぁまぁ", - "waist" : "ふつう", - "weight" : "40" - } - }, { - "alias_name" : "ぷるんぷるんB.B", - "alias_name_display" : "ぷるんぷるんB.B", - "hash" : "38bcfcacb8cd201a38eda17602d517df", - "id" : "1522202", - "profile" : { - "bust" : "おっきい", - "height" : "145", - "hip" : "まぁまぁ", - "waist" : "ふつう", - "weight" : "40" - } - }, { - "alias_name" : "もぎたてビーチガール", - "alias_name_display" : "もぎたてビーチガール", - "event" : [ { - "event_id" : 1703, - "event_name" : "アイドルプロデュース おいでよ!海の家" - } ], - "hash" : "3e40fa8beb3a767790257137865215b1", - "id" : "1426301", - "profile" : { - "bust" : "おっきい", - "height" : "145", - "hip" : "まぁまぁ", - "waist" : "ふつう", - "weight" : "40" - } - }, { - "alias_name" : "もぎたてビーチガール", - "alias_name_display" : "もぎたてビーチガール", - "event" : [ { - "event_id" : 1703, - "event_name" : "アイドルプロデュース おいでよ!海の家" - } ], - "hash" : "16bcdd3845d6e3e7329a87b63e487adb", - "id" : "1526302", - "profile" : { - "bust" : "おっきい", - "height" : "145", - "hip" : "まぁまぁ", - "waist" : "ふつう", - "weight" : "40" - } - }, { - "alias_name" : "きらきらビーチガール", - "alias_name_display" : "きらきらビーチガール", - "event" : [ { - "event_id" : 1703, - "event_name" : "アイドルプロデュース おいでよ!海の家" - } ], - "hash" : "1d9706dbe3ab49249cc85a75865ce80e", - "id" : "1426401", - "profile" : { - "bust" : "おっきい", - "height" : "145", - "hip" : "まぁまぁ", - "waist" : "ふつう", - "weight" : "40" - } - }, { - "alias_name" : "きらきらビーチガール", - "alias_name_display" : "きらきらビーチガール", - "event" : [ { - "event_id" : 1703, - "event_name" : "アイドルプロデュース おいでよ!海の家" - } ], - "hash" : "2c56ab3ad72b1f245847fcc4e0bc94c8", - "id" : "1526402", - "profile" : { - "bust" : "おっきい", - "height" : "145", - "hip" : "まぁまぁ", - "waist" : "ふつう", - "weight" : "40" - } - }, { - "alias_name" : "大輪の華", - "alias_name_display" : "大輪の華", - "event" : [ { - "event_id" : 1408, - "event_name" : "第8回ぷちデレラコレクション" - } ], - "hash" : "a80b7a3dce6c300c9bf3d0f0dd7d415e", - "id" : "1434801", - "profile" : { - "bust" : "おっきい", - "height" : "145", - "hip" : "まぁまぁ", - "waist" : "ふつう", - "weight" : "40" - } - }, { - "alias_name" : "大輪の華", - "alias_name_display" : "大輪の華", - "event" : [ { - "event_id" : 1408, - "event_name" : "第8回ぷちデレラコレクション" - } ], - "hash" : "d76492cb5a1cc1202e993013da0e48cd", - "id" : "1534802", - "profile" : { - "bust" : "おっきい", - "height" : "145", - "hip" : "まぁまぁ", - "waist" : "ふつう", - "weight" : "40" - } - } ], - "idol_id" : 25, - "idol_name" : "大沼くるみ", - "idol_name_display" : "大沼くるみ", - "units" : [ { - "id" : "71", - "name" : "B.B" - }, { - "id" : "214", - "name" : "L.M.B.G" - } ] -}, { - "aliases" : [ { - "hash" : "dad249d2193e48fede1efb6b86ce152f", - "id" : "1002901", - "profile" : { - "bust" : "83", - "height" : "161", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "hash" : "b9e2f6db7e3b84a0319b31c875323c03", - "id" : "1102902", - "profile" : { - "bust" : "83", - "height" : "161", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "ガンスリンガー", - "alias_name_display" : "ガンスリンガー", - "event" : [ { - "event_id" : 512, - "event_name" : "西部公演 ガンスリンガージャーニー" - } ], - "hash" : "749918764164a20ffd9548b6e3329cb7", - "id" : "1216501", - "profile" : { - "bust" : "83", - "height" : "161", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "ガンスリンガー", - "alias_name_display" : "ガンスリンガー", - "event" : [ { - "event_id" : 512, - "event_name" : "西部公演 ガンスリンガージャーニー" - } ], - "hash" : "06e634647cb9db3a1ae3cd4f0f8c1fdc", - "id" : "1316502", - "profile" : { - "bust" : "83", - "height" : "161", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "ダンシングガール", - "alias_name_display" : "ダンシングガール", - "event" : [ { - "event_id" : 1706, - "event_name" : "アイドルプロデュース 北の大地と夜さりの祭" - } ], - "hash" : "87b9ce294ee324ef107117cd775e3e41", - "id" : "1228101", - "profile" : { - "bust" : "83", - "height" : "161", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "ダンシングガール", - "alias_name_display" : "ダンシングガール", - "event" : [ { - "event_id" : 1706, - "event_name" : "アイドルプロデュース 北の大地と夜さりの祭" - } ], - "hash" : "8bd62d14e7ae5a19612cb4f63e7bc910", - "id" : "1328102", - "profile" : { - "bust" : "83", - "height" : "161", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "ダンシングガール・S", - "alias_name_display" : "ダンシングガール・S", - "event" : [ { - "event_id" : 1706, - "event_name" : "アイドルプロデュース 北の大地と夜さりの祭" - } ], - "hash" : "46b8c7e64644fefca3f9c7836f2c8f40", - "id" : "1228201", - "profile" : { - "bust" : "83", - "height" : "161", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "ダンシングガール・S", - "alias_name_display" : "ダンシングガール・S", - "event" : [ { - "event_id" : 1706, - "event_name" : "アイドルプロデュース 北の大地と夜さりの祭" - } ], - "hash" : "ae2a65d68ad26995c036e4a212c15f18", - "id" : "1328202", - "profile" : { - "bust" : "83", - "height" : "161", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "セブンスヘブン", - "alias_name_display" : "セブンスヘブン", - "hash" : "3055dffe2520e6a28427482ae61582e9", - "id" : "1417301", - "profile" : { - "bust" : "83", - "height" : "161", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "セブンスヘブン", - "alias_name_display" : "セブンスヘブン", - "hash" : "5f3a262bdcb15fd59261d1d67eed56e3", - "id" : "1517302", - "profile" : { - "bust" : "83", - "height" : "161", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "パフュームトリッパー", - "alias_name_display" : "パフュームトリッパー", - "hash" : "403297028737ce2c944bfc812dba6c94", - "id" : "1419901", - "profile" : { - "bust" : "83", - "height" : "161", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "パフュームトリッパー", - "alias_name_display" : "パフュームトリッパー", - "hash" : "be20e1ce2d5b116f0b9fecbecf298a48", - "id" : "1519902", - "profile" : { - "bust" : "83", - "height" : "161", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "文明開花", - "alias_name_display" : "文明開花", - "hash" : "af0f233de4c2dfbac1e5a8bf1768dcf6", - "id" : "1423501", - "profile" : { - "bust" : "83", - "height" : "161", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "文明開花", - "alias_name_display" : "文明開花", - "hash" : "c827cb0a7ab82a4395250ab254d6fbcf", - "id" : "1523502", - "profile" : { - "bust" : "83", - "height" : "161", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "fdf5b5e967d72bb2b7acf1b43953dbd2", - "id" : "1429101", - "profile" : { - "bust" : "83", - "height" : "161", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "aa3d9312403ed3e40e7f92b771676ea9", - "id" : "1529102", - "profile" : { - "bust" : "83", - "height" : "161", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "夜の匂い", - "alias_name_display" : "夜の匂い", - "event" : [ { - "event_id" : 815, - "event_name" : "アイドルLIVEロワイヤル クリスマスSP" - } ], - "hash" : "f4add4b54fc6ff462caf154441e049cf", - "id" : "1429801", - "profile" : { - "bust" : "83", - "height" : "161", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "夜の匂い", - "alias_name_display" : "夜の匂い", - "event" : [ { - "event_id" : 815, - "event_name" : "アイドルLIVEロワイヤル クリスマスSP" - } ], - "hash" : "abe06fbcf68900a285b0f2244403214e", - "id" : "1529802", - "profile" : { - "bust" : "83", - "height" : "161", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "新春パルファム", - "alias_name_display" : "新春パルファム", - "hash" : "44b0359478c5fbc5a8dcb0d7d91a3776", - "id" : "1437601", - "profile" : { - "bust" : "83", - "height" : "161", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "新春パルファム", - "alias_name_display" : "新春パルファム", - "hash" : "bb156a253fc247462a87b20eee8770f5", - "id" : "1537602", - "profile" : { - "bust" : "83", - "height" : "161", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - } ], - "idol_id" : 26, - "idol_name" : "一ノ瀬志希", - "idol_name_display" : "一ノ瀬志希", - "units" : [ { - "id" : "65", - "name" : "レイジー・レイジー" - }, { - "id" : "72", - "name" : "Dimension-3" - }, { - "id" : "126", - "name" : "誘惑イビル" - }, { - "id" : "185", - "name" : "LiPPS" - }, { - "id" : "196", - "name" : "la Roseraie" - } ] -}, { - "aliases" : [ { - "hash" : "eb2571c3f125aa3fcadb1468b6a4dbee", - "id" : "1200101", - "profile" : { - "bust" : "85", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "hash" : "b22b6d458e6da02da4717fee2cbb5095", - "id" : "1300102", - "profile" : { - "bust" : "85", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "ハイカラサクラ", - "alias_name_display" : "ハイカラサクラ", - "hash" : "4355a0e400d64478e92262d218a2c1bf", - "id" : "1221101", - "profile" : { - "bust" : "85", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "ハイカラサクラ", - "alias_name_display" : "ハイカラサクラ", - "hash" : "521d08134bd68c69fb0393e8c264af7a", - "id" : "1321102", - "profile" : { - "bust" : "85", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "ブラックキャット", - "alias_name_display" : "ブラックキャット", - "hash" : "b47ef631aaaa60b10106b8f2d9b53481", - "id" : "1232801", - "profile" : { - "bust" : "85", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "ブラックキャット", - "alias_name_display" : "ブラックキャット", - "hash" : "d4756fbf7ff04813ee44a35a24c776f2", - "id" : "1332802", - "profile" : { - "bust" : "85", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "セクシーキャット", - "alias_name_display" : "セクシーキャット", - "hash" : "ccebb088023a6049836772db68a1d7f6", - "id" : "1400401", - "profile" : { - "bust" : "85", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "セクシーキャット", - "alias_name_display" : "セクシーキャット", - "hash" : "fe6e6f03157fbdd74ec000f057c601cb", - "id" : "1500402", - "profile" : { - "bust" : "85", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "069cfeda079f531b4a0d33f4c9e226ba", - "id" : "1402401", - "profile" : { - "bust" : "85", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "c6de2d6bb237d224734e0448ae6f153a", - "id" : "1502402", - "profile" : { - "bust" : "85", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "チャーミングキャット", - "alias_name_display" : "チャーミングキャット", - "hash" : "c9f7539dc29fc32ea84e5d86153ec745", - "id" : "1403901", - "profile" : { - "bust" : "85", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "チャーミングキャット", - "alias_name_display" : "チャーミングキャット", - "hash" : "6866eec24a7825980b3325dfc6297b33", - "id" : "1503902", - "profile" : { - "bust" : "85", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "シーサイドキャット", - "alias_name_display" : "シーサイドキャット", - "hash" : "f369a4d2863096f6482270bf86392140", - "id" : "1408101", - "profile" : { - "bust" : "85", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "シーサイドキャット", - "alias_name_display" : "シーサイドキャット", - "hash" : "583d7a939c2f8d984fd5a45328019764", - "id" : "1508102", - "profile" : { - "bust" : "85", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "アニバーサリーキャット", - "alias_name_display" : "アニバーサリーキャット", - "event" : [ { - "event_id" : 410, - "event_name" : "アイドルプロデュース the 2nd Anniversary" - } ], - "hash" : "3e410534ed3ae72de2a38d8f0c8caa13", - "id" : "1410501", - "profile" : { - "bust" : "85", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "アニバーサリーキャット", - "alias_name_display" : "アニバーサリーキャット", - "event" : [ { - "event_id" : 410, - "event_name" : "アイドルプロデュース the 2nd Anniversary" - } ], - "hash" : "6c41f4d6efea96e2fb3f34e6fea1de77", - "id" : "1510502", - "profile" : { - "bust" : "85", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "アニバーサリーキャット・S", - "alias_name_display" : "アニバーサリーキャット・S", - "event" : [ { - "event_id" : 410, - "event_name" : "アイドルプロデュース the 2nd Anniversary" - } ], - "hash" : "fa0ecd35b0feef83d385a13de23d7234", - "id" : "1410601", - "profile" : { - "bust" : "85", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "アニバーサリーキャット・S", - "alias_name_display" : "アニバーサリーキャット・S", - "event" : [ { - "event_id" : 410, - "event_name" : "アイドルプロデュース the 2nd Anniversary" - } ], - "hash" : "4aa6cbe5d08e58debf0adfd32f3c5dcd", - "id" : "1510602", - "profile" : { - "bust" : "85", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "シンデレラドリーム", - "alias_name_display" : "シンデレラドリーム", - "hash" : "665a9ad6cf25489e7e4a11429abed954", - "id" : "1413801", - "profile" : { - "bust" : "85", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "シンデレラドリーム", - "alias_name_display" : "シンデレラドリーム", - "hash" : "0fb854d9551451b3f1cd518348c520f4", - "id" : "1513802", - "profile" : { - "bust" : "85", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "マジメ/ネコチャン", - "alias_name_display" : "マジメ/ネコチャン", - "hash" : "bb2eb7f4b69f14c0cf2e438079234201", - "id" : "1418701", - "profile" : { - "bust" : "85", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "マジメ/ネコチャン", - "alias_name_display" : "マジメ/ネコチャン", - "hash" : "14e6c94e4cc163ffedd84a8ebba62e90", - "id" : "1518702", - "profile" : { - "bust" : "85", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "ムーンナイトキャット", - "alias_name_display" : "ムーンナイトキャット", - "hash" : "cbf6c6a6ba50576f7be5b9f273d0484d", - "id" : "1425801", - "profile" : { - "bust" : "85", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "ムーンナイトキャット", - "alias_name_display" : "ムーンナイトキャット", - "hash" : "34a453e835e1cf2f197a43cdc18c0c65", - "id" : "1525802", - "profile" : { - "bust" : "85", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "アスタリスク", - "alias_name_display" : "アスタリスク", - "hash" : "f0f2405e8f2bbf462ed96d2a47eac58b", - "id" : "1526602", - "profile" : { - "bust" : "85", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "まちぶせキャット", - "alias_name_display" : "まちぶせキャット", - "hash" : "f78629c8772962a9690611d3b3363906", - "id" : "1431101", - "profile" : { - "bust" : "85", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "まちぶせキャット", - "alias_name_display" : "まちぶせキャット", - "hash" : "8a73c424553e716484886472e9ef92f9", - "id" : "1531102", - "profile" : { - "bust" : "85", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "フマジメ/ネコチャン", - "alias_name_display" : "フマジメ/ネコチャン", - "hash" : "92e0e3e2f3feede92f76570968a1b2b4", - "id" : "1435601", - "profile" : { - "bust" : "85", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "フマジメ/ネコチャン", - "alias_name_display" : "フマジメ/ネコチャン", - "hash" : "e863deaf923d0239d7d118503386c7c4", - "id" : "1535602", - "profile" : { - "bust" : "85", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - } ], - "idol_id" : 27, - "idol_name" : "前川みく", - "idol_name_display" : "前川みく", - "units" : [ { - "id" : "3", - "name" : "あーにゃんみくにゃん" - }, { - "id" : "70", - "name" : "*(Asterisk)" - }, { - "id" : "116", - "name" : "にゃん・にゃん・にゃん" - }, { - "id" : "139", - "name" : "397cherry" - }, { - "id" : "158", - "name" : "ハイカラサクラ" - }, { - "id" : "168", - "name" : "*(Asterisk) with なつなな" - }, { - "id" : "187", - "name" : "NEX-US" - }, { - "id" : "195", - "name" : "C5" - }, { - "id" : "213", - "name" : "CINDERELLA PROJECT" - } ] -}, { - "aliases" : [ { - "hash" : "2cd48b54401ff3ef8a81a753318705a9", - "id" : "1200201", - "profile" : { - "bust" : "92", - "height" : "154", - "hip" : "88", - "waist" : "59", - "weight" : "55" - } - }, { - "hash" : "d3f5730a559b84333df073acc29d094d", - "id" : "1300202", - "profile" : { - "bust" : "92", - "height" : "154", - "hip" : "88", - "waist" : "57", - "weight" : "53" - } - }, { - "alias_name" : "ラブリー☆バラドル", - "alias_name_display" : "ラブリー☆バラドル", - "event" : [ { - "event_id" : 505, - "event_name" : "アイドルLIVEツアーinバリ島" - } ], - "hash" : "13e6f261e13f120522d4a4675d3f38a9", - "id" : "1209401", - "profile" : { - "bust" : "92", - "height" : "154", - "hip" : "88", - "waist" : "57", - "weight" : "53" - } - }, { - "alias_name" : "ラブリー☆バラドル", - "alias_name_display" : "ラブリー☆バラドル", - "event" : [ { - "event_id" : 505, - "event_name" : "アイドルLIVEツアーinバリ島" - } ], - "hash" : "d85e306970e5cfe01adfe4f222014191", - "id" : "1309402", - "profile" : { - "bust" : "92", - "height" : "154", - "hip" : "88", - "waist" : "57", - "weight" : "53" - } - }, { - "alias_name" : "おひろめポーズ", - "alias_name_display" : "おひろめポーズ", - "hash" : "c488c3d6c04ad92b2bd5cc54b24855c9", - "id" : "1217901", - "profile" : { - "bust" : "92", - "height" : "154", - "hip" : "88", - "waist" : "57", - "weight" : "53" - } - }, { - "alias_name" : "おひろめポーズ", - "alias_name_display" : "おひろめポーズ", - "hash" : "9629738a808b833c3c0d28938bf132e0", - "id" : "1317902", - "profile" : { - "bust" : "92", - "height" : "154", - "hip" : "88", - "waist" : "57", - "weight" : "53" - } - }, { - "alias_name" : "T.B.サーカス", - "alias_name_display" : "T.B.サーカス", - "event" : [ { - "event_id" : 1108, - "event_name" : "第8回プロダクション対抗トークバトルショー" - } ], - "hash" : "6d515e6022088598ee53e452e64eadfd", - "id" : "1220201", - "profile" : { - "bust" : "92", - "height" : "154", - "hip" : "88", - "waist" : "57", - "weight" : "53" - } - }, { - "alias_name" : "T.B.サーカス", - "alias_name_display" : "T.B.サーカス", - "event" : [ { - "event_id" : 1108, - "event_name" : "第8回プロダクション対抗トークバトルショー" - } ], - "hash" : "0522d77ea44cb013c8debaf5b042e606", - "id" : "1320202", - "profile" : { - "bust" : "92", - "height" : "154", - "hip" : "88", - "waist" : "57", - "weight" : "53" - } - }, { - "alias_name" : "フライトバラエティ", - "alias_name_display" : "フライトバラエティ", - "event" : [ { - "event_id" : 1803, - "event_name" : "アイドルバラエティ 大空への挑戦 ~Fly me to the Sky~" - } ], - "hash" : "0855654e3e72cb7a3920e2e064e8d204", - "id" : "1327902", - "profile" : { - "bust" : "92", - "height" : "154", - "hip" : "88", - "waist" : "57", - "weight" : "53" - } - }, { - "alias_name" : "PROのオシゴト☆", - "alias_name_display" : "PROのオシゴト☆", - "hash" : "646d02993ce1aa9172a63d9e1fd68e0b", - "id" : "1231201", - "profile" : { - "bust" : "92", - "height" : "154", - "hip" : "88", - "waist" : "57", - "weight" : "53" - } - }, { - "alias_name" : "PROのオシゴト☆", - "alias_name_display" : "PROのオシゴト☆", - "hash" : "c2d987590968cc303bc14c008db97d75", - "id" : "1331202", - "profile" : { - "bust" : "92", - "height" : "154", - "hip" : "88", - "waist" : "57", - "weight" : "53" - } - }, { - "alias_name" : "ぷるるんスポーティ", - "alias_name_display" : "ぷるるんスポーティ", - "event" : [ { - "event_id" : 212, - "event_name" : "アイドルサバイバル 秋の大運動会" - } ], - "hash" : "54e1a4a8f49210862d05524ef607b0f0", - "id" : "1409801", - "profile" : { - "bust" : "92", - "height" : "154", - "hip" : "88", - "waist" : "57", - "weight" : "53" - } - }, { - "alias_name" : "ぷるるんスポーティ", - "alias_name_display" : "ぷるるんスポーティ", - "event" : [ { - "event_id" : 212, - "event_name" : "アイドルサバイバル 秋の大運動会" - } ], - "hash" : "488ac97d9598d5f6b5ff26028d4a9fc8", - "id" : "1509802", - "profile" : { - "bust" : "92", - "height" : "154", - "hip" : "88", - "waist" : "57", - "weight" : "53" - } - }, { - "alias_name" : "吸血貴族", - "alias_name_display" : "吸血貴族", - "event" : [ { - "event_id" : 522, - "event_name" : "魔界公演 幽鬱女王とハロウィンの祝祭" - } ], - "hash" : "70053db7dd59312f3f5f2af3bd8fcbf5", - "id" : "1428501", - "profile" : { - "bust" : "92", - "height" : "154", - "hip" : "88", - "waist" : "57", - "weight" : "53" - } - }, { - "alias_name" : "吸血貴族", - "alias_name_display" : "吸血貴族", - "event" : [ { - "event_id" : 522, - "event_name" : "魔界公演 幽鬱女王とハロウィンの祝祭" - } ], - "hash" : "2fc28fdf3ff00656454cd265ac6ff260", - "id" : "1528502", - "profile" : { - "bust" : "92", - "height" : "154", - "hip" : "88", - "waist" : "57", - "weight" : "53" - } - } ], - "idol_id" : 28, - "idol_name" : "赤西瑛梨華", - "idol_name_display" : "赤西瑛梨華", - "units" : [ { - "id" : "73", - "name" : "ERICATHY" - } ] -}, { - "aliases" : [ { - "hash" : "510b48227148c9164ac281f46083d2c5", - "id" : "1200301", - "profile" : { - "bust" : "83", - "height" : "156", - "hip" : "86", - "waist" : "58", - "weight" : "43" - } - }, { - "hash" : "7e2a4f08a73c0bd5bf11ff7e387fc149", - "id" : "1300302", - "profile" : { - "bust" : "83", - "height" : "156", - "hip" : "86", - "waist" : "58", - "weight" : "43" - } - }, { - "alias_name" : "スウィートドリーマー", - "alias_name_display" : "スウィートドリーマー", - "hash" : "9bff0a176fb7cc6ec70aa1851267c223", - "id" : "1210101", - "profile" : { - "bust" : "83", - "height" : "156", - "hip" : "86", - "waist" : "58", - "weight" : "43" - } - }, { - "alias_name" : "スウィートドリーマー", - "alias_name_display" : "スウィートドリーマー", - "hash" : "eab228023c103ead474b39feec6f2a62", - "id" : "1310102", - "profile" : { - "bust" : "83", - "height" : "156", - "hip" : "86", - "waist" : "58", - "weight" : "43" - } - }, { - "alias_name" : "自慢のボディ", - "alias_name_display" : "自慢のボディ", - "event" : [ { - "event_id" : "017", - "event_name" : "第17回プロダクションマッチフェスティバル" - } ], - "hash" : "a31c4b789e163d6300b58fe77258e56a", - "id" : "1216701", - "profile" : { - "bust" : "83", - "height" : "156", - "hip" : "86", - "waist" : "58", - "weight" : "43" - } - }, { - "alias_name" : "自慢のボディ", - "alias_name_display" : "自慢のボディ", - "event" : [ { - "event_id" : "017", - "event_name" : "第17回プロダクションマッチフェスティバル" - } ], - "hash" : "d11715682b54f3741316f3bc52ae3435", - "id" : "1316702", - "profile" : { - "bust" : "83", - "height" : "156", - "hip" : "86", - "waist" : "58", - "weight" : "43" - } - }, { - "alias_name" : "おねだりガール", - "alias_name_display" : "おねだりガール", - "hash" : "aae1c18ddab7a1cb39d017984294b8bc", - "id" : "1220501", - "profile" : { - "bust" : "83", - "height" : "156", - "hip" : "86", - "waist" : "58", - "weight" : "43" - } - }, { - "alias_name" : "おねだりガール", - "alias_name_display" : "おねだりガール", - "hash" : "a031a837934a23cd130171507ec1f055", - "id" : "1320502", - "profile" : { - "bust" : "83", - "height" : "156", - "hip" : "86", - "waist" : "58", - "weight" : "43" - } - }, { - "alias_name" : "LIVEバラエティ", - "alias_name_display" : "LIVEバラエティ", - "event" : [ { - "event_id" : 1802, - "event_name" : "アイドルバラエティ 手作りライブプロジェクト!" - } ], - "hash" : "31deca7910d4feaa0b6cfc3af4c9e231", - "id" : "1324702", - "profile" : { - "bust" : "83", - "height" : "156", - "hip" : "86", - "waist" : "58", - "weight" : "43" - } - }, { - "alias_name" : "かんぺきプラン", - "alias_name_display" : "かんぺきプラン", - "event" : [ { - "event_id" : 725, - "event_name" : "第25回ドリームLIVEフェスティバル" - } ], - "hash" : "be69d241fbd6bc8e3c465ce10a4f903d", - "id" : "1230501", - "profile" : { - "bust" : "83", - "height" : "156", - "hip" : "86", - "waist" : "58", - "weight" : "43" - } - }, { - "alias_name" : "かんぺきプラン", - "alias_name_display" : "かんぺきプラン", - "event" : [ { - "event_id" : 725, - "event_name" : "第25回ドリームLIVEフェスティバル" - } ], - "hash" : "c73c7d84c4ec2b59495f658ee6e9f4fa", - "id" : "1330502", - "profile" : { - "bust" : "83", - "height" : "156", - "hip" : "86", - "waist" : "58", - "weight" : "43" - } - }, { - "alias_name" : "カラフルリフレッシュ", - "alias_name_display" : "カラフルリフレッシュ", - "hash" : "25ed69d5934054eb837213ce9373c0c3", - "id" : "1233301", - "profile" : { - "bust" : "83", - "height" : "156", - "hip" : "86", - "waist" : "58", - "weight" : "43" - } - }, { - "alias_name" : "カラフルリフレッシュ", - "alias_name_display" : "カラフルリフレッシュ", - "hash" : "d5ee7f424c9e5017b44623633cf2a1a1", - "id" : "1333302", - "profile" : { - "bust" : "83", - "height" : "156", - "hip" : "86", - "waist" : "58", - "weight" : "43" - } - }, { - "alias_name" : "ロワイヤルハート", - "alias_name_display" : "ロワイヤルハート", - "event" : [ { - "event_id" : 802, - "event_name" : "第2回アイドルLIVEロワイヤル" - } ], - "hash" : "8cfe9ef767466eb45c547062a317718b", - "id" : "1411001", - "profile" : { - "bust" : "83", - "height" : "156", - "hip" : "86", - "waist" : "58", - "weight" : "43" - } - }, { - "alias_name" : "ロワイヤルハート", - "alias_name_display" : "ロワイヤルハート", - "event" : [ { - "event_id" : 802, - "event_name" : "第2回アイドルLIVEロワイヤル" - } ], - "hash" : "a7cc8e895c42ead2442b9492e36223d5", - "id" : "1511002", - "profile" : { - "bust" : "83", - "height" : "156", - "hip" : "86", - "waist" : "58", - "weight" : "43" - } - }, { - "alias_name" : "キューティーチアー", - "alias_name_display" : "キューティーチアー", - "event" : [ { - "event_id" : 1506, - "event_name" : "第6回チーム対抗トークバトルショー" - } ], - "hash" : "f4138dc94327dbcd4649e994dfa8cad0", - "id" : "1431801", - "profile" : { - "bust" : "83", - "height" : "156", - "hip" : "86", - "waist" : "58", - "weight" : "43" - } - }, { - "alias_name" : "キューティーチアー", - "alias_name_display" : "キューティーチアー", - "event" : [ { - "event_id" : 1506, - "event_name" : "第6回チーム対抗トークバトルショー" - } ], - "hash" : "eab519121d4491eb02a6ba19010da935", - "id" : "1531802", - "profile" : { - "bust" : "83", - "height" : "156", - "hip" : "86", - "waist" : "58", - "weight" : "43" - } - } ], - "idol_id" : 29, - "idol_name" : "松原早耶", - "idol_name_display" : "松原早耶" -}, { - "aliases" : [ { - "hash" : "fe1ec011929547cd07d17bfa91432bd3", - "id" : "1200401", - "profile" : { - "bust" : "92", - "height" : "160", - "hip" : "90", - "waist" : "58", - "weight" : "51" - } - }, { - "hash" : "da2577c3c6e142e7d0e4de14bee28538", - "id" : "1300402", - "profile" : { - "bust" : "92", - "height" : "160", - "hip" : "90", - "waist" : "58", - "weight" : "51" - } - }, { - "alias_name" : "ゴスペルドレス", - "alias_name_display" : "ゴスペルドレス", - "event" : [ { - "event_id" : 208, - "event_name" : "アイドルサバイバル聖歌響くクリスマス" - } ], - "hash" : "8feac8e96c99be975a2dcedd499734d3", - "id" : "1206801", - "profile" : { - "bust" : "92", - "height" : "160", - "hip" : "90", - "waist" : "58", - "weight" : "51" - } - }, { - "alias_name" : "ゴスペルドレス", - "alias_name_display" : "ゴスペルドレス", - "event" : [ { - "event_id" : 208, - "event_name" : "アイドルサバイバル聖歌響くクリスマス" - } ], - "hash" : "8bf6d88f7be269f26ecc0a82120d6c0d", - "id" : "1306802", - "profile" : { - "bust" : "92", - "height" : "160", - "hip" : "90", - "waist" : "58", - "weight" : "51" - } - }, { - "alias_name" : "スウィートスノー", - "alias_name_display" : "スウィートスノー", - "hash" : "13c9b6c8cc387ff80d3dd1197d827093", - "id" : "1213801", - "profile" : { - "bust" : "92", - "height" : "160", - "hip" : "90", - "waist" : "58", - "weight" : "51" - } - }, { - "alias_name" : "スウィートスノー", - "alias_name_display" : "スウィートスノー", - "hash" : "68945ac1a86d518a4ba0d7d3b6cf4242", - "id" : "1313802", - "profile" : { - "bust" : "92", - "height" : "160", - "hip" : "90", - "waist" : "58", - "weight" : "51" - } - }, { - "alias_name" : "チャーミングメイト", - "alias_name_display" : "チャーミングメイト", - "event" : [ { - "event_id" : 520, - "event_name" : "青春公演 シング・ア・ソング" - } ], - "hash" : "3ea19a7a283d7ccf8d67ebcecb3e9b03", - "id" : "1322702", - "profile" : { - "bust" : "92", - "height" : "160", - "hip" : "90", - "waist" : "58", - "weight" : "51" - } - }, { - "alias_name" : "タラン・アフェール", - "alias_name_display" : "タラン・アフェール", - "hash" : "cf38d99062a9637022571c1f26584083", - "id" : "1229701", - "profile" : { - "bust" : "92", - "height" : "160", - "hip" : "90", - "waist" : "58", - "weight" : "51" - } - }, { - "alias_name" : "タラン・アフェール", - "alias_name_display" : "タラン・アフェール", - "hash" : "110c4dcacd7c8645e9dd950465d5c451", - "id" : "1329702", - "profile" : { - "bust" : "92", - "height" : "160", - "hip" : "90", - "waist" : "58", - "weight" : "51" - } - }, { - "alias_name" : "フリルドウェスタン", - "alias_name_display" : "フリルドウェスタン", - "event" : [ { - "event_id" : 512, - "event_name" : "西部公演 ガンスリンガージャーニー" - } ], - "hash" : "379f16f5b227b81c72e2ccc4994bc538", - "id" : "1414901", - "profile" : { - "bust" : "92", - "height" : "160", - "hip" : "90", - "waist" : "58", - "weight" : "51" - } - }, { - "alias_name" : "フリルドウェスタン", - "alias_name_display" : "フリルドウェスタン", - "event" : [ { - "event_id" : 512, - "event_name" : "西部公演 ガンスリンガージャーニー" - } ], - "hash" : "b948b75ab52fd655f62eae3a3556e5ac", - "id" : "1514902", - "profile" : { - "bust" : "92", - "height" : "160", - "hip" : "90", - "waist" : "58", - "weight" : "51" - } - }, { - "alias_name" : "エレガント・ロワイヤル", - "alias_name_display" : "エレガント・ロワイヤル", - "event" : [ { - "event_id" : 810, - "event_name" : "アイドルLIVEロワイヤル バレンタインSP" - } ], - "hash" : "2e42528040b5fad260f931b71e04f0f4", - "id" : "1422101", - "profile" : { - "bust" : "92", - "height" : "160", - "hip" : "90", - "waist" : "58", - "weight" : "51" - } - }, { - "alias_name" : "エレガント・ロワイヤル", - "alias_name_display" : "エレガント・ロワイヤル", - "event" : [ { - "event_id" : 810, - "event_name" : "アイドルLIVEロワイヤル バレンタインSP" - } ], - "hash" : "58a0923135a9fcd5da1cedc3ccace8ba", - "id" : "1522102", - "profile" : { - "bust" : "92", - "height" : "160", - "hip" : "90", - "waist" : "58", - "weight" : "51" - } - }, { - "alias_name" : "笑門福来", - "alias_name_display" : "笑門福来", - "event" : [ { - "event_id" : 719, - "event_name" : "ドリームLIVEフェスティバル 節分SP" - } ], - "hash" : "b19bd4403fc12200e4ebb45a72a949bf", - "id" : "1431001", - "profile" : { - "bust" : "92", - "height" : "160", - "hip" : "90", - "waist" : "58", - "weight" : "51" - } - }, { - "alias_name" : "笑門福来", - "alias_name_display" : "笑門福来", - "event" : [ { - "event_id" : 719, - "event_name" : "ドリームLIVEフェスティバル 節分SP" - } ], - "hash" : "d6058e099d434e6a55b6c7db8011f43e", - "id" : "1531002", - "profile" : { - "bust" : "92", - "height" : "160", - "hip" : "90", - "waist" : "58", - "weight" : "51" - } - }, { - "alias_name" : "エレガントチアー", - "alias_name_display" : "エレガントチアー", - "event" : [ { - "event_id" : 1511, - "event_name" : "第11回チーム対抗トークバトルショー" - } ], - "hash" : "4dca0c21e5859981c0e9c239dc90f1ab", - "id" : "1438601", - "profile" : { - "bust" : "92", - "height" : "160", - "hip" : "90", - "waist" : "58", - "weight" : "51" - } - }, { - "alias_name" : "エレガントチアー", - "alias_name_display" : "エレガントチアー", - "event" : [ { - "event_id" : 1511, - "event_name" : "第11回チーム対抗トークバトルショー" - } ], - "hash" : "cfc329e650e8c8f39600ad33229d97db", - "id" : "1538602", - "profile" : { - "bust" : "92", - "height" : "160", - "hip" : "90", - "waist" : "58", - "weight" : "51" - } - } ], - "idol_id" : 30, - "idol_name" : "相原雪乃", - "idol_name_display" : "相原雪乃" -}, { - "aliases" : [ { - "hash" : "1593bfefaa649ce28d0b586bbcee2c81", - "id" : "1200501", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "hash" : "f80b6b94319b514fc4da98bd63edf140", - "id" : "1300502", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "湯けむり月夜", - "alias_name_display" : "湯けむり月夜", - "hash" : "653b56a1fafbb180fe1bc54e289e6168", - "id" : "1212901", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "湯けむり月夜", - "alias_name_display" : "湯けむり月夜", - "hash" : "8e14eb789abc0919c31084da84df7dfd", - "id" : "1312902", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "新春ガール", - "alias_name_display" : "新春ガール", - "hash" : "8b2b95f91390863d0aefcce275216963", - "id" : "1225401", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "新春ガール", - "alias_name_display" : "新春ガール", - "hash" : "f34fc01bea3aa407c5ce2a6d3f9bd90d", - "id" : "1325402", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "小悪魔メイド", - "alias_name_display" : "小悪魔メイド", - "hash" : "98ba7be0650ef8626d67e2402aa665eb", - "id" : "1402801", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "小悪魔メイド", - "alias_name_display" : "小悪魔メイド", - "hash" : "85c3f8d385513b9044698c7bd20056de", - "id" : "1502802", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ショコラバレンタイン", - "alias_name_display" : "ショコラバレンタイン", - "event" : [ { - "event_id" : 411, - "event_name" : "アイドルプロデュース チョコレートフォーユー!" - } ], - "hash" : "731660756ad8c37fca4639324f94cd3e", - "id" : "1412301", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ショコラバレンタイン", - "alias_name_display" : "ショコラバレンタイン", - "event" : [ { - "event_id" : 411, - "event_name" : "アイドルプロデュース チョコレートフォーユー!" - } ], - "hash" : "f8a00b18927c827e005cb9e6f6dd68a4", - "id" : "1512302", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ショコラ・スマイル", - "alias_name_display" : "ショコラ・スマイル", - "event" : [ { - "event_id" : 411, - "event_name" : "アイドルプロデュース チョコレートフォーユー!" - } ], - "hash" : "d05bfa40e5b0eea86f7dc67e65d3b5cd", - "id" : "1412401", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ショコラ・スマイル", - "alias_name_display" : "ショコラ・スマイル", - "event" : [ { - "event_id" : 411, - "event_name" : "アイドルプロデュース チョコレートフォーユー!" - } ], - "hash" : "c2e4546518d66324acc7e20c0296ea51", - "id" : "1512402", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "リーブル・ミニヨン", - "alias_name_display" : "リーブル・ミニヨン", - "hash" : "e137e975aa7d8f98998afd46715f9a04", - "id" : "1413601", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "リーブル・ミニヨン", - "alias_name_display" : "リーブル・ミニヨン", - "hash" : "2302f78e3b6c45755ac806fcda036bf7", - "id" : "1513602", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "渚のマドモワゼル", - "alias_name_display" : "渚のマドモワゼル", - "event" : [ { - "event_id" : 1104, - "event_name" : "プロダクション対抗トークバトルショーinSUMMER" - } ], - "hash" : "3c65d08696e1a10087ad8c9f7c8460ce", - "id" : "1417401", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "渚のマドモワゼル", - "alias_name_display" : "渚のマドモワゼル", - "event" : [ { - "event_id" : 1104, - "event_name" : "プロダクション対抗トークバトルショーinSUMMER" - } ], - "hash" : "5196bf41a2d9d73524e78bd6164559e5", - "id" : "1517402", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "カドー・ド・ノエル", - "alias_name_display" : "カドー・ド・ノエル", - "hash" : "cf269d80bd21af84f56b57b48d21388d", - "id" : "1420701", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "カドー・ド・ノエル", - "alias_name_display" : "カドー・ド・ノエル", - "hash" : "5c4c3e1c99e854f47febc5ef5ae40d74", - "id" : "1520702", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "a86180b82411166bce9e0ee90f02b578", - "id" : "1422001", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "1570d7a1a0edd19717633e5df8c19842", - "id" : "1522002", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "レーブル・カプリシュー", - "alias_name_display" : "レーブル・カプリシュー", - "hash" : "1a58043805ce26870464007a4c92eb3d", - "id" : "1424401", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "レーブル・カプリシュー", - "alias_name_display" : "レーブル・カプリシュー", - "hash" : "9115963613f19ebcacb3378f581f8246", - "id" : "1524402", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "気まぐれアリス", - "alias_name_display" : "気まぐれアリス", - "event" : [ { - "event_id" : 1901, - "event_name" : "童話公演 気まぐれアリスと不思議の国" - } ], - "hash" : "3815832491e393399209a0b9ae0e56ef", - "id" : "1431901", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "気まぐれアリス", - "alias_name_display" : "気まぐれアリス", - "event" : [ { - "event_id" : 1901, - "event_name" : "童話公演 気まぐれアリスと不思議の国" - } ], - "hash" : "235d561428433ff56c4f2debd8316d7d", - "id" : "1531902", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "シンデレラドリーム", - "alias_name_display" : "シンデレラドリーム", - "hash" : "1189876e0b701fb5f80f8f4a36a19c87", - "id" : "1435401", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "シンデレラドリーム", - "alias_name_display" : "シンデレラドリーム", - "hash" : "ab148b33c781fb0345cd41403adb0424", - "id" : "1535402", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "マジードゥラネージュ", - "alias_name_display" : "マジードゥラネージュ", - "event" : [ { - "event_id" : 727, - "event_name" : "第27回ドリームLIVEフェスティバル" - } ], - "hash" : "610702181bdfb81ec803df4813886aee", - "id" : "1438101", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "マジードゥラネージュ", - "alias_name_display" : "マジードゥラネージュ", - "event" : [ { - "event_id" : 727, - "event_name" : "第27回ドリームLIVEフェスティバル" - } ], - "hash" : "09346bd07794d16a01ebdf62ea8fd570", - "id" : "1538102", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - } ], - "idol_id" : 31, - "idol_name" : "宮本フレデリカ", - "idol_name_display" : "宮本フレデリカ", - "units" : [ { - "id" : "36", - "name" : "テンプテーション・アイズ" - }, { - "id" : "65", - "name" : "レイジー・レイジー" - }, { - "id" : "74", - "name" : "FrenchKisS" - }, { - "id" : "126", - "name" : "誘惑イビル" - }, { - "id" : "155", - "name" : "セレクテッド" - }, { - "id" : "185", - "name" : "LiPPS" - }, { - "id" : "196", - "name" : "la Roseraie" - }, { - "id" : "215", - "name" : "Project:Krone" - } ] -}, { - "aliases" : [ { - "hash" : "3d5441d51a3d93214ed9798cdb5b0fe1", - "id" : "1200601", - "profile" : { - "bust" : "78", - "height" : "148", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "hash" : "00855389a2e307b18ddc7a716c4cd7ec", - "id" : "1300602", - "profile" : { - "bust" : "78", - "height" : "148", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "花火祭り", - "alias_name_display" : "花火祭り", - "event" : [ { - "event_id" : 408, - "event_name" : "アイドルプロデュース 夜空に咲く花火編" - } ], - "hash" : "b75a1f1e9000341b7e348532de188052", - "id" : "1210701", - "profile" : { - "bust" : "78", - "height" : "148", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "花火祭り", - "alias_name_display" : "花火祭り", - "event" : [ { - "event_id" : 408, - "event_name" : "アイドルプロデュース 夜空に咲く花火編" - } ], - "hash" : "16a850adb0df8850bb39fa591a3b8a87", - "id" : "1310702", - "profile" : { - "bust" : "78", - "height" : "148", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "花火祭りスマイル", - "alias_name_display" : "花火祭りスマイル", - "event" : [ { - "event_id" : 408, - "event_name" : "アイドルプロデュース 夜空に咲く花火編" - } ], - "hash" : "5eb012ecd9dbc691372a60f46636dd34", - "id" : "1210801", - "profile" : { - "bust" : "78", - "height" : "148", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "花火祭りスマイル", - "alias_name_display" : "花火祭りスマイル", - "event" : [ { - "event_id" : 408, - "event_name" : "アイドルプロデュース 夜空に咲く花火編" - } ], - "hash" : "a979654b88d8c984848c4da8bf8e27c4", - "id" : "1310802", - "profile" : { - "bust" : "78", - "height" : "148", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "夏の夜の天女", - "alias_name_display" : "夏の夜の天女", - "hash" : "ecf899616d8c2e0975790388263ef67e", - "id" : "1402001", - "profile" : { - "bust" : "78", - "height" : "148", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "夏の夜の天女", - "alias_name_display" : "夏の夜の天女", - "hash" : "ff5c24d7d8bf90932a79915818e7472c", - "id" : "1502002", - "profile" : { - "bust" : "78", - "height" : "148", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "はんなり京娘", - "alias_name_display" : "はんなり京娘", - "hash" : "519e953aad9d655e2d34f86a8d0ec5b8", - "id" : "1409201", - "profile" : { - "bust" : "78", - "height" : "148", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "はんなり京娘", - "alias_name_display" : "はんなり京娘", - "hash" : "418d73386126d2687fb901deddea1ef8", - "id" : "1509202", - "profile" : { - "bust" : "78", - "height" : "148", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "はんなりメイド", - "alias_name_display" : "はんなりメイド", - "hash" : "fe9fbbd7f57c090d38e2188a25300ebf", - "id" : "1412701", - "profile" : { - "bust" : "78", - "height" : "148", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "はんなりメイド", - "alias_name_display" : "はんなりメイド", - "hash" : "7f76cdc6826e9972671f90f9cad737ac", - "id" : "1512702", - "profile" : { - "bust" : "78", - "height" : "148", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "ff87a7aa4b5d9bf8401f1ae6e4e256fb", - "id" : "1414001", - "profile" : { - "bust" : "78", - "height" : "148", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "e601a27731e9218244b7171b8350314b", - "id" : "1514002", - "profile" : { - "bust" : "78", - "height" : "148", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "天衣の織姫", - "alias_name_display" : "天衣の織姫", - "event" : [ { - "event_id" : 707, - "event_name" : "第7回ドリームLIVEフェスティバル" - } ], - "hash" : "5734c19bfc0b30b167ec301ed3c8644b", - "id" : "1415401", - "profile" : { - "bust" : "78", - "height" : "148", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "天衣の織姫", - "alias_name_display" : "天衣の織姫", - "event" : [ { - "event_id" : 707, - "event_name" : "第7回ドリームLIVEフェスティバル" - } ], - "hash" : "8fcf2d3d5fb4cb79e4a95f1b24027258", - "id" : "1515402", - "profile" : { - "bust" : "78", - "height" : "148", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "シンデレラドリーム", - "alias_name_display" : "シンデレラドリーム", - "hash" : "1eaaea63a6986091fd536f7fc5aa13ae", - "id" : "1419301", - "profile" : { - "bust" : "78", - "height" : "148", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "シンデレラドリーム", - "alias_name_display" : "シンデレラドリーム", - "hash" : "4e99233eb7bec767f87545c9b24b84c9", - "id" : "1519302", - "profile" : { - "bust" : "78", - "height" : "148", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "白妙の絢姫", - "alias_name_display" : "白妙の絢姫", - "hash" : "d5790f3f26a34f04e6dca27719fa49b6", - "id" : "1423701", - "profile" : { - "bust" : "78", - "height" : "148", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "白妙の絢姫", - "alias_name_display" : "白妙の絢姫", - "hash" : "bcfc346a8bebc8b91b6c2a4db68af955", - "id" : "1523702", - "profile" : { - "bust" : "78", - "height" : "148", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "大和のこころ", - "alias_name_display" : "大和のこころ", - "event" : [ { - "event_id" : 1207, - "event_name" : "目指せ大和撫子 アイドルチャレンジ" - } ], - "hash" : "c8543757f2537f22c13e39998c652da4", - "id" : "1427501", - "profile" : { - "bust" : "78", - "height" : "148", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "大和のこころ", - "alias_name_display" : "大和のこころ", - "event" : [ { - "event_id" : 1207, - "event_name" : "目指せ大和撫子 アイドルチャレンジ" - } ], - "hash" : "ffe272a5090faa227b489ea020f69a00", - "id" : "1527502", - "profile" : { - "bust" : "78", - "height" : "148", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "銀幕の綺羅星", - "alias_name_display" : "銀幕の綺羅星", - "event" : [ { - "event_id" : "028", - "event_name" : "第28回プロダクションマッチフェスティバル" - } ], - "hash" : "943bd10489f8c2681b5cfc48f9168190", - "id" : "1433001", - "profile" : { - "bust" : "78", - "height" : "148", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "銀幕の綺羅星", - "alias_name_display" : "銀幕の綺羅星", - "event" : [ { - "event_id" : "028", - "event_name" : "第28回プロダクションマッチフェスティバル" - } ], - "hash" : "183e353992ea4ae9795f5951b56cbd14", - "id" : "1533002", - "profile" : { - "bust" : "78", - "height" : "148", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "風光る乙姫", - "alias_name_display" : "風光る乙姫", - "hash" : "748375361f27cc443ffefeb77ed71053", - "id" : "1436501", - "profile" : { - "bust" : "78", - "height" : "148", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "風光る乙姫", - "alias_name_display" : "風光る乙姫", - "hash" : "d5e657f5ec28629effc2da211cd79455", - "id" : "1536502", - "profile" : { - "bust" : "78", - "height" : "148", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "万代の藤波", - "alias_name_display" : "万代の藤波", - "event" : [ { - "event_id" : 729, - "event_name" : "ドリームLIVEフェスティバル ゴールデンウィークSP" - } ], - "hash" : "13f68f7a37bdcbf6eb4292f0f1473ef3", - "id" : "1439901", - "profile" : { - "bust" : "78", - "height" : "148", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "万代の藤波", - "alias_name_display" : "万代の藤波", - "event" : [ { - "event_id" : 729, - "event_name" : "ドリームLIVEフェスティバル ゴールデンウィークSP" - } ], - "hash" : "76301262a0d6d164f8d35b6148bc96cb", - "id" : "1539902", - "profile" : { - "bust" : "78", - "height" : "148", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - } ], - "idol_id" : 32, - "idol_name" : "小早川紗枝", - "idol_name_display" : "小早川紗枝", - "units" : [ { - "id" : "41", - "name" : "羽衣小町" - }, { - "id" : "43", - "name" : "春色姫君" - }, { - "id" : "131", - "name" : "KBYD" - }, { - "id" : "179", - "name" : "春霞" - }, { - "id" : "194", - "name" : "サクヤヒメ" - } ] -}, { - "aliases" : [ { - "hash" : "20867159bc2a902527f5dc0efa76d68b", - "id" : "1200701", - "profile" : { - "bust" : "87", - "height" : "156", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "hash" : "68d5be6e1422d20d4577bfd9fb25929d", - "id" : "1300702", - "profile" : { - "bust" : "87", - "height" : "156", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "クッキングチャレンジ", - "alias_name_display" : "クッキングチャレンジ", - "event" : [ { - "event_id" : 409, - "event_name" : "アイドルプロデュース チャレンジクッキング イタリアン編" - } ], - "hash" : "88337a408516e2ea72ba8a25b69d3739", - "id" : "1212101", - "profile" : { - "bust" : "87", - "height" : "156", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "クッキングチャレンジ", - "alias_name_display" : "クッキングチャレンジ", - "event" : [ { - "event_id" : 409, - "event_name" : "アイドルプロデュース チャレンジクッキング イタリアン編" - } ], - "hash" : "b0fc0a3b34f1dc4d7015ff992748d787", - "id" : "1312102", - "profile" : { - "bust" : "87", - "height" : "156", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "クッキング・スマイル", - "alias_name_display" : "クッキング・スマイル", - "event" : [ { - "event_id" : 409, - "event_name" : "アイドルプロデュース チャレンジクッキング イタリアン編" - } ], - "hash" : "0e9052e6674c415cf96e05e2c47d87ae", - "id" : "1212201", - "profile" : { - "bust" : "87", - "height" : "156", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "クッキング・スマイル", - "alias_name_display" : "クッキング・スマイル", - "event" : [ { - "event_id" : 409, - "event_name" : "アイドルプロデュース チャレンジクッキング イタリアン編" - } ], - "hash" : "50f91b233f108e33aca3854c2131ce91", - "id" : "1312202", - "profile" : { - "bust" : "87", - "height" : "156", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "トキメキバレンタイン", - "alias_name_display" : "トキメキバレンタイン", - "hash" : "891d3b2a397131fe10041331ec76579f", - "id" : "1214501", - "profile" : { - "bust" : "87", - "height" : "156", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "トキメキバレンタイン", - "alias_name_display" : "トキメキバレンタイン", - "hash" : "02b77809766989d951dbd71427bc8b4e", - "id" : "1314502", - "profile" : { - "bust" : "87", - "height" : "156", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "サマーシーズン", - "alias_name_display" : "サマーシーズン", - "hash" : "2ca808c34dd608a715ca7dc12abd7e61", - "id" : "1222501", - "profile" : { - "bust" : "87", - "height" : "156", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "サマーシーズン", - "alias_name_display" : "サマーシーズン", - "hash" : "5a3472d22bd7713b226d50f93fd35010", - "id" : "1322502", - "profile" : { - "bust" : "87", - "height" : "156", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "スウィートフィール", - "alias_name_display" : "スウィートフィール", - "event" : [ { - "event_id" : 717, - "event_name" : "第17回ドリームLIVEフェスティバル" - } ], - "hash" : "99baa4962244767d412e5585b86a318c", - "id" : "1324302", - "profile" : { - "bust" : "87", - "height" : "156", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "はりきりお嬢様", - "alias_name_display" : "はりきりお嬢様", - "hash" : "a12d2df2bf89c7eb4c9c79c85589d4bf", - "id" : "1403801", - "profile" : { - "bust" : "87", - "height" : "156", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "はりきりお嬢様", - "alias_name_display" : "はりきりお嬢様", - "hash" : "916bedb06316876a193675b005b9e65d", - "id" : "1503802", - "profile" : { - "bust" : "87", - "height" : "156", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "花園の春風", - "alias_name_display" : "花園の春風", - "event" : [ { - "event_id" : 213, - "event_name" : "アイドルサバイバルinフラワーガーデン" - } ], - "hash" : "a3bb548475ded39750363881d0d9e565", - "id" : "1413901", - "profile" : { - "bust" : "87", - "height" : "156", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "花園の春風", - "alias_name_display" : "花園の春風", - "event" : [ { - "event_id" : 213, - "event_name" : "アイドルサバイバルinフラワーガーデン" - } ], - "hash" : "46a013ca127d7f819c23d119e7a7edda", - "id" : "1513902", - "profile" : { - "bust" : "87", - "height" : "156", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ココロ晴れ模様", - "alias_name_display" : "ココロ晴れ模様", - "hash" : "67aeacd0ecebf79e4dff4b81b17933ea", - "id" : "1419201", - "profile" : { - "bust" : "87", - "height" : "156", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ココロ晴れ模様", - "alias_name_display" : "ココロ晴れ模様", - "hash" : "6a0ab809266438988129412e3b3c0a2f", - "id" : "1519202", - "profile" : { - "bust" : "87", - "height" : "156", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "絢爛華麗", - "alias_name_display" : "絢爛華麗", - "event" : [ { - "event_id" : 1205, - "event_name" : "目指せ優雅なお嬢様 アイドルチャレンジ" - } ], - "hash" : "f8e37de970056cb819e9b634f5ed3b50", - "id" : "1422501", - "profile" : { - "bust" : "87", - "height" : "156", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "絢爛華麗", - "alias_name_display" : "絢爛華麗", - "event" : [ { - "event_id" : 1205, - "event_name" : "目指せ優雅なお嬢様 アイドルチャレンジ" - } ], - "hash" : "b94d27f8bf6ebca0baf1ddc7f0b58cd1", - "id" : "1522502", - "profile" : { - "bust" : "87", - "height" : "156", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "トロピカルサマー", - "alias_name_display" : "トロピカルサマー", - "event" : [ { - "event_id" : 723, - "event_name" : "水着DEドリームLIVEフェスティバル" - } ], - "hash" : "0732aa4adbd00581535c13bcaf43b50c", - "id" : "1434401", - "profile" : { - "bust" : "87", - "height" : "156", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "トロピカルサマー", - "alias_name_display" : "トロピカルサマー", - "event" : [ { - "event_id" : 723, - "event_name" : "水着DEドリームLIVEフェスティバル" - } ], - "hash" : "85a78a16c15d828a821e3be821b3793c", - "id" : "1534402", - "profile" : { - "bust" : "87", - "height" : "156", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "セレブリティロード", - "alias_name_display" : "セレブリティロード", - "event" : [ { - "event_id" : 822, - "event_name" : "第22回アイドルLIVEロワイヤル" - } ], - "hash" : "4432b1bb442fe24e22c44557b583eab5", - "id" : "1439001", - "profile" : { - "bust" : "87", - "height" : "156", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "セレブリティロード", - "alias_name_display" : "セレブリティロード", - "event" : [ { - "event_id" : 822, - "event_name" : "第22回アイドルLIVEロワイヤル" - } ], - "hash" : "37f641a6738f8d5735db957a37b781ae", - "id" : "1539002", - "profile" : { - "bust" : "87", - "height" : "156", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - } ], - "idol_id" : 33, - "idol_name" : "西園寺琴歌", - "idol_name_display" : "西園寺琴歌", - "units" : [ { - "id" : "51", - "name" : "フィオレンティナ" - }, { - "id" : "96", - "name" : "チャレンジクッキング" - }, { - "id" : "134", - "name" : "ノーブルセレブリティ" - } ] -}, { - "aliases" : [ { - "hash" : "f6db9a4a1e364bf7da838ed3dce77f97", - "id" : "1200801", - "profile" : { - "bust" : "?", - "height" : "139", - "hip" : "?", - "waist" : "?", - "weight" : "30" - } - }, { - "hash" : "28407ac006ec510467814e7b512f0a06", - "id" : "1300802", - "profile" : { - "bust" : "?", - "height" : "139", - "hip" : "?", - "waist" : "?", - "weight" : "30" - } - }, { - "alias_name" : "夏休み", - "alias_name_display" : "夏休み", - "event" : [ { - "event_id" : 413, - "event_name" : "みんなのなつやすみ" - } ], - "hash" : "4708ed7e50952392ecc752f78a2fc494", - "id" : "1317402", - "profile" : { - "bust" : "?", - "height" : "139", - "hip" : "?", - "waist" : "?", - "weight" : "30" - } - }, { - "alias_name" : "笑顔の夏休み", - "alias_name_display" : "笑顔の夏休み", - "event" : [ { - "event_id" : 413, - "event_name" : "みんなのなつやすみ" - } ], - "hash" : "8c4a37be2aaa7ad189f5de329a9fd45b", - "id" : "1317502", - "profile" : { - "bust" : "?", - "height" : "139", - "hip" : "?", - "waist" : "?", - "weight" : "30" - } - }, { - "alias_name" : "ハイカラサクラ", - "alias_name_display" : "ハイカラサクラ", - "hash" : "be6b498b2324fa909e6ad58fa03e875e", - "id" : "1221001", - "profile" : { - "bust" : "?", - "height" : "139", - "hip" : "?", - "waist" : "?", - "weight" : "30" - } - }, { - "alias_name" : "ハイカラサクラ", - "alias_name_display" : "ハイカラサクラ", - "hash" : "bcc92a7d693443ae50353418e9f01e87", - "id" : "1321002", - "profile" : { - "bust" : "?", - "height" : "139", - "hip" : "?", - "waist" : "?", - "weight" : "30" - } - }, { - "alias_name" : "だらだら妖精", - "alias_name_display" : "だらだら妖精", - "hash" : "fa5391c4ffc5f3aaaab8f4be52e4ede2", - "id" : "1400801", - "profile" : { - "bust" : "?", - "height" : "139", - "hip" : "?", - "waist" : "?", - "weight" : "30" - } - }, { - "alias_name" : "だらだら妖精", - "alias_name_display" : "だらだら妖精", - "hash" : "06bf3b4fc27d472d11c5735d4bf1008c", - "id" : "1500802", - "profile" : { - "bust" : "?", - "height" : "139", - "hip" : "?", - "waist" : "?", - "weight" : "30" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "f67ab6bb27463ff30c1bf3eb9e30c205", - "id" : "1401601", - "profile" : { - "bust" : "?", - "height" : "139", - "hip" : "?", - "waist" : "?", - "weight" : "30" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "0749a5f548083353b1c06f7a71ea2796", - "id" : "1501602", - "profile" : { - "bust" : "?", - "height" : "139", - "hip" : "?", - "waist" : "?", - "weight" : "30" - } - }, { - "alias_name" : "ハロウィンぷちデビル", - "alias_name_display" : "ハロウィンぷちデビル", - "hash" : "d48d11a6d14755a40c497076b2010f6e", - "id" : "1403001", - "profile" : { - "bust" : "?", - "height" : "139", - "hip" : "?", - "waist" : "?", - "weight" : "30" - } - }, { - "alias_name" : "ハロウィンぷちデビル", - "alias_name_display" : "ハロウィンぷちデビル", - "hash" : "68be112533136c5b5838059c76802622", - "id" : "1503002", - "profile" : { - "bust" : "?", - "height" : "139", - "hip" : "?", - "waist" : "?", - "weight" : "30" - } - }, { - "alias_name" : "だだっ子お姫さま", - "alias_name_display" : "だだっ子お姫さま", - "hash" : "9e3d3bf199e1b48a4f973abcd484d078", - "id" : "1405901", - "profile" : { - "bust" : "?", - "height" : "139", - "hip" : "?", - "waist" : "?", - "weight" : "30" - } - }, { - "alias_name" : "だだっ子お姫さま", - "alias_name_display" : "だだっ子お姫さま", - "hash" : "2519a9de93e6cf2e5fee9e4cb9776afe", - "id" : "1505902", - "profile" : { - "bust" : "?", - "height" : "139", - "hip" : "?", - "waist" : "?", - "weight" : "30" - } - }, { - "alias_name" : "新春の甘姫", - "alias_name_display" : "新春の甘姫", - "hash" : "fda6831b48d56bb489de02a54b6e5c1e", - "id" : "1411401", - "profile" : { - "bust" : "?", - "height" : "139", - "hip" : "?", - "waist" : "?", - "weight" : "30" - } - }, { - "alias_name" : "新春の甘姫", - "alias_name_display" : "新春の甘姫", - "hash" : "bc7ab362d3fa9c3bbb60bad0f61efded", - "id" : "1511402", - "profile" : { - "bust" : "?", - "height" : "139", - "hip" : "?", - "waist" : "?", - "weight" : "30" - } - }, { - "alias_name" : "ワンダフルマジック", - "alias_name_display" : "ワンダフルマジック", - "hash" : "451734e83549281289ac3b275f16855c", - "id" : "1413201", - "profile" : { - "bust" : "?", - "height" : "139", - "hip" : "?", - "waist" : "?", - "weight" : "30" - } - }, { - "alias_name" : "ワンダフルマジック", - "alias_name_display" : "ワンダフルマジック", - "hash" : "f86d864ff653884e26e6f2c63457bb11", - "id" : "1513202", - "profile" : { - "bust" : "?", - "height" : "139", - "hip" : "?", - "waist" : "?", - "weight" : "30" - } - }, { - "alias_name" : "杏の夏休み", - "alias_name_display" : "杏の夏休み", - "event" : [ { - "event_id" : 413, - "event_name" : "みんなのなつやすみ" - } ], - "hash" : "2141fdb8ac6c65306f07450a0b6e4690", - "id" : "1415901", - "profile" : { - "bust" : "?", - "height" : "139", - "hip" : "?", - "waist" : "?", - "weight" : "30" - } - }, { - "alias_name" : "杏の夏休み", - "alias_name_display" : "杏の夏休み", - "event" : [ { - "event_id" : 413, - "event_name" : "みんなのなつやすみ" - } ], - "hash" : "8239f7fd13b7716ec6bce3eff0de15cf", - "id" : "1515902", - "profile" : { - "bust" : "?", - "height" : "139", - "hip" : "?", - "waist" : "?", - "weight" : "30" - } - }, { - "alias_name" : "ノーアイドル・ノーライフ", - "alias_name_display" : "ノーアイドル・ノーライフ", - "hash" : "fb27330f9cd9285f01e38151db642b5b", - "id" : "1518802", - "profile" : { - "bust" : "?", - "height" : "139", - "hip" : "?", - "waist" : "?", - "weight" : "30" - } - }, { - "alias_name" : "G4U!", - "alias_name_display" : "G4U!", - "hash" : "c49fa50c14b052775646fe00e1bf7faf", - "id" : "1525902", - "profile" : { - "bust" : "?", - "height" : "139", - "hip" : "?", - "waist" : "?", - "weight" : "30" - } - }, { - "alias_name" : "キャンディアイランド", - "alias_name_display" : "キャンディアイランド", - "hash" : "f3b18751e845843846fc93062cc3409a", - "id" : "1526802", - "profile" : { - "bust" : "?", - "height" : "139", - "hip" : "?", - "waist" : "?", - "weight" : "30" - } - }, { - "alias_name" : "わがままサンタ", - "alias_name_display" : "わがままサンタ", - "hash" : "b565fc1857e5773d5aa49d06a90fa4d2", - "id" : "1429501", - "profile" : { - "bust" : "?", - "height" : "139", - "hip" : "?", - "waist" : "?", - "weight" : "30" - } - }, { - "alias_name" : "わがままサンタ", - "alias_name_display" : "わがままサンタ", - "hash" : "333da524bde405e4ce1612183eb8971b", - "id" : "1529502", - "profile" : { - "bust" : "?", - "height" : "139", - "hip" : "?", - "waist" : "?", - "weight" : "30" - } - }, { - "alias_name" : "ハッピーライフワーク", - "alias_name_display" : "ハッピーライフワーク", - "hash" : "7363848059cb366197a23423e4b50718", - "id" : "1432901", - "profile" : { - "bust" : "?", - "height" : "139", - "hip" : "?", - "waist" : "?", - "weight" : "30" - } - }, { - "alias_name" : "ハッピーライフワーク", - "alias_name_display" : "ハッピーライフワーク", - "hash" : "f3146fec776d68a022b7424198d733df", - "id" : "1532902", - "profile" : { - "bust" : "?", - "height" : "139", - "hip" : "?", - "waist" : "?", - "weight" : "30" - } - }, { - "alias_name" : "あんずのきもち", - "alias_name_display" : "あんずのきもち", - "hash" : "29daabf3b7a002ea14915a6655fd080b", - "id" : "1438201", - "profile" : { - "bust" : "?", - "height" : "139", - "hip" : "?", - "waist" : "?", - "weight" : "30" - } - }, { - "alias_name" : "あんずのきもち", - "alias_name_display" : "あんずのきもち", - "hash" : "458454502049072b7c4f264362088614", - "id" : "1538202", - "profile" : { - "bust" : "?", - "height" : "139", - "hip" : "?", - "waist" : "?", - "weight" : "30" - } - } ], - "idol_id" : 34, - "idol_name" : "双葉杏", - "idol_name_display" : "双葉杏", - "units" : [ { - "id" : "76", - "name" : "HappyHappyTwin" - }, { - "id" : "137", - "name" : "CANDY ISLAND" - }, { - "id" : "158", - "name" : "ハイカラサクラ" - }, { - "id" : "186", - "name" : "LittlePOPS" - }, { - "id" : "195", - "name" : "C5" - }, { - "id" : "213", - "name" : "CINDERELLA PROJECT" - } ] -}, { - "aliases" : [ { - "hash" : "0b9a4389717199d57e7001d411c67791", - "id" : "1200901", - "profile" : { - "bust" : "82", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "41" - } - }, { - "hash" : "07c7b962d538e859602c9c6859faf8fe", - "id" : "1300902", - "profile" : { - "bust" : "82", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "41" - } - }, { - "alias_name" : "制服コレクション", - "alias_name_display" : "制服コレクション", - "hash" : "84be1e67e057d843bd0eb46f1540d18c", - "id" : "1203801", - "profile" : { - "bust" : "82", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "41" - } - }, { - "alias_name" : "制服コレクション", - "alias_name_display" : "制服コレクション", - "hash" : "753750c2b678c8617ce06d6ca935b48c", - "id" : "1303802", - "profile" : { - "bust" : "82", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "41" - } - }, { - "alias_name" : "トキメキバレンタイン", - "alias_name_display" : "トキメキバレンタイン", - "hash" : "5c830b15548cf9f8c0b706feb765dc48", - "id" : "1214601", - "profile" : { - "bust" : "82", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "41" - } - }, { - "alias_name" : "トキメキバレンタイン", - "alias_name_display" : "トキメキバレンタイン", - "hash" : "314b709e14f033b561333be1667c2a88", - "id" : "1314602", - "profile" : { - "bust" : "82", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "41" - } - }, { - "alias_name" : "ブシドーナデシコ", - "alias_name_display" : "ブシドーナデシコ", - "hash" : "258c7d9292272921ae3731d3ffe239d9", - "id" : "1218201", - "profile" : { - "bust" : "82", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "41" - } - }, { - "alias_name" : "ブシドーナデシコ", - "alias_name_display" : "ブシドーナデシコ", - "hash" : "e8fda8efaad9a349b6a7071d0e10e0b4", - "id" : "1318202", - "profile" : { - "bust" : "82", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "41" - } - }, { - "alias_name" : "ガーリースタイル", - "alias_name_display" : "ガーリースタイル", - "hash" : "c388718bcf729ef026da145417f86ac3", - "id" : "1224601", - "profile" : { - "bust" : "82", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "41" - } - }, { - "alias_name" : "ガーリースタイル", - "alias_name_display" : "ガーリースタイル", - "hash" : "f7a27f37ed56823171d7ec434280b94a", - "id" : "1324602", - "profile" : { - "bust" : "82", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "41" - } - }, { - "alias_name" : "ウェディングセレモニー", - "alias_name_display" : "ウェディングセレモニー", - "hash" : "70371c6e3790ad4e7a6aa6a3d835313a", - "id" : "1228401", - "profile" : { - "bust" : "82", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "41" - } - }, { - "alias_name" : "ウェディングセレモニー", - "alias_name_display" : "ウェディングセレモニー", - "hash" : "645f9c84d5e3470979cb9ae80078cfba", - "id" : "1328402", - "profile" : { - "bust" : "82", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "41" - } - }, { - "alias_name" : "繚乱の舞姫", - "alias_name_display" : "繚乱の舞姫", - "event" : [ { - "event_id" : 501, - "event_name" : "アイドルLIVEツアーinUSA" - } ], - "hash" : "0d69d20741d3e2ded57afe1265e01c1b", - "id" : "1403701", - "profile" : { - "bust" : "82", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "41" - } - }, { - "alias_name" : "繚乱の舞姫", - "alias_name_display" : "繚乱の舞姫", - "event" : [ { - "event_id" : 501, - "event_name" : "アイドルLIVEツアーinUSA" - } ], - "hash" : "658f3b5d8a57402d73f6f5b8fbf98179", - "id" : "1503702", - "profile" : { - "bust" : "82", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "41" - } - }, { - "alias_name" : "ハートフェルトパーティー", - "alias_name_display" : "ハートフェルトパーティー", - "event" : [ { - "event_id" : "011", - "event_name" : "第11回プロダクションマッチフェスティバル" - } ], - "hash" : "3e2f37c00261808dcbf8415535d34084", - "id" : "1407701", - "profile" : { - "bust" : "82", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "41" - } - }, { - "alias_name" : "ハートフェルトパーティー", - "alias_name_display" : "ハートフェルトパーティー", - "event" : [ { - "event_id" : "011", - "event_name" : "第11回プロダクションマッチフェスティバル" - } ], - "hash" : "25757551fc8ff326f8b928b50228303c", - "id" : "1507702", - "profile" : { - "bust" : "82", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "41" - } - }, { - "alias_name" : "幸福娘々", - "alias_name_display" : "幸福娘々", - "event" : [ { - "event_id" : 711, - "event_name" : "福は内DEドリームLIVEフェスティバル" - } ], - "hash" : "bdccb733796bcc6f371daf922723613a", - "id" : "1421801", - "profile" : { - "bust" : "82", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "41" - } - }, { - "alias_name" : "幸福娘々", - "alias_name_display" : "幸福娘々", - "event" : [ { - "event_id" : 711, - "event_name" : "福は内DEドリームLIVEフェスティバル" - } ], - "hash" : "3540dfd706534f58264d1b479f3e8344", - "id" : "1521802", - "profile" : { - "bust" : "82", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "41" - } - }, { - "alias_name" : "玲瓏水晶", - "alias_name_display" : "玲瓏水晶", - "event" : [ { - "event_id" : 812, - "event_name" : "第12回アイドルLIVEロワイヤル" - } ], - "hash" : "4f20573d3dff91b7701a154fc841e1cc", - "id" : "1424501", - "profile" : { - "bust" : "82", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "41" - } - }, { - "alias_name" : "玲瓏水晶", - "alias_name_display" : "玲瓏水晶", - "event" : [ { - "event_id" : 812, - "event_name" : "第12回アイドルLIVEロワイヤル" - } ], - "hash" : "c46b6174a69648b148c8856a9991ee3b", - "id" : "1524502", - "profile" : { - "bust" : "82", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "41" - } - }, { - "alias_name" : "加油チアー", - "alias_name_display" : "加油チアー", - "event" : [ { - "event_id" : 1510, - "event_name" : "チーム対抗トークバトルショー オールスターSP" - } ], - "hash" : "ec67c8c8a52a99a464d17895c38bacb0", - "id" : "1437401", - "profile" : { - "bust" : "82", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "41" - } - }, { - "alias_name" : "加油チアー", - "alias_name_display" : "加油チアー", - "event" : [ { - "event_id" : 1510, - "event_name" : "チーム対抗トークバトルショー オールスターSP" - } ], - "hash" : "6f2cef2655f476d2f3f6ea80d8f481ec", - "id" : "1537402", - "profile" : { - "bust" : "82", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "41" - } - } ], - "idol_id" : 35, - "idol_name" : "楊菲菲", - "idol_name_display" : "楊菲菲", - "units" : [ { - "id" : "26", - "name" : "スクールガールフレンズ" - }, { - "id" : "178", - "name" : "からぱれ" - } ] -}, { - "aliases" : [ { - "hash" : "4efc876705241a31f7ecf57ae3dc8ef4", - "id" : "1201001", - "profile" : { - "bust" : "80", - "height" : "145", - "hip" : "78", - "waist" : "55", - "weight" : "40" - } - }, { - "hash" : "fa6d973aa7f7b480fa96338ffecc9ed9", - "id" : "1301002", - "profile" : { - "bust" : "80", - "height" : "145", - "hip" : "78", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "桜祭り", - "alias_name_display" : "桜祭り", - "event" : [ { - "event_id" : 406, - "event_name" : "アイドルプロデュース 春の桜祭り編" - } ], - "hash" : "963b05e86daf038003b417060a1646ed", - "id" : "1208801", - "profile" : { - "bust" : "80", - "height" : "145", - "hip" : "78", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "桜祭り", - "alias_name_display" : "桜祭り", - "event" : [ { - "event_id" : 406, - "event_name" : "アイドルプロデュース 春の桜祭り編" - } ], - "hash" : "72e2b4dade433fec680531a9839da725", - "id" : "1308802", - "profile" : { - "bust" : "80", - "height" : "145", - "hip" : "78", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "桜祭りスマイル", - "alias_name_display" : "桜祭りスマイル", - "event" : [ { - "event_id" : 406, - "event_name" : "アイドルプロデュース 春の桜祭り編" - } ], - "hash" : "55689885ba0c5749221b56330494a77a", - "id" : "1208901", - "profile" : { - "bust" : "80", - "height" : "145", - "hip" : "78", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "桜祭りスマイル", - "alias_name_display" : "桜祭りスマイル", - "event" : [ { - "event_id" : 406, - "event_name" : "アイドルプロデュース 春の桜祭り編" - } ], - "hash" : "f0514789e4b35f9e8d4086e85bfa43ed", - "id" : "1308902", - "profile" : { - "bust" : "80", - "height" : "145", - "hip" : "78", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "フレンズ大作戦", - "alias_name_display" : "フレンズ大作戦", - "hash" : "096928f93993001378e0a9dfa0e84d77", - "id" : "1216901", - "profile" : { - "bust" : "80", - "height" : "145", - "hip" : "78", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "フレンズ大作戦", - "alias_name_display" : "フレンズ大作戦", - "hash" : "0574e12bd0b603f118f7961ba4c3e72c", - "id" : "1316902", - "profile" : { - "bust" : "80", - "height" : "145", - "hip" : "78", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "サマーバケーション", - "alias_name_display" : "サマーバケーション", - "hash" : "5972a0d0eacd1baf011aaead666663fa", - "id" : "1222901", - "profile" : { - "bust" : "80", - "height" : "145", - "hip" : "78", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "サマーバケーション", - "alias_name_display" : "サマーバケーション", - "hash" : "fd84cd6a9120f8ffcafa17c834e6d421", - "id" : "1322902", - "profile" : { - "bust" : "80", - "height" : "145", - "hip" : "78", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "秋の学園祭", - "alias_name_display" : "秋の学園祭", - "hash" : "72271817bbcfa730bf3454c26f94eaff", - "id" : "1230101", - "profile" : { - "bust" : "80", - "height" : "145", - "hip" : "78", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "秋の学園祭", - "alias_name_display" : "秋の学園祭", - "hash" : "ea55478abc68ac42807e04ff2164cabe", - "id" : "1330102", - "profile" : { - "bust" : "80", - "height" : "145", - "hip" : "78", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "まごころメイド", - "alias_name_display" : "まごころメイド", - "hash" : "24bcddb9bcf4f50c23e64b2657329db3", - "id" : "1233001", - "profile" : { - "bust" : "80", - "height" : "145", - "hip" : "78", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "まごころメイド", - "alias_name_display" : "まごころメイド", - "hash" : "4dd815b7097a2487a982d3d071b570ab", - "id" : "1333002", - "profile" : { - "bust" : "80", - "height" : "145", - "hip" : "78", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "艶娘大作戦", - "alias_name_display" : "艶娘大作戦", - "event" : [ { - "event_id" : 201, - "event_name" : "アイドルサバイバル" - } ], - "hash" : "46378cb4d0fffad00600ba63d8a2d183", - "id" : "1400701", - "profile" : { - "bust" : "80", - "height" : "145", - "hip" : "78", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "艶娘大作戦", - "alias_name_display" : "艶娘大作戦", - "event" : [ { - "event_id" : 201, - "event_name" : "アイドルサバイバル" - } ], - "hash" : "7e6f804d5a9f4f886b637c99669b2ee0", - "id" : "1500702", - "profile" : { - "bust" : "80", - "height" : "145", - "hip" : "78", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "湯けむり大作戦", - "alias_name_display" : "湯けむり大作戦", - "hash" : "0e28275081099ed145f74b056ec0e813", - "id" : "1403501", - "profile" : { - "bust" : "80", - "height" : "145", - "hip" : "78", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "湯けむり大作戦", - "alias_name_display" : "湯けむり大作戦", - "hash" : "2b2ccaa519a19a25d519eb2b35aac5a1", - "id" : "1503502", - "profile" : { - "bust" : "80", - "height" : "145", - "hip" : "78", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "メルヘン大作戦", - "alias_name_display" : "メルヘン大作戦", - "hash" : "cebea77bf64e2434c3ecafd915d2d8d2", - "id" : "1408501", - "profile" : { - "bust" : "80", - "height" : "145", - "hip" : "78", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "メルヘン大作戦", - "alias_name_display" : "メルヘン大作戦", - "hash" : "e0d8ee3ba65f7a1db58ab820537d8665", - "id" : "1508502", - "profile" : { - "bust" : "80", - "height" : "145", - "hip" : "78", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "ロワイヤル・スクエア", - "alias_name_display" : "ロワイヤル・スクエア", - "event" : [ { - "event_id" : 809, - "event_name" : "第9回アイドルLIVEロワイヤル" - } ], - "hash" : "dbea89c47dd5b612f5c1d0a802c77d19", - "id" : "1421301", - "profile" : { - "bust" : "80", - "height" : "145", - "hip" : "78", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "ロワイヤル・スクエア", - "alias_name_display" : "ロワイヤル・スクエア", - "event" : [ { - "event_id" : 809, - "event_name" : "第9回アイドルLIVEロワイヤル" - } ], - "hash" : "5c926c00a2911519dcdaec1349c4297f", - "id" : "1521302", - "profile" : { - "bust" : "80", - "height" : "145", - "hip" : "78", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "チャイナ大作戦", - "alias_name_display" : "チャイナ大作戦", - "hash" : "f7a21d6187b06fa18ed0bf215310a7cb", - "id" : "1432501", - "profile" : { - "bust" : "80", - "height" : "145", - "hip" : "78", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "チャイナ大作戦", - "alias_name_display" : "チャイナ大作戦", - "hash" : "cf166d5c57c0446980b7393d66318f22", - "id" : "1532502", - "profile" : { - "bust" : "80", - "height" : "145", - "hip" : "78", - "waist" : "55", - "weight" : "40" - } - } ], - "idol_id" : 36, - "idol_name" : "桃井あずき", - "idol_name_display" : "桃井あずき", - "units" : [ { - "id" : "88", - "name" : "桜花小町" - }, { - "id" : "163", - "name" : "フリルドスクエア" - } ] -}, { - "aliases" : [ { - "hash" : "e25bfc4f11de8a6ae9c2039c90c21348", - "id" : "1201101", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "hash" : "fe2ffdada9697df45b8967e875f05fac", - "id" : "1301102", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "UKスタイル", - "alias_name_display" : "UKスタイル", - "event" : [ { - "event_id" : 502, - "event_name" : "アイドルLIVEツアーinイギリス" - } ], - "hash" : "52d8710dc5cde4cdcef8c3191012e6d6", - "id" : "1207501", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "UKスタイル", - "alias_name_display" : "UKスタイル", - "event" : [ { - "event_id" : 502, - "event_name" : "アイドルLIVEツアーinイギリス" - } ], - "hash" : "c9660e96a053c8c20baf961e2b8c3987", - "id" : "1307502", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "優しい旋律", - "alias_name_display" : "優しい旋律", - "event" : [ { - "event_id" : 507, - "event_name" : "LIVEツアーカーニバルinドイツ" - } ], - "hash" : "3ba4b6c440bc9865e3ae92e6e698008e", - "id" : "1211801", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "優しい旋律", - "alias_name_display" : "優しい旋律", - "event" : [ { - "event_id" : 507, - "event_name" : "LIVEツアーカーニバルinドイツ" - } ], - "hash" : "bc953b2f0ec510c22eac406cf9bf3443", - "id" : "1311802", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ロックI.C", - "alias_name_display" : "ロックI.C", - "event" : [ { - "event_id" : 1202, - "event_name" : "目指せロックスター アイドルチャレンジ" - } ], - "hash" : "6522c3fb23ccf563aad50deebcab512b", - "id" : "1317602", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "さわやかスポーツ", - "alias_name_display" : "さわやかスポーツ", - "hash" : "30ac0cfd82daa33c8a661016a0009c90", - "id" : "1221601", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "さわやかスポーツ", - "alias_name_display" : "さわやかスポーツ", - "hash" : "118b941b346b356e9a0dddd100b73dcb", - "id" : "1321602", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ヘルシーリフレッシュ", - "alias_name_display" : "ヘルシーリフレッシュ", - "hash" : "291302f8800040930835be5be87a247e", - "id" : "1228601", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ヘルシーリフレッシュ", - "alias_name_display" : "ヘルシーリフレッシュ", - "hash" : "f8a4150602d2e7ae3ee4e94e40d99383", - "id" : "1328602", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ウィンターリゾートビーチ", - "alias_name_display" : "ウィンターリゾートビーチ", - "hash" : "af63524aed4f0e699b1de4eb7eba4b62", - "id" : "1231301", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ウィンターリゾートビーチ", - "alias_name_display" : "ウィンターリゾートビーチ", - "hash" : "9ff0c7e86bb6701f7bc022dccc35a9a1", - "id" : "1331302", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "小悪魔お嬢様", - "alias_name_display" : "小悪魔お嬢様", - "hash" : "ee49eaecc77b2a1dfaeacd791c5aa02e", - "id" : "1406501", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "小悪魔お嬢様", - "alias_name_display" : "小悪魔お嬢様", - "hash" : "f065a7f51f813216fa98deb02e1b6558", - "id" : "1506502", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "お嬢様の一幕", - "alias_name_display" : "お嬢様の一幕", - "event" : [ { - "event_id" : 705, - "event_name" : "第5回ドリームLIVEフェスティバル" - } ], - "hash" : "cc0bc0563db4d31f94553bec36f3ca30", - "id" : "1412101", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "お嬢様の一幕", - "alias_name_display" : "お嬢様の一幕", - "event" : [ { - "event_id" : 705, - "event_name" : "第5回ドリームLIVEフェスティバル" - } ], - "hash" : "b5c0174f4edd5af240e21e6da73fefa8", - "id" : "1512102", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ガールズロッカー", - "alias_name_display" : "ガールズロッカー", - "event" : [ { - "event_id" : 1202, - "event_name" : "目指せロックスター アイドルチャレンジ" - } ], - "hash" : "8f572e0b5bd2cde69ae199dfffb951d4", - "id" : "1417101", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ガールズロッカー", - "alias_name_display" : "ガールズロッカー", - "event" : [ { - "event_id" : 1202, - "event_name" : "目指せロックスター アイドルチャレンジ" - } ], - "hash" : "7be787dc8fe32a61130cfa876ac1c6e9", - "id" : "1517102", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ガールズロッカー・S", - "alias_name_display" : "ガールズロッカー・S", - "event" : [ { - "event_id" : 1202, - "event_name" : "目指せロックスター アイドルチャレンジ" - } ], - "hash" : "47d6db9899b8a6573a7c81e8db4fec3a", - "id" : "1417201", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ガールズロッカー・S", - "alias_name_display" : "ガールズロッカー・S", - "event" : [ { - "event_id" : 1202, - "event_name" : "目指せロックスター アイドルチャレンジ" - } ], - "hash" : "9a5fd2fbdb9c27b091d92a84cef6463c", - "id" : "1517202", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "リズムアップ", - "alias_name_display" : "リズムアップ", - "event" : [ { - "event_id" : 1404, - "event_name" : "第4回ぷちデレラコレクション" - } ], - "hash" : "8a224c1fb1faaf77041d8087dbd76710", - "id" : "1429001", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "リズムアップ", - "alias_name_display" : "リズムアップ", - "event" : [ { - "event_id" : 1404, - "event_name" : "第4回ぷちデレラコレクション" - } ], - "hash" : "a27419ca801cfd72eb2a724f82cdaf55", - "id" : "1529002", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - } ], - "idol_id" : 37, - "idol_name" : "涼宮星花", - "idol_name_display" : "涼宮星花", - "units" : [ { - "id" : "121", - "name" : "ヘルシーサバイブ" - }, { - "id" : "134", - "name" : "ノーブルセレブリティ" - }, { - "id" : "169", - "name" : "FOUR PIECE" - }, { - "id" : "170", - "name" : "UKスタイル" - } ] -}, { - "aliases" : [ { - "hash" : "7c175ee387814c3af476068126e9a693", - "id" : "1201201", - "profile" : { - "bust" : "86", - "height" : "153", - "hip" : "82", - "waist" : "56", - "weight" : "44" - } - }, { - "hash" : "8063038338477f74dbd692f75dadb42b", - "id" : "1301202", - "profile" : { - "bust" : "86", - "height" : "153", - "hip" : "82", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "エレガントレッド", - "alias_name_display" : "エレガントレッド", - "hash" : "caed99715be00834924660ef829d1828", - "id" : "1206901", - "profile" : { - "bust" : "86", - "height" : "153", - "hip" : "82", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "エレガントレッド", - "alias_name_display" : "エレガントレッド", - "hash" : "c0ff3b5b0c1a27a9c588a523004f6289", - "id" : "1306902", - "profile" : { - "bust" : "86", - "height" : "153", - "hip" : "82", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "ピンキービキニ", - "alias_name_display" : "ピンキービキニ", - "hash" : "9753b636f0ca1066fd101e5b4df7c022", - "id" : "1211301", - "profile" : { - "bust" : "86", - "height" : "153", - "hip" : "82", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "ピンキービキニ", - "alias_name_display" : "ピンキービキニ", - "hash" : "6b0b2de1e6e4ef2116b183803d25c17d", - "id" : "1311302", - "profile" : { - "bust" : "86", - "height" : "153", - "hip" : "82", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "セレクトメイド", - "alias_name_display" : "セレクトメイド", - "hash" : "bd4c00d4b8ad3eed06511322b751bce0", - "id" : "1215001", - "profile" : { - "bust" : "86", - "height" : "153", - "hip" : "82", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "セレクトメイド", - "alias_name_display" : "セレクトメイド", - "hash" : "de9f7f33793a7dd6c3165d79d5551938", - "id" : "1315002", - "profile" : { - "bust" : "86", - "height" : "153", - "hip" : "82", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "スウィートガール", - "alias_name_display" : "スウィートガール", - "event" : [ { - "event_id" : 715, - "event_name" : "第15回ドリームLIVEフェスティバル" - } ], - "hash" : "1ce85a1d9321855918cc353ccb64be18", - "id" : "1323302", - "profile" : { - "bust" : "86", - "height" : "153", - "hip" : "82", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "思い出の形", - "alias_name_display" : "思い出の形", - "hash" : "5f676b1eb5a5860c9286bb12f923a309", - "id" : "1227601", - "profile" : { - "bust" : "86", - "height" : "153", - "hip" : "82", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "思い出の形", - "alias_name_display" : "思い出の形", - "hash" : "d57de9624ff48a962e3a773d2886b8c0", - "id" : "1327602", - "profile" : { - "bust" : "86", - "height" : "153", - "hip" : "82", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "桜ガール", - "alias_name_display" : "桜ガール", - "event" : [ { - "event_id" : 104, - "event_name" : "桜舞う花見祭り" - } ], - "hash" : "a541e1700026bd6b0383659bd92c006b", - "id" : "1401201", - "profile" : { - "bust" : "86", - "height" : "153", - "hip" : "82", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "桜ガール", - "alias_name_display" : "桜ガール", - "event" : [ { - "event_id" : 104, - "event_name" : "桜舞う花見祭り" - } ], - "hash" : "afb1d70598ac915ff4ca6b31bc6073ab", - "id" : "1501202", - "profile" : { - "bust" : "86", - "height" : "153", - "hip" : "82", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "華・美・雅", - "alias_name_display" : "華・美・雅", - "event" : [ { - "event_id" : 1301, - "event_name" : "プロダクションマッチフェスティバルS" - } ], - "hash" : "1f1542c72d0aef515d3d40838783572a", - "id" : "1415801", - "profile" : { - "bust" : "86", - "height" : "153", - "hip" : "82", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "華・美・雅", - "alias_name_display" : "華・美・雅", - "event" : [ { - "event_id" : 1301, - "event_name" : "プロダクションマッチフェスティバルS" - } ], - "hash" : "7d15fa5eb270efe4d371bbb6f17dfde2", - "id" : "1515802", - "profile" : { - "bust" : "86", - "height" : "153", - "hip" : "82", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "スウィート・ロワイヤル", - "alias_name_display" : "スウィート・ロワイヤル", - "event" : [ { - "event_id" : 810, - "event_name" : "アイドルLIVEロワイヤル バレンタインSP" - } ], - "hash" : "0e32a0dafd89eb55cc8a31b0fcc6ef0b", - "id" : "1422301", - "profile" : { - "bust" : "86", - "height" : "153", - "hip" : "82", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "スウィート・ロワイヤル", - "alias_name_display" : "スウィート・ロワイヤル", - "event" : [ { - "event_id" : 810, - "event_name" : "アイドルLIVEロワイヤル バレンタインSP" - } ], - "hash" : "4ff3d0f9b5375da499d0d0f26c960500", - "id" : "1522302", - "profile" : { - "bust" : "86", - "height" : "153", - "hip" : "82", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "ミルキーミント", - "alias_name_display" : "ミルキーミント", - "event" : [ { - "event_id" : 1409, - "event_name" : "第9回ぷちデレラコレクション" - } ], - "hash" : "1ac01a720d642c8679ee7aaa60c5ef7d", - "id" : "1436101", - "profile" : { - "bust" : "86", - "height" : "153", - "hip" : "82", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "ミルキーミント", - "alias_name_display" : "ミルキーミント", - "event" : [ { - "event_id" : 1409, - "event_name" : "第9回ぷちデレラコレクション" - } ], - "hash" : "919e170503dee2d9ca5697d7903dcf56", - "id" : "1536102", - "profile" : { - "bust" : "86", - "height" : "153", - "hip" : "82", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "ルックアットミー", - "alias_name_display" : "ルックアットミー", - "hash" : "27d9297f2fa9b6bee8a4e1ecdf8f0a49", - "id" : "1439701", - "profile" : { - "bust" : "86", - "height" : "153", - "hip" : "82", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "ルックアットミー", - "alias_name_display" : "ルックアットミー", - "hash" : "ea6ea7bc7bb994ee3f40bf04f6126ec8", - "id" : "1539702", - "profile" : { - "bust" : "86", - "height" : "153", - "hip" : "82", - "waist" : "56", - "weight" : "44" - } - } ], - "idol_id" : 38, - "idol_name" : "月宮雅", - "idol_name_display" : "月宮雅", - "units" : [ { - "id" : "89", - "name" : "ガールズ・パワー" - } ] -}, { - "aliases" : [ { - "hash" : "fc97ba28d3a4f9ba0863b15761df3403", - "id" : "1201301", - "profile" : { - "bust" : "92", - "height" : "167", - "hip" : "84", - "waist" : "56", - "weight" : "48" - } - }, { - "hash" : "1a44a4f1c5ab36cbd0371578241348d7", - "id" : "1301302", - "profile" : { - "bust" : "92", - "height" : "167", - "hip" : "84", - "waist" : "56", - "weight" : "48" - } - }, { - "alias_name" : "ディーラーズハート", - "alias_name_display" : "ディーラーズハート", - "event" : [ { - "event_id" : "003", - "event_name" : "第3回プロダクションマッチフェスティバル" - } ], - "hash" : "9a344a0f7eacff98f66992e81351ccf4", - "id" : "1204801", - "profile" : { - "bust" : "92", - "height" : "167", - "hip" : "84", - "waist" : "56", - "weight" : "48" - } - }, { - "alias_name" : "ディーラーズハート", - "alias_name_display" : "ディーラーズハート", - "event" : [ { - "event_id" : "003", - "event_name" : "第3回プロダクションマッチフェスティバル" - } ], - "hash" : "28274ccdbc9075fbccd18ce5bb4e606c", - "id" : "1304802", - "profile" : { - "bust" : "92", - "height" : "167", - "hip" : "84", - "waist" : "56", - "weight" : "48" - } - }, { - "alias_name" : "湯けむり温泉", - "alias_name_display" : "湯けむり温泉", - "hash" : "1f613d36bd64b334cab8051894158168", - "id" : "1206301", - "profile" : { - "bust" : "92", - "height" : "167", - "hip" : "84", - "waist" : "56", - "weight" : "48" - } - }, { - "alias_name" : "湯けむり温泉", - "alias_name_display" : "湯けむり温泉", - "hash" : "30480e1245cdbe88f88165b669321b8a", - "id" : "1306302", - "profile" : { - "bust" : "92", - "height" : "167", - "hip" : "84", - "waist" : "56", - "weight" : "48" - } - }, { - "alias_name" : "ロワイヤルスタイル", - "alias_name_display" : "ロワイヤルスタイル", - "event" : [ { - "event_id" : 801, - "event_name" : "アイドルLIVEロワイヤル" - } ], - "hash" : "86fcf85ec26cd3626931ab92afdaad94", - "id" : "1212401", - "profile" : { - "bust" : "92", - "height" : "167", - "hip" : "84", - "waist" : "56", - "weight" : "48" - } - }, { - "alias_name" : "ロワイヤルスタイル", - "alias_name_display" : "ロワイヤルスタイル", - "event" : [ { - "event_id" : 801, - "event_name" : "アイドルLIVEロワイヤル" - } ], - "hash" : "a0e2019b4854b20b56dd58cd920c30f5", - "id" : "1312402", - "profile" : { - "bust" : "92", - "height" : "167", - "hip" : "84", - "waist" : "56", - "weight" : "48" - } - }, { - "alias_name" : "ビーチサイド", - "alias_name_display" : "ビーチサイド", - "hash" : "03496a2fbc355b045e66bab5430514bb", - "id" : "1217001", - "profile" : { - "bust" : "92", - "height" : "167", - "hip" : "84", - "waist" : "56", - "weight" : "48" - } - }, { - "alias_name" : "ビーチサイド", - "alias_name_display" : "ビーチサイド", - "hash" : "241884f39b4e56dcad17bc712b028f4b", - "id" : "1317002", - "profile" : { - "bust" : "92", - "height" : "167", - "hip" : "84", - "waist" : "56", - "weight" : "48" - } - }, { - "alias_name" : "ビター&スウィート", - "alias_name_display" : "ビター&スウィート", - "hash" : "dd939d75521e408a4185069f3168145e", - "id" : "1226101", - "profile" : { - "bust" : "92", - "height" : "167", - "hip" : "84", - "waist" : "56", - "weight" : "48" - } - }, { - "alias_name" : "ビター&スウィート", - "alias_name_display" : "ビター&スウィート", - "hash" : "4067febaae2008b50c289fbff62d0187", - "id" : "1326102", - "profile" : { - "bust" : "92", - "height" : "167", - "hip" : "84", - "waist" : "56", - "weight" : "48" - } - }, { - "alias_name" : "カインドスチーム", - "alias_name_display" : "カインドスチーム", - "event" : [ { - "event_id" : 727, - "event_name" : "第27回ドリームLIVEフェスティバル" - } ], - "hash" : "6dbeaec9fbbebd69811dc606b638cfb1", - "id" : "1231801", - "profile" : { - "bust" : "92", - "height" : "167", - "hip" : "84", - "waist" : "56", - "weight" : "48" - } - }, { - "alias_name" : "カインドスチーム", - "alias_name_display" : "カインドスチーム", - "event" : [ { - "event_id" : 727, - "event_name" : "第27回ドリームLIVEフェスティバル" - } ], - "hash" : "2a1eafa5944c41d04572380e89ea37c7", - "id" : "1331802", - "profile" : { - "bust" : "92", - "height" : "167", - "hip" : "84", - "waist" : "56", - "weight" : "48" - } - }, { - "alias_name" : "セクシーバニー", - "alias_name_display" : "セクシーバニー", - "event" : [ { - "event_id" : "008", - "event_name" : "第8回プロダクションマッチフェスティバル" - } ], - "hash" : "2cb9de945cba44c89e83966070671d50", - "id" : "1405601", - "profile" : { - "bust" : "92", - "height" : "167", - "hip" : "84", - "waist" : "56", - "weight" : "48" - } - }, { - "alias_name" : "セクシーバニー", - "alias_name_display" : "セクシーバニー", - "event" : [ { - "event_id" : "008", - "event_name" : "第8回プロダクションマッチフェスティバル" - } ], - "hash" : "472819ff358f1aca7a0521c1034b354b", - "id" : "1505602", - "profile" : { - "bust" : "92", - "height" : "167", - "hip" : "84", - "waist" : "56", - "weight" : "48" - } - }, { - "alias_name" : "ビューティーウィッチ", - "alias_name_display" : "ビューティーウィッチ", - "hash" : "232036d7ff6b8e1b9e458b312616f7a2", - "id" : "1420901", - "profile" : { - "bust" : "92", - "height" : "167", - "hip" : "84", - "waist" : "56", - "weight" : "48" - } - }, { - "alias_name" : "ビューティーウィッチ", - "alias_name_display" : "ビューティーウィッチ", - "hash" : "e71a7133899c8ed597bd85cabe1bec47", - "id" : "1520902", - "profile" : { - "bust" : "92", - "height" : "167", - "hip" : "84", - "waist" : "56", - "weight" : "48" - } - }, { - "alias_name" : "美しき挑発", - "alias_name_display" : "美しき挑発", - "event" : [ { - "event_id" : "023", - "event_name" : "第23回プロダクションマッチフェスティバル" - } ], - "hash" : "0c00b6d2d0c71c6582423064334de122", - "id" : "1427301", - "profile" : { - "bust" : "92", - "height" : "167", - "hip" : "84", - "waist" : "56", - "weight" : "48" - } - }, { - "alias_name" : "美しき挑発", - "alias_name_display" : "美しき挑発", - "event" : [ { - "event_id" : "023", - "event_name" : "第23回プロダクションマッチフェスティバル" - } ], - "hash" : "db3da083a2e7e999fad7983cd49e5127", - "id" : "1527302", - "profile" : { - "bust" : "92", - "height" : "167", - "hip" : "84", - "waist" : "56", - "weight" : "48" - } - }, { - "alias_name" : "牡丹に蝶", - "alias_name_display" : "牡丹に蝶", - "hash" : "864bcc62abdfd8c798e906bcd25c0e93", - "id" : "1434101", - "profile" : { - "bust" : "92", - "height" : "167", - "hip" : "84", - "waist" : "56", - "weight" : "48" - } - }, { - "alias_name" : "牡丹に蝶", - "alias_name_display" : "牡丹に蝶", - "hash" : "9cf74ba99862e8a7d52677bca5e48c3b", - "id" : "1534102", - "profile" : { - "bust" : "92", - "height" : "167", - "hip" : "84", - "waist" : "56", - "weight" : "48" - } - } ], - "idol_id" : 39, - "idol_name" : "兵藤レナ", - "idol_name_display" : "兵藤レナ", - "units" : [ { - "id" : "206", - "name" : "セクシーボンデージ" - }, { - "id" : "208", - "name" : "ロワイヤルスタイル" - } ] -}, { - "aliases" : [ { - "hash" : "3fed05567d232be4af746b2de681d024", - "id" : "1206401", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "79", - "waist" : "55", - "weight" : "43" - } - }, { - "hash" : "61a25ac7330f9ee3a9031a4d25655401", - "id" : "1306402", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "79", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "制服コレクション", - "alias_name_display" : "制服コレクション", - "hash" : "179872194da3a40845ce4bcd78966a52", - "id" : "1209001", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "79", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "制服コレクション", - "alias_name_display" : "制服コレクション", - "hash" : "8fd90fc1c4189e56096f2e69153854ec", - "id" : "1309002", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "79", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ハロウィンナイト", - "alias_name_display" : "ハロウィンナイト", - "hash" : "6caef3a534d1f4625f1d90b6f56e12d0", - "id" : "1212301", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "79", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ハロウィンナイト", - "alias_name_display" : "ハロウィンナイト", - "hash" : "83cf1238cba1adca0254e84311ea5e46", - "id" : "1312302", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "79", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ネイビーガール", - "alias_name_display" : "ネイビーガール", - "hash" : "43a8feff01bdd2d27e6a9b38ece36051", - "id" : "1217101", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "79", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ネイビーガール", - "alias_name_display" : "ネイビーガール", - "hash" : "9a15f28281366f1b094466f327122014", - "id" : "1317102", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "79", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ロワイヤルスタイルND", - "alias_name_display" : "ロワイヤルスタイルND", - "event" : [ { - "event_id" : 815, - "event_name" : "アイドルLIVEロワイヤル クリスマスSP" - } ], - "hash" : "17b23dc00a5f6df6c0a65406ba29b982", - "id" : "1225001", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "79", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ロワイヤルスタイルND", - "alias_name_display" : "ロワイヤルスタイルND", - "event" : [ { - "event_id" : 815, - "event_name" : "アイドルLIVEロワイヤル クリスマスSP" - } ], - "hash" : "01f0b8b40b28f7acc96f23d0fae17d0c", - "id" : "1325002", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "79", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "スクールプール", - "alias_name_display" : "スクールプール", - "hash" : "7bee54eb6e1aa1151ea8ebb7f5c2491b", - "id" : "1228701", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "79", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "スクールプール", - "alias_name_display" : "スクールプール", - "hash" : "a55fc181f4a8d7c2a8555a18b04ebbd4", - "id" : "1328702", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "79", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "洒落者レディ", - "alias_name_display" : "洒落者レディ", - "hash" : "0df2c7da9b7eee56871f4683852d63b8", - "id" : "1230901", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "79", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "洒落者レディ", - "alias_name_display" : "洒落者レディ", - "hash" : "e35375c6c987105d2a6235df452dc0c4", - "id" : "1330902", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "79", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "大傾奇娘", - "alias_name_display" : "大傾奇娘", - "event" : [ { - "event_id" : "014", - "event_name" : "第14回プロダクションマッチフェスティバル" - } ], - "hash" : "26b2a0c90723a9b074e65e4ecb2c937e", - "id" : "1411601", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "79", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "大傾奇娘", - "alias_name_display" : "大傾奇娘", - "event" : [ { - "event_id" : "014", - "event_name" : "第14回プロダクションマッチフェスティバル" - } ], - "hash" : "f04628745ca35b5896d03126fcdbed8d", - "id" : "1511602", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "79", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "天下御免☆ガール", - "alias_name_display" : "天下御免☆ガール", - "hash" : "1e02e3b87da7a70d8aa11609c3bbd95d", - "id" : "1424001", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "79", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "天下御免☆ガール", - "alias_name_display" : "天下御免☆ガール", - "hash" : "9392cd6501637b7e2d621e7459fc742f", - "id" : "1524002", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "79", - "waist" : "55", - "weight" : "43" - } - } ], - "idol_id" : 40, - "idol_name" : "丹羽仁美", - "idol_name_display" : "丹羽仁美", - "units" : [ { - "id" : "30", - "name" : "センゴク☆ランブ" - }, { - "id" : "156", - "name" : "センゴク☆華☆ランブ" - }, { - "id" : "161", - "name" : "ハロウィンナイト" - }, { - "id" : "210", - "name" : "ロワイヤルスタイルND" - } ] -}, { - "aliases" : [ { - "hash" : "6c298af445eea9e1b73482704eec4924", - "id" : "1201401", - "profile" : { - "bust" : "80", - "height" : "155", - "hip" : "83", - "waist" : "55", - "weight" : "43" - } - }, { - "hash" : "d312f7f0f9c305d7a15f822bf8d44705", - "id" : "1301402", - "profile" : { - "bust" : "80", - "height" : "155", - "hip" : "82", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "新春", - "alias_name_display" : "新春", - "event" : [ { - "event_id" : 102, - "event_name" : "アイドルおもちつき大会" - } ], - "hash" : "e280aa01f99069f3253b0c406eeaa233", - "id" : "1202201", - "profile" : { - "bust" : "80", - "height" : "155", - "hip" : "83", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "新春", - "alias_name_display" : "新春", - "event" : [ { - "event_id" : 102, - "event_name" : "アイドルおもちつき大会" - } ], - "hash" : "9fd5148925ca5f8523c6187a584da80c", - "id" : "1302202", - "profile" : { - "bust" : "80", - "height" : "155", - "hip" : "83", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "アニバーサリーピンク", - "alias_name_display" : "アニバーサリーピンク", - "event" : [ { - "event_id" : 403, - "event_name" : "アイドルプロデュース the 1st Anniversary" - } ], - "hash" : "e7c21fde6b9e0665f541deadd30cee5b", - "id" : "1206601", - "profile" : { - "bust" : "80", - "height" : "155", - "hip" : "82", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "アニバーサリーピンク", - "alias_name_display" : "アニバーサリーピンク", - "event" : [ { - "event_id" : 403, - "event_name" : "アイドルプロデュース the 1st Anniversary" - } ], - "hash" : "080b3fa1b8895f20a4462cba7ca55d44", - "id" : "1306602", - "profile" : { - "bust" : "80", - "height" : "155", - "hip" : "82", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "新春コレクション", - "alias_name_display" : "新春コレクション", - "hash" : "9602cd56a0d2dd6fb7c3aa2d911fb95c", - "id" : "1214001", - "profile" : { - "bust" : "80", - "height" : "155", - "hip" : "82", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "新春コレクション", - "alias_name_display" : "新春コレクション", - "hash" : "43c772ecc9cc0ac50c0cf5b8705da38a", - "id" : "1314002", - "profile" : { - "bust" : "80", - "height" : "155", - "hip" : "82", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "勇壮の槍騎士", - "alias_name_display" : "勇壮の槍騎士", - "event" : [ { - "event_id" : 516, - "event_name" : "幻想公演栄光のシュヴァリエ" - } ], - "hash" : "89745565c1ee9c10ebaa7adfbadde425", - "id" : "1219501", - "profile" : { - "bust" : "80", - "height" : "155", - "hip" : "82", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "勇壮の槍騎士", - "alias_name_display" : "勇壮の槍騎士", - "event" : [ { - "event_id" : 516, - "event_name" : "幻想公演栄光のシュヴァリエ" - } ], - "hash" : "6c2726aaf43a56940326e08fe6d8b098", - "id" : "1319502", - "profile" : { - "bust" : "80", - "height" : "155", - "hip" : "82", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "コレクションスタイル", - "alias_name_display" : "コレクションスタイル", - "event" : [ { - "event_id" : 1405, - "event_name" : "第5回ぷちデレラコレクション" - } ], - "hash" : "79a9a786007e9b69d544fcf709131652", - "id" : "1325902", - "profile" : { - "bust" : "80", - "height" : "155", - "hip" : "82", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "ニンジュツI.C", - "alias_name_display" : "ニンジュツI.C", - "event" : [ { - "event_id" : 1214, - "event_name" : "目指せくのいち アイドルチャレンジ" - } ], - "hash" : "b9d96c9cab89a83641b722cc05cc5559", - "id" : "1331502", - "profile" : { - "bust" : "80", - "height" : "155", - "hip" : "82", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "大器晩成", - "alias_name_display" : "大器晩成", - "event" : [ { - "event_id" : "002", - "event_name" : "第2回プロダクションマッチフェスティバル" - } ], - "hash" : "fb17067100ef5228c4de359c66c27336", - "id" : "1401701", - "profile" : { - "bust" : "80", - "height" : "155", - "hip" : "83", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "大器晩成", - "alias_name_display" : "大器晩成", - "event" : [ { - "event_id" : "002", - "event_name" : "第2回プロダクションマッチフェスティバル" - } ], - "hash" : "e276c868cb46d0753eb4162eb078acf1", - "id" : "1501702", - "profile" : { - "bust" : "80", - "height" : "155", - "hip" : "82", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "サンシャインビーチ", - "alias_name_display" : "サンシャインビーチ", - "event" : [ { - "event_id" : 506, - "event_name" : "アイドルLIVEツアーinハワイ" - } ], - "hash" : "0312fa19f6f938e7fe0f6125c9703e04", - "id" : "1408201", - "profile" : { - "bust" : "80", - "height" : "155", - "hip" : "82", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "サンシャインビーチ", - "alias_name_display" : "サンシャインビーチ", - "event" : [ { - "event_id" : 506, - "event_name" : "アイドルLIVEツアーinハワイ" - } ], - "hash" : "4c8ea91dd2c68daeb6caa2ef85d01325", - "id" : "1508202", - "profile" : { - "bust" : "80", - "height" : "155", - "hip" : "82", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "おてんば神楽", - "alias_name_display" : "おてんば神楽", - "hash" : "3188ae6a90fb6b6517c9a2a177c19be7", - "id" : "1415701", - "profile" : { - "bust" : "80", - "height" : "155", - "hip" : "82", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "おてんば神楽", - "alias_name_display" : "おてんば神楽", - "hash" : "e542dd24695b0c9853ff72cb182bd32a", - "id" : "1515702", - "profile" : { - "bust" : "80", - "height" : "155", - "hip" : "82", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "ぴかぴかガール", - "alias_name_display" : "ぴかぴかガール", - "hash" : "d0d75973eab499695ccec3682febd599", - "id" : "1426201", - "profile" : { - "bust" : "80", - "height" : "155", - "hip" : "82", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "ぴかぴかガール", - "alias_name_display" : "ぴかぴかガール", - "hash" : "74120ffd2553011dabfc8baa1c07cb54", - "id" : "1526202", - "profile" : { - "bust" : "80", - "height" : "155", - "hip" : "82", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "古都の花嫁", - "alias_name_display" : "古都の花嫁", - "hash" : "41f86f41f533b5dfd2c406298fd4bbd1", - "id" : "1433301", - "profile" : { - "bust" : "80", - "height" : "155", - "hip" : "82", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "古都の花嫁", - "alias_name_display" : "古都の花嫁", - "hash" : "2fe37f02176fe6b24e4ecec33318811d", - "id" : "1533302", - "profile" : { - "bust" : "80", - "height" : "155", - "hip" : "82", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "不屈のくのいち", - "alias_name_display" : "不屈のくのいち", - "event" : [ { - "event_id" : 1214, - "event_name" : "目指せくのいち アイドルチャレンジ" - } ], - "hash" : "eb61ed2c8f8e22bbd115f50600da6c6c", - "id" : "1437901", - "profile" : { - "bust" : "80", - "height" : "155", - "hip" : "82", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "不屈のくのいち", - "alias_name_display" : "不屈のくのいち", - "event" : [ { - "event_id" : 1214, - "event_name" : "目指せくのいち アイドルチャレンジ" - } ], - "hash" : "679389de74afb22434d01fce5723c3cb", - "id" : "1537902", - "profile" : { - "bust" : "80", - "height" : "155", - "hip" : "82", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "朗笑のくのいち", - "alias_name_display" : "朗笑のくのいち", - "event" : [ { - "event_id" : 1214, - "event_name" : "目指せくのいち アイドルチャレンジ" - } ], - "hash" : "aa1f7b77aac0449d2c04b32f6b2d72b6", - "id" : "1438001", - "profile" : { - "bust" : "80", - "height" : "155", - "hip" : "82", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "朗笑のくのいち", - "alias_name_display" : "朗笑のくのいち", - "event" : [ { - "event_id" : 1214, - "event_name" : "目指せくのいち アイドルチャレンジ" - } ], - "hash" : "d9be7d1d689f9e143ff27dd1063a0040", - "id" : "1538002", - "profile" : { - "bust" : "80", - "height" : "155", - "hip" : "82", - "waist" : "55", - "weight" : "42" - } - } ], - "idol_id" : 41, - "idol_name" : "道明寺歌鈴", - "idol_name_display" : "道明寺歌鈴", - "units" : [ { - "id" : "5", - "name" : "インディゴ・ベル" - }, { - "id" : "179", - "name" : "春霞" - } ] -}, { - "aliases" : [ { - "hash" : "73221b45dc3a76f73b08bb8854191273", - "id" : "1201501", - "profile" : { - "bust" : "74", - "height" : "145", - "hip" : "78", - "waist" : "54", - "weight" : "37" - } - }, { - "hash" : "a1dbdfc71c12beaaed6508a7569442ab", - "id" : "1301502", - "profile" : { - "bust" : "74", - "height" : "145", - "hip" : "78", - "waist" : "54", - "weight" : "37" - } - }, { - "alias_name" : "制服グリーン", - "alias_name_display" : "制服グリーン", - "hash" : "155ed2dec00ed07a45f8c784540cb149", - "id" : "1203101", - "profile" : { - "bust" : "74", - "height" : "145", - "hip" : "78", - "waist" : "54", - "weight" : "37" - } - }, { - "alias_name" : "制服ブラウン", - "alias_name_display" : "制服ブラウン", - "hash" : "d157ad4390a55281f9462b8b46ed45ef", - "id" : "1203102", - "profile" : { - "bust" : "74", - "height" : "145", - "hip" : "78", - "waist" : "54", - "weight" : "37" - } - }, { - "alias_name" : "制服ブラック", - "alias_name_display" : "制服ブラック", - "hash" : "35d33f8fd00c39daeef8513a854e44bf", - "id" : "1203103", - "profile" : { - "bust" : "74", - "height" : "145", - "hip" : "78", - "waist" : "54", - "weight" : "37" - } - }, { - "alias_name" : "制服ネイビー", - "alias_name_display" : "制服ネイビー", - "hash" : "167a430223c78828914bedf21a062497", - "id" : "1203104", - "profile" : { - "bust" : "74", - "height" : "145", - "hip" : "78", - "waist" : "54", - "weight" : "37" - } - }, { - "alias_name" : "ピンクダイヤモンド765", - "alias_name_display" : "ピンクダイヤモンド765", - "hash" : "32d74cb0a88ebc1f09461f43f3f96572", - "id" : "1303105", - "profile" : { - "bust" : "74", - "height" : "145", - "hip" : "78", - "waist" : "54", - "weight" : "37" - } - }, { - "alias_name" : "エバーグリーンリーブス", - "alias_name_display" : "エバーグリーンリーブス", - "hash" : "5087a9aa0d84d7a8f29201e635567523", - "id" : "1303106", - "profile" : { - "bust" : "74", - "height" : "145", - "hip" : "78", - "waist" : "54", - "weight" : "37" - } - }, { - "alias_name" : "ギルデッドマドモアゼル", - "alias_name_display" : "ギルデッドマドモアゼル", - "hash" : "a36bba235ac6ac42a80b30fa4bda8119", - "id" : "1303107", - "profile" : { - "bust" : "74", - "height" : "145", - "hip" : "78", - "waist" : "54", - "weight" : "37" - } - }, { - "alias_name" : "スカーレットスプライト", - "alias_name_display" : "スカーレットスプライト", - "hash" : "02405f18ba16f3b333f4de1c9d4860a7", - "id" : "1303108", - "profile" : { - "bust" : "74", - "height" : "145", - "hip" : "78", - "waist" : "54", - "weight" : "37" - } - }, { - "alias_name" : "スタイリッシュデニム", - "alias_name_display" : "スタイリッシュデニム", - "hash" : "732c5c98cdfdb6e0619317091537bc8f", - "id" : "1303109", - "profile" : { - "bust" : "74", - "height" : "145", - "hip" : "78", - "waist" : "54", - "weight" : "37" - } - }, { - "alias_name" : "元気120%", - "alias_name_display" : "元気120%", - "hash" : "d63c76c319fc691da462ea3644e08fac", - "id" : "1401010", - "profile" : { - "bust" : "74", - "height" : "145", - "hip" : "78", - "waist" : "54", - "weight" : "37" - } - }, { - "alias_name" : "元気120%", - "alias_name_display" : "元気120%", - "hash" : "0c964265c9e630ed4e9750660191acea", - "id" : "1501011", - "profile" : { - "bust" : "74", - "height" : "145", - "hip" : "78", - "waist" : "54", - "weight" : "37" - } - }, { - "alias_name" : "小さなお姉さん", - "alias_name_display" : "小さなお姉さん", - "hash" : "64c325a7f50f059665e36c3cc67d33ae", - "id" : "1403201", - "profile" : { - "bust" : "74", - "height" : "145", - "hip" : "78", - "waist" : "54", - "weight" : "37" - } - }, { - "alias_name" : "小さなお姉さん", - "alias_name_display" : "小さなお姉さん", - "hash" : "d0ea18fc5575dd86bc9e9657f0d720c3", - "id" : "1503202", - "profile" : { - "bust" : "74", - "height" : "145", - "hip" : "78", - "waist" : "54", - "weight" : "37" - } - }, { - "alias_name" : "オオカミガール", - "alias_name_display" : "オオカミガール", - "hash" : "404957c126156e54750231e4e58221ad", - "id" : "1505302", - "profile" : { - "bust" : "74", - "height" : "145", - "hip" : "78", - "waist" : "54", - "weight" : "37" - } - } ], - "idol_id" : 42, - "idol_name" : "高槻やよい", - "idol_name_display" : "高槻やよい" -}, { - "aliases" : [ { - "hash" : "7c3cc9c1c697ecc6b62dc2d5a835f534", - "id" : "1201601", - "profile" : { - "bust" : "75", - "height" : "159", - "hip" : "78", - "waist" : "57", - "weight" : "44" - } - }, { - "hash" : "ccf8b0fa90c6686cf061bc155458c771", - "id" : "1301602", - "profile" : { - "bust" : "75", - "height" : "159", - "hip" : "78", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "制服ベージュ", - "alias_name_display" : "制服ベージュ", - "hash" : "66f955d622985f1bd2d2dfeec8676619", - "id" : "1205401", - "profile" : { - "bust" : "75", - "height" : "159", - "hip" : "78", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "制服ブルー", - "alias_name_display" : "制服ブルー", - "hash" : "daa75ed58a88e9a32500dec7290798b0", - "id" : "1205402", - "profile" : { - "bust" : "75", - "height" : "159", - "hip" : "78", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "制服ブラック", - "alias_name_display" : "制服ブラック", - "hash" : "e9e704ca90a1625b045a6ee36fddb9c6", - "id" : "1205403", - "profile" : { - "bust" : "75", - "height" : "159", - "hip" : "78", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "制服ホワイト", - "alias_name_display" : "制服ホワイト", - "hash" : "77854d40d4d4fb3562a3fe90562fa361", - "id" : "1205404", - "profile" : { - "bust" : "75", - "height" : "159", - "hip" : "78", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "ピンクダイヤモンド765", - "alias_name_display" : "ピンクダイヤモンド765", - "hash" : "c7a3954ec5559612549fc074eef50514", - "id" : "1305405", - "profile" : { - "bust" : "75", - "height" : "159", - "hip" : "78", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "スカーレットスプライト", - "alias_name_display" : "スカーレットスプライト", - "hash" : "c4edddba0e55fd7db3c62f2adf327c3d", - "id" : "1305406", - "profile" : { - "bust" : "75", - "height" : "159", - "hip" : "78", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "パウダースノーホワイティ", - "alias_name_display" : "パウダースノーホワイティ", - "hash" : "aaba42a5b3189a77d67a4fc3c2c01744", - "id" : "1305407", - "profile" : { - "bust" : "75", - "height" : "159", - "hip" : "78", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "ギルデッドマドモアゼル", - "alias_name_display" : "ギルデッドマドモアゼル", - "hash" : "ce60d87b5d013cd6f4c2f1cbb330b402", - "id" : "1305408", - "profile" : { - "bust" : "75", - "height" : "159", - "hip" : "78", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "メイデンインブラック", - "alias_name_display" : "メイデンインブラック", - "hash" : "16ad0ffc22898e08cca59ba3dba7274b", - "id" : "1305409", - "profile" : { - "bust" : "75", - "height" : "159", - "hip" : "78", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "王子様な女子", - "alias_name_display" : "王子様な女子", - "hash" : "d13b3a791d8be0063fb81ab21724aaef", - "id" : "1400301", - "profile" : { - "bust" : "75", - "height" : "159", - "hip" : "78", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "王子様な女子", - "alias_name_display" : "王子様な女子", - "hash" : "b50b95609ded8046828f33f9cba3c875", - "id" : "1500302", - "profile" : { - "bust" : "75", - "height" : "159", - "hip" : "78", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "キューティープリンセス", - "alias_name_display" : "キューティープリンセス", - "hash" : "20c2b7d34506df953c0adfae8b0073d7", - "id" : "1402710", - "profile" : { - "bust" : "75", - "height" : "159", - "hip" : "78", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "キューティープリンセス", - "alias_name_display" : "キューティープリンセス", - "hash" : "d7496c4167acfdfd916f526a3a01f114", - "id" : "1502711", - "profile" : { - "bust" : "75", - "height" : "159", - "hip" : "78", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "チーム765エンジェルス", - "alias_name_display" : "チーム765エンジェルス", - "hash" : "2838e5d36d4e11a09fac86270dcf63a4", - "id" : "1508902", - "profile" : { - "bust" : "75", - "height" : "159", - "hip" : "78", - "waist" : "57", - "weight" : "44" - } - } ], - "idol_id" : 43, - "idol_name" : "菊地真", - "idol_name_display" : "菊地真" -}, { - "aliases" : [ { - "hash" : "f8f4c3be1b401f47318d440f2bcf9bec", - "id" : "1201701", - "profile" : { - "bust" : "83", - "height" : "152", - "hip" : "80", - "waist" : "56", - "weight" : "41" - } - }, { - "hash" : "bd13be7dd4e65b4b5aa07234c6e80c87", - "id" : "1301702", - "profile" : { - "bust" : "83", - "height" : "152", - "hip" : "80", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "沖縄元気っ娘", - "alias_name_display" : "沖縄元気っ娘", - "hash" : "c5e454cbcc691c9e7863eac4fe359e5d", - "id" : "1400201", - "profile" : { - "bust" : "83", - "height" : "152", - "hip" : "80", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "沖縄元気っ娘", - "alias_name_display" : "沖縄元気っ娘", - "hash" : "a23658ae02efa72867661794bccf1d28", - "id" : "1500202", - "profile" : { - "bust" : "83", - "height" : "152", - "hip" : "80", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "1stメモリアル", - "alias_name_display" : "1stメモリアル", - "hash" : "c5e1fe7ef2b387eb27a9adbb9d9dfa6c", - "id" : "1504202", - "profile" : { - "bust" : "83", - "height" : "152", - "hip" : "80", - "waist" : "56", - "weight" : "41" - } - } ], - "idol_id" : 44, - "idol_name" : "我那覇響", - "idol_name_display" : "我那覇響" -}, { - "aliases" : [ { - "hash" : "0b94e4097c16bce2c2579da0914234c5", - "id" : "1201801", - "profile" : { - "bust" : "85", - "height" : "158", - "hip" : "86", - "waist" : "58", - "weight" : "47" - } - }, { - "hash" : "dcd3b9f7c582181235d47dde3b4a0fb5", - "id" : "1301802", - "profile" : { - "bust" : "85", - "height" : "158", - "hip" : "86", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "デビリッシュゴシック", - "alias_name_display" : "デビリッシュゴシック", - "hash" : "94c8abcfe804ad7d1ffba83136b21276", - "id" : "1209201", - "profile" : { - "bust" : "85", - "height" : "158", - "hip" : "86", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "デビリッシュゴシック", - "alias_name_display" : "デビリッシュゴシック", - "hash" : "02bb974e8ed0f1bcece903d42d309c0f", - "id" : "1309202", - "profile" : { - "bust" : "85", - "height" : "158", - "hip" : "86", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ウィンタースタイル", - "alias_name_display" : "ウィンタースタイル", - "hash" : "5a2704f747a6d29b004f47f0ed95a83b", - "id" : "1214701", - "profile" : { - "bust" : "85", - "height" : "158", - "hip" : "86", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ウィンタースタイル", - "alias_name_display" : "ウィンタースタイル", - "hash" : "dbae7ad87fe85eafc52397784ba763ed", - "id" : "1314702", - "profile" : { - "bust" : "85", - "height" : "158", - "hip" : "86", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "黒白微笑", - "alias_name_display" : "黒白微笑", - "event" : [ { - "event_id" : 514, - "event_name" : "功夫公演 香港大決戦" - } ], - "hash" : "a0e2153bde26babe6152d492ec24e1a9", - "id" : "1218401", - "profile" : { - "bust" : "85", - "height" : "158", - "hip" : "86", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "黒白微笑", - "alias_name_display" : "黒白微笑", - "event" : [ { - "event_id" : 514, - "event_name" : "功夫公演 香港大決戦" - } ], - "hash" : "e12ff3a3ff2743eabeda9478f2a94cc1", - "id" : "1318402", - "profile" : { - "bust" : "85", - "height" : "158", - "hip" : "86", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "アダルトスタイル", - "alias_name_display" : "アダルトスタイル", - "hash" : "19b317324b93b4c203f1aa474c8b6143", - "id" : "1220001", - "profile" : { - "bust" : "85", - "height" : "158", - "hip" : "86", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "アダルトスタイル", - "alias_name_display" : "アダルトスタイル", - "hash" : "118543d91139af711399d7bb6b029375", - "id" : "1320002", - "profile" : { - "bust" : "85", - "height" : "158", - "hip" : "86", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "新春レディ", - "alias_name_display" : "新春レディ", - "event" : [ { - "event_id" : 718, - "event_name" : "ドリームLIVEフェスティバル 新春SP" - } ], - "hash" : "71fa9fd263816362735276ee3d1dfc04", - "id" : "1225301", - "profile" : { - "bust" : "85", - "height" : "158", - "hip" : "86", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "新春レディ", - "alias_name_display" : "新春レディ", - "event" : [ { - "event_id" : 718, - "event_name" : "ドリームLIVEフェスティバル 新春SP" - } ], - "hash" : "ec807ef1db97e4c15ef318f9a6596941", - "id" : "1325302", - "profile" : { - "bust" : "85", - "height" : "158", - "hip" : "86", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "サバゲーI.C", - "alias_name_display" : "サバゲーI.C", - "event" : [ { - "event_id" : 1210, - "event_name" : "アイドルチャレンジ サバイバルゲーム編" - } ], - "hash" : "15fdd1bf43a64e0bfe2a9f7dc5360e3b", - "id" : "1327502", - "profile" : { - "bust" : "85", - "height" : "158", - "hip" : "86", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ホーリーコーラス", - "alias_name_display" : "ホーリーコーラス", - "hash" : "2dc06c7605dee3eafbb4619312238f83", - "id" : "1231101", - "profile" : { - "bust" : "85", - "height" : "158", - "hip" : "86", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ホーリーコーラス", - "alias_name_display" : "ホーリーコーラス", - "hash" : "25172c5667ad6f1d3d5989e5aa1fd94e", - "id" : "1331102", - "profile" : { - "bust" : "85", - "height" : "158", - "hip" : "86", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "二面性の天使", - "alias_name_display" : "二面性の天使", - "event" : [ { - "event_id" : 703, - "event_name" : "第3回ドリームLIVEフェスティバル" - } ], - "hash" : "6d84be33bafbe45f651c50fd5114c4d0", - "id" : "1409601", - "profile" : { - "bust" : "85", - "height" : "158", - "hip" : "86", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "二面性の天使", - "alias_name_display" : "二面性の天使", - "event" : [ { - "event_id" : 703, - "event_name" : "第3回ドリームLIVEフェスティバル" - } ], - "hash" : "ce10dbc0aa9373a75ec4f514d644f62a", - "id" : "1509602", - "profile" : { - "bust" : "85", - "height" : "158", - "hip" : "86", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "グラマラス・ロワイヤル", - "alias_name_display" : "グラマラス・ロワイヤル", - "event" : [ { - "event_id" : 813, - "event_name" : "第13回アイドルLIVEロワイヤル" - } ], - "hash" : "de191e77ede324ba840d36ca006d90f1", - "id" : "1425701", - "profile" : { - "bust" : "85", - "height" : "158", - "hip" : "86", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "グラマラス・ロワイヤル", - "alias_name_display" : "グラマラス・ロワイヤル", - "event" : [ { - "event_id" : 813, - "event_name" : "第13回アイドルLIVEロワイヤル" - } ], - "hash" : "519d323f0a2f06e97bd6af40e79fcb98", - "id" : "1525702", - "profile" : { - "bust" : "85", - "height" : "158", - "hip" : "86", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "デモニックソルジャー", - "alias_name_display" : "デモニックソルジャー", - "event" : [ { - "event_id" : 1210, - "event_name" : "アイドルチャレンジ サバイバルゲーム編" - } ], - "hash" : "f4de77473b4f78559dc3f8500deee18f", - "id" : "1432301", - "profile" : { - "bust" : "85", - "height" : "158", - "hip" : "86", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "デモニックソルジャー", - "alias_name_display" : "デモニックソルジャー", - "event" : [ { - "event_id" : 1210, - "event_name" : "アイドルチャレンジ サバイバルゲーム編" - } ], - "hash" : "ae9a28ada0457cda1ba5a199023587d3", - "id" : "1532302", - "profile" : { - "bust" : "85", - "height" : "158", - "hip" : "86", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "デモニックソルジャー・S", - "alias_name_display" : "デモニックソルジャー・S", - "event" : [ { - "event_id" : 1210, - "event_name" : "アイドルチャレンジ サバイバルゲーム編" - } ], - "hash" : "647923bb59ff1a909f0f52938608227e", - "id" : "1432401", - "profile" : { - "bust" : "85", - "height" : "158", - "hip" : "86", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "デモニックソルジャー・S", - "alias_name_display" : "デモニックソルジャー・S", - "event" : [ { - "event_id" : 1210, - "event_name" : "アイドルチャレンジ サバイバルゲーム編" - } ], - "hash" : "5889d8f072f2fac046d4e3b55e2ac4ce", - "id" : "1532402", - "profile" : { - "bust" : "85", - "height" : "158", - "hip" : "86", - "waist" : "57", - "weight" : "46" - } - } ], - "idol_id" : 45, - "idol_name" : "柳清良", - "idol_name_display" : "柳清良", - "units" : [ { - "id" : "157", - "name" : "デビリッシュゴシック" - }, { - "id" : "207", - "name" : "ムーランルージュ" - } ] -}, { - "aliases" : [ { - "alias_name" : "制服ベージュ", - "alias_name_display" : "制服ベージュ", - "hash" : "85d13609464513894fdecb0baad54c2a", - "id" : "1201901", - "profile" : { - "bust" : "83", - "height" : "158", - "hip" : "82", - "waist" : "56", - "weight" : "46" - } - }, { - "alias_name" : "制服グレー", - "alias_name_display" : "制服グレー", - "hash" : "e5b85211de1d55c40d370545a8d61d7f", - "id" : "1201902", - "profile" : { - "bust" : "83", - "height" : "158", - "hip" : "82", - "waist" : "56", - "weight" : "46" - } - }, { - "alias_name" : "制服ピンク", - "alias_name_display" : "制服ピンク", - "hash" : "8281a506b62578a43608d55490ef4b9d", - "id" : "1201903", - "profile" : { - "bust" : "83", - "height" : "158", - "hip" : "82", - "waist" : "56", - "weight" : "46" - } - }, { - "alias_name" : "制服ブラック", - "alias_name_display" : "制服ブラック", - "hash" : "57c6cb85e692ea03a15052bb1c3bc7d6", - "id" : "1201904", - "profile" : { - "bust" : "83", - "height" : "158", - "hip" : "82", - "waist" : "56", - "weight" : "46" - } - }, { - "alias_name" : "ザ☆ワイルドストロベリー", - "alias_name_display" : "ザ☆ワイルドストロベリー", - "hash" : "5152c6a98ac868d03a15f55534c5a32d", - "id" : "1301905", - "profile" : { - "bust" : "83", - "height" : "158", - "hip" : "82", - "waist" : "56", - "weight" : "46" - } - }, { - "alias_name" : "ダリアノワール", - "alias_name_display" : "ダリアノワール", - "hash" : "e24cfc29ae88b186122cc858d94fe1a7", - "id" : "1301906", - "profile" : { - "bust" : "83", - "height" : "158", - "hip" : "82", - "waist" : "56", - "weight" : "46" - } - }, { - "alias_name" : "レイクサイドパンジー", - "alias_name_display" : "レイクサイドパンジー", - "hash" : "29907bc26188d3171fa0eab89f44b9b7", - "id" : "1301907", - "profile" : { - "bust" : "83", - "height" : "158", - "hip" : "82", - "waist" : "56", - "weight" : "46" - } - }, { - "alias_name" : "フォーチューンクローバー", - "alias_name_display" : "フォーチューンクローバー", - "hash" : "fe2fe78b29c7d4bdc824d820fd130c45", - "id" : "1301908", - "profile" : { - "bust" : "83", - "height" : "158", - "hip" : "82", - "waist" : "56", - "weight" : "46" - } - }, { - "alias_name" : "ホットサマーシトラス", - "alias_name_display" : "ホットサマーシトラス", - "hash" : "75c1d9166fbf0b09e1cbb867000a2556", - "id" : "1301909", - "profile" : { - "bust" : "83", - "height" : "158", - "hip" : "82", - "waist" : "56", - "weight" : "46" - } - }, { - "alias_name" : "普通の女の子", - "alias_name_display" : "普通の女の子", - "hash" : "894f904e12ca1fcf4891b47839c97ab7", - "id" : "1400110", - "profile" : { - "bust" : "83", - "height" : "158", - "hip" : "82", - "waist" : "56", - "weight" : "46" - } - }, { - "alias_name" : "普通の女の子", - "alias_name_display" : "普通の女の子", - "hash" : "e7fe451b0e7483323d10d1c8b038bf94", - "id" : "1500111", - "profile" : { - "bust" : "83", - "height" : "158", - "hip" : "82", - "waist" : "56", - "weight" : "46" - } - }, { - "alias_name" : "王道アイドル", - "alias_name_display" : "王道アイドル", - "hash" : "cbd4d17190b8b2715f502211ec0ededb", - "id" : "1401401", - "profile" : { - "bust" : "83", - "height" : "158", - "hip" : "82", - "waist" : "56", - "weight" : "46" - } - }, { - "alias_name" : "王道アイドル", - "alias_name_display" : "王道アイドル", - "hash" : "fbbab084cf4eee36bb4a708a6d7be8d0", - "id" : "1501402", - "profile" : { - "bust" : "83", - "height" : "158", - "hip" : "82", - "waist" : "56", - "weight" : "46" - } - }, { - "alias_name" : "シャイニーフェスタ", - "alias_name_display" : "シャイニーフェスタ", - "hash" : "3d10639a24d9fb8457ee6352be6922bf", - "id" : "1403301", - "profile" : { - "bust" : "83", - "height" : "158", - "hip" : "82", - "waist" : "56", - "weight" : "46" - } - }, { - "alias_name" : "シャイニーフェスタ", - "alias_name_display" : "シャイニーフェスタ", - "hash" : "3e312f0be1822c45a9f64013e879f7c6", - "id" : "1503302", - "profile" : { - "bust" : "83", - "height" : "158", - "hip" : "82", - "waist" : "56", - "weight" : "46" - } - }, { - "alias_name" : "ユカタメイド", - "alias_name_display" : "ユカタメイド", - "hash" : "e3053b178bab9f6dca92afea00011551", - "id" : "1504902", - "profile" : { - "bust" : "83", - "height" : "158", - "hip" : "82", - "waist" : "56", - "weight" : "46" - } - }, { - "alias_name" : "アーリーサマーバカンス", - "alias_name_display" : "アーリーサマーバカンス", - "hash" : "eb10c4da293f3f132f146989bd997f64", - "id" : "1507402", - "profile" : { - "bust" : "83", - "height" : "158", - "hip" : "82", - "waist" : "56", - "weight" : "46" - } - } ], - "idol_id" : 46, - "idol_name" : "天海春香", - "idol_name_display" : "天海春香" -}, { - "aliases" : [ { - "event" : [ { - "event_id" : 101, - "event_name" : "星降るクリスマス" - } ], - "hash" : "e45c0c3027d05bf557aae92dadc353b8", - "id" : "1202101", - "profile" : { - "bust" : "85", - "height" : "163", - "hip" : "88", - "waist" : "60", - "weight" : "48" - } - }, { - "event" : [ { - "event_id" : 101, - "event_name" : "星降るクリスマス" - } ], - "hash" : "1300313f0ac00ac625a3ab3b05e784f8", - "id" : "1302102", - "profile" : { - "bust" : "85", - "height" : "163", - "hip" : "88", - "waist" : "60", - "weight" : "48" - } - }, { - "alias_name" : "コスメティックガール", - "alias_name_display" : "コスメティックガール", - "event" : [ { - "event_id" : "007", - "event_name" : "第7回プロダクションマッチフェスティバル" - } ], - "hash" : "a7c5c0dadc49e8461079d832e96fda8d", - "id" : "1207201", - "profile" : { - "bust" : "85", - "height" : "163", - "hip" : "88", - "waist" : "60", - "weight" : "48" - } - }, { - "alias_name" : "コスメティックガール", - "alias_name_display" : "コスメティックガール", - "event" : [ { - "event_id" : "007", - "event_name" : "第7回プロダクションマッチフェスティバル" - } ], - "hash" : "49a867483c6dc78f68b39dd6d12da52c", - "id" : "1307202", - "profile" : { - "bust" : "85", - "height" : "163", - "hip" : "88", - "waist" : "60", - "weight" : "48" - } - }, { - "alias_name" : "びっくりウィンク", - "alias_name_display" : "びっくりウィンク", - "hash" : "baa18ddffaa449e63527a4d6c1103b69", - "id" : "1219001", - "profile" : { - "bust" : "85", - "height" : "163", - "hip" : "88", - "waist" : "60", - "weight" : "48" - } - }, { - "alias_name" : "びっくりウィンク", - "alias_name_display" : "びっくりウィンク", - "hash" : "42572e4f6dd0a720da70c1fe78cc39bf", - "id" : "1319002", - "profile" : { - "bust" : "85", - "height" : "163", - "hip" : "88", - "waist" : "60", - "weight" : "48" - } - }, { - "alias_name" : "オータムコレクション", - "alias_name_display" : "オータムコレクション", - "hash" : "72905292c809034429f21d1ca7a03213", - "id" : "1224001", - "profile" : { - "bust" : "85", - "height" : "163", - "hip" : "88", - "waist" : "60", - "weight" : "48" - } - }, { - "alias_name" : "オータムコレクション", - "alias_name_display" : "オータムコレクション", - "hash" : "ba1e7aa823e2f486bd0b7f8dfa9f92c5", - "id" : "1324002", - "profile" : { - "bust" : "85", - "height" : "163", - "hip" : "88", - "waist" : "60", - "weight" : "48" - } - }, { - "alias_name" : "サマービーチ", - "alias_name_display" : "サマービーチ", - "hash" : "a8af8761f80d9f7e4631228ebc66c583", - "id" : "1229301", - "profile" : { - "bust" : "85", - "height" : "163", - "hip" : "88", - "waist" : "60", - "weight" : "48" - } - }, { - "alias_name" : "サマービーチ", - "alias_name_display" : "サマービーチ", - "hash" : "a584d77ce572744ffc8eeae90e0f7a0b", - "id" : "1329302", - "profile" : { - "bust" : "85", - "height" : "163", - "hip" : "88", - "waist" : "60", - "weight" : "48" - } - }, { - "alias_name" : "ロマンチックナイト", - "alias_name_display" : "ロマンチックナイト", - "event" : [ { - "event_id" : 508, - "event_name" : "LIVEツアーカーニバルinスペースワールド" - } ], - "hash" : "9c24447ef9d6a10a524b9de555ecd05a", - "id" : "1409901", - "profile" : { - "bust" : "85", - "height" : "163", - "hip" : "88", - "waist" : "60", - "weight" : "48" - } - }, { - "alias_name" : "ロマンチックナイト", - "alias_name_display" : "ロマンチックナイト", - "event" : [ { - "event_id" : 508, - "event_name" : "LIVEツアーカーニバルinスペースワールド" - } ], - "hash" : "1edf266e99871ff9d48d791d03376b23", - "id" : "1509902", - "profile" : { - "bust" : "85", - "height" : "163", - "hip" : "88", - "waist" : "60", - "weight" : "48" - } - }, { - "alias_name" : "ビューティーヒール", - "alias_name_display" : "ビューティーヒール", - "event" : [ { - "event_id" : 523, - "event_name" : "鋼鉄公演 きらりんロボ -襲来!コスメティア帝国-" - } ], - "hash" : "7cf80f4e1d6137d41dcb35a1228b2c4f", - "id" : "1430501", - "profile" : { - "bust" : "85", - "height" : "163", - "hip" : "88", - "waist" : "60", - "weight" : "48" - } - }, { - "alias_name" : "ビューティーヒール", - "alias_name_display" : "ビューティーヒール", - "event" : [ { - "event_id" : 523, - "event_name" : "鋼鉄公演 きらりんロボ -襲来!コスメティア帝国-" - } ], - "hash" : "33f32d395742c24944d95fdef61b71b3", - "id" : "1530502", - "profile" : { - "bust" : "85", - "height" : "163", - "hip" : "88", - "waist" : "60", - "weight" : "48" - } - }, { - "alias_name" : "花畑マキアージュ", - "alias_name_display" : "花畑マキアージュ", - "event" : [ { - "event_id" : 728, - "event_name" : "ドリームLIVEフェスティバル スプリングSP" - } ], - "hash" : "1ded8bab3016b38dff6df60ebf3e2f3c", - "id" : "1439401", - "profile" : { - "bust" : "85", - "height" : "163", - "hip" : "88", - "waist" : "60", - "weight" : "48" - } - }, { - "alias_name" : "花畑マキアージュ", - "alias_name_display" : "花畑マキアージュ", - "event" : [ { - "event_id" : 728, - "event_name" : "ドリームLIVEフェスティバル スプリングSP" - } ], - "hash" : "9394a74e8344967cbf42eb20eae12ab5", - "id" : "1539402", - "profile" : { - "bust" : "85", - "height" : "163", - "hip" : "88", - "waist" : "60", - "weight" : "48" - } - } ], - "idol_id" : 47, - "idol_name" : "井村雪菜", - "idol_name_display" : "井村雪菜", - "units" : [ { - "id" : "100", - "name" : "ハートウォーマー" - } ] -}, { - "aliases" : [ { - "hash" : "98daacfc83511eb95974e557aaf84caf", - "id" : "1202301", - "profile" : { - "bust" : "77", - "height" : "148", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - }, { - "hash" : "a54ca3ed50318224a01b666b99687d1b", - "id" : "1302302", - "profile" : { - "bust" : "77", - "height" : "148", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "アニマルパーク", - "alias_name_display" : "アニマルパーク", - "event" : [ { - "event_id" : 204, - "event_name" : "アイドルサバイバルin動物園" - } ], - "hash" : "93e14d9a6e04065bba6cb30745bbedcf", - "id" : "1204501", - "profile" : { - "bust" : "77", - "height" : "148", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "アニマルパーク", - "alias_name_display" : "アニマルパーク", - "event" : [ { - "event_id" : 204, - "event_name" : "アイドルサバイバルin動物園" - } ], - "hash" : "060a14c59bc2e2373140cdf2a502b689", - "id" : "1304502", - "profile" : { - "bust" : "77", - "height" : "148", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "サマーバケーション", - "alias_name_display" : "サマーバケーション", - "event" : [ { - "event_id" : 211, - "event_name" : "アイドルサバイバルinサマーバケーション" - } ], - "hash" : "64ce41dc523eb087c5a4d02a52fbc5d8", - "id" : "1211401", - "profile" : { - "bust" : "77", - "height" : "148", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "サマーバケーション", - "alias_name_display" : "サマーバケーション", - "event" : [ { - "event_id" : 211, - "event_name" : "アイドルサバイバルinサマーバケーション" - } ], - "hash" : "a08838a564ba9bc6bfb9d76e91ab6ce9", - "id" : "1311402", - "profile" : { - "bust" : "77", - "height" : "148", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "マーチングバンド", - "alias_name_display" : "マーチングバンド", - "hash" : "41773d24499b3d8e05743752ccd92a1d", - "id" : "1219401", - "profile" : { - "bust" : "77", - "height" : "148", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "マーチングバンド", - "alias_name_display" : "マーチングバンド", - "hash" : "295b3b0ae7a4d4af95fff7bea9d5726e", - "id" : "1319402", - "profile" : { - "bust" : "77", - "height" : "148", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "スマートレディ", - "alias_name_display" : "スマートレディ", - "hash" : "dcd7d12d16749e4c24cbee10026b28bf", - "id" : "1227101", - "profile" : { - "bust" : "77", - "height" : "148", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "スマートレディ", - "alias_name_display" : "スマートレディ", - "hash" : "498690a47ff548be70cddb845339649a", - "id" : "1327102", - "profile" : { - "bust" : "77", - "height" : "148", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "湯けむり紀行", - "alias_name_display" : "湯けむり紀行", - "hash" : "e7b4ce48a14dfda28f3a1a116a8ea397", - "id" : "1230601", - "profile" : { - "bust" : "77", - "height" : "148", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "湯けむり紀行", - "alias_name_display" : "湯けむり紀行", - "hash" : "a71c410c5dd3fba39e1b1e8c34cf66b7", - "id" : "1330602", - "profile" : { - "bust" : "77", - "height" : "148", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "ローゼスゴシック", - "alias_name_display" : "ローゼスゴシック", - "hash" : "7cf6b998042d60ec860faf5e486261dc", - "id" : "1405801", - "profile" : { - "bust" : "77", - "height" : "148", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "ローゼスゴシック", - "alias_name_display" : "ローゼスゴシック", - "hash" : "ba8d96eebf33c4e6f9104a6bcb6c5ada", - "id" : "1505802", - "profile" : { - "bust" : "77", - "height" : "148", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "ロワイヤルリトル", - "alias_name_display" : "ロワイヤルリトル", - "event" : [ { - "event_id" : 805, - "event_name" : "第5回アイドルLIVEロワイヤル" - } ], - "hash" : "9ce8db57726c12bb4d03b7187efd119b", - "id" : "1415201", - "profile" : { - "bust" : "77", - "height" : "148", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "ロワイヤルリトル", - "alias_name_display" : "ロワイヤルリトル", - "event" : [ { - "event_id" : 805, - "event_name" : "第5回アイドルLIVEロワイヤル" - } ], - "hash" : "53393350148a36019963248cb5fbc2be", - "id" : "1515202", - "profile" : { - "bust" : "77", - "height" : "148", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "セクシー刑事", - "alias_name_display" : "セクシー刑事", - "event" : [ { - "event_id" : 521, - "event_name" : "怪盗公演 美しき追跡者" - } ], - "hash" : "01cc6f010fdbaf4f9c132a9b17454c8a", - "id" : "1427001", - "profile" : { - "bust" : "77", - "height" : "148", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "セクシー刑事", - "alias_name_display" : "セクシー刑事", - "event" : [ { - "event_id" : 521, - "event_name" : "怪盗公演 美しき追跡者" - } ], - "hash" : "16b3f7c98071fcc566c63e350f6d6755", - "id" : "1527002", - "profile" : { - "bust" : "77", - "height" : "148", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - } ], - "idol_id" : 48, - "idol_name" : "日下部若葉", - "idol_name_display" : "日下部若葉", - "units" : [ { - "id" : "84", - "name" : "アニマルパーク" - }, { - "id" : "214", - "name" : "L.M.B.G" - } ] -}, { - "aliases" : [ { - "hash" : "0a2cb7263e4bab320935782c987b0ed1", - "id" : "1202401", - "profile" : { - "bust" : "91", - "height" : "162", - "hip" : "86", - "waist" : "56", - "weight" : "46" - } - }, { - "hash" : "3971354d7c145d26b9e76bcf7ff85203", - "id" : "1302402", - "profile" : { - "bust" : "91", - "height" : "162", - "hip" : "86", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "イタリアンスタイル", - "alias_name_display" : "イタリアンスタイル", - "event" : [ { - "event_id" : 503, - "event_name" : "アイドルLIVEツアーinイタリア" - } ], - "hash" : "2744cd367edb50ffe7959ba47f5f6afe", - "id" : "1208601", - "profile" : { - "bust" : "91", - "height" : "162", - "hip" : "86", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "イタリアンスタイル", - "alias_name_display" : "イタリアンスタイル", - "event" : [ { - "event_id" : 503, - "event_name" : "アイドルLIVEツアーinイタリア" - } ], - "hash" : "1a71cce509dbda3f4d3a9d8a7a83b5a8", - "id" : "1308602", - "profile" : { - "bust" : "91", - "height" : "162", - "hip" : "86", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "メロメロキャンディ", - "alias_name_display" : "メロメロキャンディ", - "hash" : "43d1d4fc514cdece1a5ae65bc99d480f", - "id" : "1210501", - "profile" : { - "bust" : "91", - "height" : "162", - "hip" : "86", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "メロメロキャンディ", - "alias_name_display" : "メロメロキャンディ", - "hash" : "868ad09a014294cd1f31276948b65141", - "id" : "1310502", - "profile" : { - "bust" : "91", - "height" : "162", - "hip" : "86", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ワーキング・マフィア", - "alias_name_display" : "ワーキング・マフィア", - "hash" : "6f0e256632a44047e538f5c99fe4fa31", - "id" : "1216001", - "profile" : { - "bust" : "91", - "height" : "162", - "hip" : "86", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ワーキング・マフィア", - "alias_name_display" : "ワーキング・マフィア", - "hash" : "c04bfe60da8022fa3fc6561134749b65", - "id" : "1316002", - "profile" : { - "bust" : "91", - "height" : "162", - "hip" : "86", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "夏祭り", - "alias_name_display" : "夏祭り", - "event" : [ { - "event_id" : 714, - "event_name" : "夏祭りDEドリームLIVEフェスティバル" - } ], - "hash" : "656a5b69d3f81ed6c3f1afc6a294cb71", - "id" : "1322402", - "profile" : { - "bust" : "91", - "height" : "162", - "hip" : "86", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ラブリーメイド", - "alias_name_display" : "ラブリーメイド", - "hash" : "08be8e4dcff4f7384656fca3062ccaba", - "id" : "1225701", - "profile" : { - "bust" : "91", - "height" : "162", - "hip" : "86", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ラブリーメイド", - "alias_name_display" : "ラブリーメイド", - "hash" : "6993c3919d9955689694fab691b877a4", - "id" : "1325702", - "profile" : { - "bust" : "91", - "height" : "162", - "hip" : "86", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ふんわりパピヨン", - "alias_name_display" : "ふんわりパピヨン", - "hash" : "c5f8a51fd468b2d67fbee35744959e59", - "id" : "1232501", - "profile" : { - "bust" : "91", - "height" : "162", - "hip" : "86", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ふんわりパピヨン", - "alias_name_display" : "ふんわりパピヨン", - "hash" : "9948c2cc9042b6db538973772ffd6bee", - "id" : "1332502", - "profile" : { - "bust" : "91", - "height" : "162", - "hip" : "86", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "スプラッシュボディ", - "alias_name_display" : "スプラッシュボディ", - "event" : [ { - "event_id" : 106, - "event_name" : "アイドル水泳大会 水着のシンデレラ" - } ], - "hash" : "665f8311dc5ac353dbab012bdc91f241", - "id" : "1402101", - "profile" : { - "bust" : "91", - "height" : "162", - "hip" : "86", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "スプラッシュボディ", - "alias_name_display" : "スプラッシュボディ", - "event" : [ { - "event_id" : 106, - "event_name" : "アイドル水泳大会 水着のシンデレラ" - } ], - "hash" : "b188872f23583254256ebb336480a02a", - "id" : "1502102", - "profile" : { - "bust" : "91", - "height" : "162", - "hip" : "86", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "シュガーリーボディ", - "alias_name_display" : "シュガーリーボディ", - "hash" : "dfdaeee13d94f788e2301b207dd20c03", - "id" : "1410101", - "profile" : { - "bust" : "91", - "height" : "162", - "hip" : "86", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "シュガーリーボディ", - "alias_name_display" : "シュガーリーボディ", - "hash" : "f556daf2e4618d563405a10d77c33a91", - "id" : "1510102", - "profile" : { - "bust" : "91", - "height" : "162", - "hip" : "86", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "スウィート・ロワイヤル", - "alias_name_display" : "スウィート・ロワイヤル", - "event" : [ { - "event_id" : 808, - "event_name" : "第8回アイドルLIVEロワイヤル" - } ], - "hash" : "d36af7a953650e82735fa3de1fe95bbb", - "id" : "1420001", - "profile" : { - "bust" : "91", - "height" : "162", - "hip" : "86", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "スウィート・ロワイヤル", - "alias_name_display" : "スウィート・ロワイヤル", - "event" : [ { - "event_id" : 808, - "event_name" : "第8回アイドルLIVEロワイヤル" - } ], - "hash" : "a2014a0c6b69ec002f9f8795e01be8fc", - "id" : "1520002", - "profile" : { - "bust" : "91", - "height" : "162", - "hip" : "86", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ゆるあまチアー", - "alias_name_display" : "ゆるあまチアー", - "event" : [ { - "event_id" : 1508, - "event_name" : "チーム対抗トークバトルショー in SUMMER" - } ], - "hash" : "190de0bebd3334545f163e7279d80e28", - "id" : "1434601", - "profile" : { - "bust" : "91", - "height" : "162", - "hip" : "86", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ゆるあまチアー", - "alias_name_display" : "ゆるあまチアー", - "event" : [ { - "event_id" : 1508, - "event_name" : "チーム対抗トークバトルショー in SUMMER" - } ], - "hash" : "f5513ccc6e9fbd159a8a1c770341ca42", - "id" : "1534602", - "profile" : { - "bust" : "91", - "height" : "162", - "hip" : "86", - "waist" : "56", - "weight" : "45" - } - } ], - "idol_id" : 49, - "idol_name" : "榊原里美", - "idol_name_display" : "榊原里美", - "units" : [ { - "id" : "86", - "name" : "イタリアンスタイル" - }, { - "id" : "128", - "name" : "ラビュー☆アイス☆マウンテン" - } ] -}, { - "aliases" : [ { - "hash" : "c3100ee880e230589036b29a80d7dce3", - "id" : "1202501", - "profile" : { - "bust" : "74", - "height" : "142", - "hip" : "75", - "waist" : "52", - "weight" : "37" - } - }, { - "hash" : "44b8189f9d8c3f8c0d03a6759dba6b24", - "id" : "1302502", - "profile" : { - "bust" : "74", - "height" : "142", - "hip" : "75", - "waist" : "52", - "weight" : "37" - } - }, { - "alias_name" : "自称・セクシーギャル", - "alias_name_display" : "自称・セクシーギャル", - "hash" : "119e0da77db1a7a1da32fe66dbb953fc", - "id" : "1222101", - "profile" : { - "bust" : "74", - "height" : "142", - "hip" : "75", - "waist" : "52", - "weight" : "37" - } - }, { - "alias_name" : "自称・セクシーギャル", - "alias_name_display" : "自称・セクシーギャル", - "hash" : "6babab0e7bbff9fbf117cca8a8e30f5f", - "id" : "1322102", - "profile" : { - "bust" : "74", - "height" : "142", - "hip" : "75", - "waist" : "52", - "weight" : "37" - } - }, { - "alias_name" : "自称・雪の妖精", - "alias_name_display" : "自称・雪の妖精", - "hash" : "add3aebe0ee8669d88a68ace3ea9b339", - "id" : "1326702", - "profile" : { - "bust" : "74", - "height" : "142", - "hip" : "75", - "waist" : "52", - "weight" : "37" - } - }, { - "alias_name" : "自称・カワイイ雪の妖精", - "alias_name_display" : "自称・カワイイ雪の妖精", - "hash" : "41d032b770fa6bb15e85a2fd0371035f", - "id" : "1326802", - "profile" : { - "bust" : "74", - "height" : "142", - "hip" : "75", - "waist" : "52", - "weight" : "37" - } - }, { - "alias_name" : "自称・カワイイ", - "alias_name_display" : "自称・カワイイ", - "hash" : "7d90d532451521e9f70c48914eae6de5", - "id" : "1401901", - "profile" : { - "bust" : "74", - "height" : "142", - "hip" : "75", - "waist" : "52", - "weight" : "37" - } - }, { - "alias_name" : "自称・カワイイ", - "alias_name_display" : "自称・カワイイ", - "hash" : "4a02ad7e0335413adce0fdd7724e967c", - "id" : "1501902", - "profile" : { - "bust" : "74", - "height" : "142", - "hip" : "75", - "waist" : "52", - "weight" : "37" - } - }, { - "alias_name" : "自称・天使", - "alias_name_display" : "自称・天使", - "event" : [ { - "event_id" : "006", - "event_name" : "第6回プロダクションマッチフェスティバル" - } ], - "hash" : "b7041e1f27f77e00bcb6750a7efe307f", - "id" : "1403601", - "profile" : { - "bust" : "74", - "height" : "142", - "hip" : "75", - "waist" : "52", - "weight" : "37" - } - }, { - "alias_name" : "自称・天使", - "alias_name_display" : "自称・天使", - "event" : [ { - "event_id" : "006", - "event_name" : "第6回プロダクションマッチフェスティバル" - } ], - "hash" : "2a35fe0b79df5b24ac0c79bd61a9f05f", - "id" : "1503602", - "profile" : { - "bust" : "74", - "height" : "142", - "hip" : "75", - "waist" : "52", - "weight" : "37" - } - }, { - "alias_name" : "自称・セクシー", - "alias_name_display" : "自称・セクシー", - "hash" : "af9eacda4fd4b4fbc2aaa65014c95ac8", - "id" : "1406601", - "profile" : { - "bust" : "74", - "height" : "142", - "hip" : "75", - "waist" : "52", - "weight" : "37" - } - }, { - "alias_name" : "自称・セクシー", - "alias_name_display" : "自称・セクシー", - "hash" : "550ebee14289128b0ee7750ce580a9ae", - "id" : "1506602", - "profile" : { - "bust" : "74", - "height" : "142", - "hip" : "75", - "waist" : "52", - "weight" : "37" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "4cac6cb206bb9a778ec1a0d242185a6e", - "id" : "1406801", - "profile" : { - "bust" : "74", - "height" : "142", - "hip" : "75", - "waist" : "52", - "weight" : "37" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "405ead20308c43365ea6b73a1090c23f", - "id" : "1506802", - "profile" : { - "bust" : "74", - "height" : "142", - "hip" : "75", - "waist" : "52", - "weight" : "37" - } - }, { - "alias_name" : "自称・プレゼント", - "alias_name_display" : "自称・プレゼント", - "hash" : "6e5d07375e8d1daf25b6e1138e4c6706", - "id" : "1410801", - "profile" : { - "bust" : "74", - "height" : "142", - "hip" : "75", - "waist" : "52", - "weight" : "37" - } - }, { - "alias_name" : "自称・プレゼント", - "alias_name_display" : "自称・プレゼント", - "hash" : "8c67de4368ba3d1782b67e689190a5a0", - "id" : "1510802", - "profile" : { - "bust" : "74", - "height" : "142", - "hip" : "75", - "waist" : "52", - "weight" : "37" - } - }, { - "alias_name" : "自称・マーメイド", - "alias_name_display" : "自称・マーメイド", - "hash" : "73a87ae220035842c13b47336b8135c2", - "id" : "1415501", - "profile" : { - "bust" : "74", - "height" : "142", - "hip" : "75", - "waist" : "52", - "weight" : "37" - } - }, { - "alias_name" : "自称・マーメイド", - "alias_name_display" : "自称・マーメイド", - "hash" : "4637ded9f824e31f9033e488d3ca4257", - "id" : "1515502", - "profile" : { - "bust" : "74", - "height" : "142", - "hip" : "75", - "waist" : "52", - "weight" : "37" - } - }, { - "alias_name" : "自称・幸運", - "alias_name_display" : "自称・幸運", - "hash" : "052ff3c640cc92727f8bfbc105db54eb", - "id" : "1421201", - "profile" : { - "bust" : "74", - "height" : "142", - "hip" : "75", - "waist" : "52", - "weight" : "37" - } - }, { - "alias_name" : "自称・幸運", - "alias_name_display" : "自称・幸運", - "hash" : "2defe6d72fe38c3d48cb53926d7e9c77", - "id" : "1521202", - "profile" : { - "bust" : "74", - "height" : "142", - "hip" : "75", - "waist" : "52", - "weight" : "37" - } - }, { - "alias_name" : "自称・美人の湯", - "alias_name_display" : "自称・美人の湯", - "hash" : "2756f820564442331dbf44db7f3c3c0f", - "id" : "1428701", - "profile" : { - "bust" : "74", - "height" : "142", - "hip" : "75", - "waist" : "52", - "weight" : "37" - } - }, { - "alias_name" : "自称・美人の湯", - "alias_name_display" : "自称・美人の湯", - "hash" : "9d45a4277d932e0cb08d98d4a2a2b9d1", - "id" : "1528702", - "profile" : { - "bust" : "74", - "height" : "142", - "hip" : "75", - "waist" : "52", - "weight" : "37" - } - }, { - "alias_name" : "自称・雪の女王", - "alias_name_display" : "自称・雪の女王", - "event" : [ { - "event_id" : 1705, - "event_name" : "アイドルプロデュース きらめくオーロラ紀行" - } ], - "hash" : "c154615d96a3941b49e103e799e9e6ae", - "id" : "1431401", - "profile" : { - "bust" : "74", - "height" : "142", - "hip" : "75", - "waist" : "52", - "weight" : "37" - } - }, { - "alias_name" : "自称・雪の女王", - "alias_name_display" : "自称・雪の女王", - "event" : [ { - "event_id" : 1705, - "event_name" : "アイドルプロデュース きらめくオーロラ紀行" - } ], - "hash" : "933d6fd9a91faf9bd200d9454032857b", - "id" : "1531402", - "profile" : { - "bust" : "74", - "height" : "142", - "hip" : "75", - "waist" : "52", - "weight" : "37" - } - }, { - "alias_name" : "自称・愛され系", - "alias_name_display" : "自称・愛され系", - "hash" : "0a91c9d32bc4dc8c10e2ec537e6403b4", - "id" : "1439501", - "profile" : { - "bust" : "74", - "height" : "142", - "hip" : "75", - "waist" : "52", - "weight" : "37" - } - }, { - "alias_name" : "自称・愛され系", - "alias_name_display" : "自称・愛され系", - "hash" : "6510a11da53b691ab9031a461560116d", - "id" : "1539502", - "profile" : { - "bust" : "74", - "height" : "142", - "hip" : "75", - "waist" : "52", - "weight" : "37" - } - } ], - "idol_id" : 50, - "idol_name" : "輿水幸子", - "idol_name_display" : "輿水幸子", - "units" : [ { - "id" : "13", - "name" : "カワスウィーティーなボクはぁと(仮)" - }, { - "id" : "90", - "name" : "カワイイボクと142's" - }, { - "id" : "131", - "name" : "KBYD" - }, { - "id" : "194", - "name" : "サクヤヒメ" - }, { - "id" : "212", - "name" : "CINDERELLA GIRLS" - } ] -}, { - "aliases" : [ { - "event" : [ { - "event_id" : 201, - "event_name" : "アイドルサバイバル" - } ], - "hash" : "a5a7e280731764ee1d3df5391bd87d43", - "id" : "1202601", - "profile" : { - "bust" : "78", - "height" : "156", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - }, { - "event" : [ { - "event_id" : 201, - "event_name" : "アイドルサバイバル" - } ], - "hash" : "4ee4d08e6743566a2417831a32247d1e", - "id" : "1302602", - "profile" : { - "bust" : "78", - "height" : "156", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "探偵メイドル", - "alias_name_display" : "探偵メイドル", - "hash" : "a9fd5baeb72c7d476b3e3e506ed7c2ca", - "id" : "1208001", - "profile" : { - "bust" : "78", - "height" : "156", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "探偵メイドル", - "alias_name_display" : "探偵メイドル", - "hash" : "c68534fca3fee1974ab2176c0d6f8cd0", - "id" : "1308002", - "profile" : { - "bust" : "78", - "height" : "156", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "張り込みスタイル", - "alias_name_display" : "張り込みスタイル", - "event" : [ { - "event_id" : "013", - "event_name" : "第13回プロダクションマッチフェスティバル" - } ], - "hash" : "ae20bae6e55d325307f62cdbbcec2290", - "id" : "1213001", - "profile" : { - "bust" : "78", - "height" : "156", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "張り込みスタイル", - "alias_name_display" : "張り込みスタイル", - "event" : [ { - "event_id" : "013", - "event_name" : "第13回プロダクションマッチフェスティバル" - } ], - "hash" : "ce38afed06051e2c10c439862d774bed", - "id" : "1313002", - "profile" : { - "bust" : "78", - "height" : "156", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "スクールスタイル", - "alias_name_display" : "スクールスタイル", - "hash" : "a853b8f786d001834e443816ba4b6d12", - "id" : "1215501", - "profile" : { - "bust" : "78", - "height" : "156", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "スクールスタイル", - "alias_name_display" : "スクールスタイル", - "hash" : "09a61fba9005db95a9befb741cbfe896", - "id" : "1315502", - "profile" : { - "bust" : "78", - "height" : "156", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "カジュアルルック", - "alias_name_display" : "カジュアルルック", - "event" : [ { - "event_id" : "022", - "event_name" : "第22回プロダクションマッチフェスティバル" - } ], - "hash" : "e649afb6962e805a8762e062358a49d8", - "id" : "1222201", - "profile" : { - "bust" : "78", - "height" : "156", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "カジュアルルック", - "alias_name_display" : "カジュアルルック", - "event" : [ { - "event_id" : "022", - "event_name" : "第22回プロダクションマッチフェスティバル" - } ], - "hash" : "bd5d8e86ac6245cb67e163d806c20cf3", - "id" : "1322202", - "profile" : { - "bust" : "78", - "height" : "156", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ウィンターコレクション", - "alias_name_display" : "ウィンターコレクション", - "hash" : "7563f63f96be801e208b41b831e3fb37", - "id" : "1226201", - "profile" : { - "bust" : "78", - "height" : "156", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ウィンターコレクション", - "alias_name_display" : "ウィンターコレクション", - "hash" : "d9734c1b775934b22c1bed99f087daab", - "id" : "1326202", - "profile" : { - "bust" : "78", - "height" : "156", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ゴーフォーヴィクトリー", - "alias_name_display" : "ゴーフォーヴィクトリー", - "hash" : "1a145e40e005d9c026e00055b86e98fe", - "id" : "1232301", - "profile" : { - "bust" : "78", - "height" : "156", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ゴーフォーヴィクトリー", - "alias_name_display" : "ゴーフォーヴィクトリー", - "hash" : "c068a0b85d95161ba617b3169c55918e", - "id" : "1332302", - "profile" : { - "bust" : "78", - "height" : "156", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "小さな名探偵", - "alias_name_display" : "小さな名探偵", - "event" : [ { - "event_id" : 701, - "event_name" : "ドリームLIVEフェスティバル" - } ], - "hash" : "57a6b520d0c3ca4327c98d306c6ea914", - "id" : "1407301", - "profile" : { - "bust" : "78", - "height" : "156", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "小さな名探偵", - "alias_name_display" : "小さな名探偵", - "event" : [ { - "event_id" : 701, - "event_name" : "ドリームLIVEフェスティバル" - } ], - "hash" : "63661d287588dd672a4a790c584ac3cc", - "id" : "1507302", - "profile" : { - "bust" : "78", - "height" : "156", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "聖夜のミステリー", - "alias_name_display" : "聖夜のミステリー", - "event" : [ { - "event_id" : 710, - "event_name" : "サンタDEドリームLIVEフェスティバル" - } ], - "hash" : "6dddae01de63befe4d2aa03275925f12", - "id" : "1420501", - "profile" : { - "bust" : "78", - "height" : "156", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "聖夜のミステリー", - "alias_name_display" : "聖夜のミステリー", - "event" : [ { - "event_id" : 710, - "event_name" : "サンタDEドリームLIVEフェスティバル" - } ], - "hash" : "b9abe3920c8acc09627f84020f2772ef", - "id" : "1520502", - "profile" : { - "bust" : "78", - "height" : "156", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ミステリーチアー", - "alias_name_display" : "ミステリーチアー", - "event" : [ { - "event_id" : 1504, - "event_name" : "第4回チーム対抗トークバトルショー" - } ], - "hash" : "bdbb5104e4674a60d58db8d8397dd008", - "id" : "1428201", - "profile" : { - "bust" : "78", - "height" : "156", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ミステリーチアー", - "alias_name_display" : "ミステリーチアー", - "event" : [ { - "event_id" : 1504, - "event_name" : "第4回チーム対抗トークバトルショー" - } ], - "hash" : "4355175e6d2fdc1aa18f7734cbbd965a", - "id" : "1528202", - "profile" : { - "bust" : "78", - "height" : "156", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "なぞときツアーズ", - "alias_name_display" : "なぞときツアーズ", - "hash" : "e6cd8597bd7834403a4199417cbd868e", - "id" : "1434901", - "profile" : { - "bust" : "78", - "height" : "156", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "なぞときツアーズ", - "alias_name_display" : "なぞときツアーズ", - "hash" : "0da70e0edc3ce8b0d0fcf9caf198d7d6", - "id" : "1534902", - "profile" : { - "bust" : "78", - "height" : "156", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - } ], - "idol_id" : 51, - "idol_name" : "安斎都", - "idol_name_display" : "安斎都", - "units" : [ { - "id" : "35", - "name" : "ディテクティブヴァーサス" - } ] -}, { - "aliases" : [ { - "hash" : "fa074d5e6fd70b950c77ecb6d0156075", - "id" : "1202701", - "profile" : { - "bust" : "88", - "height" : "160", - "hip" : "84", - "waist" : "59", - "weight" : "48" - } - }, { - "hash" : "2692009a1145b12d88f8581a8d2a203e", - "id" : "1302702", - "profile" : { - "bust" : "88", - "height" : "160", - "hip" : "84", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "テーマパーク", - "alias_name_display" : "テーマパーク", - "event" : [ { - "event_id" : 210, - "event_name" : "アイドルサバイバルinテーマパーク2013" - } ], - "hash" : "35fdd14eb165bc7e6dec5d341e784f07", - "id" : "1209501", - "profile" : { - "bust" : "88", - "height" : "160", - "hip" : "84", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "テーマパーク", - "alias_name_display" : "テーマパーク", - "event" : [ { - "event_id" : 210, - "event_name" : "アイドルサバイバルinテーマパーク2013" - } ], - "hash" : "41d1d18a55c448cf46c582d1013b39b6", - "id" : "1309502", - "profile" : { - "bust" : "88", - "height" : "160", - "hip" : "84", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "ピュアリーグラス", - "alias_name_display" : "ピュアリーグラス", - "hash" : "cf97a7ca4f0e1155ef221621fdf3cfd9", - "id" : "1214101", - "profile" : { - "bust" : "88", - "height" : "160", - "hip" : "84", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "ピュアリーグラス", - "alias_name_display" : "ピュアリーグラス", - "hash" : "6fdde1b3e7496a6d33e393841a24b07d", - "id" : "1314102", - "profile" : { - "bust" : "88", - "height" : "160", - "hip" : "84", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "パラダイスリゾート", - "alias_name_display" : "パラダイスリゾート", - "hash" : "466452eb133248e509e4fb3f4ebeacd7", - "id" : "1217801", - "profile" : { - "bust" : "88", - "height" : "160", - "hip" : "84", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "パラダイスリゾート", - "alias_name_display" : "パラダイスリゾート", - "hash" : "442597c9044dfedfa1349fb2db19196a", - "id" : "1317802", - "profile" : { - "bust" : "88", - "height" : "160", - "hip" : "84", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "クッキングバラエティ", - "alias_name_display" : "クッキングバラエティ", - "event" : [ { - "event_id" : 1801, - "event_name" : "アイドルバラエティ 究極のショートケーキを作ろう!" - } ], - "hash" : "22c66ce65936f77c353214b025a41e58", - "id" : "1323502", - "profile" : { - "bust" : "88", - "height" : "160", - "hip" : "84", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "ためらいごころ", - "alias_name_display" : "ためらいごころ", - "hash" : "e76f9bcd4d328a38a2624f05c28f9674", - "id" : "1228001", - "profile" : { - "bust" : "88", - "height" : "160", - "hip" : "84", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "ためらいごころ", - "alias_name_display" : "ためらいごころ", - "hash" : "54ba56acfc2fc2727cf51c97786be2a5", - "id" : "1328002", - "profile" : { - "bust" : "88", - "height" : "160", - "hip" : "84", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "シークレットクイーン", - "alias_name_display" : "シークレットクイーン", - "event" : [ { - "event_id" : 507, - "event_name" : "LIVEツアーカーニバルinドイツ" - } ], - "hash" : "5f86b28cd88a283adc8408184d57da8d", - "id" : "1408701", - "profile" : { - "bust" : "88", - "height" : "160", - "hip" : "84", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "シークレットクイーン", - "alias_name_display" : "シークレットクイーン", - "event" : [ { - "event_id" : 507, - "event_name" : "LIVEツアーカーニバルinドイツ" - } ], - "hash" : "6044eaaac63254173edd6e0e2cc419ed", - "id" : "1508702", - "profile" : { - "bust" : "88", - "height" : "160", - "hip" : "84", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "ランウェイモード", - "alias_name_display" : "ランウェイモード", - "event" : [ { - "event_id" : 1401, - "event_name" : "ぷちデレラコレクション" - } ], - "hash" : "83af98fac0686269e12859012e21238f", - "id" : "1422901", - "profile" : { - "bust" : "88", - "height" : "160", - "hip" : "84", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "ランウェイモード", - "alias_name_display" : "ランウェイモード", - "event" : [ { - "event_id" : 1401, - "event_name" : "ぷちデレラコレクション" - } ], - "hash" : "6dabe78413e5135e83a9e9709b0665cd", - "id" : "1522902", - "profile" : { - "bust" : "88", - "height" : "160", - "hip" : "84", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "くつろぎの温度", - "alias_name_display" : "くつろぎの温度", - "event" : [ { - "event_id" : 726, - "event_name" : "ドリームLIVEフェスティバル新春SP" - } ], - "hash" : "c8c73f7e03c72c843e517dd8c759d868", - "id" : "1437501", - "profile" : { - "bust" : "88", - "height" : "160", - "hip" : "84", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "くつろぎの温度", - "alias_name_display" : "くつろぎの温度", - "event" : [ { - "event_id" : 726, - "event_name" : "ドリームLIVEフェスティバル新春SP" - } ], - "hash" : "3e11cdda3fb461943a95a243ccb16db8", - "id" : "1537502", - "profile" : { - "bust" : "88", - "height" : "160", - "hip" : "84", - "waist" : "59", - "weight" : "48" - } - } ], - "idol_id" : 52, - "idol_name" : "浅野風香", - "idol_name_display" : "浅野風香", - "units" : [ { - "id" : "49", - "name" : "ピュアリーツイン" - }, { - "id" : "171", - "name" : "Black/White-Roses" - }, { - "id" : "211", - "name" : "ワンダー・フル" - } ] -}, { - "aliases" : [ { - "hash" : "380a7a645fe50c52773fd2fceb026002", - "id" : "1202801", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "83", - "waist" : "58", - "weight" : "44" - } - }, { - "hash" : "057fbfa6eb12d147fe311a18fd6d712d", - "id" : "1302802", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "83", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "メルヘン&ゴシック", - "alias_name_display" : "メルヘン&ゴシック", - "hash" : "bcd6d181f73266ba4bc8fa827c46af98", - "id" : "1208301", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "83", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "メルヘン&ゴシック", - "alias_name_display" : "メルヘン&ゴシック", - "hash" : "cebe76011f0156a8ce7f7df691969bd6", - "id" : "1308302", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "83", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "スポーティスタイル", - "alias_name_display" : "スポーティスタイル", - "event" : [ { - "event_id" : 212, - "event_name" : "アイドルサバイバル 秋の大運動会" - } ], - "hash" : "a45d124031fd6c6841aa249d597fc03b", - "id" : "1212601", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "83", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "スポーティスタイル", - "alias_name_display" : "スポーティスタイル", - "event" : [ { - "event_id" : 212, - "event_name" : "アイドルサバイバル 秋の大運動会" - } ], - "hash" : "d0735e0957f993ca0fa4c57b0e8cefc6", - "id" : "1312602", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "83", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "フワフワユリユリ", - "alias_name_display" : "フワフワユリユリ", - "hash" : "c3c402f325f4d7cdec18af16c702a6a9", - "id" : "1219201", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "83", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "フワフワユリユリ", - "alias_name_display" : "フワフワユリユリ", - "hash" : "7589f5960cfac28375537d4f51eb58fa", - "id" : "1319202", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "83", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "真夏の誘惑", - "alias_name_display" : "真夏の誘惑", - "event" : [ { - "event_id" : 723, - "event_name" : "水着DEドリームLIVEフェスティバル" - } ], - "hash" : "1249e065132351a934d2f63e9b1cb626", - "id" : "1229201", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "83", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "真夏の誘惑", - "alias_name_display" : "真夏の誘惑", - "event" : [ { - "event_id" : 723, - "event_name" : "水着DEドリームLIVEフェスティバル" - } ], - "hash" : "6eccf22049120fb761a1ffa13bd38e88", - "id" : "1329202", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "83", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "ゴーフォーヴィクトリー", - "alias_name_display" : "ゴーフォーヴィクトリー", - "hash" : "8a0410a434927708f9fad0e055ec486b", - "id" : "1232401", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "83", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "ゴーフォーヴィクトリー", - "alias_name_display" : "ゴーフォーヴィクトリー", - "hash" : "ea7e3327461cab7eeea0197ac1bf31e6", - "id" : "1332402", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "83", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "目覚めし淑女", - "alias_name_display" : "目覚めし淑女", - "event" : [ { - "event_id" : "016", - "event_name" : "第16回プロダクションマッチフェスティバル" - } ], - "hash" : "7e80103508171cd695652af2bf4006e5", - "id" : "1413701", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "83", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "目覚めし淑女", - "alias_name_display" : "目覚めし淑女", - "event" : [ { - "event_id" : "016", - "event_name" : "第16回プロダクションマッチフェスティバル" - } ], - "hash" : "098c259560917bb02fc6769b79704b3f", - "id" : "1513702", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "83", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "レディライクバイオレット", - "alias_name_display" : "レディライクバイオレット", - "event" : [ { - "event_id" : 716, - "event_name" : "第16回ドリームLIVEフェスティバル" - } ], - "hash" : "a302d6fc9e81362cc2a9d8a4e32bb8da", - "id" : "1427901", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "83", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "レディライクバイオレット", - "alias_name_display" : "レディライクバイオレット", - "event" : [ { - "event_id" : 716, - "event_name" : "第16回ドリームLIVEフェスティバル" - } ], - "hash" : "493a01e58a43693352fd7343e3987069", - "id" : "1527902", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "83", - "waist" : "58", - "weight" : "44" - } - } ], - "idol_id" : 53, - "idol_name" : "大西由里子", - "idol_name_display" : "大西由里子", - "units" : [ { - "id" : "12", - "name" : "壁サーの花" - }, { - "id" : "165", - "name" : "メルヘンゴシック" - } ] -}, { - "aliases" : [ { - "hash" : "edd3438bd612a333a76edaea0ff73fe7", - "id" : "1203001", - "profile" : { - "bust" : "84", - "height" : "146", - "hip" : "84", - "waist" : "57", - "weight" : "40" - } - }, { - "hash" : "6dba97132e9dac789aab3892e1bd89da", - "id" : "1303002", - "profile" : { - "bust" : "84", - "height" : "146", - "hip" : "84", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "ニューイヤー", - "alias_name_display" : "ニューイヤー", - "event" : [ { - "event_id" : 404, - "event_name" : "新春アイドルプロデュース" - } ], - "hash" : "801a8ecab88ba6aa4104c5704603b2d8", - "id" : "1207001", - "profile" : { - "bust" : "84", - "height" : "146", - "hip" : "84", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "ニューイヤー", - "alias_name_display" : "ニューイヤー", - "event" : [ { - "event_id" : 404, - "event_name" : "新春アイドルプロデュース" - } ], - "hash" : "2e254b75f29e7a12dd5e5743d061ba1e", - "id" : "1307002", - "profile" : { - "bust" : "84", - "height" : "146", - "hip" : "84", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "お月見ウサミン", - "alias_name_display" : "お月見ウサミン", - "event" : [ { - "event_id" : 107, - "event_name" : "秋夜のお月見会" - } ], - "hash" : "a8785d3980131a8fa98a30be1c8ee201", - "id" : "1402901", - "profile" : { - "bust" : "84", - "height" : "146", - "hip" : "84", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "お月見ウサミン", - "alias_name_display" : "お月見ウサミン", - "event" : [ { - "event_id" : 107, - "event_name" : "秋夜のお月見会" - } ], - "hash" : "5b31aabd5be01c365f5f42cc925fe6ef", - "id" : "1502902", - "profile" : { - "bust" : "84", - "height" : "146", - "hip" : "84", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "制服ウサミン", - "alias_name_display" : "制服ウサミン", - "hash" : "f4c2b229d5ca32acc3a4505e83a5e746", - "id" : "1406101", - "profile" : { - "bust" : "84", - "height" : "146", - "hip" : "84", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "制服ウサミン", - "alias_name_display" : "制服ウサミン", - "hash" : "3cd59eb00788e28e7740052f8b5b2639", - "id" : "1506102", - "profile" : { - "bust" : "84", - "height" : "146", - "hip" : "84", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "aaccb3f4f6b7c29b28d2e55934c97a4f", - "id" : "1406701", - "profile" : { - "bust" : "84", - "height" : "146", - "hip" : "84", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "e244b41f4ee149b403eda22f871cf129", - "id" : "1506702", - "profile" : { - "bust" : "84", - "height" : "146", - "hip" : "84", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "ハッピーニューウサミン", - "alias_name_display" : "ハッピーニューウサミン", - "event" : [ { - "event_id" : 509, - "event_name" : "新春LIVEツアーカーニバル" - } ], - "hash" : "5bc9852cf431141883ad09d3c214e524", - "id" : "1411301", - "profile" : { - "bust" : "84", - "height" : "146", - "hip" : "84", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "ハッピーニューウサミン", - "alias_name_display" : "ハッピーニューウサミン", - "event" : [ { - "event_id" : 509, - "event_name" : "新春LIVEツアーカーニバル" - } ], - "hash" : "371a0f77436b1f218c8300d50207019e", - "id" : "1511302", - "profile" : { - "bust" : "84", - "height" : "146", - "hip" : "84", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "スペース☆ウサミン", - "alias_name_display" : "スペース☆ウサミン", - "hash" : "51c183ef6846a54a06aab46bf0a0fa02", - "id" : "1414101", - "profile" : { - "bust" : "84", - "height" : "146", - "hip" : "84", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "スペース☆ウサミン", - "alias_name_display" : "スペース☆ウサミン", - "hash" : "77b6e905cf5dc2c15420c72345efd7b3", - "id" : "1514102", - "profile" : { - "bust" : "84", - "height" : "146", - "hip" : "84", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "クリスマスウサミン", - "alias_name_display" : "クリスマスウサミン", - "hash" : "f7ef230f6291157eb6adfcf737d12b43", - "id" : "1420401", - "profile" : { - "bust" : "84", - "height" : "146", - "hip" : "84", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "クリスマスウサミン", - "alias_name_display" : "クリスマスウサミン", - "hash" : "781fcb73651a24d165ba0ff488949829", - "id" : "1520402", - "profile" : { - "bust" : "84", - "height" : "146", - "hip" : "84", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "サマー☆ウサミン", - "alias_name_display" : "サマー☆ウサミン", - "hash" : "582b54f85fa86da7ef3314d647193092", - "id" : "1426501", - "profile" : { - "bust" : "84", - "height" : "146", - "hip" : "84", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "サマー☆ウサミン", - "alias_name_display" : "サマー☆ウサミン", - "hash" : "52fdee6f29f672792d8af79c239ac1fb", - "id" : "1526502", - "profile" : { - "bust" : "84", - "height" : "146", - "hip" : "84", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "ワンダーランドラビット", - "alias_name_display" : "ワンダーランドラビット", - "hash" : "3a63db645ce9ee2878d44436a7c45eaa", - "id" : "1432001", - "profile" : { - "bust" : "84", - "height" : "146", - "hip" : "84", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "ワンダーランドラビット", - "alias_name_display" : "ワンダーランドラビット", - "hash" : "f5d19805f9164fb58967a338d9a60551", - "id" : "1532002", - "profile" : { - "bust" : "84", - "height" : "146", - "hip" : "84", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "ぽかぽかウサミン", - "alias_name_display" : "ぽかぽかウサミン", - "hash" : "d2dad4fd56c9ad3b62a7f34a05024b8b", - "id" : "1436301", - "profile" : { - "bust" : "84", - "height" : "146", - "hip" : "84", - "waist" : "57", - "weight" : "40" - } - }, { - "alias_name" : "ぽかぽかウサミン", - "alias_name_display" : "ぽかぽかウサミン", - "hash" : "4646da2024bcd18a3334ba0c06a7770d", - "id" : "1536302", - "profile" : { - "bust" : "84", - "height" : "146", - "hip" : "84", - "waist" : "57", - "weight" : "40" - } - } ], - "idol_id" : 54, - "idol_name" : "安部菜々", - "idol_name_display" : "安部菜々", - "units" : [ { - "id" : "22", - "name" : "シャイニー・アーリーデイズ" - }, { - "id" : "23", - "name" : "しゅがしゅが☆み~ん" - }, { - "id" : "80", - "name" : "P・U" - }, { - "id" : "115", - "name" : "虹色ドリーマー" - }, { - "id" : "139", - "name" : "397cherry" - }, { - "id" : "168", - "name" : "*(Asterisk) with なつなな" - }, { - "id" : "184", - "name" : "宵乙女" - }, { - "id" : "195", - "name" : "C5" - } ] -}, { - "aliases" : [ { - "hash" : "1a31c15fa7189284f9df6258d5382de2", - "id" : "1203201", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "81", - "waist" : "54", - "weight" : "41" - } - }, { - "hash" : "7792ea260d6769bc8ccff47fc2dc5026", - "id" : "1303202", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "81", - "waist" : "54", - "weight" : "41" - } - }, { - "alias_name" : "学園祭", - "alias_name_display" : "学園祭", - "event" : [ { - "event_id" : 206, - "event_name" : "アイドルサバイバルin学園祭" - } ], - "hash" : "20bb972a45fb705f8e86bdb9f49c9f47", - "id" : "1205601", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "81", - "waist" : "54", - "weight" : "41" - } - }, { - "alias_name" : "学園祭", - "alias_name_display" : "学園祭", - "event" : [ { - "event_id" : 206, - "event_name" : "アイドルサバイバルin学園祭" - } ], - "hash" : "7748ff72ac51f4cbd33212106e0e77cf", - "id" : "1305602", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "81", - "waist" : "54", - "weight" : "41" - } - }, { - "alias_name" : "ホワイトドロップ", - "alias_name_display" : "ホワイトドロップ", - "hash" : "dddf8f15c3a9e438456f8ab55e9b2870", - "id" : "1207301", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "81", - "waist" : "54", - "weight" : "41" - } - }, { - "alias_name" : "ホワイトドロップ", - "alias_name_display" : "ホワイトドロップ", - "hash" : "7cf82263a00da42088d07c2d6d9a21b5", - "id" : "1307302", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "81", - "waist" : "54", - "weight" : "41" - } - }, { - "alias_name" : "スクールスタイル", - "alias_name_display" : "スクールスタイル", - "hash" : "116fb3717443e8eecda0740a15862a1b", - "id" : "1212701", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "81", - "waist" : "54", - "weight" : "41" - } - }, { - "alias_name" : "スクールスタイル", - "alias_name_display" : "スクールスタイル", - "hash" : "17db83ca7e47ff1d1138593fae3a3d29", - "id" : "1312702", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "81", - "waist" : "54", - "weight" : "41" - } - }, { - "alias_name" : "ロワイヤル・スクエア", - "alias_name_display" : "ロワイヤル・スクエア", - "event" : [ { - "event_id" : 809, - "event_name" : "第9回アイドルLIVEロワイヤル" - } ], - "hash" : "78eeaef914bcff2a04145a36a68f0f16", - "id" : "1219901", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "81", - "waist" : "54", - "weight" : "41" - } - }, { - "alias_name" : "ロワイヤル・スクエア", - "alias_name_display" : "ロワイヤル・スクエア", - "event" : [ { - "event_id" : 809, - "event_name" : "第9回アイドルLIVEロワイヤル" - } ], - "hash" : "8302466346e62143800b5ac2e2857240", - "id" : "1319902", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "81", - "waist" : "54", - "weight" : "41" - } - }, { - "alias_name" : "ワーキング・クリーン", - "alias_name_display" : "ワーキング・クリーン", - "hash" : "f0ae078f852e73caba240b6cb3455cd8", - "id" : "1226601", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "81", - "waist" : "54", - "weight" : "41" - } - }, { - "alias_name" : "ワーキング・クリーン", - "alias_name_display" : "ワーキング・クリーン", - "hash" : "326d664c8733fd11eac64a7b69b0a670", - "id" : "1326602", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "81", - "waist" : "54", - "weight" : "41" - } - }, { - "alias_name" : "ネクストスターI.C", - "alias_name_display" : "ネクストスターI.C", - "event" : [ { - "event_id" : 1212, - "event_name" : "目指せきらきらモデル アイドルチャレンジ(復刻)" - } ], - "hash" : "cf4089838cd7d614b245f82a6e90e084", - "id" : "1329802", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "81", - "waist" : "54", - "weight" : "41" - } - }, { - "alias_name" : "ハッピーマジシャン", - "alias_name_display" : "ハッピーマジシャン", - "hash" : "ede6fef2e6f2427e20c5ba19134205a9", - "id" : "1406401", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "81", - "waist" : "54", - "weight" : "41" - } - }, { - "alias_name" : "ハッピーマジシャン", - "alias_name_display" : "ハッピーマジシャン", - "hash" : "bf52c02010890d6f6c73481da077c15b", - "id" : "1506402", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "81", - "waist" : "54", - "weight" : "41" - } - }, { - "alias_name" : "私だけのステージ", - "alias_name_display" : "私だけのステージ", - "event" : [ { - "event_id" : 806, - "event_name" : "アイドルLIVEロワイヤルinSUMMER" - } ], - "hash" : "1c52bde7c700cc558630899d6b10c5e6", - "id" : "1417601", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "81", - "waist" : "54", - "weight" : "41" - } - }, { - "alias_name" : "私だけのステージ", - "alias_name_display" : "私だけのステージ", - "event" : [ { - "event_id" : 806, - "event_name" : "アイドルLIVEロワイヤルinSUMMER" - } ], - "hash" : "0471abe6c83dd4e955df04e92dc187be", - "id" : "1517602", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "81", - "waist" : "54", - "weight" : "41" - } - }, { - "alias_name" : "雨の日に", - "alias_name_display" : "雨の日に", - "event" : [ { - "event_id" : 1502, - "event_name" : "チーム対抗雨の日トークバトルショー" - } ], - "hash" : "67a8414c7452e612da41dd0119dd106b", - "id" : "1425201", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "81", - "waist" : "54", - "weight" : "41" - } - }, { - "alias_name" : "雨の日に", - "alias_name_display" : "雨の日に", - "event" : [ { - "event_id" : 1502, - "event_name" : "チーム対抗雨の日トークバトルショー" - } ], - "hash" : "137a1dcdb35042b1b2ed93dd018e7563", - "id" : "1525202", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "81", - "waist" : "54", - "weight" : "41" - } - }, { - "alias_name" : "ノスタルジッククォーツ", - "alias_name_display" : "ノスタルジッククォーツ", - "hash" : "cee63aa3410ac271f9e689e706fed16c", - "id" : "1428401", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "81", - "waist" : "54", - "weight" : "41" - } - }, { - "alias_name" : "ノスタルジッククォーツ", - "alias_name_display" : "ノスタルジッククォーツ", - "hash" : "6505d7ec95341d2ea666bce4c4ace347", - "id" : "1528402", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "81", - "waist" : "54", - "weight" : "41" - } - }, { - "alias_name" : "セクシー☆モデル", - "alias_name_display" : "セクシー☆モデル", - "event" : [ { - "event_id" : 1212, - "event_name" : "目指せきらきらモデル アイドルチャレンジ(復刻)" - } ], - "hash" : "8f2182eb0bd0296d28272849b868c066", - "id" : "1435301", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "81", - "waist" : "54", - "weight" : "41" - } - }, { - "alias_name" : "セクシー☆モデル", - "alias_name_display" : "セクシー☆モデル", - "event" : [ { - "event_id" : 1212, - "event_name" : "目指せきらきらモデル アイドルチャレンジ(復刻)" - } ], - "hash" : "dd3cbc7d99d27b18163a05c94d5fcbd1", - "id" : "1535302", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "81", - "waist" : "54", - "weight" : "41" - } - } ], - "idol_id" : 55, - "idol_name" : "工藤忍", - "idol_name_display" : "工藤忍", - "units" : [ { - "id" : "163", - "name" : "フリルドスクエア" - } ] -}, { - "aliases" : [ { - "hash" : "9d98993861fb0959c1f26b591db03133", - "id" : "1203301", - "profile" : { - "bust" : "77", - "height" : "161", - "hip" : "78", - "waist" : "54", - "weight" : "44" - } - }, { - "hash" : "1c72cc9daa679ff0461205b58cd658dd", - "id" : "1303302", - "profile" : { - "bust" : "77", - "height" : "161", - "hip" : "78", - "waist" : "54", - "weight" : "44" - } - }, { - "alias_name" : "サマーライブ", - "alias_name_display" : "サマーライブ", - "event" : [ { - "event_id" : 205, - "event_name" : "アイドルサバイバルinサマーライブ" - } ], - "hash" : "c939f82122b3992b8503b84d822325bf", - "id" : "1205001", - "profile" : { - "bust" : "77", - "height" : "161", - "hip" : "78", - "waist" : "54", - "weight" : "44" - } - }, { - "alias_name" : "サマーライブ", - "alias_name_display" : "サマーライブ", - "event" : [ { - "event_id" : 205, - "event_name" : "アイドルサバイバルinサマーライブ" - } ], - "hash" : "a6a97438fb401f3ba9527fd1a1e9854a", - "id" : "1305002", - "profile" : { - "bust" : "77", - "height" : "161", - "hip" : "78", - "waist" : "54", - "weight" : "44" - } - }, { - "alias_name" : "ドキドキの体験", - "alias_name_display" : "ドキドキの体験", - "event" : [ { - "event_id" : 705, - "event_name" : "第5回ドリームLIVEフェスティバル" - } ], - "hash" : "15fa4075fb991dac74c0169d34b75722", - "id" : "1214401", - "profile" : { - "bust" : "77", - "height" : "161", - "hip" : "78", - "waist" : "54", - "weight" : "44" - } - }, { - "alias_name" : "ドキドキの体験", - "alias_name_display" : "ドキドキの体験", - "event" : [ { - "event_id" : 705, - "event_name" : "第5回ドリームLIVEフェスティバル" - } ], - "hash" : "8311423f3087e6037c9f3947b25e2fa5", - "id" : "1314402", - "profile" : { - "bust" : "77", - "height" : "161", - "hip" : "78", - "waist" : "54", - "weight" : "44" - } - }, { - "alias_name" : "カラダリフレッシュ", - "alias_name_display" : "カラダリフレッシュ", - "hash" : "976a98cd479d6fee3835551198607d08", - "id" : "1221301", - "profile" : { - "bust" : "77", - "height" : "161", - "hip" : "78", - "waist" : "54", - "weight" : "44" - } - }, { - "alias_name" : "カラダリフレッシュ", - "alias_name_display" : "カラダリフレッシュ", - "hash" : "76f025719c16fbefa7645d13442902a9", - "id" : "1321302", - "profile" : { - "bust" : "77", - "height" : "161", - "hip" : "78", - "waist" : "54", - "weight" : "44" - } - }, { - "alias_name" : "ロワイヤルND", - "alias_name_display" : "ロワイヤルND", - "event" : [ { - "event_id" : 814, - "event_name" : "第14回アイドルLIVEロワイヤル" - } ], - "hash" : "72bff87c92c9241d7cbcd6bcbcac4a04", - "id" : "1224501", - "profile" : { - "bust" : "77", - "height" : "161", - "hip" : "78", - "waist" : "54", - "weight" : "44" - } - }, { - "alias_name" : "ロワイヤルND", - "alias_name_display" : "ロワイヤルND", - "event" : [ { - "event_id" : 814, - "event_name" : "第14回アイドルLIVEロワイヤル" - } ], - "hash" : "4c324bfd2ba4cf7549b0a42c87afc48d", - "id" : "1324502", - "profile" : { - "bust" : "77", - "height" : "161", - "hip" : "78", - "waist" : "54", - "weight" : "44" - } - }, { - "alias_name" : "クール・ミーツ・ガール", - "alias_name_display" : "クール・ミーツ・ガール", - "hash" : "f0789a5de3fc7098ff85248f3da62600", - "id" : "1229101", - "profile" : { - "bust" : "77", - "height" : "161", - "hip" : "78", - "waist" : "54", - "weight" : "44" - } - }, { - "alias_name" : "クール・ミーツ・ガール", - "alias_name_display" : "クール・ミーツ・ガール", - "hash" : "6e082b744d84ca3cf25e0662ef875acf", - "id" : "1329102", - "profile" : { - "bust" : "77", - "height" : "161", - "hip" : "78", - "waist" : "54", - "weight" : "44" - } - }, { - "alias_name" : "水彩の乙姫", - "alias_name_display" : "水彩の乙姫", - "hash" : "4e33a40fb2614286e18111b184ced78f", - "id" : "1404601", - "profile" : { - "bust" : "77", - "height" : "161", - "hip" : "78", - "waist" : "54", - "weight" : "44" - } - }, { - "alias_name" : "水彩の乙姫", - "alias_name_display" : "水彩の乙姫", - "hash" : "81c21953f0d614e868b6696aa7305141", - "id" : "1504602", - "profile" : { - "bust" : "77", - "height" : "161", - "hip" : "78", - "waist" : "54", - "weight" : "44" - } - }, { - "alias_name" : "さざ波の歌姫", - "alias_name_display" : "さざ波の歌姫", - "event" : [ { - "event_id" : 505, - "event_name" : "アイドルLIVEツアーinバリ島" - } ], - "hash" : "262fdd41fdad100b5ce5dfcb04660e43", - "id" : "1407501", - "profile" : { - "bust" : "77", - "height" : "161", - "hip" : "78", - "waist" : "54", - "weight" : "44" - } - }, { - "alias_name" : "さざ波の歌姫", - "alias_name_display" : "さざ波の歌姫", - "event" : [ { - "event_id" : 505, - "event_name" : "アイドルLIVEツアーinバリ島" - } ], - "hash" : "de9e3875700d52943c8ff3f36ae03f19", - "id" : "1507502", - "profile" : { - "bust" : "77", - "height" : "161", - "hip" : "78", - "waist" : "54", - "weight" : "44" - } - }, { - "alias_name" : "サファリフレンズ", - "alias_name_display" : "サファリフレンズ", - "event" : [ { - "event_id" : 414, - "event_name" : "どうぶつアドベンチャー オーストラリア編" - } ], - "hash" : "8c9125381bc6fac1f4bf22509e1f3d91", - "id" : "1418001", - "profile" : { - "bust" : "77", - "height" : "161", - "hip" : "78", - "waist" : "54", - "weight" : "44" - } - }, { - "alias_name" : "サファリフレンズ", - "alias_name_display" : "サファリフレンズ", - "event" : [ { - "event_id" : 414, - "event_name" : "どうぶつアドベンチャー オーストラリア編" - } ], - "hash" : "3948a272d8553ae67d31c24d9227e6ab", - "id" : "1518002", - "profile" : { - "bust" : "77", - "height" : "161", - "hip" : "78", - "waist" : "54", - "weight" : "44" - } - }, { - "alias_name" : "サファリフレンズ・S", - "alias_name_display" : "サファリフレンズ・S", - "event" : [ { - "event_id" : 414, - "event_name" : "どうぶつアドベンチャー オーストラリア編" - } ], - "hash" : "88cfe7b18e52bee4621c8215daf8da59", - "id" : "1418101", - "profile" : { - "bust" : "77", - "height" : "161", - "hip" : "78", - "waist" : "54", - "weight" : "44" - } - }, { - "alias_name" : "サファリフレンズ・S", - "alias_name_display" : "サファリフレンズ・S", - "event" : [ { - "event_id" : 414, - "event_name" : "どうぶつアドベンチャー オーストラリア編" - } ], - "hash" : "62f0227f670b106cec44eeb1b002a450", - "id" : "1518102", - "profile" : { - "bust" : "77", - "height" : "161", - "hip" : "78", - "waist" : "54", - "weight" : "44" - } - }, { - "alias_name" : "淡色の花びら", - "alias_name_display" : "淡色の花びら", - "hash" : "b4e1af48b2ab90cf2741d4326408ad3c", - "id" : "1439301", - "profile" : { - "bust" : "77", - "height" : "161", - "hip" : "78", - "waist" : "54", - "weight" : "44" - } - }, { - "alias_name" : "淡色の花びら", - "alias_name_display" : "淡色の花びら", - "hash" : "7a9fe2cd8a14757af1ce02c24ab770e4", - "id" : "1539302", - "profile" : { - "bust" : "77", - "height" : "161", - "hip" : "78", - "waist" : "54", - "weight" : "44" - } - } ], - "idol_id" : 56, - "idol_name" : "栗原ネネ", - "idol_name_display" : "栗原ネネ", - "units" : [ { - "id" : "93", - "name" : "サマーライブセーラー" - }, { - "id" : "121", - "name" : "ヘルシーサバイブ" - }, { - "id" : "210", - "name" : "ロワイヤルスタイルND" - } ] -}, { - "aliases" : [ { - "hash" : "f9947ff6fc9c5c580c0f6382c56cccbf", - "id" : "1203601", - "profile" : { - "bust" : "72", - "height" : "140", - "hip" : "77", - "waist" : "54", - "weight" : "35" - } - }, { - "hash" : "a958d30cc805b714a494127e990bd867", - "id" : "1303602", - "profile" : { - "bust" : "72", - "height" : "140", - "hip" : "77", - "waist" : "54", - "weight" : "35" - } - }, { - "alias_name" : "フリルド☆プリンセス", - "alias_name_display" : "フリルド☆プリンセス", - "hash" : "2f16bbc923b17cba192b8e631e40f14a", - "id" : "1204601", - "profile" : { - "bust" : "72", - "height" : "140", - "hip" : "77", - "waist" : "54", - "weight" : "35" - } - }, { - "alias_name" : "フリルド☆プリンセス", - "alias_name_display" : "フリルド☆プリンセス", - "hash" : "abb8c88d2d8a4291bf9b718cf403fffb", - "id" : "1304602", - "profile" : { - "bust" : "72", - "height" : "140", - "hip" : "77", - "waist" : "54", - "weight" : "35" - } - }, { - "alias_name" : "パジャマブルー", - "alias_name_display" : "パジャマブルー", - "hash" : "84e9eb47681f127f2f9302022290c6e5", - "id" : "1207901", - "profile" : { - "bust" : "72", - "height" : "140", - "hip" : "77", - "waist" : "54", - "weight" : "35" - } - }, { - "alias_name" : "パジャマグリーン", - "alias_name_display" : "パジャマグリーン", - "hash" : "9c9de39a77a00515630ba298315f9770", - "id" : "1207902", - "profile" : { - "bust" : "72", - "height" : "140", - "hip" : "77", - "waist" : "54", - "weight" : "35" - } - }, { - "alias_name" : "パジャマイエロー", - "alias_name_display" : "パジャマイエロー", - "hash" : "908f82baff4555afab72784e3fa06a76", - "id" : "1207903", - "profile" : { - "bust" : "72", - "height" : "140", - "hip" : "77", - "waist" : "54", - "weight" : "35" - } - }, { - "alias_name" : "パジャマピンク", - "alias_name_display" : "パジャマピンク", - "hash" : "6d66dea9b369b70085809d46e563cdfd", - "id" : "1207904", - "profile" : { - "bust" : "72", - "height" : "140", - "hip" : "77", - "waist" : "54", - "weight" : "35" - } - }, { - "alias_name" : "制服☆わくわく", - "alias_name_display" : "制服☆わくわく", - "hash" : "e88dc87103cc832f9c7da447a09a0dfb", - "id" : "1307905", - "profile" : { - "bust" : "72", - "height" : "140", - "hip" : "77", - "waist" : "54", - "weight" : "35" - } - }, { - "alias_name" : "制服&マフラー", - "alias_name_display" : "制服&マフラー", - "hash" : "12a91027f594548bb27c110247c24a1a", - "id" : "1307906", - "profile" : { - "bust" : "72", - "height" : "140", - "hip" : "77", - "waist" : "54", - "weight" : "35" - } - }, { - "alias_name" : "制服&手袋", - "alias_name_display" : "制服&手袋", - "hash" : "d2b1685306e2ed5a63b4f842d1e6ccc0", - "id" : "1307907", - "profile" : { - "bust" : "72", - "height" : "140", - "hip" : "77", - "waist" : "54", - "weight" : "35" - } - }, { - "alias_name" : "制服&ランドセル", - "alias_name_display" : "制服&ランドセル", - "hash" : "46c0db7ce6d94de5ea0d5f485866a6a5", - "id" : "1307908", - "profile" : { - "bust" : "72", - "height" : "140", - "hip" : "77", - "waist" : "54", - "weight" : "35" - } - }, { - "alias_name" : "制服&ヒョウくん", - "alias_name_display" : "制服&ヒョウくん", - "hash" : "f6913dd02d2b65c487bb089217117909", - "id" : "1307909", - "profile" : { - "bust" : "72", - "height" : "140", - "hip" : "77", - "waist" : "54", - "weight" : "35" - } - }, { - "alias_name" : "ロワイヤルスタイル", - "alias_name_display" : "ロワイヤルスタイル", - "event" : [ { - "event_id" : 803, - "event_name" : "第3回アイドルLIVEロワイヤル" - } ], - "hash" : "3ddcab2fd453ac8799225df9ef80955f", - "id" : "1214301", - "profile" : { - "bust" : "72", - "height" : "140", - "hip" : "77", - "waist" : "54", - "weight" : "35" - } - }, { - "alias_name" : "ロワイヤルスタイル", - "alias_name_display" : "ロワイヤルスタイル", - "event" : [ { - "event_id" : 803, - "event_name" : "第3回アイドルLIVEロワイヤル" - } ], - "hash" : "3f61d851272435aff56eece251b042b8", - "id" : "1314302", - "profile" : { - "bust" : "72", - "height" : "140", - "hip" : "77", - "waist" : "54", - "weight" : "35" - } - }, { - "alias_name" : "マーチングバンド", - "alias_name_display" : "マーチングバンド", - "hash" : "c1c7ceef7ed0f01ef66002f6a1d559b7", - "id" : "1216301", - "profile" : { - "bust" : "72", - "height" : "140", - "hip" : "77", - "waist" : "54", - "weight" : "35" - } - }, { - "alias_name" : "マーチングバンド", - "alias_name_display" : "マーチングバンド", - "hash" : "f43a06efe71914d7980f6d083f5e4154", - "id" : "1316302", - "profile" : { - "bust" : "72", - "height" : "140", - "hip" : "77", - "waist" : "54", - "weight" : "35" - } - }, { - "alias_name" : "ナチュラルハート", - "alias_name_display" : "ナチュラルハート", - "event" : [ { - "event_id" : "024", - "event_name" : "第24回プロダクションマッチフェスティバル" - } ], - "hash" : "9401b97954be6ce2c8b00e83c8a84d00", - "id" : "1324202", - "profile" : { - "bust" : "72", - "height" : "140", - "hip" : "77", - "waist" : "54", - "weight" : "35" - } - }, { - "alias_name" : "ファンサーキット", - "alias_name_display" : "ファンサーキット", - "hash" : "8fcbae7bdef65dba83912049e25b4c68", - "id" : "1227801", - "profile" : { - "bust" : "72", - "height" : "140", - "hip" : "77", - "waist" : "54", - "weight" : "35" - } - }, { - "alias_name" : "ファンサーキット", - "alias_name_display" : "ファンサーキット", - "hash" : "3ca5c74adb44ec35d7f38be469f91279", - "id" : "1327802", - "profile" : { - "bust" : "72", - "height" : "140", - "hip" : "77", - "waist" : "54", - "weight" : "35" - } - }, { - "alias_name" : "ふかふかプリンセス", - "alias_name_display" : "ふかふかプリンセス", - "hash" : "2897b6951c70fbf6ec07bb04be52db1c", - "id" : "1405510", - "profile" : { - "bust" : "72", - "height" : "140", - "hip" : "77", - "waist" : "54", - "weight" : "35" - } - }, { - "alias_name" : "ふかふかプリンセス", - "alias_name_display" : "ふかふかプリンセス", - "hash" : "9e8b0acfe5be8dbcfad65b1ba6924ede", - "id" : "1505511", - "profile" : { - "bust" : "72", - "height" : "140", - "hip" : "77", - "waist" : "54", - "weight" : "35" - } - }, { - "alias_name" : "ドリーム☆プリンセス", - "alias_name_display" : "ドリーム☆プリンセス", - "hash" : "653cf8ab79b929a272572ebfb80e57eb", - "id" : "1407201", - "profile" : { - "bust" : "72", - "height" : "140", - "hip" : "77", - "waist" : "54", - "weight" : "35" - } - }, { - "alias_name" : "ドリーム☆プリンセス", - "alias_name_display" : "ドリーム☆プリンセス", - "hash" : "177e5715b302c70280bcedb94097954d", - "id" : "1507202", - "profile" : { - "bust" : "72", - "height" : "140", - "hip" : "77", - "waist" : "54", - "weight" : "35" - } - }, { - "alias_name" : "ファンシーチアー", - "alias_name_display" : "ファンシーチアー", - "event" : [ { - "event_id" : 1105, - "event_name" : "第5回プロダクション対抗トークバトルショー" - } ], - "hash" : "b1326ae64519769176909f8c31b0ece5", - "id" : "1418201", - "profile" : { - "bust" : "72", - "height" : "140", - "hip" : "77", - "waist" : "54", - "weight" : "35" - } - }, { - "alias_name" : "ファンシーチアー", - "alias_name_display" : "ファンシーチアー", - "event" : [ { - "event_id" : 1105, - "event_name" : "第5回プロダクション対抗トークバトルショー" - } ], - "hash" : "e83e6fdacc1705cc72c321acf8c53c55", - "id" : "1518202", - "profile" : { - "bust" : "72", - "height" : "140", - "hip" : "77", - "waist" : "54", - "weight" : "35" - } - }, { - "alias_name" : "プリンセスコースター", - "alias_name_display" : "プリンセスコースター", - "event" : [ { - "event_id" : 713, - "event_name" : "第13回ドリームLIVEフェスティバル" - } ], - "hash" : "59e784ab13dc54104abc13f42cb007f6", - "id" : "1424701", - "profile" : { - "bust" : "72", - "height" : "140", - "hip" : "77", - "waist" : "54", - "weight" : "35" - } - }, { - "alias_name" : "プリンセスコースター", - "alias_name_display" : "プリンセスコースター", - "event" : [ { - "event_id" : 713, - "event_name" : "第13回ドリームLIVEフェスティバル" - } ], - "hash" : "582f24e271bd9b1df18e7806bea31b8f", - "id" : "1524702", - "profile" : { - "bust" : "72", - "height" : "140", - "hip" : "77", - "waist" : "54", - "weight" : "35" - } - }, { - "alias_name" : "プリンセス☆レディ", - "alias_name_display" : "プリンセス☆レディ", - "hash" : "2297f63f27b1a7563bb827fe8a8392d2", - "id" : "1435901", - "profile" : { - "bust" : "72", - "height" : "140", - "hip" : "77", - "waist" : "54", - "weight" : "35" - } - }, { - "alias_name" : "プリンセス☆レディ", - "alias_name_display" : "プリンセス☆レディ", - "hash" : "50a0bb6a83031685c407e03c4bd7d5b1", - "id" : "1535902", - "profile" : { - "bust" : "72", - "height" : "140", - "hip" : "77", - "waist" : "54", - "weight" : "35" - } - } ], - "idol_id" : 57, - "idol_name" : "古賀小春", - "idol_name_display" : "古賀小春", - "units" : [ { - "id" : "47", - "name" : "ひつじさんとうさぎさん" - }, { - "id" : "59", - "name" : "ムシバレイナと小春ちゃん" - }, { - "id" : "114", - "name" : "ドリームホープスプリング" - }, { - "id" : "120", - "name" : "ブルームジャーニー" - }, { - "id" : "177", - "name" : "桜舞隊" - }, { - "id" : "208", - "name" : "ロワイヤルスタイル" - }, { - "id" : "214", - "name" : "L.M.B.G" - } ] -}, { - "aliases" : [ { - "hash" : "15bf1c0a280683642827f5f4ef6463fa", - "id" : "1204301", - "profile" : { - "bust" : "80", - "height" : "166", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - }, { - "hash" : "64b7f4bee3dcda84e80a6eb6fd74bed7", - "id" : "1304302", - "profile" : { - "bust" : "80", - "height" : "166", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "メイドコレクション", - "alias_name_display" : "メイドコレクション", - "hash" : "f96f386674b8663fb2d0922fb9bb9e2f", - "id" : "1205501", - "profile" : { - "bust" : "80", - "height" : "166", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "メイドコレクション", - "alias_name_display" : "メイドコレクション", - "hash" : "a6da3c43dccdc56dedb6e4ef4264b34b", - "id" : "1305502", - "profile" : { - "bust" : "80", - "height" : "166", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "慈愛の乙女", - "alias_name_display" : "慈愛の乙女", - "hash" : "5b2a364d0b324b33475a64e41a5481f5", - "id" : "1210301", - "profile" : { - "bust" : "80", - "height" : "166", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "慈愛の乙女", - "alias_name_display" : "慈愛の乙女", - "hash" : "c117570c3431e779a82be7645da607a8", - "id" : "1310302", - "profile" : { - "bust" : "80", - "height" : "166", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "ハッピーウェディング", - "alias_name_display" : "ハッピーウェディング", - "hash" : "bcae385375507c2e23cff748a71b04e0", - "id" : "1216601", - "profile" : { - "bust" : "80", - "height" : "166", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "ハッピーウェディング", - "alias_name_display" : "ハッピーウェディング", - "hash" : "99d87d7d5c512fe9aa88aa51d82a24ce", - "id" : "1316602", - "profile" : { - "bust" : "80", - "height" : "166", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "ロワイヤルスタイルND", - "alias_name_display" : "ロワイヤルスタイルND", - "event" : [ { - "event_id" : 812, - "event_name" : "第12回アイドルLIVEロワイヤル" - } ], - "hash" : "f756925d3969cd208c9193cfe69a6ebb", - "id" : "1221801", - "profile" : { - "bust" : "80", - "height" : "166", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "ロワイヤルスタイルND", - "alias_name_display" : "ロワイヤルスタイルND", - "event" : [ { - "event_id" : 812, - "event_name" : "第12回アイドルLIVEロワイヤル" - } ], - "hash" : "9c77a5684cc801ed51be43e8accc7c8d", - "id" : "1321802", - "profile" : { - "bust" : "80", - "height" : "166", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "純真聖女", - "alias_name_display" : "純真聖女", - "hash" : "65c278dd35248e03bfab057f151ae7ea", - "id" : "1230401", - "profile" : { - "bust" : "80", - "height" : "166", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "純真聖女", - "alias_name_display" : "純真聖女", - "hash" : "75ec6c3138ddc57e94e07cf9dad8eeee", - "id" : "1330402", - "profile" : { - "bust" : "80", - "height" : "166", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "微笑みの聖女", - "alias_name_display" : "微笑みの聖女", - "event" : [ { - "event_id" : 208, - "event_name" : "アイドルサバイバル聖歌響くクリスマス" - } ], - "hash" : "09335c2b6f8ce37905b310bbeba456a2", - "id" : "1404101", - "profile" : { - "bust" : "80", - "height" : "166", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "微笑みの聖女", - "alias_name_display" : "微笑みの聖女", - "event" : [ { - "event_id" : 208, - "event_name" : "アイドルサバイバル聖歌響くクリスマス" - } ], - "hash" : "bbc3b96cdd63b04e3f14b622cf9fb0b2", - "id" : "1504102", - "profile" : { - "bust" : "80", - "height" : "166", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "癒しの贈り主", - "alias_name_display" : "癒しの贈り主", - "event" : [ { - "event_id" : 1001, - "event_name" : "プロダクション対抗ドリームLIVEフェスティバル" - } ], - "hash" : "e8c7a725d6386301ebc1ca860c09aa25", - "id" : "1411201", - "profile" : { - "bust" : "80", - "height" : "166", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "癒しの贈り主", - "alias_name_display" : "癒しの贈り主", - "event" : [ { - "event_id" : 1001, - "event_name" : "プロダクション対抗ドリームLIVEフェスティバル" - } ], - "hash" : "90ab2e69f7fa23ee5ebebbcbd095ab98", - "id" : "1511202", - "profile" : { - "bust" : "80", - "height" : "166", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "クリスマスチアー", - "alias_name_display" : "クリスマスチアー", - "event" : [ { - "event_id" : 1107, - "event_name" : "プロダクション対抗トークバトルショー クリスマスSP" - } ], - "hash" : "3bad9526e6a985a2b7857ab330d87849", - "id" : "1420601", - "profile" : { - "bust" : "80", - "height" : "166", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "クリスマスチアー", - "alias_name_display" : "クリスマスチアー", - "event" : [ { - "event_id" : 1107, - "event_name" : "プロダクション対抗トークバトルショー クリスマスSP" - } ], - "hash" : "e67c46611c81f95a5e971bc09d145ed1", - "id" : "1520602", - "profile" : { - "bust" : "80", - "height" : "166", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "慈愛のくちどけ", - "alias_name_display" : "慈愛のくちどけ", - "event" : [ { - "event_id" : 1209, - "event_name" : "アイドルチャレンジ チャレンジクッキング バレンタイン編" - } ], - "hash" : "79f78b16dee9f5ee22ea98b1b7444da2", - "id" : "1431201", - "profile" : { - "bust" : "80", - "height" : "166", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "慈愛のくちどけ", - "alias_name_display" : "慈愛のくちどけ", - "event" : [ { - "event_id" : 1209, - "event_name" : "アイドルチャレンジ チャレンジクッキング バレンタイン編" - } ], - "hash" : "f86f977a29cb9522f4036111e42b68ee", - "id" : "1531202", - "profile" : { - "bust" : "80", - "height" : "166", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "サンクスクラウン", - "alias_name_display" : "サンクスクラウン", - "event" : [ { - "event_id" : 1709, - "event_name" : "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" - } ], - "hash" : "50a051e89089dec096cf227dc1d90c28", - "id" : "1438701", - "profile" : { - "bust" : "80", - "height" : "166", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "サンクスクラウン", - "alias_name_display" : "サンクスクラウン", - "event" : [ { - "event_id" : 1709, - "event_name" : "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" - } ], - "hash" : "f109cc5d07d143f89d64cb1e57b17b1f", - "id" : "1538702", - "profile" : { - "bust" : "80", - "height" : "166", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "スマイリークラウン", - "alias_name_display" : "スマイリークラウン", - "event" : [ { - "event_id" : 1709, - "event_name" : "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" - } ], - "hash" : "87efd3625dad418d48da41787a2b37bb", - "id" : "1438801", - "profile" : { - "bust" : "80", - "height" : "166", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "スマイリークラウン", - "alias_name_display" : "スマイリークラウン", - "event" : [ { - "event_id" : 1709, - "event_name" : "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" - } ], - "hash" : "982a1fa17a690105cf07772a7d5bc5a4", - "id" : "1538802", - "profile" : { - "bust" : "80", - "height" : "166", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - } ], - "idol_id" : 58, - "idol_name" : "クラリス", - "idol_name_display" : "クラリス", - "units" : [ { - "id" : "183", - "name" : "メイドコレクション" - }, { - "id" : "210", - "name" : "ロワイヤルスタイルND" - } ] -}, { - "aliases" : [ { - "hash" : "34b22a25affabfd3160d7d70488f7e0d", - "id" : "1204701", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "54", - "weight" : "40" - } - }, { - "hash" : "66a161cbf5b2dbef9930d1e66a94353d", - "id" : "1304702", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "ハロウィンパーティー", - "alias_name_display" : "ハロウィンパーティー", - "hash" : "8fbe508ea0cdc7965934226e987f7cf1", - "id" : "1205801", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "ハロウィンパーティー", - "alias_name_display" : "ハロウィンパーティー", - "hash" : "779ae52ef5e88603c9f59a7c4bc9fc2e", - "id" : "1305802", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "バレンタインパーティー", - "alias_name_display" : "バレンタインパーティー", - "hash" : "e992cd82aa6f3cb56778cdf52e6d61a7", - "id" : "1207601", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "バレンタインパーティー", - "alias_name_display" : "バレンタインパーティー", - "hash" : "75dc2d3daa0e13a0a65993dca1ce22e6", - "id" : "1307602", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "ミニオンルージュ", - "alias_name_display" : "ミニオンルージュ", - "hash" : "e25204e06ba87be0ce49d8bae0f75caf", - "id" : "1218301", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "ミニオンルージュ", - "alias_name_display" : "ミニオンルージュ", - "hash" : "6f2093ebbf4a981184e7438c6e9e79ad", - "id" : "1318302", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "恋愛シンドローム", - "alias_name_display" : "恋愛シンドローム", - "event" : [ { - "event_id" : "009", - "event_name" : "第9回プロダクションマッチフェスティバル" - } ], - "hash" : "68906c11c99933d9b935559d28564dfb", - "id" : "1406201", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "恋愛シンドローム", - "alias_name_display" : "恋愛シンドローム", - "event" : [ { - "event_id" : "009", - "event_name" : "第9回プロダクションマッチフェスティバル" - } ], - "hash" : "94ed4bface9d28f01026c3bd4b37b5b6", - "id" : "1506202", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "深紅の絆", - "alias_name_display" : "深紅の絆", - "hash" : "488b63adfa1f6ee6a8094d896c06a482", - "id" : "1410001", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "深紅の絆", - "alias_name_display" : "深紅の絆", - "hash" : "b5fcc529f14d2af14cc88049959f75e5", - "id" : "1510002", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "16b8ab88018ec7d082ed5e30fe919777", - "id" : "1410201", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "14945818d71edf6c58aca2f6ac285880", - "id" : "1510202", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "永遠のキズナ", - "alias_name_display" : "永遠のキズナ", - "hash" : "9e9302ef4df411ebec766455d8639829", - "id" : "1415001", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "永遠のキズナ", - "alias_name_display" : "永遠のキズナ", - "hash" : "ee143713daf8980b379fcf4cb0781252", - "id" : "1515002", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "夜の一面", - "alias_name_display" : "夜の一面", - "hash" : "6b05c13dbff446aa54b864db247803bc", - "id" : "1422801", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "夜の一面", - "alias_name_display" : "夜の一面", - "hash" : "65767bfe6dbd99ac9fadfc92b50b8ef4", - "id" : "1522802", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "夏の秘めごと", - "alias_name_display" : "夏の秘めごと", - "hash" : "30108d92501e8c84f060155397d0c3cf", - "id" : "1425501", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "夏の秘めごと", - "alias_name_display" : "夏の秘めごと", - "hash" : "73bf94a283339f78981639b3e49dd978", - "id" : "1525502", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "紡ぐ想い", - "alias_name_display" : "紡ぐ想い", - "event" : [ { - "event_id" : 718, - "event_name" : "ドリームLIVEフェスティバル 新春SP" - } ], - "hash" : "82a3479c20cdb541e831b7c4e5545101", - "id" : "1430301", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "紡ぐ想い", - "alias_name_display" : "紡ぐ想い", - "event" : [ { - "event_id" : 718, - "event_name" : "ドリームLIVEフェスティバル 新春SP" - } ], - "hash" : "d57410cf13e6180f953b6a74468ce188", - "id" : "1530302", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "あいの待ち人", - "alias_name_display" : "あいの待ち人", - "hash" : "b575c60c5be78090ea7ea898230be35c", - "id" : "1433601", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "あいの待ち人", - "alias_name_display" : "あいの待ち人", - "hash" : "7c594e9d082d82d137aed4b622810830", - "id" : "1533602", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "5thアニバーサリー", - "alias_name_display" : "5thアニバーサリー", - "event" : [ { - "event_id" : 1708, - "event_name" : "アイドルプロデュース the 5th Anniversary" - } ], - "hash" : "3778fb8d5f804874476ab09b229a0b02", - "id" : "1436701", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "5thアニバーサリー", - "alias_name_display" : "5thアニバーサリー", - "event" : [ { - "event_id" : 1708, - "event_name" : "アイドルプロデュース the 5th Anniversary" - } ], - "hash" : "bbd2f79e3d424243b81065cdb02254b3", - "id" : "1536702", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "5thアニバーサリー・S", - "alias_name_display" : "5thアニバーサリー・S", - "event" : [ { - "event_id" : 1708, - "event_name" : "アイドルプロデュース the 5th Anniversary" - } ], - "hash" : "ae5998871579b27a0290534675a8ae45", - "id" : "1436801", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "5thアニバーサリー・S", - "alias_name_display" : "5thアニバーサリー・S", - "event" : [ { - "event_id" : 1708, - "event_name" : "アイドルプロデュース the 5th Anniversary" - } ], - "hash" : "992e3ae2a449f25bc4678f9bde5e327d", - "id" : "1536802", - "profile" : { - "bust" : "78", - "height" : "153", - "hip" : "80", - "waist" : "54", - "weight" : "40" - } - } ], - "idol_id" : 59, - "idol_name" : "佐久間まゆ", - "idol_name_display" : "佐久間まゆ", - "units" : [ { - "id" : "85", - "name" : "アンダーザデスク" - }, { - "id" : "127", - "name" : "落花流水" - }, { - "id" : "180", - "name" : "ハロウィンパーティー" - }, { - "id" : "192", - "name" : "Masque:Rade" - }, { - "id" : "194", - "name" : "サクヤヒメ" - }, { - "id" : "212", - "name" : "CINDERELLA GIRLS" - } ] -}, { - "aliases" : [ { - "alias_name" : "ニューウェーブ", - "alias_name_display" : "ニューウェーブ", - "event" : [ { - "event_id" : 401, - "event_name" : "新人アイドルプロデュース" - } ], - "hash" : "cca70f56774507cb696b0e85846a8786", - "id" : "1205301", - "profile" : { - "bust" : "75", - "height" : "145", - "hip" : "77", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "ニューウェーブ", - "alias_name_display" : "ニューウェーブ", - "event" : [ { - "event_id" : 401, - "event_name" : "新人アイドルプロデュース" - } ], - "hash" : "dd194a0d6c9801be6c7ff8401a9abb6a", - "id" : "1305302", - "profile" : { - "bust" : "75", - "height" : "145", - "hip" : "77", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "アメリカンスタイル", - "alias_name_display" : "アメリカンスタイル", - "event" : [ { - "event_id" : 501, - "event_name" : "アイドルLIVEツアーinUSA" - } ], - "hash" : "ccd71c6162319419c02c942f9a4fc25b", - "id" : "1206501", - "profile" : { - "bust" : "75", - "height" : "145", - "hip" : "77", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "アメリカンスタイル", - "alias_name_display" : "アメリカンスタイル", - "event" : [ { - "event_id" : 501, - "event_name" : "アイドルLIVEツアーinUSA" - } ], - "hash" : "5aa6b80bdf46181a90452a7c9a3d63d7", - "id" : "1306502", - "profile" : { - "bust" : "75", - "height" : "145", - "hip" : "77", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "ジューンブライド", - "alias_name_display" : "ジューンブライド", - "hash" : "a4d1885668eaa8e900c8f5a23eb08026", - "id" : "1210001", - "profile" : { - "bust" : "75", - "height" : "145", - "hip" : "77", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "ジューンブライド", - "alias_name_display" : "ジューンブライド", - "hash" : "6970f984e6d3f291ff2f448a2b1a12d5", - "id" : "1310002", - "profile" : { - "bust" : "75", - "height" : "145", - "hip" : "77", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "ピーチブライト", - "alias_name_display" : "ピーチブライト", - "hash" : "6d9e8b1a789c3e37cbe870d637e2b03e", - "id" : "1214801", - "profile" : { - "bust" : "75", - "height" : "145", - "hip" : "77", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "ピーチブライト", - "alias_name_display" : "ピーチブライト", - "hash" : "1b806506d65b67adbd6ecd51d47077c3", - "id" : "1314802", - "profile" : { - "bust" : "75", - "height" : "145", - "hip" : "77", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "振袖まつり", - "alias_name_display" : "振袖まつり", - "hash" : "eedf6394ca7b88fe4ecad5cced109e30", - "id" : "1219801", - "profile" : { - "bust" : "75", - "height" : "145", - "hip" : "77", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "振袖まつり", - "alias_name_display" : "振袖まつり", - "hash" : "e8c9d76c86a5b5fe86e5a1c438acb359", - "id" : "1319802", - "profile" : { - "bust" : "75", - "height" : "145", - "hip" : "77", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "ラブリーヒーロー", - "alias_name_display" : "ラブリーヒーロー", - "event" : [ { - "event_id" : 523, - "event_name" : "鋼鉄公演 きらりんロボ -襲来!コスメティア帝国-" - } ], - "hash" : "c1c6c25e5dcc6d8645f3646821d62193", - "id" : "1325602", - "profile" : { - "bust" : "75", - "height" : "145", - "hip" : "77", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "ピーチウェーブ", - "alias_name_display" : "ピーチウェーブ", - "event" : [ { - "event_id" : 801, - "event_name" : "アイドルLIVEロワイヤル" - } ], - "hash" : "66a93f44e6d4ebe903a0d2c9af55fa94", - "id" : "1409401", - "profile" : { - "bust" : "75", - "height" : "145", - "hip" : "77", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "ピーチウェーブ", - "alias_name_display" : "ピーチウェーブ", - "event" : [ { - "event_id" : 801, - "event_name" : "アイドルLIVEロワイヤル" - } ], - "hash" : "b0e88abd43d2e92070e87345604ba58e", - "id" : "1509402", - "profile" : { - "bust" : "75", - "height" : "145", - "hip" : "77", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "ももいろはぁと", - "alias_name_display" : "ももいろはぁと", - "hash" : "cd57db91a5128ab3f53353c546fde622", - "id" : "1417701", - "profile" : { - "bust" : "75", - "height" : "145", - "hip" : "77", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "ももいろはぁと", - "alias_name_display" : "ももいろはぁと", - "hash" : "67be2476e6f6f748af508b908680d3a4", - "id" : "1517702", - "profile" : { - "bust" : "75", - "height" : "145", - "hip" : "77", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "ピンキーサマーガール", - "alias_name_display" : "ピンキーサマーガール", - "event" : [ { - "event_id" : 714, - "event_name" : "夏祭りDEドリームLIVEフェスティバル" - } ], - "hash" : "66505d81c0f3883b0c8cea8b15730a0e", - "id" : "1425401", - "profile" : { - "bust" : "75", - "height" : "145", - "hip" : "77", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "ピンキーサマーガール", - "alias_name_display" : "ピンキーサマーガール", - "event" : [ { - "event_id" : 714, - "event_name" : "夏祭りDEドリームLIVEフェスティバル" - } ], - "hash" : "aa35983b252aac6dac6946873e8c284c", - "id" : "1525402", - "profile" : { - "bust" : "75", - "height" : "145", - "hip" : "77", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "ピーチ・ロワイヤル", - "alias_name_display" : "ピーチ・ロワイヤル", - "event" : [ { - "event_id" : 819, - "event_name" : "アイドルLIVEロワイヤル お月見SP" - } ], - "hash" : "26d33e3346c4ddd192d97386d5f6052d", - "id" : "1435501", - "profile" : { - "bust" : "75", - "height" : "145", - "hip" : "77", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "ピーチ・ロワイヤル", - "alias_name_display" : "ピーチ・ロワイヤル", - "event" : [ { - "event_id" : 819, - "event_name" : "アイドルLIVEロワイヤル お月見SP" - } ], - "hash" : "ebb11271a7d62ddd422485a4f70d346b", - "id" : "1535502", - "profile" : { - "bust" : "75", - "height" : "145", - "hip" : "77", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "ピンキーチアー", - "alias_name_display" : "ピンキーチアー", - "event" : [ { - "event_id" : 1512, - "event_name" : "第12回チーム対抗トークバトルショー" - } ], - "hash" : "25d4b3908e0cf5edea1c5c3b7dbdc238", - "id" : "1439801", - "profile" : { - "bust" : "75", - "height" : "145", - "hip" : "77", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "ピンキーチアー", - "alias_name_display" : "ピンキーチアー", - "event" : [ { - "event_id" : 1512, - "event_name" : "第12回チーム対抗トークバトルショー" - } ], - "hash" : "f3a647752b0e6c8f4d4938a2a5bbd308", - "id" : "1539802", - "profile" : { - "bust" : "75", - "height" : "145", - "hip" : "77", - "waist" : "55", - "weight" : "38" - } - } ], - "idol_id" : 60, - "idol_name" : "村松さくら", - "idol_name_display" : "村松さくら", - "units" : [ { - "id" : "99", - "name" : "ニューウェーブ" - }, { - "id" : "133", - "name" : "スケルツォ・プリマヴェーラ" - }, { - "id" : "211", - "name" : "ワンダー・フル" - } ] -}, { - "aliases" : [ { - "hash" : "131e22dcecbfcd1842e42ba64311950f", - "id" : "1207401", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "79", - "waist" : "53", - "weight" : "42" - } - }, { - "hash" : "ac752be594a7ef6f941afe54b16fb89f", - "id" : "1307402", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "79", - "waist" : "53", - "weight" : "42" - } - }, { - "alias_name" : "スズランの少女", - "alias_name_display" : "スズランの少女", - "hash" : "a972c564e643b4fd29062fd793dea518", - "id" : "1209101", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "79", - "waist" : "53", - "weight" : "42" - } - }, { - "alias_name" : "スズランの少女", - "alias_name_display" : "スズランの少女", - "hash" : "98f023a92a2325a9d8d8e6792c0fdfc5", - "id" : "1309102", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "79", - "waist" : "53", - "weight" : "42" - } - }, { - "alias_name" : "クリスマスパーティー", - "alias_name_display" : "クリスマスパーティー", - "hash" : "696123f234c80f15774af4abddf16b96", - "id" : "1213501", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "79", - "waist" : "53", - "weight" : "42" - } - }, { - "alias_name" : "クリスマスパーティー", - "alias_name_display" : "クリスマスパーティー", - "hash" : "58a8fe570f2ff89670664b97f7aa7e3c", - "id" : "1313502", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "79", - "waist" : "53", - "weight" : "42" - } - }, { - "alias_name" : "ネクストスターI.C", - "alias_name_display" : "ネクストスターI.C", - "event" : [ { - "event_id" : 1203, - "event_name" : "目指せきらきらモデル アイドルチャレンジ" - } ], - "hash" : "d1446ce3ef56732762e0abfd25c5af29", - "id" : "1318502", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "79", - "waist" : "53", - "weight" : "42" - } - }, { - "alias_name" : "ブライダルセレクション", - "alias_name_display" : "ブライダルセレクション", - "hash" : "baa3f8a78d448f1a5d92a31fb365d788", - "id" : "1221901", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "79", - "waist" : "53", - "weight" : "42" - } - }, { - "alias_name" : "ブライダルセレクション", - "alias_name_display" : "ブライダルセレクション", - "hash" : "e7625d22c7ab7a44501f90367a46f6ce", - "id" : "1321902", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "79", - "waist" : "53", - "weight" : "42" - } - }, { - "alias_name" : "新春ガール", - "alias_name_display" : "新春ガール", - "hash" : "0e072ad042d396bdaa534d07b3bff9ce", - "id" : "1225501", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "79", - "waist" : "53", - "weight" : "42" - } - }, { - "alias_name" : "新春ガール", - "alias_name_display" : "新春ガール", - "hash" : "9bd07056d855d3a6dec35a7e6892522a", - "id" : "1325502", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "79", - "waist" : "53", - "weight" : "42" - } - }, { - "alias_name" : "とらわれの少女", - "alias_name_display" : "とらわれの少女", - "event" : [ { - "event_id" : 1903, - "event_name" : "怪奇公演 心霊探偵の事件簿" - } ], - "hash" : "ba6722bb1c6dcdbd1a91709668e646aa", - "id" : "1329402", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "79", - "waist" : "53", - "weight" : "42" - } - }, { - "alias_name" : "ガーリーホープ", - "alias_name_display" : "ガーリーホープ", - "hash" : "05647a0c627bedf18e33330d17457248", - "id" : "1232201", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "79", - "waist" : "53", - "weight" : "42" - } - }, { - "alias_name" : "ガーリーホープ", - "alias_name_display" : "ガーリーホープ", - "hash" : "48a8bc3f29d0f6ca1d50f2ccc232704d", - "id" : "1332202", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "79", - "waist" : "53", - "weight" : "42" - } - }, { - "alias_name" : "一輪の幸せ", - "alias_name_display" : "一輪の幸せ", - "event" : [ { - "event_id" : 408, - "event_name" : "アイドルプロデュース 夜空に咲く花火編" - } ], - "hash" : "7366f59d1cb9104aa14408bf6b0a1685", - "id" : "1407801", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "79", - "waist" : "53", - "weight" : "42" - } - }, { - "alias_name" : "一輪の幸せ", - "alias_name_display" : "一輪の幸せ", - "event" : [ { - "event_id" : 408, - "event_name" : "アイドルプロデュース 夜空に咲く花火編" - } ], - "hash" : "0b0556489f7c356f4f86c7f62c1895fe", - "id" : "1507802", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "79", - "waist" : "53", - "weight" : "42" - } - }, { - "alias_name" : "一輪の微笑み", - "alias_name_display" : "一輪の微笑み", - "event" : [ { - "event_id" : 408, - "event_name" : "アイドルプロデュース 夜空に咲く花火編" - } ], - "hash" : "6a60f6b5f8784dc117518141ec85d6ce", - "id" : "1407901", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "79", - "waist" : "53", - "weight" : "42" - } - }, { - "alias_name" : "一輪の微笑み", - "alias_name_display" : "一輪の微笑み", - "event" : [ { - "event_id" : 408, - "event_name" : "アイドルプロデュース 夜空に咲く花火編" - } ], - "hash" : "e9e67aa3048f99a1b6c947420f14fd39", - "id" : "1507902", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "79", - "waist" : "53", - "weight" : "42" - } - }, { - "alias_name" : "ヴォヤージュ・ブレイバー", - "alias_name_display" : "ヴォヤージュ・ブレイバー", - "event" : [ { - "event_id" : 511, - "event_name" : "幻想公演 黒薔薇姫のヴォヤージュ" - } ], - "hash" : "3951d206a98c01816ea716b884c4493c", - "id" : "1413501", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "79", - "waist" : "53", - "weight" : "42" - } - }, { - "alias_name" : "ヴォヤージュ・ブレイバー", - "alias_name_display" : "ヴォヤージュ・ブレイバー", - "event" : [ { - "event_id" : 511, - "event_name" : "幻想公演 黒薔薇姫のヴォヤージュ" - } ], - "hash" : "7ee03937f2b9ff863c42b7f56b2e3452", - "id" : "1513502", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "79", - "waist" : "53", - "weight" : "42" - } - }, { - "alias_name" : "ゴシック・モデル", - "alias_name_display" : "ゴシック・モデル", - "event" : [ { - "event_id" : 1203, - "event_name" : "目指せきらきらモデル アイドルチャレンジ" - } ], - "hash" : "528f78898b64b0cfca21b9b3df92b8f9", - "id" : "1418501", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "79", - "waist" : "53", - "weight" : "42" - } - }, { - "alias_name" : "ゴシック・モデル", - "alias_name_display" : "ゴシック・モデル", - "event" : [ { - "event_id" : 1203, - "event_name" : "目指せきらきらモデル アイドルチャレンジ" - } ], - "hash" : "60957fb83e61728971e59c3b7d6db824", - "id" : "1518502", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "79", - "waist" : "53", - "weight" : "42" - } - }, { - "alias_name" : "ゴシック・モデル・S", - "alias_name_display" : "ゴシック・モデル・S", - "event" : [ { - "event_id" : 1203, - "event_name" : "目指せきらきらモデル アイドルチャレンジ" - } ], - "hash" : "34008f666855a0243d603059170c529d", - "id" : "1418601", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "79", - "waist" : "53", - "weight" : "42" - } - }, { - "alias_name" : "ゴシック・モデル・S", - "alias_name_display" : "ゴシック・モデル・S", - "event" : [ { - "event_id" : 1203, - "event_name" : "目指せきらきらモデル アイドルチャレンジ" - } ], - "hash" : "6368d0388cfd0c45ce09e176b611d5ba", - "id" : "1518602", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "79", - "waist" : "53", - "weight" : "42" - } - }, { - "alias_name" : "たいせつな言葉", - "alias_name_display" : "たいせつな言葉", - "event" : [ { - "event_id" : 1108, - "event_name" : "第8回プロダクション対抗トークバトルショー" - } ], - "hash" : "138f907e7b673a2da81e05f01255d8d4", - "id" : "1421601", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "79", - "waist" : "53", - "weight" : "42" - } - }, { - "alias_name" : "たいせつな言葉", - "alias_name_display" : "たいせつな言葉", - "event" : [ { - "event_id" : 1108, - "event_name" : "第8回プロダクション対抗トークバトルショー" - } ], - "hash" : "311b51c7dd9d3484cdc72a6581515137", - "id" : "1521602", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "79", - "waist" : "53", - "weight" : "42" - } - }, { - "alias_name" : "小さなひかり", - "alias_name_display" : "小さなひかり", - "hash" : "bdbf0b4f40b07b310430176c7c3fae8a", - "id" : "1427401", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "79", - "waist" : "53", - "weight" : "42" - } - }, { - "alias_name" : "小さなひかり", - "alias_name_display" : "小さなひかり", - "hash" : "9024cb32c76078e8f0e4850151c007ba", - "id" : "1527402", - "profile" : { - "bust" : "77", - "height" : "156", - "hip" : "79", - "waist" : "53", - "weight" : "42" - } - } ], - "idol_id" : 61, - "idol_name" : "白菊ほたる", - "idol_name_display" : "白菊ほたる", - "units" : [ { - "id" : "58", - "name" : "ミス・フォーチュン" - }, { - "id" : "129", - "name" : "ワンステップス" - }, { - "id" : "130", - "name" : "GIRLS BE" - }, { - "id" : "162", - "name" : "ブライダルセレクション" - }, { - "id" : "172", - "name" : "GIRLS BE NEXT STEP" - } ] -}, { - "aliases" : [ { - "hash" : "bad5f37bdb10a4526a1783e377e160ff", - "id" : "1208501", - "profile" : { - "bust" : "75", - "height" : "147", - "hip" : "77", - "waist" : "54", - "weight" : "39" - } - }, { - "hash" : "68cea8b7be360ca60cfe489fef72ba4d", - "id" : "1308502", - "profile" : { - "bust" : "75", - "height" : "147", - "hip" : "77", - "waist" : "54", - "weight" : "39" - } - }, { - "alias_name" : "ポッピンパンク", - "alias_name_display" : "ポッピンパンク", - "hash" : "d79fbb722742fb5beb56c15f1c4f103f", - "id" : "1209601", - "profile" : { - "bust" : "75", - "height" : "147", - "hip" : "77", - "waist" : "54", - "weight" : "39" - } - }, { - "alias_name" : "ポッピンパンク", - "alias_name_display" : "ポッピンパンク", - "hash" : "c2b615df454d63ec7b6d75b7764088f0", - "id" : "1309602", - "profile" : { - "bust" : "75", - "height" : "147", - "hip" : "77", - "waist" : "54", - "weight" : "39" - } - }, { - "alias_name" : "振袖まつり", - "alias_name_display" : "振袖まつり", - "hash" : "7a86475ebfdde585eda4c811ec24cbad", - "id" : "1219701", - "profile" : { - "bust" : "75", - "height" : "147", - "hip" : "77", - "waist" : "54", - "weight" : "39" - } - }, { - "alias_name" : "振袖まつり", - "alias_name_display" : "振袖まつり", - "hash" : "bdd3d0105cd1458f0dc2d730aa7d1d7d", - "id" : "1319702", - "profile" : { - "bust" : "75", - "height" : "147", - "hip" : "77", - "waist" : "54", - "weight" : "39" - } - }, { - "alias_name" : "春キャンプ", - "alias_name_display" : "春キャンプ", - "event" : [ { - "event_id" : 1701, - "event_name" : "アイドルプロデュース はじめてのキャンプ" - } ], - "hash" : "b371a7c3e8b202a0c678f650caab9648", - "id" : "1221401", - "profile" : { - "bust" : "75", - "height" : "147", - "hip" : "77", - "waist" : "54", - "weight" : "39" - } - }, { - "alias_name" : "春キャンプ", - "alias_name_display" : "春キャンプ", - "event" : [ { - "event_id" : 1701, - "event_name" : "アイドルプロデュース はじめてのキャンプ" - } ], - "hash" : "8c64826cbb5c5e106dc37e01b4613eb0", - "id" : "1321402", - "profile" : { - "bust" : "75", - "height" : "147", - "hip" : "77", - "waist" : "54", - "weight" : "39" - } - }, { - "alias_name" : "笑顔でキャンプ", - "alias_name_display" : "笑顔でキャンプ", - "event" : [ { - "event_id" : 1701, - "event_name" : "アイドルプロデュース はじめてのキャンプ" - } ], - "hash" : "8641b029a36d30cac2224b3e28374de5", - "id" : "1221501", - "profile" : { - "bust" : "75", - "height" : "147", - "hip" : "77", - "waist" : "54", - "weight" : "39" - } - }, { - "alias_name" : "笑顔でキャンプ", - "alias_name_display" : "笑顔でキャンプ", - "event" : [ { - "event_id" : 1701, - "event_name" : "アイドルプロデュース はじめてのキャンプ" - } ], - "hash" : "4aa82a539c35e043008a425cb5500a6d", - "id" : "1321502", - "profile" : { - "bust" : "75", - "height" : "147", - "hip" : "77", - "waist" : "54", - "weight" : "39" - } - }, { - "alias_name" : "ドリームトリック", - "alias_name_display" : "ドリームトリック", - "event" : [ { - "event_id" : 721, - "event_name" : "第21回ドリームLIVEフェスティバル" - } ], - "hash" : "fa77d5ee099e6a92a37b073c109a9998", - "id" : "1227701", - "profile" : { - "bust" : "75", - "height" : "147", - "hip" : "77", - "waist" : "54", - "weight" : "39" - } - }, { - "alias_name" : "ドリームトリック", - "alias_name_display" : "ドリームトリック", - "event" : [ { - "event_id" : 721, - "event_name" : "第21回ドリームLIVEフェスティバル" - } ], - "hash" : "e976ab9a95755872d16aa104b21250cb", - "id" : "1327702", - "profile" : { - "bust" : "75", - "height" : "147", - "hip" : "77", - "waist" : "54", - "weight" : "39" - } - }, { - "alias_name" : "パンクな乙女", - "alias_name_display" : "パンクな乙女", - "event" : [ { - "event_id" : "012", - "event_name" : "第12回プロダクションマッチフェスティバル" - } ], - "hash" : "1b3eb0f6d24358407bf0ae20924dda0f", - "id" : "1409001", - "profile" : { - "bust" : "75", - "height" : "147", - "hip" : "77", - "waist" : "54", - "weight" : "39" - } - }, { - "alias_name" : "パンクな乙女", - "alias_name_display" : "パンクな乙女", - "event" : [ { - "event_id" : "012", - "event_name" : "第12回プロダクションマッチフェスティバル" - } ], - "hash" : "1cd236539b1fd894749b204de5366773", - "id" : "1509002", - "profile" : { - "bust" : "75", - "height" : "147", - "hip" : "77", - "waist" : "54", - "weight" : "39" - } - }, { - "alias_name" : "タイニーロワイヤル", - "alias_name_display" : "タイニーロワイヤル", - "event" : [ { - "event_id" : 804, - "event_name" : "第4回アイドルLIVEロワイヤル" - } ], - "hash" : "562859c070d8be5fed9ff656590c9130", - "id" : "1413101", - "profile" : { - "bust" : "75", - "height" : "147", - "hip" : "77", - "waist" : "54", - "weight" : "39" - } - }, { - "alias_name" : "タイニーロワイヤル", - "alias_name_display" : "タイニーロワイヤル", - "event" : [ { - "event_id" : 804, - "event_name" : "第4回アイドルLIVEロワイヤル" - } ], - "hash" : "a378ecd5a22ee861931d828f3bb9b5c6", - "id" : "1513102", - "profile" : { - "bust" : "75", - "height" : "147", - "hip" : "77", - "waist" : "54", - "weight" : "39" - } - }, { - "alias_name" : "ちいさなメイドさん", - "alias_name_display" : "ちいさなメイドさん", - "hash" : "da000df3ec68bd3bdeb736063003bda4", - "id" : "1417501", - "profile" : { - "bust" : "75", - "height" : "147", - "hip" : "77", - "waist" : "54", - "weight" : "39" - } - }, { - "alias_name" : "ちいさなメイドさん", - "alias_name_display" : "ちいさなメイドさん", - "hash" : "9ab6c26a04dabd10040b29b2743401bf", - "id" : "1517502", - "profile" : { - "bust" : "75", - "height" : "147", - "hip" : "77", - "waist" : "54", - "weight" : "39" - } - }, { - "alias_name" : "小悪魔エース", - "alias_name_display" : "小悪魔エース", - "hash" : "2be0cb2364a23cddd828baa99f2be3af", - "id" : "1427801", - "profile" : { - "bust" : "75", - "height" : "147", - "hip" : "77", - "waist" : "54", - "weight" : "39" - } - }, { - "alias_name" : "小悪魔エース", - "alias_name_display" : "小悪魔エース", - "hash" : "d705eed7b89ddaf08fb7818f0ca2fa0c", - "id" : "1527802", - "profile" : { - "bust" : "75", - "height" : "147", - "hip" : "77", - "waist" : "54", - "weight" : "39" - } - }, { - "alias_name" : "スウィートデビル", - "alias_name_display" : "スウィートデビル", - "event" : [ { - "event_id" : 725, - "event_name" : "第25回ドリームLIVEフェスティバル" - } ], - "hash" : "3dacc7a55df85271a71ceada8e29e140", - "id" : "1436201", - "profile" : { - "bust" : "75", - "height" : "147", - "hip" : "77", - "waist" : "54", - "weight" : "39" - } - }, { - "alias_name" : "スウィートデビル", - "alias_name_display" : "スウィートデビル", - "event" : [ { - "event_id" : 725, - "event_name" : "第25回ドリームLIVEフェスティバル" - } ], - "hash" : "1aea545811f830d6c6baad2453571a96", - "id" : "1536202", - "profile" : { - "bust" : "75", - "height" : "147", - "hip" : "77", - "waist" : "54", - "weight" : "39" - } - } ], - "idol_id" : 62, - "idol_name" : "早坂美玲", - "idol_name_display" : "早坂美玲", - "units" : [ { - "id" : "83", - "name" : "Shock'in Pink!" - }, { - "id" : "108", - "name" : "individuals" - }, { - "id" : "186", - "name" : "LittlePOPS" - } ] -}, { - "aliases" : [ { - "hash" : "6a5d8d6eb2f6d9d734794f521447d592", - "id" : "1212001", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "hash" : "c61eed5b951b911628aa095766126575", - "id" : "1312002", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "ラブ&ハッピー", - "alias_name_display" : "ラブ&ハッピー", - "event" : [ { - "event_id" : 1001, - "event_name" : "プロダクション対抗ドリームLIVEフェスティバル" - } ], - "hash" : "ca5185ecc1e5ec937692c1fc7c17ea6b", - "id" : "1213701", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "ラブ&ハッピー", - "alias_name_display" : "ラブ&ハッピー", - "event" : [ { - "event_id" : 1001, - "event_name" : "プロダクション対抗ドリームLIVEフェスティバル" - } ], - "hash" : "48305cfd4d369af92be35406d600b694", - "id" : "1313702", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "グリッターステージ", - "alias_name_display" : "グリッターステージ", - "hash" : "79a9586c65b68c645c2d4ecc038911dc", - "id" : "1215301", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "グリッターステージ", - "alias_name_display" : "グリッターステージ", - "hash" : "3ed3bde1cf66bc0ed3ab12dd9f35dbd3", - "id" : "1315302", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "ラヴスピリッツ", - "alias_name_display" : "ラヴスピリッツ", - "hash" : "69725122bafcda8e1df0dde17ed22ca6", - "id" : "1220101", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "ラヴスピリッツ", - "alias_name_display" : "ラヴスピリッツ", - "hash" : "897aab97bad314ac6a7299e13eb7fb55", - "id" : "1320102", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "シーフパートナー", - "alias_name_display" : "シーフパートナー", - "event" : [ { - "event_id" : 521, - "event_name" : "怪盗公演 美しき追跡者" - } ], - "hash" : "16a509cb6675eac3dd83dfac5743af24", - "id" : "1323202", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "ピースフルワールド", - "alias_name_display" : "ピースフルワールド", - "event" : [ { - "event_id" : "030", - "event_name" : "第30回プロダクションマッチフェスティバル" - } ], - "hash" : "f3ba2abe509615506b3d536bb54388d1", - "id" : "1228901", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "ピースフルワールド", - "alias_name_display" : "ピースフルワールド", - "event" : [ { - "event_id" : "030", - "event_name" : "第30回プロダクションマッチフェスティバル" - } ], - "hash" : "b3132f8ad6730a31b05e7e51066d8302", - "id" : "1328902", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "船上の音楽家", - "alias_name_display" : "船上の音楽家", - "event" : [ { - "event_id" : 513, - "event_name" : "海賊公演 オーシャンクルーズ" - } ], - "hash" : "f7c5267834a12b3aa0bc4601c553e3f3", - "id" : "1415601", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "船上の音楽家", - "alias_name_display" : "船上の音楽家", - "event" : [ { - "event_id" : 513, - "event_name" : "海賊公演 オーシャンクルーズ" - } ], - "hash" : "4cfdc9ae4b380127768d15e1988475bc", - "id" : "1515602", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "ピースドリーマー", - "alias_name_display" : "ピースドリーマー", - "event" : [ { - "event_id" : "025", - "event_name" : "第25回プロダクションマッチフェスティバル" - } ], - "hash" : "dd3751e2991152c78eed4e4bbc8b2401", - "id" : "1430201", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "ピースドリーマー", - "alias_name_display" : "ピースドリーマー", - "event" : [ { - "event_id" : "025", - "event_name" : "第25回プロダクションマッチフェスティバル" - } ], - "hash" : "1dde1350d45ec9d096ef02d5561bec81", - "id" : "1530202", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "パワーオブラブ", - "alias_name_display" : "パワーオブラブ", - "hash" : "d1cf0c8c8e9f653db5555858fcad64d5", - "id" : "1438501", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "パワーオブラブ", - "alias_name_display" : "パワーオブラブ", - "hash" : "23ad85825d08c2b01758a0a95eee45d2", - "id" : "1538502", - "profile" : { - "bust" : "78", - "height" : "155", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - } ], - "idol_id" : 63, - "idol_name" : "有浦柑奈", - "idol_name_display" : "有浦柑奈", - "units" : [ { - "id" : "24", - "name" : "シンフォニック・ワールド" - }, { - "id" : "92", - "name" : "ゴスペルシスターズ" - }, { - "id" : "132", - "name" : "thinE/Dasein" - } ] -}, { - "aliases" : [ { - "hash" : "5d22c46f3d70b063510b1afdb41faca1", - "id" : "1216401", - "profile" : { - "bust" : "70", - "height" : "164", - "hip" : "74", - "waist" : "53", - "weight" : "40" - } - }, { - "hash" : "954b44944c72b799603401083f286017", - "id" : "1316402", - "profile" : { - "bust" : "70", - "height" : "164", - "hip" : "74", - "waist" : "53", - "weight" : "40" - } - }, { - "alias_name" : "メルヘンアニマルズ", - "alias_name_display" : "メルヘンアニマルズ", - "hash" : "65156c8acd72ce0a30ac8cc82eae3922", - "id" : "1218101", - "profile" : { - "bust" : "70", - "height" : "164", - "hip" : "74", - "waist" : "53", - "weight" : "40" - } - }, { - "alias_name" : "メルヘンアニマルズ", - "alias_name_display" : "メルヘンアニマルズ", - "hash" : "44e8a59cac558d9023fe85d39e422b41", - "id" : "1318102", - "profile" : { - "bust" : "70", - "height" : "164", - "hip" : "74", - "waist" : "53", - "weight" : "40" - } - }, { - "alias_name" : "新春I.C", - "alias_name_display" : "新春I.C", - "event" : [ { - "event_id" : 1204, - "event_name" : "新年かくし芸SP アイドルチャレンジ" - } ], - "hash" : "6cbba06b6172e63b542c161dda875278", - "id" : "1319602", - "profile" : { - "bust" : "70", - "height" : "164", - "hip" : "74", - "waist" : "53", - "weight" : "40" - } - }, { - "alias_name" : "アクティブガール", - "alias_name_display" : "アクティブガール", - "hash" : "8c20bc6f85beedbeeaafaa2bd426b225", - "id" : "1225201", - "profile" : { - "bust" : "70", - "height" : "164", - "hip" : "74", - "waist" : "53", - "weight" : "40" - } - }, { - "alias_name" : "アクティブガール", - "alias_name_display" : "アクティブガール", - "hash" : "5e93669a32a19d588d7663d863b94028", - "id" : "1325202", - "profile" : { - "bust" : "70", - "height" : "164", - "hip" : "74", - "waist" : "53", - "weight" : "40" - } - }, { - "alias_name" : "華傘の芸達者", - "alias_name_display" : "華傘の芸達者", - "event" : [ { - "event_id" : 1204, - "event_name" : "新年かくし芸SP アイドルチャレンジ" - } ], - "hash" : "e43584224d572bfa69384210ecc50cea", - "id" : "1421001", - "profile" : { - "bust" : "70", - "height" : "164", - "hip" : "74", - "waist" : "53", - "weight" : "40" - } - }, { - "alias_name" : "華傘の芸達者", - "alias_name_display" : "華傘の芸達者", - "event" : [ { - "event_id" : 1204, - "event_name" : "新年かくし芸SP アイドルチャレンジ" - } ], - "hash" : "660992e6898af963ff6f32f2e1473823", - "id" : "1521002", - "profile" : { - "bust" : "70", - "height" : "164", - "hip" : "74", - "waist" : "53", - "weight" : "40" - } - }, { - "alias_name" : "華傘の芸達者・S", - "alias_name_display" : "華傘の芸達者・S", - "event" : [ { - "event_id" : 1204, - "event_name" : "新年かくし芸SP アイドルチャレンジ" - } ], - "hash" : "05585b2d42b3c8fc7da7b2ff930b0511", - "id" : "1421101", - "profile" : { - "bust" : "70", - "height" : "164", - "hip" : "74", - "waist" : "53", - "weight" : "40" - } - }, { - "alias_name" : "華傘の芸達者・S", - "alias_name_display" : "華傘の芸達者・S", - "event" : [ { - "event_id" : 1204, - "event_name" : "新年かくし芸SP アイドルチャレンジ" - } ], - "hash" : "2b87ffadfcb99c1f9e6a8b0d13ce2827", - "id" : "1521102", - "profile" : { - "bust" : "70", - "height" : "164", - "hip" : "74", - "waist" : "53", - "weight" : "40" - } - }, { - "alias_name" : "春らんまん", - "alias_name_display" : "春らんまん", - "event" : [ { - "event_id" : 712, - "event_name" : "花見DEドリームLIVEフェスティバル" - } ], - "hash" : "4c573ad24433422bc5f9887af463ecd7", - "id" : "1423401", - "profile" : { - "bust" : "70", - "height" : "164", - "hip" : "74", - "waist" : "53", - "weight" : "40" - } - }, { - "alias_name" : "春らんまん", - "alias_name_display" : "春らんまん", - "event" : [ { - "event_id" : 712, - "event_name" : "花見DEドリームLIVEフェスティバル" - } ], - "hash" : "faa2ce907ee26f77d26dcbe274eeb3be", - "id" : "1523402", - "profile" : { - "bust" : "70", - "height" : "164", - "hip" : "74", - "waist" : "53", - "weight" : "40" - } - }, { - "alias_name" : "秋風乙女", - "alias_name_display" : "秋風乙女", - "hash" : "91de97f14dbeab0a3ac2c81c8e1de8de", - "id" : "1428101", - "profile" : { - "bust" : "70", - "height" : "164", - "hip" : "74", - "waist" : "53", - "weight" : "40" - } - }, { - "alias_name" : "秋風乙女", - "alias_name_display" : "秋風乙女", - "hash" : "baa712b49bc10f53ede75059dfa577a1", - "id" : "1528102", - "profile" : { - "bust" : "70", - "height" : "164", - "hip" : "74", - "waist" : "53", - "weight" : "40" - } - }, { - "alias_name" : "常夏アロハ", - "alias_name_display" : "常夏アロハ", - "event" : [ { - "event_id" : 1707, - "event_name" : "アイドルプロデュース アロハ!常夏の楽園" - } ], - "hash" : "5528621801ae35705602432711607da1", - "id" : "1435001", - "profile" : { - "bust" : "70", - "height" : "164", - "hip" : "74", - "waist" : "53", - "weight" : "40" - } - }, { - "alias_name" : "常夏アロハ", - "alias_name_display" : "常夏アロハ", - "event" : [ { - "event_id" : 1707, - "event_name" : "アイドルプロデュース アロハ!常夏の楽園" - } ], - "hash" : "621427e1c27d15a53a285a467de19a74", - "id" : "1535002", - "profile" : { - "bust" : "70", - "height" : "164", - "hip" : "74", - "waist" : "53", - "weight" : "40" - } - }, { - "alias_name" : "笑顔でアロハ", - "alias_name_display" : "笑顔でアロハ", - "event" : [ { - "event_id" : 1707, - "event_name" : "アイドルプロデュース アロハ!常夏の楽園" - } ], - "hash" : "3b49dc6079a69a60f31a53c6e1688161", - "id" : "1435101", - "profile" : { - "bust" : "70", - "height" : "164", - "hip" : "74", - "waist" : "53", - "weight" : "40" - } - }, { - "alias_name" : "笑顔でアロハ", - "alias_name_display" : "笑顔でアロハ", - "event" : [ { - "event_id" : 1707, - "event_name" : "アイドルプロデュース アロハ!常夏の楽園" - } ], - "hash" : "99f50339aa26af0bb95f0d37c9066bd6", - "id" : "1535102", - "profile" : { - "bust" : "70", - "height" : "164", - "hip" : "74", - "waist" : "53", - "weight" : "40" - } - }, { - "alias_name" : "ファインスカイ", - "alias_name_display" : "ファインスカイ", - "hash" : "093a75688be3f74755f356c07b83bcfa", - "id" : "1438901", - "profile" : { - "bust" : "70", - "height" : "164", - "hip" : "74", - "waist" : "53", - "weight" : "40" - } - }, { - "alias_name" : "ファインスカイ", - "alias_name_display" : "ファインスカイ", - "hash" : "ad1d9695914de9d5464ffe838872530f", - "id" : "1538902", - "profile" : { - "bust" : "70", - "height" : "164", - "hip" : "74", - "waist" : "53", - "weight" : "40" - } - } ], - "idol_id" : 64, - "idol_name" : "乙倉悠貴", - "idol_name_display" : "乙倉悠貴", - "units" : [ { - "id" : "166", - "name" : "メルヘンアニマルズ" - }, { - "id" : "191", - "name" : "Love Yell" - } ] -}, { - "aliases" : [ { - "alias_name" : "クリスマスパーティー", - "alias_name_display" : "クリスマスパーティー", - "hash" : "2e36224b97dfdd2701e9803ee789f47d", - "id" : "1206701", - "profile" : { - "bust" : "86", - "height" : "163", - "hip" : "85", - "waist" : "59", - "weight" : "46" - } - }, { - "alias_name" : "クリスマスパーティー", - "alias_name_display" : "クリスマスパーティー", - "hash" : "b2f52e7661963396866c5c8801e3c7a8", - "id" : "1306702", - "profile" : { - "bust" : "86", - "height" : "163", - "hip" : "85", - "waist" : "59", - "weight" : "46" - } - }, { - "alias_name" : "レインドロップ", - "alias_name_display" : "レインドロップ", - "event" : [ { - "event_id" : 407, - "event_name" : "アイドルプロデュース 鎌倉あじさい巡り" - } ], - "hash" : "d9e622ccd32e6e70f379da48c416ee10", - "id" : "1209801", - "profile" : { - "bust" : "86", - "height" : "163", - "hip" : "85", - "waist" : "59", - "weight" : "46" - } - }, { - "alias_name" : "レインドロップ", - "alias_name_display" : "レインドロップ", - "event" : [ { - "event_id" : 407, - "event_name" : "アイドルプロデュース 鎌倉あじさい巡り" - } ], - "hash" : "d09aeee3ce393112c2532b038367423e", - "id" : "1309802", - "profile" : { - "bust" : "86", - "height" : "163", - "hip" : "85", - "waist" : "59", - "weight" : "46" - } - }, { - "alias_name" : "レインドロップスマイル", - "alias_name_display" : "レインドロップスマイル", - "event" : [ { - "event_id" : 407, - "event_name" : "アイドルプロデュース 鎌倉あじさい巡り" - } ], - "hash" : "619ff1724ecbaf11bc00c823d4eea577", - "id" : "1209901", - "profile" : { - "bust" : "86", - "height" : "163", - "hip" : "85", - "waist" : "59", - "weight" : "46" - } - }, { - "alias_name" : "レインドロップスマイル", - "alias_name_display" : "レインドロップスマイル", - "event" : [ { - "event_id" : 407, - "event_name" : "アイドルプロデュース 鎌倉あじさい巡り" - } ], - "hash" : "6b357a435e6bc4225e825246e617fe5b", - "id" : "1309902", - "profile" : { - "bust" : "86", - "height" : "163", - "hip" : "85", - "waist" : "59", - "weight" : "46" - } - }, { - "alias_name" : "ドライブRQ", - "alias_name_display" : "ドライブRQ", - "hash" : "219438cc64a62c45381b04498feb51e5", - "id" : "1216101", - "profile" : { - "bust" : "86", - "height" : "163", - "hip" : "85", - "waist" : "59", - "weight" : "46" - } - }, { - "alias_name" : "ドライブRQ", - "alias_name_display" : "ドライブRQ", - "hash" : "3950c0f64d2f068f043545e1f793cad3", - "id" : "1316102", - "profile" : { - "bust" : "86", - "height" : "163", - "hip" : "85", - "waist" : "59", - "weight" : "46" - } - }, { - "alias_name" : "ナイトパーティー", - "alias_name_display" : "ナイトパーティー", - "hash" : "e966697d9927d312afa57c71c74bc204", - "id" : "1220701", - "profile" : { - "bust" : "86", - "height" : "163", - "hip" : "85", - "waist" : "59", - "weight" : "46" - } - }, { - "alias_name" : "ナイトパーティー", - "alias_name_display" : "ナイトパーティー", - "hash" : "07e249cdd43460fc4f8196cf5ca5d81f", - "id" : "1320702", - "profile" : { - "bust" : "86", - "height" : "163", - "hip" : "85", - "waist" : "59", - "weight" : "46" - } - }, { - "alias_name" : "秘めた輝き", - "alias_name_display" : "秘めた輝き", - "hash" : "86f3ff681d40a7f6da7df78c867f6e7c", - "id" : "1400501", - "profile" : { - "bust" : "86", - "height" : "163", - "hip" : "85", - "waist" : "59", - "weight" : "46" - } - }, { - "alias_name" : "秘めた輝き", - "alias_name_display" : "秘めた輝き", - "hash" : "f8db7c518658eac25ae8faf1ccc9eded", - "id" : "1500502", - "profile" : { - "bust" : "86", - "height" : "163", - "hip" : "85", - "waist" : "59", - "weight" : "46" - } - }, { - "alias_name" : "ドライブインサマー", - "alias_name_display" : "ドライブインサマー", - "event" : [ { - "event_id" : 211, - "event_name" : "アイドルサバイバルinサマーバケーション" - } ], - "hash" : "d4a273e502c1c75d67f267e6d9e846a0", - "id" : "1408601", - "profile" : { - "bust" : "86", - "height" : "163", - "hip" : "85", - "waist" : "59", - "weight" : "46" - } - }, { - "alias_name" : "ドライブインサマー", - "alias_name_display" : "ドライブインサマー", - "event" : [ { - "event_id" : 211, - "event_name" : "アイドルサバイバルinサマーバケーション" - } ], - "hash" : "0bd2ddf631fd26f0da534b0565402077", - "id" : "1508602", - "profile" : { - "bust" : "86", - "height" : "163", - "hip" : "85", - "waist" : "59", - "weight" : "46" - } - }, { - "alias_name" : "乙女の素顔", - "alias_name_display" : "乙女の素顔", - "event" : [ { - "event_id" : "024", - "event_name" : "第24回プロダクションマッチフェスティバル" - } ], - "hash" : "54e7f6af667defe6b2ab433271c3fe9d", - "id" : "1428301", - "profile" : { - "bust" : "86", - "height" : "163", - "hip" : "85", - "waist" : "59", - "weight" : "46" - } - }, { - "alias_name" : "乙女の素顔", - "alias_name_display" : "乙女の素顔", - "event" : [ { - "event_id" : "024", - "event_name" : "第24回プロダクションマッチフェスティバル" - } ], - "hash" : "51c0da348e4a2dcb10c2488f7baa0a02", - "id" : "1528302", - "profile" : { - "bust" : "86", - "height" : "163", - "hip" : "85", - "waist" : "59", - "weight" : "46" - } - }, { - "alias_name" : "ドライブチアー", - "alias_name_display" : "ドライブチアー", - "event" : [ { - "event_id" : 1507, - "event_name" : "チーム対抗トークバトルショー オールスターSP" - } ], - "hash" : "321e95f43feeaba224015b8a9809d180", - "id" : "1432801", - "profile" : { - "bust" : "86", - "height" : "163", - "hip" : "85", - "waist" : "59", - "weight" : "46" - } - }, { - "alias_name" : "ドライブチアー", - "alias_name_display" : "ドライブチアー", - "event" : [ { - "event_id" : 1507, - "event_name" : "チーム対抗トークバトルショー オールスターSP" - } ], - "hash" : "c8e0646fdc38f0c2b314ea48b6cf8f18", - "id" : "1532802", - "profile" : { - "bust" : "86", - "height" : "163", - "hip" : "85", - "waist" : "59", - "weight" : "46" - } - }, { - "alias_name" : "ウィンターアクセル", - "alias_name_display" : "ウィンターアクセル", - "event" : [ { - "event_id" : 821, - "event_name" : "第21回アイドルLIVEロワイヤル" - } ], - "hash" : "30332395012024d6987aaefddfcd258d", - "id" : "1437701", - "profile" : { - "bust" : "86", - "height" : "163", - "hip" : "85", - "waist" : "59", - "weight" : "46" - } - }, { - "alias_name" : "ウィンターアクセル", - "alias_name_display" : "ウィンターアクセル", - "event" : [ { - "event_id" : 821, - "event_name" : "第21回アイドルLIVEロワイヤル" - } ], - "hash" : "1be46e70f136716b759b15340806be70", - "id" : "1537702", - "profile" : { - "bust" : "86", - "height" : "163", - "hip" : "85", - "waist" : "59", - "weight" : "46" - } - } ], - "idol_id" : 65, - "idol_name" : "原田美世", - "idol_name_display" : "原田美世", - "units" : [ { - "id" : "87", - "name" : "ウィンター・F・ドライバーズ" - }, { - "id" : "106", - "name" : "レインドロップ" - } ] -}, { - "aliases" : [ { - "alias_name" : "ムーンライトバニー", - "alias_name_display" : "ムーンライトバニー", - "event" : [ { - "event_id" : 107, - "event_name" : "秋夜のお月見会" - } ], - "hash" : "bd75cdaf7d77b14fca1d6f6c65dc88da", - "id" : "1002201", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "74", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "ムーンライトバニー", - "alias_name_display" : "ムーンライトバニー", - "event" : [ { - "event_id" : 107, - "event_name" : "秋夜のお月見会" - } ], - "hash" : "697b8f00afc7840f3ab4dccd1a2d1456", - "id" : "1102202", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "74", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "ひな祭り", - "alias_name_display" : "ひな祭り", - "event" : [ { - "event_id" : 209, - "event_name" : "アイドルサバイバルひな祭り2013" - } ], - "hash" : "ed07eefde06a0e74f9ef6a51f097542f", - "id" : "1208101", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "74", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "ひな祭り", - "alias_name_display" : "ひな祭り", - "event" : [ { - "event_id" : 209, - "event_name" : "アイドルサバイバルひな祭り2013" - } ], - "hash" : "ee50c5ea099be8622819ba79974e0227", - "id" : "1308102", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "74", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "ニューイヤースタイル", - "alias_name_display" : "ニューイヤースタイル", - "event" : [ { - "event_id" : 509, - "event_name" : "新春LIVEツアーカーニバル" - } ], - "hash" : "9ee2d80d09ebbb1c2ae6031cc9127cce", - "id" : "1213901", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "74", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "ニューイヤースタイル", - "alias_name_display" : "ニューイヤースタイル", - "event" : [ { - "event_id" : 509, - "event_name" : "新春LIVEツアーカーニバル" - } ], - "hash" : "22a3924b57af6ad84167ec6aab0cff9b", - "id" : "1313902", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "74", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "エレガントI.C", - "alias_name_display" : "エレガントI.C", - "event" : [ { - "event_id" : 1205, - "event_name" : "目指せ優雅なお嬢様 アイドルチャレンジ" - } ], - "hash" : "cd313c43cae82fae20be9a0dc72539e9", - "id" : "1320602", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "74", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "春風スポーツ", - "alias_name_display" : "春風スポーツ", - "hash" : "ad5ccce9185e2d6423e6a9c36d41a03f", - "id" : "1227301", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "74", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "春風スポーツ", - "alias_name_display" : "春風スポーツ", - "hash" : "e43755a547736e9b339caa808f96de7f", - "id" : "1327302", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "74", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "ロボティックガール", - "alias_name_display" : "ロボティックガール", - "hash" : "d3b7cfc6576419c59e677e6cf6067e36", - "id" : "1230001", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "74", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "ロボティックガール", - "alias_name_display" : "ロボティックガール", - "hash" : "0de2eecb0cc7557f01bc2960c1357848", - "id" : "1330002", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "74", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "天才ロボ少女", - "alias_name_display" : "天才ロボ少女", - "event" : [ { - "event_id" : 102, - "event_name" : "アイドルおもちつき大会" - } ], - "hash" : "53cac9bfd084f9b278d6d1757698f995", - "id" : "1400601", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "74", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "天才ロボ少女", - "alias_name_display" : "天才ロボ少女", - "event" : [ { - "event_id" : 102, - "event_name" : "アイドルおもちつき大会" - } ], - "hash" : "05533b7c1971f954c4ce5d1af1487281", - "id" : "1500602", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "74", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "ハッピー☆ジーニアス", - "alias_name_display" : "ハッピー☆ジーニアス", - "hash" : "373a25b220a7c12e4bd7c03e550e74b9", - "id" : "1408001", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "74", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "ハッピー☆ジーニアス", - "alias_name_display" : "ハッピー☆ジーニアス", - "hash" : "3b636158419583d38a6509dc474a955c", - "id" : "1508002", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "74", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "ロボティックチアー", - "alias_name_display" : "ロボティックチアー", - "event" : [ { - "event_id" : 1103, - "event_name" : "第3回プロダクション対抗トークバトルショー" - } ], - "hash" : "50f27e1fb1c584b25268a6cc542b4eee", - "id" : "1415301", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "74", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "ロボティックチアー", - "alias_name_display" : "ロボティックチアー", - "event" : [ { - "event_id" : 1103, - "event_name" : "第3回プロダクション対抗トークバトルショー" - } ], - "hash" : "d26af3a2ad88b76b7f13dfa31e5258c2", - "id" : "1515302", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "74", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "異才のお嬢様", - "alias_name_display" : "異才のお嬢様", - "event" : [ { - "event_id" : 1205, - "event_name" : "目指せ優雅なお嬢様 アイドルチャレンジ" - } ], - "hash" : "2d6b4f52e2a52bce202c7c9913fec8bc", - "id" : "1422601", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "74", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "異才のお嬢様", - "alias_name_display" : "異才のお嬢様", - "event" : [ { - "event_id" : 1205, - "event_name" : "目指せ優雅なお嬢様 アイドルチャレンジ" - } ], - "hash" : "0aae1c480ec4ee5619b67a1a02731bfe", - "id" : "1522602", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "74", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "異才のお嬢様・S", - "alias_name_display" : "異才のお嬢様・S", - "event" : [ { - "event_id" : 1205, - "event_name" : "目指せ優雅なお嬢様 アイドルチャレンジ" - } ], - "hash" : "ff2d88dddcb499d5b89335b94f798535", - "id" : "1422701", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "74", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "異才のお嬢様・S", - "alias_name_display" : "異才のお嬢様・S", - "event" : [ { - "event_id" : 1205, - "event_name" : "目指せ優雅なお嬢様 アイドルチャレンジ" - } ], - "hash" : "a7f7f6600d4db2e4c78e0cf90ff44d43", - "id" : "1522702", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "74", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "ブレイン☆スター", - "alias_name_display" : "ブレイン☆スター", - "event" : [ { - "event_id" : 1403, - "event_name" : "第3回ぷちデレラコレクション" - } ], - "hash" : "d8d9d6c2d5505244c48d772004ffd9e1", - "id" : "1426901", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "74", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "ブレイン☆スター", - "alias_name_display" : "ブレイン☆スター", - "event" : [ { - "event_id" : 1403, - "event_name" : "第3回ぷちデレラコレクション" - } ], - "hash" : "df97d20cf2ca9e3ec842401b5c6c91f7", - "id" : "1526902", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "74", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "機巧の匠", - "alias_name_display" : "機巧の匠", - "event" : [ { - "event_id" : 1907, - "event_name" : "ディアリースタークエスト ~夜桜奇譚~" - } ], - "hash" : "0cf8b99a662d263b1019cfdaca236a25", - "id" : "1439601", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "74", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "機巧の匠", - "alias_name_display" : "機巧の匠", - "event" : [ { - "event_id" : 1907, - "event_name" : "ディアリースタークエスト ~夜桜奇譚~" - } ], - "hash" : "f14270b8f9920a77b665767587d06b48", - "id" : "1539602", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "74", - "waist" : "53", - "weight" : "39" - } - } ], - "idol_id" : 66, - "idol_name" : "池袋晶葉", - "idol_name_display" : "池袋晶葉", - "units" : [ { - "id" : "68", - "name" : "ロボフレンズ" - }, { - "id" : "98", - "name" : "ニューイヤースタイル" - }, { - "id" : "102", - "name" : "パワフルヒーラーズ" - } ] -}, { - "aliases" : [ { - "hash" : "8f88bb5ffa40b4935ef04257ba4ba0d1", - "id" : "2000101", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "hash" : "e275bfe5941fd3959de60c5d5c5cacef", - "id" : "2100102", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "2ndアニバーサリー", - "alias_name_display" : "2ndアニバーサリー", - "event" : [ { - "event_id" : 410, - "event_name" : "アイドルプロデュース the 2nd Anniversary" - } ], - "hash" : "ec23ead4dad0294e7f859e7180c216fa", - "id" : "2212901", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "2ndアニバーサリー", - "alias_name_display" : "2ndアニバーサリー", - "event" : [ { - "event_id" : 410, - "event_name" : "アイドルプロデュース the 2nd Anniversary" - } ], - "hash" : "7ee306b8ce0265d3797de7fca6e0ee90", - "id" : "2312902", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "2ndアニバーサリー・スマイル", - "alias_name_display" : "2ndアニバーサリー・スマイル", - "event" : [ { - "event_id" : 410, - "event_name" : "アイドルプロデュース the 2nd Anniversary" - } ], - "hash" : "a1ed6e1e9fdf5dc0a23d07ce0802f595", - "id" : "2213001", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "2ndアニバーサリー・スマイル", - "alias_name_display" : "2ndアニバーサリー・スマイル", - "event" : [ { - "event_id" : 410, - "event_name" : "アイドルプロデュース the 2nd Anniversary" - } ], - "hash" : "4ad2264b26f6edfd36e29e62c0d70e81", - "id" : "2313002", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "2ndアニバーサリー・ネコミミ", - "alias_name_display" : "2ndアニバーサリー・ネコミミ", - "event" : [ { - "event_id" : 410, - "event_name" : "アイドルプロデュース the 2nd Anniversary" - } ], - "hash" : "59205400ae6b04749bb99aae38d7cc71", - "id" : "2213101", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "2ndアニバーサリー・ネコミミ", - "alias_name_display" : "2ndアニバーサリー・ネコミミ", - "event" : [ { - "event_id" : 410, - "event_name" : "アイドルプロデュース the 2nd Anniversary" - } ], - "hash" : "f48ee90e70c822c07e06aefe3b8ee743", - "id" : "2313102", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "ニュージェネレーション", - "alias_name_display" : "ニュージェネレーション", - "hash" : "f99103eb03994da80bd9b905ca9f0950", - "id" : "2400301", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "ニュージェネレーション", - "alias_name_display" : "ニュージェネレーション", - "hash" : "c44c3c58ab6e06f5068b5c459cc5ecdc", - "id" : "2500302", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "4ecccdd4fd25302d228913c62c869991", - "id" : "2401501", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "851d41d49c8e138e2818794223d01ab4", - "id" : "2501502", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "アイオライトゴシック", - "alias_name_display" : "アイオライトゴシック", - "hash" : "f7b0292baa798bfe74929c8e7c05092d", - "id" : "2503702", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "ピュアバレンタイン", - "alias_name_display" : "ピュアバレンタイン", - "hash" : "5245301299ebe8e1e0a46ccadf6bb57c", - "id" : "2405201", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "ピュアバレンタイン", - "alias_name_display" : "ピュアバレンタイン", - "hash" : "e0ad66fd1b1f4a0d8793edcfe8b63a1c", - "id" : "2505202", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "夜宴の歌姫", - "alias_name_display" : "夜宴の歌姫", - "hash" : "f95d822e4847009291d67450017969c9", - "id" : "2410201", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "夜宴の歌姫", - "alias_name_display" : "夜宴の歌姫", - "hash" : "5ef4284b0c62f564a54c532512615b11", - "id" : "2510202", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "ワンダフルマジック", - "alias_name_display" : "ワンダフルマジック", - "hash" : "4b2ae0ec6469cc81bc30c1a072ebd791", - "id" : "2413501", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "ワンダフルマジック", - "alias_name_display" : "ワンダフルマジック", - "hash" : "b94a98f20c407684429e56fb7a343797", - "id" : "2513502", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "シンデレラガール", - "alias_name_display" : "シンデレラガール", - "hash" : "c96e0729d1075d90a0dc35b9dc76c3ab", - "id" : "2415301", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "シンデレラガール", - "alias_name_display" : "シンデレラガール", - "hash" : "78dc475f1775fa007c1a659db07a383a", - "id" : "2515302", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "クールサマーバケーション", - "alias_name_display" : "クールサマーバケーション", - "hash" : "9e5333adbd10808d6211cd7e3c3737f8", - "id" : "2516702", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "アニバーサリープリンセス", - "alias_name_display" : "アニバーサリープリンセス", - "event" : [ { - "event_id" : 415, - "event_name" : "アイドルプロデュース the 3rd Anniversary" - } ], - "hash" : "fc7743180eca7195b9d2a04b251b3276", - "id" : "2419301", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "アニバーサリープリンセス", - "alias_name_display" : "アニバーサリープリンセス", - "event" : [ { - "event_id" : 415, - "event_name" : "アイドルプロデュース the 3rd Anniversary" - } ], - "hash" : "6c854bfa68ef78e7e087c7c5f8a982d4", - "id" : "2519302", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "ドリームストーリー", - "alias_name_display" : "ドリームストーリー", - "hash" : "716d4021bcc8ed6d35c14e54dcd8df3a", - "id" : "2521002", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "トラストプレゼント", - "alias_name_display" : "トラストプレゼント", - "hash" : "ec3d7440265ee3dd41046a803068117f", - "id" : "2427301", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "トラストプレゼント", - "alias_name_display" : "トラストプレゼント", - "hash" : "8830118c3b6b08eb9bed30f5aa4eea50", - "id" : "2527302", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "G4U!", - "alias_name_display" : "G4U!", - "hash" : "0f60bcd6c790b9dd47a8979281d73d82", - "id" : "2529702", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "ブルーウィンド", - "alias_name_display" : "ブルーウィンド", - "hash" : "621bcb5474139a8cbd98232034679147", - "id" : "2432001", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "ブルーウィンド", - "alias_name_display" : "ブルーウィンド", - "hash" : "f38a7d396e4d373572359acd4f1bfecf", - "id" : "2532002", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "アニバーサリーウィズメモリー", - "alias_name_display" : "アニバーサリーウィズメモリー", - "hash" : "3f49451db48570813fd26cec984a44f6", - "id" : "2436501", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "アニバーサリーウィズメモリー", - "alias_name_display" : "アニバーサリーウィズメモリー", - "hash" : "4ebbcc60acba9e2760af8a5be417782d", - "id" : "2536502", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - } ], - "idol_id" : 67, - "idol_name" : "渋谷凛", - "idol_name_display" : "渋谷凛", - "units" : [ { - "id" : "109", - "name" : "new generations" - }, { - "id" : "144", - "name" : "Triad Primus" - }, { - "id" : "197", - "name" : "アズール・ムジカ" - }, { - "id" : "205", - "name" : "シンデレラガール" - }, { - "id" : "213", - "name" : "CINDERELLA PROJECT" - }, { - "id" : "215", - "name" : "Project:Krone" - } ] -}, { - "aliases" : [ { - "hash" : "4035fd883093767b28d2a539d774e094", - "id" : "2000201", - "profile" : { - "bust" : "86", - "height" : "163", - "hip" : "86", - "waist" : "57", - "weight" : "45" - } - }, { - "hash" : "f4d2f1e39a7e01d8274e3a57077f6f85", - "id" : "2100202", - "profile" : { - "bust" : "86", - "height" : "163", - "hip" : "86", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "パジャマパーティー", - "alias_name_display" : "パジャマパーティー", - "hash" : "c931ce44e7607eaf6ab795a40dd9ca28", - "id" : "2203901", - "profile" : { - "bust" : "86", - "height" : "163", - "hip" : "86", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "パジャマパーティー", - "alias_name_display" : "パジャマパーティー", - "hash" : "a3082a7c51417a1a91c1051b28f8aa9f", - "id" : "2303902", - "profile" : { - "bust" : "86", - "height" : "163", - "hip" : "86", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "気高きプライド", - "alias_name_display" : "気高きプライド", - "hash" : "7997704c7956ebe73f2c28697c89dc1a", - "id" : "2205501", - "profile" : { - "bust" : "86", - "height" : "163", - "hip" : "86", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "気高きプライド", - "alias_name_display" : "気高きプライド", - "hash" : "5109146ec273c81d59fcae0c97adddf5", - "id" : "2305502", - "profile" : { - "bust" : "86", - "height" : "163", - "hip" : "86", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "セレクトメイド", - "alias_name_display" : "セレクトメイド", - "hash" : "02f695d931bff83bdb7771b3b8943f60", - "id" : "2214701", - "profile" : { - "bust" : "86", - "height" : "163", - "hip" : "86", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "セレクトメイド", - "alias_name_display" : "セレクトメイド", - "hash" : "1d0d21ccca64a106b500e327a8a61944", - "id" : "2314702", - "profile" : { - "bust" : "86", - "height" : "163", - "hip" : "86", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ロワイヤルスタイルNP", - "alias_name_display" : "ロワイヤルスタイルNP", - "event" : [ { - "event_id" : 806, - "event_name" : "アイドルLIVEロワイヤルinSUMMER" - } ], - "hash" : "def290c2687249f421d3a0c5639fcf54", - "id" : "2217101", - "profile" : { - "bust" : "86", - "height" : "163", - "hip" : "86", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ロワイヤルスタイルNP", - "alias_name_display" : "ロワイヤルスタイルNP", - "event" : [ { - "event_id" : 806, - "event_name" : "アイドルLIVEロワイヤルinSUMMER" - } ], - "hash" : "7b992968fa0f058f249b5526ab1b7883", - "id" : "2317102", - "profile" : { - "bust" : "86", - "height" : "163", - "hip" : "86", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "グロッシースタイル", - "alias_name_display" : "グロッシースタイル", - "event" : [ { - "event_id" : 715, - "event_name" : "第15回ドリームLIVEフェスティバル" - } ], - "hash" : "c1211c36467b2716552c4d1d85e1290d", - "id" : "2322902", - "profile" : { - "bust" : "86", - "height" : "163", - "hip" : "86", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ウェディングセレモニー", - "alias_name_display" : "ウェディングセレモニー", - "hash" : "f7d5c0216298dbb7033107930cd977c3", - "id" : "2226701", - "profile" : { - "bust" : "86", - "height" : "163", - "hip" : "86", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ウェディングセレモニー", - "alias_name_display" : "ウェディングセレモニー", - "hash" : "85d68eea01b117486b607f455717a906", - "id" : "2326702", - "profile" : { - "bust" : "86", - "height" : "163", - "hip" : "86", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "黒真珠の輝き", - "alias_name_display" : "黒真珠の輝き", - "hash" : "cf1a5d3544d33508dec93e2b8a566cce", - "id" : "2405701", - "profile" : { - "bust" : "86", - "height" : "163", - "hip" : "86", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "黒真珠の輝き", - "alias_name_display" : "黒真珠の輝き", - "hash" : "6ede07bfc34af81ea373768ee64d3420", - "id" : "2505702", - "profile" : { - "bust" : "86", - "height" : "163", - "hip" : "86", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "白銀の騎士", - "alias_name_display" : "白銀の騎士", - "event" : [ { - "event_id" : 516, - "event_name" : "幻想公演栄光のシュヴァリエ" - } ], - "hash" : "8c4388028076672a43963f38de32b024", - "id" : "2420101", - "profile" : { - "bust" : "86", - "height" : "163", - "hip" : "86", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "白銀の騎士", - "alias_name_display" : "白銀の騎士", - "event" : [ { - "event_id" : 516, - "event_name" : "幻想公演栄光のシュヴァリエ" - } ], - "hash" : "024cad24043e3c69d8c4626c91c0b624", - "id" : "2520102", - "profile" : { - "bust" : "86", - "height" : "163", - "hip" : "86", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "夜を見る淑女", - "alias_name_display" : "夜を見る淑女", - "event" : [ { - "event_id" : "025", - "event_name" : "第25回プロダクションマッチフェスティバル" - } ], - "hash" : "18b11c7c27a2d1fe7ce0181c77596a03", - "id" : "2429901", - "profile" : { - "bust" : "86", - "height" : "163", - "hip" : "86", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "夜を見る淑女", - "alias_name_display" : "夜を見る淑女", - "event" : [ { - "event_id" : "025", - "event_name" : "第25回プロダクションマッチフェスティバル" - } ], - "hash" : "45dfc7d0f65cd5337cb103b7af3f7dc3", - "id" : "2529902", - "profile" : { - "bust" : "86", - "height" : "163", - "hip" : "86", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "黒曜の囁き", - "alias_name_display" : "黒曜の囁き", - "event" : [ { - "event_id" : 1511, - "event_name" : "第11回チーム対抗トークバトルショー" - } ], - "hash" : "a0392538ef8042cc44d645fca021bd78", - "id" : "2438301", - "profile" : { - "bust" : "86", - "height" : "163", - "hip" : "86", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "黒曜の囁き", - "alias_name_display" : "黒曜の囁き", - "event" : [ { - "event_id" : 1511, - "event_name" : "第11回チーム対抗トークバトルショー" - } ], - "hash" : "1b13a47f1e86ec39ecf4974fe3049ff9", - "id" : "2538302", - "profile" : { - "bust" : "86", - "height" : "163", - "hip" : "86", - "waist" : "57", - "weight" : "45" - } - } ], - "idol_id" : 68, - "idol_name" : "黒川千秋", - "idol_name_display" : "黒川千秋", - "units" : [ { - "id" : "53", - "name" : "ブリヤント・ノワール" - }, { - "id" : "159", - "name" : "パステル・カクテル" - }, { - "id" : "199", - "name" : "レッドバラード" - }, { - "id" : "209", - "name" : "ロワイヤルスタイルNP" - } ] -}, { - "aliases" : [ { - "hash" : "a30783d170b758c118fd545eec28dfa9", - "id" : "2000301", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "58", - "weight" : "48" - } - }, { - "hash" : "550e684107f50aa0804d93fe5f11b133", - "id" : "2100302", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "58", - "weight" : "48" - } - }, { - "alias_name" : "水泳大会", - "alias_name_display" : "水泳大会", - "event" : [ { - "event_id" : 106, - "event_name" : "アイドル水泳大会 水着のシンデレラ" - } ], - "hash" : "4072ebd35377b91af0e4a4f69dafee58", - "id" : "2002301", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "58", - "weight" : "48" - } - }, { - "alias_name" : "水泳大会", - "alias_name_display" : "水泳大会", - "event" : [ { - "event_id" : 106, - "event_name" : "アイドル水泳大会 水着のシンデレラ" - } ], - "hash" : "42a46e206d59587e6fbaab7bee5b30d3", - "id" : "2102302", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "58", - "weight" : "48" - } - }, { - "alias_name" : "浴衣祭り", - "alias_name_display" : "浴衣祭り", - "hash" : "a7df62ab3b2d5dcb35b548557ab11ec5", - "id" : "2210701", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "58", - "weight" : "48" - } - }, { - "alias_name" : "浴衣祭り", - "alias_name_display" : "浴衣祭り", - "hash" : "b5e60c6af2179f38b31d551455402347", - "id" : "2310702", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "58", - "weight" : "48" - } - }, { - "alias_name" : "アップトゥデイト", - "alias_name_display" : "アップトゥデイト", - "hash" : "0de3d4c8622403e9d7229cd26280c9ef", - "id" : "2219801", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "58", - "weight" : "48" - } - }, { - "alias_name" : "アップトゥデイト", - "alias_name_display" : "アップトゥデイト", - "hash" : "6c99150f4022c8120715ed9a739b2489", - "id" : "2319802", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "58", - "weight" : "48" - } - }, { - "alias_name" : "ロワイヤルスタイルND", - "alias_name_display" : "ロワイヤルスタイルND", - "event" : [ { - "event_id" : 816, - "event_name" : "第16回アイドルLIVEロワイヤル" - } ], - "hash" : "1b9e2b09c150a291f3bfc071abe006d6", - "id" : "2225201", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "58", - "weight" : "48" - } - }, { - "alias_name" : "ロワイヤルスタイルND", - "alias_name_display" : "ロワイヤルスタイルND", - "event" : [ { - "event_id" : 816, - "event_name" : "第16回アイドルLIVEロワイヤル" - } ], - "hash" : "ce540cea8b2110611377d2d631c3e066", - "id" : "2325202", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "58", - "weight" : "48" - } - }, { - "alias_name" : "ステイインシェイプ", - "alias_name_display" : "ステイインシェイプ", - "hash" : "b9ffe5b8b3214774e10fe813a01f4e1a", - "id" : "2231301", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "58", - "weight" : "48" - } - }, { - "alias_name" : "ステイインシェイプ", - "alias_name_display" : "ステイインシェイプ", - "hash" : "1f579c998c02a9776400a9f3d43c26ab", - "id" : "2331302", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "58", - "weight" : "48" - } - }, { - "alias_name" : "セクシービューティー", - "alias_name_display" : "セクシービューティー", - "event" : [ { - "event_id" : 508, - "event_name" : "LIVEツアーカーニバルinスペースワールド" - } ], - "hash" : "45c75bb28f21bddd1ad2738bda5b4d9d", - "id" : "2410101", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "58", - "weight" : "48" - } - }, { - "alias_name" : "セクシービューティー", - "alias_name_display" : "セクシービューティー", - "event" : [ { - "event_id" : 508, - "event_name" : "LIVEツアーカーニバルinスペースワールド" - } ], - "hash" : "f1452a5449618b73378346046f8a8d68", - "id" : "2510102", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "58", - "weight" : "48" - } - }, { - "alias_name" : "サンシャインマリナー", - "alias_name_display" : "サンシャインマリナー", - "event" : [ { - "event_id" : "018", - "event_name" : "第18回プロダクションマッチフェスティバル" - } ], - "hash" : "dc3d17ce8827254c7b49e013adfdd7d1", - "id" : "2416801", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "58", - "weight" : "48" - } - }, { - "alias_name" : "サンシャインマリナー", - "alias_name_display" : "サンシャインマリナー", - "event" : [ { - "event_id" : "018", - "event_name" : "第18回プロダクションマッチフェスティバル" - } ], - "hash" : "d94af1f2bbd1ee5cba11de0029345800", - "id" : "2516802", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "58", - "weight" : "48" - } - }, { - "alias_name" : "セクシースリル", - "alias_name_display" : "セクシースリル", - "event" : [ { - "event_id" : 717, - "event_name" : "第17回ドリームLIVEフェスティバル" - } ], - "hash" : "37797d5f21558e63d2ddef76ca7754cb", - "id" : "2427901", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "58", - "weight" : "48" - } - }, { - "alias_name" : "セクシースリル", - "alias_name_display" : "セクシースリル", - "event" : [ { - "event_id" : 717, - "event_name" : "第17回ドリームLIVEフェスティバル" - } ], - "hash" : "667d1ecf34952923ee535605873f44eb", - "id" : "2527902", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "58", - "weight" : "48" - } - }, { - "alias_name" : "セクシーウィッチ", - "alias_name_display" : "セクシーウィッチ", - "event" : [ { - "event_id" : 1904, - "event_name" : "魔界公演 妖艶魔女と消えたハロウィン" - } ], - "hash" : "9ab933bbf7cd99e54000a4c229b6161f", - "id" : "2435201", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "58", - "weight" : "48" - } - }, { - "alias_name" : "セクシーウィッチ", - "alias_name_display" : "セクシーウィッチ", - "event" : [ { - "event_id" : 1904, - "event_name" : "魔界公演 妖艶魔女と消えたハロウィン" - } ], - "hash" : "2e3a40d67d49dc6574282976c7ede024", - "id" : "2535202", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "58", - "weight" : "48" - } - } ], - "idol_id" : 69, - "idol_name" : "松本沙理奈", - "idol_name_display" : "松本沙理奈", - "units" : [ { - "id" : "29", - "name" : "セーラーマリナー" - }, { - "id" : "110", - "name" : "アップトゥデイト" - }, { - "id" : "198", - "name" : "ブルーナポレオン" - }, { - "id" : "206", - "name" : "セクシーボンデージ" - }, { - "id" : "210", - "name" : "ロワイヤルスタイルND" - } ] -}, { - "aliases" : [ { - "hash" : "f8edf47fb60a0d249bb979d68211b8be", - "id" : "2000401", - "profile" : { - "bust" : "86", - "height" : "160", - "hip" : "86", - "waist" : "56", - "weight" : "43" - } - }, { - "hash" : "d7214775b8ad7a28a6fddcf512e9666c", - "id" : "2100402", - "profile" : { - "bust" : "86", - "height" : "160", - "hip" : "86", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "スポーツ祭", - "alias_name_display" : "スポーツ祭", - "hash" : "567ce108edd82a9b613abaa95e94c9a4", - "id" : "2204301", - "profile" : { - "bust" : "86", - "height" : "160", - "hip" : "86", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "スポーツ祭", - "alias_name_display" : "スポーツ祭", - "hash" : "2ddcac167adb3e5f1a888b16483b9338", - "id" : "2304302", - "profile" : { - "bust" : "86", - "height" : "160", - "hip" : "86", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "バリスタイル", - "alias_name_display" : "バリスタイル", - "event" : [ { - "event_id" : 505, - "event_name" : "アイドルLIVEツアーinバリ島" - } ], - "hash" : "7a4ebbaebec98924f539d8b7214af1a4", - "id" : "2210601", - "profile" : { - "bust" : "86", - "height" : "160", - "hip" : "86", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "バリスタイル", - "alias_name_display" : "バリスタイル", - "event" : [ { - "event_id" : 505, - "event_name" : "アイドルLIVEツアーinバリ島" - } ], - "hash" : "bf0c13ce6019138ebaeff2f13d7ce662", - "id" : "2310602", - "profile" : { - "bust" : "86", - "height" : "160", - "hip" : "86", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "不意の幸せ", - "alias_name_display" : "不意の幸せ", - "hash" : "d2346216a10dc027b5ad981febe98200", - "id" : "2216801", - "profile" : { - "bust" : "86", - "height" : "160", - "hip" : "86", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "不意の幸せ", - "alias_name_display" : "不意の幸せ", - "hash" : "40302b38b4d6dabceef6db49a6bd646b", - "id" : "2316802", - "profile" : { - "bust" : "86", - "height" : "160", - "hip" : "86", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "ロワイヤルスタイルNP", - "alias_name_display" : "ロワイヤルスタイルNP", - "event" : [ { - "event_id" : 811, - "event_name" : "第11回アイドルLIVEロワイヤル" - } ], - "hash" : "801604d97e1d78c4f7eac49c159e86a7", - "id" : "2220401", - "profile" : { - "bust" : "86", - "height" : "160", - "hip" : "86", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "ロワイヤルスタイルNP", - "alias_name_display" : "ロワイヤルスタイルNP", - "event" : [ { - "event_id" : 811, - "event_name" : "第11回アイドルLIVEロワイヤル" - } ], - "hash" : "270f111f0adc50347ba9256756602680", - "id" : "2320402", - "profile" : { - "bust" : "86", - "height" : "160", - "hip" : "86", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "ブレイクタイム", - "alias_name_display" : "ブレイクタイム", - "hash" : "87d826bbf263c5ed9692324810ecc77d", - "id" : "2223401", - "profile" : { - "bust" : "86", - "height" : "160", - "hip" : "86", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "ブレイクタイム", - "alias_name_display" : "ブレイクタイム", - "hash" : "d182d50be9a4a09ce0ba65b085091f7e", - "id" : "2323402", - "profile" : { - "bust" : "86", - "height" : "160", - "hip" : "86", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "T.B.チアーズ", - "alias_name_display" : "T.B.チアーズ", - "event" : [ { - "event_id" : 1509, - "event_name" : "第9回チーム対抗トークバトルショー" - } ], - "hash" : "ed6e36f5388cca179f16884e7020f518", - "id" : "2229301", - "profile" : { - "bust" : "86", - "height" : "160", - "hip" : "86", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "T.B.チアーズ", - "alias_name_display" : "T.B.チアーズ", - "event" : [ { - "event_id" : 1509, - "event_name" : "第9回チーム対抗トークバトルショー" - } ], - "hash" : "9d94602d3641b0c6eede6dd3d1c2ebd3", - "id" : "2329302", - "profile" : { - "bust" : "86", - "height" : "160", - "hip" : "86", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "エレガントマリオネット", - "alias_name_display" : "エレガントマリオネット", - "event" : [ { - "event_id" : 804, - "event_name" : "第4回アイドルLIVEロワイヤル" - } ], - "hash" : "3dc9f6b43b8f09c2cd14427246204ab7", - "id" : "2413201", - "profile" : { - "bust" : "86", - "height" : "160", - "hip" : "86", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "エレガントマリオネット", - "alias_name_display" : "エレガントマリオネット", - "event" : [ { - "event_id" : 804, - "event_name" : "第4回アイドルLIVEロワイヤル" - } ], - "hash" : "35fdf29a4ff894128272306654735d50", - "id" : "2513202", - "profile" : { - "bust" : "86", - "height" : "160", - "hip" : "86", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "オープンスイート", - "alias_name_display" : "オープンスイート", - "event" : [ { - "event_id" : 1406, - "event_name" : "第6回ぷちデレラコレクション" - } ], - "hash" : "45d7e0444687067fe30053e2047bb81d", - "id" : "2431701", - "profile" : { - "bust" : "86", - "height" : "160", - "hip" : "86", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "オープンスイート", - "alias_name_display" : "オープンスイート", - "event" : [ { - "event_id" : 1406, - "event_name" : "第6回ぷちデレラコレクション" - } ], - "hash" : "81fd47cf40cbfb59f9dc779f0b2e6258", - "id" : "2531702", - "profile" : { - "bust" : "86", - "height" : "160", - "hip" : "86", - "waist" : "56", - "weight" : "43" - } - } ], - "idol_id" : 70, - "idol_name" : "桐野アヤ", - "idol_name_display" : "桐野アヤ", - "units" : [ { - "id" : "42", - "name" : "バリスタイル" - }, { - "id" : "62", - "name" : "ようせいさんとおねえさん" - }, { - "id" : "119", - "name" : "フランメ・ルージュ" - }, { - "id" : "181", - "name" : "フレッシュアスリーテス" - }, { - "id" : "199", - "name" : "レッドバラード" - }, { - "id" : "209", - "name" : "ロワイヤルスタイルNP" - } ] -}, { - "aliases" : [ { - "hash" : "0a608619d8933f94dbf234b16a738cc4", - "id" : "2000501", - "profile" : { - "bust" : "91", - "height" : "167", - "hip" : "90", - "waist" : "62", - "weight" : "51" - } - }, { - "hash" : "77bc167a538072243fe4efada302c5dd", - "id" : "2100502", - "profile" : { - "bust" : "91", - "height" : "167", - "hip" : "90", - "waist" : "62", - "weight" : "51" - } - }, { - "alias_name" : "湯けむり月夜", - "alias_name_display" : "湯けむり月夜", - "hash" : "aaf15e170c8e34777956d6e615d7b23d", - "id" : "2212601", - "profile" : { - "bust" : "91", - "height" : "167", - "hip" : "90", - "waist" : "62", - "weight" : "51" - } - }, { - "alias_name" : "湯けむり月夜", - "alias_name_display" : "湯けむり月夜", - "hash" : "7f2f67ea668968a6d17d54ad225de60e", - "id" : "2312602", - "profile" : { - "bust" : "91", - "height" : "167", - "hip" : "90", - "waist" : "62", - "weight" : "51" - } - }, { - "alias_name" : "パラダイスリゾート", - "alias_name_display" : "パラダイスリゾート", - "hash" : "f3785b4e58b357a89d3abc48ae4a25cc", - "id" : "2217001", - "profile" : { - "bust" : "91", - "height" : "167", - "hip" : "90", - "waist" : "62", - "weight" : "51" - } - }, { - "alias_name" : "パラダイスリゾート", - "alias_name_display" : "パラダイスリゾート", - "hash" : "8b93d1e5afa99347a6fcfa8f5a5a8586", - "id" : "2317002", - "profile" : { - "bust" : "91", - "height" : "167", - "hip" : "90", - "waist" : "62", - "weight" : "51" - } - }, { - "alias_name" : "インモーション", - "alias_name_display" : "インモーション", - "event" : [ { - "event_id" : "019", - "event_name" : "第19回プロダクションマッチフェスティバル" - } ], - "hash" : "b0daf9e54ee010a9f898f304243bbd06", - "id" : "2218801", - "profile" : { - "bust" : "91", - "height" : "167", - "hip" : "90", - "waist" : "62", - "weight" : "51" - } - }, { - "alias_name" : "インモーション", - "alias_name_display" : "インモーション", - "event" : [ { - "event_id" : "019", - "event_name" : "第19回プロダクションマッチフェスティバル" - } ], - "hash" : "3620cdf9b0524f7ffdfeb8e7cfac9400", - "id" : "2318802", - "profile" : { - "bust" : "91", - "height" : "167", - "hip" : "90", - "waist" : "62", - "weight" : "51" - } - }, { - "alias_name" : "マダム・マミー", - "alias_name_display" : "マダム・マミー", - "event" : [ { - "event_id" : 522, - "event_name" : "魔界公演 幽鬱女王とハロウィンの祝祭" - } ], - "hash" : "a7fa225473c0d3eac3e226b3d9a5621f", - "id" : "2323802", - "profile" : { - "bust" : "91", - "height" : "167", - "hip" : "90", - "waist" : "62", - "weight" : "51" - } - }, { - "alias_name" : "トレランスパンサレス", - "alias_name_display" : "トレランスパンサレス", - "hash" : "d507a4e135271b117fe48e96f304efdf", - "id" : "2226201", - "profile" : { - "bust" : "91", - "height" : "167", - "hip" : "90", - "waist" : "62", - "weight" : "51" - } - }, { - "alias_name" : "トレランスパンサレス", - "alias_name_display" : "トレランスパンサレス", - "hash" : "044f3dda15df99f500884ebb320467cb", - "id" : "2326202", - "profile" : { - "bust" : "91", - "height" : "167", - "hip" : "90", - "waist" : "62", - "weight" : "51" - } - }, { - "alias_name" : "ホーリーコーラス", - "alias_name_display" : "ホーリーコーラス", - "hash" : "c7fc22efe7292a115f75036198638695", - "id" : "2229501", - "profile" : { - "bust" : "91", - "height" : "167", - "hip" : "90", - "waist" : "62", - "weight" : "51" - } - }, { - "alias_name" : "ホーリーコーラス", - "alias_name_display" : "ホーリーコーラス", - "hash" : "b2649350266c291beb9d570c256463d8", - "id" : "2329502", - "profile" : { - "bust" : "91", - "height" : "167", - "hip" : "90", - "waist" : "62", - "weight" : "51" - } - }, { - "alias_name" : "妖しき雌豹", - "alias_name_display" : "妖しき雌豹", - "event" : [ { - "event_id" : 204, - "event_name" : "アイドルサバイバルin動物園" - } ], - "hash" : "039bbb4300c231ff4d9afd4c3d096c52", - "id" : "2402101", - "profile" : { - "bust" : "91", - "height" : "167", - "hip" : "90", - "waist" : "62", - "weight" : "51" - } - }, { - "alias_name" : "妖しき雌豹", - "alias_name_display" : "妖しき雌豹", - "event" : [ { - "event_id" : 204, - "event_name" : "アイドルサバイバルin動物園" - } ], - "hash" : "62f5c0944ca2ad486b29b8b913479cf0", - "id" : "2502102", - "profile" : { - "bust" : "91", - "height" : "167", - "hip" : "90", - "waist" : "62", - "weight" : "51" - } - }, { - "alias_name" : "魅惑のカクテルレディ", - "alias_name_display" : "魅惑のカクテルレディ", - "event" : [ { - "event_id" : "009", - "event_name" : "第9回プロダクションマッチフェスティバル" - } ], - "hash" : "86c4bdb562fd8e4f75e9f6186bf5f7c7", - "id" : "2406101", - "profile" : { - "bust" : "91", - "height" : "167", - "hip" : "90", - "waist" : "62", - "weight" : "51" - } - }, { - "alias_name" : "魅惑のカクテルレディ", - "alias_name_display" : "魅惑のカクテルレディ", - "event" : [ { - "event_id" : "009", - "event_name" : "第9回プロダクションマッチフェスティバル" - } ], - "hash" : "584c3fe5210a9dfbd497c164ee2bb8e6", - "id" : "2506102", - "profile" : { - "bust" : "91", - "height" : "167", - "hip" : "90", - "waist" : "62", - "weight" : "51" - } - }, { - "alias_name" : "セクシー・ロワイヤル", - "alias_name_display" : "セクシー・ロワイヤル", - "event" : [ { - "event_id" : 812, - "event_name" : "第12回アイドルLIVEロワイヤル" - } ], - "hash" : "66f6b003936de3d8218ed6d75e7725bf", - "id" : "2424201", - "profile" : { - "bust" : "91", - "height" : "167", - "hip" : "90", - "waist" : "62", - "weight" : "51" - } - }, { - "alias_name" : "セクシー・ロワイヤル", - "alias_name_display" : "セクシー・ロワイヤル", - "event" : [ { - "event_id" : 812, - "event_name" : "第12回アイドルLIVEロワイヤル" - } ], - "hash" : "b6f3e564d927a8741fef257195584e32", - "id" : "2524202", - "profile" : { - "bust" : "91", - "height" : "167", - "hip" : "90", - "waist" : "62", - "weight" : "51" - } - }, { - "alias_name" : "アモラス・ロワイヤル", - "alias_name_display" : "アモラス・ロワイヤル", - "event" : [ { - "event_id" : 823, - "event_name" : "第23回アイドルLIVEロワイヤル" - } ], - "hash" : "48699172a15eb286179eb1b4daa8c46f", - "id" : "2439901", - "profile" : { - "bust" : "91", - "height" : "167", - "hip" : "90", - "waist" : "62", - "weight" : "51" - } - }, { - "alias_name" : "アモラス・ロワイヤル", - "alias_name_display" : "アモラス・ロワイヤル", - "event" : [ { - "event_id" : 823, - "event_name" : "第23回アイドルLIVEロワイヤル" - } ], - "hash" : "79b7221bfb5db0a94baf512abe1eb5eb", - "id" : "2539902", - "profile" : { - "bust" : "91", - "height" : "167", - "hip" : "90", - "waist" : "62", - "weight" : "51" - } - } ], - "idol_id" : 71, - "idol_name" : "高橋礼子", - "idol_name_display" : "高橋礼子", - "units" : [ { - "id" : "67", - "name" : "レディビースト" - }, { - "id" : "199", - "name" : "レッドバラード" - }, { - "id" : "207", - "name" : "ムーランルージュ" - } ] -}, { - "aliases" : [ { - "hash" : "24db8e0436418b7e45715d6330a49056", - "id" : "2000601", - "profile" : { - "bust" : "82", - "height" : "161", - "hip" : "85", - "waist" : "56", - "weight" : "43" - } - }, { - "hash" : "bb3b59c3fcb13e67d428def53699f508", - "id" : "2100602", - "profile" : { - "bust" : "82", - "height" : "161", - "hip" : "85", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "お花見", - "alias_name_display" : "お花見", - "event" : [ { - "event_id" : 104, - "event_name" : "桜舞う花見祭り" - } ], - "hash" : "3839626e54d0ec041b4a9e31daa069e5", - "id" : "2002001", - "profile" : { - "bust" : "82", - "height" : "161", - "hip" : "85", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "お花見", - "alias_name_display" : "お花見", - "event" : [ { - "event_id" : 104, - "event_name" : "桜舞う花見祭り" - } ], - "hash" : "98a7280ce9e419297d6a0732e1e8be21", - "id" : "2102002", - "profile" : { - "bust" : "82", - "height" : "161", - "hip" : "85", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "ロワイヤルスタイル", - "alias_name_display" : "ロワイヤルスタイル", - "event" : [ { - "event_id" : 801, - "event_name" : "アイドルLIVEロワイヤル" - } ], - "hash" : "26374e719939476045d5b68cd97bd71b", - "id" : "2212101", - "profile" : { - "bust" : "82", - "height" : "161", - "hip" : "85", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "ロワイヤルスタイル", - "alias_name_display" : "ロワイヤルスタイル", - "event" : [ { - "event_id" : 801, - "event_name" : "アイドルLIVEロワイヤル" - } ], - "hash" : "5db94845caafaca3cb351938eab38255", - "id" : "2312102", - "profile" : { - "bust" : "82", - "height" : "161", - "hip" : "85", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "メルヘンアニマルズ", - "alias_name_display" : "メルヘンアニマルズ", - "hash" : "adcaecd0e24939267f69f3d5ced30f80", - "id" : "2217401", - "profile" : { - "bust" : "82", - "height" : "161", - "hip" : "85", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "メルヘンアニマルズ", - "alias_name_display" : "メルヘンアニマルズ", - "hash" : "d605d715d583a542309c21f213131857", - "id" : "2317402", - "profile" : { - "bust" : "82", - "height" : "161", - "hip" : "85", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "イージーモーメント", - "alias_name_display" : "イージーモーメント", - "event" : [ { - "event_id" : "021", - "event_name" : "第21回プロダクションマッチフェスティバル" - } ], - "hash" : "25d429cfd93ad10bb1f06a997c3f5797", - "id" : "2220601", - "profile" : { - "bust" : "82", - "height" : "161", - "hip" : "85", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "イージーモーメント", - "alias_name_display" : "イージーモーメント", - "event" : [ { - "event_id" : "021", - "event_name" : "第21回プロダクションマッチフェスティバル" - } ], - "hash" : "259502538c76ba040edf323f08ecf86c", - "id" : "2320602", - "profile" : { - "bust" : "82", - "height" : "161", - "hip" : "85", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "敏腕刑事", - "alias_name_display" : "敏腕刑事", - "event" : [ { - "event_id" : 521, - "event_name" : "怪盗公演 美しき追跡者" - } ], - "hash" : "af44062383e5a214b5b983e6a037feaa", - "id" : "2322802", - "profile" : { - "bust" : "82", - "height" : "161", - "hip" : "85", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "秋の学園祭", - "alias_name_display" : "秋の学園祭", - "hash" : "595943d4eb918aa66cfc1dd92fe8a8b8", - "id" : "2228901", - "profile" : { - "bust" : "82", - "height" : "161", - "hip" : "85", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "秋の学園祭", - "alias_name_display" : "秋の学園祭", - "hash" : "03c4a96c5302e9ed2e1d0ffa2cde0140", - "id" : "2328902", - "profile" : { - "bust" : "82", - "height" : "161", - "hip" : "85", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "ナイトエレガンス", - "alias_name_display" : "ナイトエレガンス", - "event" : [ { - "event_id" : 803, - "event_name" : "第3回アイドルLIVEロワイヤル" - } ], - "hash" : "2e8a72447531178bd7c6b4af5ad3ac65", - "id" : "2411901", - "profile" : { - "bust" : "82", - "height" : "161", - "hip" : "85", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "ナイトエレガンス", - "alias_name_display" : "ナイトエレガンス", - "event" : [ { - "event_id" : 803, - "event_name" : "第3回アイドルLIVEロワイヤル" - } ], - "hash" : "6005f3a24b6f95a9e6ac20001fccf0a9", - "id" : "2511902", - "profile" : { - "bust" : "82", - "height" : "161", - "hip" : "85", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "招福萬来", - "alias_name_display" : "招福萬来", - "event" : [ { - "event_id" : 719, - "event_name" : "ドリームLIVEフェスティバル 節分SP" - } ], - "hash" : "d8b2e5540583e671da737c5c832509ce", - "id" : "2430501", - "profile" : { - "bust" : "82", - "height" : "161", - "hip" : "85", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "招福萬来", - "alias_name_display" : "招福萬来", - "event" : [ { - "event_id" : 719, - "event_name" : "ドリームLIVEフェスティバル 節分SP" - } ], - "hash" : "38623ebf06937afb131651a871925ccd", - "id" : "2530502", - "profile" : { - "bust" : "82", - "height" : "161", - "hip" : "85", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "モードリーブル", - "alias_name_display" : "モードリーブル", - "event" : [ { - "event_id" : 1412, - "event_name" : "第12回ぷちデレラコレクション" - } ], - "hash" : "b839d7f458db037366fcd9f57ea3137e", - "id" : "2439501", - "profile" : { - "bust" : "82", - "height" : "161", - "hip" : "85", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "モードリーブル", - "alias_name_display" : "モードリーブル", - "event" : [ { - "event_id" : 1412, - "event_name" : "第12回ぷちデレラコレクション" - } ], - "hash" : "4028037887d8707827e2a749bb925d5d", - "id" : "2539502", - "profile" : { - "bust" : "82", - "height" : "161", - "hip" : "85", - "waist" : "56", - "weight" : "43" - } - } ], - "idol_id" : 72, - "idol_name" : "相川千夏", - "idol_name_display" : "相川千夏", - "units" : [ { - "id" : "18", - "name" : "サクラブロッサム" - }, { - "id" : "166", - "name" : "メルヘンアニマルズ" - }, { - "id" : "199", - "name" : "レッドバラード" - }, { - "id" : "208", - "name" : "ロワイヤルスタイル" - } ] -}, { - "aliases" : [ { - "hash" : "40a601df9bea01621e36d1ab686f16e3", - "id" : "2000701", - "profile" : { - "bust" : "87", - "height" : "159", - "hip" : "85", - "waist" : "57", - "weight" : "44" - } - }, { - "hash" : "58135fa927f8d12eaa6228dc0bdf62e9", - "id" : "2100702", - "profile" : { - "bust" : "87", - "height" : "159", - "hip" : "85", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "パジャマパーティー", - "alias_name_display" : "パジャマパーティー", - "hash" : "209fee1285aed04a5741706a0a566fef", - "id" : "2204001", - "profile" : { - "bust" : "87", - "height" : "159", - "hip" : "85", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "パジャマパーティー", - "alias_name_display" : "パジャマパーティー", - "hash" : "c17136265b3240ee66b30f381e3aef56", - "id" : "2304002", - "profile" : { - "bust" : "87", - "height" : "159", - "hip" : "85", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "花火祭り", - "alias_name_display" : "花火祭り", - "event" : [ { - "event_id" : 408, - "event_name" : "アイドルプロデュース 夜空に咲く花火編" - } ], - "hash" : "99dfa14f926ede47b4fc2cabfd018d75", - "id" : "2211001", - "profile" : { - "bust" : "87", - "height" : "159", - "hip" : "85", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "花火祭り", - "alias_name_display" : "花火祭り", - "event" : [ { - "event_id" : 408, - "event_name" : "アイドルプロデュース 夜空に咲く花火編" - } ], - "hash" : "daef71058f35b5317a104f0441b71b5e", - "id" : "2311002", - "profile" : { - "bust" : "87", - "height" : "159", - "hip" : "85", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "花火祭りスマイル", - "alias_name_display" : "花火祭りスマイル", - "event" : [ { - "event_id" : 408, - "event_name" : "アイドルプロデュース 夜空に咲く花火編" - } ], - "hash" : "275711a449400f466b5cf81a50ca258f", - "id" : "2211101", - "profile" : { - "bust" : "87", - "height" : "159", - "hip" : "85", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "花火祭りスマイル", - "alias_name_display" : "花火祭りスマイル", - "event" : [ { - "event_id" : 408, - "event_name" : "アイドルプロデュース 夜空に咲く花火編" - } ], - "hash" : "8616ac16ec9f6cc1cecbe86f21b144d5", - "id" : "2311102", - "profile" : { - "bust" : "87", - "height" : "159", - "hip" : "85", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "大人のたしなみ", - "alias_name_display" : "大人のたしなみ", - "hash" : "7cadb40bf6509955d8d5de4eae76f733", - "id" : "2226101", - "profile" : { - "bust" : "87", - "height" : "159", - "hip" : "85", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "大人のたしなみ", - "alias_name_display" : "大人のたしなみ", - "hash" : "3b95f73ab51ad9cd2e2f6a27ea50e9f3", - "id" : "2326102", - "profile" : { - "bust" : "87", - "height" : "159", - "hip" : "85", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "永遠のプリンセス", - "alias_name_display" : "永遠のプリンセス", - "event" : [ { - "event_id" : "005", - "event_name" : "第5回プロダクションマッチフェスティバル" - } ], - "hash" : "907f18eacc2a5f257dbd4ae077367f90", - "id" : "2403401", - "profile" : { - "bust" : "87", - "height" : "159", - "hip" : "85", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "永遠のプリンセス", - "alias_name_display" : "永遠のプリンセス", - "event" : [ { - "event_id" : "005", - "event_name" : "第5回プロダクションマッチフェスティバル" - } ], - "hash" : "9d9d9704f3d149c9e1f72a858172a7ae", - "id" : "2503402", - "profile" : { - "bust" : "87", - "height" : "159", - "hip" : "85", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "麗しき淑女", - "alias_name_display" : "麗しき淑女", - "hash" : "300832c8e53700a2d11cc55349e63961", - "id" : "2404601", - "profile" : { - "bust" : "87", - "height" : "159", - "hip" : "85", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "麗しき淑女", - "alias_name_display" : "麗しき淑女", - "hash" : "551dff4a0a16e66bdf019f55381368ca", - "id" : "2504602", - "profile" : { - "bust" : "87", - "height" : "159", - "hip" : "85", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "aabab7304c856a8a52ef3c3ec8df7fa7", - "id" : "2405101", - "profile" : { - "bust" : "87", - "height" : "159", - "hip" : "85", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "9bba87dccca8d68fe3559eeb60a22d51", - "id" : "2505102", - "profile" : { - "bust" : "87", - "height" : "159", - "hip" : "85", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "クリスマスクイーン", - "alias_name_display" : "クリスマスクイーン", - "hash" : "1b9b66c042fdaa8e668f198b53947535", - "id" : "2410901", - "profile" : { - "bust" : "87", - "height" : "159", - "hip" : "85", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "クリスマスクイーン", - "alias_name_display" : "クリスマスクイーン", - "hash" : "0db6cc006f71e8595c22c1377698ae8f", - "id" : "2510902", - "profile" : { - "bust" : "87", - "height" : "159", - "hip" : "85", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "熱情の魔女", - "alias_name_display" : "熱情の魔女", - "event" : [ { - "event_id" : 806, - "event_name" : "アイドルLIVEロワイヤルinSUMMER" - } ], - "hash" : "ba03cf985c54861ffdf105a5791a8882", - "id" : "2417001", - "profile" : { - "bust" : "87", - "height" : "159", - "hip" : "85", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "熱情の魔女", - "alias_name_display" : "熱情の魔女", - "event" : [ { - "event_id" : 806, - "event_name" : "アイドルLIVEロワイヤルinSUMMER" - } ], - "hash" : "393c268bda8bf72c51cf54f6e42acf1c", - "id" : "2517002", - "profile" : { - "bust" : "87", - "height" : "159", - "hip" : "85", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "夜明けのディーヴァ", - "alias_name_display" : "夜明けのディーヴァ", - "hash" : "c95a94a687ce72c15e098b2f98b0e4bd", - "id" : "2423501", - "profile" : { - "bust" : "87", - "height" : "159", - "hip" : "85", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "夜明けのディーヴァ", - "alias_name_display" : "夜明けのディーヴァ", - "hash" : "f8da33d8e7f6afc951e447ee93b95e33", - "id" : "2523502", - "profile" : { - "bust" : "87", - "height" : "159", - "hip" : "85", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "タイムゴーズバイ", - "alias_name_display" : "タイムゴーズバイ", - "hash" : "95216370d68f59ba130fc9030ffcb95c", - "id" : "2429101", - "profile" : { - "bust" : "87", - "height" : "159", - "hip" : "85", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "タイムゴーズバイ", - "alias_name_display" : "タイムゴーズバイ", - "hash" : "b8da2dbad3008521edcb8ad261ad0c1d", - "id" : "2529102", - "profile" : { - "bust" : "87", - "height" : "159", - "hip" : "85", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "シンデレラドリーム", - "alias_name_display" : "シンデレラドリーム", - "hash" : "3f53b23452b2ad8b1a5a279257023dc1", - "id" : "2436001", - "profile" : { - "bust" : "87", - "height" : "159", - "hip" : "85", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "シンデレラドリーム", - "alias_name_display" : "シンデレラドリーム", - "hash" : "f8290c4530003b664115639282feddd3", - "id" : "2536002", - "profile" : { - "bust" : "87", - "height" : "159", - "hip" : "85", - "waist" : "56", - "weight" : "44" - } - } ], - "idol_id" : 73, - "idol_name" : "川島瑞樹", - "idol_name_display" : "川島瑞樹", - "units" : [ { - "id" : "52", - "name" : "フォーリンシーサイド" - }, { - "id" : "124", - "name" : "女神たちの夏宴" - }, { - "id" : "140", - "name" : "アイドルミズキ with AS" - }, { - "id" : "190", - "name" : "サマプリ" - }, { - "id" : "198", - "name" : "ブルーナポレオン" - }, { - "id" : "201", - "name" : "Caskets" - }, { - "id" : "212", - "name" : "CINDERELLA GIRLS" - } ] -}, { - "aliases" : [ { - "hash" : "4c54b931268517a3746f98911166b113", - "id" : "2000801", - "profile" : { - "bust" : "83", - "height" : "154", - "hip" : "81", - "waist" : "58", - "weight" : "44" - } - }, { - "hash" : "06a7cb5dff7350e37d97e6b9d6207148", - "id" : "2100802", - "profile" : { - "bust" : "83", - "height" : "154", - "hip" : "81", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "聖夜", - "alias_name_display" : "聖夜", - "event" : [ { - "event_id" : 101, - "event_name" : "星降るクリスマス" - } ], - "hash" : "226ea5730b69cb31b721f24fe9db2ff3", - "id" : "2201901", - "profile" : { - "bust" : "83", - "height" : "154", - "hip" : "81", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "聖夜", - "alias_name_display" : "聖夜", - "event" : [ { - "event_id" : 101, - "event_name" : "星降るクリスマス" - } ], - "hash" : "d2612b52c629e6a5ffcb5de8c6c77c1f", - "id" : "2301902", - "profile" : { - "bust" : "83", - "height" : "154", - "hip" : "81", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "京町乙女", - "alias_name_display" : "京町乙女", - "event" : [ { - "event_id" : 402, - "event_name" : "アイドルプロデュース京町編" - } ], - "hash" : "9c9c15601b70b9001c558d79df7f2795", - "id" : "2206401", - "profile" : { - "bust" : "83", - "height" : "154", - "hip" : "81", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "京町乙女", - "alias_name_display" : "京町乙女", - "event" : [ { - "event_id" : 402, - "event_name" : "アイドルプロデュース京町編" - } ], - "hash" : "5ed8a511f1c7bd01ac963eabd5aaf3f2", - "id" : "2306402", - "profile" : { - "bust" : "83", - "height" : "154", - "hip" : "81", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "制服コレクション", - "alias_name_display" : "制服コレクション", - "hash" : "ead31e2aa3a42fd37121ae0e7379cc0d", - "id" : "2211901", - "profile" : { - "bust" : "83", - "height" : "154", - "hip" : "81", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "制服コレクション", - "alias_name_display" : "制服コレクション", - "hash" : "dca33b6f2bbf361004273bc203ffeccd", - "id" : "2311902", - "profile" : { - "bust" : "83", - "height" : "154", - "hip" : "81", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "恥じらい乙女", - "alias_name_display" : "恥じらい乙女", - "hash" : "2fc4f435264d5f7543ed27ff5bc3b333", - "id" : "2401901", - "profile" : { - "bust" : "83", - "height" : "154", - "hip" : "81", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "恥じらい乙女", - "alias_name_display" : "恥じらい乙女", - "hash" : "7e19695143ebd0b2e67b54e212be8cb8", - "id" : "2501902", - "profile" : { - "bust" : "83", - "height" : "154", - "hip" : "81", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "アトラクトゴシック", - "alias_name_display" : "アトラクトゴシック", - "hash" : "42ccfcf77765fe187c5b01a39b83b62b", - "id" : "2405601", - "profile" : { - "bust" : "83", - "height" : "154", - "hip" : "81", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "アトラクトゴシック", - "alias_name_display" : "アトラクトゴシック", - "hash" : "823b2fe51a82ecb9819b0d8a28cbb05d", - "id" : "2505602", - "profile" : { - "bust" : "83", - "height" : "154", - "hip" : "81", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "夜宴のメイド", - "alias_name_display" : "夜宴のメイド", - "hash" : "1eb1e04b6ccae476e2fa494da8dc8d62", - "id" : "2412801", - "profile" : { - "bust" : "83", - "height" : "154", - "hip" : "81", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "夜宴のメイド", - "alias_name_display" : "夜宴のメイド", - "hash" : "71f3529076561f0938fcd40266bba205", - "id" : "2512802", - "profile" : { - "bust" : "83", - "height" : "154", - "hip" : "81", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "64a140b725d7907a0cf8ad1ea556206e", - "id" : "2414001", - "profile" : { - "bust" : "83", - "height" : "154", - "hip" : "81", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "65c6332be6031ac00cab0de46cd8b679", - "id" : "2514002", - "profile" : { - "bust" : "83", - "height" : "154", - "hip" : "81", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "魔法のエール", - "alias_name_display" : "魔法のエール", - "event" : [ { - "event_id" : 1107, - "event_name" : "プロダクション対抗トークバトルショー クリスマスSP" - } ], - "hash" : "21db51dfd598fc78744050f3bd726b6c", - "id" : "2419901", - "profile" : { - "bust" : "83", - "height" : "154", - "hip" : "81", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "魔法のエール", - "alias_name_display" : "魔法のエール", - "event" : [ { - "event_id" : 1107, - "event_name" : "プロダクション対抗トークバトルショー クリスマスSP" - } ], - "hash" : "677c4345a16718726b0fc7fbffbd9181", - "id" : "2519902", - "profile" : { - "bust" : "83", - "height" : "154", - "hip" : "81", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "純真の花嫁", - "alias_name_display" : "純真の花嫁", - "event" : [ { - "event_id" : 1206, - "event_name" : "目指せウェディングモデル アイドルチャレンジ" - } ], - "hash" : "6605ee3d07ad7a750c55492215c2df86", - "id" : "2424501", - "profile" : { - "bust" : "83", - "height" : "154", - "hip" : "81", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "純真の花嫁", - "alias_name_display" : "純真の花嫁", - "event" : [ { - "event_id" : 1206, - "event_name" : "目指せウェディングモデル アイドルチャレンジ" - } ], - "hash" : "b3e05599926adc80d58c1ab78e987a78", - "id" : "2524502", - "profile" : { - "bust" : "83", - "height" : "154", - "hip" : "81", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "トゥプロミス", - "alias_name_display" : "トゥプロミス", - "hash" : "2c7cf0f30845f13b7794d96367f6f37a", - "id" : "2427801", - "profile" : { - "bust" : "83", - "height" : "154", - "hip" : "81", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "トゥプロミス", - "alias_name_display" : "トゥプロミス", - "hash" : "ff60a2cf4d0f69d2c7b34929a354a11b", - "id" : "2527802", - "profile" : { - "bust" : "83", - "height" : "154", - "hip" : "81", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "夏空サプライズ", - "alias_name_display" : "夏空サプライズ", - "hash" : "90340a72d8990fb4ae7171feeef246b4", - "id" : "2433601", - "profile" : { - "bust" : "83", - "height" : "154", - "hip" : "81", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "夏空サプライズ", - "alias_name_display" : "夏空サプライズ", - "hash" : "d889a0c65040761fe74dae4bd35fc22d", - "id" : "2533602", - "profile" : { - "bust" : "83", - "height" : "154", - "hip" : "81", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "気まぐれにゃんこ", - "alias_name_display" : "気まぐれにゃんこ", - "hash" : "224d562032e630fa1cc8d555dbb2c553", - "id" : "2438401", - "profile" : { - "bust" : "83", - "height" : "154", - "hip" : "81", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "気まぐれにゃんこ", - "alias_name_display" : "気まぐれにゃんこ", - "hash" : "8511ad8903a41ce65a867c7d1d9fb90a", - "id" : "2538402", - "profile" : { - "bust" : "83", - "height" : "154", - "hip" : "81", - "waist" : "56", - "weight" : "42" - } - } ], - "idol_id" : 74, - "idol_name" : "神谷奈緒", - "idol_name_display" : "神谷奈緒", - "units" : [ { - "id" : "91", - "name" : "京町乙女" - }, { - "id" : "94", - "name" : "シャイニングゴッドチェリー" - }, { - "id" : "115", - "name" : "虹色ドリーマー" - }, { - "id" : "144", - "name" : "Triad Primus" - }, { - "id" : "187", - "name" : "NEX-US" - }, { - "id" : "201", - "name" : "Caskets" - }, { - "id" : "215", - "name" : "Project:Krone" - } ] -}, { - "aliases" : [ { - "hash" : "67f718dfb03e338ba76c322b1970258e", - "id" : "2000901", - "profile" : { - "bust" : "79", - "height" : "156", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "hash" : "c981552913cad2107b2a42c40b42f200", - "id" : "2100902", - "profile" : { - "bust" : "79", - "height" : "156", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "眼鏡マジック", - "alias_name_display" : "眼鏡マジック", - "event" : [ { - "event_id" : "001", - "event_name" : "プロダクションマッチフェスティバル" - } ], - "hash" : "30376d9c5c74a63aa62d34b6e5549287", - "id" : "2203201", - "profile" : { - "bust" : "79", - "height" : "156", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "眼鏡マジック", - "alias_name_display" : "眼鏡マジック", - "event" : [ { - "event_id" : "001", - "event_name" : "プロダクションマッチフェスティバル" - } ], - "hash" : "4046d2c05a63497e9d6363b8c93131c0", - "id" : "2303202", - "profile" : { - "bust" : "79", - "height" : "156", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "アニバーサリーブルー", - "alias_name_display" : "アニバーサリーブルー", - "event" : [ { - "event_id" : 403, - "event_name" : "アイドルプロデュース the 1st Anniversary" - } ], - "hash" : "82d2eab4067f865fdeb3b7bd9f3f1a1c", - "id" : "2207001", - "profile" : { - "bust" : "79", - "height" : "156", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "アニバーサリーブルー", - "alias_name_display" : "アニバーサリーブルー", - "event" : [ { - "event_id" : 403, - "event_name" : "アイドルプロデュース the 1st Anniversary" - } ], - "hash" : "90d5b268954cd457fa650376fb7c37fe", - "id" : "2307002", - "profile" : { - "bust" : "79", - "height" : "156", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "新春コレクション", - "alias_name_display" : "新春コレクション", - "hash" : "9ec2e1396e64cbf435a52b7c4f7ff518", - "id" : "2213701", - "profile" : { - "bust" : "79", - "height" : "156", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "新春コレクション", - "alias_name_display" : "新春コレクション", - "hash" : "f4e2b86a14a5136878c169258a0d752d", - "id" : "2313702", - "profile" : { - "bust" : "79", - "height" : "156", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "クリスマスプレゼント", - "alias_name_display" : "クリスマスプレゼント", - "hash" : "f1279cb152f79f39243600a630ba373a", - "id" : "2218901", - "profile" : { - "bust" : "79", - "height" : "156", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "クリスマスプレゼント", - "alias_name_display" : "クリスマスプレゼント", - "hash" : "c7f5f73ba58581b6d42b967bcef3b33b", - "id" : "2318902", - "profile" : { - "bust" : "79", - "height" : "156", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "秋の学園祭", - "alias_name_display" : "秋の学園祭", - "hash" : "1a99e96a10fc8b6aa1d86de6df110900", - "id" : "2228801", - "profile" : { - "bust" : "79", - "height" : "156", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "秋の学園祭", - "alias_name_display" : "秋の学園祭", - "hash" : "32d8b86ecc3590d3d7c24af83676493e", - "id" : "2328802", - "profile" : { - "bust" : "79", - "height" : "156", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "眼鏡プリンセス", - "alias_name_display" : "眼鏡プリンセス", - "hash" : "d4bf3f8607525c3677d202531d6a2b8f", - "id" : "2403001", - "profile" : { - "bust" : "79", - "height" : "156", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "眼鏡プリンセス", - "alias_name_display" : "眼鏡プリンセス", - "hash" : "bbfd336e241f96dcc83e272d597cb3ef", - "id" : "2503002", - "profile" : { - "bust" : "79", - "height" : "156", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "ホワイトプリンセス", - "alias_name_display" : "ホワイトプリンセス", - "event" : [ { - "event_id" : 507, - "event_name" : "LIVEツアーカーニバルinドイツ" - } ], - "hash" : "dd7ae2fc2ca09c5c5b4bdc9e3e7697b6", - "id" : "2408701", - "profile" : { - "bust" : "79", - "height" : "156", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "ホワイトプリンセス", - "alias_name_display" : "ホワイトプリンセス", - "event" : [ { - "event_id" : 507, - "event_name" : "LIVEツアーカーニバルinドイツ" - } ], - "hash" : "f804a8ac60ea75d39b243b1878fd2e2d", - "id" : "2508702", - "profile" : { - "bust" : "79", - "height" : "156", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "眼鏡越しの輝き", - "alias_name_display" : "眼鏡越しの輝き", - "event" : [ { - "event_id" : 1301, - "event_name" : "プロダクションマッチフェスティバルS" - } ], - "hash" : "2fbb5c929f6ac2e9c19a5274ceb055db", - "id" : "2415801", - "profile" : { - "bust" : "79", - "height" : "156", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "眼鏡越しの輝き", - "alias_name_display" : "眼鏡越しの輝き", - "event" : [ { - "event_id" : 1301, - "event_name" : "プロダクションマッチフェスティバルS" - } ], - "hash" : "51d10185262f6caafe0355f40b29a286", - "id" : "2515802", - "profile" : { - "bust" : "79", - "height" : "156", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "メモリアル・ブルー", - "alias_name_display" : "メモリアル・ブルー", - "hash" : "18b68bdafe0fbaff1a378cced824f0ff", - "id" : "2422101", - "profile" : { - "bust" : "79", - "height" : "156", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "メモリアル・ブルー", - "alias_name_display" : "メモリアル・ブルー", - "hash" : "33ac3decf73adafad8301c26188e74c8", - "id" : "2522102", - "profile" : { - "bust" : "79", - "height" : "156", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "アニマルテイマー", - "alias_name_display" : "アニマルテイマー", - "hash" : "f809934dbe9b4b0d3549c6716383ebfb", - "id" : "2431401", - "profile" : { - "bust" : "79", - "height" : "156", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "アニマルテイマー", - "alias_name_display" : "アニマルテイマー", - "hash" : "895adb42cedd503a357282110c7c92c9", - "id" : "2531402", - "profile" : { - "bust" : "79", - "height" : "156", - "hip" : "80", - "waist" : "56", - "weight" : "42" - } - } ], - "idol_id" : 75, - "idol_name" : "上条春菜", - "idol_name_display" : "上条春菜", - "units" : [ { - "id" : "16", - "name" : "サイバーグラス" - }, { - "id" : "198", - "name" : "ブルーナポレオン" - } ] -}, { - "aliases" : [ { - "hash" : "15b30810c788f120586bc0916134b1da", - "id" : "2001001", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "hash" : "1ac3475189f6684094860fa41607cc72", - "id" : "2101002", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "サイバーグラス", - "alias_name_display" : "サイバーグラス", - "event" : [ { - "event_id" : "004", - "event_name" : "第4回プロダクションマッチフェスティバル" - } ], - "hash" : "f3fe34f102bcfc79c85c7301729dc3fc", - "id" : "2205601", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "サイバーグラス", - "alias_name_display" : "サイバーグラス", - "event" : [ { - "event_id" : "004", - "event_name" : "第4回プロダクションマッチフェスティバル" - } ], - "hash" : "ef0b667927cb970cd8ff1afd0b9b4558", - "id" : "2305602", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "クリスマスパーティー", - "alias_name_display" : "クリスマスパーティー", - "hash" : "7b962529e1266770861d74fdfa9b915d", - "id" : "2207101", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "クリスマスパーティー", - "alias_name_display" : "クリスマスパーティー", - "hash" : "cb32cc18a6a4ddffb5eeea41bb83582e", - "id" : "2307102", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "ナイトパーティー", - "alias_name_display" : "ナイトパーティー", - "hash" : "709707a9d2a67c4371536f7e525f9392", - "id" : "2220101", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "ナイトパーティー", - "alias_name_display" : "ナイトパーティー", - "hash" : "1cddd797664730b9996c24be7647aeef", - "id" : "2320102", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "ライトニングモーニング", - "alias_name_display" : "ライトニングモーニング", - "hash" : "3497634f983f9f98d7d73469c45007f2", - "id" : "2225101", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "ライトニングモーニング", - "alias_name_display" : "ライトニングモーニング", - "hash" : "685e778faec4180be5af8d453a5bdbd8", - "id" : "2325102", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "T.B.チアーズ", - "alias_name_display" : "T.B.チアーズ", - "event" : [ { - "event_id" : 1512, - "event_name" : "第12回チーム対抗トークバトルショー" - } ], - "hash" : "cf11785b7891fb42a7d5b75fd7b33723", - "id" : "2231701", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "T.B.チアーズ", - "alias_name_display" : "T.B.チアーズ", - "event" : [ { - "event_id" : 1512, - "event_name" : "第12回チーム対抗トークバトルショー" - } ], - "hash" : "0c2ecb19bd0d360cd0e6b00e36b4348d", - "id" : "2331702", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "ブルーフロートパーティー", - "alias_name_display" : "ブルーフロートパーティー", - "event" : [ { - "event_id" : 506, - "event_name" : "アイドルLIVEツアーinハワイ" - } ], - "hash" : "cf22d3b6255843c39b54ae310cccc00b", - "id" : "2408301", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "ブルーフロートパーティー", - "alias_name_display" : "ブルーフロートパーティー", - "event" : [ { - "event_id" : 506, - "event_name" : "アイドルLIVEツアーinハワイ" - } ], - "hash" : "50b324eef14d2a6f827d1c51538c63cf", - "id" : "2508302", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "花咲く舞姿", - "alias_name_display" : "花咲く舞姿", - "event" : [ { - "event_id" : 510, - "event_name" : "ひな祭りLIVEツアーカーニバル" - } ], - "hash" : "aa5df8e05c805eab2ef48d45718fa710", - "id" : "2412701", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "花咲く舞姿", - "alias_name_display" : "花咲く舞姿", - "event" : [ { - "event_id" : 510, - "event_name" : "ひな祭りLIVEツアーカーニバル" - } ], - "hash" : "4678637baed65cc724da47c58b5fbeeb", - "id" : "2512702", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "夏の思い出", - "alias_name_display" : "夏の思い出", - "event" : [ { - "event_id" : 413, - "event_name" : "みんなのなつやすみ" - } ], - "hash" : "d39d369d246b0ed963bd28f0484c05ce", - "id" : "2415901", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "夏の思い出", - "alias_name_display" : "夏の思い出", - "event" : [ { - "event_id" : 413, - "event_name" : "みんなのなつやすみ" - } ], - "hash" : "0681a26986b44e551c2ac9d3f9681014", - "id" : "2515902", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "一夏の思い出", - "alias_name_display" : "一夏の思い出", - "event" : [ { - "event_id" : 413, - "event_name" : "みんなのなつやすみ" - } ], - "hash" : "3806edd95899d90efae5a33f742071fe", - "id" : "2416001", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "一夏の思い出", - "alias_name_display" : "一夏の思い出", - "event" : [ { - "event_id" : 413, - "event_name" : "みんなのなつやすみ" - } ], - "hash" : "42ca3dd4352298a6655156f141e4e1a9", - "id" : "2516002", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "こころペイント", - "alias_name_display" : "こころペイント", - "hash" : "bad411da0072464e386083dad9d15429", - "id" : "2426501", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "こころペイント", - "alias_name_display" : "こころペイント", - "hash" : "b29bf49901062956bfa1a97d530a1a8c", - "id" : "2526502", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "青き日のメモリー", - "alias_name_display" : "青き日のメモリー", - "hash" : "bc8b2dbbf15ea462967d6052df22acdb", - "id" : "2435101", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "青き日のメモリー", - "alias_name_display" : "青き日のメモリー", - "hash" : "df6fa045d58337acbd9725d8a940d1b4", - "id" : "2535102", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "56", - "weight" : "42" - } - } ], - "idol_id" : 76, - "idol_name" : "荒木比奈", - "idol_name_display" : "荒木比奈", - "units" : [ { - "id" : "12", - "name" : "壁サーの花" - }, { - "id" : "16", - "name" : "サイバーグラス" - }, { - "id" : "115", - "name" : "虹色ドリーマー" - }, { - "id" : "198", - "name" : "ブルーナポレオン" - } ] -}, { - "aliases" : [ { - "hash" : "74aa09925c2e9f3dfa27f9d6c9043737", - "id" : "2001101", - "profile" : { - "bust" : "82", - "height" : "167", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "hash" : "a3e6c69d2edf043cfb9c28701375fc34", - "id" : "2101102", - "profile" : { - "bust" : "82", - "height" : "167", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "新春", - "alias_name_display" : "新春", - "event" : [ { - "event_id" : 102, - "event_name" : "アイドルおもちつき大会" - } ], - "hash" : "cbe69bd743d9d067fd6b11cc0049a085", - "id" : "2202001", - "profile" : { - "bust" : "82", - "height" : "167", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "新春", - "alias_name_display" : "新春", - "event" : [ { - "event_id" : 102, - "event_name" : "アイドルおもちつき大会" - } ], - "hash" : "4a72d18788cce0a7d131aab3752f2c99", - "id" : "2302002", - "profile" : { - "bust" : "82", - "height" : "167", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "メイドコレクション", - "alias_name_display" : "メイドコレクション", - "hash" : "39675e1d3dc31791f353b9e6841ae8d8", - "id" : "2205701", - "profile" : { - "bust" : "82", - "height" : "167", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "メイドコレクション", - "alias_name_display" : "メイドコレクション", - "hash" : "d94d965adfb72f7ef95ac3b77733401a", - "id" : "2305702", - "profile" : { - "bust" : "82", - "height" : "167", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "桜祭り", - "alias_name_display" : "桜祭り", - "event" : [ { - "event_id" : 406, - "event_name" : "アイドルプロデュース 春の桜祭り編" - } ], - "hash" : "5ef83cd87feba045f3f187b1762ff6ca", - "id" : "2208901", - "profile" : { - "bust" : "82", - "height" : "167", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "桜祭り", - "alias_name_display" : "桜祭り", - "event" : [ { - "event_id" : 406, - "event_name" : "アイドルプロデュース 春の桜祭り編" - } ], - "hash" : "3c1f88d55d79cac9df8e77f18357f902", - "id" : "2308902", - "profile" : { - "bust" : "82", - "height" : "167", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "桜祭りスマイル", - "alias_name_display" : "桜祭りスマイル", - "event" : [ { - "event_id" : 406, - "event_name" : "アイドルプロデュース 春の桜祭り編" - } ], - "hash" : "4accecd9f5f759be292a3c85c2ce3918", - "id" : "2209001", - "profile" : { - "bust" : "82", - "height" : "167", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "桜祭りスマイル", - "alias_name_display" : "桜祭りスマイル", - "event" : [ { - "event_id" : 406, - "event_name" : "アイドルプロデュース 春の桜祭り編" - } ], - "hash" : "055eb7721bc1270b22d4547cf462a82c", - "id" : "2309002", - "profile" : { - "bust" : "82", - "height" : "167", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "エレガントビューティー", - "alias_name_display" : "エレガントビューティー", - "hash" : "6b328ca71ed9610a04aa38670c9b3166", - "id" : "2212801", - "profile" : { - "bust" : "82", - "height" : "167", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "エレガントビューティー", - "alias_name_display" : "エレガントビューティー", - "hash" : "4d32085d7d14fafb8a406e873442e7b8", - "id" : "2312802", - "profile" : { - "bust" : "82", - "height" : "167", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "エレガントI.C", - "alias_name_display" : "エレガントI.C", - "event" : [ { - "event_id" : 1205, - "event_name" : "目指せ優雅なお嬢様 アイドルチャレンジ" - } ], - "hash" : "b44cc7e3317df4588e160990fbfd4d86", - "id" : "2320002", - "profile" : { - "bust" : "82", - "height" : "167", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "サマーバケーション", - "alias_name_display" : "サマーバケーション", - "hash" : "31b37aeecf1445f7e363f3b8b7b6db23", - "id" : "2222401", - "profile" : { - "bust" : "82", - "height" : "167", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "サマーバケーション", - "alias_name_display" : "サマーバケーション", - "hash" : "696c01a795166f331a53c37994b5f7aa", - "id" : "2322402", - "profile" : { - "bust" : "82", - "height" : "167", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "美貌の麗女", - "alias_name_display" : "美貌の麗女", - "event" : [ { - "event_id" : 505, - "event_name" : "アイドルLIVEツアーinバリ島" - } ], - "hash" : "e359a699281a6fb7935618fc6358470f", - "id" : "2407701", - "profile" : { - "bust" : "82", - "height" : "167", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "美貌の麗女", - "alias_name_display" : "美貌の麗女", - "event" : [ { - "event_id" : 505, - "event_name" : "アイドルLIVEツアーinバリ島" - } ], - "hash" : "96c902ec8911587b338d09528fe19024", - "id" : "2507702", - "profile" : { - "bust" : "82", - "height" : "167", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ドライブトゥネクスト", - "alias_name_display" : "ドライブトゥネクスト", - "hash" : "289a6831a0ad831572b9a7d57a4eb6b2", - "id" : "2418301", - "profile" : { - "bust" : "82", - "height" : "167", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ドライブトゥネクスト", - "alias_name_display" : "ドライブトゥネクスト", - "hash" : "c3fa0697da17804c6fbd18ba99d2c722", - "id" : "2518302", - "profile" : { - "bust" : "82", - "height" : "167", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "貫禄のお嬢様", - "alias_name_display" : "貫禄のお嬢様", - "event" : [ { - "event_id" : 1205, - "event_name" : "目指せ優雅なお嬢様 アイドルチャレンジ" - } ], - "hash" : "9a9e72c629933e4ced1d13022e74552f", - "id" : "2422201", - "profile" : { - "bust" : "82", - "height" : "167", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "貫禄のお嬢様", - "alias_name_display" : "貫禄のお嬢様", - "event" : [ { - "event_id" : 1205, - "event_name" : "目指せ優雅なお嬢様 アイドルチャレンジ" - } ], - "hash" : "6820ec6d2e126592f9bade2f433bbcc7", - "id" : "2522202", - "profile" : { - "bust" : "82", - "height" : "167", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "貫禄のお嬢様・S", - "alias_name_display" : "貫禄のお嬢様・S", - "event" : [ { - "event_id" : 1205, - "event_name" : "目指せ優雅なお嬢様 アイドルチャレンジ" - } ], - "hash" : "3ce11c195914bac2bf7d885ecda38e09", - "id" : "2422301", - "profile" : { - "bust" : "82", - "height" : "167", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "貫禄のお嬢様・S", - "alias_name_display" : "貫禄のお嬢様・S", - "event" : [ { - "event_id" : 1205, - "event_name" : "目指せ優雅なお嬢様 アイドルチャレンジ" - } ], - "hash" : "928aa1d8c522c0ce8da26b91bf967cf6", - "id" : "2522302", - "profile" : { - "bust" : "82", - "height" : "167", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "夏の戯れ", - "alias_name_display" : "夏の戯れ", - "event" : [ { - "event_id" : 722, - "event_name" : "夏祭りDEドリームLIVEフェスティバル" - } ], - "hash" : "cd2da0337b1ecce664227382948450db", - "id" : "2433501", - "profile" : { - "bust" : "82", - "height" : "167", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "夏の戯れ", - "alias_name_display" : "夏の戯れ", - "event" : [ { - "event_id" : 722, - "event_name" : "夏祭りDEドリームLIVEフェスティバル" - } ], - "hash" : "b7e85b995983a4804983f200ce49b269", - "id" : "2533502", - "profile" : { - "bust" : "82", - "height" : "167", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "白銀のシュプール", - "alias_name_display" : "白銀のシュプール", - "event" : [ { - "event_id" : 1410, - "event_name" : "第10回ぷちデレラコレクション" - } ], - "hash" : "35a37964b7d42169b3c4cf2f4beffaec", - "id" : "2436901", - "profile" : { - "bust" : "82", - "height" : "167", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "白銀のシュプール", - "alias_name_display" : "白銀のシュプール", - "event" : [ { - "event_id" : 1410, - "event_name" : "第10回ぷちデレラコレクション" - } ], - "hash" : "18587c946f96cd9c273730176ecbcec8", - "id" : "2536902", - "profile" : { - "bust" : "82", - "height" : "167", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - } ], - "idol_id" : 77, - "idol_name" : "東郷あい", - "idol_name_display" : "東郷あい", - "units" : [ { - "id" : "10", - "name" : "エレガントインモラリスト" - }, { - "id" : "88", - "name" : "桜花小町" - }, { - "id" : "140", - "name" : "アイドルミズキ with AS" - }, { - "id" : "171", - "name" : "Black/White-Roses" - }, { - "id" : "183", - "name" : "メイドコレクション" - }, { - "id" : "199", - "name" : "レッドバラード" - } ] -}, { - "aliases" : [ { - "hash" : "914e2e1efbc1f05e987772cc5c925722", - "id" : "2001201", - "profile" : { - "bust" : "80", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "41" - } - }, { - "hash" : "17c1dfda6510677f5a448d951c086d33", - "id" : "2101202", - "profile" : { - "bust" : "80", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "バレンタイン", - "alias_name_display" : "バレンタイン", - "event" : [ { - "event_id" : 103, - "event_name" : "バレンタインパーティー" - } ], - "hash" : "dc90bc1dc7bad8aab44fa134a03bd9c8", - "id" : "2202901", - "profile" : { - "bust" : "80", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "バレンタイン", - "alias_name_display" : "バレンタイン", - "event" : [ { - "event_id" : 103, - "event_name" : "バレンタインパーティー" - } ], - "hash" : "80ebaaa423e960469332d32354761c8e", - "id" : "2302902", - "profile" : { - "bust" : "80", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "制服コレクション", - "alias_name_display" : "制服コレクション", - "hash" : "aff484871dd61658b8a67676988a0879", - "id" : "2203501", - "profile" : { - "bust" : "80", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "制服コレクション", - "alias_name_display" : "制服コレクション", - "hash" : "be5b1389c424bdcee5c5267f8f182ef3", - "id" : "2303502", - "profile" : { - "bust" : "80", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ロッキングセッション", - "alias_name_display" : "ロッキングセッション", - "event" : [ { - "event_id" : 601, - "event_name" : "アイドルセッション" - } ], - "hash" : "5c05456fa1975ed8ca50f82258df277d", - "id" : "2209301", - "profile" : { - "bust" : "80", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ロッキングセッション", - "alias_name_display" : "ロッキングセッション", - "event" : [ { - "event_id" : 601, - "event_name" : "アイドルセッション" - } ], - "hash" : "1e607f6df2113c582c0037bf2781bd77", - "id" : "2309302", - "profile" : { - "bust" : "80", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ワーキング・レスキュー", - "alias_name_display" : "ワーキング・レスキュー", - "hash" : "954eb62b4f0c88fb462862c417243571", - "id" : "2225301", - "profile" : { - "bust" : "80", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ワーキング・レスキュー", - "alias_name_display" : "ワーキング・レスキュー", - "hash" : "09a091936b403ea2cc9bd3922d47b873", - "id" : "2325302", - "profile" : { - "bust" : "80", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ロッキングフィーバー", - "alias_name_display" : "ロッキングフィーバー", - "event" : [ { - "event_id" : 1706, - "event_name" : "アイドルプロデュース 北の大地と夜さりの祭" - } ], - "hash" : "6b9c3e0ec3b75301341b0071e0c25c47", - "id" : "2326802", - "profile" : { - "bust" : "80", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ロッキングフィーバー・S", - "alias_name_display" : "ロッキングフィーバー・S", - "event" : [ { - "event_id" : 1706, - "event_name" : "アイドルプロデュース 北の大地と夜さりの祭" - } ], - "hash" : "28c80c030dbf6ee57cfd4d69403c0c82", - "id" : "2326902", - "profile" : { - "bust" : "80", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "クリエイティブI.C", - "alias_name_display" : "クリエイティブI.C", - "hash" : "6082b9c30ed35ed98c89d9f8185ec4ec", - "id" : "2331402", - "profile" : { - "bust" : "80", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ロッキングガール", - "alias_name_display" : "ロッキングガール", - "event" : [ { - "event_id" : 205, - "event_name" : "アイドルサバイバルinサマーライブ" - } ], - "hash" : "20d694b33aff2463098ec53b681c89f8", - "id" : "2402501", - "profile" : { - "bust" : "80", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ロッキングガール", - "alias_name_display" : "ロッキングガール", - "event" : [ { - "event_id" : 205, - "event_name" : "アイドルサバイバルinサマーライブ" - } ], - "hash" : "b2fac50d2d01e350c0555f61bc83a816", - "id" : "2502502", - "profile" : { - "bust" : "80", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "新春ロッカー", - "alias_name_display" : "新春ロッカー", - "hash" : "48fbeeba8cbf12dba8d2a2b9e46740ff", - "id" : "2404801", - "profile" : { - "bust" : "80", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "新春ロッカー", - "alias_name_display" : "新春ロッカー", - "hash" : "52279101de31c161d3e328d236b97111", - "id" : "2504802", - "profile" : { - "bust" : "80", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "6c4bcbefec8f70fc06a7825764240138", - "id" : "2405001", - "profile" : { - "bust" : "80", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "b664b9644edb5bb8c0ffb347035c5da3", - "id" : "2505002", - "profile" : { - "bust" : "80", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "エイトビートロッカー", - "alias_name_display" : "エイトビートロッカー", - "event" : [ { - "event_id" : 601, - "event_name" : "アイドルセッション" - } ], - "hash" : "215f8cec62b2aec84c7de6b82196e490", - "id" : "2406201", - "profile" : { - "bust" : "80", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "エイトビートロッカー", - "alias_name_display" : "エイトビートロッカー", - "event" : [ { - "event_id" : 601, - "event_name" : "アイドルセッション" - } ], - "hash" : "cfffdf39e7d42112b6a1c67c066464e9", - "id" : "2506202", - "profile" : { - "bust" : "80", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "シンデレラドリーム", - "alias_name_display" : "シンデレラドリーム", - "hash" : "b82cc04f383762ad8b17178c4541b612", - "id" : "2409101", - "profile" : { - "bust" : "80", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "シンデレラドリーム", - "alias_name_display" : "シンデレラドリーム", - "hash" : "fb8d932128418fe65603b3a401df31ec", - "id" : "2509102", - "profile" : { - "bust" : "80", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "フォー・ピース", - "alias_name_display" : "フォー・ピース", - "event" : [ { - "event_id" : 1202, - "event_name" : "目指せロックスター アイドルチャレンジ" - } ], - "hash" : "dd6344a8baf0947d7d8cce141122c052", - "id" : "2416201", - "profile" : { - "bust" : "80", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "フォー・ピース", - "alias_name_display" : "フォー・ピース", - "event" : [ { - "event_id" : 1202, - "event_name" : "目指せロックスター アイドルチャレンジ" - } ], - "hash" : "886f0d64d079d506d97861ff69384628", - "id" : "2516202", - "profile" : { - "bust" : "80", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "パーティーロックアンセム", - "alias_name_display" : "パーティーロックアンセム", - "hash" : "bf5998ac8491ce18e8d88fcd61237dc1", - "id" : "2419601", - "profile" : { - "bust" : "80", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "パーティーロックアンセム", - "alias_name_display" : "パーティーロックアンセム", - "hash" : "c7d9ebf06688e4ea6d383039efe538c1", - "id" : "2519602", - "profile" : { - "bust" : "80", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ブルーサンシャインサマー", - "alias_name_display" : "ブルーサンシャインサマー", - "hash" : "02395469aae2e69c4de945a9b169f4a6", - "id" : "2425701", - "profile" : { - "bust" : "80", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ブルーサンシャインサマー", - "alias_name_display" : "ブルーサンシャインサマー", - "hash" : "39aed32c6cbcf6adfe89bf505112b35a", - "id" : "2525702", - "profile" : { - "bust" : "80", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "アスタリスク", - "alias_name_display" : "アスタリスク", - "hash" : "273b1c41db9fcbaefa272d53a6d85400", - "id" : "2526302", - "profile" : { - "bust" : "80", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "オールナイトフィーバー", - "alias_name_display" : "オールナイトフィーバー", - "event" : [ { - "event_id" : 1706, - "event_name" : "アイドルプロデュース 北の大地と夜さりの祭" - } ], - "hash" : "1a0c01326720c0d7ef57912bb86d8578", - "id" : "2433001", - "profile" : { - "bust" : "80", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "オールナイトフィーバー", - "alias_name_display" : "オールナイトフィーバー", - "event" : [ { - "event_id" : 1706, - "event_name" : "アイドルプロデュース 北の大地と夜さりの祭" - } ], - "hash" : "76d21a0867948b21a7f1bf26aee05b5b", - "id" : "2533002", - "profile" : { - "bust" : "80", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "バイオレットディシジョン", - "alias_name_display" : "バイオレットディシジョン", - "event" : [ { - "event_id" : 1215, - "event_name" : "ふたりでアイドルチャレンジ 目指せクールなミュージックビデオ" - } ], - "hash" : "ce6cc64940b1610edfdd5e8486bd0de2", - "id" : "2438801", - "profile" : { - "bust" : "80", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "バイオレットディシジョン", - "alias_name_display" : "バイオレットディシジョン", - "event" : [ { - "event_id" : 1215, - "event_name" : "ふたりでアイドルチャレンジ 目指せクールなミュージックビデオ" - } ], - "hash" : "4a688e97246cf40a0e8850db9199e694", - "id" : "2538802", - "profile" : { - "bust" : "80", - "height" : "152", - "hip" : "81", - "waist" : "55", - "weight" : "41" - } - } ], - "idol_id" : 78, - "idol_name" : "多田李衣菜", - "idol_name_display" : "多田李衣菜", - "units" : [ { - "id" : "70", - "name" : "*(Asterisk)" - }, { - "id" : "81", - "name" : "Rock the Beat" - }, { - "id" : "107", - "name" : "ロッキングガール" - }, { - "id" : "168", - "name" : "*(Asterisk) with なつなな" - }, { - "id" : "169", - "name" : "FOUR PIECE" - }, { - "id" : "192", - "name" : "Masque:Rade" - }, { - "id" : "197", - "name" : "アズール・ムジカ" - }, { - "id" : "213", - "name" : "CINDERELLA PROJECT" - } ] -}, { - "aliases" : [ { - "hash" : "abc8481a5c280fa3b9f0e214880ee10d", - "id" : "2001301", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "hash" : "1109985f3ac6a0ab92adf1c3136a69af", - "id" : "2101302", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "お花見", - "alias_name_display" : "お花見", - "event" : [ { - "event_id" : 104, - "event_name" : "桜舞う花見祭り" - } ], - "hash" : "9b24f0f25fd3f4e45306de3a07a50abc", - "id" : "2203301", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "お花見", - "alias_name_display" : "お花見", - "event" : [ { - "event_id" : 104, - "event_name" : "桜舞う花見祭り" - } ], - "hash" : "998aefcaf91a4c9b6d1cfb5dff235102", - "id" : "2303302", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "マーメイドパラダイス", - "alias_name_display" : "マーメイドパラダイス", - "hash" : "431266547e2d69e6b788192f9c9dec3f", - "id" : "2205101", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "マーメイドパラダイス", - "alias_name_display" : "マーメイドパラダイス", - "hash" : "b6eaf7aa76eea29848924dc21390f04b", - "id" : "2305102", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "アップトゥデイト", - "alias_name_display" : "アップトゥデイト", - "hash" : "ace39a60c5f5dea3c2c5a29eece7a98e", - "id" : "2218001", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "アップトゥデイト", - "alias_name_display" : "アップトゥデイト", - "hash" : "726fa7ad55bf434211137953c02e577d", - "id" : "2318002", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ダンシングガール", - "alias_name_display" : "ダンシングガール", - "event" : [ { - "event_id" : 1706, - "event_name" : "アイドルプロデュース 北の大地と夜さりの祭" - } ], - "hash" : "c2f252167530abf530d24e86c76f3d8e", - "id" : "2227001", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ダンシングガール", - "alias_name_display" : "ダンシングガール", - "event" : [ { - "event_id" : 1706, - "event_name" : "アイドルプロデュース 北の大地と夜さりの祭" - } ], - "hash" : "e6541e39874ed3fbf45ca0352f7bb63b", - "id" : "2327002", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ダンシングガール・S", - "alias_name_display" : "ダンシングガール・S", - "event" : [ { - "event_id" : 1706, - "event_name" : "アイドルプロデュース 北の大地と夜さりの祭" - } ], - "hash" : "4d2e522dfd47d84d940d49783c020d74", - "id" : "2227101", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ダンシングガール・S", - "alias_name_display" : "ダンシングガール・S", - "event" : [ { - "event_id" : 1706, - "event_name" : "アイドルプロデュース 北の大地と夜さりの祭" - } ], - "hash" : "9ed53b79186a805737dd6cb970269ce9", - "id" : "2327102", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ハートビートUSA", - "alias_name_display" : "ハートビートUSA", - "event" : [ { - "event_id" : 501, - "event_name" : "アイドルLIVEツアーinUSA" - } ], - "hash" : "51c8925b6e5c956b98b83eb20d46040d", - "id" : "2403901", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ハートビートUSA", - "alias_name_display" : "ハートビートUSA", - "event" : [ { - "event_id" : 501, - "event_name" : "アイドルLIVEツアーinUSA" - } ], - "hash" : "039e4d40a61739c0ea9eee219358547d", - "id" : "2503902", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "サンライトマリナー", - "alias_name_display" : "サンライトマリナー", - "hash" : "a91333acf3e8f62c5c089cb9f80cae53", - "id" : "2408101", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "サンライトマリナー", - "alias_name_display" : "サンライトマリナー", - "hash" : "92cdfe2c392257dfb9812d16954b02cc", - "id" : "2508102", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "魅惑のバニー", - "alias_name_display" : "魅惑のバニー", - "hash" : "32b0b845e8021a8d37704bbd14eb038c", - "id" : "2412201", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "魅惑のバニー", - "alias_name_display" : "魅惑のバニー", - "hash" : "457e56799338c978c0da981e40f8ad01", - "id" : "2512202", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ワンデイマイウェイ", - "alias_name_display" : "ワンデイマイウェイ", - "event" : [ { - "event_id" : 1501, - "event_name" : "チーム対抗トークバトルショー" - } ], - "hash" : "1e18fbe74cb8c0111918b5000b2ae9c7", - "id" : "2423401", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ワンデイマイウェイ", - "alias_name_display" : "ワンデイマイウェイ", - "event" : [ { - "event_id" : 1501, - "event_name" : "チーム対抗トークバトルショー" - } ], - "hash" : "65566f326cb457b6b0269ce58299d80f", - "id" : "2523402", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "情熱のゆくえ", - "alias_name_display" : "情熱のゆくえ", - "event" : [ { - "event_id" : "024", - "event_name" : "第24回プロダクションマッチフェスティバル" - } ], - "hash" : "388059213e4526e3198f513dea759229", - "id" : "2427601", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "情熱のゆくえ", - "alias_name_display" : "情熱のゆくえ", - "event" : [ { - "event_id" : "024", - "event_name" : "第24回プロダクションマッチフェスティバル" - } ], - "hash" : "a6b738ae3dad7422c7b4d0c1681777a8", - "id" : "2527602", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ライズバイビギン", - "alias_name_display" : "ライズバイビギン", - "hash" : "c14d72f459f7e1236907cfca8ab14e34", - "id" : "2438101", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ライズバイビギン", - "alias_name_display" : "ライズバイビギン", - "hash" : "ba06248f504e77b5b221773f218ea8a2", - "id" : "2538102", - "profile" : { - "bust" : "82", - "height" : "155", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - } ], - "idol_id" : 79, - "idol_name" : "水木聖來", - "idol_name_display" : "水木聖來", - "units" : [ { - "id" : "29", - "name" : "セーラーマリナー" - }, { - "id" : "110", - "name" : "アップトゥデイト" - }, { - "id" : "111", - "name" : "アンチェイン・シグナル" - }, { - "id" : "182", - "name" : "マーメイドパラダイス" - } ] -}, { - "aliases" : [ { - "hash" : "f0c2444b0d413beed830240f57990e26", - "id" : "2001401", - "profile" : { - "bust" : "73", - "height" : "139", - "hip" : "73", - "waist" : "49", - "weight" : "33" - } - }, { - "hash" : "05cd6e3d8c261274848e8f1863fb0cff", - "id" : "2101402", - "profile" : { - "bust" : "73", - "height" : "139", - "hip" : "73", - "waist" : "49", - "weight" : "33" - } - }, { - "alias_name" : "バレンタイン", - "alias_name_display" : "バレンタイン", - "event" : [ { - "event_id" : 103, - "event_name" : "バレンタインパーティー" - } ], - "hash" : "0f019f7dd04a1b63a1e3825c28a11123", - "id" : "2001801", - "profile" : { - "bust" : "73", - "height" : "139", - "hip" : "73", - "waist" : "49", - "weight" : "33" - } - }, { - "alias_name" : "バレンタイン", - "alias_name_display" : "バレンタイン", - "event" : [ { - "event_id" : 103, - "event_name" : "バレンタインパーティー" - } ], - "hash" : "8abda9b19f8a14835bbc821b2507e8ee", - "id" : "2101802", - "profile" : { - "bust" : "73", - "height" : "139", - "hip" : "73", - "waist" : "49", - "weight" : "33" - } - }, { - "alias_name" : "デビリッシュゴシック", - "alias_name_display" : "デビリッシュゴシック", - "hash" : "044f113cdcc7732faf97b6fb1df1d96a", - "id" : "2209701", - "profile" : { - "bust" : "73", - "height" : "139", - "hip" : "73", - "waist" : "49", - "weight" : "33" - } - }, { - "alias_name" : "デビリッシュゴシック", - "alias_name_display" : "デビリッシュゴシック", - "hash" : "a33955d9b6f7d22ebba0cf1073c079a7", - "id" : "2309702", - "profile" : { - "bust" : "73", - "height" : "139", - "hip" : "73", - "waist" : "49", - "weight" : "33" - } - }, { - "alias_name" : "スタディ&ステディ", - "alias_name_display" : "スタディ&ステディ", - "event" : [ { - "event_id" : 706, - "event_name" : "第6回ドリームLIVEフェスティバル" - } ], - "hash" : "936c37c079b0126b271f83c7fedef864", - "id" : "2215001", - "profile" : { - "bust" : "73", - "height" : "139", - "hip" : "73", - "waist" : "49", - "weight" : "33" - } - }, { - "alias_name" : "スタディ&ステディ", - "alias_name_display" : "スタディ&ステディ", - "event" : [ { - "event_id" : 706, - "event_name" : "第6回ドリームLIVEフェスティバル" - } ], - "hash" : "1abbc5eac07f45dc193afebe5cad86ff", - "id" : "2315002", - "profile" : { - "bust" : "73", - "height" : "139", - "hip" : "73", - "waist" : "49", - "weight" : "33" - } - }, { - "alias_name" : "ウェディングI.C", - "alias_name_display" : "ウェディングI.C", - "event" : [ { - "event_id" : 1206, - "event_name" : "目指せウェディングモデル アイドルチャレンジ" - } ], - "hash" : "2554c92dc0e9efd5156764e9481a6cdc", - "id" : "2321502", - "profile" : { - "bust" : "73", - "height" : "139", - "hip" : "73", - "waist" : "49", - "weight" : "33" - } - }, { - "alias_name" : "クリスマスナイト", - "alias_name_display" : "クリスマスナイト", - "hash" : "3d0d69d62b66f7126564592ca5b4c7ad", - "id" : "2224201", - "profile" : { - "bust" : "73", - "height" : "139", - "hip" : "73", - "waist" : "49", - "weight" : "33" - } - }, { - "alias_name" : "クリスマスナイト", - "alias_name_display" : "クリスマスナイト", - "hash" : "fa6a7fdd63649f509943e8ffc48ece69", - "id" : "2324202", - "profile" : { - "bust" : "73", - "height" : "139", - "hip" : "73", - "waist" : "49", - "weight" : "33" - } - }, { - "alias_name" : "ガーリードール", - "alias_name_display" : "ガーリードール", - "hash" : "daac0bd09193284b6e3c1384ad8d6811", - "id" : "2227901", - "profile" : { - "bust" : "73", - "height" : "139", - "hip" : "73", - "waist" : "49", - "weight" : "33" - } - }, { - "alias_name" : "ガーリードール", - "alias_name_display" : "ガーリードール", - "hash" : "32ccc1fd6da96b70e447ea3f2a2186a2", - "id" : "2327902", - "profile" : { - "bust" : "73", - "height" : "139", - "hip" : "73", - "waist" : "49", - "weight" : "33" - } - }, { - "alias_name" : "魔法のスマイル", - "alias_name_display" : "魔法のスマイル", - "event" : [ { - "event_id" : 203, - "event_name" : "アイドルサバイバルinテーマパーク" - } ], - "hash" : "7213ea3b2b521bcde53e7146de663446", - "id" : "2401701", - "profile" : { - "bust" : "73", - "height" : "139", - "hip" : "73", - "waist" : "49", - "weight" : "33" - } - }, { - "alias_name" : "魔法のスマイル", - "alias_name_display" : "魔法のスマイル", - "event" : [ { - "event_id" : 203, - "event_name" : "アイドルサバイバルinテーマパーク" - } ], - "hash" : "ab92fbb87150467830f12b1c376302d2", - "id" : "2501702", - "profile" : { - "bust" : "73", - "height" : "139", - "hip" : "73", - "waist" : "49", - "weight" : "33" - } - }, { - "alias_name" : "色づき紅葉", - "alias_name_display" : "色づき紅葉", - "event" : [ { - "event_id" : 402, - "event_name" : "アイドルプロデュース京町編" - } ], - "hash" : "6f0b70d6ce4852c6e487ad3a32202838", - "id" : "2403501", - "profile" : { - "bust" : "73", - "height" : "139", - "hip" : "73", - "waist" : "49", - "weight" : "33" - } - }, { - "alias_name" : "色づき紅葉", - "alias_name_display" : "色づき紅葉", - "event" : [ { - "event_id" : 402, - "event_name" : "アイドルプロデュース京町編" - } ], - "hash" : "7bdb027ba84b1035532d31a6c81decda", - "id" : "2503502", - "profile" : { - "bust" : "73", - "height" : "139", - "hip" : "73", - "waist" : "49", - "weight" : "33" - } - }, { - "alias_name" : "マーチング☆メジャー", - "alias_name_display" : "マーチング☆メジャー", - "hash" : "d2d3857a48dae78a1e24c8c9bda2c751", - "id" : "2408901", - "profile" : { - "bust" : "73", - "height" : "139", - "hip" : "73", - "waist" : "49", - "weight" : "33" - } - }, { - "alias_name" : "マーチング☆メジャー", - "alias_name_display" : "マーチング☆メジャー", - "hash" : "fe0c2ac409bb9eb4b6a8ab5050a6bf0c", - "id" : "2508902", - "profile" : { - "bust" : "73", - "height" : "139", - "hip" : "73", - "waist" : "49", - "weight" : "33" - } - }, { - "alias_name" : "色づき紅葉・スマイル", - "alias_name_display" : "色づき紅葉・スマイル", - "event" : [ { - "event_id" : 402, - "event_name" : "アイドルプロデュース京町編" - } ], - "hash" : "7d617c6da4e598221715f638460b14b4", - "id" : "2411001", - "profile" : { - "bust" : "73", - "height" : "139", - "hip" : "73", - "waist" : "49", - "weight" : "33" - } - }, { - "alias_name" : "色づき紅葉・スマイル", - "alias_name_display" : "色づき紅葉・スマイル", - "event" : [ { - "event_id" : 402, - "event_name" : "アイドルプロデュース京町編" - } ], - "hash" : "3a2ecda51aca30ae1085bfc8d8ea49a6", - "id" : "2511002", - "profile" : { - "bust" : "73", - "height" : "139", - "hip" : "73", - "waist" : "49", - "weight" : "33" - } - }, { - "alias_name" : "チャーミングチアー", - "alias_name_display" : "チャーミングチアー", - "event" : [ { - "event_id" : 1103, - "event_name" : "第3回プロダクション対抗トークバトルショー" - } ], - "hash" : "e8572a72a031ff58788b7cc12fc981a0", - "id" : "2415401", - "profile" : { - "bust" : "73", - "height" : "139", - "hip" : "73", - "waist" : "49", - "weight" : "33" - } - }, { - "alias_name" : "チャーミングチアー", - "alias_name_display" : "チャーミングチアー", - "event" : [ { - "event_id" : 1103, - "event_name" : "第3回プロダクション対抗トークバトルショー" - } ], - "hash" : "7d8637027259261ee45c9abc302fa7d6", - "id" : "2515402", - "profile" : { - "bust" : "73", - "height" : "139", - "hip" : "73", - "waist" : "49", - "weight" : "33" - } - }, { - "alias_name" : "ちいさな冬のメモリー", - "alias_name_display" : "ちいさな冬のメモリー", - "event" : [ { - "event_id" : 1303, - "event_name" : "第3回プロダクションマッチフェスティバルS" - } ], - "hash" : "7ad729a67d4c59988bfc3776e5150a67", - "id" : "2420801", - "profile" : { - "bust" : "73", - "height" : "139", - "hip" : "73", - "waist" : "49", - "weight" : "33" - } - }, { - "alias_name" : "ちいさな冬のメモリー", - "alias_name_display" : "ちいさな冬のメモリー", - "event" : [ { - "event_id" : 1303, - "event_name" : "第3回プロダクションマッチフェスティバルS" - } ], - "hash" : "abb0c6f85275d68dea5608ae344d62ff", - "id" : "2520802", - "profile" : { - "bust" : "73", - "height" : "139", - "hip" : "73", - "waist" : "49", - "weight" : "33" - } - }, { - "alias_name" : "おしゃまな花嫁", - "alias_name_display" : "おしゃまな花嫁", - "event" : [ { - "event_id" : 1206, - "event_name" : "目指せウェディングモデル アイドルチャレンジ" - } ], - "hash" : "6072c44e2844c6a34c24e9207ee2c08a", - "id" : "2424601", - "profile" : { - "bust" : "73", - "height" : "139", - "hip" : "73", - "waist" : "49", - "weight" : "33" - } - }, { - "alias_name" : "おしゃまな花嫁", - "alias_name_display" : "おしゃまな花嫁", - "event" : [ { - "event_id" : 1206, - "event_name" : "目指せウェディングモデル アイドルチャレンジ" - } ], - "hash" : "7cdbf6e7efde979e4c28518175026446", - "id" : "2524602", - "profile" : { - "bust" : "73", - "height" : "139", - "hip" : "73", - "waist" : "49", - "weight" : "33" - } - }, { - "alias_name" : "おしゃまな花嫁・S", - "alias_name_display" : "おしゃまな花嫁・S", - "event" : [ { - "event_id" : 1206, - "event_name" : "目指せウェディングモデル アイドルチャレンジ" - } ], - "hash" : "3998b113aa219043952e20f63b5264f8", - "id" : "2424701", - "profile" : { - "bust" : "73", - "height" : "139", - "hip" : "73", - "waist" : "49", - "weight" : "33" - } - }, { - "alias_name" : "おしゃまな花嫁・S", - "alias_name_display" : "おしゃまな花嫁・S", - "event" : [ { - "event_id" : 1206, - "event_name" : "目指せウェディングモデル アイドルチャレンジ" - } ], - "hash" : "8606f7184a98a984dee5cc60cda14bb6", - "id" : "2524702", - "profile" : { - "bust" : "73", - "height" : "139", - "hip" : "73", - "waist" : "49", - "weight" : "33" - } - }, { - "alias_name" : "憧れモード", - "alias_name_display" : "憧れモード", - "event" : [ { - "event_id" : 1411, - "event_name" : "第11回ぷちデレラコレクション" - } ], - "hash" : "23b1021bbf8e0387b79db8e5a09417d1", - "id" : "2438201", - "profile" : { - "bust" : "73", - "height" : "139", - "hip" : "73", - "waist" : "49", - "weight" : "33" - } - }, { - "alias_name" : "憧れモード", - "alias_name_display" : "憧れモード", - "event" : [ { - "event_id" : 1411, - "event_name" : "第11回ぷちデレラコレクション" - } ], - "hash" : "54022827f6129503d2444697e275e075", - "id" : "2538202", - "profile" : { - "bust" : "73", - "height" : "139", - "hip" : "73", - "waist" : "49", - "weight" : "33" - } - } ], - "idol_id" : 80, - "idol_name" : "佐々木千枝", - "idol_name_display" : "佐々木千枝", - "units" : [ { - "id" : "157", - "name" : "デビリッシュゴシック" - }, { - "id" : "198", - "name" : "ブルーナポレオン" - }, { - "id" : "214", - "name" : "L.M.B.G" - } ] -}, { - "aliases" : [ { - "event" : [ { - "event_id" : 101, - "event_name" : "星降るクリスマス" - } ], - "hash" : "c89d54609371818e71836d519b3d404f", - "id" : "2001501", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "46" - } - }, { - "event" : [ { - "event_id" : 101, - "event_name" : "星降るクリスマス" - } ], - "hash" : "f88124b3773ba0ab60c214b9680cfad3", - "id" : "2101502", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "アニマルパーク", - "alias_name_display" : "アニマルパーク", - "event" : [ { - "event_id" : 204, - "event_name" : "アイドルサバイバルin動物園" - } ], - "hash" : "1a248c4fd99fa2c0f6e7cfd3d38cdec3", - "id" : "2204501", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "アニマルパーク", - "alias_name_display" : "アニマルパーク", - "event" : [ { - "event_id" : 204, - "event_name" : "アイドルサバイバルin動物園" - } ], - "hash" : "0dc198bc42f2bf127be11bba49ec153d", - "id" : "2304502", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "クリスマスパーティー", - "alias_name_display" : "クリスマスパーティー", - "hash" : "708ec9cc3763b594d6601c8d51c5e8c8", - "id" : "2207201", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "クリスマスパーティー", - "alias_name_display" : "クリスマスパーティー", - "hash" : "8489c6bf198cd1add92e31214cf1ed3b", - "id" : "2307202", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "癒しの女神", - "alias_name_display" : "癒しの女神", - "event" : [ { - "event_id" : 401, - "event_name" : "新人アイドルプロデュース" - } ], - "hash" : "e36e7e2c8af815133d20fb841089649f", - "id" : "2402901", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "癒しの女神", - "alias_name_display" : "癒しの女神", - "event" : [ { - "event_id" : 401, - "event_name" : "新人アイドルプロデュース" - } ], - "hash" : "abbf9be5325779c8ee449c299d4289fb", - "id" : "2502902", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "ティアドロップ", - "alias_name_display" : "ティアドロップ", - "event" : [ { - "event_id" : 407, - "event_name" : "アイドルプロデュース 鎌倉あじさい巡り" - } ], - "hash" : "ee322ea98eab35f352e5b9c0d060a48e", - "id" : "2406901", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "ティアドロップ", - "alias_name_display" : "ティアドロップ", - "event" : [ { - "event_id" : 407, - "event_name" : "アイドルプロデュース 鎌倉あじさい巡り" - } ], - "hash" : "97fa2fe3c33deab094d5c2374b9815f0", - "id" : "2506902", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "ティアドロップスマイル", - "alias_name_display" : "ティアドロップスマイル", - "event" : [ { - "event_id" : 407, - "event_name" : "アイドルプロデュース 鎌倉あじさい巡り" - } ], - "hash" : "a2481e91c759538a71497ff12e668e6e", - "id" : "2407001", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "ティアドロップスマイル", - "alias_name_display" : "ティアドロップスマイル", - "event" : [ { - "event_id" : 407, - "event_name" : "アイドルプロデュース 鎌倉あじさい巡り" - } ], - "hash" : "d6112289cb47bc2ba05d118737624c87", - "id" : "2507002", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "エレガントアクトレス", - "alias_name_display" : "エレガントアクトレス", - "hash" : "cace0e19284699a04378eb8009fa183f", - "id" : "2411601", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "エレガントアクトレス", - "alias_name_display" : "エレガントアクトレス", - "hash" : "3f56480abbcb48a95271b953d7622d78", - "id" : "2511602", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "優美なる花嫁", - "alias_name_display" : "優美なる花嫁", - "hash" : "cdbb784799d1dba671dfc86bb7c1f793", - "id" : "2414901", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "優美なる花嫁", - "alias_name_display" : "優美なる花嫁", - "hash" : "8b2980adb5b283dc25de271784f69137", - "id" : "2514902", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "ふぁいと一発", - "alias_name_display" : "ふぁいと一発", - "event" : [ { - "event_id" : 709, - "event_name" : "第9回ドリームLIVEフェスティバル" - } ], - "hash" : "4e782e8a138d53a9cc8a6c1e0b4013b5", - "id" : "2418701", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "ふぁいと一発", - "alias_name_display" : "ふぁいと一発", - "event" : [ { - "event_id" : 709, - "event_name" : "第9回ドリームLIVEフェスティバル" - } ], - "hash" : "fac6d145b1b32c83eb6491ae2d58799e", - "id" : "2518702", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "繚乱の花人", - "alias_name_display" : "繚乱の花人", - "hash" : "e427adb35c668971f9dbd359bac19590", - "id" : "2423001", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "繚乱の花人", - "alias_name_display" : "繚乱の花人", - "hash" : "5f45af1cc6ce463f760111044680cadc", - "id" : "2523002", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "ウィンターバカンスヴィーナス", - "alias_name_display" : "ウィンターバカンスヴィーナス", - "hash" : "db306ac30fb4deb6148f4536444be5b2", - "id" : "2429401", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "ウィンターバカンスヴィーナス", - "alias_name_display" : "ウィンターバカンスヴィーナス", - "hash" : "3e94f06dddc6aebc16f6b61d1287bb86", - "id" : "2529402", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "天藍のカンツォーネ", - "alias_name_display" : "天藍のカンツォーネ", - "hash" : "80ad5921f5bf1f0e25317eb149aec5b8", - "id" : "2434501", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "天藍のカンツォーネ", - "alias_name_display" : "天藍のカンツォーネ", - "hash" : "b6ddd6316b0036bf1bf5d36c8c76a103", - "id" : "2534502", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "語らいの明眸", - "alias_name_display" : "語らいの明眸", - "event" : [ { - "event_id" : 1512, - "event_name" : "第12回チーム対抗トークバトルショー" - } ], - "hash" : "29fd6073c0fd3f5e6e6ed5c7f034d9d3", - "id" : "2439601", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "語らいの明眸", - "alias_name_display" : "語らいの明眸", - "event" : [ { - "event_id" : 1512, - "event_name" : "第12回チーム対抗トークバトルショー" - } ], - "hash" : "be6c919489145ab6fcf4735fccad0f5c", - "id" : "2539602", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "46" - } - } ], - "idol_id" : 81, - "idol_name" : "三船美優", - "idol_name_display" : "三船美優", - "units" : [ { - "id" : "22", - "name" : "シャイニー・アーリーデイズ" - }, { - "id" : "84", - "name" : "アニマルパーク" - }, { - "id" : "142", - "name" : "バレンタイン反省会" - }, { - "id" : "184", - "name" : "宵乙女" - } ] -}, { - "aliases" : [ { - "event" : [ { - "event_id" : 102, - "event_name" : "アイドルおもちつき大会" - } ], - "hash" : "35b09bc982525959986d255eba92f6bf", - "id" : "2001601", - "profile" : { - "bust" : "78", - "height" : "169", - "hip" : "80", - "waist" : "57", - "weight" : "48" - } - }, { - "event" : [ { - "event_id" : 102, - "event_name" : "アイドルおもちつき大会" - } ], - "hash" : "6b061a866178e79570981b8a9bf5544d", - "id" : "2101602", - "profile" : { - "bust" : "78", - "height" : "169", - "hip" : "80", - "waist" : "57", - "weight" : "48" - } - }, { - "alias_name" : "新たな一面", - "alias_name_display" : "新たな一面", - "hash" : "24e21295c6dca652c107bad42d161e3c", - "id" : "2208301", - "profile" : { - "bust" : "78", - "height" : "169", - "hip" : "80", - "waist" : "57", - "weight" : "48" - } - }, { - "alias_name" : "新たな一面", - "alias_name_display" : "新たな一面", - "hash" : "1582d357b84644b66bb3d4db8c88125a", - "id" : "2308302", - "profile" : { - "bust" : "78", - "height" : "169", - "hip" : "80", - "waist" : "57", - "weight" : "48" - } - }, { - "alias_name" : "アダルティアニマル", - "alias_name_display" : "アダルティアニマル", - "hash" : "bae6764236edeb14d146c5ba72311f5e", - "id" : "2219901", - "profile" : { - "bust" : "78", - "height" : "169", - "hip" : "80", - "waist" : "57", - "weight" : "48" - } - }, { - "alias_name" : "アダルティアニマル", - "alias_name_display" : "アダルティアニマル", - "hash" : "41a29dd0318bbc19cde60b68865f0987", - "id" : "2319902", - "profile" : { - "bust" : "78", - "height" : "169", - "hip" : "80", - "waist" : "57", - "weight" : "48" - } - }, { - "alias_name" : "ロワイヤルスタイルND", - "alias_name_display" : "ロワイヤルスタイルND", - "event" : [ { - "event_id" : 813, - "event_name" : "第13回アイドルLIVEロワイヤル" - } ], - "hash" : "8b2e579310bd133d0f34f876918ef36f", - "id" : "2321902", - "profile" : { - "bust" : "78", - "height" : "169", - "hip" : "80", - "waist" : "57", - "weight" : "48" - } - }, { - "alias_name" : "ゴーフォーヴィクトリー", - "alias_name_display" : "ゴーフォーヴィクトリー", - "hash" : "2770f9e3f17554d24e74423749631811", - "id" : "2231001", - "profile" : { - "bust" : "78", - "height" : "169", - "hip" : "80", - "waist" : "57", - "weight" : "48" - } - }, { - "alias_name" : "ゴーフォーヴィクトリー", - "alias_name_display" : "ゴーフォーヴィクトリー", - "hash" : "4d9a759a02e8a414f311b3430938d69c", - "id" : "2331002", - "profile" : { - "bust" : "78", - "height" : "169", - "hip" : "80", - "waist" : "57", - "weight" : "48" - } - }, { - "alias_name" : "一輪の花", - "alias_name_display" : "一輪の花", - "event" : [ { - "event_id" : 213, - "event_name" : "アイドルサバイバルinフラワーガーデン" - } ], - "hash" : "5c23e5797171e8313c89225c1040289d", - "id" : "2413901", - "profile" : { - "bust" : "78", - "height" : "169", - "hip" : "80", - "waist" : "57", - "weight" : "48" - } - }, { - "alias_name" : "一輪の花", - "alias_name_display" : "一輪の花", - "event" : [ { - "event_id" : 213, - "event_name" : "アイドルサバイバルinフラワーガーデン" - } ], - "hash" : "108e6a615a49e2b18ba7c1ba3ddfb383", - "id" : "2513902", - "profile" : { - "bust" : "78", - "height" : "169", - "hip" : "80", - "waist" : "57", - "weight" : "48" - } - }, { - "alias_name" : "エターナルホープ", - "alias_name_display" : "エターナルホープ", - "event" : [ { - "event_id" : "026", - "event_name" : "第26回プロダクションマッチフェスティバル" - } ], - "hash" : "72c7f8f3977631a376f9335318ffd01e", - "id" : "2430901", - "profile" : { - "bust" : "78", - "height" : "169", - "hip" : "80", - "waist" : "57", - "weight" : "48" - } - }, { - "alias_name" : "エターナルホープ", - "alias_name_display" : "エターナルホープ", - "event" : [ { - "event_id" : "026", - "event_name" : "第26回プロダクションマッチフェスティバル" - } ], - "hash" : "2fc8f01b15ea20a9da1300e11b02650e", - "id" : "2530902", - "profile" : { - "bust" : "78", - "height" : "169", - "hip" : "80", - "waist" : "57", - "weight" : "48" - } - }, { - "alias_name" : "ビリービングチアー", - "alias_name_display" : "ビリービングチアー", - "event" : [ { - "event_id" : 1508, - "event_name" : "チーム対抗トークバトルショー in SUMMER" - } ], - "hash" : "e3329e174d1a982ea1caa591aad94568", - "id" : "2434301", - "profile" : { - "bust" : "78", - "height" : "169", - "hip" : "80", - "waist" : "57", - "weight" : "48" - } - }, { - "alias_name" : "ビリービングチアー", - "alias_name_display" : "ビリービングチアー", - "event" : [ { - "event_id" : 1508, - "event_name" : "チーム対抗トークバトルショー in SUMMER" - } ], - "hash" : "8c428918c3def67003cdb73be7eb1b85", - "id" : "2534302", - "profile" : { - "bust" : "78", - "height" : "169", - "hip" : "80", - "waist" : "57", - "weight" : "48" - } - } ], - "idol_id" : 82, - "idol_name" : "服部瞳子", - "idol_name_display" : "服部瞳子", - "units" : [ { - "id" : "142", - "name" : "バレンタイン反省会" - }, { - "id" : "210", - "name" : "ロワイヤルスタイルND" - } ] -}, { - "aliases" : [ { - "hash" : "046cd353c0361020d544e2946f024908", - "id" : "2001701", - "profile" : { - "bust" : "88", - "height" : "172", - "hip" : "89", - "waist" : "60", - "weight" : "50" - } - }, { - "hash" : "e020758ea7075bb1602c7350823566c0", - "id" : "2101702", - "profile" : { - "bust" : "88", - "height" : "172", - "hip" : "89", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "ハロウィンヴァンパイア", - "alias_name_display" : "ハロウィンヴァンパイア", - "event" : [ { - "event_id" : 207, - "event_name" : "アイドルサバイバル ハロウィン編" - } ], - "hash" : "008d9393fd573899800cc63d17cd3881", - "id" : "2206501", - "profile" : { - "bust" : "88", - "height" : "172", - "hip" : "89", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "ハロウィンヴァンパイア", - "alias_name_display" : "ハロウィンヴァンパイア", - "event" : [ { - "event_id" : 207, - "event_name" : "アイドルサバイバル ハロウィン編" - } ], - "hash" : "fadf4c0567cbc33bd14012d985da6770", - "id" : "2306502", - "profile" : { - "bust" : "88", - "height" : "172", - "hip" : "89", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "メタリックレディウルフ", - "alias_name_display" : "メタリックレディウルフ", - "hash" : "6bde4d4ab925d40189957d22816238bc", - "id" : "2213301", - "profile" : { - "bust" : "88", - "height" : "172", - "hip" : "89", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "メタリックレディウルフ", - "alias_name_display" : "メタリックレディウルフ", - "hash" : "79b8ba4a1305641121f85c630a187072", - "id" : "2313302", - "profile" : { - "bust" : "88", - "height" : "172", - "hip" : "89", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "スクールガール", - "alias_name_display" : "スクールガール", - "hash" : "de63eaf145ae085f3d2ab0ddc6dc00a1", - "id" : "2218201", - "profile" : { - "bust" : "88", - "height" : "172", - "hip" : "89", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "スクールガール", - "alias_name_display" : "スクールガール", - "hash" : "0581485c6cb33372d334e567ebc58c2e", - "id" : "2318202", - "profile" : { - "bust" : "88", - "height" : "172", - "hip" : "89", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "T.B.チアーズ", - "alias_name_display" : "T.B.チアーズ", - "event" : [ { - "event_id" : 1503, - "event_name" : "チーム対抗 夏だ!プールだ!トークバトルショー" - } ], - "hash" : "1c4c8f44d4d2eb0d037645f495fd6c3d", - "id" : "2222601", - "profile" : { - "bust" : "88", - "height" : "172", - "hip" : "89", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "T.B.チアーズ", - "alias_name_display" : "T.B.チアーズ", - "event" : [ { - "event_id" : 1503, - "event_name" : "チーム対抗 夏だ!プールだ!トークバトルショー" - } ], - "hash" : "e2e0041e12c921fbd33ca51389ec3232", - "id" : "2322602", - "profile" : { - "bust" : "88", - "height" : "172", - "hip" : "89", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "サンタI.C", - "alias_name_display" : "サンタI.C", - "event" : [ { - "event_id" : 1208, - "event_name" : "目指せサンタクロース アイドルチャレンジ" - } ], - "hash" : "e5834f442f8c686a85b70b8cbcd13e7e", - "id" : "2324302", - "profile" : { - "bust" : "88", - "height" : "172", - "hip" : "89", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "クライムレディ", - "alias_name_display" : "クライムレディ", - "event" : [ { - "event_id" : 720, - "event_name" : "第20回ドリームLIVEフェスティバル" - } ], - "hash" : "6e339e821d7c05c10d8bde8f6657c7e0", - "id" : "2225901", - "profile" : { - "bust" : "88", - "height" : "172", - "hip" : "89", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "クライムレディ", - "alias_name_display" : "クライムレディ", - "event" : [ { - "event_id" : 720, - "event_name" : "第20回ドリームLIVEフェスティバル" - } ], - "hash" : "cba13f10079f879dc0fe7fb85aec759c", - "id" : "2325902", - "profile" : { - "bust" : "88", - "height" : "172", - "hip" : "89", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "湯けむり紀行", - "alias_name_display" : "湯けむり紀行", - "hash" : "7f23e7d8da712ed26b343f3a1205300f", - "id" : "2229201", - "profile" : { - "bust" : "88", - "height" : "172", - "hip" : "89", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "湯けむり紀行", - "alias_name_display" : "湯けむり紀行", - "hash" : "737009be0883399fdd76357c6cde4844", - "id" : "2329202", - "profile" : { - "bust" : "88", - "height" : "172", - "hip" : "89", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "ビーチクイーン", - "alias_name_display" : "ビーチクイーン", - "event" : [ { - "event_id" : 506, - "event_name" : "アイドルLIVEツアーinハワイ" - } ], - "hash" : "f2a0900bb8db3d317c6177c8b7615909", - "id" : "2408201", - "profile" : { - "bust" : "88", - "height" : "172", - "hip" : "89", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "ビーチクイーン", - "alias_name_display" : "ビーチクイーン", - "event" : [ { - "event_id" : 506, - "event_name" : "アイドルLIVEツアーinハワイ" - } ], - "hash" : "af080414985fcaca07952697c3fdc545", - "id" : "2508202", - "profile" : { - "bust" : "88", - "height" : "172", - "hip" : "89", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "鬼に金棒", - "alias_name_display" : "鬼に金棒", - "event" : [ { - "event_id" : 711, - "event_name" : "福は内DEドリームLIVEフェスティバル" - } ], - "hash" : "e084ffca6cc29cfc0d1e0b2e076bb8a6", - "id" : "2421101", - "profile" : { - "bust" : "88", - "height" : "172", - "hip" : "89", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "鬼に金棒", - "alias_name_display" : "鬼に金棒", - "event" : [ { - "event_id" : 711, - "event_name" : "福は内DEドリームLIVEフェスティバル" - } ], - "hash" : "83e6f15acc7e6807583c92672c4510d4", - "id" : "2521102", - "profile" : { - "bust" : "88", - "height" : "172", - "hip" : "89", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "迫真のクリスマス", - "alias_name_display" : "迫真のクリスマス", - "event" : [ { - "event_id" : 1208, - "event_name" : "目指せサンタクロース アイドルチャレンジ" - } ], - "hash" : "3d81aebd94a339f3bbbd89c7c943abd7", - "id" : "2429501", - "profile" : { - "bust" : "88", - "height" : "172", - "hip" : "89", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "迫真のクリスマス", - "alias_name_display" : "迫真のクリスマス", - "event" : [ { - "event_id" : 1208, - "event_name" : "目指せサンタクロース アイドルチャレンジ" - } ], - "hash" : "2b867eb7af72b67dd19a753a7a9c4ed3", - "id" : "2529502", - "profile" : { - "bust" : "88", - "height" : "172", - "hip" : "89", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "迫真のクリスマス・S", - "alias_name_display" : "迫真のクリスマス・S", - "event" : [ { - "event_id" : 1208, - "event_name" : "目指せサンタクロース アイドルチャレンジ" - } ], - "hash" : "894e65f26343e9084f927cc4dbfaaaf7", - "id" : "2429601", - "profile" : { - "bust" : "88", - "height" : "172", - "hip" : "89", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "迫真のクリスマス・S", - "alias_name_display" : "迫真のクリスマス・S", - "event" : [ { - "event_id" : 1208, - "event_name" : "目指せサンタクロース アイドルチャレンジ" - } ], - "hash" : "d96b8fa22a51830f67d197909f1c7504", - "id" : "2529602", - "profile" : { - "bust" : "88", - "height" : "172", - "hip" : "89", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "ワイルドドライブ", - "alias_name_display" : "ワイルドドライブ", - "hash" : "31fad952a03ad277fa0e3d059b759afb", - "id" : "2440201", - "profile" : { - "bust" : "88", - "height" : "172", - "hip" : "89", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "ワイルドドライブ", - "alias_name_display" : "ワイルドドライブ", - "hash" : "a53f598eea9637e74b08e76c96d18d4b", - "id" : "2540202", - "profile" : { - "bust" : "88", - "height" : "172", - "hip" : "89", - "waist" : "60", - "weight" : "50" - } - } ], - "idol_id" : 83, - "idol_name" : "木場真奈美", - "idol_name_display" : "木場真奈美", - "units" : [ { - "id" : "67", - "name" : "レディビースト" - }, { - "id" : "101", - "name" : "ハロウィンヴァンパイア" - }, { - "id" : "111", - "name" : "アンチェイン・シグナル" - }, { - "id" : "117", - "name" : "ハードメテオライツ" - } ] -}, { - "aliases" : [ { - "hash" : "50f53b8bae68c432456604aa421dfce9", - "id" : "2001901", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "hash" : "d7fec18f59ddcee02b344ea8f116fa8e", - "id" : "2101902", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "浴衣祭り", - "alias_name_display" : "浴衣祭り", - "hash" : "6b322b16eccd479ca9f4da4ca08398d7", - "id" : "2204801", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "浴衣祭り", - "alias_name_display" : "浴衣祭り", - "hash" : "4ee7b16973889716589be41a7d7c5735", - "id" : "2304802", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ロワイヤルスタイルNP", - "alias_name_display" : "ロワイヤルスタイルNP", - "event" : [ { - "event_id" : 810, - "event_name" : "アイドルLIVEロワイヤル バレンタインSP" - } ], - "hash" : "f64ea05ba41f018d4c5fc08e4e4e0c10", - "id" : "2219701", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ロワイヤルスタイルNP", - "alias_name_display" : "ロワイヤルスタイルNP", - "event" : [ { - "event_id" : 810, - "event_name" : "アイドルLIVEロワイヤル バレンタインSP" - } ], - "hash" : "8bd293a18cfa965757d887665dc383b4", - "id" : "2319702", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "紅葉温泉", - "alias_name_display" : "紅葉温泉", - "hash" : "bf005e32b739ebbcd648280ba8050bc1", - "id" : "2223901", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "紅葉温泉", - "alias_name_display" : "紅葉温泉", - "hash" : "46db0d085f1d31bd2f46f794311f1a74", - "id" : "2323902", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "夢の使者", - "alias_name_display" : "夢の使者", - "hash" : "bee91878694ccf9ac29f98bf6b4b5a3e", - "id" : "2403601", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "夢の使者", - "alias_name_display" : "夢の使者", - "hash" : "e523d0a3f90a44554d3702b1320957c5", - "id" : "2503602", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "夜桜小町", - "alias_name_display" : "夜桜小町", - "event" : [ { - "event_id" : 406, - "event_name" : "アイドルプロデュース 春の桜祭り編" - } ], - "hash" : "879e77d88385679197491d5ed4ed7e6f", - "id" : "2405801", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "夜桜小町", - "alias_name_display" : "夜桜小町", - "event" : [ { - "event_id" : 406, - "event_name" : "アイドルプロデュース 春の桜祭り編" - } ], - "hash" : "5245f9a8bbfc8c00e913bd84078d1947", - "id" : "2505802", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "憧憬の絵姿", - "alias_name_display" : "憧憬の絵姿", - "event" : [ { - "event_id" : 703, - "event_name" : "第3回ドリームLIVEフェスティバル" - } ], - "hash" : "979595d903dfaafad36539c8b075f19a", - "id" : "2409701", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "憧憬の絵姿", - "alias_name_display" : "憧憬の絵姿", - "event" : [ { - "event_id" : 703, - "event_name" : "第3回ドリームLIVEフェスティバル" - } ], - "hash" : "3167283ee6e0766c23f79d2b0cdf6de6", - "id" : "2509702", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "九天の玄女", - "alias_name_display" : "九天の玄女", - "hash" : "ad166bff62c60b26fa74b6aa60802a77", - "id" : "2413801", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "九天の玄女", - "alias_name_display" : "九天の玄女", - "hash" : "0f422ef5edfbb203d4b3f21da7a62f54", - "id" : "2513802", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "新たな色", - "alias_name_display" : "新たな色", - "event" : [ { - "event_id" : 1302, - "event_name" : "第2回プロダクションマッチフェスティバルS" - } ], - "hash" : "4c90bd7715d2326f6029a18a181e2785", - "id" : "2418501", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "新たな色", - "alias_name_display" : "新たな色", - "event" : [ { - "event_id" : 1302, - "event_name" : "第2回プロダクションマッチフェスティバルS" - } ], - "hash" : "15cbf467a5c7933a2ec310761b11be7c", - "id" : "2518502", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "小さな息吹", - "alias_name_display" : "小さな息吹", - "hash" : "fdb92acf167d4c4fab46507c6a8ebc87", - "id" : "2425501", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "小さな息吹", - "alias_name_display" : "小さな息吹", - "hash" : "517be5a4998a30862dd638566ca6f499", - "id" : "2525502", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ホワイトジャーニー", - "alias_name_display" : "ホワイトジャーニー", - "event" : [ { - "event_id" : 1705, - "event_name" : "アイドルプロデュース きらめくオーロラ紀行" - } ], - "hash" : "67e57c34ab643e525c72ff31317bbe29", - "id" : "2431201", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ホワイトジャーニー", - "alias_name_display" : "ホワイトジャーニー", - "event" : [ { - "event_id" : 1705, - "event_name" : "アイドルプロデュース きらめくオーロラ紀行" - } ], - "hash" : "1f2016bdb7310af8adb7149ca0564a23", - "id" : "2531202", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ホワイトジャーニー・S", - "alias_name_display" : "ホワイトジャーニー・S", - "event" : [ { - "event_id" : 1705, - "event_name" : "アイドルプロデュース きらめくオーロラ紀行" - } ], - "hash" : "f76606e958186ed0c7abf674357fc6e4", - "id" : "2431301", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ホワイトジャーニー・S", - "alias_name_display" : "ホワイトジャーニー・S", - "event" : [ { - "event_id" : 1705, - "event_name" : "アイドルプロデュース きらめくオーロラ紀行" - } ], - "hash" : "017bb5285930bc6789dabf9bd1dde176", - "id" : "2531302", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "クワイエット・ズィール", - "alias_name_display" : "クワイエット・ズィール", - "hash" : "f916a26a64839b6530f579d34dbfd699", - "id" : "2436201", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "クワイエット・ズィール", - "alias_name_display" : "クワイエット・ズィール", - "hash" : "eb1d57f9b906de305439f9ab26c6cdcf", - "id" : "2536202", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - } ], - "idol_id" : 84, - "idol_name" : "藤原肇", - "idol_name_display" : "藤原肇", - "units" : [ { - "id" : "14", - "name" : "月下氷姫" - }, { - "id" : "20", - "name" : "山紫水明" - }, { - "id" : "103", - "name" : "ビビッドカラーエイジ" - }, { - "id" : "209", - "name" : "ロワイヤルスタイルNP" - } ] -}, { - "aliases" : [ { - "hash" : "2bada7af6dfab066132d050923a513eb", - "id" : "2002101", - "profile" : { - "bust" : "82", - "height" : "165", - "hip" : "85", - "waist" : "55", - "weight" : "45" - } - }, { - "hash" : "68ed242f80829cdb4072549098177b27", - "id" : "2102102", - "profile" : { - "bust" : "82", - "height" : "165", - "hip" : "85", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "サマーライブ", - "alias_name_display" : "サマーライブ", - "event" : [ { - "event_id" : 205, - "event_name" : "アイドルサバイバルinサマーライブ" - } ], - "hash" : "54b6b2bbe68eff5cc0a866562daed5a1", - "id" : "2205001", - "profile" : { - "bust" : "82", - "height" : "165", - "hip" : "85", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "サマーライブ", - "alias_name_display" : "サマーライブ", - "event" : [ { - "event_id" : 205, - "event_name" : "アイドルサバイバルinサマーライブ" - } ], - "hash" : "a580271bf1d560a89be26d09aca1b669", - "id" : "2305002", - "profile" : { - "bust" : "82", - "height" : "165", - "hip" : "85", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "ハイカラサクラ", - "alias_name_display" : "ハイカラサクラ", - "hash" : "a8ff862d393e2d5dda368de20fb13201", - "id" : "2220501", - "profile" : { - "bust" : "82", - "height" : "165", - "hip" : "85", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "ハイカラサクラ", - "alias_name_display" : "ハイカラサクラ", - "hash" : "1a1fe1f5075423ba48922da4fe12dfe2", - "id" : "2320502", - "profile" : { - "bust" : "82", - "height" : "165", - "hip" : "85", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "スクールプール", - "alias_name_display" : "スクールプール", - "hash" : "abe0e1d88e1978ae30fb4e6b60451740", - "id" : "2227401", - "profile" : { - "bust" : "82", - "height" : "165", - "hip" : "85", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "スクールプール", - "alias_name_display" : "スクールプール", - "hash" : "e9d2e494154da1e8f2df3c7fbc2bb7ce", - "id" : "2327402", - "profile" : { - "bust" : "82", - "height" : "165", - "hip" : "85", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "笑顔の女神", - "alias_name_display" : "笑顔の女神", - "event" : [ { - "event_id" : 404, - "event_name" : "新春アイドルプロデュース" - } ], - "hash" : "a0e0bb81d532da3f17e6cec67286b1f4", - "id" : "2404701", - "profile" : { - "bust" : "82", - "height" : "165", - "hip" : "85", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "笑顔の女神", - "alias_name_display" : "笑顔の女神", - "event" : [ { - "event_id" : 404, - "event_name" : "新春アイドルプロデュース" - } ], - "hash" : "db67fce1ced5a2e2946e3facbd9abe19", - "id" : "2504702", - "profile" : { - "bust" : "82", - "height" : "165", - "hip" : "85", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "制服の女神", - "alias_name_display" : "制服の女神", - "hash" : "1009f9985fad285ed98d06fcc23cea57", - "id" : "2405901", - "profile" : { - "bust" : "82", - "height" : "165", - "hip" : "85", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "制服の女神", - "alias_name_display" : "制服の女神", - "hash" : "906e36ae3310e4ca2451e0d6c4df7b42", - "id" : "2505902", - "profile" : { - "bust" : "82", - "height" : "165", - "hip" : "85", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "4273df53ba2ef652513e682bd7c7229a", - "id" : "2406701", - "profile" : { - "bust" : "82", - "height" : "165", - "hip" : "85", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "299fe393f6c7c239a989db503ba3b462", - "id" : "2506702", - "profile" : { - "bust" : "82", - "height" : "165", - "hip" : "85", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "眠れる小悪魔", - "alias_name_display" : "眠れる小悪魔", - "hash" : "f14e96d527c85980c994a8e0234afb58", - "id" : "2409801", - "profile" : { - "bust" : "82", - "height" : "165", - "hip" : "85", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "眠れる小悪魔", - "alias_name_display" : "眠れる小悪魔", - "hash" : "0982b1f6992128e2a7a6668b5f306cb7", - "id" : "2509802", - "profile" : { - "bust" : "82", - "height" : "165", - "hip" : "85", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "シンデレラドリーム", - "alias_name_display" : "シンデレラドリーム", - "hash" : "1da9783f4db2e0d170433ff25e97f064", - "id" : "2412501", - "profile" : { - "bust" : "82", - "height" : "165", - "hip" : "85", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "シンデレラドリーム", - "alias_name_display" : "シンデレラドリーム", - "hash" : "ed35c60eef3f13be50edee7dfee4523d", - "id" : "2512502", - "profile" : { - "bust" : "82", - "height" : "165", - "hip" : "85", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "レディアントヴィーナス", - "alias_name_display" : "レディアントヴィーナス", - "hash" : "33d51a091cde3faf6392a9ce3ba46102", - "id" : "2416901", - "profile" : { - "bust" : "82", - "height" : "165", - "hip" : "85", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "レディアントヴィーナス", - "alias_name_display" : "レディアントヴィーナス", - "hash" : "fe5e70f0df196ae8e84391062564ad33", - "id" : "2516902", - "profile" : { - "bust" : "82", - "height" : "165", - "hip" : "85", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "3rdアニバーサリー", - "alias_name_display" : "3rdアニバーサリー", - "event" : [ { - "event_id" : 415, - "event_name" : "アイドルプロデュース the 3rd Anniversary" - } ], - "hash" : "7d83a3bcc9cfc6da0e3f8381c0c3b585", - "id" : "2419401", - "profile" : { - "bust" : "82", - "height" : "165", - "hip" : "85", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "3rdアニバーサリー", - "alias_name_display" : "3rdアニバーサリー", - "event" : [ { - "event_id" : 415, - "event_name" : "アイドルプロデュース the 3rd Anniversary" - } ], - "hash" : "ce21537c19faa7c7b6ae4b5c8defb324", - "id" : "2519402", - "profile" : { - "bust" : "82", - "height" : "165", - "hip" : "85", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "3rdアニバーサリー・S", - "alias_name_display" : "3rdアニバーサリー・S", - "event" : [ { - "event_id" : 415, - "event_name" : "アイドルプロデュース the 3rd Anniversary" - } ], - "hash" : "5f5daadbc3fadef1cca713f6e9e05255", - "id" : "2419501", - "profile" : { - "bust" : "82", - "height" : "165", - "hip" : "85", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "3rdアニバーサリー・S", - "alias_name_display" : "3rdアニバーサリー・S", - "event" : [ { - "event_id" : 415, - "event_name" : "アイドルプロデュース the 3rd Anniversary" - } ], - "hash" : "b20006cdb511c392497e750074e6be96", - "id" : "2519502", - "profile" : { - "bust" : "82", - "height" : "165", - "hip" : "85", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "ラブライカ", - "alias_name_display" : "ラブライカ", - "hash" : "906abd014daf85c1ed5b45f4f9e19c05", - "id" : "2521902", - "profile" : { - "bust" : "82", - "height" : "165", - "hip" : "85", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "アディクティブメイド", - "alias_name_display" : "アディクティブメイド", - "hash" : "b3a0aede00bbe1146a472828895912dd", - "id" : "2426701", - "profile" : { - "bust" : "82", - "height" : "165", - "hip" : "85", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "アディクティブメイド", - "alias_name_display" : "アディクティブメイド", - "hash" : "ca97decc65659e09550943d2766e5d3e", - "id" : "2526702", - "profile" : { - "bust" : "82", - "height" : "165", - "hip" : "85", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "スイートグラティチュード", - "alias_name_display" : "スイートグラティチュード", - "hash" : "b391620fec4da6f7bef081f4823d39ab", - "id" : "2438001", - "profile" : { - "bust" : "82", - "height" : "165", - "hip" : "85", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "スイートグラティチュード", - "alias_name_display" : "スイートグラティチュード", - "hash" : "05967e0044c4828455e8547b98df1d06", - "id" : "2538002", - "profile" : { - "bust" : "82", - "height" : "165", - "hip" : "85", - "waist" : "55", - "weight" : "45" - } - } ], - "idol_id" : 85, - "idol_name" : "新田美波", - "idol_name_display" : "新田美波", - "units" : [ { - "id" : "34", - "name" : "デア・アウローラ" - }, { - "id" : "78", - "name" : "LOVE LAIKA" - }, { - "id" : "93", - "name" : "サマーライブセーラー" - }, { - "id" : "145", - "name" : "LOVE LAIKA with Rosenburg Engel" - }, { - "id" : "158", - "name" : "ハイカラサクラ" - }, { - "id" : "189", - "name" : "アインフェリア" - }, { - "id" : "197", - "name" : "アズール・ムジカ" - }, { - "id" : "213", - "name" : "CINDERELLA PROJECT" - } ] -}, { - "aliases" : [ { - "hash" : "b72a61e46933108a7e0ecbcd37bcc461", - "id" : "2002201", - "profile" : { - "bust" : "80", - "height" : "164", - "hip" : "81", - "waist" : "54", - "weight" : "47" - } - }, { - "hash" : "0a91b0a75ea811b3ea5533fe284cfb38", - "id" : "2102202", - "profile" : { - "bust" : "80", - "height" : "164", - "hip" : "81", - "waist" : "54", - "weight" : "47" - } - }, { - "alias_name" : "純真子女", - "alias_name_display" : "純真子女", - "hash" : "d5bed54544fc77c024920b06eefcae1c", - "id" : "2206101", - "profile" : { - "bust" : "80", - "height" : "164", - "hip" : "81", - "waist" : "54", - "weight" : "47" - } - }, { - "alias_name" : "純真子女", - "alias_name_display" : "純真子女", - "hash" : "69d297f1b6fb812bf26843f0d76ff50f", - "id" : "2306102", - "profile" : { - "bust" : "80", - "height" : "164", - "hip" : "81", - "waist" : "54", - "weight" : "47" - } - }, { - "alias_name" : "ビーチサイド", - "alias_name_display" : "ビーチサイド", - "hash" : "0a48ebcb12a416c18d6b1bbac33cee1c", - "id" : "2216601", - "profile" : { - "bust" : "80", - "height" : "164", - "hip" : "81", - "waist" : "54", - "weight" : "47" - } - }, { - "alias_name" : "ビーチサイド", - "alias_name_display" : "ビーチサイド", - "hash" : "b1121186a42a0d42c89ecf10be529b52", - "id" : "2316602", - "profile" : { - "bust" : "80", - "height" : "164", - "hip" : "81", - "waist" : "54", - "weight" : "47" - } - }, { - "alias_name" : "スマートスタイル", - "alias_name_display" : "スマートスタイル", - "event" : [ { - "event_id" : "023", - "event_name" : "第23回プロダクションマッチフェスティバル" - } ], - "hash" : "197ed6234c6ed8842ff1d7c5ea8aec6b", - "id" : "2323102", - "profile" : { - "bust" : "80", - "height" : "164", - "hip" : "81", - "waist" : "54", - "weight" : "47" - } - }, { - "alias_name" : "真心の射手", - "alias_name_display" : "真心の射手", - "hash" : "560834b8207166222b10eb2590a1e099", - "id" : "2404001", - "profile" : { - "bust" : "80", - "height" : "164", - "hip" : "81", - "waist" : "54", - "weight" : "47" - } - }, { - "alias_name" : "真心の射手", - "alias_name_display" : "真心の射手", - "hash" : "c19da47ce6c5ffd3c89c606af52fe802", - "id" : "2504002", - "profile" : { - "bust" : "80", - "height" : "164", - "hip" : "81", - "waist" : "54", - "weight" : "47" - } - }, { - "alias_name" : "流麗な令嬢", - "alias_name_display" : "流麗な令嬢", - "hash" : "02f4259ef8e4cfbf3ecaa1d68d99df20", - "id" : "2407901", - "profile" : { - "bust" : "80", - "height" : "164", - "hip" : "81", - "waist" : "54", - "weight" : "47" - } - }, { - "alias_name" : "流麗な令嬢", - "alias_name_display" : "流麗な令嬢", - "hash" : "9243275ee7e036423573a40b857fdac8", - "id" : "2507902", - "profile" : { - "bust" : "80", - "height" : "164", - "hip" : "81", - "waist" : "54", - "weight" : "47" - } - }, { - "alias_name" : "光彩の華", - "alias_name_display" : "光彩の華", - "hash" : "f0c170150ebc829334e052ad02f684df", - "id" : "2419101", - "profile" : { - "bust" : "80", - "height" : "164", - "hip" : "81", - "waist" : "54", - "weight" : "47" - } - }, { - "alias_name" : "光彩の華", - "alias_name_display" : "光彩の華", - "hash" : "9503529972d8ccb6ca6ea419abd1820d", - "id" : "2519102", - "profile" : { - "bust" : "80", - "height" : "164", - "hip" : "81", - "waist" : "54", - "weight" : "47" - } - }, { - "alias_name" : "グルメジャッジメント", - "alias_name_display" : "グルメジャッジメント", - "event" : [ { - "event_id" : 519, - "event_name" : "美食公演 女神に捧ぐ御馳走" - } ], - "hash" : "7a73cd330d410ac8d07b1fd19fbe2ff6", - "id" : "2423901", - "profile" : { - "bust" : "80", - "height" : "164", - "hip" : "81", - "waist" : "54", - "weight" : "47" - } - }, { - "alias_name" : "グルメジャッジメント", - "alias_name_display" : "グルメジャッジメント", - "event" : [ { - "event_id" : 519, - "event_name" : "美食公演 女神に捧ぐ御馳走" - } ], - "hash" : "e07a8e6fc6082559aeb12e34d3fa941a", - "id" : "2523902", - "profile" : { - "bust" : "80", - "height" : "164", - "hip" : "81", - "waist" : "54", - "weight" : "47" - } - }, { - "alias_name" : "ブライト・ロワイヤル", - "alias_name_display" : "ブライト・ロワイヤル", - "event" : [ { - "event_id" : 817, - "event_name" : "アイドルLIVEロワイヤル お花見SP" - } ], - "hash" : "b6e88f29f51360f5246ef97d39b3aa9b", - "id" : "2432101", - "profile" : { - "bust" : "80", - "height" : "164", - "hip" : "81", - "waist" : "54", - "weight" : "47" - } - }, { - "alias_name" : "ブライト・ロワイヤル", - "alias_name_display" : "ブライト・ロワイヤル", - "event" : [ { - "event_id" : 817, - "event_name" : "アイドルLIVEロワイヤル お花見SP" - } ], - "hash" : "64be6676bdf303ee26c8b5cf28a04ac1", - "id" : "2532102", - "profile" : { - "bust" : "80", - "height" : "164", - "hip" : "81", - "waist" : "54", - "weight" : "47" - } - }, { - "alias_name" : "宴のマジストレイト", - "alias_name_display" : "宴のマジストレイト", - "event" : [ { - "event_id" : 820, - "event_name" : "第20回アイドルLIVEロワイヤル" - } ], - "hash" : "dfaf8718bb2640e34528b866c667312e", - "id" : "2436101", - "profile" : { - "bust" : "80", - "height" : "164", - "hip" : "81", - "waist" : "54", - "weight" : "47" - } - }, { - "alias_name" : "宴のマジストレイト", - "alias_name_display" : "宴のマジストレイト", - "event" : [ { - "event_id" : 820, - "event_name" : "第20回アイドルLIVEロワイヤル" - } ], - "hash" : "cff720f0338a7ae16dc936a802809a2f", - "id" : "2536102", - "profile" : { - "bust" : "80", - "height" : "164", - "hip" : "81", - "waist" : "54", - "weight" : "47" - } - } ], - "idol_id" : 86, - "idol_name" : "水野翠", - "idol_name_display" : "水野翠", - "units" : [ { - "id" : "53", - "name" : "ブリヤント・ノワール" - }, { - "id" : "207", - "name" : "ムーランルージュ" - } ] -}, { - "aliases" : [ { - "alias_name" : "ムーンライトバニー", - "alias_name_display" : "ムーンライトバニー", - "event" : [ { - "event_id" : 107, - "event_name" : "秋夜のお月見会" - } ], - "hash" : "a93f91d99fbc2f134011e4fdf38e49bb", - "id" : "2002401", - "profile" : { - "bust" : "81", - "height" : "166", - "hip" : "83", - "waist" : "59", - "weight" : "45" - } - }, { - "alias_name" : "ムーンライトバニー", - "alias_name_display" : "ムーンライトバニー", - "event" : [ { - "event_id" : 107, - "event_name" : "秋夜のお月見会" - } ], - "hash" : "0d1b35fad868c671e2d8b58842279076", - "id" : "2102402", - "profile" : { - "bust" : "81", - "height" : "166", - "hip" : "83", - "waist" : "59", - "weight" : "45" - } - }, { - "alias_name" : "幕間のひととき", - "alias_name_display" : "幕間のひととき", - "hash" : "ce06f399bc842655c0b9ea49fc9cca4a", - "id" : "2211201", - "profile" : { - "bust" : "81", - "height" : "166", - "hip" : "83", - "waist" : "59", - "weight" : "45" - } - }, { - "alias_name" : "幕間のひととき", - "alias_name_display" : "幕間のひととき", - "hash" : "4d843f1c3131ffcda576eb50ac401e06", - "id" : "2311202", - "profile" : { - "bust" : "81", - "height" : "166", - "hip" : "83", - "waist" : "59", - "weight" : "45" - } - }, { - "alias_name" : "憩いのひととき", - "alias_name_display" : "憩いのひととき", - "event" : [ { - "event_id" : 707, - "event_name" : "第7回ドリームLIVEフェスティバル" - } ], - "hash" : "e953b61de50dd7879353f130a39e8cba", - "id" : "2216501", - "profile" : { - "bust" : "81", - "height" : "166", - "hip" : "83", - "waist" : "59", - "weight" : "45" - } - }, { - "alias_name" : "憩いのひととき", - "alias_name_display" : "憩いのひととき", - "event" : [ { - "event_id" : 707, - "event_name" : "第7回ドリームLIVEフェスティバル" - } ], - "hash" : "766958eefb94c4c0837e3ae954170467", - "id" : "2316502", - "profile" : { - "bust" : "81", - "height" : "166", - "hip" : "83", - "waist" : "59", - "weight" : "45" - } - }, { - "alias_name" : "ロコガール", - "alias_name_display" : "ロコガール", - "event" : [ { - "event_id" : 1707, - "event_name" : "アイドルプロデュース アロハ!常夏の楽園" - } ], - "hash" : "e120bef59049701c084e9bc9f3e90084", - "id" : "2228001", - "profile" : { - "bust" : "81", - "height" : "166", - "hip" : "83", - "waist" : "59", - "weight" : "45" - } - }, { - "alias_name" : "ロコガール", - "alias_name_display" : "ロコガール", - "event" : [ { - "event_id" : 1707, - "event_name" : "アイドルプロデュース アロハ!常夏の楽園" - } ], - "hash" : "50774bacbeae5d09201b91b16f98c262", - "id" : "2328002", - "profile" : { - "bust" : "81", - "height" : "166", - "hip" : "83", - "waist" : "59", - "weight" : "45" - } - }, { - "alias_name" : "オリ・ロコガール", - "alias_name_display" : "オリ・ロコガール", - "event" : [ { - "event_id" : 1707, - "event_name" : "アイドルプロデュース アロハ!常夏の楽園" - } ], - "hash" : "c477e1693bc9e6f1865117ac944cc87b", - "id" : "2228101", - "profile" : { - "bust" : "81", - "height" : "166", - "hip" : "83", - "waist" : "59", - "weight" : "45" - } - }, { - "alias_name" : "オリ・ロコガール", - "alias_name_display" : "オリ・ロコガール", - "event" : [ { - "event_id" : 1707, - "event_name" : "アイドルプロデュース アロハ!常夏の楽園" - } ], - "hash" : "fc3e8210b81af75d60a3ad891c10abfb", - "id" : "2328102", - "profile" : { - "bust" : "81", - "height" : "166", - "hip" : "83", - "waist" : "59", - "weight" : "45" - } - }, { - "alias_name" : "ロワイヤルスタイルND", - "alias_name_display" : "ロワイヤルスタイルND", - "event" : [ { - "event_id" : 822, - "event_name" : "第22回アイドルLIVEロワイヤル" - } ], - "hash" : "f862e42981eef571d6420636d5035b46", - "id" : "2231101", - "profile" : { - "bust" : "81", - "height" : "166", - "hip" : "83", - "waist" : "59", - "weight" : "45" - } - }, { - "alias_name" : "ロワイヤルスタイルND", - "alias_name_display" : "ロワイヤルスタイルND", - "event" : [ { - "event_id" : 822, - "event_name" : "第22回アイドルLIVEロワイヤル" - } ], - "hash" : "5efcadb4c0499c22d70657bc5f2e0609", - "id" : "2331102", - "profile" : { - "bust" : "81", - "height" : "166", - "hip" : "83", - "waist" : "59", - "weight" : "45" - } - }, { - "alias_name" : "博識子女", - "alias_name_display" : "博識子女", - "hash" : "23240cbaa429c06b5834dab70e2468db", - "id" : "2400401", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "83", - "waist" : "59", - "weight" : "45" - } - }, { - "alias_name" : "博識子女", - "alias_name_display" : "博識子女", - "hash" : "a99c2ef0bb60c2fb792940844c5ce231", - "id" : "2500402", - "profile" : { - "bust" : "81", - "height" : "166", - "hip" : "83", - "waist" : "59", - "weight" : "45" - } - }, { - "alias_name" : "クラシカルエレガント", - "alias_name_display" : "クラシカルエレガント", - "event" : [ { - "event_id" : "020", - "event_name" : "第20回プロダクションマッチフェスティバル" - } ], - "hash" : "4f9408e5e8319f71d87a88be473f9fc5", - "id" : "2421801", - "profile" : { - "bust" : "81", - "height" : "166", - "hip" : "83", - "waist" : "59", - "weight" : "45" - } - }, { - "alias_name" : "クラシカルエレガント", - "alias_name_display" : "クラシカルエレガント", - "event" : [ { - "event_id" : "020", - "event_name" : "第20回プロダクションマッチフェスティバル" - } ], - "hash" : "a4df63531be7d6b41ed4a895781be32a", - "id" : "2521802", - "profile" : { - "bust" : "81", - "height" : "166", - "hip" : "83", - "waist" : "59", - "weight" : "45" - } - }, { - "alias_name" : "未来の風向き", - "alias_name_display" : "未来の風向き", - "hash" : "63e8236c873d25762b04042fb1cf84e0", - "id" : "2430401", - "profile" : { - "bust" : "81", - "height" : "166", - "hip" : "83", - "waist" : "59", - "weight" : "45" - } - }, { - "alias_name" : "未来の風向き", - "alias_name_display" : "未来の風向き", - "hash" : "0fdb985e97611cb4df916563d6e7a27b", - "id" : "2530402", - "profile" : { - "bust" : "81", - "height" : "166", - "hip" : "83", - "waist" : "59", - "weight" : "45" - } - } ], - "idol_id" : 87, - "idol_name" : "古澤頼子", - "idol_name_display" : "古澤頼子", - "units" : [ { - "id" : "35", - "name" : "ディテクティブヴァーサス" - }, { - "id" : "210", - "name" : "ロワイヤルスタイルND" - } ] -}, { - "aliases" : [ { - "hash" : "4712d374c30554718ed4dcafc5edfd1c", - "id" : "2002501", - "profile" : { - "bust" : "68", - "height" : "141", - "hip" : "67", - "waist" : "52", - "weight" : "34" - } - }, { - "hash" : "e7fd238953443b47d44bc0286af52fdc", - "id" : "2102502", - "profile" : { - "bust" : "68", - "height" : "141", - "hip" : "67", - "waist" : "52", - "weight" : "34" - } - }, { - "alias_name" : "ジューンブライド", - "alias_name_display" : "ジューンブライド", - "hash" : "83367926ad9733a555d3b86da3460ecd", - "id" : "2210401", - "profile" : { - "bust" : "68", - "height" : "141", - "hip" : "67", - "waist" : "52", - "weight" : "34" - } - }, { - "alias_name" : "ジューンブライド", - "alias_name_display" : "ジューンブライド", - "hash" : "499395a4c349f7e9c6ba022ec748290e", - "id" : "2310402", - "profile" : { - "bust" : "68", - "height" : "141", - "hip" : "67", - "waist" : "52", - "weight" : "34" - } - }, { - "alias_name" : "マーチングバンド", - "alias_name_display" : "マーチングバンド", - "hash" : "929f0e7a77f38b0f931453c9fa0625e0", - "id" : "2216301", - "profile" : { - "bust" : "68", - "height" : "141", - "hip" : "67", - "waist" : "52", - "weight" : "34" - } - }, { - "alias_name" : "マーチングバンド", - "alias_name_display" : "マーチングバンド", - "hash" : "83cf1de1cf5f82a9c2619cbcf6ba9e76", - "id" : "2316302", - "profile" : { - "bust" : "68", - "height" : "141", - "hip" : "67", - "waist" : "52", - "weight" : "34" - } - }, { - "alias_name" : "小さな妖精", - "alias_name_display" : "小さな妖精", - "event" : [ { - "event_id" : "008", - "event_name" : "第8回プロダクションマッチフェスティバル" - } ], - "hash" : "75e8d17c795363782be0abbd2e7cb34d", - "id" : "2405401", - "profile" : { - "bust" : "68", - "height" : "141", - "hip" : "67", - "waist" : "52", - "weight" : "34" - } - }, { - "alias_name" : "小さな妖精", - "alias_name_display" : "小さな妖精", - "event" : [ { - "event_id" : "008", - "event_name" : "第8回プロダクションマッチフェスティバル" - } ], - "hash" : "9b68a0c0aad45fc4de9e74efb4c2d359", - "id" : "2505402", - "profile" : { - "bust" : "68", - "height" : "141", - "hip" : "67", - "waist" : "52", - "weight" : "34" - } - }, { - "alias_name" : "ストロベリーチャレンジ", - "alias_name_display" : "ストロベリーチャレンジ", - "event" : [ { - "event_id" : 409, - "event_name" : "アイドルプロデュース チャレンジクッキング イタリアン編" - } ], - "hash" : "113455b137b7d4af1dd75f60e1d937d9", - "id" : "2409201", - "profile" : { - "bust" : "68", - "height" : "141", - "hip" : "67", - "waist" : "52", - "weight" : "34" - } - }, { - "alias_name" : "ストロベリーチャレンジ", - "alias_name_display" : "ストロベリーチャレンジ", - "event" : [ { - "event_id" : 409, - "event_name" : "アイドルプロデュース チャレンジクッキング イタリアン編" - } ], - "hash" : "9cb0324f6f2e51e41510e4681c3c2dcf", - "id" : "2509202", - "profile" : { - "bust" : "68", - "height" : "141", - "hip" : "67", - "waist" : "52", - "weight" : "34" - } - }, { - "alias_name" : "ストロベリー・スマイル", - "alias_name_display" : "ストロベリー・スマイル", - "event" : [ { - "event_id" : 409, - "event_name" : "アイドルプロデュース チャレンジクッキング イタリアン編" - } ], - "hash" : "09eb6357231c0ad505269065dd5f469e", - "id" : "2409301", - "profile" : { - "bust" : "68", - "height" : "141", - "hip" : "67", - "waist" : "52", - "weight" : "34" - } - }, { - "alias_name" : "ストロベリー・スマイル", - "alias_name_display" : "ストロベリー・スマイル", - "event" : [ { - "event_id" : 409, - "event_name" : "アイドルプロデュース チャレンジクッキング イタリアン編" - } ], - "hash" : "312fba03b9b1fa9da6bc1ca66a87aa35", - "id" : "2509302", - "profile" : { - "bust" : "68", - "height" : "141", - "hip" : "67", - "waist" : "52", - "weight" : "34" - } - }, { - "alias_name" : "夢見る妖精", - "alias_name_display" : "夢見る妖精", - "event" : [ { - "event_id" : 1105, - "event_name" : "第5回プロダクション対抗トークバトルショー" - } ], - "hash" : "6404bdcf1fde67a168754b53d26bf98b", - "id" : "2417601", - "profile" : { - "bust" : "68", - "height" : "141", - "hip" : "67", - "waist" : "52", - "weight" : "34" - } - }, { - "alias_name" : "夢見る妖精", - "alias_name_display" : "夢見る妖精", - "event" : [ { - "event_id" : 1105, - "event_name" : "第5回プロダクション対抗トークバトルショー" - } ], - "hash" : "0e9b883a9b56ff98281ed61f9871e298", - "id" : "2517602", - "profile" : { - "bust" : "68", - "height" : "141", - "hip" : "67", - "waist" : "52", - "weight" : "34" - } - }, { - "alias_name" : "今日だけの告白", - "alias_name_display" : "今日だけの告白", - "hash" : "d518b52022b6db64879b5f1153990a0a", - "id" : "2421701", - "profile" : { - "bust" : "68", - "height" : "141", - "hip" : "67", - "waist" : "52", - "weight" : "34" - } - }, { - "alias_name" : "今日だけの告白", - "alias_name_display" : "今日だけの告白", - "hash" : "f8ae27e268a4708fcc2ad84da0ff47fa", - "id" : "2521702", - "profile" : { - "bust" : "68", - "height" : "141", - "hip" : "67", - "waist" : "52", - "weight" : "34" - } - }, { - "alias_name" : "夏宵の記憶", - "alias_name_display" : "夏宵の記憶", - "event" : [ { - "event_id" : 714, - "event_name" : "夏祭りDEドリームLIVEフェスティバル" - } ], - "hash" : "60b3bdf29948bf80b9ab4e6e93fe6c2a", - "id" : "2425201", - "profile" : { - "bust" : "68", - "height" : "141", - "hip" : "67", - "waist" : "52", - "weight" : "34" - } - }, { - "alias_name" : "夏宵の記憶", - "alias_name_display" : "夏宵の記憶", - "event" : [ { - "event_id" : 714, - "event_name" : "夏祭りDEドリームLIVEフェスティバル" - } ], - "hash" : "45d500ed4651e7b65d3f222cbe4285e4", - "id" : "2525202", - "profile" : { - "bust" : "68", - "height" : "141", - "hip" : "67", - "waist" : "52", - "weight" : "34" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "236415897f28c0017593bed0bb0cc583", - "id" : "2428401", - "profile" : { - "bust" : "68", - "height" : "141", - "hip" : "67", - "waist" : "52", - "weight" : "34" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "771bc083c125b56ee8a4d44cc15368a1", - "id" : "2528402", - "profile" : { - "bust" : "68", - "height" : "141", - "hip" : "67", - "waist" : "52", - "weight" : "34" - } - }, { - "alias_name" : "聖夜の願い", - "alias_name_display" : "聖夜の願い", - "hash" : "62655a7717c27b92b531b9ac9b78b502", - "id" : "2429201", - "profile" : { - "bust" : "68", - "height" : "141", - "hip" : "67", - "waist" : "52", - "weight" : "34" - } - }, { - "alias_name" : "聖夜の願い", - "alias_name_display" : "聖夜の願い", - "hash" : "50d5232b15631b34fa082829882e26d6", - "id" : "2529202", - "profile" : { - "bust" : "68", - "height" : "141", - "hip" : "67", - "waist" : "52", - "weight" : "34" - } - }, { - "alias_name" : "ひかりの創り手", - "alias_name_display" : "ひかりの創り手", - "hash" : "69c24144c925ad86e1c405c9ca8c6240", - "id" : "2433401", - "profile" : { - "bust" : "68", - "height" : "141", - "hip" : "67", - "waist" : "52", - "weight" : "34" - } - }, { - "alias_name" : "ひかりの創り手", - "alias_name_display" : "ひかりの創り手", - "hash" : "405d2d25977932dbb393803b6f5a37d9", - "id" : "2533402", - "profile" : { - "bust" : "68", - "height" : "141", - "hip" : "67", - "waist" : "52", - "weight" : "34" - } - }, { - "alias_name" : "賢者の翼", - "alias_name_display" : "賢者の翼", - "hash" : "ba20403f63fe0861d9a8a47126a91955", - "id" : "2439101", - "profile" : { - "bust" : "68", - "height" : "141", - "hip" : "67", - "waist" : "52", - "weight" : "34" - } - }, { - "alias_name" : "賢者の翼", - "alias_name_display" : "賢者の翼", - "hash" : "abfa3a0acdc184e3339b139c308eef21", - "id" : "2539102", - "profile" : { - "bust" : "68", - "height" : "141", - "hip" : "67", - "waist" : "52", - "weight" : "34" - } - } ], - "idol_id" : 88, - "idol_name" : "橘ありす", - "idol_name_display" : "橘ありす", - "units" : [ { - "id" : "61", - "name" : "ももべりー" - }, { - "id" : "66", - "name" : "レッドベリィズ" - }, { - "id" : "96", - "name" : "チャレンジクッキング" - }, { - "id" : "104", - "name" : "ももぺあべりー" - }, { - "id" : "189", - "name" : "アインフェリア" - }, { - "id" : "200", - "name" : "CAERULA" - }, { - "id" : "214", - "name" : "L.M.B.G" - }, { - "id" : "215", - "name" : "Project:Krone" - } ] -}, { - "aliases" : [ { - "hash" : "cf0f5af872286b4401c644ad570b1401", - "id" : "2002601", - "profile" : { - "bust" : "84", - "height" : "162", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - }, { - "hash" : "7e5915c0369bb67f9240d3b0a501a2e5", - "id" : "2102602", - "profile" : { - "bust" : "84", - "height" : "162", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "新たな一歩", - "alias_name_display" : "新たな一歩", - "hash" : "ced7d4f37c325fd9e001d90e359b17b1", - "id" : "2212001", - "profile" : { - "bust" : "84", - "height" : "162", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "新たな一歩", - "alias_name_display" : "新たな一歩", - "hash" : "b6d1d6f360b6bc3660dc54fbc3fe7df0", - "id" : "2312002", - "profile" : { - "bust" : "84", - "height" : "162", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "紙背の想い人", - "alias_name_display" : "紙背の想い人", - "event" : [ { - "event_id" : 705, - "event_name" : "第5回ドリームLIVEフェスティバル" - } ], - "hash" : "ce511e82689c364d20fec5608adc6cf3", - "id" : "2412001", - "profile" : { - "bust" : "84", - "height" : "162", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "紙背の想い人", - "alias_name_display" : "紙背の想い人", - "event" : [ { - "event_id" : 705, - "event_name" : "第5回ドリームLIVEフェスティバル" - } ], - "hash" : "5a726b8a757f4b8cf9119dfa675816b5", - "id" : "2512002", - "profile" : { - "bust" : "84", - "height" : "162", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "紺碧の境界", - "alias_name_display" : "紺碧の境界", - "hash" : "96b6a60c3303906015d4032211e4b079", - "id" : "2416501", - "profile" : { - "bust" : "84", - "height" : "162", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "紺碧の境界", - "alias_name_display" : "紺碧の境界", - "hash" : "ea4fe8c4505af919b7191de04b281b93", - "id" : "2516502", - "profile" : { - "bust" : "84", - "height" : "162", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "一瞬の誘惑", - "alias_name_display" : "一瞬の誘惑", - "hash" : "1106c281db2655156a8e08432d9ab567", - "id" : "2421201", - "profile" : { - "bust" : "84", - "height" : "162", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "一瞬の誘惑", - "alias_name_display" : "一瞬の誘惑", - "hash" : "d6cce24ee78944325364cd30bd20fdf5", - "id" : "2521202", - "profile" : { - "bust" : "84", - "height" : "162", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "8e7cde57106b127e4b8fc0970cb6d65d", - "id" : "2421301", - "profile" : { - "bust" : "84", - "height" : "162", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "5f4cadb282c332c2de83ff248ce9bb37", - "id" : "2521302", - "profile" : { - "bust" : "84", - "height" : "162", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "美粧の煌めき", - "alias_name_display" : "美粧の煌めき", - "hash" : "a883d6a1227bd31f1677b3b616b2c285", - "id" : "2431101", - "profile" : { - "bust" : "84", - "height" : "162", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "美粧の煌めき", - "alias_name_display" : "美粧の煌めき", - "hash" : "f9bd60aeeb955a43395e2383c6cde17f", - "id" : "2531102", - "profile" : { - "bust" : "84", - "height" : "162", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "幽玄の馨香", - "alias_name_display" : "幽玄の馨香", - "hash" : "fd0a7dfded17e71db2b50a36b4fbfd59", - "id" : "2434001", - "profile" : { - "bust" : "84", - "height" : "162", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "幽玄の馨香", - "alias_name_display" : "幽玄の馨香", - "hash" : "1070f27d097b076cfb92c9f35232b43e", - "id" : "2534002", - "profile" : { - "bust" : "84", - "height" : "162", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "5thアニバーサリー", - "alias_name_display" : "5thアニバーサリー", - "event" : [ { - "event_id" : 1708, - "event_name" : "アイドルプロデュース the 5th Anniversary" - } ], - "hash" : "6e063bdc942ad4b54e2bbca4a78c8954", - "id" : "2436301", - "profile" : { - "bust" : "84", - "height" : "162", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "5thアニバーサリー", - "alias_name_display" : "5thアニバーサリー", - "event" : [ { - "event_id" : 1708, - "event_name" : "アイドルプロデュース the 5th Anniversary" - } ], - "hash" : "9da100987158cfe8ebba9397d3a982a5", - "id" : "2536302", - "profile" : { - "bust" : "84", - "height" : "162", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "5thアニバーサリー・S", - "alias_name_display" : "5thアニバーサリー・S", - "event" : [ { - "event_id" : 1708, - "event_name" : "アイドルプロデュース the 5th Anniversary" - } ], - "hash" : "611fb0f2780409db7dd4c429850216dd", - "id" : "2436401", - "profile" : { - "bust" : "84", - "height" : "162", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "5thアニバーサリー・S", - "alias_name_display" : "5thアニバーサリー・S", - "event" : [ { - "event_id" : 1708, - "event_name" : "アイドルプロデュース the 5th Anniversary" - } ], - "hash" : "bd02113f22c12494c713a43bcc0c8e90", - "id" : "2536402", - "profile" : { - "bust" : "84", - "height" : "162", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - } ], - "idol_id" : 89, - "idol_name" : "鷺沢文香", - "idol_name_display" : "鷺沢文香", - "units" : [ { - "id" : "14", - "name" : "月下氷姫" - }, { - "id" : "141", - "name" : "トランクィル・ウィスパー" - }, { - "id" : "189", - "name" : "アインフェリア" - }, { - "id" : "200", - "name" : "CAERULA" - }, { - "id" : "215", - "name" : "Project:Krone" - } ] -}, { - "aliases" : [ { - "hash" : "3ae96bc5997dd574e80cdcac87d694c2", - "id" : "2002701", - "profile" : { - "bust" : "85", - "height" : "160", - "hip" : "83", - "waist" : "56", - "weight" : "45" - } - }, { - "hash" : "27510dbd766f2e9408fb6b05d91764a1", - "id" : "2102702", - "profile" : { - "bust" : "85", - "height" : "160", - "hip" : "83", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "スポーティスタイル", - "alias_name_display" : "スポーティスタイル", - "event" : [ { - "event_id" : 212, - "event_name" : "アイドルサバイバル 秋の大運動会" - } ], - "hash" : "62bcced9a07ecf9df301f5c2b4e105bf", - "id" : "2212401", - "profile" : { - "bust" : "85", - "height" : "160", - "hip" : "83", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "スポーティスタイル", - "alias_name_display" : "スポーティスタイル", - "event" : [ { - "event_id" : 212, - "event_name" : "アイドルサバイバル 秋の大運動会" - } ], - "hash" : "acb305526999e1b7c54b53323f668bb8", - "id" : "2312402", - "profile" : { - "bust" : "85", - "height" : "160", - "hip" : "83", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "学園の生徒", - "alias_name_display" : "学園の生徒", - "event" : [ { - "event_id" : 412, - "event_name" : "聖靴学園の七不思議" - } ], - "hash" : "3043e305efbdf3ff8342c59044ee665c", - "id" : "2215401", - "profile" : { - "bust" : "85", - "height" : "160", - "hip" : "83", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "学園の生徒", - "alias_name_display" : "学園の生徒", - "event" : [ { - "event_id" : 412, - "event_name" : "聖靴学園の七不思議" - } ], - "hash" : "4c4c56b98f1f364f93fe0216268d1660", - "id" : "2315402", - "profile" : { - "bust" : "85", - "height" : "160", - "hip" : "83", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "学園の生徒・H", - "alias_name_display" : "学園の生徒・H", - "event" : [ { - "event_id" : 412, - "event_name" : "聖靴学園の七不思議" - } ], - "hash" : "a406823b39606adb4354565b01bff9fa", - "id" : "2215501", - "profile" : { - "bust" : "85", - "height" : "160", - "hip" : "83", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "学園の生徒・H", - "alias_name_display" : "学園の生徒・H", - "event" : [ { - "event_id" : 412, - "event_name" : "聖靴学園の七不思議" - } ], - "hash" : "5a21f9f09b9988b7515d8f47bc9e2359", - "id" : "2315502", - "profile" : { - "bust" : "85", - "height" : "160", - "hip" : "83", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "秋色温泉", - "alias_name_display" : "秋色温泉", - "hash" : "b3791226c1a2f96b7cba3a7df7e652ee", - "id" : "2218601", - "profile" : { - "bust" : "85", - "height" : "160", - "hip" : "83", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "秋色温泉", - "alias_name_display" : "秋色温泉", - "hash" : "bfe83ddb2201ea21bafb1abb53946e55", - "id" : "2318602", - "profile" : { - "bust" : "85", - "height" : "160", - "hip" : "83", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ロワイヤルスタイルND", - "alias_name_display" : "ロワイヤルスタイルND", - "event" : [ { - "event_id" : 818, - "event_name" : "アイドルLIVEロワイヤル 雨の日SP" - } ], - "hash" : "5237b11dced2bb4f4e34ce15ba3f584c", - "id" : "2227201", - "profile" : { - "bust" : "85", - "height" : "160", - "hip" : "83", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ロワイヤルスタイルND", - "alias_name_display" : "ロワイヤルスタイルND", - "event" : [ { - "event_id" : 818, - "event_name" : "アイドルLIVEロワイヤル 雨の日SP" - } ], - "hash" : "9ba2e2f6ffa97f877ba9e7ed81fa0e3d", - "id" : "2327202", - "profile" : { - "bust" : "85", - "height" : "160", - "hip" : "83", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ワイルドフレンズ", - "alias_name_display" : "ワイルドフレンズ", - "hash" : "85b14867dbae15eda96607c230a961f1", - "id" : "2231501", - "profile" : { - "bust" : "85", - "height" : "160", - "hip" : "83", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ワイルドフレンズ", - "alias_name_display" : "ワイルドフレンズ", - "hash" : "8c23ba46ce84b6f62c65bfc36b35bae3", - "id" : "2331502", - "profile" : { - "bust" : "85", - "height" : "160", - "hip" : "83", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "シークレットナイト", - "alias_name_display" : "シークレットナイト", - "hash" : "a7b45e7ba33a0c677cc254a7ea905032", - "id" : "2411801", - "profile" : { - "bust" : "85", - "height" : "160", - "hip" : "83", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "シークレットナイト", - "alias_name_display" : "シークレットナイト", - "hash" : "a1c20f3bdb91545ae7d704e5be568d0a", - "id" : "2511802", - "profile" : { - "bust" : "85", - "height" : "160", - "hip" : "83", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ハイ・リベレーション", - "alias_name_display" : "ハイ・リベレーション", - "event" : [ { - "event_id" : 811, - "event_name" : "第11回アイドルLIVEロワイヤル" - } ], - "hash" : "f7ced8439833097f85a863260ccf10aa", - "id" : "2422901", - "profile" : { - "bust" : "85", - "height" : "160", - "hip" : "83", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ハイ・リベレーション", - "alias_name_display" : "ハイ・リベレーション", - "event" : [ { - "event_id" : 811, - "event_name" : "第11回アイドルLIVEロワイヤル" - } ], - "hash" : "ca04cfd1a0a7a89bb9890e61953e5623", - "id" : "2522902", - "profile" : { - "bust" : "85", - "height" : "160", - "hip" : "83", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "静寂のひととき", - "alias_name_display" : "静寂のひととき", - "hash" : "0af6c0578c3277b6cb7f183ae9cbb267", - "id" : "2428001", - "profile" : { - "bust" : "85", - "height" : "160", - "hip" : "83", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "静寂のひととき", - "alias_name_display" : "静寂のひととき", - "hash" : "615b301570633d1f4eeb36d15fa9c890", - "id" : "2528002", - "profile" : { - "bust" : "85", - "height" : "160", - "hip" : "83", - "waist" : "56", - "weight" : "45" - } - } ], - "idol_id" : 90, - "idol_name" : "八神マキノ", - "idol_name_display" : "八神マキノ", - "units" : [ { - "id" : "143", - "name" : "ファタ・モルガーナ" - }, { - "id" : "154", - "name" : "秋色温泉" - }, { - "id" : "210", - "name" : "ロワイヤルスタイルND" - } ] -}, { - "aliases" : [ { - "hash" : "3fd787fa963d607b8b8a5686e59f5b29", - "id" : "2002801", - "profile" : { - "bust" : "75", - "height" : "150", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - }, { - "hash" : "a7890d1785a7965cbf8fbb305cba821a", - "id" : "2102802", - "profile" : { - "bust" : "75", - "height" : "150", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "ニューイヤースタイル", - "alias_name_display" : "ニューイヤースタイル", - "event" : [ { - "event_id" : 509, - "event_name" : "新春LIVEツアーカーニバル" - } ], - "hash" : "51c0525ec41be4004e36833ae561a3c8", - "id" : "2213601", - "profile" : { - "bust" : "75", - "height" : "150", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "ニューイヤースタイル", - "alias_name_display" : "ニューイヤースタイル", - "event" : [ { - "event_id" : 509, - "event_name" : "新春LIVEツアーカーニバル" - } ], - "hash" : "aeac456b247d2e9074034bcd6b3a8aff", - "id" : "2313602", - "profile" : { - "bust" : "75", - "height" : "150", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "ロックI.C", - "alias_name_display" : "ロックI.C", - "event" : [ { - "event_id" : 1202, - "event_name" : "目指せロックスター アイドルチャレンジ" - } ], - "hash" : "6f8adbc17fd343e56d1bc5fe47bb72de", - "id" : "2316902", - "profile" : { - "bust" : "75", - "height" : "150", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "クリスマスプレゼント", - "alias_name_display" : "クリスマスプレゼント", - "hash" : "96ac982bc7ce504882361acfcefae89c", - "id" : "2219001", - "profile" : { - "bust" : "75", - "height" : "150", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "クリスマスプレゼント", - "alias_name_display" : "クリスマスプレゼント", - "hash" : "caf416dcfcab3698f017ed2b1de72c43", - "id" : "2319002", - "profile" : { - "bust" : "75", - "height" : "150", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "ナチュラルハート", - "alias_name_display" : "ナチュラルハート", - "hash" : "a17821cdbc53f0db2717bbe7e45e74c4", - "id" : "2225801", - "profile" : { - "bust" : "75", - "height" : "150", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "ナチュラルハート", - "alias_name_display" : "ナチュラルハート", - "hash" : "12bf848ee659aa5553744ee513f0e8b7", - "id" : "2325802", - "profile" : { - "bust" : "75", - "height" : "150", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "ミステリアスシエラザード", - "alias_name_display" : "ミステリアスシエラザード", - "hash" : "d3fc8f9b8afc44254988cc535a1264b1", - "id" : "2413401", - "profile" : { - "bust" : "75", - "height" : "150", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "ミステリアスシエラザード", - "alias_name_display" : "ミステリアスシエラザード", - "hash" : "3060ec3d09520102c7f6b50765d784d4", - "id" : "2513402", - "profile" : { - "bust" : "75", - "height" : "150", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "ガールズロッカー", - "alias_name_display" : "ガールズロッカー", - "event" : [ { - "event_id" : 1202, - "event_name" : "目指せロックスター アイドルチャレンジ" - } ], - "hash" : "f26ef223586e5490260270a39bb5fa31", - "id" : "2416301", - "profile" : { - "bust" : "75", - "height" : "150", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "ガールズロッカー", - "alias_name_display" : "ガールズロッカー", - "event" : [ { - "event_id" : 1202, - "event_name" : "目指せロックスター アイドルチャレンジ" - } ], - "hash" : "980400c2b1acc1508f6d67e7ac6d1f6e", - "id" : "2516302", - "profile" : { - "bust" : "75", - "height" : "150", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "ガールズロッカー・S", - "alias_name_display" : "ガールズロッカー・S", - "event" : [ { - "event_id" : 1202, - "event_name" : "目指せロックスター アイドルチャレンジ" - } ], - "hash" : "8dc670968a6e919d6dce89641929090f", - "id" : "2416401", - "profile" : { - "bust" : "75", - "height" : "150", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "ガールズロッカー・S", - "alias_name_display" : "ガールズロッカー・S", - "event" : [ { - "event_id" : 1202, - "event_name" : "目指せロックスター アイドルチャレンジ" - } ], - "hash" : "e57ab2575397046065c160f0d2c53cbb", - "id" : "2516402", - "profile" : { - "bust" : "75", - "height" : "150", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "みんなとキャンプ", - "alias_name_display" : "みんなとキャンプ", - "event" : [ { - "event_id" : 1701, - "event_name" : "アイドルプロデュース はじめてのキャンプ" - } ], - "hash" : "4affe65c63072cef2dc3890af05eba67", - "id" : "2423601", - "profile" : { - "bust" : "75", - "height" : "150", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "みんなとキャンプ", - "alias_name_display" : "みんなとキャンプ", - "event" : [ { - "event_id" : 1701, - "event_name" : "アイドルプロデュース はじめてのキャンプ" - } ], - "hash" : "a122383313a4c8d66d98ea71f6505a26", - "id" : "2523602", - "profile" : { - "bust" : "75", - "height" : "150", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "うれしいキャンプ", - "alias_name_display" : "うれしいキャンプ", - "event" : [ { - "event_id" : 1701, - "event_name" : "アイドルプロデュース はじめてのキャンプ" - } ], - "hash" : "c8c7f7f51c1fc53cd47bd499b0c9b05c", - "id" : "2423701", - "profile" : { - "bust" : "75", - "height" : "150", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "うれしいキャンプ", - "alias_name_display" : "うれしいキャンプ", - "event" : [ { - "event_id" : 1701, - "event_name" : "アイドルプロデュース はじめてのキャンプ" - } ], - "hash" : "74ec8a61bbb3c3b2d031f676d1287cf4", - "id" : "2523702", - "profile" : { - "bust" : "75", - "height" : "150", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "寂寥のアズラク", - "alias_name_display" : "寂寥のアズラク", - "hash" : "e01c7d5a98d641813f37d6598a51e0c4", - "id" : "2427501", - "profile" : { - "bust" : "75", - "height" : "150", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "寂寥のアズラク", - "alias_name_display" : "寂寥のアズラク", - "hash" : "9960752141b9ff3b336b4a990351dfb0", - "id" : "2527502", - "profile" : { - "bust" : "75", - "height" : "150", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "太陽の歌姫", - "alias_name_display" : "太陽の歌姫", - "event" : [ { - "event_id" : "029", - "event_name" : "第29回プロダクションマッチフェスティバル" - } ], - "hash" : "fa9965fce6b39f63942891b5f91b323b", - "id" : "2433301", - "profile" : { - "bust" : "75", - "height" : "150", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "太陽の歌姫", - "alias_name_display" : "太陽の歌姫", - "event" : [ { - "event_id" : "029", - "event_name" : "第29回プロダクションマッチフェスティバル" - } ], - "hash" : "c938a92ffa13dbb1932456bec25bef1e", - "id" : "2533302", - "profile" : { - "bust" : "75", - "height" : "150", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "デザートマミー", - "alias_name_display" : "デザートマミー", - "hash" : "c05efe35b1a2bbf741f9ca90818585c2", - "id" : "2437601", - "profile" : { - "bust" : "75", - "height" : "150", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "デザートマミー", - "alias_name_display" : "デザートマミー", - "hash" : "d5736287d3ece82c8ab060128aeceaeb", - "id" : "2537602", - "profile" : { - "bust" : "75", - "height" : "150", - "hip" : "78", - "waist" : "54", - "weight" : "40" - } - } ], - "idol_id" : 91, - "idol_name" : "ライラ", - "idol_name_display" : "ライラ", - "units" : [ { - "id" : "31", - "name" : "ソル・カマル" - }, { - "id" : "68", - "name" : "ロボフレンズ" - }, { - "id" : "98", - "name" : "ニューイヤースタイル" - }, { - "id" : "169", - "name" : "FOUR PIECE" - } ] -}, { - "aliases" : [ { - "hash" : "fbd7e64d96b438e45db27f0392b08a06", - "id" : "2002901", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - }, { - "hash" : "5395fd824474ffe5d08eb56efafccff0", - "id" : "2102902", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ワーキング・シー", - "alias_name_display" : "ワーキング・シー", - "hash" : "634592fc7441fccfaa2653bda666460e", - "id" : "2215601", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ワーキング・シー", - "alias_name_display" : "ワーキング・シー", - "hash" : "f078bb2a8d09c75f4ae06e3a659f814c", - "id" : "2315602", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ナイトパーティー", - "alias_name_display" : "ナイトパーティー", - "hash" : "6960c9142018589d4bb627b688e7581f", - "id" : "2220201", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ナイトパーティー", - "alias_name_display" : "ナイトパーティー", - "hash" : "d59a5d065863cd6c391532b32cb33433", - "id" : "2320202", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "エンゼルフィッシュ", - "alias_name_display" : "エンゼルフィッシュ", - "hash" : "8026b66e97fce87009b127ea8e4f5638", - "id" : "2223701", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "エンゼルフィッシュ", - "alias_name_display" : "エンゼルフィッシュ", - "hash" : "a5a7eac755571cf89d6e63834a41c2b2", - "id" : "2323702", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "バレンタインI.C", - "alias_name_display" : "バレンタインI.C", - "event" : [ { - "event_id" : 1209, - "event_name" : "アイドルチャレンジ チャレンジクッキング バレンタイン編" - } ], - "hash" : "521e105840ac8d626c9a5e3f05f3b20c", - "id" : "2325002", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ぴちぴちショコラティエ", - "alias_name_display" : "ぴちぴちショコラティエ", - "event" : [ { - "event_id" : 1906, - "event_name" : "ディアリースターハート ~ラブキュンバレンタイン~" - } ], - "hash" : "3714561ec869554fdc672d9c792f71fe", - "id" : "2330402", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "シーサイドチアー", - "alias_name_display" : "シーサイドチアー", - "event" : [ { - "event_id" : 1104, - "event_name" : "プロダクション対抗トークバトルショーinSUMMER" - } ], - "hash" : "71d62a972ec5e1ed2959e6ce43c9b60c", - "id" : "2416601", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "シーサイドチアー", - "alias_name_display" : "シーサイドチアー", - "event" : [ { - "event_id" : 1104, - "event_name" : "プロダクション対抗トークバトルショーinSUMMER" - } ], - "hash" : "64691a86814fdcf3818572ed7a67fbcf", - "id" : "2516602", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "いきものがかり", - "alias_name_display" : "いきものがかり", - "event" : [ { - "event_id" : "022", - "event_name" : "第22回プロダクションマッチフェスティバル" - } ], - "hash" : "9bc92b6f7e0699258e78f8cad8449778", - "id" : "2424901", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "いきものがかり", - "alias_name_display" : "いきものがかり", - "event" : [ { - "event_id" : "022", - "event_name" : "第22回プロダクションマッチフェスティバル" - } ], - "hash" : "e86688b7a544dfa38a8b1f939061162d", - "id" : "2524902", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "るんるんクッキング", - "alias_name_display" : "るんるんクッキング", - "event" : [ { - "event_id" : 1209, - "event_name" : "アイドルチャレンジ チャレンジクッキング バレンタイン編" - } ], - "hash" : "43239b593293aa795a1b4375ca800967", - "id" : "2430701", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "るんるんクッキング", - "alias_name_display" : "るんるんクッキング", - "event" : [ { - "event_id" : 1209, - "event_name" : "アイドルチャレンジ チャレンジクッキング バレンタイン編" - } ], - "hash" : "8b764d55696b882d6791b7a723bc88e1", - "id" : "2530702", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "るんるんクッキング・S", - "alias_name_display" : "るんるんクッキング・S", - "event" : [ { - "event_id" : 1209, - "event_name" : "アイドルチャレンジ チャレンジクッキング バレンタイン編" - } ], - "hash" : "a33b7181a7202f0873a00ccba8392539", - "id" : "2430801", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "るんるんクッキング・S", - "alias_name_display" : "るんるんクッキング・S", - "event" : [ { - "event_id" : 1209, - "event_name" : "アイドルチャレンジ チャレンジクッキング バレンタイン編" - } ], - "hash" : "bc6e9c5a4b28b1669ceb394193011235", - "id" : "2530802", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "幻視霊縛", - "alias_name_display" : "幻視霊縛", - "event" : [ { - "event_id" : 1903, - "event_name" : "怪奇公演 心霊探偵の事件簿" - } ], - "hash" : "e9a1335372f00626a11dcee9481389e6", - "id" : "2434401", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "幻視霊縛", - "alias_name_display" : "幻視霊縛", - "event" : [ { - "event_id" : 1903, - "event_name" : "怪奇公演 心霊探偵の事件簿" - } ], - "hash" : "3680d1991b44b9d38b902639964525ed", - "id" : "2534402", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "77", - "waist" : "55", - "weight" : "41" - } - } ], - "idol_id" : 92, - "idol_name" : "浅利七海", - "idol_name_display" : "浅利七海", - "units" : [ { - "id" : "143", - "name" : "ファタ・モルガーナ" - } ] -}, { - "aliases" : [ { - "hash" : "7213b5c8bf9bcf2661deeed916c04839", - "id" : "2200101", - "profile" : { - "bust" : "90", - "height" : "158", - "hip" : "81", - "waist" : "58", - "weight" : "46" - } - }, { - "hash" : "f46be86c4472b60b8db9adabf5a4ed8c", - "id" : "2300102", - "profile" : { - "bust" : "90", - "height" : "158", - "hip" : "81", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "イタリアンスタイル", - "alias_name_display" : "イタリアンスタイル", - "event" : [ { - "event_id" : 503, - "event_name" : "アイドルLIVEツアーinイタリア" - } ], - "hash" : "f97e412122f73ccd9b6b44d7d60b19ba", - "id" : "2208701", - "profile" : { - "bust" : "90", - "height" : "158", - "hip" : "81", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "イタリアンスタイル", - "alias_name_display" : "イタリアンスタイル", - "event" : [ { - "event_id" : 503, - "event_name" : "アイドルLIVEツアーinイタリア" - } ], - "hash" : "a1432f07870b768fbb65fac3fb044ccd", - "id" : "2308702", - "profile" : { - "bust" : "90", - "height" : "158", - "hip" : "81", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "バニーガール", - "alias_name_display" : "バニーガール", - "hash" : "fe622a9df6d27c14fe21f524b0814f93", - "id" : "2211701", - "profile" : { - "bust" : "90", - "height" : "158", - "hip" : "81", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "バニーガール", - "alias_name_display" : "バニーガール", - "hash" : "56032e82e99af67ca89d0cc1e1760238", - "id" : "2311702", - "profile" : { - "bust" : "90", - "height" : "158", - "hip" : "81", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "T.B.チアーズ", - "alias_name_display" : "T.B.チアーズ", - "event" : [ { - "event_id" : 1102, - "event_name" : "第2回プロダクション対抗トークバトルショー" - } ], - "hash" : "6c847b7c95a48dab0fc61b45b6c66522", - "id" : "2215701", - "profile" : { - "bust" : "90", - "height" : "158", - "hip" : "81", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "T.B.チアーズ", - "alias_name_display" : "T.B.チアーズ", - "event" : [ { - "event_id" : 1102, - "event_name" : "第2回プロダクション対抗トークバトルショー" - } ], - "hash" : "c6e605ee7213927f28a0fe609ecaed58", - "id" : "2315702", - "profile" : { - "bust" : "90", - "height" : "158", - "hip" : "81", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "SUHADAスタイル", - "alias_name_display" : "SUHADAスタイル", - "hash" : "d66165c8ec5795a58dfddd75ea490ce4", - "id" : "2219101", - "profile" : { - "bust" : "90", - "height" : "158", - "hip" : "81", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "SUHADAスタイル", - "alias_name_display" : "SUHADAスタイル", - "hash" : "c2c0c4be7dd2a5321b7d31af6e510da6", - "id" : "2319102", - "profile" : { - "bust" : "90", - "height" : "158", - "hip" : "81", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "ビター&スウィート", - "alias_name_display" : "ビター&スウィート", - "hash" : "0cd05f44a7645e7e5226505b77095927", - "id" : "2224901", - "profile" : { - "bust" : "90", - "height" : "158", - "hip" : "81", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "ビター&スウィート", - "alias_name_display" : "ビター&スウィート", - "hash" : "82c55a45c33211e07f84a2194e7c37c1", - "id" : "2324902", - "profile" : { - "bust" : "90", - "height" : "158", - "hip" : "81", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "ヴィクトリアの微笑", - "alias_name_display" : "ヴィクトリアの微笑", - "hash" : "79df8bef976ffbffa161c1640c2e5f54", - "id" : "2229701", - "profile" : { - "bust" : "90", - "height" : "158", - "hip" : "81", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "ヴィクトリアの微笑", - "alias_name_display" : "ヴィクトリアの微笑", - "hash" : "6a82c3aa225dd4352788e2c9edff4933", - "id" : "2329702", - "profile" : { - "bust" : "90", - "height" : "158", - "hip" : "81", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "ワールドイズマイン", - "alias_name_display" : "ワールドイズマイン", - "event" : [ { - "event_id" : 704, - "event_name" : "第4回ドリームLIVEフェスティバル" - } ], - "hash" : "695cc79fac96163d7f505021b1824512", - "id" : "2410701", - "profile" : { - "bust" : "90", - "height" : "158", - "hip" : "81", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "ワールドイズマイン", - "alias_name_display" : "ワールドイズマイン", - "event" : [ { - "event_id" : 704, - "event_name" : "第4回ドリームLIVEフェスティバル" - } ], - "hash" : "7175e4b23da69f4db80c2721b4010a14", - "id" : "2510702", - "profile" : { - "bust" : "90", - "height" : "158", - "hip" : "81", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "パーフェクトティーチャー", - "alias_name_display" : "パーフェクトティーチャー", - "event" : [ { - "event_id" : 520, - "event_name" : "青春公演 シング・ア・ソング" - } ], - "hash" : "0706adc16bd17b7911c6f0c486c9288b", - "id" : "2425401", - "profile" : { - "bust" : "90", - "height" : "158", - "hip" : "81", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "パーフェクトティーチャー", - "alias_name_display" : "パーフェクトティーチャー", - "event" : [ { - "event_id" : 520, - "event_name" : "青春公演 シング・ア・ソング" - } ], - "hash" : "6a2e07a28b5eb41aba421027c684c0dc", - "id" : "2525402", - "profile" : { - "bust" : "90", - "height" : "158", - "hip" : "81", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "飽くなき挑戦者", - "alias_name_display" : "飽くなき挑戦者", - "event" : [ { - "event_id" : 1211, - "event_name" : "目指せ山頂! アイドルチャレンジ" - } ], - "hash" : "af4ef2fa96ffca2a1b2747a49dd05f04", - "id" : "2433901", - "profile" : { - "bust" : "90", - "height" : "158", - "hip" : "81", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "飽くなき挑戦者", - "alias_name_display" : "飽くなき挑戦者", - "event" : [ { - "event_id" : 1211, - "event_name" : "目指せ山頂! アイドルチャレンジ" - } ], - "hash" : "cc0698a6cf2cb1334013fe8b8ade9708", - "id" : "2533902", - "profile" : { - "bust" : "90", - "height" : "158", - "hip" : "81", - "waist" : "58", - "weight" : "46" - } - } ], - "idol_id" : 93, - "idol_name" : "ヘレン", - "idol_name_display" : "ヘレン", - "units" : [ { - "id" : "86", - "name" : "イタリアンスタイル" - } ] -}, { - "aliases" : [ { - "hash" : "259ea6a1a4bfe54feafe3adea84e09fc", - "id" : "2200201", - "profile" : { - "bust" : "90", - "height" : "160", - "hip" : "86", - "waist" : "56", - "weight" : "47" - } - }, { - "hash" : "79439fa45b259cec8e53788c227f295d", - "id" : "2300202", - "profile" : { - "bust" : "90", - "height" : "160", - "hip" : "86", - "waist" : "56", - "weight" : "47" - } - }, { - "alias_name" : "テーマパーク", - "alias_name_display" : "テーマパーク", - "event" : [ { - "event_id" : 203, - "event_name" : "アイドルサバイバルinテーマパーク" - } ], - "hash" : "980b9cd09101e0ace7a9a9a8a7025643", - "id" : "2203801", - "profile" : { - "bust" : "90", - "height" : "160", - "hip" : "86", - "waist" : "56", - "weight" : "47" - } - }, { - "alias_name" : "テーマパーク", - "alias_name_display" : "テーマパーク", - "event" : [ { - "event_id" : 203, - "event_name" : "アイドルサバイバルinテーマパーク" - } ], - "hash" : "d925b1db151da01b386045506ea410bf", - "id" : "2303802", - "profile" : { - "bust" : "90", - "height" : "160", - "hip" : "86", - "waist" : "56", - "weight" : "47" - } - }, { - "alias_name" : "ハロウィンパーティー", - "alias_name_display" : "ハロウィンパーティー", - "hash" : "db6604d22bb5f0f5dc9debc86ffd2c0e", - "id" : "2206201", - "profile" : { - "bust" : "90", - "height" : "160", - "hip" : "86", - "waist" : "56", - "weight" : "47" - } - }, { - "alias_name" : "ハロウィンパーティー", - "alias_name_display" : "ハロウィンパーティー", - "hash" : "4f126d663ceb6c43a28ea7b8ca06698c", - "id" : "2306202", - "profile" : { - "bust" : "90", - "height" : "160", - "hip" : "86", - "waist" : "56", - "weight" : "47" - } - }, { - "alias_name" : "ロッキンヴォーカル", - "alias_name_display" : "ロッキンヴォーカル", - "event" : [ { - "event_id" : "011", - "event_name" : "第11回プロダクションマッチフェスティバル" - } ], - "hash" : "81d108a67d9d1c4e1d850886c8b4e5f6", - "id" : "2210901", - "profile" : { - "bust" : "90", - "height" : "160", - "hip" : "86", - "waist" : "56", - "weight" : "47" - } - }, { - "alias_name" : "ロッキンヴォーカル", - "alias_name_display" : "ロッキンヴォーカル", - "event" : [ { - "event_id" : "011", - "event_name" : "第11回プロダクションマッチフェスティバル" - } ], - "hash" : "8de0a568c134685e6c62b1c1ce5904fe", - "id" : "2310902", - "profile" : { - "bust" : "90", - "height" : "160", - "hip" : "86", - "waist" : "56", - "weight" : "47" - } - }, { - "alias_name" : "熱気の中で", - "alias_name_display" : "熱気の中で", - "hash" : "01c2160e64c52a3951f9beb6bd18b7ae", - "id" : "2217201", - "profile" : { - "bust" : "90", - "height" : "160", - "hip" : "86", - "waist" : "56", - "weight" : "47" - } - }, { - "alias_name" : "熱気の中で", - "alias_name_display" : "熱気の中で", - "hash" : "631a32c8f240c49e29c4c8ca97c92a8d", - "id" : "2317202", - "profile" : { - "bust" : "90", - "height" : "160", - "hip" : "86", - "waist" : "56", - "weight" : "47" - } - }, { - "alias_name" : "さわやかスポーツ", - "alias_name_display" : "さわやかスポーツ", - "hash" : "bf035f7688283058e98bcf8488a05dcc", - "id" : "2220901", - "profile" : { - "bust" : "90", - "height" : "160", - "hip" : "86", - "waist" : "56", - "weight" : "47" - } - }, { - "alias_name" : "さわやかスポーツ", - "alias_name_display" : "さわやかスポーツ", - "hash" : "5dd271c659752103724376c0a30163ce", - "id" : "2320902", - "profile" : { - "bust" : "90", - "height" : "160", - "hip" : "86", - "waist" : "56", - "weight" : "47" - } - }, { - "alias_name" : "イカした帽子屋", - "alias_name_display" : "イカした帽子屋", - "event" : [ { - "event_id" : 1901, - "event_name" : "童話公演 気まぐれアリスと不思議の国" - } ], - "hash" : "e4f66d8edf006f5f00a7098cadc49f7a", - "id" : "2325702", - "profile" : { - "bust" : "90", - "height" : "160", - "hip" : "86", - "waist" : "56", - "weight" : "47" - } - }, { - "alias_name" : "サマービーチ", - "alias_name_display" : "サマービーチ", - "hash" : "bb8965c51ea8824c9ed23b586af4c99e", - "id" : "2227801", - "profile" : { - "bust" : "90", - "height" : "160", - "hip" : "86", - "waist" : "56", - "weight" : "47" - } - }, { - "alias_name" : "サマービーチ", - "alias_name_display" : "サマービーチ", - "hash" : "f8b86ed000791b83276ea40a9e06916a", - "id" : "2327802", - "profile" : { - "bust" : "90", - "height" : "160", - "hip" : "86", - "waist" : "56", - "weight" : "47" - } - }, { - "alias_name" : "ロッキンヴォーカリスト", - "alias_name_display" : "ロッキンヴォーカリスト", - "event" : [ { - "event_id" : 1001, - "event_name" : "プロダクション対抗ドリームLIVEフェスティバル" - } ], - "hash" : "a30f4d848b8bef6dfe1da50c4358f73a", - "id" : "2411301", - "profile" : { - "bust" : "90", - "height" : "160", - "hip" : "86", - "waist" : "56", - "weight" : "47" - } - }, { - "alias_name" : "ロッキンヴォーカリスト", - "alias_name_display" : "ロッキンヴォーカリスト", - "event" : [ { - "event_id" : 1001, - "event_name" : "プロダクション対抗ドリームLIVEフェスティバル" - } ], - "hash" : "84e0685b558f54a0d3e2633da07cd8e6", - "id" : "2511302", - "profile" : { - "bust" : "90", - "height" : "160", - "hip" : "86", - "waist" : "56", - "weight" : "47" - } - }, { - "alias_name" : "ミュージックスクリーム", - "alias_name_display" : "ミュージックスクリーム", - "event" : [ { - "event_id" : 715, - "event_name" : "第15回ドリームLIVEフェスティバル" - } ], - "hash" : "c6803990cf321f09db09d1270f3e7141", - "id" : "2426601", - "profile" : { - "bust" : "90", - "height" : "160", - "hip" : "86", - "waist" : "56", - "weight" : "47" - } - }, { - "alias_name" : "ミュージックスクリーム", - "alias_name_display" : "ミュージックスクリーム", - "event" : [ { - "event_id" : 715, - "event_name" : "第15回ドリームLIVEフェスティバル" - } ], - "hash" : "9c7924540506c8bb3a815a165f9ee1f5", - "id" : "2526602", - "profile" : { - "bust" : "90", - "height" : "160", - "hip" : "86", - "waist" : "56", - "weight" : "47" - } - }, { - "alias_name" : "セトルダウンソウル", - "alias_name_display" : "セトルダウンソウル", - "hash" : "55fe8f7624359d534974ec4f3bac7ea9", - "id" : "2437001", - "profile" : { - "bust" : "90", - "height" : "160", - "hip" : "86", - "waist" : "56", - "weight" : "47" - } - }, { - "alias_name" : "セトルダウンソウル", - "alias_name_display" : "セトルダウンソウル", - "hash" : "7c6d691dff4f6353fdf2ab67ccea3e35", - "id" : "2537002", - "profile" : { - "bust" : "90", - "height" : "160", - "hip" : "86", - "waist" : "56", - "weight" : "47" - } - } ], - "idol_id" : 94, - "idol_name" : "松永涼", - "idol_name_display" : "松永涼", - "units" : [ { - "id" : "9", - "name" : "エルドリッチ・ロアテラー" - }, { - "id" : "176", - "name" : "炎陣" - }, { - "id" : "180", - "name" : "ハロウィンパーティー" - } ] -}, { - "aliases" : [ { - "hash" : "052c63f721faba1ce3c0ee0b14c45bb4", - "id" : "2200301", - "profile" : { - "bust" : "84", - "height" : "164", - "hip" : "82", - "waist" : "56", - "weight" : "45" - } - }, { - "hash" : "e33f0418d795637c98fb9997ef090cb1", - "id" : "2300302", - "profile" : { - "bust" : "84", - "height" : "164", - "hip" : "82", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "スポーツ祭", - "alias_name_display" : "スポーツ祭", - "hash" : "eee398b4bef19b879c761dd2c7bc3723", - "id" : "2204401", - "profile" : { - "bust" : "84", - "height" : "164", - "hip" : "82", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "スポーツ祭", - "alias_name_display" : "スポーツ祭", - "hash" : "5880ef8815cbbc4493ef5d6ce5c3e6d0", - "id" : "2304402", - "profile" : { - "bust" : "84", - "height" : "164", - "hip" : "82", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "セレブレティJKT", - "alias_name_display" : "セレブレティJKT", - "hash" : "5d5e16f335315c45d1854ad76f7a86e9", - "id" : "2215301", - "profile" : { - "bust" : "84", - "height" : "164", - "hip" : "82", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "セレブレティJKT", - "alias_name_display" : "セレブレティJKT", - "hash" : "e07ba1df924d713909c3e34b14cf279a", - "id" : "2315302", - "profile" : { - "bust" : "84", - "height" : "164", - "hip" : "82", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ブライダルセレクション", - "alias_name_display" : "ブライダルセレクション", - "hash" : "27fac6d6c916869f2ebf1b5dfd28e9eb", - "id" : "2221401", - "profile" : { - "bust" : "84", - "height" : "164", - "hip" : "82", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ブライダルセレクション", - "alias_name_display" : "ブライダルセレクション", - "hash" : "fa39ed43012f2f2da72464c7f1438169", - "id" : "2321402", - "profile" : { - "bust" : "84", - "height" : "164", - "hip" : "82", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ファンサーキット", - "alias_name_display" : "ファンサーキット", - "hash" : "91c81b332d95258dbe1ba94bbfd74d12", - "id" : "2226401", - "profile" : { - "bust" : "84", - "height" : "164", - "hip" : "82", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ファンサーキット", - "alias_name_display" : "ファンサーキット", - "hash" : "f49aaf4a024810dd9fa9ab09a70e9d72", - "id" : "2326402", - "profile" : { - "bust" : "84", - "height" : "164", - "hip" : "82", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ステージディーヴァ", - "alias_name_display" : "ステージディーヴァ", - "hash" : "b3f7ea5dd24289a103d9f2968646218c", - "id" : "2407410", - "profile" : { - "bust" : "84", - "height" : "164", - "hip" : "82", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ステージディーヴァ", - "alias_name_display" : "ステージディーヴァ", - "hash" : "0535db74b682fd7e4e479ea31d42c440", - "id" : "2507411", - "profile" : { - "bust" : "84", - "height" : "164", - "hip" : "82", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "美しき品位", - "alias_name_display" : "美しき品位", - "event" : [ { - "event_id" : 708, - "event_name" : "第8回ドリームLIVEフェスティバル" - } ], - "hash" : "58f99d1d3a87002b47bd50d93fd5bb7d", - "id" : "2417101", - "profile" : { - "bust" : "84", - "height" : "164", - "hip" : "82", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "美しき品位", - "alias_name_display" : "美しき品位", - "event" : [ { - "event_id" : 708, - "event_name" : "第8回ドリームLIVEフェスティバル" - } ], - "hash" : "751eac81ec20fef9cb7f5ee42102d579", - "id" : "2517102", - "profile" : { - "bust" : "84", - "height" : "164", - "hip" : "82", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ビューティーハーベスト", - "alias_name_display" : "ビューティーハーベスト", - "event" : [ { - "event_id" : 1801, - "event_name" : "アイドルバラエティ 究極のショートケーキを作ろう!" - } ], - "hash" : "f0f4465ce296a72ddb0dafc12a069467", - "id" : "2426901", - "profile" : { - "bust" : "84", - "height" : "164", - "hip" : "82", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ビューティーハーベスト", - "alias_name_display" : "ビューティーハーベスト", - "event" : [ { - "event_id" : 1801, - "event_name" : "アイドルバラエティ 究極のショートケーキを作ろう!" - } ], - "hash" : "6bce57ed40bb3f7a5ccd19cd679a0a66", - "id" : "2526902", - "profile" : { - "bust" : "84", - "height" : "164", - "hip" : "82", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "スパークルオブプライド", - "alias_name_display" : "スパークルオブプライド", - "hash" : "f4a1f0573cf0bc83790d5e89511ec5ba", - "id" : "2437801", - "profile" : { - "bust" : "84", - "height" : "164", - "hip" : "82", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "スパークルオブプライド", - "alias_name_display" : "スパークルオブプライド", - "hash" : "5adfeb655cf51c970156064c22dfb037", - "id" : "2537802", - "profile" : { - "bust" : "84", - "height" : "164", - "hip" : "82", - "waist" : "56", - "weight" : "45" - } - } ], - "idol_id" : 95, - "idol_name" : "小室千奈美", - "idol_name_display" : "小室千奈美", - "units" : [ { - "id" : "118", - "name" : "ビューティーアリュール" - }, { - "id" : "162", - "name" : "ブライダルセレクション" - }, { - "id" : "181", - "name" : "フレッシュアスリーテス" - } ] -}, { - "aliases" : [ { - "hash" : "fa2dec52d070ce84f31fe991bd02a9f4", - "id" : "2200401", - "profile" : { - "bust" : "87", - "height" : "168", - "hip" : "86", - "waist" : "55", - "weight" : "48" - } - }, { - "hash" : "601fe50f575ef26e92fdf9c2d6536286", - "id" : "2300402", - "profile" : { - "bust" : "87", - "height" : "168", - "hip" : "86", - "waist" : "55", - "weight" : "48" - } - }, { - "alias_name" : "サイバネティックビューティー", - "alias_name_display" : "サイバネティックビューティー", - "event" : [ { - "event_id" : 207, - "event_name" : "アイドルサバイバル ハロウィン編" - } ], - "hash" : "df24296562d7ff98a40501958c234758", - "id" : "2206601", - "profile" : { - "bust" : "87", - "height" : "168", - "hip" : "86", - "waist" : "55", - "weight" : "48" - } - }, { - "alias_name" : "サイバネティックビューティー", - "alias_name_display" : "サイバネティックビューティー", - "event" : [ { - "event_id" : 207, - "event_name" : "アイドルサバイバル ハロウィン編" - } ], - "hash" : "0512fbcece083f4b2077d3ba763bfc59", - "id" : "2306602", - "profile" : { - "bust" : "87", - "height" : "168", - "hip" : "86", - "waist" : "55", - "weight" : "48" - } - }, { - "alias_name" : "全味万能", - "alias_name_display" : "全味万能", - "event" : [ { - "event_id" : 519, - "event_name" : "美食公演 女神に捧ぐ御馳走" - } ], - "hash" : "22cd8051835cfd6702d130844565c9a4", - "id" : "2321002", - "profile" : { - "bust" : "87", - "height" : "168", - "hip" : "86", - "waist" : "55", - "weight" : "48" - } - }, { - "alias_name" : "定常の薄片", - "alias_name_display" : "定常の薄片", - "hash" : "080ff95ef15907ec9dde885760b35ca5", - "id" : "2230201", - "profile" : { - "bust" : "87", - "height" : "168", - "hip" : "86", - "waist" : "55", - "weight" : "48" - } - }, { - "alias_name" : "定常の薄片", - "alias_name_display" : "定常の薄片", - "hash" : "dc44f2b08fa035521ae2c420f188395f", - "id" : "2330202", - "profile" : { - "bust" : "87", - "height" : "168", - "hip" : "86", - "waist" : "55", - "weight" : "48" - } - }, { - "alias_name" : "寡黙の女王", - "alias_name_display" : "寡黙の女王", - "event" : [ { - "event_id" : 202, - "event_name" : "アイドルサバイバルひな祭り編" - } ], - "hash" : "5318a142d7ac9c1442963b5a74114a12", - "id" : "2401201", - "profile" : { - "bust" : "87", - "height" : "168", - "hip" : "86", - "waist" : "55", - "weight" : "48" - } - }, { - "alias_name" : "寡黙の女王", - "alias_name_display" : "寡黙の女王", - "event" : [ { - "event_id" : 202, - "event_name" : "アイドルサバイバルひな祭り編" - } ], - "hash" : "e5e24d0c31229301ba067bd7b55c07f1", - "id" : "2501202", - "profile" : { - "bust" : "87", - "height" : "168", - "hip" : "86", - "waist" : "55", - "weight" : "48" - } - }, { - "alias_name" : "ミステリアスメイド", - "alias_name_display" : "ミステリアスメイド", - "hash" : "9e4f24a0d5ffb26f7c9c24c818ba09df", - "id" : "2405301", - "profile" : { - "bust" : "87", - "height" : "168", - "hip" : "86", - "waist" : "55", - "weight" : "48" - } - }, { - "alias_name" : "ミステリアスメイド", - "alias_name_display" : "ミステリアスメイド", - "hash" : "5e07fd98a4bc380a8fa8a54bb0fc8402", - "id" : "2505302", - "profile" : { - "bust" : "87", - "height" : "168", - "hip" : "86", - "waist" : "55", - "weight" : "48" - } - }, { - "alias_name" : "トランセンドバニー", - "alias_name_display" : "トランセンドバニー", - "hash" : "eb19babf3f607140e5e7729c2c7bd063", - "id" : "2408801", - "profile" : { - "bust" : "87", - "height" : "168", - "hip" : "86", - "waist" : "55", - "weight" : "48" - } - }, { - "alias_name" : "トランセンドバニー", - "alias_name_display" : "トランセンドバニー", - "hash" : "e48b28d85c30e5e1beb133623913e970", - "id" : "2508802", - "profile" : { - "bust" : "87", - "height" : "168", - "hip" : "86", - "waist" : "55", - "weight" : "48" - } - }, { - "alias_name" : "銀弾の射手", - "alias_name_display" : "銀弾の射手", - "event" : [ { - "event_id" : 512, - "event_name" : "西部公演 ガンスリンガージャーニー" - } ], - "hash" : "ebeffaed713567cdde72ef9093f78574", - "id" : "2414801", - "profile" : { - "bust" : "87", - "height" : "168", - "hip" : "86", - "waist" : "55", - "weight" : "48" - } - }, { - "alias_name" : "銀弾の射手", - "alias_name_display" : "銀弾の射手", - "event" : [ { - "event_id" : 512, - "event_name" : "西部公演 ガンスリンガージャーニー" - } ], - "hash" : "50b4f24a6dad70b40a3aa9084cd1440f", - "id" : "2514802", - "profile" : { - "bust" : "87", - "height" : "168", - "hip" : "86", - "waist" : "55", - "weight" : "48" - } - }, { - "alias_name" : "イグナイトアビリティーズ", - "alias_name_display" : "イグナイトアビリティーズ", - "event" : [ { - "event_id" : "023", - "event_name" : "第23回プロダクションマッチフェスティバル" - } ], - "hash" : "4eb2a1368c3fd86ecc07cab40f40e1ad", - "id" : "2426801", - "profile" : { - "bust" : "87", - "height" : "168", - "hip" : "86", - "waist" : "55", - "weight" : "48" - } - }, { - "alias_name" : "イグナイトアビリティーズ", - "alias_name_display" : "イグナイトアビリティーズ", - "event" : [ { - "event_id" : "023", - "event_name" : "第23回プロダクションマッチフェスティバル" - } ], - "hash" : "90e8bb440dc7b7d442a7e0a54a5a159c", - "id" : "2526802", - "profile" : { - "bust" : "87", - "height" : "168", - "hip" : "86", - "waist" : "55", - "weight" : "48" - } - }, { - "alias_name" : "インスペクトコンコルディア", - "alias_name_display" : "インスペクトコンコルディア", - "hash" : "eb6c39fd1f1cc9a59cb18cab01f5cf01", - "id" : "2432901", - "profile" : { - "bust" : "87", - "height" : "168", - "hip" : "86", - "waist" : "55", - "weight" : "48" - } - }, { - "alias_name" : "インスペクトコンコルディア", - "alias_name_display" : "インスペクトコンコルディア", - "hash" : "eacc9bc4fe9128ac315bf016a2c356c4", - "id" : "2532902", - "profile" : { - "bust" : "87", - "height" : "168", - "hip" : "86", - "waist" : "55", - "weight" : "48" - } - } ], - "idol_id" : 96, - "idol_name" : "高峯のあ", - "idol_name_display" : "高峯のあ", - "units" : [ { - "id" : "116", - "name" : "にゃん・にゃん・にゃん" - } ] -}, { - "aliases" : [ { - "hash" : "1f62eb063030ed5083b0e7826245d3af", - "id" : "2200501", - "profile" : { - "bust" : "81", - "height" : "171", - "hip" : "83", - "waist" : "57", - "weight" : "49" - } - }, { - "hash" : "2cc6e90536c27201a4042b1bc3aa7a4b", - "id" : "2300502", - "profile" : { - "bust" : "81", - "height" : "171", - "hip" : "83", - "waist" : "57", - "weight" : "49" - } - }, { - "alias_name" : "神秘の女神", - "alias_name_display" : "神秘の女神", - "hash" : "0c4e761bc05c904c8d1d80ae19f55042", - "id" : "2401401", - "profile" : { - "bust" : "81", - "height" : "171", - "hip" : "83", - "waist" : "57", - "weight" : "49" - } - }, { - "alias_name" : "神秘の女神", - "alias_name_display" : "神秘の女神", - "hash" : "a79b80569b0b237c0e63751cca452632", - "id" : "2501402", - "profile" : { - "bust" : "81", - "height" : "171", - "hip" : "83", - "waist" : "57", - "weight" : "49" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "0902f546ad623f9ea9743f549991ca4a", - "id" : "2401601", - "profile" : { - "bust" : "81", - "height" : "171", - "hip" : "83", - "waist" : "57", - "weight" : "49" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "81f39e1cf11b678f12a090a23726925d", - "id" : "2501602", - "profile" : { - "bust" : "81", - "height" : "171", - "hip" : "83", - "waist" : "57", - "weight" : "49" - } - }, { - "alias_name" : "湯けむり女神", - "alias_name_display" : "湯けむり女神", - "hash" : "a9058c6198b35b7282ff3694c1177b66", - "id" : "2403801", - "profile" : { - "bust" : "81", - "height" : "171", - "hip" : "83", - "waist" : "57", - "weight" : "49" - } - }, { - "alias_name" : "湯けむり女神", - "alias_name_display" : "湯けむり女神", - "hash" : "ffde517a1d2a3fdb6900d97eefb33ac4", - "id" : "2503802", - "profile" : { - "bust" : "81", - "height" : "171", - "hip" : "83", - "waist" : "57", - "weight" : "49" - } - }, { - "alias_name" : "新緑の淑女", - "alias_name_display" : "新緑の淑女", - "hash" : "9a77b70cbfa5519c355bec95e1dd93c6", - "id" : "2406601", - "profile" : { - "bust" : "81", - "height" : "171", - "hip" : "83", - "waist" : "57", - "weight" : "49" - } - }, { - "alias_name" : "新緑の淑女", - "alias_name_display" : "新緑の淑女", - "hash" : "6d1df5bc4e0f9a31473c1aa86414f6ae", - "id" : "2506602", - "profile" : { - "bust" : "81", - "height" : "171", - "hip" : "83", - "waist" : "57", - "weight" : "49" - } - }, { - "alias_name" : "甘美なる姫君", - "alias_name_display" : "甘美なる姫君", - "hash" : "976b76648428ec1dbb7f5250e79a7a23", - "id" : "2412101", - "profile" : { - "bust" : "81", - "height" : "171", - "hip" : "83", - "waist" : "57", - "weight" : "49" - } - }, { - "alias_name" : "甘美なる姫君", - "alias_name_display" : "甘美なる姫君", - "hash" : "02766491016ecc94d2cc339c3a2d2dd6", - "id" : "2512102", - "profile" : { - "bust" : "81", - "height" : "171", - "hip" : "83", - "waist" : "57", - "weight" : "49" - } - }, { - "alias_name" : "ワンダフルマジック", - "alias_name_display" : "ワンダフルマジック", - "hash" : "b2962e6246b90fa8843eb06722614ff3", - "id" : "2413301", - "profile" : { - "bust" : "81", - "height" : "171", - "hip" : "83", - "waist" : "57", - "weight" : "49" - } - }, { - "alias_name" : "ワンダフルマジック", - "alias_name_display" : "ワンダフルマジック", - "hash" : "b4022ee73d439603da996d48bbc302a8", - "id" : "2513302", - "profile" : { - "bust" : "81", - "height" : "171", - "hip" : "83", - "waist" : "57", - "weight" : "49" - } - }, { - "alias_name" : "謹賀新年", - "alias_name_display" : "謹賀新年", - "hash" : "1b961de171c55574e471134ad28f883f", - "id" : "2420501", - "profile" : { - "bust" : "81", - "height" : "171", - "hip" : "83", - "waist" : "57", - "weight" : "49" - } - }, { - "alias_name" : "謹賀新年", - "alias_name_display" : "謹賀新年", - "hash" : "9daca9b18b0acbe7a315daee7b7a8fed", - "id" : "2520502", - "profile" : { - "bust" : "81", - "height" : "171", - "hip" : "83", - "waist" : "57", - "weight" : "49" - } - }, { - "alias_name" : "白南風の淑女", - "alias_name_display" : "白南風の淑女", - "hash" : "2e54872e35ff6ae1e3b8db794325ebdc", - "id" : "2425301", - "profile" : { - "bust" : "81", - "height" : "171", - "hip" : "83", - "waist" : "57", - "weight" : "49" - } - }, { - "alias_name" : "白南風の淑女", - "alias_name_display" : "白南風の淑女", - "hash" : "3549cd6ea8a118812832841f4dbbac61", - "id" : "2525302", - "profile" : { - "bust" : "81", - "height" : "171", - "hip" : "83", - "waist" : "57", - "weight" : "49" - } - }, { - "alias_name" : "幸福のひととき", - "alias_name_display" : "幸福のひととき", - "hash" : "81b0bcb1a5d9b6463f17eef50387d30c", - "id" : "2433201", - "profile" : { - "bust" : "81", - "height" : "171", - "hip" : "83", - "waist" : "57", - "weight" : "49" - } - }, { - "alias_name" : "幸福のひととき", - "alias_name_display" : "幸福のひととき", - "hash" : "188262224c3c9e6dd3b291c111101d72", - "id" : "2533202", - "profile" : { - "bust" : "81", - "height" : "171", - "hip" : "83", - "waist" : "57", - "weight" : "49" - } - }, { - "alias_name" : "聖夜の祝宴", - "alias_name_display" : "聖夜の祝宴", - "hash" : "7918df8e9ee92c02ea13b4fef6e6448f", - "id" : "2436601", - "profile" : { - "bust" : "81", - "height" : "171", - "hip" : "83", - "waist" : "57", - "weight" : "49" - } - }, { - "alias_name" : "聖夜の祝宴", - "alias_name_display" : "聖夜の祝宴", - "hash" : "70e5c843c758082e2ff927eb38cf943b", - "id" : "2536602", - "profile" : { - "bust" : "81", - "height" : "171", - "hip" : "83", - "waist" : "57", - "weight" : "49" - } - }, { - "alias_name" : "優艶の花尽し", - "alias_name_display" : "優艶の花尽し", - "hash" : "5e013960c6ecd88627148666b8fb215c", - "id" : "2439801", - "profile" : { - "bust" : "81", - "height" : "171", - "hip" : "83", - "waist" : "57", - "weight" : "49" - } - }, { - "alias_name" : "優艶の花尽し", - "alias_name_display" : "優艶の花尽し", - "hash" : "8f043af6f6c5ee0f0e01cd50a36a2f66", - "id" : "2539802", - "profile" : { - "bust" : "81", - "height" : "171", - "hip" : "83", - "waist" : "57", - "weight" : "49" - } - } ], - "idol_id" : 97, - "idol_name" : "高垣楓", - "idol_name_display" : "高垣楓", - "units" : [ { - "id" : "55", - "name" : "ミステリアスアイズ" - }, { - "id" : "63", - "name" : "ラブリーダイナーズ" - }, { - "id" : "124", - "name" : "女神たちの夏宴" - }, { - "id" : "141", - "name" : "トランクィル・ウィスパー" - }, { - "id" : "184", - "name" : "宵乙女" - }, { - "id" : "197", - "name" : "アズール・ムジカ" - }, { - "id" : "212", - "name" : "CINDERELLA GIRLS" - } ] -}, { - "aliases" : [ { - "hash" : "b7999fc204ef28323b6b656f66d46c42", - "id" : "2200601", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "80", - "waist" : "57", - "weight" : "41" - } - }, { - "hash" : "7b71466acb0f40616f8cf2fff65736e7", - "id" : "2300602", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "80", - "waist" : "57", - "weight" : "41" - } - }, { - "alias_name" : "天使な堕天使", - "alias_name_display" : "天使な堕天使", - "hash" : "c340069fa99350b0a29508ddf3392a44", - "id" : "2401101", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "80", - "waist" : "57", - "weight" : "41" - } - }, { - "alias_name" : "天使な堕天使", - "alias_name_display" : "天使な堕天使", - "hash" : "be29acd9c1b205a8c69f4fd5b8763b1d", - "id" : "2501102", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "80", - "waist" : "57", - "weight" : "41" - } - }, { - "alias_name" : "渚の天使", - "alias_name_display" : "渚の天使", - "hash" : "78ba6d819af44ef169d32cc6685541a1", - "id" : "2402601", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "80", - "waist" : "57", - "weight" : "41" - } - }, { - "alias_name" : "渚の天使", - "alias_name_display" : "渚の天使", - "hash" : "d1052359816fb13ba2b87fc90abccf00", - "id" : "2502602", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "80", - "waist" : "57", - "weight" : "41" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "070ed187236849ff082bcab7fde5af4c", - "id" : "2402701", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "80", - "waist" : "57", - "weight" : "41" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "b68433f5242f9a792a023ec1ad6e53fd", - "id" : "2502702", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "80", - "waist" : "57", - "weight" : "41" - } - }, { - "alias_name" : "覚醒魔王", - "alias_name_display" : "覚醒魔王", - "hash" : "5062961868cf70cc24fdb4fe6d319c14", - "id" : "2406401", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "80", - "waist" : "57", - "weight" : "41" - } - }, { - "alias_name" : "覚醒魔王", - "alias_name_display" : "覚醒魔王", - "hash" : "a8e4b70fb957baaeb029f6e09fb0965c", - "id" : "2506402", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "80", - "waist" : "57", - "weight" : "41" - } - }, { - "alias_name" : "シンデレラガール", - "alias_name_display" : "シンデレラガール", - "hash" : "f3f87f1ea01adffba286106b365275a8", - "id" : "2407301", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "80", - "waist" : "57", - "weight" : "41" - } - }, { - "alias_name" : "シンデレラガール", - "alias_name_display" : "シンデレラガール", - "hash" : "85fc0f386df052f15d27adcb09354ebc", - "id" : "2507302", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "80", - "waist" : "57", - "weight" : "41" - } - }, { - "alias_name" : "アニバーサリープリンセス", - "alias_name_display" : "アニバーサリープリンセス", - "event" : [ { - "event_id" : 410, - "event_name" : "アイドルプロデュース the 2nd Anniversary" - } ], - "hash" : "2843d6da5edda215be6641a742189bbd", - "id" : "2410801", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "80", - "waist" : "57", - "weight" : "41" - } - }, { - "alias_name" : "アニバーサリープリンセス", - "alias_name_display" : "アニバーサリープリンセス", - "event" : [ { - "event_id" : 410, - "event_name" : "アイドルプロデュース the 2nd Anniversary" - } ], - "hash" : "2fc7aaa1afffe3a797b9f64b8fac0a1e", - "id" : "2510802", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "80", - "waist" : "57", - "weight" : "41" - } - }, { - "alias_name" : "ワンダフルマジック", - "alias_name_display" : "ワンダフルマジック", - "hash" : "f8b9134d6146874bad5933a284a3d760", - "id" : "2413101", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "80", - "waist" : "57", - "weight" : "41" - } - }, { - "alias_name" : "ワンダフルマジック", - "alias_name_display" : "ワンダフルマジック", - "hash" : "d712a295960479bc715630e80c819f69", - "id" : "2513102", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "80", - "waist" : "57", - "weight" : "41" - } - }, { - "alias_name" : "紅蓮の夜姫", - "alias_name_display" : "紅蓮の夜姫", - "hash" : "9ed747defd1c6c795859a5170f375893", - "id" : "2418801", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "80", - "waist" : "57", - "weight" : "41" - } - }, { - "alias_name" : "紅蓮の夜姫", - "alias_name_display" : "紅蓮の夜姫", - "hash" : "29805f362930be2c4ad6c790285184c0", - "id" : "2518802", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "80", - "waist" : "57", - "weight" : "41" - } - }, { - "alias_name" : "ローゼンブルクエンゲル", - "alias_name_display" : "ローゼンブルクエンゲル", - "hash" : "a8966398cde53faf1eea3197d044fa09", - "id" : "2522502", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "80", - "waist" : "57", - "weight" : "41" - } - }, { - "alias_name" : "魔界の花嫁", - "alias_name_display" : "魔界の花嫁", - "hash" : "0cf0c9dda3969d5e0849f82ef76e3316", - "id" : "2424401", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "80", - "waist" : "57", - "weight" : "41" - } - }, { - "alias_name" : "魔界の花嫁", - "alias_name_display" : "魔界の花嫁", - "hash" : "3986012e2714597c8db0358919b7fcbf", - "id" : "2524402", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "80", - "waist" : "57", - "weight" : "41" - } - }, { - "alias_name" : "G4U!", - "alias_name_display" : "G4U!", - "hash" : "46d53903234e41082a542084e262e4ba", - "id" : "2528702", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "80", - "waist" : "57", - "weight" : "41" - } - }, { - "alias_name" : "春暁の紅姫", - "alias_name_display" : "春暁の紅姫", - "hash" : "fd87367a4c86b934f53471b7127afba7", - "id" : "2430101", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "80", - "waist" : "57", - "weight" : "41" - } - }, { - "alias_name" : "春暁の紅姫", - "alias_name_display" : "春暁の紅姫", - "hash" : "6782836a094a5ce9e71cdbf4d658fa90", - "id" : "2530102", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "80", - "waist" : "57", - "weight" : "41" - } - }, { - "alias_name" : "聖剣の救世主", - "alias_name_display" : "聖剣の救世主", - "hash" : "44f5225bbe4ef204a0840a870fb8604c", - "id" : "2434701", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "80", - "waist" : "57", - "weight" : "41" - } - }, { - "alias_name" : "聖剣の救世主", - "alias_name_display" : "聖剣の救世主", - "hash" : "3b9d6ba1ef0523d273c0203b04eb9400", - "id" : "2534702", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "80", - "waist" : "57", - "weight" : "41" - } - }, { - "alias_name" : "戦女神の先導", - "alias_name_display" : "戦女神の先導", - "hash" : "c96e33b66c7d171dee121d2438fac8f9", - "id" : "2438501", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "80", - "waist" : "57", - "weight" : "41" - } - }, { - "alias_name" : "戦女神の先導", - "alias_name_display" : "戦女神の先導", - "hash" : "5f1dd0a32dcb32f9b8e3ea9aa58a1e40", - "id" : "2538502", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "80", - "waist" : "57", - "weight" : "41" - } - } ], - "idol_id" : 98, - "idol_name" : "神崎蘭子", - "idol_name_display" : "神崎蘭子", - "units" : [ { - "id" : "1", - "name" : "Rosenburg Engel" - }, { - "id" : "32", - "name" : "ダークイルミネイト" - }, { - "id" : "82", - "name" : "Rosenburg Alptraum" - }, { - "id" : "145", - "name" : "LOVE LAIKA with Rosenburg Engel" - }, { - "id" : "197", - "name" : "アズール・ムジカ" - }, { - "id" : "205", - "name" : "シンデレラガール" - }, { - "id" : "213", - "name" : "CINDERELLA PROJECT" - } ] -}, { - "aliases" : [ { - "hash" : "cdd97d8779d5ae35b16aa32bf8172e9f", - "id" : "2200701", - "profile" : { - "bust" : "86", - "height" : "160", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "hash" : "f195a81a91c75e9d98525f587f6e5e56", - "id" : "2300702", - "profile" : { - "bust" : "86", - "height" : "160", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "ドイツスタイル", - "alias_name_display" : "ドイツスタイル", - "event" : [ { - "event_id" : 507, - "event_name" : "LIVEツアーカーニバルinドイツ" - } ], - "hash" : "21af17a4bb477771fb3703e37057ab2b", - "id" : "2211501", - "profile" : { - "bust" : "86", - "height" : "160", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "ドイツスタイル", - "alias_name_display" : "ドイツスタイル", - "event" : [ { - "event_id" : 507, - "event_name" : "LIVEツアーカーニバルinドイツ" - } ], - "hash" : "8a7a51f05959f050fc08990b8fe0bf00", - "id" : "2311502", - "profile" : { - "bust" : "86", - "height" : "160", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "トキメキバレンタイン", - "alias_name_display" : "トキメキバレンタイン", - "hash" : "d2fcb5170107ae3baf66c07e64409aeb", - "id" : "2214201", - "profile" : { - "bust" : "86", - "height" : "160", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "トキメキバレンタイン", - "alias_name_display" : "トキメキバレンタイン", - "hash" : "49ec3fa6693f3812579564738780bb08", - "id" : "2314202", - "profile" : { - "bust" : "86", - "height" : "160", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "旅の相棒", - "alias_name_display" : "旅の相棒", - "hash" : "81ca74ea273f671e22a08f61fa2578ab", - "id" : "2220301", - "profile" : { - "bust" : "86", - "height" : "160", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "旅の相棒", - "alias_name_display" : "旅の相棒", - "hash" : "cec4772afa818025f97cf2cad08688ba", - "id" : "2320302", - "profile" : { - "bust" : "86", - "height" : "160", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "レヴリーエトランゼ", - "alias_name_display" : "レヴリーエトランゼ", - "hash" : "3a226e6ae482ebdf9debda9cc66fe2e3", - "id" : "2230601", - "profile" : { - "bust" : "86", - "height" : "160", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "レヴリーエトランゼ", - "alias_name_display" : "レヴリーエトランゼ", - "hash" : "3268dec7a8de3f1191ef4709ba9cbf17", - "id" : "2330602", - "profile" : { - "bust" : "86", - "height" : "160", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "悠久の旅人", - "alias_name_display" : "悠久の旅人", - "event" : [ { - "event_id" : 512, - "event_name" : "西部公演 ガンスリンガージャーニー" - } ], - "hash" : "4543c56aa20c9a1c2e6143b3e3044721", - "id" : "2415001", - "profile" : { - "bust" : "86", - "height" : "160", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "悠久の旅人", - "alias_name_display" : "悠久の旅人", - "event" : [ { - "event_id" : 512, - "event_name" : "西部公演 ガンスリンガージャーニー" - } ], - "hash" : "5603dd64eec2f5217be0ec6c4d7e7b5d", - "id" : "2515002", - "profile" : { - "bust" : "86", - "height" : "160", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "トラベル・ロワイヤル", - "alias_name_display" : "トラベル・ロワイヤル", - "event" : [ { - "event_id" : 814, - "event_name" : "第14回アイドルLIVEロワイヤル" - } ], - "hash" : "375bd729a614047d02d20c4ad6e211e1", - "id" : "2428101", - "profile" : { - "bust" : "86", - "height" : "160", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "トラベル・ロワイヤル", - "alias_name_display" : "トラベル・ロワイヤル", - "event" : [ { - "event_id" : 814, - "event_name" : "第14回アイドルLIVEロワイヤル" - } ], - "hash" : "4edd386fb6e33c087895ed627fea7eaa", - "id" : "2528102", - "profile" : { - "bust" : "86", - "height" : "160", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "夏の一瞬", - "alias_name_display" : "夏の一瞬", - "event" : [ { - "event_id" : 723, - "event_name" : "水着DEドリームLIVEフェスティバル" - } ], - "hash" : "8b202b6cb4600cd6d956973ea303bed9", - "id" : "2434101", - "profile" : { - "bust" : "86", - "height" : "160", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "夏の一瞬", - "alias_name_display" : "夏の一瞬", - "event" : [ { - "event_id" : 723, - "event_name" : "水着DEドリームLIVEフェスティバル" - } ], - "hash" : "2b04d07128e9d3935b7505599d21f522", - "id" : "2534102", - "profile" : { - "bust" : "86", - "height" : "160", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - } ], - "idol_id" : 99, - "idol_name" : "伊集院惠", - "idol_name_display" : "伊集院惠", - "units" : [ { - "id" : "37", - "name" : "ナイトブルーレザー" - }, { - "id" : "97", - "name" : "ドイツスタイル" - }, { - "id" : "167", - "name" : "ロマンティックツアーズ" - } ] -}, { - "aliases" : [ { - "hash" : "e8a68de320c6b9d699b376a3893c9eeb", - "id" : "2200801", - "profile" : { - "bust" : "84", - "height" : "167", - "hip" : "83", - "waist" : "54", - "weight" : "43" - } - }, { - "hash" : "2015f0f8b5bd2bc1495307c22000397e", - "id" : "2300802", - "profile" : { - "bust" : "84", - "height" : "167", - "hip" : "83", - "waist" : "54", - "weight" : "43" - } - }, { - "alias_name" : "湯けむり温泉", - "alias_name_display" : "湯けむり温泉", - "hash" : "4f99fef782ecceda83db3254f236bcd0", - "id" : "2206701", - "profile" : { - "bust" : "84", - "height" : "167", - "hip" : "83", - "waist" : "54", - "weight" : "43" - } - }, { - "alias_name" : "湯けむり温泉", - "alias_name_display" : "湯けむり温泉", - "hash" : "aae21e3bdfa77ef0d2dd17459f21b6d3", - "id" : "2306702", - "profile" : { - "bust" : "84", - "height" : "167", - "hip" : "83", - "waist" : "54", - "weight" : "43" - } - }, { - "alias_name" : "セクシーグレープ", - "alias_name_display" : "セクシーグレープ", - "hash" : "74418998e04b4f684cd4033ff4f446ca", - "id" : "2211401", - "profile" : { - "bust" : "84", - "height" : "167", - "hip" : "83", - "waist" : "54", - "weight" : "43" - } - }, { - "alias_name" : "セクシーグレープ", - "alias_name_display" : "セクシーグレープ", - "hash" : "376eec8a0c1cdbeb4f8f9df252c3b885", - "id" : "2311402", - "profile" : { - "bust" : "84", - "height" : "167", - "hip" : "83", - "waist" : "54", - "weight" : "43" - } - }, { - "alias_name" : "新春コレクション", - "alias_name_display" : "新春コレクション", - "hash" : "ba0b7d351ead3ab555661e0809c99dfc", - "id" : "2213801", - "profile" : { - "bust" : "84", - "height" : "167", - "hip" : "83", - "waist" : "54", - "weight" : "43" - } - }, { - "alias_name" : "新春コレクション", - "alias_name_display" : "新春コレクション", - "hash" : "096ce8e1c6c74d2224659f4cd525613f", - "id" : "2313802", - "profile" : { - "bust" : "84", - "height" : "167", - "hip" : "83", - "waist" : "54", - "weight" : "43" - } - }, { - "alias_name" : "ルアードレディ", - "alias_name_display" : "ルアードレディ", - "hash" : "cb7e7c77ba31e6603cfdba7e39c0631e", - "id" : "2221101", - "profile" : { - "bust" : "84", - "height" : "167", - "hip" : "83", - "waist" : "54", - "weight" : "43" - } - }, { - "alias_name" : "ルアードレディ", - "alias_name_display" : "ルアードレディ", - "hash" : "0f6a6629245897604e27472f913f5629", - "id" : "2321102", - "profile" : { - "bust" : "84", - "height" : "167", - "hip" : "83", - "waist" : "54", - "weight" : "43" - } - }, { - "alias_name" : "スクールプール", - "alias_name_display" : "スクールプール", - "hash" : "93e784df4ef0fafec8220d0a5e2e529e", - "id" : "2227501", - "profile" : { - "bust" : "84", - "height" : "167", - "hip" : "83", - "waist" : "54", - "weight" : "43" - } - }, { - "alias_name" : "スクールプール", - "alias_name_display" : "スクールプール", - "hash" : "ca3f01b1c48fa13d98db5adfab3f8794", - "id" : "2327502", - "profile" : { - "bust" : "84", - "height" : "167", - "hip" : "83", - "waist" : "54", - "weight" : "43" - } - }, { - "alias_name" : "T.B.チアーズ", - "alias_name_display" : "T.B.チアーズ", - "event" : [ { - "event_id" : 1511, - "event_name" : "第11回チーム対抗トークバトルショー" - } ], - "hash" : "4fb9bd8fbdc077a3c0eda99f05484416", - "id" : "2230701", - "profile" : { - "bust" : "84", - "height" : "167", - "hip" : "83", - "waist" : "54", - "weight" : "43" - } - }, { - "alias_name" : "T.B.チアーズ", - "alias_name_display" : "T.B.チアーズ", - "event" : [ { - "event_id" : 1511, - "event_name" : "第11回チーム対抗トークバトルショー" - } ], - "hash" : "daf82424b3ded489e757ac9bb5246cd5", - "id" : "2330702", - "profile" : { - "bust" : "84", - "height" : "167", - "hip" : "83", - "waist" : "54", - "weight" : "43" - } - }, { - "alias_name" : "ほろ酔い艶美", - "alias_name_display" : "ほろ酔い艶美", - "event" : [ { - "event_id" : 104, - "event_name" : "桜舞う花見祭り" - } ], - "hash" : "5b83e49adcfae4f92a483276ce2874b9", - "id" : "2401301", - "profile" : { - "bust" : "84", - "height" : "167", - "hip" : "83", - "waist" : "54", - "weight" : "43" - } - }, { - "alias_name" : "ほろ酔い艶美", - "alias_name_display" : "ほろ酔い艶美", - "event" : [ { - "event_id" : 104, - "event_name" : "桜舞う花見祭り" - } ], - "hash" : "9ddc388fb6bd94b4ada76f35ff491b89", - "id" : "2501302", - "profile" : { - "bust" : "84", - "height" : "167", - "hip" : "83", - "waist" : "54", - "weight" : "43" - } - }, { - "alias_name" : "ドランカーパイレーツ", - "alias_name_display" : "ドランカーパイレーツ", - "event" : [ { - "event_id" : 513, - "event_name" : "海賊公演 オーシャンクルーズ" - } ], - "hash" : "bea24ae5a00b7dcbc889143658508c41", - "id" : "2415701", - "profile" : { - "bust" : "84", - "height" : "167", - "hip" : "83", - "waist" : "54", - "weight" : "43" - } - }, { - "alias_name" : "ドランカーパイレーツ", - "alias_name_display" : "ドランカーパイレーツ", - "event" : [ { - "event_id" : 513, - "event_name" : "海賊公演 オーシャンクルーズ" - } ], - "hash" : "5fc1f15a4e70c64c6578984d141fc9c5", - "id" : "2515702", - "profile" : { - "bust" : "84", - "height" : "167", - "hip" : "83", - "waist" : "54", - "weight" : "43" - } - }, { - "alias_name" : "ドランク・ロワイヤル", - "alias_name_display" : "ドランク・ロワイヤル", - "event" : [ { - "event_id" : 815, - "event_name" : "アイドルLIVEロワイヤル クリスマスSP" - } ], - "hash" : "2d02c06b0e7b8281e28f470dfece9075", - "id" : "2429301", - "profile" : { - "bust" : "84", - "height" : "167", - "hip" : "83", - "waist" : "54", - "weight" : "43" - } - }, { - "alias_name" : "ドランク・ロワイヤル", - "alias_name_display" : "ドランク・ロワイヤル", - "event" : [ { - "event_id" : 815, - "event_name" : "アイドルLIVEロワイヤル クリスマスSP" - } ], - "hash" : "eebf9cbe74825c11552fc61be114e2cc", - "id" : "2529302", - "profile" : { - "bust" : "84", - "height" : "167", - "hip" : "83", - "waist" : "54", - "weight" : "43" - } - } ], - "idol_id" : 100, - "idol_name" : "柊志乃", - "idol_name_display" : "柊志乃", - "units" : [ { - "id" : "207", - "name" : "ムーランルージュ" - } ] -}, { - "aliases" : [ { - "hash" : "d3e95e1ca3c7b346535ad23e8619ec7e", - "id" : "2200901", - "profile" : { - "bust" : "83", - "height" : "155", - "hip" : "81", - "waist" : "55", - "weight" : "42" - } - }, { - "hash" : "341cefa6c1f43b09054cabc7f0b0c93b", - "id" : "2300902", - "profile" : { - "bust" : "83", - "height" : "155", - "hip" : "81", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "制服コレクション", - "alias_name_display" : "制服コレクション", - "hash" : "cdcd2f0aba695f13e4fd8c1fe7eeacfd", - "id" : "2203401", - "profile" : { - "bust" : "83", - "height" : "155", - "hip" : "81", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "制服コレクション", - "alias_name_display" : "制服コレクション", - "hash" : "4b1040a6e8b8397273697cf5c3201554", - "id" : "2303402", - "profile" : { - "bust" : "83", - "height" : "155", - "hip" : "81", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "煌めきの乙女", - "alias_name_display" : "煌めきの乙女", - "hash" : "855d33d77752c725474da494a0e9e239", - "id" : "2402801", - "profile" : { - "bust" : "83", - "height" : "155", - "hip" : "81", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "煌めきの乙女", - "alias_name_display" : "煌めきの乙女", - "hash" : "7d8203e3cc992b16c5308358601375ea", - "id" : "2502802", - "profile" : { - "bust" : "83", - "height" : "155", - "hip" : "81", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "アニバーサリーゴシック", - "alias_name_display" : "アニバーサリーゴシック", - "event" : [ { - "event_id" : 403, - "event_name" : "アイドルプロデュース the 1st Anniversary" - } ], - "hash" : "475dcbd4ce790875aa25b1580d0ba63a", - "id" : "2404201", - "profile" : { - "bust" : "83", - "height" : "155", - "hip" : "81", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "アニバーサリーゴシック", - "alias_name_display" : "アニバーサリーゴシック", - "event" : [ { - "event_id" : 403, - "event_name" : "アイドルプロデュース the 1st Anniversary" - } ], - "hash" : "dd74a48fb25bdfe6d21f2a9efc24962f", - "id" : "2504202", - "profile" : { - "bust" : "83", - "height" : "155", - "hip" : "81", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "純白の花嫁", - "alias_name_display" : "純白の花嫁", - "hash" : "897d188e373b0578baf1aeae8632ae2b", - "id" : "2407101", - "profile" : { - "bust" : "83", - "height" : "155", - "hip" : "81", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "純白の花嫁", - "alias_name_display" : "純白の花嫁", - "hash" : "d5875dd6bd8f6aac5806e34d8528cd9f", - "id" : "2507102", - "profile" : { - "bust" : "83", - "height" : "155", - "hip" : "81", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "アニバーサリーゴシック・S", - "alias_name_display" : "アニバーサリーゴシック・S", - "event" : [ { - "event_id" : 403, - "event_name" : "アイドルプロデュース the 1st Anniversary" - } ], - "hash" : "0c58246fd64877bd1dce7795bcabf67a", - "id" : "2411101", - "profile" : { - "bust" : "83", - "height" : "155", - "hip" : "81", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "アニバーサリーゴシック・S", - "alias_name_display" : "アニバーサリーゴシック・S", - "event" : [ { - "event_id" : 403, - "event_name" : "アイドルプロデュース the 1st Anniversary" - } ], - "hash" : "8b6b38f0b127fe5a28fca3a8f7956f5c", - "id" : "2511102", - "profile" : { - "bust" : "83", - "height" : "155", - "hip" : "81", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "7ee6439b7345b1a66cafe6a16b5bdc0e", - "id" : "2414101", - "profile" : { - "bust" : "83", - "height" : "155", - "hip" : "81", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "322825cf0a562732b6c7b4dad80044c1", - "id" : "2514102", - "profile" : { - "bust" : "83", - "height" : "155", - "hip" : "81", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "夜宴の白芙蓉", - "alias_name_display" : "夜宴の白芙蓉", - "hash" : "9dd0ceb4c25a93738fd68e7abe04ed50", - "id" : "2414301", - "profile" : { - "bust" : "83", - "height" : "155", - "hip" : "81", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "夜宴の白芙蓉", - "alias_name_display" : "夜宴の白芙蓉", - "hash" : "733b81fd13ee7e9487977db31dae2e81", - "id" : "2514302", - "profile" : { - "bust" : "83", - "height" : "155", - "hip" : "81", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "希望の聖夜", - "alias_name_display" : "希望の聖夜", - "hash" : "e3f8f4bf12f8b4d77ff1cec13f3d1cc6", - "id" : "2419701", - "profile" : { - "bust" : "83", - "height" : "155", - "hip" : "81", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "希望の聖夜", - "alias_name_display" : "希望の聖夜", - "hash" : "c9f0d361ba7ba794be9a0870b20dfa93", - "id" : "2519702", - "profile" : { - "bust" : "83", - "height" : "155", - "hip" : "81", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "トゥルーフレーズ", - "alias_name_display" : "トゥルーフレーズ", - "event" : [ { - "event_id" : 716, - "event_name" : "第16回ドリームLIVEフェスティバル" - } ], - "hash" : "16fb8740d56d5bd611a39d3b34f68dc1", - "id" : "2427201", - "profile" : { - "bust" : "83", - "height" : "155", - "hip" : "81", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "トゥルーフレーズ", - "alias_name_display" : "トゥルーフレーズ", - "event" : [ { - "event_id" : 716, - "event_name" : "第16回ドリームLIVEフェスティバル" - } ], - "hash" : "680a961819a3b3abdbc4bff8e775f77c", - "id" : "2527202", - "profile" : { - "bust" : "83", - "height" : "155", - "hip" : "81", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "シンデレラドリーム", - "alias_name_display" : "シンデレラドリーム", - "hash" : "69b474b2a628832f1417e240ae75d852", - "id" : "2432401", - "profile" : { - "bust" : "83", - "height" : "155", - "hip" : "81", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "シンデレラドリーム", - "alias_name_display" : "シンデレラドリーム", - "hash" : "bfe0a1bc64586ae1ea9b4c596760ffe1", - "id" : "2532402", - "profile" : { - "bust" : "83", - "height" : "155", - "hip" : "81", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "きらめく夏色", - "alias_name_display" : "きらめく夏色", - "hash" : "01d63e58192a6deee186a9f9d3bce2d9", - "id" : "2434201", - "profile" : { - "bust" : "83", - "height" : "155", - "hip" : "81", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "きらめく夏色", - "alias_name_display" : "きらめく夏色", - "hash" : "dbf0e5fc40f2d08121adcb97cfe013d8", - "id" : "2534202", - "profile" : { - "bust" : "83", - "height" : "155", - "hip" : "81", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "テンダークリスタル", - "alias_name_display" : "テンダークリスタル", - "hash" : "df7e2cdb0ec4b9b67f8718568e62641b", - "id" : "2436801", - "profile" : { - "bust" : "83", - "height" : "155", - "hip" : "81", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "テンダークリスタル", - "alias_name_display" : "テンダークリスタル", - "hash" : "846cbe9ab87264c80ab22de8776c78a9", - "id" : "2536802", - "profile" : { - "bust" : "83", - "height" : "155", - "hip" : "81", - "waist" : "55", - "weight" : "42" - } - } ], - "idol_id" : 101, - "idol_name" : "北条加蓮", - "idol_name_display" : "北条加蓮", - "units" : [ { - "id" : "60", - "name" : "モノクロームリリィ" - }, { - "id" : "127", - "name" : "落花流水" - }, { - "id" : "144", - "name" : "Triad Primus" - }, { - "id" : "192", - "name" : "Masque:Rade" - }, { - "id" : "201", - "name" : "Caskets" - }, { - "id" : "215", - "name" : "Project:Krone" - } ] -}, { - "aliases" : [ { - "hash" : "583f455902cb4a78514d6eae2037e178", - "id" : "2201001", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "85", - "waist" : "59", - "weight" : "45" - } - }, { - "hash" : "e9dc3020f7c0a9b17cd4fe81e2b19c06", - "id" : "2301002", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "85", - "waist" : "59", - "weight" : "45" - } - }, { - "alias_name" : "UKスタイル", - "alias_name_display" : "UKスタイル", - "event" : [ { - "event_id" : 502, - "event_name" : "アイドルLIVEツアーinイギリス" - } ], - "hash" : "ce89872af095d6d542918865737692d0", - "id" : "2207801", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "85", - "waist" : "59", - "weight" : "45" - } - }, { - "alias_name" : "UKスタイル", - "alias_name_display" : "UKスタイル", - "event" : [ { - "event_id" : 502, - "event_name" : "アイドルLIVEツアーinイギリス" - } ], - "hash" : "0018fa3e6f76077d742f60a71ae9d9ae", - "id" : "2307802", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "85", - "waist" : "59", - "weight" : "45" - } - }, { - "alias_name" : "ピッチピチ☆ピーチ", - "alias_name_display" : "ピッチピチ☆ピーチ", - "hash" : "813ab4f5eb52eaa3d7e228cfe1ee06c3", - "id" : "2216001", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "85", - "waist" : "59", - "weight" : "45" - } - }, { - "alias_name" : "ピッチピチ☆ピーチ", - "alias_name_display" : "ピッチピチ☆ピーチ", - "hash" : "f1cec9f8d3be0ecae1393821e4246fad", - "id" : "2316002", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "85", - "waist" : "59", - "weight" : "45" - } - }, { - "alias_name" : "バレンタインデビル", - "alias_name_display" : "バレンタインデビル", - "hash" : "856f71d876bf6d3ad2fe96c51095397e", - "id" : "2219601", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "85", - "waist" : "59", - "weight" : "45" - } - }, { - "alias_name" : "バレンタインデビル", - "alias_name_display" : "バレンタインデビル", - "hash" : "4b1fa677378483b3a62a6aa8acd8720b", - "id" : "2319602", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "85", - "waist" : "59", - "weight" : "45" - } - }, { - "alias_name" : "紅葉温泉", - "alias_name_display" : "紅葉温泉", - "hash" : "8a35c69116be6ae367c4f422bedcfec5", - "id" : "2224001", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "85", - "waist" : "59", - "weight" : "45" - } - }, { - "alias_name" : "紅葉温泉", - "alias_name_display" : "紅葉温泉", - "hash" : "42bc768dec405b1c0a70c399638efdaf", - "id" : "2324002", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "85", - "waist" : "59", - "weight" : "45" - } - }, { - "alias_name" : "リラックスプレイス", - "alias_name_display" : "リラックスプレイス", - "event" : [ { - "event_id" : "027", - "event_name" : "第27回プロダクションマッチフェスティバル" - } ], - "hash" : "c9bfbeec109cbeaca409a2b420dbb865", - "id" : "2226301", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "85", - "waist" : "59", - "weight" : "45" - } - }, { - "alias_name" : "リラックスプレイス", - "alias_name_display" : "リラックスプレイス", - "event" : [ { - "event_id" : "027", - "event_name" : "第27回プロダクションマッチフェスティバル" - } ], - "hash" : "336d185e08236f2f1a1aca4b54705398", - "id" : "2326302", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "85", - "waist" : "59", - "weight" : "45" - } - }, { - "alias_name" : "迎春神楽", - "alias_name_display" : "迎春神楽", - "hash" : "4a24ef82ffe14e9063b5732f80a4de5b", - "id" : "2229901", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "85", - "waist" : "59", - "weight" : "45" - } - }, { - "alias_name" : "迎春神楽", - "alias_name_display" : "迎春神楽", - "hash" : "0a07e2a4bba52f714420ba5947665f25", - "id" : "2329902", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "85", - "waist" : "59", - "weight" : "45" - } - }, { - "alias_name" : "スプラッシュビューティー", - "alias_name_display" : "スプラッシュビューティー", - "event" : [ { - "event_id" : 211, - "event_name" : "アイドルサバイバルinサマーバケーション" - } ], - "hash" : "aa5bfe6bacceda82855bfd67597c8461", - "id" : "2408601", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "85", - "waist" : "59", - "weight" : "45" - } - }, { - "alias_name" : "スプラッシュビューティー", - "alias_name_display" : "スプラッシュビューティー", - "event" : [ { - "event_id" : 211, - "event_name" : "アイドルサバイバルinサマーバケーション" - } ], - "hash" : "1ab901851235156066b6c8d1ab519f22", - "id" : "2508602", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "85", - "waist" : "59", - "weight" : "45" - } - }, { - "alias_name" : "シャッターチャンス", - "alias_name_display" : "シャッターチャンス", - "event" : [ { - "event_id" : 1402, - "event_name" : "第2回ぷちデレラコレクション" - } ], - "hash" : "1a8e02458666accbaf80da3020365ab5", - "id" : "2424001", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "85", - "waist" : "59", - "weight" : "45" - } - }, { - "alias_name" : "シャッターチャンス", - "alias_name_display" : "シャッターチャンス", - "event" : [ { - "event_id" : 1402, - "event_name" : "第2回ぷちデレラコレクション" - } ], - "hash" : "e931ed75eb91bcd9735bc590a92c07d6", - "id" : "2524002", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "85", - "waist" : "59", - "weight" : "45" - } - } ], - "idol_id" : 102, - "idol_name" : "ケイト", - "idol_name_display" : "ケイト", - "units" : [ { - "id" : "37", - "name" : "ナイトブルーレザー" - }, { - "id" : "125", - "name" : "ユア・フレンズ" - }, { - "id" : "170", - "name" : "UKスタイル" - } ] -}, { - "aliases" : [ { - "hash" : "fff13e1315d12b403dc3d4e0d29f55eb", - "id" : "2201101", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "83", - "waist" : "58", - "weight" : "48" - } - }, { - "hash" : "034a9852b29dbc0b2308204b575a6bbd", - "id" : "2301102", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "83", - "waist" : "58", - "weight" : "48" - } - }, { - "alias_name" : "マーメイドパラダイス", - "alias_name_display" : "マーメイドパラダイス", - "hash" : "70cdd1add523e358191d5af81ed40a2d", - "id" : "2205201", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "83", - "waist" : "58", - "weight" : "48" - } - }, { - "alias_name" : "マーメイドパラダイス", - "alias_name_display" : "マーメイドパラダイス", - "hash" : "3bfdd43bed9438273cd3e7018e9cdd12", - "id" : "2305202", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "83", - "waist" : "58", - "weight" : "48" - } - }, { - "alias_name" : "ハッピーウェディング", - "alias_name_display" : "ハッピーウェディング", - "hash" : "c5fe53e9e75145b9e155df1133f562b9", - "id" : "2216201", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "83", - "waist" : "58", - "weight" : "48" - } - }, { - "alias_name" : "ハッピーウェディング", - "alias_name_display" : "ハッピーウェディング", - "hash" : "1b4fccc2662d8ffbb0e171e6ed088f08", - "id" : "2316202", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "83", - "waist" : "58", - "weight" : "48" - } - }, { - "alias_name" : "レディロッサ", - "alias_name_display" : "レディロッサ", - "event" : [ { - "event_id" : 1304, - "event_name" : "第4回プロダクションマッチフェスティバルS" - } ], - "hash" : "7e27f0eb3f898113a98097901e421c25", - "id" : "2322002", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "83", - "waist" : "58", - "weight" : "48" - } - }, { - "alias_name" : "メイクオーバー", - "alias_name_display" : "メイクオーバー", - "hash" : "405d9f977eb9e5ae55806f8681022813", - "id" : "2229401", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "83", - "waist" : "58", - "weight" : "48" - } - }, { - "alias_name" : "メイクオーバー", - "alias_name_display" : "メイクオーバー", - "hash" : "3baa4206d90f9d4411968bd934e8cb91", - "id" : "2329402", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "83", - "waist" : "58", - "weight" : "48" - } - }, { - "alias_name" : "オーシャンズギフト", - "alias_name_display" : "オーシャンズギフト", - "hash" : "2f1fec2362b65429cfbdbfa86c0e4fc6", - "id" : "2232201", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "83", - "waist" : "58", - "weight" : "48" - } - }, { - "alias_name" : "オーシャンズギフト", - "alias_name_display" : "オーシャンズギフト", - "hash" : "d645469362599b364cefb3ec192bc716", - "id" : "2332202", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "83", - "waist" : "58", - "weight" : "48" - } - }, { - "alias_name" : "白波の歌姫", - "alias_name_display" : "白波の歌姫", - "hash" : "1bc4222250340e81704f822d87ef28ee", - "id" : "2407601", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "83", - "waist" : "58", - "weight" : "48" - } - }, { - "alias_name" : "白波の歌姫", - "alias_name_display" : "白波の歌姫", - "hash" : "492654aed867cdcad6f852b3f2c644ea", - "id" : "2507602", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "83", - "waist" : "58", - "weight" : "48" - } - }, { - "alias_name" : "ラッシュ・ロワイヤル", - "alias_name_display" : "ラッシュ・ロワイヤル", - "event" : [ { - "event_id" : 807, - "event_name" : "第7回アイドルLIVEロワイヤル" - } ], - "hash" : "c2b247795dc4ab5555062010e1f49218", - "id" : "2418401", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "83", - "waist" : "58", - "weight" : "48" - } - }, { - "alias_name" : "ラッシュ・ロワイヤル", - "alias_name_display" : "ラッシュ・ロワイヤル", - "event" : [ { - "event_id" : 807, - "event_name" : "第7回アイドルLIVEロワイヤル" - } ], - "hash" : "12327daf4fd261820750b0cdd031c72f", - "id" : "2518402", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "83", - "waist" : "58", - "weight" : "48" - } - }, { - "alias_name" : "ドリームブライト", - "alias_name_display" : "ドリームブライト", - "event" : [ { - "event_id" : 721, - "event_name" : "第21回ドリームLIVEフェスティバル" - } ], - "hash" : "4298819e543828c4fe4d52415ce2b7a2", - "id" : "2432501", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "83", - "waist" : "58", - "weight" : "48" - } - }, { - "alias_name" : "ドリームブライト", - "alias_name_display" : "ドリームブライト", - "event" : [ { - "event_id" : 721, - "event_name" : "第21回ドリームLIVEフェスティバル" - } ], - "hash" : "8518eb7db20611b6e579e44780f6fe24", - "id" : "2532502", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "83", - "waist" : "58", - "weight" : "48" - } - } ], - "idol_id" : 103, - "idol_name" : "瀬名詩織", - "idol_name_display" : "瀬名詩織", - "units" : [ { - "id" : "132", - "name" : "thinE/Dasein" - }, { - "id" : "171", - "name" : "Black/White-Roses" - }, { - "id" : "182", - "name" : "マーメイドパラダイス" - } ] -}, { - "aliases" : [ { - "hash" : "86972ac887ef7cdbd493b5c04cdfd8ae", - "id" : "2201201", - "profile" : { - "bust" : "85", - "height" : "161", - "hip" : "84", - "waist" : "57", - "weight" : "46" - } - }, { - "hash" : "829397535a2dda749dc533961eae03e1", - "id" : "2301202", - "profile" : { - "bust" : "85", - "height" : "161", - "hip" : "84", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "制服コレクション", - "alias_name_display" : "制服コレクション", - "hash" : "e2fa19e51b793a88860a1fa01d773b5d", - "id" : "2209101", - "profile" : { - "bust" : "85", - "height" : "161", - "hip" : "84", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "制服コレクション", - "alias_name_display" : "制服コレクション", - "hash" : "ef5260d9e7b2be838b8fe51c98a17dea", - "id" : "2309102", - "profile" : { - "bust" : "85", - "height" : "161", - "hip" : "84", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "プリマ・ガール", - "alias_name_display" : "プリマ・ガール", - "hash" : "65aa48277443a7498e3181e6ded0f4bd", - "id" : "2212501", - "profile" : { - "bust" : "85", - "height" : "161", - "hip" : "84", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "プリマ・ガール", - "alias_name_display" : "プリマ・ガール", - "hash" : "a5794d6e6f993dad76d41c59f7564169", - "id" : "2312502", - "profile" : { - "bust" : "85", - "height" : "161", - "hip" : "84", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "夏祭り", - "alias_name_display" : "夏祭り", - "event" : [ { - "event_id" : 714, - "event_name" : "夏祭りDEドリームLIVEフェスティバル" - } ], - "hash" : "b87250559476bd36e7a4edd44b2eb222", - "id" : "2321702", - "profile" : { - "bust" : "85", - "height" : "161", - "hip" : "84", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "努力のメソッド", - "alias_name_display" : "努力のメソッド", - "hash" : "0ad081c3907847d493a7affac9507fe7", - "id" : "2226601", - "profile" : { - "bust" : "85", - "height" : "161", - "hip" : "84", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "努力のメソッド", - "alias_name_display" : "努力のメソッド", - "hash" : "49cc7476bd18bdeef7db013a4800066e", - "id" : "2326602", - "profile" : { - "bust" : "85", - "height" : "161", - "hip" : "84", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "迎春神楽", - "alias_name_display" : "迎春神楽", - "hash" : "89abb5eb2a87fa7139ae8a92c5d53de3", - "id" : "2229801", - "profile" : { - "bust" : "85", - "height" : "161", - "hip" : "84", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "迎春神楽", - "alias_name_display" : "迎春神楽", - "hash" : "b94589aec610282ec14866f5256f6d69", - "id" : "2329802", - "profile" : { - "bust" : "85", - "height" : "161", - "hip" : "84", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ベーカリーI.C", - "alias_name_display" : "ベーカリーI.C", - "hash" : "acfd757cd1d818e44a257bab42cbc34f", - "id" : "2332102", - "profile" : { - "bust" : "85", - "height" : "161", - "hip" : "84", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ピュアハート", - "alias_name_display" : "ピュアハート", - "event" : [ { - "event_id" : 103, - "event_name" : "バレンタインパーティー" - } ], - "hash" : "9bd2a6f5cc1748d651d0e2ecf34b0b37", - "id" : "2401001", - "profile" : { - "bust" : "85", - "height" : "161", - "hip" : "84", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ピュアハート", - "alias_name_display" : "ピュアハート", - "event" : [ { - "event_id" : 103, - "event_name" : "バレンタインパーティー" - } ], - "hash" : "381325f3180288e9b294f4fe6895063c", - "id" : "2501002", - "profile" : { - "bust" : "85", - "height" : "161", - "hip" : "84", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ドキドキ☆チャレンジ", - "alias_name_display" : "ドキドキ☆チャレンジ", - "hash" : "99fbb3e80d42f6a456d1f1dbbfbe2ad9", - "id" : "2412601", - "profile" : { - "bust" : "85", - "height" : "161", - "hip" : "84", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ドキドキ☆チャレンジ", - "alias_name_display" : "ドキドキ☆チャレンジ", - "hash" : "cf78a1a8fa2662da9903e87ff7fc35cd", - "id" : "2512602", - "profile" : { - "bust" : "85", - "height" : "161", - "hip" : "84", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "クロネコチアー", - "alias_name_display" : "クロネコチアー", - "event" : [ { - "event_id" : 1106, - "event_name" : "プロダクション対抗トークバトルショー ハロウィンSP" - } ], - "hash" : "9165c2689a8b2dc898abea7c588bf4fb", - "id" : "2418601", - "profile" : { - "bust" : "85", - "height" : "161", - "hip" : "84", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "クロネコチアー", - "alias_name_display" : "クロネコチアー", - "event" : [ { - "event_id" : 1106, - "event_name" : "プロダクション対抗トークバトルショー ハロウィンSP" - } ], - "hash" : "4c7ad97f4e839bcc5a54b54bd69b731b", - "id" : "2518602", - "profile" : { - "bust" : "85", - "height" : "161", - "hip" : "84", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ロワイヤル・スクエア", - "alias_name_display" : "ロワイヤル・スクエア", - "event" : [ { - "event_id" : 809, - "event_name" : "第9回アイドルLIVEロワイヤル" - } ], - "hash" : "f7cf30adf9a3efe1c1994729fb9e5d2a", - "id" : "2420601", - "profile" : { - "bust" : "85", - "height" : "161", - "hip" : "84", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ロワイヤル・スクエア", - "alias_name_display" : "ロワイヤル・スクエア", - "event" : [ { - "event_id" : 809, - "event_name" : "第9回アイドルLIVEロワイヤル" - } ], - "hash" : "582c4b7e8369b6f5cb65c7a949a59d98", - "id" : "2520602", - "profile" : { - "bust" : "85", - "height" : "161", - "hip" : "84", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "クーリッシュラブリー", - "alias_name_display" : "クーリッシュラブリー", - "event" : [ { - "event_id" : 1404, - "event_name" : "第4回ぷちデレラコレクション" - } ], - "hash" : "735912142ede0bd3c2379e81506ebf51", - "id" : "2428201", - "profile" : { - "bust" : "85", - "height" : "161", - "hip" : "84", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "クーリッシュラブリー", - "alias_name_display" : "クーリッシュラブリー", - "event" : [ { - "event_id" : 1404, - "event_name" : "第4回ぷちデレラコレクション" - } ], - "hash" : "64be02ca19b0210c83956d56b53baa98", - "id" : "2528202", - "profile" : { - "bust" : "85", - "height" : "161", - "hip" : "84", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "慕われベーカー", - "alias_name_display" : "慕われベーカー", - "event" : [ { - "event_id" : 1216, - "event_name" : "先生と一緒に♪目指せおいしいパン作り アイドルチャレンジ" - } ], - "hash" : "de632bfbfe98d8ca7dff701c187659b9", - "id" : "2440001", - "profile" : { - "bust" : "85", - "height" : "161", - "hip" : "84", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "慕われベーカー", - "alias_name_display" : "慕われベーカー", - "event" : [ { - "event_id" : 1216, - "event_name" : "先生と一緒に♪目指せおいしいパン作り アイドルチャレンジ" - } ], - "hash" : "6e75966bbcafc0541424c8d8f7b4fcd6", - "id" : "2540002", - "profile" : { - "bust" : "85", - "height" : "161", - "hip" : "84", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ほほえみベーカー", - "alias_name_display" : "ほほえみベーカー", - "hash" : "b5e8d9784a291c73d1d7dedf4596a79c", - "id" : "2440101", - "profile" : { - "bust" : "85", - "height" : "161", - "hip" : "84", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ほほえみベーカー", - "alias_name_display" : "ほほえみベーカー", - "hash" : "2c7b6d96a1fb1e0ca98ca465fa67c848", - "id" : "2540102", - "profile" : { - "bust" : "85", - "height" : "161", - "hip" : "84", - "waist" : "57", - "weight" : "46" - } - } ], - "idol_id" : 104, - "idol_name" : "綾瀬穂乃香", - "idol_name_display" : "綾瀬穂乃香", - "units" : [ { - "id" : "163", - "name" : "フリルドスクエア" - } ] -}, { - "aliases" : [ { - "hash" : "ea5f708af5590fa7d0ae03018ef7c4fd", - "id" : "2201301", - "profile" : { - "bust" : "63", - "height" : "137", - "hip" : "65", - "waist" : "47", - "weight" : "30" - } - }, { - "hash" : "3722850cc72d17384b34480a8430cac6", - "id" : "2301302", - "profile" : { - "bust" : "63", - "height" : "137", - "hip" : "65", - "waist" : "47", - "weight" : "30" - } - }, { - "alias_name" : "セレクトメイド", - "alias_name_display" : "セレクトメイド", - "hash" : "3f951d9ae741667ca9f12e59abda200d", - "id" : "2214601", - "profile" : { - "bust" : "63", - "height" : "137", - "hip" : "65", - "waist" : "47", - "weight" : "30" - } - }, { - "alias_name" : "セレクトメイド", - "alias_name_display" : "セレクトメイド", - "hash" : "ac248d004a5dd805137fdc498e3e7727", - "id" : "2314602", - "profile" : { - "bust" : "63", - "height" : "137", - "hip" : "65", - "waist" : "47", - "weight" : "30" - } - }, { - "alias_name" : "T.B.チアーズ", - "alias_name_display" : "T.B.チアーズ", - "event" : [ { - "event_id" : 1105, - "event_name" : "第5回プロダクション対抗トークバトルショー" - } ], - "hash" : "7733b9b3450c4ec115f67d4f00c15a76", - "id" : "2217801", - "profile" : { - "bust" : "63", - "height" : "137", - "hip" : "65", - "waist" : "47", - "weight" : "30" - } - }, { - "alias_name" : "T.B.チアーズ", - "alias_name_display" : "T.B.チアーズ", - "event" : [ { - "event_id" : 1105, - "event_name" : "第5回プロダクション対抗トークバトルショー" - } ], - "hash" : "57b35cdd62ee9d80eac805a4d238e032", - "id" : "2317802", - "profile" : { - "bust" : "63", - "height" : "137", - "hip" : "65", - "waist" : "47", - "weight" : "30" - } - }, { - "alias_name" : "新春ガール", - "alias_name_display" : "新春ガール", - "hash" : "c65bf606e70d6198e249127bd4bfeceb", - "id" : "2224501", - "profile" : { - "bust" : "63", - "height" : "137", - "hip" : "65", - "waist" : "47", - "weight" : "30" - } - }, { - "alias_name" : "新春ガール", - "alias_name_display" : "新春ガール", - "hash" : "0be443f0e1a964e0a77940d87b72089f", - "id" : "2324502", - "profile" : { - "bust" : "63", - "height" : "137", - "hip" : "65", - "waist" : "47", - "weight" : "30" - } - }, { - "alias_name" : "プチ・マドモアゼル", - "alias_name_display" : "プチ・マドモアゼル", - "event" : [ { - "event_id" : "003", - "event_name" : "第3回プロダクションマッチフェスティバル" - } ], - "hash" : "b765e76345cd9a4fa8b071a3e5764e96", - "id" : "2402401", - "profile" : { - "bust" : "63", - "height" : "137", - "hip" : "65", - "waist" : "47", - "weight" : "30" - } - }, { - "alias_name" : "プチ・マドモアゼル", - "alias_name_display" : "プチ・マドモアゼル", - "event" : [ { - "event_id" : "003", - "event_name" : "第3回プロダクションマッチフェスティバル" - } ], - "hash" : "d1867fe96fed3771cbbf73cc35af08ea", - "id" : "2502402", - "profile" : { - "bust" : "63", - "height" : "137", - "hip" : "65", - "waist" : "47", - "weight" : "30" - } - }, { - "alias_name" : "クリスマスドール", - "alias_name_display" : "クリスマスドール", - "hash" : "f3393d71e257bdf3a2e4ca51772ef2be", - "id" : "2404301", - "profile" : { - "bust" : "63", - "height" : "137", - "hip" : "65", - "waist" : "47", - "weight" : "30" - } - }, { - "alias_name" : "クリスマスドール", - "alias_name_display" : "クリスマスドール", - "hash" : "b41f85ebc71b158b26cbddfde963c525", - "id" : "2504302", - "profile" : { - "bust" : "63", - "height" : "137", - "hip" : "65", - "waist" : "47", - "weight" : "30" - } - }, { - "alias_name" : "夏宵のお嬢様", - "alias_name_display" : "夏宵のお嬢様", - "event" : [ { - "event_id" : 408, - "event_name" : "アイドルプロデュース 夜空に咲く花火編" - } ], - "hash" : "1b14103e8c942735e3f68012c1bceee4", - "id" : "2408001", - "profile" : { - "bust" : "63", - "height" : "137", - "hip" : "65", - "waist" : "47", - "weight" : "30" - } - }, { - "alias_name" : "夏宵のお嬢様", - "alias_name_display" : "夏宵のお嬢様", - "event" : [ { - "event_id" : 408, - "event_name" : "アイドルプロデュース 夜空に咲く花火編" - } ], - "hash" : "1ebec92842779992268a13bd4a21bdb2", - "id" : "2508002", - "profile" : { - "bust" : "63", - "height" : "137", - "hip" : "65", - "waist" : "47", - "weight" : "30" - } - }, { - "alias_name" : "マーチング☆メロディー", - "alias_name_display" : "マーチング☆メロディー", - "hash" : "4d4711956ba85d9c8fcbb4b0fe2f9fe8", - "id" : "2422701", - "profile" : { - "bust" : "63", - "height" : "137", - "hip" : "65", - "waist" : "47", - "weight" : "30" - } - }, { - "alias_name" : "マーチング☆メロディー", - "alias_name_display" : "マーチング☆メロディー", - "hash" : "0f9faea779c6b958772df3beae2c0969", - "id" : "2522702", - "profile" : { - "bust" : "63", - "height" : "137", - "hip" : "65", - "waist" : "47", - "weight" : "30" - } - }, { - "alias_name" : "小さなドキドキ", - "alias_name_display" : "小さなドキドキ", - "event" : [ { - "event_id" : 1403, - "event_name" : "第3回ぷちデレラコレクション" - } ], - "hash" : "b2a4e884c5dea362551b34d22975a824", - "id" : "2426201", - "profile" : { - "bust" : "63", - "height" : "137", - "hip" : "65", - "waist" : "47", - "weight" : "30" - } - }, { - "alias_name" : "小さなドキドキ", - "alias_name_display" : "小さなドキドキ", - "event" : [ { - "event_id" : 1403, - "event_name" : "第3回ぷちデレラコレクション" - } ], - "hash" : "368396982ecee85ed01ac8aae39086b1", - "id" : "2526202", - "profile" : { - "bust" : "63", - "height" : "137", - "hip" : "65", - "waist" : "47", - "weight" : "30" - } - }, { - "alias_name" : "紺青のゆらめき", - "alias_name_display" : "紺青のゆらめき", - "hash" : "a72b17701c91600e7de7ad03eaacb779", - "id" : "2432301", - "profile" : { - "bust" : "63", - "height" : "137", - "hip" : "65", - "waist" : "47", - "weight" : "30" - } - }, { - "alias_name" : "紺青のゆらめき", - "alias_name_display" : "紺青のゆらめき", - "hash" : "cbbfe22229dab51ecdb033d78869a359", - "id" : "2532302", - "profile" : { - "bust" : "63", - "height" : "137", - "hip" : "65", - "waist" : "47", - "weight" : "30" - } - }, { - "alias_name" : "ドーリー・ロワイヤル", - "alias_name_display" : "ドーリー・ロワイヤル", - "event" : [ { - "event_id" : 821, - "event_name" : "第21回アイドルLIVEロワイヤル" - } ], - "hash" : "bac71801e52aed85607e0ac568eedb15", - "id" : "2437301", - "profile" : { - "bust" : "63", - "height" : "137", - "hip" : "65", - "waist" : "47", - "weight" : "30" - } - }, { - "alias_name" : "ドーリー・ロワイヤル", - "alias_name_display" : "ドーリー・ロワイヤル", - "event" : [ { - "event_id" : 821, - "event_name" : "第21回アイドルLIVEロワイヤル" - } ], - "hash" : "674f4cb361e967bca336653539ed6613", - "id" : "2537302", - "profile" : { - "bust" : "63", - "height" : "137", - "hip" : "65", - "waist" : "47", - "weight" : "30" - } - } ], - "idol_id" : 105, - "idol_name" : "佐城雪美", - "idol_name_display" : "佐城雪美", - "units" : [ { - "id" : "211", - "name" : "ワンダー・フル" - }, { - "id" : "214", - "name" : "L.M.B.G" - } ] -}, { - "aliases" : [ { - "hash" : "6266f471377bc1698b58ddd4638ead09", - "id" : "2201401", - "profile" : { - "bust" : "72", - "height" : "162", - "hip" : "78", - "waist" : "55", - "weight" : "41" - } - }, { - "hash" : "9c713eb6f7e6bab427ce008655b9e9a9", - "id" : "2301402", - "profile" : { - "bust" : "72", - "height" : "162", - "hip" : "78", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "制服ブルー", - "alias_name_display" : "制服ブルー", - "hash" : "d01c7b35bb21f8e63a8410fc4c644ce4", - "id" : "2202601", - "profile" : { - "bust" : "72", - "height" : "162", - "hip" : "78", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "制服ベージュ", - "alias_name_display" : "制服ベージュ", - "hash" : "7b80fbc184731895e18d4d04b69d4af5", - "id" : "2202602", - "profile" : { - "bust" : "72", - "height" : "162", - "hip" : "78", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "制服レッド", - "alias_name_display" : "制服レッド", - "hash" : "d7732a8d0a3fdfc3060ca2897187f188", - "id" : "2202603", - "profile" : { - "bust" : "72", - "height" : "162", - "hip" : "78", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "制服グリーン", - "alias_name_display" : "制服グリーン", - "hash" : "3d78511d3da1db3fb51a938c8dd968d1", - "id" : "2202604", - "profile" : { - "bust" : "72", - "height" : "162", - "hip" : "78", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ピンクダイヤモンド765", - "alias_name_display" : "ピンクダイヤモンド765", - "hash" : "306b770ebb8f0cf8f990c4d7e3720910", - "id" : "2302605", - "profile" : { - "bust" : "72", - "height" : "162", - "hip" : "78", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "パウダースノーホワイティ", - "alias_name_display" : "パウダースノーホワイティ", - "hash" : "c486d656f7e2b62acee082e7311ab881", - "id" : "2302606", - "profile" : { - "bust" : "72", - "height" : "162", - "hip" : "78", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ファイアオパール76ct", - "alias_name_display" : "ファイアオパール76ct", - "hash" : "91f73d36b69535cd4578ec74637c6059", - "id" : "2302607", - "profile" : { - "bust" : "72", - "height" : "162", - "hip" : "78", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "レザードクィーン", - "alias_name_display" : "レザードクィーン", - "hash" : "c8f06e16aaa220f282b912a6b05ff4d7", - "id" : "2302608", - "profile" : { - "bust" : "72", - "height" : "162", - "hip" : "78", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ハイネスルージュ", - "alias_name_display" : "ハイネスルージュ", - "hash" : "f68f6ba5aaa28606a5d9290ea4e7db4d", - "id" : "2302609", - "profile" : { - "bust" : "72", - "height" : "162", - "hip" : "78", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "孤高の歌姫", - "alias_name_display" : "孤高の歌姫", - "hash" : "0d39c65b94d1a11cae537f6886dbb97a", - "id" : "2400101", - "profile" : { - "bust" : "72", - "height" : "162", - "hip" : "78", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "孤高の歌姫", - "alias_name_display" : "孤高の歌姫", - "hash" : "d2b23ca96d8ec3e6e9d06a33fc2ab472", - "id" : "2500102", - "profile" : { - "bust" : "72", - "height" : "162", - "hip" : "78", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "瑠璃の歌姫", - "alias_name_display" : "瑠璃の歌姫", - "hash" : "5b51c5da302fb24a3a7af06ba2df4b1e", - "id" : "2400910", - "profile" : { - "bust" : "72", - "height" : "162", - "hip" : "78", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "瑠璃の歌姫", - "alias_name_display" : "瑠璃の歌姫", - "hash" : "333569a4bc55998dc01ad3a8a2f91cc3", - "id" : "2500911", - "profile" : { - "bust" : "72", - "height" : "162", - "hip" : "78", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "スクーリッシュガール", - "alias_name_display" : "スクーリッシュガール", - "hash" : "6825521e806675ddeb47bc1fce922ed7", - "id" : "2501802", - "profile" : { - "bust" : "72", - "height" : "162", - "hip" : "78", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "アーリーサマーバカンス", - "alias_name_display" : "アーリーサマーバカンス", - "hash" : "dfe34529a4dc472ca44c6ad923e44b5b", - "id" : "2507502", - "profile" : { - "bust" : "72", - "height" : "162", - "hip" : "78", - "waist" : "55", - "weight" : "41" - } - } ], - "idol_id" : 106, - "idol_name" : "如月千早", - "idol_name_display" : "如月千早" -}, { - "aliases" : [ { - "hash" : "70716895c47fcf16e1441bb913c05bb8", - "id" : "2201501", - "profile" : { - "bust" : "91", - "height" : "168", - "hip" : "86", - "waist" : "59", - "weight" : "48" - } - }, { - "hash" : "17994e5072cc7b760383dda8e199ada2", - "id" : "2301502", - "profile" : { - "bust" : "91", - "height" : "168", - "hip" : "86", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "皆のお姉さん", - "alias_name_display" : "皆のお姉さん", - "hash" : "84b97983ec5badf26de49cc9f4a9a14f", - "id" : "2400201", - "profile" : { - "bust" : "91", - "height" : "168", - "hip" : "86", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "皆のお姉さん", - "alias_name_display" : "皆のお姉さん", - "hash" : "e2580dce271a51554eb13c46c36d2adc", - "id" : "2500202", - "profile" : { - "bust" : "91", - "height" : "168", - "hip" : "86", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "エステル衣装", - "alias_name_display" : "エステル衣装", - "hash" : "035141c2768cddbab1153b2dcbcb3013", - "id" : "2500602", - "profile" : { - "bust" : "91", - "height" : "168", - "hip" : "86", - "waist" : "59", - "weight" : "48" - } - } ], - "idol_id" : 107, - "idol_name" : "三浦あずさ", - "idol_name_display" : "三浦あずさ" -}, { - "aliases" : [ { - "hash" : "30a17a9dccef3c222df1abb5ffcd7a01", - "id" : "2201601", - "profile" : { - "bust" : "85", - "height" : "156", - "hip" : "85", - "waist" : "57", - "weight" : "43" - } - }, { - "hash" : "945ac71535e44e4a84b49f9ff08ae9df", - "id" : "2301602", - "profile" : { - "bust" : "85", - "height" : "156", - "hip" : "85", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "プロデューサーアイドル", - "alias_name_display" : "プロデューサーアイドル", - "hash" : "6561a1f85b71bd4a9d8777ce46ea3cb4", - "id" : "2402301", - "profile" : { - "bust" : "85", - "height" : "156", - "hip" : "85", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "プロデューサーアイドル", - "alias_name_display" : "プロデューサーアイドル", - "hash" : "1b3a397157d4c390983480f0b8ebb2a1", - "id" : "2502302", - "profile" : { - "bust" : "85", - "height" : "156", - "hip" : "85", - "waist" : "57", - "weight" : "43" - } - } ], - "idol_id" : 108, - "idol_name" : "秋月律子", - "idol_name_display" : "秋月律子" -}, { - "aliases" : [ { - "hash" : "ecc6dd0013d9d3d8ae24947d77a78192", - "id" : "2201701", - "profile" : { - "bust" : "90", - "height" : "169", - "hip" : "92", - "waist" : "62", - "weight" : "49" - } - }, { - "hash" : "ef24b54f844eae492aa0c8b4c7b2e0b1", - "id" : "2301702", - "profile" : { - "bust" : "90", - "height" : "169", - "hip" : "92", - "waist" : "62", - "weight" : "49" - } - }, { - "alias_name" : "デビュタントピンク", - "alias_name_display" : "デビュタントピンク", - "hash" : "6969734196b2f2b3875802f7057d9a46", - "id" : "2204701", - "profile" : { - "bust" : "90", - "height" : "169", - "hip" : "92", - "waist" : "62", - "weight" : "49" - } - }, { - "alias_name" : "デビュタントブルー", - "alias_name_display" : "デビュタントブルー", - "hash" : "a2ce78a81c9ec000846083b74c110f15", - "id" : "2204702", - "profile" : { - "bust" : "90", - "height" : "169", - "hip" : "92", - "waist" : "62", - "weight" : "49" - } - }, { - "alias_name" : "デビュタントブラック", - "alias_name_display" : "デビュタントブラック", - "hash" : "690c223b272695a6d34dc486d2afde95", - "id" : "2204703", - "profile" : { - "bust" : "90", - "height" : "169", - "hip" : "92", - "waist" : "62", - "weight" : "49" - } - }, { - "alias_name" : "デビュタントホワイト", - "alias_name_display" : "デビュタントホワイト", - "hash" : "50fa6a567d514c9179aa866da882f542", - "id" : "2204704", - "profile" : { - "bust" : "90", - "height" : "169", - "hip" : "92", - "waist" : "62", - "weight" : "49" - } - }, { - "alias_name" : "ピンクダイヤモンド765", - "alias_name_display" : "ピンクダイヤモンド765", - "hash" : "87c822ee1ff22341326235a223f61a3d", - "id" : "2304705", - "profile" : { - "bust" : "90", - "height" : "169", - "hip" : "92", - "waist" : "62", - "weight" : "49" - } - }, { - "alias_name" : "スカイパズラー", - "alias_name_display" : "スカイパズラー", - "hash" : "6e808ea3c7b1ba70625f267cabaa8008", - "id" : "2304706", - "profile" : { - "bust" : "90", - "height" : "169", - "hip" : "92", - "waist" : "62", - "weight" : "49" - } - }, { - "alias_name" : "メイデンインブラック", - "alias_name_display" : "メイデンインブラック", - "hash" : "84b5d07825dcc54fcfb3fdb71c1ee3e6", - "id" : "2304707", - "profile" : { - "bust" : "90", - "height" : "169", - "hip" : "92", - "waist" : "62", - "weight" : "49" - } - }, { - "alias_name" : "スカーレットスプライト", - "alias_name_display" : "スカーレットスプライト", - "hash" : "13b52bd8c6be2d03f0a1125160c38620", - "id" : "2304708", - "profile" : { - "bust" : "90", - "height" : "169", - "hip" : "92", - "waist" : "62", - "weight" : "49" - } - }, { - "alias_name" : "ギルデッドマドモアゼル", - "alias_name_display" : "ギルデッドマドモアゼル", - "hash" : "7e3688a45dcde6ac996e300c046e8df6", - "id" : "2304709", - "profile" : { - "bust" : "90", - "height" : "169", - "hip" : "92", - "waist" : "62", - "weight" : "49" - } - }, { - "alias_name" : "銀色の王女", - "alias_name_display" : "銀色の王女", - "hash" : "ce4bd80928c636bf1dc75260f561f97a", - "id" : "2400801", - "profile" : { - "bust" : "90", - "height" : "169", - "hip" : "92", - "waist" : "62", - "weight" : "49" - } - }, { - "alias_name" : "銀色の王女", - "alias_name_display" : "銀色の王女", - "hash" : "07e8a45d27c4a45e2c271aeaa5b38c91", - "id" : "2500802", - "profile" : { - "bust" : "90", - "height" : "169", - "hip" : "92", - "waist" : "62", - "weight" : "49" - } - }, { - "alias_name" : "鏡花水月", - "alias_name_display" : "鏡花水月", - "hash" : "828a4a1ec46c8d6deb0eba32090ba9cb", - "id" : "2402210", - "profile" : { - "bust" : "90", - "height" : "169", - "hip" : "92", - "waist" : "62", - "weight" : "49" - } - }, { - "alias_name" : "鏡花水月", - "alias_name_display" : "鏡花水月", - "hash" : "6957fb77f5d5d67695e7f50dbfa36ab0", - "id" : "2502211", - "profile" : { - "bust" : "90", - "height" : "169", - "hip" : "92", - "waist" : "62", - "weight" : "49" - } - }, { - "alias_name" : "1stアニバーサリー", - "alias_name_display" : "1stアニバーサリー", - "hash" : "166fb623aae4d975387c3fbc8770a099", - "id" : "2504102", - "profile" : { - "bust" : "90", - "height" : "169", - "hip" : "92", - "waist" : "62", - "weight" : "49" - } - } ], - "idol_id" : 109, - "idol_name" : "四条貴音", - "idol_name_display" : "四条貴音" -}, { - "aliases" : [ { - "hash" : "0279e0bfe3a06fed6d20b88fea031a7a", - "id" : "2201801", - "profile" : { - "bust" : "93", - "height" : "171", - "hip" : "88", - "waist" : "58", - "weight" : "49" - } - }, { - "hash" : "7cd1a870c72ca2735908ddd66f81810b", - "id" : "2301802", - "profile" : { - "bust" : "93", - "height" : "171", - "hip" : "88", - "waist" : "58", - "weight" : "49" - } - }, { - "alias_name" : "ハロウィンナイト", - "alias_name_display" : "ハロウィンナイト", - "hash" : "8879f0329b71adf6b1abf6fb9d6a5bb6", - "id" : "2212301", - "profile" : { - "bust" : "93", - "height" : "171", - "hip" : "88", - "waist" : "58", - "weight" : "49" - } - }, { - "alias_name" : "ハロウィンナイト", - "alias_name_display" : "ハロウィンナイト", - "hash" : "e81e141fc2930933396e6f82f3752454", - "id" : "2312302", - "profile" : { - "bust" : "93", - "height" : "171", - "hip" : "88", - "waist" : "58", - "weight" : "49" - } - }, { - "alias_name" : "美の商人", - "alias_name_display" : "美の商人", - "hash" : "fb122260ba37bf6f6f32f4f022ed1057", - "id" : "2219301", - "profile" : { - "bust" : "93", - "height" : "171", - "hip" : "88", - "waist" : "58", - "weight" : "49" - } - }, { - "alias_name" : "美の商人", - "alias_name_display" : "美の商人", - "hash" : "546e3e4addf32b2699b404b4a31986e7", - "id" : "2319302", - "profile" : { - "bust" : "93", - "height" : "171", - "hip" : "88", - "waist" : "58", - "weight" : "49" - } - }, { - "alias_name" : "サポートレディ", - "alias_name_display" : "サポートレディ", - "event" : [ { - "event_id" : 523, - "event_name" : "鋼鉄公演 きらりんロボ -襲来!コスメティア帝国-" - } ], - "hash" : "11af6a1079aed45abb135d98fe6f2845", - "id" : "2324702", - "profile" : { - "bust" : "93", - "height" : "171", - "hip" : "88", - "waist" : "58", - "weight" : "49" - } - }, { - "alias_name" : "ロワイヤルスタイルND", - "alias_name_display" : "ロワイヤルスタイルND", - "event" : [ { - "event_id" : 819, - "event_name" : "アイドルLIVEロワイヤル お月見SP" - } ], - "hash" : "365839f8844308b4839461dd4a306d93", - "id" : "2228701", - "profile" : { - "bust" : "93", - "height" : "171", - "hip" : "88", - "waist" : "58", - "weight" : "49" - } - }, { - "alias_name" : "ロワイヤルスタイルND", - "alias_name_display" : "ロワイヤルスタイルND", - "event" : [ { - "event_id" : 819, - "event_name" : "アイドルLIVEロワイヤル お月見SP" - } ], - "hash" : "87d0eaea9cf36828555acb4e6d2bc8dd", - "id" : "2328702", - "profile" : { - "bust" : "93", - "height" : "171", - "hip" : "88", - "waist" : "58", - "weight" : "49" - } - }, { - "alias_name" : "意外な一面", - "alias_name_display" : "意外な一面", - "event" : [ { - "event_id" : 707, - "event_name" : "第7回ドリームLIVEフェスティバル" - } ], - "hash" : "6ec5a36a72a58e3a52a59bfd4c82c30a", - "id" : "2415501", - "profile" : { - "bust" : "93", - "height" : "171", - "hip" : "88", - "waist" : "58", - "weight" : "49" - } - }, { - "alias_name" : "意外な一面", - "alias_name_display" : "意外な一面", - "event" : [ { - "event_id" : 707, - "event_name" : "第7回ドリームLIVEフェスティバル" - } ], - "hash" : "8866ceff2565f6f6d52ad2a6e7a3fa24", - "id" : "2515502", - "profile" : { - "bust" : "93", - "height" : "171", - "hip" : "88", - "waist" : "58", - "weight" : "49" - } - }, { - "alias_name" : "アトラクティブレディ", - "alias_name_display" : "アトラクティブレディ", - "event" : [ { - "event_id" : 713, - "event_name" : "第13回ドリームLIVEフェスティバル" - } ], - "hash" : "1b18dca284fedc5a3a8f048920f28a1c", - "id" : "2424301", - "profile" : { - "bust" : "93", - "height" : "171", - "hip" : "88", - "waist" : "58", - "weight" : "49" - } - }, { - "alias_name" : "アトラクティブレディ", - "alias_name_display" : "アトラクティブレディ", - "event" : [ { - "event_id" : 713, - "event_name" : "第13回ドリームLIVEフェスティバル" - } ], - "hash" : "084e23921a2680662428a561923bb395", - "id" : "2524302", - "profile" : { - "bust" : "93", - "height" : "171", - "hip" : "88", - "waist" : "58", - "weight" : "49" - } - } ], - "idol_id" : 110, - "idol_name" : "篠原礼", - "idol_name_display" : "篠原礼", - "units" : [ { - "id" : "161", - "name" : "ハロウィンナイト" - }, { - "id" : "206", - "name" : "セクシーボンデージ" - }, { - "id" : "210", - "name" : "ロワイヤルスタイルND" - } ] -}, { - "aliases" : [ { - "hash" : "b73e3bd3f986371ca390c06539f30f2e", - "id" : "2202101", - "profile" : { - "bust" : "81", - "height" : "168", - "hip" : "86", - "waist" : "60", - "weight" : "49" - } - }, { - "hash" : "b1cc240b628c799f43e40e3187fe854d", - "id" : "2302102", - "profile" : { - "bust" : "82", - "height" : "168", - "hip" : "86", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "オフスタイルネイビー", - "alias_name_display" : "オフスタイルネイビー", - "event" : [ { - "event_id" : 105, - "event_name" : "きらめくブライダルショー" - } ], - "hash" : "e00193ce7e4fb576c82d218d2b18b733", - "id" : "2204201", - "profile" : { - "bust" : "82", - "height" : "168", - "hip" : "86", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "オフスタイルグリーン", - "alias_name_display" : "オフスタイルグリーン", - "event" : [ { - "event_id" : 105, - "event_name" : "きらめくブライダルショー" - } ], - "hash" : "2382d33c9aed1fd427050e60d36da85a", - "id" : "2204202", - "profile" : { - "bust" : "82", - "height" : "168", - "hip" : "86", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "オフスタイルブラウン", - "alias_name_display" : "オフスタイルブラウン", - "event" : [ { - "event_id" : 105, - "event_name" : "きらめくブライダルショー" - } ], - "hash" : "c22a01b2e037f0c682b49529075995cb", - "id" : "2204203", - "profile" : { - "bust" : "82", - "height" : "168", - "hip" : "86", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "オフスタイルローズグレイ", - "alias_name_display" : "オフスタイルローズグレイ", - "event" : [ { - "event_id" : 105, - "event_name" : "きらめくブライダルショー" - } ], - "hash" : "36981cf43b6efc635d83a00cf1907580", - "id" : "2204204", - "profile" : { - "bust" : "82", - "height" : "168", - "hip" : "86", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "ドレスアップパープル", - "alias_name_display" : "ドレスアップパープル", - "event" : [ { - "event_id" : 105, - "event_name" : "きらめくブライダルショー" - } ], - "hash" : "314c5bfcaeecf15de958fd77d49740f2", - "id" : "2304205", - "profile" : { - "bust" : "82", - "height" : "168", - "hip" : "86", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "ドレスアップレッド", - "alias_name_display" : "ドレスアップレッド", - "event" : [ { - "event_id" : 105, - "event_name" : "きらめくブライダルショー" - } ], - "hash" : "5f8a3f98486604275267c877b9905349", - "id" : "2304206", - "profile" : { - "bust" : "82", - "height" : "168", - "hip" : "86", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "ドレスアップホワイト", - "alias_name_display" : "ドレスアップホワイト", - "event" : [ { - "event_id" : 105, - "event_name" : "きらめくブライダルショー" - } ], - "hash" : "a313a6d6050a1e06b6087b272789f86a", - "id" : "2304207", - "profile" : { - "bust" : "82", - "height" : "168", - "hip" : "86", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "ドレスアップボルドー", - "alias_name_display" : "ドレスアップボルドー", - "event" : [ { - "event_id" : 105, - "event_name" : "きらめくブライダルショー" - } ], - "hash" : "b15320c5e2f4786b0ff458609a6d2635", - "id" : "2304208", - "profile" : { - "bust" : "82", - "height" : "168", - "hip" : "86", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "ドレスアップゴールド", - "alias_name_display" : "ドレスアップゴールド", - "event" : [ { - "event_id" : 105, - "event_name" : "きらめくブライダルショー" - } ], - "hash" : "fcaecc5aba2427916914caa943a2e751", - "id" : "2304209", - "profile" : { - "bust" : "82", - "height" : "168", - "hip" : "86", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "静かな努力家", - "alias_name_display" : "静かな努力家", - "hash" : "cd9c8866ec5bbc25600c8509b7e23ee1", - "id" : "2208801", - "profile" : { - "bust" : "82", - "height" : "168", - "hip" : "86", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "静かな努力家", - "alias_name_display" : "静かな努力家", - "hash" : "854aecfaa588047988fcbd1d58f24b39", - "id" : "2308802", - "profile" : { - "bust" : "82", - "height" : "168", - "hip" : "86", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "ビーチパラダイス", - "alias_name_display" : "ビーチパラダイス", - "hash" : "7f2b355d90da1b40b701278e3685134b", - "id" : "2211301", - "profile" : { - "bust" : "82", - "height" : "168", - "hip" : "86", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "ビーチパラダイス", - "alias_name_display" : "ビーチパラダイス", - "hash" : "269d6c6828618794868c7036ec3476f8", - "id" : "2311302", - "profile" : { - "bust" : "82", - "height" : "168", - "hip" : "86", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "湯けむり月夜", - "alias_name_display" : "湯けむり月夜", - "hash" : "ff373239ccc29ac4931e2c645f76f6c9", - "id" : "2215201", - "profile" : { - "bust" : "82", - "height" : "168", - "hip" : "86", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "湯けむり月夜", - "alias_name_display" : "湯けむり月夜", - "hash" : "02cb84e31df0077d2e0ecdb68ba667cb", - "id" : "2315202", - "profile" : { - "bust" : "82", - "height" : "168", - "hip" : "86", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "T.B.キャット", - "alias_name_display" : "T.B.キャット", - "event" : [ { - "event_id" : 1501, - "event_name" : "チーム対抗トークバトルショー" - } ], - "hash" : "8ac440b6a9ec7028274817475b72998c", - "id" : "2220701", - "profile" : { - "bust" : "82", - "height" : "168", - "hip" : "86", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "T.B.キャット", - "alias_name_display" : "T.B.キャット", - "event" : [ { - "event_id" : 1501, - "event_name" : "チーム対抗トークバトルショー" - } ], - "hash" : "e0f1d6dfebca5b8e5d9df02af727c034", - "id" : "2320702", - "profile" : { - "bust" : "82", - "height" : "168", - "hip" : "86", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "デイワークビューティー", - "alias_name_display" : "デイワークビューティー", - "hash" : "5ab4472580be930b8105563d3c6a11ef", - "id" : "2227701", - "profile" : { - "bust" : "82", - "height" : "168", - "hip" : "86", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "デイワークビューティー", - "alias_name_display" : "デイワークビューティー", - "hash" : "38107f446aa746865421aa8269aa0ac4", - "id" : "2327702", - "profile" : { - "bust" : "82", - "height" : "168", - "hip" : "86", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "サーカスパフォーマー", - "alias_name_display" : "サーカスパフォーマー", - "event" : [ { - "event_id" : 1709, - "event_name" : "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" - } ], - "hash" : "bfde9af8b334a1f4a1e1d938ded92205", - "id" : "2230801", - "profile" : { - "bust" : "82", - "height" : "168", - "hip" : "86", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "サーカスパフォーマー", - "alias_name_display" : "サーカスパフォーマー", - "event" : [ { - "event_id" : 1709, - "event_name" : "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" - } ], - "hash" : "bbcde289f3d87a0c962fc15b1a974d97", - "id" : "2330802", - "profile" : { - "bust" : "82", - "height" : "168", - "hip" : "86", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "スマイリーパフォーマー", - "alias_name_display" : "スマイリーパフォーマー", - "event" : [ { - "event_id" : 1709, - "event_name" : "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" - } ], - "hash" : "3172ddc229fc3bb9fac024eb306f9b9c", - "id" : "2230901", - "profile" : { - "bust" : "82", - "height" : "168", - "hip" : "86", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "スマイリーパフォーマー", - "alias_name_display" : "スマイリーパフォーマー", - "event" : [ { - "event_id" : 1709, - "event_name" : "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" - } ], - "hash" : "34b7996576f65254b70545f0354fa9b9", - "id" : "2330902", - "profile" : { - "bust" : "82", - "height" : "168", - "hip" : "86", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "麗しの花嫁", - "alias_name_display" : "麗しの花嫁", - "event" : [ { - "event_id" : 105, - "event_name" : "きらめくブライダルショー" - } ], - "hash" : "71ace62d52bc64c427809bd37d63ab73", - "id" : "2402001", - "profile" : { - "bust" : "82", - "height" : "168", - "hip" : "86", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "麗しの花嫁", - "alias_name_display" : "麗しの花嫁", - "event" : [ { - "event_id" : 105, - "event_name" : "きらめくブライダルショー" - } ], - "hash" : "178e02295da98410b3d89ee67ff59085", - "id" : "2502002", - "profile" : { - "bust" : "82", - "height" : "168", - "hip" : "86", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "ミスティックブルー", - "alias_name_display" : "ミスティックブルー", - "event" : [ { - "event_id" : 802, - "event_name" : "第2回アイドルLIVEロワイヤル" - } ], - "hash" : "9c8cd39caf884771877dd30d6d567a6e", - "id" : "2411201", - "profile" : { - "bust" : "82", - "height" : "168", - "hip" : "86", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "ミスティックブルー", - "alias_name_display" : "ミスティックブルー", - "event" : [ { - "event_id" : 802, - "event_name" : "第2回アイドルLIVEロワイヤル" - } ], - "hash" : "d9bb8ac767435a8c90758e5b78eb982a", - "id" : "2511202", - "profile" : { - "bust" : "82", - "height" : "168", - "hip" : "86", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "貴婦人のたしなみ", - "alias_name_display" : "貴婦人のたしなみ", - "hash" : "8b426648033650a8b6f0ea72f9d48b9e", - "id" : "2417501", - "profile" : { - "bust" : "82", - "height" : "168", - "hip" : "86", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "貴婦人のたしなみ", - "alias_name_display" : "貴婦人のたしなみ", - "hash" : "ad621fe47393a5bcba98b5729077ac4e", - "id" : "2517502", - "profile" : { - "bust" : "82", - "height" : "168", - "hip" : "86", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "ダークネスクイーン", - "alias_name_display" : "ダークネスクイーン", - "event" : [ { - "event_id" : 522, - "event_name" : "魔界公演 幽鬱女王とハロウィンの祝祭" - } ], - "hash" : "975f3cb8d1472238c39f2fff0c7b43aa", - "id" : "2427701", - "profile" : { - "bust" : "82", - "height" : "168", - "hip" : "86", - "waist" : "60", - "weight" : "50" - } - }, { - "alias_name" : "ダークネスクイーン", - "alias_name_display" : "ダークネスクイーン", - "event" : [ { - "event_id" : 522, - "event_name" : "魔界公演 幽鬱女王とハロウィンの祝祭" - } ], - "hash" : "303643dbb839ee0d48bfb7def91c193f", - "id" : "2527702", - "profile" : { - "bust" : "82", - "height" : "168", - "hip" : "86", - "waist" : "60", - "weight" : "50" - } - } ], - "idol_id" : 111, - "idol_name" : "和久井留美", - "idol_name_display" : "和久井留美", - "units" : [ { - "id" : "10", - "name" : "エレガントインモラリスト" - }, { - "id" : "142", - "name" : "バレンタイン反省会" - } ] -}, { - "aliases" : [ { - "hash" : "0f37976821af0722871ecf50938c7ddf", - "id" : "2202201", - "profile" : { - "bust" : "86", - "height" : "166", - "hip" : "85", - "waist" : "60", - "weight" : "43" - } - }, { - "hash" : "7ef2544b02c9736db8d008c4f17b7e5b", - "id" : "2302202", - "profile" : { - "bust" : "86", - "height" : "166", - "hip" : "85", - "waist" : "60", - "weight" : "43" - } - }, { - "alias_name" : "学園祭", - "alias_name_display" : "学園祭", - "event" : [ { - "event_id" : 206, - "event_name" : "アイドルサバイバルin学園祭" - } ], - "hash" : "ac0b2131e6f7eaf2723a2ade75928495", - "id" : "2206001", - "profile" : { - "bust" : "86", - "height" : "166", - "hip" : "85", - "waist" : "60", - "weight" : "43" - } - }, { - "alias_name" : "学園祭", - "alias_name_display" : "学園祭", - "event" : [ { - "event_id" : 206, - "event_name" : "アイドルサバイバルin学園祭" - } ], - "hash" : "1e410552f7955af4fe1b69477d8b43f5", - "id" : "2306002", - "profile" : { - "bust" : "86", - "height" : "166", - "hip" : "85", - "waist" : "60", - "weight" : "43" - } - }, { - "alias_name" : "スペーススタイル", - "alias_name_display" : "スペーススタイル", - "event" : [ { - "event_id" : 508, - "event_name" : "LIVEツアーカーニバルinスペースワールド" - } ], - "hash" : "b20a29ffa2a750c5b4cd9d81b3bbc9e5", - "id" : "2212701", - "profile" : { - "bust" : "86", - "height" : "166", - "hip" : "85", - "waist" : "60", - "weight" : "43" - } - }, { - "alias_name" : "スペーススタイル", - "alias_name_display" : "スペーススタイル", - "event" : [ { - "event_id" : 508, - "event_name" : "LIVEツアーカーニバルinスペースワールド" - } ], - "hash" : "8bcd14c592bd07ef8fd285826b3cc7c9", - "id" : "2312702", - "profile" : { - "bust" : "86", - "height" : "166", - "hip" : "85", - "waist" : "60", - "weight" : "43" - } - }, { - "alias_name" : "ロワイヤルスタイルNP", - "alias_name_display" : "ロワイヤルスタイルNP", - "event" : [ { - "event_id" : 805, - "event_name" : "第5回アイドルLIVEロワイヤル" - } ], - "hash" : "07c40e49cccf9ee5f745371d6765771f", - "id" : "2216401", - "profile" : { - "bust" : "86", - "height" : "166", - "hip" : "85", - "waist" : "60", - "weight" : "43" - } - }, { - "alias_name" : "ロワイヤルスタイルNP", - "alias_name_display" : "ロワイヤルスタイルNP", - "event" : [ { - "event_id" : 805, - "event_name" : "第5回アイドルLIVEロワイヤル" - } ], - "hash" : "e607ec174fa5ea275f7191310a0f77ca", - "id" : "2316402", - "profile" : { - "bust" : "86", - "height" : "166", - "hip" : "85", - "waist" : "60", - "weight" : "43" - } - }, { - "alias_name" : "グラッドチョイス", - "alias_name_display" : "グラッドチョイス", - "hash" : "0434189262b7766edcc7b1491a046d2f", - "id" : "2221201", - "profile" : { - "bust" : "86", - "height" : "166", - "hip" : "85", - "waist" : "60", - "weight" : "43" - } - }, { - "alias_name" : "グラッドチョイス", - "alias_name_display" : "グラッドチョイス", - "hash" : "3fb35c1361dd289f9eefa90cd530b673", - "id" : "2321202", - "profile" : { - "bust" : "86", - "height" : "166", - "hip" : "85", - "waist" : "60", - "weight" : "43" - } - }, { - "alias_name" : "オータムコレクション", - "alias_name_display" : "オータムコレクション", - "hash" : "3dc82db81712eb3b82c990cba0a79445", - "id" : "2223601", - "profile" : { - "bust" : "86", - "height" : "166", - "hip" : "85", - "waist" : "60", - "weight" : "43" - } - }, { - "alias_name" : "オータムコレクション", - "alias_name_display" : "オータムコレクション", - "hash" : "af93b43c6c0f650d536f3f54a4a9fcf3", - "id" : "2323602", - "profile" : { - "bust" : "86", - "height" : "166", - "hip" : "85", - "waist" : "60", - "weight" : "43" - } - }, { - "alias_name" : "ニンジュツI.C", - "alias_name_display" : "ニンジュツI.C", - "event" : [ { - "event_id" : 1214, - "event_name" : "目指せくのいち アイドルチャレンジ" - } ], - "hash" : "56f24e0254e2641e6d33e184044a44ad", - "id" : "2330102", - "profile" : { - "bust" : "86", - "height" : "166", - "hip" : "85", - "waist" : "60", - "weight" : "43" - } - }, { - "alias_name" : "ボーイッシュエレガント", - "alias_name_display" : "ボーイッシュエレガント", - "event" : [ { - "event_id" : 210, - "event_name" : "アイドルサバイバルinテーマパーク2013" - } ], - "hash" : "0ca31e6713d9778cce09548060c5b987", - "id" : "2406501", - "profile" : { - "bust" : "86", - "height" : "166", - "hip" : "85", - "waist" : "60", - "weight" : "43" - } - }, { - "alias_name" : "ボーイッシュエレガント", - "alias_name_display" : "ボーイッシュエレガント", - "event" : [ { - "event_id" : 210, - "event_name" : "アイドルサバイバルinテーマパーク2013" - } ], - "hash" : "426a1c8445a2f2a1f1109d383cac3cae", - "id" : "2506502", - "profile" : { - "bust" : "86", - "height" : "166", - "hip" : "85", - "waist" : "60", - "weight" : "43" - } - }, { - "alias_name" : "アーティスティックチアー", - "alias_name_display" : "アーティスティックチアー", - "event" : [ { - "event_id" : 1108, - "event_name" : "第8回プロダクション対抗トークバトルショー" - } ], - "hash" : "6f94c84a133c5c6ff24dc90d31692786", - "id" : "2420901", - "profile" : { - "bust" : "86", - "height" : "166", - "hip" : "85", - "waist" : "60", - "weight" : "43" - } - }, { - "alias_name" : "アーティスティックチアー", - "alias_name_display" : "アーティスティックチアー", - "event" : [ { - "event_id" : 1108, - "event_name" : "第8回プロダクション対抗トークバトルショー" - } ], - "hash" : "981490772e3d268a8af831a339a9c56d", - "id" : "2520902", - "profile" : { - "bust" : "86", - "height" : "166", - "hip" : "85", - "waist" : "60", - "weight" : "43" - } - }, { - "alias_name" : "ジャパニーズアート", - "alias_name_display" : "ジャパニーズアート", - "event" : [ { - "event_id" : 718, - "event_name" : "ドリームLIVEフェスティバル 新春SP" - } ], - "hash" : "f4b3a3a0844450d52613698c6ce1a699", - "id" : "2430001", - "profile" : { - "bust" : "86", - "height" : "166", - "hip" : "85", - "waist" : "60", - "weight" : "43" - } - }, { - "alias_name" : "ジャパニーズアート", - "alias_name_display" : "ジャパニーズアート", - "event" : [ { - "event_id" : 718, - "event_name" : "ドリームLIVEフェスティバル 新春SP" - } ], - "hash" : "a964e412394600f1eae51eb0a573a59e", - "id" : "2530002", - "profile" : { - "bust" : "86", - "height" : "166", - "hip" : "85", - "waist" : "60", - "weight" : "43" - } - }, { - "alias_name" : "弦月のアラジン", - "alias_name_display" : "弦月のアラジン", - "event" : [ { - "event_id" : 1902, - "event_name" : "御伽公演 おてんば姫とまぢヤバな魔法のランプ" - } ], - "hash" : "9f1e3889ba04bc06e21bc8d5e7eddf21", - "id" : "2433701", - "profile" : { - "bust" : "86", - "height" : "166", - "hip" : "85", - "waist" : "60", - "weight" : "43" - } - }, { - "alias_name" : "弦月のアラジン", - "alias_name_display" : "弦月のアラジン", - "event" : [ { - "event_id" : 1902, - "event_name" : "御伽公演 おてんば姫とまぢヤバな魔法のランプ" - } ], - "hash" : "420232dfc6e81e86bc345cc36f4b443a", - "id" : "2533702", - "profile" : { - "bust" : "86", - "height" : "166", - "hip" : "85", - "waist" : "60", - "weight" : "43" - } - }, { - "alias_name" : "心惑のくのいち", - "alias_name_display" : "心惑のくのいち", - "event" : [ { - "event_id" : 1214, - "event_name" : "目指せくのいち アイドルチャレンジ" - } ], - "hash" : "f9dda0f6634f12d18c16e41ceb47a7d6", - "id" : "2437401", - "profile" : { - "bust" : "86", - "height" : "166", - "hip" : "85", - "waist" : "60", - "weight" : "43" - } - }, { - "alias_name" : "心惑のくのいち", - "alias_name_display" : "心惑のくのいち", - "event" : [ { - "event_id" : 1214, - "event_name" : "目指せくのいち アイドルチャレンジ" - } ], - "hash" : "a67ad2aba4cda4cb8822e8cba9be9e72", - "id" : "2537402", - "profile" : { - "bust" : "86", - "height" : "166", - "hip" : "85", - "waist" : "60", - "weight" : "43" - } - }, { - "alias_name" : "嬌笑のくのいち", - "alias_name_display" : "嬌笑のくのいち", - "event" : [ { - "event_id" : 1214, - "event_name" : "目指せくのいち アイドルチャレンジ" - } ], - "hash" : "6ce938c8766b918d2f6b7c9cf6689b61", - "id" : "2437501", - "profile" : { - "bust" : "86", - "height" : "166", - "hip" : "85", - "waist" : "60", - "weight" : "43" - } - }, { - "alias_name" : "嬌笑のくのいち", - "alias_name_display" : "嬌笑のくのいち", - "event" : [ { - "event_id" : 1214, - "event_name" : "目指せくのいち アイドルチャレンジ" - } ], - "hash" : "c3a21b688770def90cda930429d9d580", - "id" : "2537502", - "profile" : { - "bust" : "86", - "height" : "166", - "hip" : "85", - "waist" : "60", - "weight" : "43" - } - } ], - "idol_id" : 112, - "idol_name" : "吉岡沙紀", - "idol_name_display" : "吉岡沙紀", - "units" : [ { - "id" : "2", - "name" : "アーティスター" - }, { - "id" : "40", - "name" : "ハートハーモナイズ" - }, { - "id" : "95", - "name" : "スペーススタイル" - }, { - "id" : "117", - "name" : "ハードメテオライツ" - }, { - "id" : "122", - "name" : "ホットアートジャンピン" - }, { - "id" : "140", - "name" : "アイドルミズキ with AS" - }, { - "id" : "209", - "name" : "ロワイヤルスタイルNP" - } ] -}, { - "aliases" : [ { - "hash" : "8b7fce105c3d588ac3f32396be6d63a9", - "id" : "2202301", - "profile" : { - "bust" : "86", - "height" : "172", - "hip" : "85", - "waist" : "58", - "weight" : "49" - } - }, { - "hash" : "a774d41a69eb44d15423615658b97bb3", - "id" : "2302302", - "profile" : { - "bust" : "86", - "height" : "172", - "hip" : "85", - "waist" : "58", - "weight" : "49" - } - }, { - "alias_name" : "ハロウィンパーティー", - "alias_name_display" : "ハロウィンパーティー", - "hash" : "a9139d337cb8743a5af6036957432d2a", - "id" : "2206301", - "profile" : { - "bust" : "86", - "height" : "172", - "hip" : "85", - "waist" : "58", - "weight" : "49" - } - }, { - "alias_name" : "ハロウィンパーティー", - "alias_name_display" : "ハロウィンパーティー", - "hash" : "fc9e599c52e561c8376c92aa9bf3f76b", - "id" : "2306302", - "profile" : { - "bust" : "86", - "height" : "172", - "hip" : "85", - "waist" : "58", - "weight" : "49" - } - }, { - "alias_name" : "春風の使者", - "alias_name_display" : "春風の使者", - "event" : [ { - "event_id" : 504, - "event_name" : "アイドルLIVEツアーinスペイン" - } ], - "hash" : "d5a7bb3feb7b36be43c88f12a22ab0ed", - "id" : "2209501", - "profile" : { - "bust" : "86", - "height" : "172", - "hip" : "85", - "waist" : "58", - "weight" : "49" - } - }, { - "alias_name" : "春風の使者", - "alias_name_display" : "春風の使者", - "event" : [ { - "event_id" : 504, - "event_name" : "アイドルLIVEツアーinスペイン" - } ], - "hash" : "cdcf96c094a50a50e60362c02f4dfa50", - "id" : "2309502", - "profile" : { - "bust" : "86", - "height" : "172", - "hip" : "85", - "waist" : "58", - "weight" : "49" - } - }, { - "alias_name" : "風の語り手", - "alias_name_display" : "風の語り手", - "hash" : "f436a23041b6b2dfce6c7487572b39d2", - "id" : "2215901", - "profile" : { - "bust" : "86", - "height" : "172", - "hip" : "85", - "waist" : "58", - "weight" : "49" - } - }, { - "alias_name" : "風の語り手", - "alias_name_display" : "風の語り手", - "hash" : "83836550ad64aaa3694b396d5d3fdacb", - "id" : "2315902", - "profile" : { - "bust" : "86", - "height" : "172", - "hip" : "85", - "waist" : "58", - "weight" : "49" - } - }, { - "alias_name" : "春色温泉", - "alias_name_display" : "春色温泉", - "hash" : "767925f33c033fafccf24de1a5270440", - "id" : "2225601", - "profile" : { - "bust" : "86", - "height" : "172", - "hip" : "85", - "waist" : "58", - "weight" : "49" - } - }, { - "alias_name" : "春色温泉", - "alias_name_display" : "春色温泉", - "hash" : "9ae3b84090af8490fa4d771857a708b6", - "id" : "2325602", - "profile" : { - "bust" : "86", - "height" : "172", - "hip" : "85", - "waist" : "58", - "weight" : "49" - } - }, { - "alias_name" : "涼風のミンストレル", - "alias_name_display" : "涼風のミンストレル", - "event" : [ { - "event_id" : 702, - "event_name" : "水着DEドリームLIVEフェスティバル" - } ], - "hash" : "83e5007f4db7e14f5fd0dc9e5de94648", - "id" : "2408501", - "profile" : { - "bust" : "86", - "height" : "172", - "hip" : "85", - "waist" : "58", - "weight" : "49" - } - }, { - "alias_name" : "涼風のミンストレル", - "alias_name_display" : "涼風のミンストレル", - "event" : [ { - "event_id" : 702, - "event_name" : "水着DEドリームLIVEフェスティバル" - } ], - "hash" : "7a01f73afd6bf9881c91b0a2d4a37280", - "id" : "2508502", - "profile" : { - "bust" : "86", - "height" : "172", - "hip" : "85", - "waist" : "58", - "weight" : "49" - } - }, { - "alias_name" : "メロディ・ロワイヤル", - "alias_name_display" : "メロディ・ロワイヤル", - "event" : [ { - "event_id" : 808, - "event_name" : "第8回アイドルLIVEロワイヤル" - } ], - "hash" : "537a96cd9851d6296f5116956034fa64", - "id" : "2419201", - "profile" : { - "bust" : "86", - "height" : "172", - "hip" : "85", - "waist" : "58", - "weight" : "49" - } - }, { - "alias_name" : "メロディ・ロワイヤル", - "alias_name_display" : "メロディ・ロワイヤル", - "event" : [ { - "event_id" : 808, - "event_name" : "第8回アイドルLIVEロワイヤル" - } ], - "hash" : "72869a0f6b17cf9ae3770b0b2cbdcb01", - "id" : "2519202", - "profile" : { - "bust" : "86", - "height" : "172", - "hip" : "85", - "waist" : "58", - "weight" : "49" - } - }, { - "alias_name" : "ダークバトラー", - "alias_name_display" : "ダークバトラー", - "event" : [ { - "event_id" : 521, - "event_name" : "怪盗公演 美しき追跡者" - } ], - "hash" : "df2c2bd1d61b057e0bce6f34d13e5b09", - "id" : "2426401", - "profile" : { - "bust" : "86", - "height" : "172", - "hip" : "85", - "waist" : "58", - "weight" : "49" - } - }, { - "alias_name" : "ダークバトラー", - "alias_name_display" : "ダークバトラー", - "event" : [ { - "event_id" : 521, - "event_name" : "怪盗公演 美しき追跡者" - } ], - "hash" : "e46c9723e0af70b50cea3bbf1af79359", - "id" : "2526402", - "profile" : { - "bust" : "86", - "height" : "172", - "hip" : "85", - "waist" : "58", - "weight" : "49" - } - }, { - "alias_name" : "メロディアスワールド", - "alias_name_display" : "メロディアスワールド", - "hash" : "b55aedfa29207ec7783d03157a425dc0", - "id" : "2434901", - "profile" : { - "bust" : "86", - "height" : "172", - "hip" : "85", - "waist" : "58", - "weight" : "49" - } - }, { - "alias_name" : "メロディアスワールド", - "alias_name_display" : "メロディアスワールド", - "hash" : "5e21903192e2179e480b0684afc509ed", - "id" : "2534902", - "profile" : { - "bust" : "86", - "height" : "172", - "hip" : "85", - "waist" : "58", - "weight" : "49" - } - }, { - "alias_name" : "新芽の調べ", - "alias_name_display" : "新芽の調べ", - "event" : [ { - "event_id" : 729, - "event_name" : "ドリームLIVEフェスティバル ゴールデンウィークSP" - } ], - "hash" : "a4823a0b9ffad08844c7e603e69013cd", - "id" : "2439701", - "profile" : { - "bust" : "86", - "height" : "172", - "hip" : "85", - "waist" : "58", - "weight" : "49" - } - }, { - "alias_name" : "新芽の調べ", - "alias_name_display" : "新芽の調べ", - "event" : [ { - "event_id" : 729, - "event_name" : "ドリームLIVEフェスティバル ゴールデンウィークSP" - } ], - "hash" : "725a7367f2c8c08fa9f88fb14c58786a", - "id" : "2539702", - "profile" : { - "bust" : "86", - "height" : "172", - "hip" : "85", - "waist" : "58", - "weight" : "49" - } - } ], - "idol_id" : 113, - "idol_name" : "梅木音葉", - "idol_name_display" : "梅木音葉", - "units" : [ { - "id" : "24", - "name" : "シンフォニック・ワールド" - }, { - "id" : "180", - "name" : "ハロウィンパーティー" - } ] -}, { - "aliases" : [ { - "hash" : "5fe1faaee0a52e41f24eea585a682df5", - "id" : "2202401", - "profile" : { - "bust" : "65", - "height" : "142", - "hip" : "70", - "waist" : "50", - "weight" : "34" - } - }, { - "hash" : "ae2faa4771c040ad14953055cdba97c0", - "id" : "2302402", - "profile" : { - "bust" : "66", - "height" : "142", - "hip" : "70", - "waist" : "51", - "weight" : "35" - } - }, { - "alias_name" : "メイドコレクション", - "alias_name_display" : "メイドコレクション", - "hash" : "3636752aaa4fff30e038839aa6121adf", - "id" : "2205801", - "profile" : { - "bust" : "66", - "height" : "142", - "hip" : "70", - "waist" : "51", - "weight" : "35" - } - }, { - "alias_name" : "メイドコレクション", - "alias_name_display" : "メイドコレクション", - "hash" : "9fd88c297854635eaed7f81eaeef6204", - "id" : "2305802", - "profile" : { - "bust" : "66", - "height" : "142", - "hip" : "70", - "waist" : "51", - "weight" : "35" - } - }, { - "alias_name" : "ウィンターホラーグリーン", - "alias_name_display" : "ウィンターホラーグリーン", - "hash" : "9589583b3b1c0c6854df218d00a720cb", - "id" : "2207301", - "profile" : { - "bust" : "66", - "height" : "142", - "hip" : "70", - "waist" : "51", - "weight" : "35" - } - }, { - "alias_name" : "ウィンターホラーネイビー", - "alias_name_display" : "ウィンターホラーネイビー", - "hash" : "7a1a52d2d04ab51452a17d8a0fa13deb", - "id" : "2207302", - "profile" : { - "bust" : "66", - "height" : "142", - "hip" : "70", - "waist" : "51", - "weight" : "35" - } - }, { - "alias_name" : "ウィンターホラーボルドー", - "alias_name_display" : "ウィンターホラーボルドー", - "hash" : "6dbdb5e600214a62be8c86a4ce119358", - "id" : "2207303", - "profile" : { - "bust" : "66", - "height" : "142", - "hip" : "70", - "waist" : "51", - "weight" : "35" - } - }, { - "alias_name" : "ウィンターホラーブルー", - "alias_name_display" : "ウィンターホラーブルー", - "hash" : "387ff8f96121c16b6c70a997e51649b4", - "id" : "2207304", - "profile" : { - "bust" : "66", - "height" : "142", - "hip" : "70", - "waist" : "51", - "weight" : "35" - } - }, { - "alias_name" : "ウィンタースタイル", - "alias_name_display" : "ウィンタースタイル", - "hash" : "c8dd511c09612e82ebe3ccfed4c80e16", - "id" : "2307305", - "profile" : { - "bust" : "66", - "height" : "142", - "hip" : "70", - "waist" : "51", - "weight" : "35" - } - }, { - "alias_name" : "ウィンタースタイルマフラー", - "alias_name_display" : "ウィンタースタイルマフラー", - "hash" : "45b845227aa7ff52c176905bee731373", - "id" : "2307306", - "profile" : { - "bust" : "66", - "height" : "142", - "hip" : "70", - "waist" : "51", - "weight" : "35" - } - }, { - "alias_name" : "ウィンタースタイルイヤーマフ", - "alias_name_display" : "ウィンタースタイルイヤーマフ", - "hash" : "b298709e4e9b623a243f4c260ce67039", - "id" : "2307307", - "profile" : { - "bust" : "66", - "height" : "142", - "hip" : "70", - "waist" : "51", - "weight" : "35" - } - }, { - "alias_name" : "ウィンタースタイルバッグ", - "alias_name_display" : "ウィンタースタイルバッグ", - "hash" : "f885b02cf61af65fe2bb964902ff5e6c", - "id" : "2307308", - "profile" : { - "bust" : "66", - "height" : "142", - "hip" : "70", - "waist" : "51", - "weight" : "35" - } - }, { - "alias_name" : "ウィンタースタイルカート", - "alias_name_display" : "ウィンタースタイルカート", - "hash" : "8c3580e5bfcdfaf62ab2f06659f809d2", - "id" : "2307309", - "profile" : { - "bust" : "66", - "height" : "142", - "hip" : "70", - "waist" : "51", - "weight" : "35" - } - }, { - "alias_name" : "ダークインバイト", - "alias_name_display" : "ダークインバイト", - "hash" : "47bb0f13767275f0599acc5296d466c7", - "id" : "2227301", - "profile" : { - "bust" : "66", - "height" : "142", - "hip" : "70", - "waist" : "51", - "weight" : "35" - } - }, { - "alias_name" : "ダークインバイト", - "alias_name_display" : "ダークインバイト", - "hash" : "1faeb39c919ef3f1aaf5d2031b85caeb", - "id" : "2327302", - "profile" : { - "bust" : "66", - "height" : "142", - "hip" : "70", - "waist" : "51", - "weight" : "35" - } - }, { - "alias_name" : "ハロウィンナイトメア", - "alias_name_display" : "ハロウィンナイトメア", - "hash" : "44f2da3a9c5beecfda2bfddae84a1153", - "id" : "2403301", - "profile" : { - "bust" : "66", - "height" : "142", - "hip" : "70", - "waist" : "51", - "weight" : "35" - } - }, { - "alias_name" : "ハロウィンナイトメア", - "alias_name_display" : "ハロウィンナイトメア", - "hash" : "f05381161e3760b235eece970659c13c", - "id" : "2503302", - "profile" : { - "bust" : "66", - "height" : "142", - "hip" : "70", - "waist" : "51", - "weight" : "35" - } - }, { - "alias_name" : "ホワイトナイトメア", - "alias_name_display" : "ホワイトナイトメア", - "hash" : "5078a4011745218d0c969cad3bf3c169", - "id" : "2404410", - "profile" : { - "bust" : "66", - "height" : "142", - "hip" : "70", - "waist" : "51", - "weight" : "35" - } - }, { - "alias_name" : "ホワイトナイトメア", - "alias_name_display" : "ホワイトナイトメア", - "hash" : "a24533b9f3185e3735b81abe720ccefa", - "id" : "2504411", - "profile" : { - "bust" : "66", - "height" : "142", - "hip" : "70", - "waist" : "51", - "weight" : "35" - } - }, { - "alias_name" : "納涼浴衣娘", - "alias_name_display" : "納涼浴衣娘", - "hash" : "5cb519e64701c15572f2f51981c79ac7", - "id" : "2407801", - "profile" : { - "bust" : "66", - "height" : "142", - "hip" : "70", - "waist" : "51", - "weight" : "35" - } - }, { - "alias_name" : "納涼浴衣娘", - "alias_name_display" : "納涼浴衣娘", - "hash" : "54627202ea402abc86e37147cea9c2ea", - "id" : "2507802", - "profile" : { - "bust" : "66", - "height" : "142", - "hip" : "70", - "waist" : "51", - "weight" : "35" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "040042fc1ca9ce2681ec5db9997d39c1", - "id" : "2410301", - "profile" : { - "bust" : "66", - "height" : "142", - "hip" : "70", - "waist" : "51", - "weight" : "35" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "6f3c920d53e4f0ed7eb1cbe9482cd7d3", - "id" : "2510302", - "profile" : { - "bust" : "66", - "height" : "142", - "hip" : "70", - "waist" : "51", - "weight" : "35" - } - }, { - "alias_name" : "ゴシックホラーナイトメア", - "alias_name_display" : "ゴシックホラーナイトメア", - "event" : [ { - "event_id" : "013", - "event_name" : "第13回プロダクションマッチフェスティバル" - } ], - "hash" : "f74c99a3dba8770ce827fd3ceee60a10", - "id" : "2410501", - "profile" : { - "bust" : "66", - "height" : "142", - "hip" : "70", - "waist" : "51", - "weight" : "35" - } - }, { - "alias_name" : "ゴシックホラーナイトメア", - "alias_name_display" : "ゴシックホラーナイトメア", - "event" : [ { - "event_id" : "013", - "event_name" : "第13回プロダクションマッチフェスティバル" - } ], - "hash" : "2af32ad71bbed8be247e01b670d051a9", - "id" : "2510502", - "profile" : { - "bust" : "66", - "height" : "142", - "hip" : "70", - "waist" : "51", - "weight" : "35" - } - }, { - "alias_name" : "学園のヒロイン", - "alias_name_display" : "学園のヒロイン", - "event" : [ { - "event_id" : 412, - "event_name" : "聖靴学園の七不思議" - } ], - "hash" : "14f7e77a84e8f89398274d5e9ff63c3f", - "id" : "2414201", - "profile" : { - "bust" : "66", - "height" : "142", - "hip" : "70", - "waist" : "51", - "weight" : "35" - } - }, { - "alias_name" : "学園のヒロイン", - "alias_name_display" : "学園のヒロイン", - "event" : [ { - "event_id" : 412, - "event_name" : "聖靴学園の七不思議" - } ], - "hash" : "72301fc6b66e10af7b057d56155ceaa5", - "id" : "2514202", - "profile" : { - "bust" : "66", - "height" : "142", - "hip" : "70", - "waist" : "51", - "weight" : "35" - } - }, { - "alias_name" : "シンデレラドリーム", - "alias_name_display" : "シンデレラドリーム", - "hash" : "d380946c0a53f37c0d8fccc405fa343f", - "id" : "2417701", - "profile" : { - "bust" : "66", - "height" : "142", - "hip" : "70", - "waist" : "51", - "weight" : "35" - } - }, { - "alias_name" : "シンデレラドリーム", - "alias_name_display" : "シンデレラドリーム", - "hash" : "7784c97bce5a0e14bcd3d9aa63cb3ecf", - "id" : "2517702", - "profile" : { - "bust" : "66", - "height" : "142", - "hip" : "70", - "waist" : "51", - "weight" : "35" - } - }, { - "alias_name" : "ステップバイステップ", - "alias_name_display" : "ステップバイステップ", - "hash" : "7efa533684a2dd156d50e2ce4a59136d", - "id" : "2423801", - "profile" : { - "bust" : "66", - "height" : "142", - "hip" : "70", - "waist" : "51", - "weight" : "35" - } - }, { - "alias_name" : "ステップバイステップ", - "alias_name_display" : "ステップバイステップ", - "hash" : "46884da8ea8a4a9e6d66c1c7ae4fc974", - "id" : "2523802", - "profile" : { - "bust" : "66", - "height" : "142", - "hip" : "70", - "waist" : "51", - "weight" : "35" - } - }, { - "alias_name" : "4thアニバーサリー", - "alias_name_display" : "4thアニバーサリー", - "event" : [ { - "event_id" : 1704, - "event_name" : "アイドルプロデュース the 4th Anniversary" - } ], - "hash" : "3677958390fba4828e21cad9bbfc30b4", - "id" : "2428901", - "profile" : { - "bust" : "66", - "height" : "142", - "hip" : "70", - "waist" : "51", - "weight" : "35" - } - }, { - "alias_name" : "4thアニバーサリー", - "alias_name_display" : "4thアニバーサリー", - "event" : [ { - "event_id" : 1704, - "event_name" : "アイドルプロデュース the 4th Anniversary" - } ], - "hash" : "39fddacadc87a87a49aa2ad95731d1b8", - "id" : "2528902", - "profile" : { - "bust" : "66", - "height" : "142", - "hip" : "70", - "waist" : "51", - "weight" : "35" - } - }, { - "alias_name" : "4thアニバーサリー・S", - "alias_name_display" : "4thアニバーサリー・S", - "event" : [ { - "event_id" : 1704, - "event_name" : "アイドルプロデュース the 4th Anniversary" - } ], - "hash" : "8bf75ee15f38e8cb455b551604b503e5", - "id" : "2429001", - "profile" : { - "bust" : "66", - "height" : "142", - "hip" : "70", - "waist" : "51", - "weight" : "35" - } - }, { - "alias_name" : "4thアニバーサリー・S", - "alias_name_display" : "4thアニバーサリー・S", - "event" : [ { - "event_id" : 1704, - "event_name" : "アイドルプロデュース the 4th Anniversary" - } ], - "hash" : "da1764a3a75a36f036c830770c0fa508", - "id" : "2529002", - "profile" : { - "bust" : "66", - "height" : "142", - "hip" : "70", - "waist" : "51", - "weight" : "35" - } - }, { - "alias_name" : "ツナガルウワサ", - "alias_name_display" : "ツナガルウワサ", - "event" : [ { - "event_id" : 1509, - "event_name" : "第9回チーム対抗トークバトルショー" - } ], - "hash" : "58b52532b2a4c66aae460c87e2f19a7f", - "id" : "2435901", - "profile" : { - "bust" : "66", - "height" : "142", - "hip" : "70", - "waist" : "51", - "weight" : "35" - } - }, { - "alias_name" : "ツナガルウワサ", - "alias_name_display" : "ツナガルウワサ", - "event" : [ { - "event_id" : 1509, - "event_name" : "第9回チーム対抗トークバトルショー" - } ], - "hash" : "8760de4f1ffcd5454f63f3332535bb24", - "id" : "2535902", - "profile" : { - "bust" : "66", - "height" : "142", - "hip" : "70", - "waist" : "51", - "weight" : "35" - } - } ], - "idol_id" : 114, - "idol_name" : "白坂小梅", - "idol_name_display" : "白坂小梅", - "units" : [ { - "id" : "9", - "name" : "エルドリッチ・ロアテラー" - }, { - "id" : "77", - "name" : "Jumpin'Joker" - }, { - "id" : "79", - "name" : "NiGHT ENCOUNTER" - }, { - "id" : "82", - "name" : "Rosenburg Alptraum" - }, { - "id" : "90", - "name" : "カワイイボクと142's" - }, { - "id" : "127", - "name" : "落花流水" - }, { - "id" : "183", - "name" : "メイドコレクション" - }, { - "id" : "186", - "name" : "LittlePOPS" - }, { - "id" : "201", - "name" : "Caskets" - }, { - "id" : "212", - "name" : "CINDERELLA GIRLS" - } ] -}, { - "aliases" : [ { - "event" : [ { - "event_id" : 201, - "event_name" : "アイドルサバイバル" - } ], - "hash" : "c73b4dc40685bc50d331c9f32d1b91fb", - "id" : "2202501", - "profile" : { - "bust" : "89", - "height" : "162", - "hip" : "85", - "waist" : "59", - "weight" : "46" - } - }, { - "event" : [ { - "event_id" : 201, - "event_name" : "アイドルサバイバル" - } ], - "hash" : "28bb1de41fcfabcb5d2ba1d3870c121b", - "id" : "2302502", - "profile" : { - "bust" : "89", - "height" : "162", - "hip" : "85", - "waist" : "59", - "weight" : "46" - } - }, { - "alias_name" : "バレンタインパーティー", - "alias_name_display" : "バレンタインパーティー", - "hash" : "031476bad3baae90639d1aa438801e77", - "id" : "2208001", - "profile" : { - "bust" : "89", - "height" : "162", - "hip" : "85", - "waist" : "59", - "weight" : "46" - } - }, { - "alias_name" : "バレンタインパーティー", - "alias_name_display" : "バレンタインパーティー", - "hash" : "e715a9ad30451fd62a269fb9a888c330", - "id" : "2308002", - "profile" : { - "bust" : "89", - "height" : "162", - "hip" : "85", - "waist" : "59", - "weight" : "46" - } - }, { - "alias_name" : "リーブルパピヨン", - "alias_name_display" : "リーブルパピヨン", - "hash" : "ccc7d18edcfe645bd67a10ee9418a1a3", - "id" : "2211801", - "profile" : { - "bust" : "89", - "height" : "162", - "hip" : "85", - "waist" : "59", - "weight" : "46" - } - }, { - "alias_name" : "リーブルパピヨン", - "alias_name_display" : "リーブルパピヨン", - "hash" : "038dbf3dcf6ba83def688acc1d3a51b8", - "id" : "2311802", - "profile" : { - "bust" : "89", - "height" : "162", - "hip" : "85", - "waist" : "59", - "weight" : "46" - } - }, { - "alias_name" : "ドゥーマリアージュ", - "alias_name_display" : "ドゥーマリアージュ", - "hash" : "67c5c09da322da1f45a594ffb616516a", - "id" : "2218301", - "profile" : { - "bust" : "89", - "height" : "162", - "hip" : "85", - "waist" : "59", - "weight" : "46" - } - }, { - "alias_name" : "ドゥーマリアージュ", - "alias_name_display" : "ドゥーマリアージュ", - "hash" : "55ae486ac1f7dd977dad78e87069e444", - "id" : "2318302", - "profile" : { - "bust" : "89", - "height" : "162", - "hip" : "85", - "waist" : "59", - "weight" : "46" - } - }, { - "alias_name" : "サマーシーズン", - "alias_name_display" : "サマーシーズン", - "hash" : "3dc8352d84780b94599f2f28c3cb1b08", - "id" : "2221801", - "profile" : { - "bust" : "89", - "height" : "162", - "hip" : "85", - "waist" : "59", - "weight" : "46" - } - }, { - "alias_name" : "サマーシーズン", - "alias_name_display" : "サマーシーズン", - "hash" : "720ef57f0103eee721a8021066c3b34d", - "id" : "2321802", - "profile" : { - "bust" : "89", - "height" : "162", - "hip" : "85", - "waist" : "59", - "weight" : "46" - } - }, { - "alias_name" : "レディスタイル", - "alias_name_display" : "レディスタイル", - "hash" : "ec4525fd83e7bb622de501a3920e4658", - "id" : "2224801", - "profile" : { - "bust" : "89", - "height" : "162", - "hip" : "85", - "waist" : "59", - "weight" : "46" - } - }, { - "alias_name" : "レディスタイル", - "alias_name_display" : "レディスタイル", - "hash" : "3ecd3524410cf349b532c7017d061c96", - "id" : "2324802", - "profile" : { - "bust" : "89", - "height" : "162", - "hip" : "85", - "waist" : "59", - "weight" : "46" - } - }, { - "alias_name" : "マイデコラティブ", - "alias_name_display" : "マイデコラティブ", - "hash" : "d6aad9209b558bbe367ce9f4a68ee90a", - "id" : "2232001", - "profile" : { - "bust" : "89", - "height" : "162", - "hip" : "85", - "waist" : "59", - "weight" : "46" - } - }, { - "alias_name" : "マイデコラティブ", - "alias_name_display" : "マイデコラティブ", - "hash" : "7a9fa317e0b7b733838a7bbb4a71f5d1", - "id" : "2332002", - "profile" : { - "bust" : "89", - "height" : "162", - "hip" : "85", - "waist" : "59", - "weight" : "46" - } - }, { - "alias_name" : "ゴージャスチアー", - "alias_name_display" : "ゴージャスチアー", - "event" : [ { - "event_id" : 1102, - "event_name" : "第2回プロダクション対抗トークバトルショー" - } ], - "hash" : "babca7b72ad285377f19363a451e9a6d", - "id" : "2414501", - "profile" : { - "bust" : "89", - "height" : "162", - "hip" : "85", - "waist" : "59", - "weight" : "46" - } - }, { - "alias_name" : "ゴージャスチアー", - "alias_name_display" : "ゴージャスチアー", - "event" : [ { - "event_id" : 1102, - "event_name" : "第2回プロダクション対抗トークバトルショー" - } ], - "hash" : "d41291b48e8a5e5c6db1ddfd3adac08e", - "id" : "2514502", - "profile" : { - "bust" : "89", - "height" : "162", - "hip" : "85", - "waist" : "59", - "weight" : "46" - } - }, { - "alias_name" : "マジモード", - "alias_name_display" : "マジモード", - "event" : [ { - "event_id" : 725, - "event_name" : "第25回ドリームLIVEフェスティバル" - } ], - "hash" : "94ac010e58c3c7e7e3e4978efa06ae25", - "id" : "2435701", - "profile" : { - "bust" : "89", - "height" : "162", - "hip" : "85", - "waist" : "59", - "weight" : "46" - } - }, { - "alias_name" : "マジモード", - "alias_name_display" : "マジモード", - "event" : [ { - "event_id" : 725, - "event_name" : "第25回ドリームLIVEフェスティバル" - } ], - "hash" : "2c67e5e41d85f043ffc99b92a4873ae1", - "id" : "2535702", - "profile" : { - "bust" : "89", - "height" : "162", - "hip" : "85", - "waist" : "59", - "weight" : "46" - } - } ], - "idol_id" : 115, - "idol_name" : "岸部彩華", - "idol_name_display" : "岸部彩華", - "units" : [ { - "id" : "89", - "name" : "ガールズ・パワー" - } ] -}, { - "aliases" : [ { - "hash" : "9cdd818a009f19eab8c73cc845175ee6", - "id" : "2202701", - "profile" : { - "bust" : "78", - "height" : "152", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "hash" : "ba921b7605a9080d619152c0a64d2169", - "id" : "2302702", - "profile" : { - "bust" : "78", - "height" : "152", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "ノベルスパイレーツ", - "alias_name_display" : "ノベルスパイレーツ", - "hash" : "77c702153a1dcb38c773b94dea0b2628", - "id" : "2207901", - "profile" : { - "bust" : "78", - "height" : "152", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "ノベルスパイレーツ", - "alias_name_display" : "ノベルスパイレーツ", - "hash" : "f2a042e9aace39492a5e28e4d14d8715", - "id" : "2307902", - "profile" : { - "bust" : "78", - "height" : "152", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "スパニッシュスタイル", - "alias_name_display" : "スパニッシュスタイル", - "event" : [ { - "event_id" : 504, - "event_name" : "アイドルLIVEツアーinスペイン" - } ], - "hash" : "809a05d98209abdd96028110f37c46f6", - "id" : "2209401", - "profile" : { - "bust" : "78", - "height" : "152", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "スパニッシュスタイル", - "alias_name_display" : "スパニッシュスタイル", - "event" : [ { - "event_id" : 504, - "event_name" : "アイドルLIVEツアーinスペイン" - } ], - "hash" : "47d7ba193b349e7bd1dc3f1a03a599c8", - "id" : "2309402", - "profile" : { - "bust" : "78", - "height" : "152", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "ひな祭り", - "alias_name_display" : "ひな祭り", - "event" : [ { - "event_id" : 510, - "event_name" : "ひな祭りLIVEツアーカーニバル" - } ], - "hash" : "70c15775d5cabd419c8a1397115799aa", - "id" : "2214801", - "profile" : { - "bust" : "78", - "height" : "152", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "ひな祭り", - "alias_name_display" : "ひな祭り", - "event" : [ { - "event_id" : 510, - "event_name" : "ひな祭りLIVEツアーカーニバル" - } ], - "hash" : "f8f7b051faa13e961bed26cc460ad90c", - "id" : "2314802", - "profile" : { - "bust" : "78", - "height" : "152", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "ブレイブハート", - "alias_name_display" : "ブレイブハート", - "hash" : "f834f89f345e42c99a1a433007dab3d4", - "id" : "2222101", - "profile" : { - "bust" : "78", - "height" : "152", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "ブレイブハート", - "alias_name_display" : "ブレイブハート", - "hash" : "b2b25e4024fc6ea72ef15cf163013db6", - "id" : "2322102", - "profile" : { - "bust" : "78", - "height" : "152", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "ファンサーキット", - "alias_name_display" : "ファンサーキット", - "hash" : "323630ff5d66437d6b8e66b0b763c0cb", - "id" : "2228501", - "profile" : { - "bust" : "78", - "height" : "152", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "ファンサーキット", - "alias_name_display" : "ファンサーキット", - "hash" : "8a5a9f14e183e6a73639a965955129a7", - "id" : "2328502", - "profile" : { - "bust" : "78", - "height" : "152", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "ワイルドフレンズ", - "alias_name_display" : "ワイルドフレンズ", - "hash" : "ea24a69654f849a122461782a256f4cc", - "id" : "2231601", - "profile" : { - "bust" : "78", - "height" : "152", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "ワイルドフレンズ", - "alias_name_display" : "ワイルドフレンズ", - "hash" : "70a62d93285f5c7e10b9e127db9bf8a0", - "id" : "2331602", - "profile" : { - "bust" : "78", - "height" : "152", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "ロワイヤルガール", - "alias_name_display" : "ロワイヤルガール", - "event" : [ { - "event_id" : 801, - "event_name" : "アイドルLIVEロワイヤル" - } ], - "hash" : "a26c6d59e649ff57a0dd34b5df7ea154", - "id" : "2409401", - "profile" : { - "bust" : "78", - "height" : "152", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "ロワイヤルガール", - "alias_name_display" : "ロワイヤルガール", - "event" : [ { - "event_id" : 801, - "event_name" : "アイドルLIVEロワイヤル" - } ], - "hash" : "c92e027bebf2bd47e39256c706f5b123", - "id" : "2509402", - "profile" : { - "bust" : "78", - "height" : "152", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "冒険竜", - "alias_name_display" : "冒険竜", - "event" : [ { - "event_id" : 515, - "event_name" : "戦国公演 天魔の乱" - } ], - "hash" : "8330c93dc6430067c4c1ec6922e3290e", - "id" : "2419001", - "profile" : { - "bust" : "78", - "height" : "152", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "冒険竜", - "alias_name_display" : "冒険竜", - "event" : [ { - "event_id" : 515, - "event_name" : "戦国公演 天魔の乱" - } ], - "hash" : "a6ae3f65caf2cc10d44c0a64f2f1191e", - "id" : "2519002", - "profile" : { - "bust" : "78", - "height" : "152", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "アドベントチアー", - "alias_name_display" : "アドベントチアー", - "event" : [ { - "event_id" : 1505, - "event_name" : "チーム対抗トークバトルショー ウィンターSP" - } ], - "hash" : "a909e3bf82a215f7974d46400d71f959", - "id" : "2430201", - "profile" : { - "bust" : "78", - "height" : "152", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "アドベントチアー", - "alias_name_display" : "アドベントチアー", - "event" : [ { - "event_id" : 1505, - "event_name" : "チーム対抗トークバトルショー ウィンターSP" - } ], - "hash" : "b0a88d8ab733b0a8b4603a9ed1905b9a", - "id" : "2530202", - "profile" : { - "bust" : "78", - "height" : "152", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - } ], - "idol_id" : 116, - "idol_name" : "氏家むつみ", - "idol_name_display" : "氏家むつみ", - "units" : [ { - "id" : "28", - "name" : "スパニッシュスタイル" - }, { - "id" : "120", - "name" : "ブルームジャーニー" - } ] -}, { - "aliases" : [ { - "hash" : "1458f727e92427dcc643e35e6e09eb2e", - "id" : "2202801", - "profile" : { - "bust" : "88", - "height" : "155", - "hip" : "86", - "waist" : "60", - "weight" : "55" - } - }, { - "hash" : "c7dfaedfd194df0dc4bff0674dc56760", - "id" : "2302802", - "profile" : { - "bust" : "88", - "height" : "155", - "hip" : "87", - "waist" : "61", - "weight" : "56" - } - }, { - "alias_name" : "湯けむり温泉", - "alias_name_display" : "湯けむり温泉", - "hash" : "108a9a1a26e4f1559940f92990e53402", - "id" : "2209201", - "profile" : { - "bust" : "88", - "height" : "155", - "hip" : "87", - "waist" : "61", - "weight" : "56" - } - }, { - "alias_name" : "湯けむり温泉", - "alias_name_display" : "湯けむり温泉", - "hash" : "69a68f545b404d2d285734d3f819d93e", - "id" : "2309202", - "profile" : { - "bust" : "88", - "height" : "155", - "hip" : "87", - "waist" : "61", - "weight" : "56" - } - }, { - "alias_name" : "クラシカルフリル", - "alias_name_display" : "クラシカルフリル", - "event" : [ { - "event_id" : "014", - "event_name" : "第14回プロダクションマッチフェスティバル" - } ], - "hash" : "1f174baf73bc3e258534284fab04df73", - "id" : "2213901", - "profile" : { - "bust" : "88", - "height" : "155", - "hip" : "87", - "waist" : "61", - "weight" : "56" - } - }, { - "alias_name" : "クラシカルフリル", - "alias_name_display" : "クラシカルフリル", - "event" : [ { - "event_id" : "014", - "event_name" : "第14回プロダクションマッチフェスティバル" - } ], - "hash" : "837d83bc33174cc52c2d0c0e35fba135", - "id" : "2313902", - "profile" : { - "bust" : "88", - "height" : "155", - "hip" : "87", - "waist" : "61", - "weight" : "56" - } - }, { - "alias_name" : "白き女傑", - "alias_name_display" : "白き女傑", - "hash" : "c53f9a86b6b7484381e566ced779b7a1", - "id" : "2218701", - "profile" : { - "bust" : "88", - "height" : "155", - "hip" : "87", - "waist" : "61", - "weight" : "56" - } - }, { - "alias_name" : "白き女傑", - "alias_name_display" : "白き女傑", - "hash" : "86d9836742784446627e9796766a8bd1", - "id" : "2318702", - "profile" : { - "bust" : "88", - "height" : "155", - "hip" : "87", - "waist" : "61", - "weight" : "56" - } - }, { - "alias_name" : "ワーキング・ロード", - "alias_name_display" : "ワーキング・ロード", - "hash" : "fd2c868d155fde4a8b033854eea4a809", - "id" : "2225401", - "profile" : { - "bust" : "88", - "height" : "155", - "hip" : "87", - "waist" : "61", - "weight" : "56" - } - }, { - "alias_name" : "ワーキング・ロード", - "alias_name_display" : "ワーキング・ロード", - "hash" : "251069b6aa9c8f8f8992ff851f1dd51b", - "id" : "2325402", - "profile" : { - "bust" : "88", - "height" : "155", - "hip" : "87", - "waist" : "61", - "weight" : "56" - } - }, { - "alias_name" : "まごころメイド", - "alias_name_display" : "まごころメイド", - "hash" : "132f8d1774a7420805decc458a0beb71", - "id" : "2231901", - "profile" : { - "bust" : "88", - "height" : "155", - "hip" : "87", - "waist" : "61", - "weight" : "56" - } - }, { - "alias_name" : "まごころメイド", - "alias_name_display" : "まごころメイド", - "hash" : "3a60e9a4a39020d28e9988a0878c1106", - "id" : "2331902", - "profile" : { - "bust" : "88", - "height" : "155", - "hip" : "87", - "waist" : "61", - "weight" : "56" - } - }, { - "alias_name" : "麗しきプリマドンナ", - "alias_name_display" : "麗しきプリマドンナ", - "event" : [ { - "event_id" : "017", - "event_name" : "第17回プロダクションマッチフェスティバル" - } ], - "hash" : "a69ce5cc09555d49bae51a33a292b4a3", - "id" : "2415101", - "profile" : { - "bust" : "88", - "height" : "155", - "hip" : "87", - "waist" : "61", - "weight" : "56" - } - }, { - "alias_name" : "麗しきプリマドンナ", - "alias_name_display" : "麗しきプリマドンナ", - "event" : [ { - "event_id" : "017", - "event_name" : "第17回プロダクションマッチフェスティバル" - } ], - "hash" : "7c0fc03e0f012ea2ebb7787795f84eef", - "id" : "2515102", - "profile" : { - "bust" : "88", - "height" : "155", - "hip" : "87", - "waist" : "61", - "weight" : "56" - } - }, { - "alias_name" : "シンシアチアー", - "alias_name_display" : "シンシアチアー", - "event" : [ { - "event_id" : 1502, - "event_name" : "チーム対抗雨の日トークバトルショー" - } ], - "hash" : "dd88e2e9285553c7ad6b9fcfd066ccd7", - "id" : "2425001", - "profile" : { - "bust" : "88", - "height" : "155", - "hip" : "87", - "waist" : "61", - "weight" : "56" - } - }, { - "alias_name" : "シンシアチアー", - "alias_name_display" : "シンシアチアー", - "event" : [ { - "event_id" : 1502, - "event_name" : "チーム対抗雨の日トークバトルショー" - } ], - "hash" : "a478ca3a4093095341230dd3a5a4af2b", - "id" : "2525002", - "profile" : { - "bust" : "88", - "height" : "155", - "hip" : "87", - "waist" : "61", - "weight" : "56" - } - }, { - "alias_name" : "ビューティアスヴォーチェ", - "alias_name_display" : "ビューティアスヴォーチェ", - "event" : [ { - "event_id" : 724, - "event_name" : "第24回ドリームLIVEフェスティバル" - } ], - "hash" : "c99ae6e79c74a49e4d0ecbfa5ec125e3", - "id" : "2435001", - "profile" : { - "bust" : "88", - "height" : "155", - "hip" : "87", - "waist" : "61", - "weight" : "56" - } - }, { - "alias_name" : "ビューティアスヴォーチェ", - "alias_name_display" : "ビューティアスヴォーチェ", - "event" : [ { - "event_id" : 724, - "event_name" : "第24回ドリームLIVEフェスティバル" - } ], - "hash" : "148c761bd9f2699953da23d185cfed2b", - "id" : "2535002", - "profile" : { - "bust" : "88", - "height" : "155", - "hip" : "87", - "waist" : "61", - "weight" : "56" - } - } ], - "idol_id" : 117, - "idol_name" : "西川保奈美", - "idol_name_display" : "西川保奈美", - "units" : [ { - "id" : "206", - "name" : "セクシーボンデージ" - } ] -}, { - "aliases" : [ { - "hash" : "b9c6ac643c09462bf81ce0377506d23c", - "id" : "2203001", - "profile" : { - "bust" : "72", - "height" : "150", - "hip" : "73", - "waist" : "51", - "weight" : "40" - } - }, { - "hash" : "4ba43b47803b72a5f49a9bcb8616d0e8", - "id" : "2303002", - "profile" : { - "bust" : "72", - "height" : "150", - "hip" : "73", - "waist" : "51", - "weight" : "40" - } - }, { - "alias_name" : "浴衣祭り", - "alias_name_display" : "浴衣祭り", - "hash" : "3b22401aac95c2a8d36f95d2f2121ef6", - "id" : "2204901", - "profile" : { - "bust" : "72", - "height" : "150", - "hip" : "73", - "waist" : "51", - "weight" : "40" - } - }, { - "alias_name" : "浴衣祭り", - "alias_name_display" : "浴衣祭り", - "hash" : "9bd73a611f0150483ba1443b89157678", - "id" : "2304902", - "profile" : { - "bust" : "72", - "height" : "150", - "hip" : "73", - "waist" : "51", - "weight" : "40" - } - }, { - "alias_name" : "新春コレクション", - "alias_name_display" : "新春コレクション", - "hash" : "ab3ffe2f96c8fd1ff009d0ad90fb66fd", - "id" : "2207601", - "profile" : { - "bust" : "72", - "height" : "150", - "hip" : "73", - "waist" : "51", - "weight" : "40" - } - }, { - "alias_name" : "新春コレクション", - "alias_name_display" : "新春コレクション", - "hash" : "876f0ea90c8c4243592c3bd1e801ad98", - "id" : "2307602", - "profile" : { - "bust" : "72", - "height" : "150", - "hip" : "73", - "waist" : "51", - "weight" : "40" - } - }, { - "alias_name" : "クリスマスパーティー", - "alias_name_display" : "クリスマスパーティー", - "hash" : "7a61bf64e0b426923bb45b941bd7c90a", - "id" : "2213201", - "profile" : { - "bust" : "72", - "height" : "150", - "hip" : "73", - "waist" : "51", - "weight" : "40" - } - }, { - "alias_name" : "クリスマスパーティー", - "alias_name_display" : "クリスマスパーティー", - "hash" : "3ade0c25bce649c62eb1f444cf449f01", - "id" : "2313202", - "profile" : { - "bust" : "72", - "height" : "150", - "hip" : "73", - "waist" : "51", - "weight" : "40" - } - }, { - "alias_name" : "魔女っ娘I.C", - "alias_name_display" : "魔女っ娘I.C", - "event" : [ { - "event_id" : 1201, - "event_name" : "目指せ魔女っ娘 アイドルチャレンジ" - } ], - "hash" : "216acd7a27e04ba268e35d2966e681af", - "id" : "2315802", - "profile" : { - "bust" : "72", - "height" : "150", - "hip" : "73", - "waist" : "51", - "weight" : "40" - } - }, { - "alias_name" : "マーチングバンド", - "alias_name_display" : "マーチングバンド", - "hash" : "220429110c5cf2fbaa7580fa256063c4", - "id" : "2218401", - "profile" : { - "bust" : "72", - "height" : "150", - "hip" : "73", - "waist" : "51", - "weight" : "40" - } - }, { - "alias_name" : "マーチングバンド", - "alias_name_display" : "マーチングバンド", - "hash" : "78246cc890dc9be62b96ca43c065bfbe", - "id" : "2318402", - "profile" : { - "bust" : "72", - "height" : "150", - "hip" : "73", - "waist" : "51", - "weight" : "40" - } - }, { - "alias_name" : "カインドハート", - "alias_name_display" : "カインドハート", - "event" : [ { - "event_id" : 716, - "event_name" : "第16回ドリームLIVEフェスティバル" - } ], - "hash" : "783e73d2983bbfa46d1df677f56b8ee9", - "id" : "2323502", - "profile" : { - "bust" : "72", - "height" : "150", - "hip" : "73", - "waist" : "51", - "weight" : "40" - } - }, { - "alias_name" : "タラン・リュタン", - "alias_name_display" : "タラン・リュタン", - "hash" : "8202dd0badfaaca173a78ece8775c418", - "id" : "2230001", - "profile" : { - "bust" : "72", - "height" : "150", - "hip" : "73", - "waist" : "51", - "weight" : "40" - } - }, { - "alias_name" : "タラン・リュタン", - "alias_name_display" : "タラン・リュタン", - "hash" : "d7536b080af66bef1964c44f102c1394", - "id" : "2330002", - "profile" : { - "bust" : "72", - "height" : "150", - "hip" : "73", - "waist" : "51", - "weight" : "40" - } - }, { - "alias_name" : "リトルプリーステス", - "alias_name_display" : "リトルプリーステス", - "event" : [ { - "event_id" : 504, - "event_name" : "アイドルLIVEツアーinスペイン" - } ], - "hash" : "d2df4cba6a3e68031193dc3dba693f2f", - "id" : "2406301", - "profile" : { - "bust" : "72", - "height" : "150", - "hip" : "73", - "waist" : "51", - "weight" : "40" - } - }, { - "alias_name" : "リトルプリーステス", - "alias_name_display" : "リトルプリーステス", - "event" : [ { - "event_id" : 504, - "event_name" : "アイドルLIVEツアーinスペイン" - } ], - "hash" : "b523fbaa59e1e8df3ad3e299ae4737da", - "id" : "2506302", - "profile" : { - "bust" : "72", - "height" : "150", - "hip" : "73", - "waist" : "51", - "weight" : "40" - } - }, { - "alias_name" : "マジカルガール・リーフ", - "alias_name_display" : "マジカルガール・リーフ", - "event" : [ { - "event_id" : 1201, - "event_name" : "目指せ魔女っ娘 アイドルチャレンジ" - } ], - "hash" : "f5c7d9885d3ef621bb3817c499315657", - "id" : "2414601", - "profile" : { - "bust" : "72", - "height" : "150", - "hip" : "73", - "waist" : "51", - "weight" : "40" - } - }, { - "alias_name" : "マジカルガール・リーフ", - "alias_name_display" : "マジカルガール・リーフ", - "event" : [ { - "event_id" : 1201, - "event_name" : "目指せ魔女っ娘 アイドルチャレンジ" - } ], - "hash" : "25de5c4589c6fd4c321306f534e8daec", - "id" : "2514602", - "profile" : { - "bust" : "72", - "height" : "150", - "hip" : "73", - "waist" : "51", - "weight" : "40" - } - }, { - "alias_name" : "マジカルガールS・リーフ", - "alias_name_display" : "マジカルガールS・リーフ", - "event" : [ { - "event_id" : 1201, - "event_name" : "目指せ魔女っ娘 アイドルチャレンジ" - } ], - "hash" : "f155c28fb82fb025607d07c733cc53b2", - "id" : "2414701", - "profile" : { - "bust" : "72", - "height" : "150", - "hip" : "73", - "waist" : "51", - "weight" : "40" - } - }, { - "alias_name" : "マジカルガールS・リーフ", - "alias_name_display" : "マジカルガールS・リーフ", - "event" : [ { - "event_id" : 1201, - "event_name" : "目指せ魔女っ娘 アイドルチャレンジ" - } ], - "hash" : "2987b2a345ae850352027f252ba50359", - "id" : "2514702", - "profile" : { - "bust" : "72", - "height" : "150", - "hip" : "73", - "waist" : "51", - "weight" : "40" - } - }, { - "alias_name" : "エアリアルフェアリー", - "alias_name_display" : "エアリアルフェアリー", - "hash" : "1b1ee82db7a9842317010a4dcf5878f2", - "id" : "2424101", - "profile" : { - "bust" : "72", - "height" : "150", - "hip" : "73", - "waist" : "51", - "weight" : "40" - } - }, { - "alias_name" : "エアリアルフェアリー", - "alias_name_display" : "エアリアルフェアリー", - "hash" : "f9e301f6b1445bcc65500175036e4f1d", - "id" : "2524102", - "profile" : { - "bust" : "72", - "height" : "150", - "hip" : "73", - "waist" : "51", - "weight" : "40" - } - }, { - "alias_name" : "ゆめの大空", - "alias_name_display" : "ゆめの大空", - "event" : [ { - "event_id" : 1803, - "event_name" : "アイドルバラエティ 大空への挑戦 ~Fly me to the Sky~" - } ], - "hash" : "b29c370ccee401411077c3ac897b457b", - "id" : "2432801", - "profile" : { - "bust" : "72", - "height" : "150", - "hip" : "73", - "waist" : "51", - "weight" : "40" - } - }, { - "alias_name" : "ゆめの大空", - "alias_name_display" : "ゆめの大空", - "event" : [ { - "event_id" : 1803, - "event_name" : "アイドルバラエティ 大空への挑戦 ~Fly me to the Sky~" - } ], - "hash" : "3a91b3c21892380bf9febb395bf4baa5", - "id" : "2532802", - "profile" : { - "bust" : "72", - "height" : "150", - "hip" : "73", - "waist" : "51", - "weight" : "40" - } - } ], - "idol_id" : 118, - "idol_name" : "成宮由愛", - "idol_name_display" : "成宮由愛", - "units" : [ { - "id" : "114", - "name" : "ドリームホープスプリング" - }, { - "id" : "120", - "name" : "ブルームジャーニー" - }, { - "id" : "164", - "name" : "マジカルテット" - }, { - "id" : "214", - "name" : "L.M.B.G" - } ] -}, { - "aliases" : [ { - "alias_name" : "ひな祭り", - "alias_name_display" : "ひな祭り", - "event" : [ { - "event_id" : 202, - "event_name" : "アイドルサバイバルひな祭り編" - } ], - "hash" : "ada1f3044f16789d41715c19836867d2", - "id" : "2203101", - "profile" : { - "bust" : "78", - "height" : "163", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ひな祭り", - "alias_name_display" : "ひな祭り", - "event" : [ { - "event_id" : 202, - "event_name" : "アイドルサバイバルひな祭り編" - } ], - "hash" : "92eb0189eff8cc013115f02a1bad963c", - "id" : "2303102", - "profile" : { - "bust" : "78", - "height" : "163", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ゴスペルドレス", - "alias_name_display" : "ゴスペルドレス", - "event" : [ { - "event_id" : 208, - "event_name" : "アイドルサバイバル聖歌響くクリスマス" - } ], - "hash" : "a2eb76bbccb00f2f5ffe37499f31af41", - "id" : "2207401", - "profile" : { - "bust" : "78", - "height" : "163", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ゴスペルドレス", - "alias_name_display" : "ゴスペルドレス", - "event" : [ { - "event_id" : 208, - "event_name" : "アイドルサバイバル聖歌響くクリスマス" - } ], - "hash" : "1ecb11582b98c1a39816444772f3a0f3", - "id" : "2307402", - "profile" : { - "bust" : "78", - "height" : "163", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ラッキーフォーチュン", - "alias_name_display" : "ラッキーフォーチュン", - "hash" : "7294157f71abf9196c9229a87fe5fdb6", - "id" : "2210001", - "profile" : { - "bust" : "78", - "height" : "163", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ラッキーフォーチュン", - "alias_name_display" : "ラッキーフォーチュン", - "hash" : "8a007e260d74c773aa6a389556cf2ca2", - "id" : "2310002", - "profile" : { - "bust" : "78", - "height" : "163", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "スピリチュアルガール", - "alias_name_display" : "スピリチュアルガール", - "hash" : "9c51aff31404021b1c109fe993cc2753", - "id" : "2216701", - "profile" : { - "bust" : "78", - "height" : "163", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "スピリチュアルガール", - "alias_name_display" : "スピリチュアルガール", - "hash" : "9d45daaf1e78b11e1297d7f33e08770c", - "id" : "2316702", - "profile" : { - "bust" : "78", - "height" : "163", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ビーチガール", - "alias_name_display" : "ビーチガール", - "event" : [ { - "event_id" : 1703, - "event_name" : "アイドルプロデュース おいでよ!海の家" - } ], - "hash" : "8b04d6339e2e106de0498f5eb986260d", - "id" : "2222201", - "profile" : { - "bust" : "78", - "height" : "163", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ビーチガール", - "alias_name_display" : "ビーチガール", - "event" : [ { - "event_id" : 1703, - "event_name" : "アイドルプロデュース おいでよ!海の家" - } ], - "hash" : "7dcecec11834d30adfabe86d7edb44a6", - "id" : "2322202", - "profile" : { - "bust" : "78", - "height" : "163", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ビーチガール・S", - "alias_name_display" : "ビーチガール・S", - "event" : [ { - "event_id" : 1703, - "event_name" : "アイドルプロデュース おいでよ!海の家" - } ], - "hash" : "f8381257fc2199e90429d3c75708a1e8", - "id" : "2222301", - "profile" : { - "bust" : "78", - "height" : "163", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ビーチガール・S", - "alias_name_display" : "ビーチガール・S", - "event" : [ { - "event_id" : 1703, - "event_name" : "アイドルプロデュース おいでよ!海の家" - } ], - "hash" : "c8d97b51b309b87a36bcdfcc0a767566", - "id" : "2322302", - "profile" : { - "bust" : "78", - "height" : "163", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "フォーチュンヒーロー", - "alias_name_display" : "フォーチュンヒーロー", - "event" : [ { - "event_id" : 523, - "event_name" : "鋼鉄公演 きらりんロボ -襲来!コスメティア帝国-" - } ], - "hash" : "0a98b80bbf63c91923a8edf62a448434", - "id" : "2324602", - "profile" : { - "bust" : "78", - "height" : "163", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "タラン・ミュジーク", - "alias_name_display" : "タラン・ミュジーク", - "hash" : "45443770e7bb8295e479ab17be49edba", - "id" : "2228201", - "profile" : { - "bust" : "78", - "height" : "163", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "タラン・ミュジーク", - "alias_name_display" : "タラン・ミュジーク", - "hash" : "d2eacbc1164672558526bff76d8995b0", - "id" : "2328202", - "profile" : { - "bust" : "78", - "height" : "163", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "フォーチュン★スター", - "alias_name_display" : "フォーチュン★スター", - "hash" : "206de916e07f5839c754f6d3be15ee29", - "id" : "2409901", - "profile" : { - "bust" : "78", - "height" : "163", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "フォーチュン★スター", - "alias_name_display" : "フォーチュン★スター", - "hash" : "77f55e048e90970b0d994f245ef32d2b", - "id" : "2509902", - "profile" : { - "bust" : "78", - "height" : "163", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "フォーチュンチアー", - "alias_name_display" : "フォーチュンチアー", - "event" : [ { - "event_id" : 1109, - "event_name" : "第9回プロダクション対抗トークバトルショー" - } ], - "hash" : "f6b9c94dd166ad83ccfaf4f85de47c66", - "id" : "2422801", - "profile" : { - "bust" : "78", - "height" : "163", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "フォーチュンチアー", - "alias_name_display" : "フォーチュンチアー", - "event" : [ { - "event_id" : 1109, - "event_name" : "第9回プロダクション対抗トークバトルショー" - } ], - "hash" : "e2bde5d2aa1f5aab95c8bb9251ab2af9", - "id" : "2522802", - "profile" : { - "bust" : "78", - "height" : "163", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ピックアップフォーチュン", - "alias_name_display" : "ピックアップフォーチュン", - "event" : [ { - "event_id" : 728, - "event_name" : "ドリームLIVEフェスティバル スプリングSP" - } ], - "hash" : "40ac8ff64cd19e3e12fe831d0da0c22a", - "id" : "2439001", - "profile" : { - "bust" : "78", - "height" : "163", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ピックアップフォーチュン", - "alias_name_display" : "ピックアップフォーチュン", - "event" : [ { - "event_id" : 728, - "event_name" : "ドリームLIVEフェスティバル スプリングSP" - } ], - "hash" : "cc04b9fd7b06293b952152aef32f4561", - "id" : "2539002", - "profile" : { - "bust" : "78", - "height" : "163", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - } ], - "idol_id" : 119, - "idol_name" : "藤居朋", - "idol_name_display" : "藤居朋", - "units" : [ { - "id" : "56", - "name" : "ミステリアスガールズ" - }, { - "id" : "92", - "name" : "ゴスペルシスターズ" - }, { - "id" : "100", - "name" : "ハートウォーマー" - } ] -}, { - "aliases" : [ { - "hash" : "e44e7611282f6c57fea4ab3fc18d6519", - "id" : "2203601", - "profile" : { - "bust" : "82", - "height" : "163", - "hip" : "81", - "waist" : "56", - "weight" : "45" - } - }, { - "hash" : "ed3863e909c00d702b232b25c6f1633a", - "id" : "2303602", - "profile" : { - "bust" : "82", - "height" : "163", - "hip" : "81", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "クーリッシュピクシー", - "alias_name_display" : "クーリッシュピクシー", - "event" : [ { - "event_id" : 204, - "event_name" : "アイドルサバイバルin動物園" - } ], - "hash" : "a6c0eff1e5c7ad9397cda888d0a3536c", - "id" : "2204601", - "profile" : { - "bust" : "82", - "height" : "163", - "hip" : "81", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "クーリッシュピクシー", - "alias_name_display" : "クーリッシュピクシー", - "event" : [ { - "event_id" : 204, - "event_name" : "アイドルサバイバルin動物園" - } ], - "hash" : "8d468d9e16245baa83cff879b722782e", - "id" : "2304602", - "profile" : { - "bust" : "82", - "height" : "163", - "hip" : "81", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ニューイヤー", - "alias_name_display" : "ニューイヤー", - "event" : [ { - "event_id" : 404, - "event_name" : "新春アイドルプロデュース" - } ], - "hash" : "82b476bcab7ef6f64617900a063971c3", - "id" : "2207501", - "profile" : { - "bust" : "82", - "height" : "163", - "hip" : "81", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ニューイヤー", - "alias_name_display" : "ニューイヤー", - "event" : [ { - "event_id" : 404, - "event_name" : "新春アイドルプロデュース" - } ], - "hash" : "7414eee0038d5be21fb8b12014d6bd02", - "id" : "2307502", - "profile" : { - "bust" : "82", - "height" : "163", - "hip" : "81", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ビーチスタイル", - "alias_name_display" : "ビーチスタイル", - "hash" : "5a0ea0a69a45d7d201112ed7b15e3e19", - "id" : "2214001", - "profile" : { - "bust" : "82", - "height" : "163", - "hip" : "81", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ビーチスタイル", - "alias_name_display" : "ビーチスタイル", - "hash" : "cae2e7f102323cdbf0a2493dad6dce60", - "id" : "2314002", - "profile" : { - "bust" : "82", - "height" : "163", - "hip" : "81", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ミッドナイトフェアリー", - "alias_name_display" : "ミッドナイトフェアリー", - "hash" : "f3c0fc3102be01d6f7ae5f3b0c40f647", - "id" : "2403201", - "profile" : { - "bust" : "82", - "height" : "163", - "hip" : "81", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ミッドナイトフェアリー", - "alias_name_display" : "ミッドナイトフェアリー", - "hash" : "718611eef304cc92ed0363ef1632ce08", - "id" : "2503202", - "profile" : { - "bust" : "82", - "height" : "163", - "hip" : "81", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "あやかし京娘", - "alias_name_display" : "あやかし京娘", - "event" : [ { - "event_id" : 701, - "event_name" : "ドリームLIVEフェスティバル" - } ], - "hash" : "4a3edc8d2d1db05a999c497b87898bc4", - "id" : "2407201", - "profile" : { - "bust" : "82", - "height" : "163", - "hip" : "81", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "あやかし京娘", - "alias_name_display" : "あやかし京娘", - "event" : [ { - "event_id" : 701, - "event_name" : "ドリームLIVEフェスティバル" - } ], - "hash" : "954f509fc6b0bb872d155c824336ca48", - "id" : "2507202", - "profile" : { - "bust" : "82", - "height" : "163", - "hip" : "81", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ブルーサマーヘブン", - "alias_name_display" : "ブルーサマーヘブン", - "hash" : "d2573b1a26b8652a0ea85b0bb574b48d", - "id" : "2415601", - "profile" : { - "bust" : "82", - "height" : "163", - "hip" : "81", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ブルーサマーヘブン", - "alias_name_display" : "ブルーサマーヘブン", - "hash" : "02e831b53db390644097ce0541e224d7", - "id" : "2515602", - "profile" : { - "bust" : "82", - "height" : "163", - "hip" : "81", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "想いひとひら", - "alias_name_display" : "想いひとひら", - "hash" : "9b78b0d2576534f5ac5977120d760159", - "id" : "2423201", - "profile" : { - "bust" : "82", - "height" : "163", - "hip" : "81", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "想いひとひら", - "alias_name_display" : "想いひとひら", - "hash" : "a0dbd59124757f6c961c5320d9ff2450", - "id" : "2523202", - "profile" : { - "bust" : "82", - "height" : "163", - "hip" : "81", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "シンデレラガール", - "alias_name_display" : "シンデレラガール", - "hash" : "c62f2df674d821857397b2b62371012e", - "id" : "2424801", - "profile" : { - "bust" : "82", - "height" : "163", - "hip" : "81", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "シンデレラガール", - "alias_name_display" : "シンデレラガール", - "hash" : "a7886ce9ac3c5eafd81f8b14cee2d2fc", - "id" : "2524802", - "profile" : { - "bust" : "82", - "height" : "163", - "hip" : "81", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "fb292dd3c101e5c65d16c5e4467cf434", - "id" : "2428501", - "profile" : { - "bust" : "82", - "height" : "163", - "hip" : "81", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "26f9c950a0f6085e83da36f350d0851f", - "id" : "2528502", - "profile" : { - "bust" : "82", - "height" : "163", - "hip" : "81", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "アニバーサリープリンセス", - "alias_name_display" : "アニバーサリープリンセス", - "event" : [ { - "event_id" : 1704, - "event_name" : "アイドルプロデュース the 4th Anniversary" - } ], - "hash" : "4539562c95ef1000bcc72e8a50d1e00f", - "id" : "2428801", - "profile" : { - "bust" : "82", - "height" : "163", - "hip" : "81", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "アニバーサリープリンセス", - "alias_name_display" : "アニバーサリープリンセス", - "event" : [ { - "event_id" : 1704, - "event_name" : "アイドルプロデュース the 4th Anniversary" - } ], - "hash" : "89c64f8de6b5d1a9711d943eb66e1478", - "id" : "2528802", - "profile" : { - "bust" : "82", - "height" : "163", - "hip" : "81", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "シンデレラドリーム", - "alias_name_display" : "シンデレラドリーム", - "hash" : "0098b967f649fc47bdc99feefbedb9fc", - "id" : "2433801", - "profile" : { - "bust" : "82", - "height" : "163", - "hip" : "81", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "シンデレラドリーム", - "alias_name_display" : "シンデレラドリーム", - "hash" : "624e30edd0c2d459e2c70b2ef491cab0", - "id" : "2533802", - "profile" : { - "bust" : "82", - "height" : "163", - "hip" : "81", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "湯けむり舞娘", - "alias_name_display" : "湯けむり舞娘", - "hash" : "71e4c4b47b167ba9e37188547a8a9678", - "id" : "2435801", - "profile" : { - "bust" : "82", - "height" : "163", - "hip" : "81", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "湯けむり舞娘", - "alias_name_display" : "湯けむり舞娘", - "hash" : "ffd90fbb737f2862939442ffc009a270", - "id" : "2535802", - "profile" : { - "bust" : "82", - "height" : "163", - "hip" : "81", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "花明り夜風", - "alias_name_display" : "花明り夜風", - "event" : [ { - "event_id" : 1907, - "event_name" : "ディアリースタークエスト ~夜桜奇譚~" - } ], - "hash" : "6a1356d5eb2db0859810887e0eb46deb", - "id" : "2439201", - "profile" : { - "bust" : "82", - "height" : "163", - "hip" : "81", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "花明り夜風", - "alias_name_display" : "花明り夜風", - "event" : [ { - "event_id" : 1907, - "event_name" : "ディアリースタークエスト ~夜桜奇譚~" - } ], - "hash" : "e02867846f13e03eb619cb5e9bddae89", - "id" : "2539202", - "profile" : { - "bust" : "82", - "height" : "163", - "hip" : "81", - "waist" : "56", - "weight" : "45" - } - } ], - "idol_id" : 120, - "idol_name" : "塩見周子", - "idol_name_display" : "塩見周子", - "units" : [ { - "id" : "36", - "name" : "テンプテーション・アイズ" - }, { - "id" : "41", - "name" : "羽衣小町" - }, { - "id" : "126", - "name" : "誘惑イビル" - }, { - "id" : "185", - "name" : "LiPPS" - }, { - "id" : "200", - "name" : "CAERULA" - }, { - "id" : "205", - "name" : "シンデレラガール" - }, { - "id" : "215", - "name" : "Project:Krone" - } ] -}, { - "aliases" : [ { - "hash" : "e679dff816d61f7dde0816dd34799270", - "id" : "2203701", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "38" - } - }, { - "hash" : "965021a44894a7832a1f88f0e9f742d4", - "id" : "2303702", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "38" - } - }, { - "alias_name" : "レインドロップ", - "alias_name_display" : "レインドロップ", - "event" : [ { - "event_id" : 407, - "event_name" : "アイドルプロデュース 鎌倉あじさい巡り" - } ], - "hash" : "ca4d85ca12153e208803d8380c003580", - "id" : "2210101", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "38" - } - }, { - "alias_name" : "レインドロップ", - "alias_name_display" : "レインドロップ", - "event" : [ { - "event_id" : 407, - "event_name" : "アイドルプロデュース 鎌倉あじさい巡り" - } ], - "hash" : "851c54b6959c755c24deec013072c3c5", - "id" : "2310102", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "38" - } - }, { - "alias_name" : "レインドロップスマイル", - "alias_name_display" : "レインドロップスマイル", - "event" : [ { - "event_id" : 407, - "event_name" : "アイドルプロデュース 鎌倉あじさい巡り" - } ], - "hash" : "78caf5509e0af127c00a4c5f1a3cf2ef", - "id" : "2210201", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "38" - } - }, { - "alias_name" : "レインドロップスマイル", - "alias_name_display" : "レインドロップスマイル", - "event" : [ { - "event_id" : 407, - "event_name" : "アイドルプロデュース 鎌倉あじさい巡り" - } ], - "hash" : "c49ce83bd2e36615d94720836a96f4e2", - "id" : "2310202", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "38" - } - }, { - "alias_name" : "ハッピーウェディング", - "alias_name_display" : "ハッピーウェディング", - "hash" : "9c15bd84b69f2ff6921fc3320f180f98", - "id" : "2216101", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "38" - } - }, { - "alias_name" : "ハッピーウェディング", - "alias_name_display" : "ハッピーウェディング", - "hash" : "68fa76ac2cf3a756f256ef50f76f6d76", - "id" : "2316102", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "38" - } - }, { - "alias_name" : "ちいさなドキドキ", - "alias_name_display" : "ちいさなドキドキ", - "event" : [ { - "event_id" : 709, - "event_name" : "第9回ドリームLIVEフェスティバル" - } ], - "hash" : "eb3b7cb3832c161a6ec05b130551948c", - "id" : "2218501", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "38" - } - }, { - "alias_name" : "ちいさなドキドキ", - "alias_name_display" : "ちいさなドキドキ", - "event" : [ { - "event_id" : 709, - "event_name" : "第9回ドリームLIVEフェスティバル" - } ], - "hash" : "0e03f797721d272186d8d21000d3e10a", - "id" : "2318502", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "38" - } - }, { - "alias_name" : "サマーバケーション", - "alias_name_display" : "サマーバケーション", - "hash" : "0600b0149f228d1f7c2eed9406b975f1", - "id" : "2222501", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "38" - } - }, { - "alias_name" : "サマーバケーション", - "alias_name_display" : "サマーバケーション", - "hash" : "3f093aa4e427556cc8add03178529d7d", - "id" : "2322502", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "38" - } - }, { - "alias_name" : "ハロウィンI.C", - "alias_name_display" : "ハロウィンI.C", - "event" : [ { - "event_id" : 1213, - "event_name" : "目指せお菓子なハロウィン アイドルチャレンジ" - } ], - "hash" : "d351c995d88a79e786bfea5fca55bf01", - "id" : "2329002", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "38" - } - }, { - "alias_name" : "ポテンシャルグリーン", - "alias_name_display" : "ポテンシャルグリーン", - "hash" : "d7c92c9ee05cf097efaed72d317144e9", - "id" : "2231801", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "38" - } - }, { - "alias_name" : "ポテンシャルグリーン", - "alias_name_display" : "ポテンシャルグリーン", - "hash" : "f3966391a56ee9d7c15aefdd73303927", - "id" : "2331802", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "38" - } - }, { - "alias_name" : "ちびっこステージ", - "alias_name_display" : "ちびっこステージ", - "event" : [ { - "event_id" : 206, - "event_name" : "アイドルサバイバルin学園祭" - } ], - "hash" : "aa0172e7bb70b19bf3262e2fd7c776e1", - "id" : "2403101", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "38" - } - }, { - "alias_name" : "ちびっこステージ", - "alias_name_display" : "ちびっこステージ", - "event" : [ { - "event_id" : 206, - "event_name" : "アイドルサバイバルin学園祭" - } ], - "hash" : "6400e8cfc48ab3bf8553c16279686a85", - "id" : "2503102", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "38" - } - }, { - "alias_name" : "小さな自信家", - "alias_name_display" : "小さな自信家", - "hash" : "a69caf59d09fb1d64d1495c825a62464", - "id" : "2409501", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "38" - } - }, { - "alias_name" : "小さな自信家", - "alias_name_display" : "小さな自信家", - "hash" : "e485b6a3355e84d67d7a4302ff960aa0", - "id" : "2509502", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "38" - } - }, { - "alias_name" : "流浪の剣客", - "alias_name_display" : "流浪の剣客", - "event" : [ { - "event_id" : 517, - "event_name" : "戦国公演 風来剣客伝" - } ], - "hash" : "373e3e361b193fe691d59bb6e07508df", - "id" : "2422001", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "38" - } - }, { - "alias_name" : "流浪の剣客", - "alias_name_display" : "流浪の剣客", - "event" : [ { - "event_id" : 517, - "event_name" : "戦国公演 風来剣客伝" - } ], - "hash" : "9e486396d32ff068967105a1eb7cd139", - "id" : "2522002", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "38" - } - }, { - "alias_name" : "ちびっこファッショニスタ", - "alias_name_display" : "ちびっこファッショニスタ", - "event" : [ { - "event_id" : 1802, - "event_name" : "アイドルバラエティ 手作りライブプロジェクト!" - } ], - "hash" : "65496c8b5da8e7501713aa5d91bf38e2", - "id" : "2428601", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "38" - } - }, { - "alias_name" : "ちびっこファッショニスタ", - "alias_name_display" : "ちびっこファッショニスタ", - "event" : [ { - "event_id" : 1802, - "event_name" : "アイドルバラエティ 手作りライブプロジェクト!" - } ], - "hash" : "7242cb9dead449c0145bd41cfa681235", - "id" : "2528602", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "38" - } - }, { - "alias_name" : "グローイングガール", - "alias_name_display" : "グローイングガール", - "event" : [ { - "event_id" : 816, - "event_name" : "第16回アイドルLIVEロワイヤル" - } ], - "hash" : "d7fc5ac332b63b8bb29aaf81d686fa68", - "id" : "2431001", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "38" - } - }, { - "alias_name" : "グローイングガール", - "alias_name_display" : "グローイングガール", - "event" : [ { - "event_id" : 816, - "event_name" : "第16回アイドルLIVEロワイヤル" - } ], - "hash" : "082b1e80f7cbee317080ad10e2c9ca89", - "id" : "2531002", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "38" - } - }, { - "alias_name" : "ちびっこヴァンパイア", - "alias_name_display" : "ちびっこヴァンパイア", - "event" : [ { - "event_id" : 1213, - "event_name" : "目指せお菓子なハロウィン アイドルチャレンジ" - } ], - "hash" : "581612c7e3065718170759e2cebb1041", - "id" : "2435401", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "38" - } - }, { - "alias_name" : "ちびっこヴァンパイア", - "alias_name_display" : "ちびっこヴァンパイア", - "event" : [ { - "event_id" : 1213, - "event_name" : "目指せお菓子なハロウィン アイドルチャレンジ" - } ], - "hash" : "bebc047b25dc019ba8a1e6f4e03f675c", - "id" : "2535402", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "38" - } - }, { - "alias_name" : "せくしーヴァンパイア", - "alias_name_display" : "せくしーヴァンパイア", - "event" : [ { - "event_id" : 1213, - "event_name" : "目指せお菓子なハロウィン アイドルチャレンジ" - } ], - "hash" : "900261437894a61053e9aa69940c9615", - "id" : "2435501", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "38" - } - }, { - "alias_name" : "せくしーヴァンパイア", - "alias_name_display" : "せくしーヴァンパイア", - "event" : [ { - "event_id" : 1213, - "event_name" : "目指せお菓子なハロウィン アイドルチャレンジ" - } ], - "hash" : "65c1d041ea9ed32748e96188870b56f5", - "id" : "2535502", - "profile" : { - "bust" : "72", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "38" - } - } ], - "idol_id" : 121, - "idol_name" : "脇山珠美", - "idol_name_display" : "脇山珠美", - "units" : [ { - "id" : "38", - "name" : "忍武☆繚乱" - }, { - "id" : "106", - "name" : "レインドロップ" - }, { - "id" : "156", - "name" : "センゴク☆華☆ランブ" - }, { - "id" : "178", - "name" : "からぱれ" - }, { - "id" : "179", - "name" : "春霞" - } ] -}, { - "aliases" : [ { - "hash" : "b57af23a2c131cc8b45dd49a20f76df0", - "id" : "2204101", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "hash" : "ddf08d575bf37d507eebd3a6150ac8a7", - "id" : "2304102", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "小さな一歩", - "alias_name_display" : "小さな一歩", - "event" : [ { - "event_id" : 701, - "event_name" : "ドリームLIVEフェスティバル" - } ], - "hash" : "9a8a08cb1cc77514779a32341079588e", - "id" : "2210501", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "小さな一歩", - "alias_name_display" : "小さな一歩", - "event" : [ { - "event_id" : 701, - "event_name" : "ドリームLIVEフェスティバル" - } ], - "hash" : "8b2b5aaf046e3c52c73b3993fea37768", - "id" : "2310502", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ショコラフレーバー", - "alias_name_display" : "ショコラフレーバー", - "event" : [ { - "event_id" : 411, - "event_name" : "アイドルプロデュース チョコレートフォーユー!" - } ], - "hash" : "788177b829cd93ef13581f7db56bdf15", - "id" : "2214301", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ショコラフレーバー", - "alias_name_display" : "ショコラフレーバー", - "event" : [ { - "event_id" : 411, - "event_name" : "アイドルプロデュース チョコレートフォーユー!" - } ], - "hash" : "50f794509606aab019899e5112533408", - "id" : "2314302", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ショコラフレーバー・S", - "alias_name_display" : "ショコラフレーバー・S", - "event" : [ { - "event_id" : 411, - "event_name" : "アイドルプロデュース チョコレートフォーユー!" - } ], - "hash" : "69ce323535350959960d423371d20bcc", - "id" : "2214401", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ショコラフレーバー・S", - "alias_name_display" : "ショコラフレーバー・S", - "event" : [ { - "event_id" : 411, - "event_name" : "アイドルプロデュース チョコレートフォーユー!" - } ], - "hash" : "d23dc2cedc767125189e31dd34e486a0", - "id" : "2314402", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "メルヘンアニマルズ", - "alias_name_display" : "メルヘンアニマルズ", - "hash" : "88ff421d2eca339de73a627e8292fb27", - "id" : "2217301", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "メルヘンアニマルズ", - "alias_name_display" : "メルヘンアニマルズ", - "hash" : "12b90def5bb388a39679557f35ecca52", - "id" : "2317302", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "新春I.C", - "alias_name_display" : "新春I.C", - "event" : [ { - "event_id" : 1204, - "event_name" : "新年かくし芸SP アイドルチャレンジ" - } ], - "hash" : "53d7f758c8a85691276337c98d0df6d1", - "id" : "2319402", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "さわやかスポーツ", - "alias_name_display" : "さわやかスポーツ", - "hash" : "e509f8e6dcb2719a45e65af224a5a2cb", - "id" : "2223301", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "さわやかスポーツ", - "alias_name_display" : "さわやかスポーツ", - "hash" : "032a8edcd9d3d015114934eb0a0e0279", - "id" : "2323302", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "T.B.チアーズ", - "alias_name_display" : "T.B.チアーズ", - "event" : [ { - "event_id" : 1506, - "event_name" : "第6回チーム対抗トークバトルショー" - } ], - "hash" : "23f7344f24328f4e3686cfb2e115bb94", - "id" : "2225501", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "T.B.チアーズ", - "alias_name_display" : "T.B.チアーズ", - "event" : [ { - "event_id" : 1506, - "event_name" : "第6回チーム対抗トークバトルショー" - } ], - "hash" : "ea8b4ce81f9c11e52f0032daf3388ffa", - "id" : "2325502", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ガーリーポッシブ", - "alias_name_display" : "ガーリーポッシブ", - "hash" : "868dc6accad9dfd7b5f3192a7e989345", - "id" : "2228601", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ガーリーポッシブ", - "alias_name_display" : "ガーリーポッシブ", - "hash" : "ba758417f5b2c50e967f9fe9fe245a1e", - "id" : "2328602", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "爛漫ひな娘", - "alias_name_display" : "爛漫ひな娘", - "event" : [ { - "event_id" : 209, - "event_name" : "アイドルサバイバルひな祭り2013" - } ], - "hash" : "7e8f66cd2d59a765f82207a6979ece5d", - "id" : "2405501", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "爛漫ひな娘", - "alias_name_display" : "爛漫ひな娘", - "event" : [ { - "event_id" : 209, - "event_name" : "アイドルサバイバルひな祭り2013" - } ], - "hash" : "da50d7db5e589095e50bec4974577e56", - "id" : "2505502", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "プラネットスター", - "alias_name_display" : "プラネットスター", - "event" : [ { - "event_id" : 508, - "event_name" : "LIVEツアーカーニバルinスペースワールド" - } ], - "hash" : "1f750bf1abbc39aa6fef137dc0e075b4", - "id" : "2410001", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "プラネットスター", - "alias_name_display" : "プラネットスター", - "event" : [ { - "event_id" : 508, - "event_name" : "LIVEツアーカーニバルinスペースワールド" - } ], - "hash" : "40d987790b986b93a47f6c14168a07c3", - "id" : "2510002", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "独楽の芸達者", - "alias_name_display" : "独楽の芸達者", - "event" : [ { - "event_id" : 1204, - "event_name" : "新年かくし芸SP アイドルチャレンジ" - } ], - "hash" : "d776b25c39a73d32904c274ec212f8fc", - "id" : "2420301", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "独楽の芸達者", - "alias_name_display" : "独楽の芸達者", - "event" : [ { - "event_id" : 1204, - "event_name" : "新年かくし芸SP アイドルチャレンジ" - } ], - "hash" : "7defc5e1e4339bada951464376ef1b9f", - "id" : "2520302", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "独楽の芸達者・S", - "alias_name_display" : "独楽の芸達者・S", - "event" : [ { - "event_id" : 1204, - "event_name" : "新年かくし芸SP アイドルチャレンジ" - } ], - "hash" : "1f0d0f8e9901e4e581e87542c3d50973", - "id" : "2420401", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "独楽の芸達者・S", - "alias_name_display" : "独楽の芸達者・S", - "event" : [ { - "event_id" : 1204, - "event_name" : "新年かくし芸SP アイドルチャレンジ" - } ], - "hash" : "9b560fdd5e7ff78136a79a64ca2858af", - "id" : "2520402", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ワンモアステップ", - "alias_name_display" : "ワンモアステップ", - "hash" : "14a6958b5ab32a6ac74fea57e084f78f", - "id" : "2428301", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ワンモアステップ", - "alias_name_display" : "ワンモアステップ", - "hash" : "fcd7b0930fa988a3c24a261c466e03bd", - "id" : "2528302", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "トラストテイマー", - "alias_name_display" : "トラストテイマー", - "event" : [ { - "event_id" : 1709, - "event_name" : "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" - } ], - "hash" : "4c7df96d323e08125163cc5bc0a232ea", - "id" : "2438601", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "トラストテイマー", - "alias_name_display" : "トラストテイマー", - "event" : [ { - "event_id" : 1709, - "event_name" : "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" - } ], - "hash" : "093d3b30bcfa6e493d00a8985b8066fe", - "id" : "2538602", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "スマイリーテイマー", - "alias_name_display" : "スマイリーテイマー", - "event" : [ { - "event_id" : 1709, - "event_name" : "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" - } ], - "hash" : "b3aae663a3c87f949805746c7ac66b2b", - "id" : "2438701", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "スマイリーテイマー", - "alias_name_display" : "スマイリーテイマー", - "event" : [ { - "event_id" : 1709, - "event_name" : "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" - } ], - "hash" : "4753beff820055994390f5d38cd6c31e", - "id" : "2538702", - "profile" : { - "bust" : "79", - "height" : "153", - "hip" : "80", - "waist" : "55", - "weight" : "43" - } - } ], - "idol_id" : 122, - "idol_name" : "岡崎泰葉", - "idol_name_display" : "岡崎泰葉", - "units" : [ { - "id" : "102", - "name" : "パワフルヒーラーズ" - }, { - "id" : "105", - "name" : "リトルチェリーブロッサム" - }, { - "id" : "166", - "name" : "メルヘンアニマルズ" - }, { - "id" : "172", - "name" : "GIRLS BE NEXT STEP" - } ] -}, { - "aliases" : [ { - "hash" : "e50a31a7e529103da461ae20d1da2140", - "id" : "2205301", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "hash" : "63f9b6f318bddcb60af2cf3e621f2175", - "id" : "2305302", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ハッピーバレンタイン", - "alias_name_display" : "ハッピーバレンタイン", - "event" : [ { - "event_id" : 405, - "event_name" : "アイドルプロデュース バレンタイン編" - } ], - "hash" : "5d859042cb0d19e91ac36d75a8211c6b", - "id" : "2208101", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ハッピーバレンタイン", - "alias_name_display" : "ハッピーバレンタイン", - "event" : [ { - "event_id" : 405, - "event_name" : "アイドルプロデュース バレンタイン編" - } ], - "hash" : "cbb8818bd27d3391e77bbff12bd978cd", - "id" : "2308102", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "スマイルバレンタイン", - "alias_name_display" : "スマイルバレンタイン", - "event" : [ { - "event_id" : 405, - "event_name" : "アイドルプロデュース バレンタイン編" - } ], - "hash" : "a388f7b32e253232d63b6b39fa9d6e6a", - "id" : "2208201", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "スマイルバレンタイン", - "alias_name_display" : "スマイルバレンタイン", - "event" : [ { - "event_id" : 405, - "event_name" : "アイドルプロデュース バレンタイン編" - } ], - "hash" : "3f837080e8800fbbe6c85258f40dab97", - "id" : "2308202", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "セレクテッド", - "alias_name_display" : "セレクテッド", - "hash" : "2c187df2b259b1e01d46c2868304cd17", - "id" : "2222701", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "セレクテッド", - "alias_name_display" : "セレクテッド", - "hash" : "ab4dfb0bebdc39a536b7f008fa041052", - "id" : "2322702", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "蒼翼の乙女", - "alias_name_display" : "蒼翼の乙女", - "hash" : "6975e9bc563b357783e3314efec0bef9", - "id" : "2406001", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "蒼翼の乙女", - "alias_name_display" : "蒼翼の乙女", - "hash" : "bcabb6bef0c899516b59ab44dc701efa", - "id" : "2506002", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "夜色の花嫁", - "alias_name_display" : "夜色の花嫁", - "hash" : "0231e453de83dea96397acc7f45b7731", - "id" : "2410601", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "夜色の花嫁", - "alias_name_display" : "夜色の花嫁", - "hash" : "bed2e9671e9378d70ba5e073180c7adc", - "id" : "2510602", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "チアリングスター", - "alias_name_display" : "チアリングスター", - "event" : [ { - "event_id" : 1101, - "event_name" : "プロダクション対抗トークバトルショー" - } ], - "hash" : "9f20eaddbc42ec976f862e83d7d6cf5d", - "id" : "2413001", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "チアリングスター", - "alias_name_display" : "チアリングスター", - "event" : [ { - "event_id" : 1101, - "event_name" : "プロダクション対抗トークバトルショー" - } ], - "hash" : "d96d08d63893c62dde9015bf1efe1554", - "id" : "2513002", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "追憶のヴァニタス", - "alias_name_display" : "追憶のヴァニタス", - "hash" : "a528c4946a755e454146149b4c5afc34", - "id" : "2417801", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "追憶のヴァニタス", - "alias_name_display" : "追憶のヴァニタス", - "hash" : "0b292926907dd6bbc279f1e6be1f5fd6", - "id" : "2517802", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "9db93440a6646d776844ea187394870a", - "id" : "2421401", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "c7fecadb9feb6558ebe7320a7fbaa902", - "id" : "2521402", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ミッドナイトレイヴ", - "alias_name_display" : "ミッドナイトレイヴ", - "hash" : "4c75721b64da4ee43ab0a67e51e394b6", - "id" : "2422401", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ミッドナイトレイヴ", - "alias_name_display" : "ミッドナイトレイヴ", - "hash" : "8b1c20dd3e050fb08648f0216adf4186", - "id" : "2522402", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "カタルシスの華", - "alias_name_display" : "カタルシスの華", - "hash" : "48dcab45161233389d47851fafcf7de3", - "id" : "2432601", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "カタルシスの華", - "alias_name_display" : "カタルシスの華", - "hash" : "81143e7454524921e1cacdcc3913dc00", - "id" : "2532602", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "天光の乙女", - "alias_name_display" : "天光の乙女", - "hash" : "738af1adc4839585781bb40c338ad956", - "id" : "2435601", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "天光の乙女", - "alias_name_display" : "天光の乙女", - "hash" : "95d9d50a1d7378f34aaa25491b1fd0ec", - "id" : "2535602", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "84", - "waist" : "55", - "weight" : "43" - } - } ], - "idol_id" : 123, - "idol_name" : "速水奏", - "idol_name_display" : "速水奏", - "units" : [ { - "id" : "34", - "name" : "デア・アウローラ" - }, { - "id" : "55", - "name" : "ミステリアスアイズ" - }, { - "id" : "60", - "name" : "モノクロームリリィ" - }, { - "id" : "74", - "name" : "FrenchKisS" - }, { - "id" : "155", - "name" : "セレクテッド" - }, { - "id" : "160", - "name" : "ハッピーバレンタイン" - }, { - "id" : "185", - "name" : "LiPPS" - }, { - "id" : "200", - "name" : "CAERULA" - }, { - "id" : "215", - "name" : "Project:Krone" - } ] -}, { - "aliases" : [ { - "alias_name" : "ニューウェーブ", - "alias_name_display" : "ニューウェーブ", - "event" : [ { - "event_id" : 401, - "event_name" : "新人アイドルプロデュース" - } ], - "hash" : "26a9c568028c41a7a3d8b6877284ab46", - "id" : "2205401", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ニューウェーブ", - "alias_name_display" : "ニューウェーブ", - "event" : [ { - "event_id" : 401, - "event_name" : "新人アイドルプロデュース" - } ], - "hash" : "d110327ad8d38b3fe5a40a3a85447ca1", - "id" : "2305402", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "アメリカンスタイル", - "alias_name_display" : "アメリカンスタイル", - "event" : [ { - "event_id" : 501, - "event_name" : "アイドルLIVEツアーinUSA" - } ], - "hash" : "ea14850708aa5d446ecdc704d76097d1", - "id" : "2206901", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "アメリカンスタイル", - "alias_name_display" : "アメリカンスタイル", - "event" : [ { - "event_id" : 501, - "event_name" : "アイドルLIVEツアーinUSA" - } ], - "hash" : "7ac782754fe5a12b39d256706d2c022c", - "id" : "2306902", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ジューンブライド", - "alias_name_display" : "ジューンブライド", - "hash" : "daf0bbc66713287cb5cb51a87f150c55", - "id" : "2210301", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ジューンブライド", - "alias_name_display" : "ジューンブライド", - "hash" : "97419715f045627f679d352844628405", - "id" : "2310302", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ネイビーブライト", - "alias_name_display" : "ネイビーブライト", - "hash" : "077042da4ad562035613b4d1a8f18583", - "id" : "2214501", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ネイビーブライト", - "alias_name_display" : "ネイビーブライト", - "hash" : "d4499b213a934c5c68333cd2c839b1f0", - "id" : "2314502", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "振袖まつり", - "alias_name_display" : "振袖まつり", - "hash" : "cc71652b5fa848c9c53c6c9aa661afc4", - "id" : "2219501", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "振袖まつり", - "alias_name_display" : "振袖まつり", - "hash" : "abe79791b4e165347c3372ad6557774b", - "id" : "2319502", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "コンストラクタヴォイス", - "alias_name_display" : "コンストラクタヴォイス", - "event" : [ { - "event_id" : "028", - "event_name" : "第28回プロダクションマッチフェスティバル" - } ], - "hash" : "abb47054d1c415287ac5a9aa3ebb9f02", - "id" : "2226501", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "コンストラクタヴォイス", - "alias_name_display" : "コンストラクタヴォイス", - "event" : [ { - "event_id" : "028", - "event_name" : "第28回プロダクションマッチフェスティバル" - } ], - "hash" : "c0500e82db55d8753ff92b9cdb8cb895", - "id" : "2326502", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ネイビーウェーブ", - "alias_name_display" : "ネイビーウェーブ", - "event" : [ { - "event_id" : "012", - "event_name" : "第12回プロダクションマッチフェスティバル" - } ], - "hash" : "7d9e8adf8a5a5b22d5219e08745affb5", - "id" : "2409001", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ネイビーウェーブ", - "alias_name_display" : "ネイビーウェーブ", - "event" : [ { - "event_id" : "012", - "event_name" : "第12回プロダクションマッチフェスティバル" - } ], - "hash" : "27bae0d4009a858d08dced42005cdf25", - "id" : "2509002", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ビット・パフォーマー", - "alias_name_display" : "ビット・パフォーマー", - "hash" : "944d9e23c5292a2b993eb3b753c12a88", - "id" : "2416101", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "ビット・パフォーマー", - "alias_name_display" : "ビット・パフォーマー", - "hash" : "40b76c19f4311be43df320a7c739b4d9", - "id" : "2516102", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "スプラッシュマーメイド", - "alias_name_display" : "スプラッシュマーメイド", - "event" : [ { - "event_id" : 1503, - "event_name" : "チーム対抗 夏だ!プールだ!トークバトルショー" - } ], - "hash" : "ab95b7d7c331f74a0617f279f24d3c41", - "id" : "2426001", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "スプラッシュマーメイド", - "alias_name_display" : "スプラッシュマーメイド", - "event" : [ { - "event_id" : 1503, - "event_name" : "チーム対抗 夏だ!プールだ!トークバトルショー" - } ], - "hash" : "7935b5bc00980c3d280da85664b33eb0", - "id" : "2526002", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "アンブレーク", - "alias_name_display" : "アンブレーク", - "event" : [ { - "event_id" : 727, - "event_name" : "第27回ドリームLIVEフェスティバル" - } ], - "hash" : "ea4e42907f60a55e13f16bcce3df0922", - "id" : "2437901", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "55", - "weight" : "41" - } - }, { - "alias_name" : "アンブレーク", - "alias_name_display" : "アンブレーク", - "event" : [ { - "event_id" : 727, - "event_name" : "第27回ドリームLIVEフェスティバル" - } ], - "hash" : "ea24d74d3d4603863842d1464a3f82dd", - "id" : "2537902", - "profile" : { - "bust" : "83", - "height" : "157", - "hip" : "82", - "waist" : "55", - "weight" : "41" - } - } ], - "idol_id" : 124, - "idol_name" : "大石泉", - "idol_name_display" : "大石泉", - "units" : [ { - "id" : "99", - "name" : "ニューウェーブ" - }, { - "id" : "143", - "name" : "ファタ・モルガーナ" - } ] -}, { - "aliases" : [ { - "hash" : "5868502dd8fba8f476fdbc8db146dbb8", - "id" : "2205901", - "profile" : { - "bust" : "78", - "height" : "161", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - }, { - "hash" : "c934cdde656ee3dd7456abbffdcc16f7", - "id" : "2305902", - "profile" : { - "bust" : "78", - "height" : "161", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "ひな祭り", - "alias_name_display" : "ひな祭り", - "event" : [ { - "event_id" : 209, - "event_name" : "アイドルサバイバルひな祭り2013" - } ], - "hash" : "91a50215ae0c4f7b16ca3e5bfb97fb42", - "id" : "2208401", - "profile" : { - "bust" : "78", - "height" : "161", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "ひな祭り", - "alias_name_display" : "ひな祭り", - "event" : [ { - "event_id" : 209, - "event_name" : "アイドルサバイバルひな祭り2013" - } ], - "hash" : "0a427058cd1884ae4b9bea994d4460f2", - "id" : "2308402", - "profile" : { - "bust" : "78", - "height" : "161", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "不器用少女", - "alias_name_display" : "不器用少女", - "event" : [ { - "event_id" : 505, - "event_name" : "アイドルLIVEツアーinバリ島" - } ], - "hash" : "e3ea1ea710dcf9dc5d40b48e62266b8c", - "id" : "2210801", - "profile" : { - "bust" : "78", - "height" : "161", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "不器用少女", - "alias_name_display" : "不器用少女", - "event" : [ { - "event_id" : 505, - "event_name" : "アイドルLIVEツアーinバリ島" - } ], - "hash" : "766ebc989270280df6d71abeaf6c1a21", - "id" : "2310802", - "profile" : { - "bust" : "78", - "height" : "161", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "ネクストスターI.C", - "alias_name_display" : "ネクストスターI.C", - "event" : [ { - "event_id" : 1203, - "event_name" : "目指せきらきらモデル アイドルチャレンジ" - } ], - "hash" : "5fa39e583d32f69301740b638da55ccd", - "id" : "2318102", - "profile" : { - "bust" : "78", - "height" : "161", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "ステキなお手本", - "alias_name_display" : "ステキなお手本", - "hash" : "ec3a589a41c66f9918793604494c3712", - "id" : "2220801", - "profile" : { - "bust" : "78", - "height" : "161", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "ステキなお手本", - "alias_name_display" : "ステキなお手本", - "hash" : "9e96cd2d370b50c67771f9b742f212fa", - "id" : "2320802", - "profile" : { - "bust" : "78", - "height" : "161", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "ラブリーメイド", - "alias_name_display" : "ラブリーメイド", - "hash" : "eebfb715a3029f2e64c7127188fe05a8", - "id" : "2223001", - "profile" : { - "bust" : "78", - "height" : "161", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "ラブリーメイド", - "alias_name_display" : "ラブリーメイド", - "hash" : "7a9ba0f7ded5e0bfd49c5ce5f7190ce7", - "id" : "2323002", - "profile" : { - "bust" : "78", - "height" : "161", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "フェリーチェ・チョコラータ", - "alias_name_display" : "フェリーチェ・チョコラータ", - "hash" : "af9bfa83d7b23c199747d652a625b6fb", - "id" : "2230301", - "profile" : { - "bust" : "78", - "height" : "161", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "フェリーチェ・チョコラータ", - "alias_name_display" : "フェリーチェ・チョコラータ", - "hash" : "e7dd22bc2f19ee2b07e113894d4c8605", - "id" : "2330302", - "profile" : { - "bust" : "78", - "height" : "161", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "素顔の幸せ", - "alias_name_display" : "素顔の幸せ", - "event" : [ { - "event_id" : 509, - "event_name" : "新春LIVEツアーカーニバル" - } ], - "hash" : "d79715c5a47f812c15d888e6edc2099d", - "id" : "2411501", - "profile" : { - "bust" : "78", - "height" : "161", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "素顔の幸せ", - "alias_name_display" : "素顔の幸せ", - "event" : [ { - "event_id" : 509, - "event_name" : "新春LIVEツアーカーニバル" - } ], - "hash" : "6be36c841286361dee0ab1ec7aabe3e0", - "id" : "2511502", - "profile" : { - "bust" : "78", - "height" : "161", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "乙女の晴れ舞台", - "alias_name_display" : "乙女の晴れ舞台", - "hash" : "d886ae7d2ee6c6e75d64f0cac3395f1a", - "id" : "2414401", - "profile" : { - "bust" : "78", - "height" : "161", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "乙女の晴れ舞台", - "alias_name_display" : "乙女の晴れ舞台", - "hash" : "7d1819de186cf8f9528fca6f1d4aa39a", - "id" : "2514402", - "profile" : { - "bust" : "78", - "height" : "161", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "ポップ・モデル", - "alias_name_display" : "ポップ・モデル", - "event" : [ { - "event_id" : 1203, - "event_name" : "目指せきらきらモデル アイドルチャレンジ" - } ], - "hash" : "c462145536f0ea29247d2fcdca22d5f0", - "id" : "2418001", - "profile" : { - "bust" : "78", - "height" : "161", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "ポップ・モデル", - "alias_name_display" : "ポップ・モデル", - "event" : [ { - "event_id" : 1203, - "event_name" : "目指せきらきらモデル アイドルチャレンジ" - } ], - "hash" : "2fc6d78808a0fc99c2f87af1b407a0bc", - "id" : "2518002", - "profile" : { - "bust" : "78", - "height" : "161", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "ポップ・モデル・S", - "alias_name_display" : "ポップ・モデル・S", - "event" : [ { - "event_id" : 1203, - "event_name" : "目指せきらきらモデル アイドルチャレンジ" - } ], - "hash" : "1f12deed69f1ec3e24042945968de5bf", - "id" : "2418101", - "profile" : { - "bust" : "78", - "height" : "161", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "ポップ・モデル・S", - "alias_name_display" : "ポップ・モデル・S", - "event" : [ { - "event_id" : 1203, - "event_name" : "目指せきらきらモデル アイドルチャレンジ" - } ], - "hash" : "44a8cbbd7175a5031b9c5d5a1b8df1e4", - "id" : "2518102", - "profile" : { - "bust" : "78", - "height" : "161", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "一心入魂", - "alias_name_display" : "一心入魂", - "event" : [ { - "event_id" : 1507, - "event_name" : "チーム対抗トークバトルショー オールスターSP" - } ], - "hash" : "c614169557b2369b2eaa6a9b1c2bf286", - "id" : "2432701", - "profile" : { - "bust" : "78", - "height" : "161", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - }, { - "alias_name" : "一心入魂", - "alias_name_display" : "一心入魂", - "event" : [ { - "event_id" : 1507, - "event_name" : "チーム対抗トークバトルショー オールスターSP" - } ], - "hash" : "49313322c5fd3c9bed6e752b20b7dcd9", - "id" : "2532702", - "profile" : { - "bust" : "78", - "height" : "161", - "hip" : "81", - "waist" : "54", - "weight" : "45" - } - } ], - "idol_id" : 125, - "idol_name" : "松尾千鶴", - "idol_name_display" : "松尾千鶴", - "units" : [ { - "id" : "130", - "name" : "GIRLS BE" - }, { - "id" : "172", - "name" : "GIRLS BE NEXT STEP" - } ] -}, { - "aliases" : [ { - "hash" : "5e2ce56ce241f77692f5ba6723149452", - "id" : "2206801", - "profile" : { - "bust" : "73", - "height" : "149", - "hip" : "76", - "waist" : "55", - "weight" : "38" - } - }, { - "hash" : "9c09179c9e3691aad4af06c0d33fa5bc", - "id" : "2306802", - "profile" : { - "bust" : "73", - "height" : "149", - "hip" : "76", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "メルヘン&ゴシック", - "alias_name_display" : "メルヘン&ゴシック", - "hash" : "560577bc6c3151c185624adb2d10b427", - "id" : "2208501", - "profile" : { - "bust" : "73", - "height" : "149", - "hip" : "76", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "メルヘン&ゴシック", - "alias_name_display" : "メルヘン&ゴシック", - "hash" : "d3596c108c2e5d1a2c5fba20653d3964", - "id" : "2308502", - "profile" : { - "bust" : "73", - "height" : "149", - "hip" : "76", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "ハロウィンナイト", - "alias_name_display" : "ハロウィンナイト", - "hash" : "4a12dd2f01f425e3ac788cbf487dccd2", - "id" : "2212201", - "profile" : { - "bust" : "73", - "height" : "149", - "hip" : "76", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "ハロウィンナイト", - "alias_name_display" : "ハロウィンナイト", - "hash" : "47a8929ca558f11bb722ddd61658aa92", - "id" : "2312202", - "profile" : { - "bust" : "73", - "height" : "149", - "hip" : "76", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "メルヘンブック", - "alias_name_display" : "メルヘンブック", - "hash" : "91c804725622c458fb9ab4978c12c0f2", - "id" : "2224401", - "profile" : { - "bust" : "73", - "height" : "149", - "hip" : "76", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "メルヘンブック", - "alias_name_display" : "メルヘンブック", - "hash" : "15444a20ee24d046fb2ee462fe82fbfd", - "id" : "2324402", - "profile" : { - "bust" : "73", - "height" : "149", - "hip" : "76", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "ネガティヴ乙女", - "alias_name_display" : "ネガティヴ乙女", - "event" : [ { - "event_id" : "010", - "event_name" : "第10回プロダクションマッチフェスティバル" - } ], - "hash" : "c9e92786947e1a2ae30990d7696c8345", - "id" : "2406801", - "profile" : { - "bust" : "73", - "height" : "149", - "hip" : "76", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "ネガティヴ乙女", - "alias_name_display" : "ネガティヴ乙女", - "event" : [ { - "event_id" : "010", - "event_name" : "第10回プロダクションマッチフェスティバル" - } ], - "hash" : "1ec11feb35f4b8aa22a14e8fd8763a96", - "id" : "2506802", - "profile" : { - "bust" : "73", - "height" : "149", - "hip" : "76", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "ショコラバレンタイン", - "alias_name_display" : "ショコラバレンタイン", - "event" : [ { - "event_id" : 411, - "event_name" : "アイドルプロデュース チョコレートフォーユー!" - } ], - "hash" : "2ff046908bbb217d3032a291e9ce7b50", - "id" : "2412301", - "profile" : { - "bust" : "73", - "height" : "149", - "hip" : "76", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "ショコラバレンタイン", - "alias_name_display" : "ショコラバレンタイン", - "event" : [ { - "event_id" : 411, - "event_name" : "アイドルプロデュース チョコレートフォーユー!" - } ], - "hash" : "cec8ca056124d304b5e6b55824ff2f1e", - "id" : "2512302", - "profile" : { - "bust" : "73", - "height" : "149", - "hip" : "76", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "ショコラ・スマイル", - "alias_name_display" : "ショコラ・スマイル", - "event" : [ { - "event_id" : 411, - "event_name" : "アイドルプロデュース チョコレートフォーユー!" - } ], - "hash" : "79e7740f472cd2c8bb682acd39749e35", - "id" : "2412401", - "profile" : { - "bust" : "73", - "height" : "149", - "hip" : "76", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "ショコラ・スマイル", - "alias_name_display" : "ショコラ・スマイル", - "event" : [ { - "event_id" : 411, - "event_name" : "アイドルプロデュース チョコレートフォーユー!" - } ], - "hash" : "6430f72f3cbf56e0e3d2fd4245e18c14", - "id" : "2512402", - "profile" : { - "bust" : "73", - "height" : "149", - "hip" : "76", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "困惑の小リス", - "alias_name_display" : "困惑の小リス", - "hash" : "b88133ff50c072f82fd693cd978fb5b1", - "id" : "2417201", - "profile" : { - "bust" : "73", - "height" : "149", - "hip" : "76", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "困惑の小リス", - "alias_name_display" : "困惑の小リス", - "hash" : "d1b146a936a57f7226f823a8168bc63d", - "id" : "2517202", - "profile" : { - "bust" : "73", - "height" : "149", - "hip" : "76", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "おどおど狩人", - "alias_name_display" : "おどおど狩人", - "event" : [ { - "event_id" : 518, - "event_name" : "御伽公演 ふれあい狼と小さな赤ずきんちゃん" - } ], - "hash" : "3c540d8876286f851cd0094779fff4f3", - "id" : "2423301", - "profile" : { - "bust" : "73", - "height" : "149", - "hip" : "76", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "おどおど狩人", - "alias_name_display" : "おどおど狩人", - "event" : [ { - "event_id" : 518, - "event_name" : "御伽公演 ふれあい狼と小さな赤ずきんちゃん" - } ], - "hash" : "41149651c1bab97e7affc92db00e41a8", - "id" : "2523302", - "profile" : { - "bust" : "73", - "height" : "149", - "hip" : "76", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "迷々エスケープ", - "alias_name_display" : "迷々エスケープ", - "event" : [ { - "event_id" : 813, - "event_name" : "第13回アイドルLIVEロワイヤル" - } ], - "hash" : "b8f74bf0a450467938b45e0bb1886615", - "id" : "2425601", - "profile" : { - "bust" : "73", - "height" : "149", - "hip" : "76", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "迷々エスケープ", - "alias_name_display" : "迷々エスケープ", - "event" : [ { - "event_id" : 813, - "event_name" : "第13回アイドルLIVEロワイヤル" - } ], - "hash" : "8272eb1670965488afb2cec0ff3ad314", - "id" : "2525602", - "profile" : { - "bust" : "73", - "height" : "149", - "hip" : "76", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "イースターハプニング", - "alias_name_display" : "イースターハプニング", - "event" : [ { - "event_id" : 720, - "event_name" : "第20回ドリームLIVEフェスティバル" - } ], - "hash" : "e15ddf799ec1549fa0c5da5c387bbac3", - "id" : "2431901", - "profile" : { - "bust" : "73", - "height" : "149", - "hip" : "76", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "イースターハプニング", - "alias_name_display" : "イースターハプニング", - "event" : [ { - "event_id" : 720, - "event_name" : "第20回ドリームLIVEフェスティバル" - } ], - "hash" : "8843edbf60141fe58688c10800de5de5", - "id" : "2531902", - "profile" : { - "bust" : "73", - "height" : "149", - "hip" : "76", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "エスケープブライド", - "alias_name_display" : "エスケープブライド", - "hash" : "56f0586ed2e674e1f29e4b001bf2184a", - "id" : "2435301", - "profile" : { - "bust" : "73", - "height" : "149", - "hip" : "76", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "エスケープブライド", - "alias_name_display" : "エスケープブライド", - "hash" : "a55383925d3c72058386acb662f47aa2", - "id" : "2535302", - "profile" : { - "bust" : "73", - "height" : "149", - "hip" : "76", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "小さなかくれんぼ", - "alias_name_display" : "小さなかくれんぼ", - "hash" : "fe787e19422e90f906eb7776da2f8615", - "id" : "2439401", - "profile" : { - "bust" : "73", - "height" : "149", - "hip" : "76", - "waist" : "55", - "weight" : "38" - } - }, { - "alias_name" : "小さなかくれんぼ", - "alias_name_display" : "小さなかくれんぼ", - "hash" : "323901218db4adb11070ca80dbaa2339", - "id" : "2539402", - "profile" : { - "bust" : "73", - "height" : "149", - "hip" : "76", - "waist" : "55", - "weight" : "38" - } - } ], - "idol_id" : 126, - "idol_name" : "森久保乃々", - "idol_name_display" : "森久保乃々", - "units" : [ { - "id" : "17", - "name" : "サイレントスクリーマー" - }, { - "id" : "85", - "name" : "アンダーザデスク" - }, { - "id" : "108", - "name" : "individuals" - }, { - "id" : "129", - "name" : "ワンステップス" - }, { - "id" : "161", - "name" : "ハロウィンナイト" - }, { - "id" : "165", - "name" : "メルヘンゴシック" - }, { - "id" : "188", - "name" : "Sweetches" - } ] -}, { - "aliases" : [ { - "hash" : "a0104e1ecbb0a22937e3465955d57a8e", - "id" : "2207701", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "80", - "waist" : "54", - "weight" : "43" - } - }, { - "hash" : "27158f6d1fc32593699b521aa1101f83", - "id" : "2307702", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "80", - "waist" : "54", - "weight" : "43" - } - }, { - "alias_name" : "スターユニバース", - "alias_name_display" : "スターユニバース", - "hash" : "6ed6b0f5c83df2e71e99998dbafe53fc", - "id" : "2209601", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "80", - "waist" : "54", - "weight" : "43" - } - }, { - "alias_name" : "スターユニバース", - "alias_name_display" : "スターユニバース", - "hash" : "229936ccad688e2a935d33dee89fcd56", - "id" : "2309602", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "80", - "waist" : "54", - "weight" : "43" - } - }, { - "alias_name" : "スターリービーチ", - "alias_name_display" : "スターリービーチ", - "hash" : "4cf046b2e4af1a4be1528e73de51c253", - "id" : "2408401", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "80", - "waist" : "54", - "weight" : "43" - } - }, { - "alias_name" : "スターリービーチ", - "alias_name_display" : "スターリービーチ", - "hash" : "1434c2b1e8ac2b9526af0dbc0be53e53", - "id" : "2508402", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "80", - "waist" : "54", - "weight" : "43" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "46785dbdd571559db51149de02e3337e", - "id" : "2410401", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "80", - "waist" : "54", - "weight" : "43" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "8f65c4a7c44238a8c40c97bb372de437", - "id" : "2510402", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "80", - "waist" : "54", - "weight" : "43" - } - }, { - "alias_name" : "スノーフェアリー", - "alias_name_display" : "スノーフェアリー", - "hash" : "53fcb80b6fc212d322bdf05f433d3bce", - "id" : "2411401", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "80", - "waist" : "54", - "weight" : "43" - } - }, { - "alias_name" : "スノーフェアリー", - "alias_name_display" : "スノーフェアリー", - "hash" : "815728ce55ae99bd7b40a1d229133dad", - "id" : "2511402", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "80", - "waist" : "54", - "weight" : "43" - } - }, { - "alias_name" : "ワンダフルマジック", - "alias_name_display" : "ワンダフルマジック", - "hash" : "36b6b86a58b5c91a83b3912f744f5cef", - "id" : "2412901", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "80", - "waist" : "54", - "weight" : "43" - } - }, { - "alias_name" : "ワンダフルマジック", - "alias_name_display" : "ワンダフルマジック", - "hash" : "7b34edac94a0b9ac186db1cef78e6566", - "id" : "2512902", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "80", - "waist" : "54", - "weight" : "43" - } - }, { - "alias_name" : "スターライトスクール", - "alias_name_display" : "スターライトスクール", - "hash" : "c882ebcbdd8a554dcd903c1db47972b2", - "id" : "2418201", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "80", - "waist" : "54", - "weight" : "43" - } - }, { - "alias_name" : "スターライトスクール", - "alias_name_display" : "スターライトスクール", - "hash" : "4597cb9d276c25fe9f6bde7354a1edef", - "id" : "2518202", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "80", - "waist" : "54", - "weight" : "43" - } - }, { - "alias_name" : "ラブライカ", - "alias_name_display" : "ラブライカ", - "hash" : "a24996fcc1421174481c3333b8ea5218", - "id" : "2521502", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "80", - "waist" : "54", - "weight" : "43" - } - }, { - "alias_name" : "G4U!", - "alias_name_display" : "G4U!", - "hash" : "72fd3eb6b6c8a3b1755193c55760938d", - "id" : "2525102", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "80", - "waist" : "54", - "weight" : "43" - } - }, { - "alias_name" : "宿星ロマネスク", - "alias_name_display" : "宿星ロマネスク", - "hash" : "00d81330baf84ea61b34e6d88f8bd8a3", - "id" : "2426101", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "80", - "waist" : "54", - "weight" : "43" - } - }, { - "alias_name" : "宿星ロマネスク", - "alias_name_display" : "宿星ロマネスク", - "hash" : "cea357fbbe19630ed0a4cbb91a582717", - "id" : "2526102", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "80", - "waist" : "54", - "weight" : "43" - } - }, { - "alias_name" : "スターリーブライド", - "alias_name_display" : "スターリーブライド", - "hash" : "48ccc17ef34d4336900f4d2a61b16df8", - "id" : "2433101", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "80", - "waist" : "54", - "weight" : "43" - } - }, { - "alias_name" : "スターリーブライド", - "alias_name_display" : "スターリーブライド", - "hash" : "d731e86015162f4f2f1bc8d2fb4aa7f9", - "id" : "2533102", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "80", - "waist" : "54", - "weight" : "43" - } - }, { - "alias_name" : "雪梅の羽衣", - "alias_name_display" : "雪梅の羽衣", - "hash" : "1afd8342d44293052f586fcf12e4eb8d", - "id" : "2437201", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "80", - "waist" : "54", - "weight" : "43" - } - }, { - "alias_name" : "雪梅の羽衣", - "alias_name_display" : "雪梅の羽衣", - "hash" : "c0e1d6f4481ba3fabd64f9c6c9675156", - "id" : "2537202", - "profile" : { - "bust" : "80", - "height" : "165", - "hip" : "80", - "waist" : "54", - "weight" : "43" - } - } ], - "idol_id" : 127, - "idol_name" : "アナスタシア", - "idol_name_display" : "アナスタシア", - "units" : [ { - "id" : "3", - "name" : "あーにゃんみくにゃん" - }, { - "id" : "78", - "name" : "LOVE LAIKA" - }, { - "id" : "116", - "name" : "にゃん・にゃん・にゃん" - }, { - "id" : "141", - "name" : "トランクィル・ウィスパー" - }, { - "id" : "145", - "name" : "LOVE LAIKA with Rosenburg Engel" - }, { - "id" : "155", - "name" : "セレクテッド" - }, { - "id" : "187", - "name" : "NEX-US" - }, { - "id" : "201", - "name" : "Caskets" - }, { - "id" : "213", - "name" : "CINDERELLA PROJECT" - }, { - "id" : "215", - "name" : "Project:Krone" - } ] -}, { - "aliases" : [ { - "hash" : "bdd75aa4670e84394fa074885329d353", - "id" : "2208601", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "51" - } - }, { - "hash" : "66f5d69f9648c1bcd8f0cf357cb804ff", - "id" : "2308602", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "51" - } - }, { - "alias_name" : "テーマパーク", - "alias_name_display" : "テーマパーク", - "event" : [ { - "event_id" : 210, - "event_name" : "アイドルサバイバルinテーマパーク2013" - } ], - "hash" : "d4ed74985e0e90e83c8e6e9829e06ca2", - "id" : "2209801", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "51" - } - }, { - "alias_name" : "テーマパーク", - "alias_name_display" : "テーマパーク", - "event" : [ { - "event_id" : 210, - "event_name" : "アイドルサバイバルinテーマパーク2013" - } ], - "hash" : "77ab277a285478ee92643668e4d320f4", - "id" : "2309802", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "51" - } - }, { - "alias_name" : "ロワイヤルスタイル", - "alias_name_display" : "ロワイヤルスタイル", - "event" : [ { - "event_id" : 803, - "event_name" : "第3回アイドルLIVEロワイヤル" - } ], - "hash" : "5ea595f4fea9bde7543b507bb9a53b13", - "id" : "2214101", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "51" - } - }, { - "alias_name" : "ロワイヤルスタイル", - "alias_name_display" : "ロワイヤルスタイル", - "event" : [ { - "event_id" : 803, - "event_name" : "第3回アイドルLIVEロワイヤル" - } ], - "hash" : "21adbd340e60c5982af18b580d87049d", - "id" : "2314102", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "51" - } - }, { - "alias_name" : "バディズボンズ", - "alias_name_display" : "バディズボンズ", - "hash" : "b309e13986724c2a213d606c19a82ed2", - "id" : "2221601", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "51" - } - }, { - "alias_name" : "バディズボンズ", - "alias_name_display" : "バディズボンズ", - "hash" : "5b501a4c1349d198b2b9ee5f0a03aed3", - "id" : "2321602", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "51" - } - }, { - "alias_name" : "ハロウィンガンナー", - "alias_name_display" : "ハロウィンガンナー", - "hash" : "541d4ff6ae2186367610013d4a5b966b", - "id" : "2409601", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "51" - } - }, { - "alias_name" : "ハロウィンガンナー", - "alias_name_display" : "ハロウィンガンナー", - "hash" : "ada388db99b4fce828433ebe3e0e5833", - "id" : "2509602", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "51" - } - }, { - "alias_name" : "ヴォヤージュ・グラップラー", - "alias_name_display" : "ヴォヤージュ・グラップラー", - "hash" : "507ff18b613c769ad6af2e41c6ffd7d9", - "id" : "2413601", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "51" - } - }, { - "alias_name" : "ヴォヤージュ・グラップラー", - "alias_name_display" : "ヴォヤージュ・グラップラー", - "hash" : "64f9f11efe3ea3e156d089af6383daf5", - "id" : "2513602", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "51" - } - }, { - "alias_name" : "峻烈闘技", - "alias_name_display" : "峻烈闘技", - "event" : [ { - "event_id" : 514, - "event_name" : "功夫公演 香港大決戦" - } ], - "hash" : "d4f4da3d57f9fa884b57215a5dacccbb", - "id" : "2417901", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "51" - } - }, { - "alias_name" : "峻烈闘技", - "alias_name_display" : "峻烈闘技", - "event" : [ { - "event_id" : 514, - "event_name" : "功夫公演 香港大決戦" - } ], - "hash" : "14b55a84faefe92d20fef54ae6dfd19d", - "id" : "2517902", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "51" - } - }, { - "alias_name" : "V・ジェネラル", - "alias_name_display" : "V・ジェネラル", - "event" : [ { - "event_id" : 810, - "event_name" : "アイドルLIVEロワイヤル バレンタインSP" - } ], - "hash" : "07acb4080f5ab49d5e122849994e21ec", - "id" : "2421601", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "51" - } - }, { - "alias_name" : "V・ジェネラル", - "alias_name_display" : "V・ジェネラル", - "event" : [ { - "event_id" : 810, - "event_name" : "アイドルLIVEロワイヤル バレンタインSP" - } ], - "hash" : "827a6122f087530b62b045dd10e1024a", - "id" : "2521602", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "51" - } - }, { - "alias_name" : "フォワードチアー", - "alias_name_display" : "フォワードチアー", - "event" : [ { - "event_id" : 1504, - "event_name" : "第4回チーム対抗トークバトルショー" - } ], - "hash" : "3e53dc3355ec6ba2d0e7ade9878ea440", - "id" : "2427401", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "51" - } - }, { - "alias_name" : "フォワードチアー", - "alias_name_display" : "フォワードチアー", - "event" : [ { - "event_id" : 1504, - "event_name" : "第4回チーム対抗トークバトルショー" - } ], - "hash" : "f4edb567d2d54063babfa277b6716e8c", - "id" : "2527402", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "51" - } - }, { - "alias_name" : "パーフェクトプレデター", - "alias_name_display" : "パーフェクトプレデター", - "event" : [ { - "event_id" : 1210, - "event_name" : "アイドルチャレンジ サバイバルゲーム編" - } ], - "hash" : "dd4b44c6df0f6e78a9c10459a4101093", - "id" : "2432201", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "51" - } - }, { - "alias_name" : "パーフェクトプレデター", - "alias_name_display" : "パーフェクトプレデター", - "event" : [ { - "event_id" : 1210, - "event_name" : "アイドルチャレンジ サバイバルゲーム編" - } ], - "hash" : "f6c27f4e984ec5c984d985b61c05d58a", - "id" : "2532202", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "51" - } - }, { - "alias_name" : "煩悩ビートアウト", - "alias_name_display" : "煩悩ビートアウト", - "event" : [ { - "event_id" : 726, - "event_name" : "ドリームLIVEフェスティバル新春SP" - } ], - "hash" : "f575c75aca75758a1c6505917a35300d", - "id" : "2437101", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "51" - } - }, { - "alias_name" : "煩悩ビートアウト", - "alias_name_display" : "煩悩ビートアウト", - "event" : [ { - "event_id" : 726, - "event_name" : "ドリームLIVEフェスティバル新春SP" - } ], - "hash" : "3fd70cf35e090606cfb1d891b35fb013", - "id" : "2537102", - "profile" : { - "bust" : "92", - "height" : "165", - "hip" : "85", - "waist" : "60", - "weight" : "51" - } - } ], - "idol_id" : 128, - "idol_name" : "大和亜季", - "idol_name_display" : "大和亜季", - "units" : [ { - "id" : "121", - "name" : "ヘルシーサバイブ" - }, { - "id" : "176", - "name" : "炎陣" - }, { - "id" : "208", - "name" : "ロワイヤルスタイル" - } ] -}, { - "aliases" : [ { - "hash" : "dfa875a32faa00241a4fbe09310f9c7f", - "id" : "2209901", - "profile" : { - "bust" : "74", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "37" - } - }, { - "hash" : "2568eae8707de2024d268ec56e553adf", - "id" : "2309902", - "profile" : { - "bust" : "74", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "37" - } - }, { - "alias_name" : "バニーガール", - "alias_name_display" : "バニーガール", - "hash" : "a013ffd163e3c20a807def1b83c0a6b1", - "id" : "2211601", - "profile" : { - "bust" : "74", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "37" - } - }, { - "alias_name" : "バニーガール", - "alias_name_display" : "バニーガール", - "hash" : "1ac8bfee87f2f11f3e9dd0c54ca3e953", - "id" : "2311602", - "profile" : { - "bust" : "74", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "37" - } - }, { - "alias_name" : "ロワイヤルスタイルNP", - "alias_name_display" : "ロワイヤルスタイルNP", - "event" : [ { - "event_id" : 804, - "event_name" : "第4回アイドルLIVEロワイヤル" - } ], - "hash" : "f0b8b5cf58bb8c5406140058f5a849f0", - "id" : "2214901", - "profile" : { - "bust" : "74", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "37" - } - }, { - "alias_name" : "ロワイヤルスタイルNP", - "alias_name_display" : "ロワイヤルスタイルNP", - "event" : [ { - "event_id" : 804, - "event_name" : "第4回アイドルLIVEロワイヤル" - } ], - "hash" : "29d1a6d210cf95036da6ba9a48c052e0", - "id" : "2314902", - "profile" : { - "bust" : "74", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "37" - } - }, { - "alias_name" : "ブライダルセレクション", - "alias_name_display" : "ブライダルセレクション", - "hash" : "4d145211fe71e1d11c6d7a44d1cb8c76", - "id" : "2221301", - "profile" : { - "bust" : "74", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "37" - } - }, { - "alias_name" : "ブライダルセレクション", - "alias_name_display" : "ブライダルセレクション", - "hash" : "88d2abc4439dbca86dc9f64c50df81e1", - "id" : "2321302", - "profile" : { - "bust" : "74", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "37" - } - }, { - "alias_name" : "ナデシコI.C", - "alias_name_display" : "ナデシコI.C", - "event" : [ { - "event_id" : 1207, - "event_name" : "目指せ大和撫子 アイドルチャレンジ" - } ], - "hash" : "0912cff2743a72d74ddb27ba6c759520", - "id" : "2323202", - "profile" : { - "bust" : "74", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "37" - } - }, { - "alias_name" : "フレッシュセレクト", - "alias_name_display" : "フレッシュセレクト", - "hash" : "917f4d4ef32fcbc618912ad79a662509", - "id" : "2229101", - "profile" : { - "bust" : "74", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "37" - } - }, { - "alias_name" : "フレッシュセレクト", - "alias_name_display" : "フレッシュセレクト", - "hash" : "71bf409f7e131f628bf16f7293a10259", - "id" : "2329102", - "profile" : { - "bust" : "74", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "37" - } - }, { - "alias_name" : "疾風のストライカー", - "alias_name_display" : "疾風のストライカー", - "event" : [ { - "event_id" : "016", - "event_name" : "第16回プロダクションマッチフェスティバル" - } ], - "hash" : "555e09e17e8b0478cc9cb34ade964e83", - "id" : "2413701", - "profile" : { - "bust" : "74", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "37" - } - }, { - "alias_name" : "疾風のストライカー", - "alias_name_display" : "疾風のストライカー", - "event" : [ { - "event_id" : "016", - "event_name" : "第16回プロダクションマッチフェスティバル" - } ], - "hash" : "33d5c2fed58080ff247e88e4419b23ce", - "id" : "2513702", - "profile" : { - "bust" : "74", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "37" - } - }, { - "alias_name" : "アクティブサファリ", - "alias_name_display" : "アクティブサファリ", - "event" : [ { - "event_id" : 414, - "event_name" : "どうぶつアドベンチャー オーストラリア編" - } ], - "hash" : "8265ddc15288685c6669e162918d54f2", - "id" : "2417301", - "profile" : { - "bust" : "74", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "37" - } - }, { - "alias_name" : "アクティブサファリ", - "alias_name_display" : "アクティブサファリ", - "event" : [ { - "event_id" : 414, - "event_name" : "どうぶつアドベンチャー オーストラリア編" - } ], - "hash" : "3cf4089b1a845917321f864469eb6a8d", - "id" : "2517302", - "profile" : { - "bust" : "74", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "37" - } - }, { - "alias_name" : "アクティブサファリ・S", - "alias_name_display" : "アクティブサファリ・S", - "event" : [ { - "event_id" : 414, - "event_name" : "どうぶつアドベンチャー オーストラリア編" - } ], - "hash" : "dbdcdaef80cb0747871a76a00a9cf06f", - "id" : "2417401", - "profile" : { - "bust" : "74", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "37" - } - }, { - "alias_name" : "アクティブサファリ・S", - "alias_name_display" : "アクティブサファリ・S", - "event" : [ { - "event_id" : 414, - "event_name" : "どうぶつアドベンチャー オーストラリア編" - } ], - "hash" : "a912cbee230c6437054c1bd1cdbac479", - "id" : "2517402", - "profile" : { - "bust" : "74", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "37" - } - }, { - "alias_name" : "明日へのフラッグ", - "alias_name_display" : "明日へのフラッグ", - "hash" : "f47b91503aa66413e527bf7e34845455", - "id" : "2420701", - "profile" : { - "bust" : "74", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "37" - } - }, { - "alias_name" : "明日へのフラッグ", - "alias_name_display" : "明日へのフラッグ", - "hash" : "0c05a80b08b4ea53fbe226641f38f233", - "id" : "2520702", - "profile" : { - "bust" : "74", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "37" - } - }, { - "alias_name" : "茶道の大和撫子", - "alias_name_display" : "茶道の大和撫子", - "event" : [ { - "event_id" : 1207, - "event_name" : "目指せ大和撫子 アイドルチャレンジ" - } ], - "hash" : "2aa881f4aaa87e622b49619067103762", - "id" : "2427001", - "profile" : { - "bust" : "74", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "37" - } - }, { - "alias_name" : "茶道の大和撫子", - "alias_name_display" : "茶道の大和撫子", - "event" : [ { - "event_id" : 1207, - "event_name" : "目指せ大和撫子 アイドルチャレンジ" - } ], - "hash" : "577d0df4271b8ca7f326c2b1410f3d42", - "id" : "2527002", - "profile" : { - "bust" : "74", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "37" - } - }, { - "alias_name" : "茶道の大和撫子・S", - "alias_name_display" : "茶道の大和撫子・S", - "event" : [ { - "event_id" : 1207, - "event_name" : "目指せ大和撫子 アイドルチャレンジ" - } ], - "hash" : "2c92874d2faf8cd7055d13af5a3ccdbb", - "id" : "2427101", - "profile" : { - "bust" : "74", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "37" - } - }, { - "alias_name" : "茶道の大和撫子・S", - "alias_name_display" : "茶道の大和撫子・S", - "event" : [ { - "event_id" : 1207, - "event_name" : "目指せ大和撫子 アイドルチャレンジ" - } ], - "hash" : "54d00470533b80a1184cd2e4ea96b829", - "id" : "2527102", - "profile" : { - "bust" : "74", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "37" - } - }, { - "alias_name" : "オーバーラップ", - "alias_name_display" : "オーバーラップ", - "event" : [ { - "event_id" : 1506, - "event_name" : "第6回チーム対抗トークバトルショー" - } ], - "hash" : "e343237e1ccc77a8f1c45944d61916f6", - "id" : "2431601", - "profile" : { - "bust" : "74", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "37" - } - }, { - "alias_name" : "オーバーラップ", - "alias_name_display" : "オーバーラップ", - "event" : [ { - "event_id" : 1506, - "event_name" : "第6回チーム対抗トークバトルショー" - } ], - "hash" : "f3b9ea014c6bc64c930947cc9221d3c9", - "id" : "2531602", - "profile" : { - "bust" : "74", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "37" - } - } ], - "idol_id" : 129, - "idol_name" : "結城晴", - "idol_name_display" : "結城晴", - "units" : [ { - "id" : "45", - "name" : "ビートシューター" - }, { - "id" : "47", - "name" : "ひつじさんとうさぎさん" - }, { - "id" : "54", - "name" : "ボール・フレンズ" - }, { - "id" : "162", - "name" : "ブライダルセレクション" - }, { - "id" : "177", - "name" : "桜舞隊" - }, { - "id" : "209", - "name" : "ロワイヤルスタイルNP" - } ] -}, { - "aliases" : [ { - "hash" : "4631474fd525ac81e51808b0bface6a2", - "id" : "2213501", - "profile" : { - "bust" : "75", - "height" : "154", - "hip" : "78", - "waist" : "55", - "weight" : "42" - } - }, { - "hash" : "7ca085178b2e427f1840e2ba4ea64319", - "id" : "2313502", - "profile" : { - "bust" : "75", - "height" : "154", - "hip" : "78", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "グリッターステージ", - "alias_name_display" : "グリッターステージ", - "hash" : "eb23608b1c3bdac0aa81a981e8336178", - "id" : "2215101", - "profile" : { - "bust" : "75", - "height" : "154", - "hip" : "78", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "グリッターステージ", - "alias_name_display" : "グリッターステージ", - "hash" : "f84359de4c315c3ca147d07099e188ed", - "id" : "2315102", - "profile" : { - "bust" : "75", - "height" : "154", - "hip" : "78", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "サファリアドベンチャー", - "alias_name_display" : "サファリアドベンチャー", - "event" : [ { - "event_id" : 414, - "event_name" : "どうぶつアドベンチャー オーストラリア編" - } ], - "hash" : "826f2cb1d85e56e5a5c3c1cea0bbb4a3", - "id" : "2217601", - "profile" : { - "bust" : "75", - "height" : "154", - "hip" : "78", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "サファリアドベンチャー", - "alias_name_display" : "サファリアドベンチャー", - "event" : [ { - "event_id" : 414, - "event_name" : "どうぶつアドベンチャー オーストラリア編" - } ], - "hash" : "76de9e9451a8de5a9ffb41c3e52c9ba6", - "id" : "2317602", - "profile" : { - "bust" : "75", - "height" : "154", - "hip" : "78", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "サファリアドベンチャー・S", - "alias_name_display" : "サファリアドベンチャー・S", - "event" : [ { - "event_id" : 414, - "event_name" : "どうぶつアドベンチャー オーストラリア編" - } ], - "hash" : "862d52f01e41b00da8b5e28509617ab4", - "id" : "2217701", - "profile" : { - "bust" : "75", - "height" : "154", - "hip" : "78", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "サファリアドベンチャー・S", - "alias_name_display" : "サファリアドベンチャー・S", - "event" : [ { - "event_id" : 414, - "event_name" : "どうぶつアドベンチャー オーストラリア編" - } ], - "hash" : "1bcb8bfa56a99fdaabd33c1657a492bd", - "id" : "2317702", - "profile" : { - "bust" : "75", - "height" : "154", - "hip" : "78", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "ロコガール", - "alias_name_display" : "ロコガール", - "event" : [ { - "event_id" : 1707, - "event_name" : "アイドルプロデュース アロハ!常夏の楽園" - } ], - "hash" : "4b2a471b95bdaa8f7618eb7c4fd9c9d3", - "id" : "2328302", - "profile" : { - "bust" : "75", - "height" : "154", - "hip" : "78", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "オリ・ロコガール", - "alias_name_display" : "オリ・ロコガール", - "event" : [ { - "event_id" : 1707, - "event_name" : "アイドルプロデュース アロハ!常夏の楽園" - } ], - "hash" : "0007e6f742de588da035f27181ba2b70", - "id" : "2328402", - "profile" : { - "bust" : "75", - "height" : "154", - "hip" : "78", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "ミッシング・ピース", - "alias_name_display" : "ミッシング・ピース", - "event" : [ { - "event_id" : 805, - "event_name" : "第5回アイドルLIVEロワイヤル" - } ], - "hash" : "42027e0a6ed923a0b6bb8eb4b8e5eff3", - "id" : "2415201", - "profile" : { - "bust" : "75", - "height" : "154", - "hip" : "78", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "ミッシング・ピース", - "alias_name_display" : "ミッシング・ピース", - "event" : [ { - "event_id" : 805, - "event_name" : "第5回アイドルLIVEロワイヤル" - } ], - "hash" : "2c156cdf5c956999318cf46708f1fad0", - "id" : "2515202", - "profile" : { - "bust" : "75", - "height" : "154", - "hip" : "78", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "アブソリュート・ゼロ", - "alias_name_display" : "アブソリュート・ゼロ", - "hash" : "aff88d81c2ac012a0e9beca15e36200f", - "id" : "2420001", - "profile" : { - "bust" : "75", - "height" : "154", - "hip" : "78", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "アブソリュート・ゼロ", - "alias_name_display" : "アブソリュート・ゼロ", - "hash" : "f029377df33b0c281856b7e879be1c96", - "id" : "2520002", - "profile" : { - "bust" : "75", - "height" : "154", - "hip" : "78", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "桜風リフレイン", - "alias_name_display" : "桜風リフレイン", - "event" : [ { - "event_id" : 712, - "event_name" : "花見DEドリームLIVEフェスティバル" - } ], - "hash" : "1114c352cd5b0ad6e635009fb34808cb", - "id" : "2423101", - "profile" : { - "bust" : "75", - "height" : "154", - "hip" : "78", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "桜風リフレイン", - "alias_name_display" : "桜風リフレイン", - "event" : [ { - "event_id" : 712, - "event_name" : "花見DEドリームLIVEフェスティバル" - } ], - "hash" : "14d9fc31f58df5da5bbddc246775e1bd", - "id" : "2523102", - "profile" : { - "bust" : "75", - "height" : "154", - "hip" : "78", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "ロスト・バレンタイン", - "alias_name_display" : "ロスト・バレンタイン", - "hash" : "1a62a0aeafb9ded1cc66e67f3ce178db", - "id" : "2430601", - "profile" : { - "bust" : "75", - "height" : "154", - "hip" : "78", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "ロスト・バレンタイン", - "alias_name_display" : "ロスト・バレンタイン", - "hash" : "ba8a9663527dafc77bf3e9ac4615c3cf", - "id" : "2530602", - "profile" : { - "bust" : "75", - "height" : "154", - "hip" : "78", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "29578016c7ff21a9d85eef32ab93e0bb", - "id" : "2431501", - "profile" : { - "bust" : "75", - "height" : "154", - "hip" : "78", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "b1bed12bc96443d7f3906f35594cbedd", - "id" : "2531502", - "profile" : { - "bust" : "75", - "height" : "154", - "hip" : "78", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "楽園-エデン-の入口", - "alias_name_display" : "楽園-エデン-の入口", - "event" : [ { - "event_id" : 1707, - "event_name" : "アイドルプロデュース アロハ!常夏の楽園" - } ], - "hash" : "5bbad382b5722462d5c5dd5fe6926a51", - "id" : "2434601", - "profile" : { - "bust" : "75", - "height" : "154", - "hip" : "78", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "楽園-エデン-の入口", - "alias_name_display" : "楽園-エデン-の入口", - "event" : [ { - "event_id" : 1707, - "event_name" : "アイドルプロデュース アロハ!常夏の楽園" - } ], - "hash" : "58efb2db39c23d19a4c7dca78d31edbc", - "id" : "2534602", - "profile" : { - "bust" : "75", - "height" : "154", - "hip" : "78", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "碧落のリベレイター", - "alias_name_display" : "碧落のリベレイター", - "hash" : "f069c36e4de862aadd81791d55f1f7d8", - "id" : "2438901", - "profile" : { - "bust" : "75", - "height" : "154", - "hip" : "78", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "碧落のリベレイター", - "alias_name_display" : "碧落のリベレイター", - "hash" : "3f93733e01fed8506d57f0c5894586f6", - "id" : "2538902", - "profile" : { - "bust" : "75", - "height" : "154", - "hip" : "78", - "waist" : "55", - "weight" : "42" - } - } ], - "idol_id" : 130, - "idol_name" : "二宮飛鳥", - "idol_name_display" : "二宮飛鳥", - "units" : [ { - "id" : "32", - "name" : "ダークイルミネイト" - }, { - "id" : "57", - "name" : "ミステリックガーデン" - }, { - "id" : "72", - "name" : "Dimension-3" - }, { - "id" : "132", - "name" : "thinE/Dasein" - }, { - "id" : "186", - "name" : "LittlePOPS" - }, { - "id" : "200", - "name" : "CAERULA" - } ] -}, { - "aliases" : [ { - "hash" : "dc80aeb410e6c893f6af62cc1ffe68f3", - "id" : "2217901", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - }, { - "hash" : "77c0f72b9219350c3fa2d00d5f4f3c4c", - "id" : "2317902", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "T.B.クリスマス", - "alias_name_display" : "T.B.クリスマス", - "event" : [ { - "event_id" : 1107, - "event_name" : "プロダクション対抗トークバトルショー クリスマスSP" - } ], - "hash" : "2a56bce05d5590dd7d4630bc252a6076", - "id" : "2219201", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "T.B.クリスマス", - "alias_name_display" : "T.B.クリスマス", - "event" : [ { - "event_id" : 1107, - "event_name" : "プロダクション対抗トークバトルショー クリスマスSP" - } ], - "hash" : "3f8e0ebb0b19b25180d60f57b4a97eec", - "id" : "2319202", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "春風スポーツ", - "alias_name_display" : "春風スポーツ", - "hash" : "39e3a2e8c3faf52a81febbe19413a13b", - "id" : "2226001", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "春風スポーツ", - "alias_name_display" : "春風スポーツ", - "hash" : "06e6725192ffdda60204d7066a031dfb", - "id" : "2326002", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "イノベーションマインド", - "alias_name_display" : "イノベーションマインド", - "event" : [ { - "event_id" : "034", - "event_name" : "第34回プロダクションマッチフェスティバル" - } ], - "hash" : "967bde64d2f177461d1fba733587bf71", - "id" : "2231201", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "イノベーションマインド", - "alias_name_display" : "イノベーションマインド", - "event" : [ { - "event_id" : "034", - "event_name" : "第34回プロダクションマッチフェスティバル" - } ], - "hash" : "c0dedc58fa9d81976f14db357913cf88", - "id" : "2331202", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "ランウェイのカリスマ", - "alias_name_display" : "ランウェイのカリスマ", - "event" : [ { - "event_id" : 1401, - "event_name" : "ぷちデレラコレクション" - } ], - "hash" : "c09af8c69550dce67368fec799fc8cf9", - "id" : "2422601", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "ランウェイのカリスマ", - "alias_name_display" : "ランウェイのカリスマ", - "event" : [ { - "event_id" : 1401, - "event_name" : "ぷちデレラコレクション" - } ], - "hash" : "be9198891b0b4e32e52a0fb5f0a26224", - "id" : "2522602", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "とれたてビーチガール", - "alias_name_display" : "とれたてビーチガール", - "event" : [ { - "event_id" : 1703, - "event_name" : "アイドルプロデュース おいでよ!海の家" - } ], - "hash" : "75b94970d1a2a451d6e4b563371179f9", - "id" : "2425801", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "とれたてビーチガール", - "alias_name_display" : "とれたてビーチガール", - "event" : [ { - "event_id" : 1703, - "event_name" : "アイドルプロデュース おいでよ!海の家" - } ], - "hash" : "2df32585bb5807a6778123c82c94b2a2", - "id" : "2525802", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "きらめきビーチガール", - "alias_name_display" : "きらめきビーチガール", - "event" : [ { - "event_id" : 1703, - "event_name" : "アイドルプロデュース おいでよ!海の家" - } ], - "hash" : "ea898cb5f33356dbdea348b45156f50a", - "id" : "2425901", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "きらめきビーチガール", - "alias_name_display" : "きらめきビーチガール", - "event" : [ { - "event_id" : 1703, - "event_name" : "アイドルプロデュース おいでよ!海の家" - } ], - "hash" : "6bf84171cae8136e5629734a962e1381", - "id" : "2525902", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "やさしいプライド", - "alias_name_display" : "やさしいプライド", - "hash" : "60f958aa7043601e4707a7e49e01fd84", - "id" : "2429801", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "やさしいプライド", - "alias_name_display" : "やさしいプライド", - "hash" : "9088aa0659ca2239587d146841870c97", - "id" : "2529802", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "ロングオータムナイト", - "alias_name_display" : "ロングオータムナイト", - "event" : [ { - "event_id" : "031", - "event_name" : "第31回プロダクションマッチフェスティバル" - } ], - "hash" : "632b7acafc87d967835ee98f06e16b75", - "id" : "2434801", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "ロングオータムナイト", - "alias_name_display" : "ロングオータムナイト", - "event" : [ { - "event_id" : "031", - "event_name" : "第31回プロダクションマッチフェスティバル" - } ], - "hash" : "bf5c1105baa37c752c0733f015513f75", - "id" : "2534802", - "profile" : { - "bust" : "83", - "height" : "164", - "hip" : "82", - "waist" : "55", - "weight" : "45" - } - } ], - "idol_id" : 131, - "idol_name" : "桐生つかさ", - "idol_name_display" : "桐生つかさ" -}, { - "aliases" : [ { - "alias_name" : "白き少女", - "alias_name_display" : "白き少女", - "hash" : "45979186701f234bab59226a89c062aa", - "id" : "2213401", - "profile" : { - "bust" : "82", - "height" : "150", - "hip" : "86", - "waist" : "59", - "weight" : "37" - } - }, { - "alias_name" : "白き少女", - "alias_name_display" : "白き少女", - "hash" : "aaaafaec6c1d24fd4fd70b687e924323", - "id" : "2313402", - "profile" : { - "bust" : "82", - "height" : "150", - "hip" : "86", - "waist" : "59", - "weight" : "37" - } - }, { - "alias_name" : "オータムバケーション", - "alias_name_display" : "オータムバケーション", - "hash" : "f0515ad075fac44cb443e3212a4d26e1", - "id" : "2224101", - "profile" : { - "bust" : "82", - "height" : "150", - "hip" : "86", - "waist" : "59", - "weight" : "37" - } - }, { - "alias_name" : "オータムバケーション", - "alias_name_display" : "オータムバケーション", - "hash" : "374ec3840963828acbcf06855e0fe040", - "id" : "2324102", - "profile" : { - "bust" : "82", - "height" : "150", - "hip" : "86", - "waist" : "59", - "weight" : "37" - } - }, { - "alias_name" : "聖なる乙女", - "alias_name_display" : "聖なる乙女", - "event" : [ { - "event_id" : 101, - "event_name" : "星降るクリスマス" - } ], - "hash" : "8cae26d0d27003747bc45772fe2394fe", - "id" : "2400501", - "profile" : { - "bust" : "82", - "height" : "150", - "hip" : "86", - "waist" : "59", - "weight" : "37" - } - }, { - "alias_name" : "聖なる乙女", - "alias_name_display" : "聖なる乙女", - "event" : [ { - "event_id" : 101, - "event_name" : "星降るクリスマス" - } ], - "hash" : "5b28de5e600e64bf58b9c0b0a1451c32", - "id" : "2500502", - "profile" : { - "bust" : "82", - "height" : "150", - "hip" : "86", - "waist" : "59", - "weight" : "37" - } - }, { - "alias_name" : "清白の乙女", - "alias_name_display" : "清白の乙女", - "event" : [ { - "event_id" : 208, - "event_name" : "アイドルサバイバル聖歌響くクリスマス" - } ], - "hash" : "5d55c5a3466041effb10209d4fe173e1", - "id" : "2404501", - "profile" : { - "bust" : "82", - "height" : "150", - "hip" : "86", - "waist" : "59", - "weight" : "37" - } - }, { - "alias_name" : "清白の乙女", - "alias_name_display" : "清白の乙女", - "event" : [ { - "event_id" : 208, - "event_name" : "アイドルサバイバル聖歌響くクリスマス" - } ], - "hash" : "fdcdab7adbaa2afbb76be984e650de0e", - "id" : "2504502", - "profile" : { - "bust" : "82", - "height" : "150", - "hip" : "86", - "waist" : "59", - "weight" : "37" - } - }, { - "alias_name" : "白き細雪", - "alias_name_display" : "白き細雪", - "event" : [ { - "event_id" : 710, - "event_name" : "サンタDEドリームLIVEフェスティバル" - } ], - "hash" : "5b09b56806ee072b6137f2e42fd8fc04", - "id" : "2419801", - "profile" : { - "bust" : "82", - "height" : "150", - "hip" : "86", - "waist" : "59", - "weight" : "37" - } - }, { - "alias_name" : "白き細雪", - "alias_name_display" : "白き細雪", - "event" : [ { - "event_id" : 710, - "event_name" : "サンタDEドリームLIVEフェスティバル" - } ], - "hash" : "7c18ddc33c71d6822f17d7bd39c58e36", - "id" : "2519802", - "profile" : { - "bust" : "82", - "height" : "150", - "hip" : "86", - "waist" : "59", - "weight" : "37" - } - }, { - "alias_name" : "純真少女", - "alias_name_display" : "純真少女", - "hash" : "38cad77b3a0f525ddcc4365b08e13549", - "id" : "2431801", - "profile" : { - "bust" : "82", - "height" : "150", - "hip" : "86", - "waist" : "59", - "weight" : "37" - } - }, { - "alias_name" : "純真少女", - "alias_name_display" : "純真少女", - "hash" : "4d605668f2238435747000680b3e9d59", - "id" : "2531802", - "profile" : { - "bust" : "82", - "height" : "150", - "hip" : "86", - "waist" : "59", - "weight" : "37" - } - }, { - "alias_name" : "ひびきあう雪花", - "alias_name_display" : "ひびきあう雪花", - "event" : [ { - "event_id" : 1905, - "event_name" : "ディアリースターナイト ~聖夜のキセキ~" - } ], - "hash" : "e60367a2486c6bb3fb16e369d6796307", - "id" : "2436701", - "profile" : { - "bust" : "82", - "height" : "150", - "hip" : "86", - "waist" : "59", - "weight" : "37" - } - }, { - "alias_name" : "ひびきあう雪花", - "alias_name_display" : "ひびきあう雪花", - "event" : [ { - "event_id" : 1905, - "event_name" : "ディアリースターナイト ~聖夜のキセキ~" - } ], - "hash" : "3e6deec005701d78f54d7108ff35df41", - "id" : "2536702", - "profile" : { - "bust" : "82", - "height" : "150", - "hip" : "86", - "waist" : "59", - "weight" : "37" - } - } ], - "idol_id" : 132, - "idol_name" : "望月聖", - "idol_name_display" : "望月聖", - "units" : [ { - "id" : "114", - "name" : "ドリームホープスプリング" - } ] -}, { - "aliases" : [ { - "alias_name" : "運気上昇", - "alias_name_display" : "運気上昇", - "hash" : "d7dec3c58513c892ae28ce692f1d9c06", - "id" : "2227601", - "profile" : { - "bust" : "88", - "height" : "160", - "hip" : "88", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "運気上昇", - "alias_name_display" : "運気上昇", - "hash" : "89bfa866799f61e56ef2e9ad90df0abd", - "id" : "2327602", - "profile" : { - "bust" : "88", - "height" : "160", - "hip" : "88", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "幸運の女神", - "alias_name_display" : "幸運の女神", - "event" : [ { - "event_id" : 102, - "event_name" : "アイドルおもちつき大会" - } ], - "hash" : "bf1cee7c5f1620d1328b295abb2b3573", - "id" : "2400701", - "profile" : { - "bust" : "88", - "height" : "160", - "hip" : "88", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "幸運の女神", - "alias_name_display" : "幸運の女神", - "event" : [ { - "event_id" : 102, - "event_name" : "アイドルおもちつき大会" - } ], - "hash" : "6b856c4fa2d4b26fd50a8169f19ebb51", - "id" : "2500702", - "profile" : { - "bust" : "88", - "height" : "160", - "hip" : "88", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "強運の才女", - "alias_name_display" : "強運の才女", - "hash" : "5b1bae277355a1691544753b57fac1d0", - "id" : "2404901", - "profile" : { - "bust" : "88", - "height" : "160", - "hip" : "88", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "強運の才女", - "alias_name_display" : "強運の才女", - "hash" : "358368dbd0dc56c11cf93069d1d75911", - "id" : "2504902", - "profile" : { - "bust" : "88", - "height" : "160", - "hip" : "88", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "謹賀新年", - "alias_name_display" : "謹賀新年", - "hash" : "17a125ea352bda654afef2d07eb1ebc7", - "id" : "2411701", - "profile" : { - "bust" : "88", - "height" : "160", - "hip" : "88", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "謹賀新年", - "alias_name_display" : "謹賀新年", - "hash" : "88f8892b760b11a663e8403c3870763a", - "id" : "2511702", - "profile" : { - "bust" : "88", - "height" : "160", - "hip" : "88", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "多芸の才女", - "alias_name_display" : "多芸の才女", - "event" : [ { - "event_id" : 1204, - "event_name" : "新年かくし芸SP アイドルチャレンジ" - } ], - "hash" : "98f83a297189bc85c6b368df4c369af8", - "id" : "2420201", - "profile" : { - "bust" : "88", - "height" : "160", - "hip" : "88", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "多芸の才女", - "alias_name_display" : "多芸の才女", - "event" : [ { - "event_id" : 1204, - "event_name" : "新年かくし芸SP アイドルチャレンジ" - } ], - "hash" : "46fc14a63a4822541cca86f95ea2cf76", - "id" : "2520202", - "profile" : { - "bust" : "88", - "height" : "160", - "hip" : "88", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "雪月花", - "alias_name_display" : "雪月花", - "event" : [ { - "event_id" : 1405, - "event_name" : "第5回ぷちデレラコレクション" - } ], - "hash" : "132ee5e2eafd0c8749ff85a491297a42", - "id" : "2430301", - "profile" : { - "bust" : "88", - "height" : "160", - "hip" : "88", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "雪月花", - "alias_name_display" : "雪月花", - "event" : [ { - "event_id" : 1405, - "event_name" : "第5回ぷちデレラコレクション" - } ], - "hash" : "f6b971137b54ffdbd6f9b1671ccdb7bc", - "id" : "2530302", - "profile" : { - "bust" : "88", - "height" : "160", - "hip" : "88", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "慶福の雪路", - "alias_name_display" : "慶福の雪路", - "event" : [ { - "event_id" : "033", - "event_name" : "第33回プロダクションマッチフェスティバル" - } ], - "hash" : "a6becd927cf9c07c6f8a3a0675cb5eee", - "id" : "2437701", - "profile" : { - "bust" : "88", - "height" : "160", - "hip" : "88", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "慶福の雪路", - "alias_name_display" : "慶福の雪路", - "event" : [ { - "event_id" : "033", - "event_name" : "第33回プロダクションマッチフェスティバル" - } ], - "hash" : "715b793aa4d3b15051658c0100f70bde", - "id" : "2537702", - "profile" : { - "bust" : "88", - "height" : "160", - "hip" : "88", - "waist" : "57", - "weight" : "43" - } - } ], - "idol_id" : 133, - "idol_name" : "鷹富士茄子", - "idol_name_display" : "鷹富士茄子", - "units" : [ { - "id" : "58", - "name" : "ミス・フォーチュン" - }, { - "id" : "87", - "name" : "ウィンター・F・ドライバーズ" - } ] -}, { - "aliases" : [ { - "hash" : "3a15a87af190354ae89fca368b35b69e", - "id" : "3000101", - "profile" : { - "bust" : "84", - "height" : "161", - "hip" : "87", - "waist" : "58", - "weight" : "46" - } - }, { - "hash" : "ce6baca22d2efbb08703302ef088640d", - "id" : "3100102", - "profile" : { - "bust" : "84", - "height" : "161", - "hip" : "87", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "2ndアニバーサリー", - "alias_name_display" : "2ndアニバーサリー", - "event" : [ { - "event_id" : 410, - "event_name" : "アイドルプロデュース the 2nd Anniversary" - } ], - "hash" : "dfea059243990fd0d1902e55aefda8ea", - "id" : "3214101", - "profile" : { - "bust" : "84", - "height" : "161", - "hip" : "87", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "2ndアニバーサリー", - "alias_name_display" : "2ndアニバーサリー", - "event" : [ { - "event_id" : 410, - "event_name" : "アイドルプロデュース the 2nd Anniversary" - } ], - "hash" : "5bc8615e9e1c4d44265bd5e804fb30da", - "id" : "3314102", - "profile" : { - "bust" : "84", - "height" : "161", - "hip" : "87", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "2ndアニバーサリー・スマイル", - "alias_name_display" : "2ndアニバーサリー・スマイル", - "event" : [ { - "event_id" : 410, - "event_name" : "アイドルプロデュース the 2nd Anniversary" - } ], - "hash" : "47b205617b851c0339d5d48feef363a8", - "id" : "3214201", - "profile" : { - "bust" : "84", - "height" : "161", - "hip" : "87", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "2ndアニバーサリー・スマイル", - "alias_name_display" : "2ndアニバーサリー・スマイル", - "event" : [ { - "event_id" : 410, - "event_name" : "アイドルプロデュース the 2nd Anniversary" - } ], - "hash" : "59e76dff218b3cfd6f752c96020b77b9", - "id" : "3314202", - "profile" : { - "bust" : "84", - "height" : "161", - "hip" : "87", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "2ndアニバーサリー・ネコミミ", - "alias_name_display" : "2ndアニバーサリー・ネコミミ", - "event" : [ { - "event_id" : 410, - "event_name" : "アイドルプロデュース the 2nd Anniversary" - } ], - "hash" : "f30ed6c8625b249877623ce153a6ee42", - "id" : "3214301", - "profile" : { - "bust" : "84", - "height" : "161", - "hip" : "87", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "2ndアニバーサリー・ネコミミ", - "alias_name_display" : "2ndアニバーサリー・ネコミミ", - "event" : [ { - "event_id" : 410, - "event_name" : "アイドルプロデュース the 2nd Anniversary" - } ], - "hash" : "a5c1e539fc8decf8bc8344d4da523d75", - "id" : "3314302", - "profile" : { - "bust" : "84", - "height" : "161", - "hip" : "87", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "ニュージェネレーション", - "alias_name_display" : "ニュージェネレーション", - "hash" : "91fcfc8ea99e57db7e57a9c254399d1e", - "id" : "3404001", - "profile" : { - "bust" : "84", - "height" : "161", - "hip" : "87", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "ニュージェネレーション", - "alias_name_display" : "ニュージェネレーション", - "hash" : "ac84c61ce8af6cbd8ecdb3099e87b29f", - "id" : "3504002", - "profile" : { - "bust" : "84", - "height" : "161", - "hip" : "87", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "b9e3d2ab769bbd4f02d9a86aa4963480", - "id" : "3404901", - "profile" : { - "bust" : "84", - "height" : "161", - "hip" : "87", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "36c8ad2730641ca613e6bce46f958c86", - "id" : "3504902", - "profile" : { - "bust" : "84", - "height" : "161", - "hip" : "87", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "パーフェクトスター", - "alias_name_display" : "パーフェクトスター", - "hash" : "3f0e274eb39fa06ec90066815ebcce3f", - "id" : "3408201", - "profile" : { - "bust" : "84", - "height" : "161", - "hip" : "87", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "パーフェクトスター", - "alias_name_display" : "パーフェクトスター", - "hash" : "d70342d50a456e6ea28c793fd32fded8", - "id" : "3508202", - "profile" : { - "bust" : "84", - "height" : "161", - "hip" : "87", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "ワンダフルマジック", - "alias_name_display" : "ワンダフルマジック", - "hash" : "b10e7156c968f1c10e931fb39437b555", - "id" : "3413001", - "profile" : { - "bust" : "84", - "height" : "161", - "hip" : "87", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "ワンダフルマジック", - "alias_name_display" : "ワンダフルマジック", - "hash" : "728ea914619eaaaf809574f0134816ee", - "id" : "3513002", - "profile" : { - "bust" : "84", - "height" : "161", - "hip" : "87", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "放課後パーティー", - "alias_name_display" : "放課後パーティー", - "hash" : "837e90baff2cb4e1b8d83b52bd204974", - "id" : "3417901", - "profile" : { - "bust" : "84", - "height" : "161", - "hip" : "87", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "放課後パーティー", - "alias_name_display" : "放課後パーティー", - "hash" : "ef8c42dd6a0e040d19677ae449f1c61e", - "id" : "3517902", - "profile" : { - "bust" : "84", - "height" : "161", - "hip" : "87", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "ドリームストーリー", - "alias_name_display" : "ドリームストーリー", - "hash" : "20d57207fb5680675a1ee2c01974781a", - "id" : "3520702", - "profile" : { - "bust" : "84", - "height" : "161", - "hip" : "87", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "G4U!", - "alias_name_display" : "G4U!", - "hash" : "7686210ae4c41b15170fb51774c0a19b", - "id" : "3526502", - "profile" : { - "bust" : "84", - "height" : "161", - "hip" : "87", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "秋夜の乙女", - "alias_name_display" : "秋夜の乙女", - "hash" : "6ff727545e998f9425485bf823dc8225", - "id" : "3427501", - "profile" : { - "bust" : "84", - "height" : "161", - "hip" : "87", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "秋夜の乙女", - "alias_name_display" : "秋夜の乙女", - "hash" : "b1a3cc28c90185948cc52fd0031c95dc", - "id" : "3527502", - "profile" : { - "bust" : "84", - "height" : "161", - "hip" : "87", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "アニバーサリースター", - "alias_name_display" : "アニバーサリースター", - "hash" : "87958f4f873116edfb0a6ea544368e75", - "id" : "3428201", - "profile" : { - "bust" : "84", - "height" : "161", - "hip" : "87", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "アニバーサリースター", - "alias_name_display" : "アニバーサリースター", - "hash" : "e8e30ac23663842999f4057639a470fb", - "id" : "3528202", - "profile" : { - "bust" : "84", - "height" : "161", - "hip" : "87", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "オンリーマイスター", - "alias_name_display" : "オンリーマイスター", - "hash" : "753de37bd2cf3a4f2c089eeaa9d1bd78", - "id" : "3431801", - "profile" : { - "bust" : "84", - "height" : "161", - "hip" : "87", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "オンリーマイスター", - "alias_name_display" : "オンリーマイスター", - "hash" : "873323df410644a760d965d7ece54bd7", - "id" : "3531802", - "profile" : { - "bust" : "84", - "height" : "161", - "hip" : "87", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "チャームフォーハピネス", - "alias_name_display" : "チャームフォーハピネス", - "hash" : "3ac0d8a5dbef390ae80d5055585ff040", - "id" : "3437301", - "profile" : { - "bust" : "84", - "height" : "161", - "hip" : "87", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "チャームフォーハピネス", - "alias_name_display" : "チャームフォーハピネス", - "hash" : "fdda617ed4a59a8d1127c50336535a52", - "id" : "3537302", - "profile" : { - "bust" : "84", - "height" : "161", - "hip" : "87", - "waist" : "58", - "weight" : "46" - } - } ], - "idol_id" : 134, - "idol_name" : "本田未央", - "idol_name_display" : "本田未央", - "units" : [ { - "id" : "21", - "name" : "ジェネレーションオブサマー" - }, { - "id" : "109", - "name" : "new generations" - }, { - "id" : "146", - "name" : "サンセットノスタルジー" - }, { - "id" : "153", - "name" : "Positive Passion" - }, { - "id" : "204", - "name" : "トロピカル☆スターズ" - }, { - "id" : "213", - "name" : "CINDERELLA PROJECT" - } ] -}, { - "aliases" : [ { - "hash" : "25ea7fdd66fc6bd8e7209a4c0d2ba00c", - "id" : "3000201", - "profile" : { - "bust" : "74", - "height" : "155", - "hip" : "79", - "waist" : "60", - "weight" : "42" - } - }, { - "hash" : "57bfd18f73cf672d05643716f74bbc48", - "id" : "3100202", - "profile" : { - "bust" : "74", - "height" : "155", - "hip" : "79", - "waist" : "60", - "weight" : "42" - } - }, { - "alias_name" : "バレンタイン", - "alias_name_display" : "バレンタイン", - "event" : [ { - "event_id" : 103, - "event_name" : "バレンタインパーティー" - } ], - "hash" : "8406433757bac86ef8134cd59ed4cd3b", - "id" : "3002101", - "profile" : { - "bust" : "74", - "height" : "155", - "hip" : "79", - "waist" : "60", - "weight" : "42" - } - }, { - "alias_name" : "バレンタイン", - "alias_name_display" : "バレンタイン", - "event" : [ { - "event_id" : 103, - "event_name" : "バレンタインパーティー" - } ], - "hash" : "55f34023e9d773f97afde9bb99574843", - "id" : "3102102", - "profile" : { - "bust" : "74", - "height" : "155", - "hip" : "79", - "waist" : "60", - "weight" : "42" - } - }, { - "alias_name" : "ふんわりガール", - "alias_name_display" : "ふんわりガール", - "event" : [ { - "event_id" : "002", - "event_name" : "第2回プロダクションマッチフェスティバル" - } ], - "hash" : "f70f143d7bb856a67cb7bbd175dc7829", - "id" : "3204601", - "profile" : { - "bust" : "74", - "height" : "155", - "hip" : "79", - "waist" : "60", - "weight" : "42" - } - }, { - "alias_name" : "ふんわりガール", - "alias_name_display" : "ふんわりガール", - "event" : [ { - "event_id" : "002", - "event_name" : "第2回プロダクションマッチフェスティバル" - } ], - "hash" : "d6dbb1e8e2c5e452026e993c5a8fde56", - "id" : "3304602", - "profile" : { - "bust" : "74", - "height" : "155", - "hip" : "79", - "waist" : "60", - "weight" : "42" - } - }, { - "alias_name" : "アニバーサリーイエロー", - "alias_name_display" : "アニバーサリーイエロー", - "event" : [ { - "event_id" : 403, - "event_name" : "アイドルプロデュース the 1st Anniversary" - } ], - "hash" : "a14b13704b20edf9834c27832fd1670f", - "id" : "3207601", - "profile" : { - "bust" : "74", - "height" : "155", - "hip" : "79", - "waist" : "60", - "weight" : "42" - } - }, { - "alias_name" : "アニバーサリーイエロー", - "alias_name_display" : "アニバーサリーイエロー", - "event" : [ { - "event_id" : 403, - "event_name" : "アイドルプロデュース the 1st Anniversary" - } ], - "hash" : "d0289c681ff7668957a4d7a4198b61aa", - "id" : "3307602", - "profile" : { - "bust" : "74", - "height" : "155", - "hip" : "79", - "waist" : "60", - "weight" : "42" - } - }, { - "alias_name" : "新春ガール", - "alias_name_display" : "新春ガール", - "hash" : "ca354dc7b9ffa3261b69dfbcb633c162", - "id" : "3227201", - "profile" : { - "bust" : "74", - "height" : "155", - "hip" : "79", - "waist" : "60", - "weight" : "42" - } - }, { - "alias_name" : "新春ガール", - "alias_name_display" : "新春ガール", - "hash" : "d3fa350883bd59a8245cef6a04319057", - "id" : "3327202", - "profile" : { - "bust" : "74", - "height" : "155", - "hip" : "79", - "waist" : "60", - "weight" : "42" - } - }, { - "alias_name" : "ゆるふわ乙女", - "alias_name_display" : "ゆるふわ乙女", - "hash" : "6efffe43696b87d64380769c40a3f12d", - "id" : "3405201", - "profile" : { - "bust" : "74", - "height" : "155", - "hip" : "79", - "waist" : "60", - "weight" : "42" - } - }, { - "alias_name" : "ゆるふわ乙女", - "alias_name_display" : "ゆるふわ乙女", - "hash" : "0321c8e5bf54a3c4602ee87bac727750", - "id" : "3505202", - "profile" : { - "bust" : "74", - "height" : "155", - "hip" : "79", - "waist" : "60", - "weight" : "42" - } - }, { - "alias_name" : "深緑の魔女", - "alias_name_display" : "深緑の魔女", - "hash" : "b9c843a22dc3445a53c384de9948be97", - "id" : "3409001", - "profile" : { - "bust" : "74", - "height" : "155", - "hip" : "79", - "waist" : "60", - "weight" : "42" - } - }, { - "alias_name" : "深緑の魔女", - "alias_name_display" : "深緑の魔女", - "hash" : "dab9960d2db1424d77af7ba448c77039", - "id" : "3509002", - "profile" : { - "bust" : "74", - "height" : "155", - "hip" : "79", - "waist" : "60", - "weight" : "42" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "696e63ecba110164d3740efd5dab872a", - "id" : "3409701", - "profile" : { - "bust" : "74", - "height" : "155", - "hip" : "79", - "waist" : "60", - "weight" : "42" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "e3d9a2ea1b5c8caec4250f08f4f5cc95", - "id" : "3509702", - "profile" : { - "bust" : "74", - "height" : "155", - "hip" : "79", - "waist" : "60", - "weight" : "42" - } - }, { - "alias_name" : "シンデレラドリーム", - "alias_name_display" : "シンデレラドリーム", - "hash" : "a6a1581237e6048bae08c63a85e50e87", - "id" : "3411301", - "profile" : { - "bust" : "74", - "height" : "155", - "hip" : "79", - "waist" : "60", - "weight" : "42" - } - }, { - "alias_name" : "シンデレラドリーム", - "alias_name_display" : "シンデレラドリーム", - "hash" : "77828bac52f87e72db028e70a0338c11", - "id" : "3511302", - "profile" : { - "bust" : "74", - "height" : "155", - "hip" : "79", - "waist" : "60", - "weight" : "42" - } - }, { - "alias_name" : "おさんぽ日和", - "alias_name_display" : "おさんぽ日和", - "hash" : "e82199f18a2886519aa98a1a5ef46043", - "id" : "3413101", - "profile" : { - "bust" : "74", - "height" : "155", - "hip" : "79", - "waist" : "60", - "weight" : "42" - } - }, { - "alias_name" : "おさんぽ日和", - "alias_name_display" : "おさんぽ日和", - "hash" : "1a30af5fa8c952b1424a1dbb60269ff0", - "id" : "3513102", - "profile" : { - "bust" : "74", - "height" : "155", - "hip" : "79", - "waist" : "60", - "weight" : "42" - } - }, { - "alias_name" : "まごころプレゼント", - "alias_name_display" : "まごころプレゼント", - "hash" : "39c5e502a5ec2c962e1610098b6317cc", - "id" : "3419801", - "profile" : { - "bust" : "74", - "height" : "155", - "hip" : "79", - "waist" : "60", - "weight" : "42" - } - }, { - "alias_name" : "まごころプレゼント", - "alias_name_display" : "まごころプレゼント", - "hash" : "0e80e42aa03acf28172a86a6113212e5", - "id" : "3519802", - "profile" : { - "bust" : "74", - "height" : "155", - "hip" : "79", - "waist" : "60", - "weight" : "42" - } - }, { - "alias_name" : "放課後サマー", - "alias_name_display" : "放課後サマー", - "hash" : "775f8939d540b7b1c169ba72be9ca25e", - "id" : "3425901", - "profile" : { - "bust" : "74", - "height" : "155", - "hip" : "79", - "waist" : "60", - "weight" : "42" - } - }, { - "alias_name" : "放課後サマー", - "alias_name_display" : "放課後サマー", - "hash" : "c2f3cd2bd710cebb14c84f6a64d9949a", - "id" : "3525902", - "profile" : { - "bust" : "74", - "height" : "155", - "hip" : "79", - "waist" : "60", - "weight" : "42" - } - }, { - "alias_name" : "駿風のバンデット", - "alias_name_display" : "駿風のバンデット", - "hash" : "96372916d89edc657240f71836f7dbb9", - "id" : "3434701", - "profile" : { - "bust" : "74", - "height" : "155", - "hip" : "79", - "waist" : "60", - "weight" : "42" - } - }, { - "alias_name" : "駿風のバンデット", - "alias_name_display" : "駿風のバンデット", - "hash" : "cd741e8ee6028bb578bcbc5d55475390", - "id" : "3534702", - "profile" : { - "bust" : "74", - "height" : "155", - "hip" : "79", - "waist" : "60", - "weight" : "42" - } - }, { - "alias_name" : "ちいさなともだち", - "alias_name_display" : "ちいさなともだち", - "hash" : "55ef16cfd44a6fdfb3709337f27e595f", - "id" : "3439301", - "profile" : { - "bust" : "74", - "height" : "155", - "hip" : "79", - "waist" : "60", - "weight" : "42" - } - }, { - "alias_name" : "ちいさなともだち", - "alias_name_display" : "ちいさなともだち", - "hash" : "4d91dd57c123958c50421bb04076c240", - "id" : "3539302", - "profile" : { - "bust" : "74", - "height" : "155", - "hip" : "79", - "waist" : "60", - "weight" : "42" - } - } ], - "idol_id" : 135, - "idol_name" : "高森藍子", - "idol_name_display" : "高森藍子", - "units" : [ { - "id" : "5", - "name" : "インディゴ・ベル" - }, { - "id" : "69", - "name" : "Ai's" - }, { - "id" : "75", - "name" : "Flowery" - }, { - "id" : "103", - "name" : "ビビッドカラーエイジ" - }, { - "id" : "153", - "name" : "Positive Passion" - }, { - "id" : "189", - "name" : "アインフェリア" - }, { - "id" : "203", - "name" : "ゼッケンズ" - } ] -}, { - "aliases" : [ { - "hash" : "dd7b4d4e1769b447ee6fc98e317fb666", - "id" : "3000301", - "profile" : { - "bust" : "80", - "height" : "160", - "hip" : "82", - "waist" : "57", - "weight" : "44" - } - }, { - "hash" : "d88a41865dc231e4770c0d915f2cd17a", - "id" : "3100302", - "profile" : { - "bust" : "80", - "height" : "160", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "メイドコレクション", - "alias_name_display" : "メイドコレクション", - "hash" : "2be497b9005c4c64d25ff518339cc6a6", - "id" : "3206001", - "profile" : { - "bust" : "80", - "height" : "160", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "メイドコレクション", - "alias_name_display" : "メイドコレクション", - "hash" : "847a362d9e6e286f93132c02c8f44c64", - "id" : "3306002", - "profile" : { - "bust" : "80", - "height" : "160", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "トラベル☆ガール", - "alias_name_display" : "トラベル☆ガール", - "event" : [ { - "event_id" : "009", - "event_name" : "第9回プロダクションマッチフェスティバル" - } ], - "hash" : "b84dce89a3a135fcb166cb2639ff184e", - "id" : "3209801", - "profile" : { - "bust" : "80", - "height" : "160", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "トラベル☆ガール", - "alias_name_display" : "トラベル☆ガール", - "event" : [ { - "event_id" : "009", - "event_name" : "第9回プロダクションマッチフェスティバル" - } ], - "hash" : "db0cdefb3e1d797d392546c121df8aa3", - "id" : "3309802", - "profile" : { - "bust" : "80", - "height" : "160", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "ワンダーバニー", - "alias_name_display" : "ワンダーバニー", - "hash" : "4e273575f8490fbb863c2dbe132ab673", - "id" : "3215501", - "profile" : { - "bust" : "80", - "height" : "160", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "ワンダーバニー", - "alias_name_display" : "ワンダーバニー", - "hash" : "b40d53ca759a5c49e316149907b16324", - "id" : "3315502", - "profile" : { - "bust" : "80", - "height" : "160", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "めろめろココメロン", - "alias_name_display" : "めろめろココメロン", - "hash" : "6aa24dae832c588c383c1699d97f19b6", - "id" : "3219501", - "profile" : { - "bust" : "80", - "height" : "160", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "めろめろココメロン", - "alias_name_display" : "めろめろココメロン", - "hash" : "0398b0c40f4c26e445c17dad6f18d6e2", - "id" : "3319502", - "profile" : { - "bust" : "80", - "height" : "160", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "さわやかスポーツ", - "alias_name_display" : "さわやかスポーツ", - "hash" : "fe782525f82eec7f9c6c2f39ad51207c", - "id" : "3222801", - "profile" : { - "bust" : "80", - "height" : "160", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "さわやかスポーツ", - "alias_name_display" : "さわやかスポーツ", - "hash" : "18478a5af695d30770b15fe0d47c6643", - "id" : "3322802", - "profile" : { - "bust" : "80", - "height" : "160", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "フレッシュガール", - "alias_name_display" : "フレッシュガール", - "event" : [ { - "event_id" : "023", - "event_name" : "第23回プロダクションマッチフェスティバル" - } ], - "hash" : "ef03539e18ee2eaa6cf1fd87bf04a0f6", - "id" : "3325102", - "profile" : { - "bust" : "80", - "height" : "160", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "トラベルレター", - "alias_name_display" : "トラベルレター", - "hash" : "798448d3e64f5cc1fff7179d377471fd", - "id" : "3227001", - "profile" : { - "bust" : "80", - "height" : "160", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "トラベルレター", - "alias_name_display" : "トラベルレター", - "hash" : "e3926356fb48d480b2f2f25b4c74ce70", - "id" : "3327002", - "profile" : { - "bust" : "80", - "height" : "160", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "ハロウィンI.C", - "alias_name_display" : "ハロウィンI.C", - "event" : [ { - "event_id" : 1213, - "event_name" : "目指せお菓子なハロウィン アイドルチャレンジ" - } ], - "hash" : "463d606a3dc453aa44e9db6bb70852a9", - "id" : "3331202", - "profile" : { - "bust" : "80", - "height" : "160", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "トラベルダンサー", - "alias_name_display" : "トラベルダンサー", - "event" : [ { - "event_id" : 507, - "event_name" : "LIVEツアーカーニバルinドイツ" - } ], - "hash" : "7695d88a4ae65b8c0ed64f30f3601790", - "id" : "3408601", - "profile" : { - "bust" : "80", - "height" : "160", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "トラベルダンサー", - "alias_name_display" : "トラベルダンサー", - "event" : [ { - "event_id" : 507, - "event_name" : "LIVEツアーカーニバルinドイツ" - } ], - "hash" : "99bb88ff7b093701659eabbb897808e4", - "id" : "3508602", - "profile" : { - "bust" : "80", - "height" : "160", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "秋色のお出かけ", - "alias_name_display" : "秋色のお出かけ", - "event" : [ { - "event_id" : 808, - "event_name" : "第8回アイドルLIVEロワイヤル" - } ], - "hash" : "738ddb49940e93f41f7c650b90dcee4a", - "id" : "3419101", - "profile" : { - "bust" : "80", - "height" : "160", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "秋色のお出かけ", - "alias_name_display" : "秋色のお出かけ", - "event" : [ { - "event_id" : 808, - "event_name" : "第8回アイドルLIVEロワイヤル" - } ], - "hash" : "81730ca2c7a398b66e1ff4693de7f751", - "id" : "3519102", - "profile" : { - "bust" : "80", - "height" : "160", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "カントリーロード", - "alias_name_display" : "カントリーロード", - "hash" : "c51198aab9b189eb750ee55fb5902d3b", - "id" : "3432201", - "profile" : { - "bust" : "80", - "height" : "160", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "カントリーロード", - "alias_name_display" : "カントリーロード", - "hash" : "42484da391a105442dc3523e303fff9d", - "id" : "3532202", - "profile" : { - "bust" : "80", - "height" : "160", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "おめかしウィッチ", - "alias_name_display" : "おめかしウィッチ", - "event" : [ { - "event_id" : 1213, - "event_name" : "目指せお菓子なハロウィン アイドルチャレンジ" - } ], - "hash" : "c2f06ed8aee7c5930381f61ed9988a6b", - "id" : "3435401", - "profile" : { - "bust" : "80", - "height" : "160", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "おめかしウィッチ", - "alias_name_display" : "おめかしウィッチ", - "event" : [ { - "event_id" : 1213, - "event_name" : "目指せお菓子なハロウィン アイドルチャレンジ" - } ], - "hash" : "bce23786ce8903092e17371ca5003061", - "id" : "3535402", - "profile" : { - "bust" : "80", - "height" : "160", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "にっこりウィッチ", - "alias_name_display" : "にっこりウィッチ", - "event" : [ { - "event_id" : 1213, - "event_name" : "目指せお菓子なハロウィン アイドルチャレンジ" - } ], - "hash" : "b94786b47c7d37e1c02f31aa0cadbd4b", - "id" : "3435501", - "profile" : { - "bust" : "80", - "height" : "160", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "にっこりウィッチ", - "alias_name_display" : "にっこりウィッチ", - "event" : [ { - "event_id" : 1213, - "event_name" : "目指せお菓子なハロウィン アイドルチャレンジ" - } ], - "hash" : "0184568340dc8bef2245fde0b9423019", - "id" : "3535502", - "profile" : { - "bust" : "80", - "height" : "160", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "トラベルチアー", - "alias_name_display" : "トラベルチアー", - "event" : [ { - "event_id" : 1512, - "event_name" : "第12回チーム対抗トークバトルショー" - } ], - "hash" : "01169e17d4d7c870bd60b0454d091706", - "id" : "3439601", - "profile" : { - "bust" : "80", - "height" : "160", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "トラベルチアー", - "alias_name_display" : "トラベルチアー", - "event" : [ { - "event_id" : 1512, - "event_name" : "第12回チーム対抗トークバトルショー" - } ], - "hash" : "9a07422c4498c97ae7b7a9d9117fe9fd", - "id" : "3539602", - "profile" : { - "bust" : "80", - "height" : "160", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - } ], - "idol_id" : 136, - "idol_name" : "並木芽衣子", - "idol_name_display" : "並木芽衣子", - "units" : [ { - "id" : "63", - "name" : "ラブリーダイナーズ" - }, { - "id" : "167", - "name" : "ロマンティックツアーズ" - }, { - "id" : "183", - "name" : "メイドコレクション" - } ] -}, { - "aliases" : [ { - "hash" : "6bd01496d9b00da9563c7e92b6a40257", - "id" : "3000401", - "profile" : { - "bust" : "65", - "height" : "132", - "hip" : "70", - "waist" : "51", - "weight" : "32" - } - }, { - "hash" : "ce9be94eb3291a7f91c73a7824eb388c", - "id" : "3100402", - "profile" : { - "bust" : "67", - "height" : "133", - "hip" : "72", - "waist" : "52", - "weight" : "33" - } - }, { - "alias_name" : "新春", - "alias_name_display" : "新春", - "event" : [ { - "event_id" : 102, - "event_name" : "アイドルおもちつき大会" - } ], - "hash" : "5be9bf88188f36e181fbe96ea1341c41", - "id" : "3202301", - "profile" : { - "bust" : "65", - "height" : "132", - "hip" : "70", - "waist" : "51", - "weight" : "32" - } - }, { - "alias_name" : "新春", - "alias_name_display" : "新春", - "event" : [ { - "event_id" : 102, - "event_name" : "アイドルおもちつき大会" - } ], - "hash" : "446514874e3c985fa57d6447cdd803d1", - "id" : "3302302", - "profile" : { - "bust" : "67", - "height" : "133", - "hip" : "69", - "waist" : "52", - "weight" : "33" - } - }, { - "alias_name" : "ゴスペルドレス", - "alias_name_display" : "ゴスペルドレス", - "event" : [ { - "event_id" : 208, - "event_name" : "アイドルサバイバル聖歌響くクリスマス" - } ], - "hash" : "c5cfd776209d261d147d40a122fbce6d", - "id" : "3207801", - "profile" : { - "bust" : "68", - "height" : "135", - "hip" : "70", - "waist" : "53", - "weight" : "34" - } - }, { - "alias_name" : "ゴスペルドレス", - "alias_name_display" : "ゴスペルドレス", - "event" : [ { - "event_id" : 208, - "event_name" : "アイドルサバイバル聖歌響くクリスマス" - } ], - "hash" : "386eb2f9064e3658c5de712c36f4b685", - "id" : "3307802", - "profile" : { - "bust" : "68", - "height" : "135", - "hip" : "70", - "waist" : "53", - "weight" : "34" - } - }, { - "alias_name" : "マーチングバンド", - "alias_name_display" : "マーチングバンド", - "hash" : "39647db5da91cae2322aafcfb93b2832", - "id" : "3216601", - "profile" : { - "bust" : "68", - "height" : "135", - "hip" : "70", - "waist" : "53", - "weight" : "34" - } - }, { - "alias_name" : "マーチングバンド", - "alias_name_display" : "マーチングバンド", - "hash" : "c468fb201eda84cf94cd2ddca45ea09f", - "id" : "3316602", - "profile" : { - "bust" : "68", - "height" : "135", - "hip" : "70", - "waist" : "53", - "weight" : "34" - } - }, { - "alias_name" : "エレガントI.C", - "alias_name_display" : "エレガントI.C", - "event" : [ { - "event_id" : 1205, - "event_name" : "目指せ優雅なお嬢様 アイドルチャレンジ" - } ], - "hash" : "eb7c81a65fd7e6298c860ee07e8d3d97", - "id" : "3321802", - "profile" : { - "bust" : "68", - "height" : "135", - "hip" : "70", - "waist" : "53", - "weight" : "34" - } - }, { - "alias_name" : "ウィンターバカンス", - "alias_name_display" : "ウィンターバカンス", - "hash" : "3c64d5dad75b33a0fb0cc5d12e4d8505", - "id" : "3226801", - "profile" : { - "bust" : "68", - "height" : "135", - "hip" : "70", - "waist" : "53", - "weight" : "34" - } - }, { - "alias_name" : "ウィンターバカンス", - "alias_name_display" : "ウィンターバカンス", - "hash" : "0bf03f5221911fc5b1abf9eb9f296865", - "id" : "3326802", - "profile" : { - "bust" : "68", - "height" : "135", - "hip" : "70", - "waist" : "53", - "weight" : "34" - } - }, { - "alias_name" : "フェリーチェ・チョコラータ", - "alias_name_display" : "フェリーチェ・チョコラータ", - "hash" : "68fa645bdf7cb21a74bcacc5987d31c7", - "id" : "3232501", - "profile" : { - "bust" : "68", - "height" : "135", - "hip" : "70", - "waist" : "53", - "weight" : "34" - } - }, { - "alias_name" : "フェリーチェ・チョコラータ", - "alias_name_display" : "フェリーチェ・チョコラータ", - "hash" : "4260fa0cfa9d7f4580c26b03aeeba068", - "id" : "3332502", - "profile" : { - "bust" : "68", - "height" : "135", - "hip" : "70", - "waist" : "53", - "weight" : "34" - } - }, { - "alias_name" : "サンフラワーイエロー", - "alias_name_display" : "サンフラワーイエロー", - "event" : [ { - "event_id" : "004", - "event_name" : "第4回プロダクションマッチフェスティバル" - } ], - "hash" : "ae3ba85f888597f52c2744eeac3d9ace", - "id" : "3402901", - "profile" : { - "bust" : "67", - "height" : "134", - "hip" : "69", - "waist" : "52", - "weight" : "33" - } - }, { - "alias_name" : "サンフラワーイエロー", - "alias_name_display" : "サンフラワーイエロー", - "event" : [ { - "event_id" : "004", - "event_name" : "第4回プロダクションマッチフェスティバル" - } ], - "hash" : "2175109269fe3e11706218748d8a2d9a", - "id" : "3502902", - "profile" : { - "bust" : "68", - "height" : "135", - "hip" : "70", - "waist" : "53", - "weight" : "34" - } - }, { - "alias_name" : "桜色少女", - "alias_name_display" : "桜色少女", - "event" : [ { - "event_id" : 406, - "event_name" : "アイドルプロデュース 春の桜祭り編" - } ], - "hash" : "8c37d3680b260969d28f66934d928c0a", - "id" : "3405701", - "profile" : { - "bust" : "68", - "height" : "135", - "hip" : "70", - "waist" : "53", - "weight" : "34" - } - }, { - "alias_name" : "桜色少女", - "alias_name_display" : "桜色少女", - "event" : [ { - "event_id" : 406, - "event_name" : "アイドルプロデュース 春の桜祭り編" - } ], - "hash" : "51a61c8fc7c098dd3f0c4c9ed938e1a8", - "id" : "3505702", - "profile" : { - "bust" : "68", - "height" : "135", - "hip" : "70", - "waist" : "53", - "weight" : "34" - } - }, { - "alias_name" : "桜色スマイル", - "alias_name_display" : "桜色スマイル", - "event" : [ { - "event_id" : 406, - "event_name" : "アイドルプロデュース 春の桜祭り編" - } ], - "hash" : "e15258ec31bbcad88a7ea2a78b25be11", - "id" : "3405801", - "profile" : { - "bust" : "68", - "height" : "135", - "hip" : "70", - "waist" : "53", - "weight" : "34" - } - }, { - "alias_name" : "桜色スマイル", - "alias_name_display" : "桜色スマイル", - "event" : [ { - "event_id" : 406, - "event_name" : "アイドルプロデュース 春の桜祭り編" - } ], - "hash" : "effb92325b6736f30e59c8ca440592d8", - "id" : "3505802", - "profile" : { - "bust" : "68", - "height" : "135", - "hip" : "70", - "waist" : "53", - "weight" : "34" - } - }, { - "alias_name" : "ちびっこポリス", - "alias_name_display" : "ちびっこポリス", - "hash" : "94f468204a314b13c221bc2ff351a15a", - "id" : "3410001", - "profile" : { - "bust" : "68", - "height" : "135", - "hip" : "70", - "waist" : "53", - "weight" : "34" - } - }, { - "alias_name" : "ちびっこポリス", - "alias_name_display" : "ちびっこポリス", - "hash" : "b7bb5571402b624ffde22149b35d812c", - "id" : "3510002", - "profile" : { - "bust" : "68", - "height" : "135", - "hip" : "70", - "waist" : "53", - "weight" : "34" - } - }, { - "alias_name" : "ハピネスチアー", - "alias_name_display" : "ハピネスチアー", - "event" : [ { - "event_id" : 1105, - "event_name" : "第5回プロダクション対抗トークバトルショー" - } ], - "hash" : "ca52997de1baa2ce1074885bf86e0124", - "id" : "3417301", - "profile" : { - "bust" : "68", - "height" : "135", - "hip" : "70", - "waist" : "53", - "weight" : "34" - } - }, { - "alias_name" : "ハピネスチアー", - "alias_name_display" : "ハピネスチアー", - "event" : [ { - "event_id" : 1105, - "event_name" : "第5回プロダクション対抗トークバトルショー" - } ], - "hash" : "e31308f0895ca49eed17a2418b4533b1", - "id" : "3517302", - "profile" : { - "bust" : "68", - "height" : "135", - "hip" : "70", - "waist" : "53", - "weight" : "34" - } - }, { - "alias_name" : "ハツラツお嬢様", - "alias_name_display" : "ハツラツお嬢様", - "event" : [ { - "event_id" : 1205, - "event_name" : "目指せ優雅なお嬢様 アイドルチャレンジ" - } ], - "hash" : "7ac839de7d770abf38f7c1980d26faaa", - "id" : "3421801", - "profile" : { - "bust" : "68", - "height" : "135", - "hip" : "70", - "waist" : "53", - "weight" : "34" - } - }, { - "alias_name" : "ハツラツお嬢様", - "alias_name_display" : "ハツラツお嬢様", - "event" : [ { - "event_id" : 1205, - "event_name" : "目指せ優雅なお嬢様 アイドルチャレンジ" - } ], - "hash" : "344f0b05bd380ef7190f06c0bc636968", - "id" : "3521802", - "profile" : { - "bust" : "68", - "height" : "135", - "hip" : "70", - "waist" : "53", - "weight" : "34" - } - }, { - "alias_name" : "ハツラツお嬢様・S", - "alias_name_display" : "ハツラツお嬢様・S", - "event" : [ { - "event_id" : 1205, - "event_name" : "目指せ優雅なお嬢様 アイドルチャレンジ" - } ], - "hash" : "16879ab349989f30795c5a4aaf1f5b24", - "id" : "3421901", - "profile" : { - "bust" : "68", - "height" : "135", - "hip" : "70", - "waist" : "53", - "weight" : "34" - } - }, { - "alias_name" : "ハツラツお嬢様・S", - "alias_name_display" : "ハツラツお嬢様・S", - "event" : [ { - "event_id" : 1205, - "event_name" : "目指せ優雅なお嬢様 アイドルチャレンジ" - } ], - "hash" : "8eff69e4d99a16ba0ab8d8808b1dcfce", - "id" : "3521902", - "profile" : { - "bust" : "68", - "height" : "135", - "hip" : "70", - "waist" : "53", - "weight" : "34" - } - }, { - "alias_name" : "元気のみなもと", - "alias_name_display" : "元気のみなもと", - "event" : [ { - "event_id" : 715, - "event_name" : "第15回ドリームLIVEフェスティバル" - } ], - "hash" : "d98c949abd856585767f36e80ae36d61", - "id" : "3426101", - "profile" : { - "bust" : "68", - "height" : "135", - "hip" : "70", - "waist" : "53", - "weight" : "34" - } - }, { - "alias_name" : "元気のみなもと", - "alias_name_display" : "元気のみなもと", - "event" : [ { - "event_id" : 715, - "event_name" : "第15回ドリームLIVEフェスティバル" - } ], - "hash" : "db033d61f283a9b24cd8fb229961d6e4", - "id" : "3526102", - "profile" : { - "bust" : "68", - "height" : "135", - "hip" : "70", - "waist" : "53", - "weight" : "34" - } - }, { - "alias_name" : "じょいふるステップ", - "alias_name_display" : "じょいふるステップ", - "hash" : "b30dceee4b25e7fac98eb13236b79333", - "id" : "3433201", - "profile" : { - "bust" : "68", - "height" : "135", - "hip" : "70", - "waist" : "53", - "weight" : "34" - } - }, { - "alias_name" : "じょいふるステップ", - "alias_name_display" : "じょいふるステップ", - "hash" : "3d60bd5856309ade51e8d694c9ce0f57", - "id" : "3533202", - "profile" : { - "bust" : "68", - "height" : "135", - "hip" : "70", - "waist" : "53", - "weight" : "34" - } - } ], - "idol_id" : 137, - "idol_name" : "龍崎薫", - "idol_name_display" : "龍崎薫", - "units" : [ { - "id" : "92", - "name" : "ゴスペルシスターズ" - }, { - "id" : "105", - "name" : "リトルチェリーブロッサム" - }, { - "id" : "174", - "name" : "カナリアサマー" - }, { - "id" : "214", - "name" : "L.M.B.G" - } ] -}, { - "aliases" : [ { - "hash" : "0534bded8c74fa792bde6f3c5692c187", - "id" : "3000501", - "profile" : { - "bust" : "82", - "height" : "159", - "hip" : "83", - "waist" : "57", - "weight" : "41" - } - }, { - "hash" : "66db6412d0f716cebdb923136609e6ff", - "id" : "3100502", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "85", - "waist" : "57", - "weight" : "41" - } - }, { - "alias_name" : "制服コレクション", - "alias_name_display" : "制服コレクション", - "hash" : "d1ed6ed8f4ef807bff62625a579c2d27", - "id" : "3204001", - "profile" : { - "bust" : "82", - "height" : "159", - "hip" : "83", - "waist" : "57", - "weight" : "41" - } - }, { - "alias_name" : "制服コレクション", - "alias_name_display" : "制服コレクション", - "hash" : "770f6f299f10bbe5d17ef25bd8db5ee9", - "id" : "3304002", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "85", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ロッキングスタイル", - "alias_name_display" : "ロッキングスタイル", - "hash" : "49f37294a7107e3ed3ff3ad620ab8f9e", - "id" : "3205601", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "85", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ロッキングスタイル", - "alias_name_display" : "ロッキングスタイル", - "hash" : "fd6f806676ee2bd496b0be0c5e660e28", - "id" : "3305602", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "85", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "新春コレクション", - "alias_name_display" : "新春コレクション", - "hash" : "9bdac3127034352eeb54915995ed2be4", - "id" : "3208201", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "85", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "新春コレクション", - "alias_name_display" : "新春コレクション", - "hash" : "2b66d0a66eaefce284d6ff1724116cda", - "id" : "3308202", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "85", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ロッキングセッション", - "alias_name_display" : "ロッキングセッション", - "event" : [ { - "event_id" : 601, - "event_name" : "アイドルセッション" - } ], - "hash" : "dfb6cfa4b823cae2b1e3347f16dcbafc", - "id" : "3209901", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "85", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ロッキングセッション", - "alias_name_display" : "ロッキングセッション", - "event" : [ { - "event_id" : 601, - "event_name" : "アイドルセッション" - } ], - "hash" : "b72b7f9db952c2c0581b218fa61a73bb", - "id" : "3309902", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "85", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ヴォヤージュ・シーフ", - "alias_name_display" : "ヴォヤージュ・シーフ", - "event" : [ { - "event_id" : 511, - "event_name" : "幻想公演 黒薔薇姫のヴォヤージュ" - } ], - "hash" : "33a9936da2d8a89bf45c8c247667da3b", - "id" : "3216501", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "85", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ヴォヤージュ・シーフ", - "alias_name_display" : "ヴォヤージュ・シーフ", - "event" : [ { - "event_id" : 511, - "event_name" : "幻想公演 黒薔薇姫のヴォヤージュ" - } ], - "hash" : "8c3374d0b42f60c4f071ebd612f6c93f", - "id" : "3316502", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "85", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ロックウィズユー", - "alias_name_display" : "ロックウィズユー", - "hash" : "90d71c799279b69652448cb13a8c46c4", - "id" : "3220501", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "85", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ロックウィズユー", - "alias_name_display" : "ロックウィズユー", - "hash" : "5036702242079676623aab404c834930", - "id" : "3320502", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "85", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "クリスマスナイト", - "alias_name_display" : "クリスマスナイト", - "hash" : "8a7f88c33ed6f745ff82a214a58fbf6c", - "id" : "3226601", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "85", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "クリスマスナイト", - "alias_name_display" : "クリスマスナイト", - "hash" : "eb50645fe29a490498a1cc937acd9bdf", - "id" : "3326602", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "85", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "夏風スポーツ", - "alias_name_display" : "夏風スポーツ", - "hash" : "c1f7f8f5ef1cba3392af0e747b26fc9d", - "id" : "3230301", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "85", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "夏風スポーツ", - "alias_name_display" : "夏風スポーツ", - "hash" : "299fef4852147871cdd00ca8c0124599", - "id" : "3330302", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "85", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "クリエイティブI.C", - "alias_name_display" : "クリエイティブI.C", - "event" : [ { - "event_id" : 1215, - "event_name" : "ふたりでアイドルチャレンジ 目指せクールなミュージックビデオ" - } ], - "hash" : "39ec2283379f1fd2d494ba14b6addbc6", - "id" : "3333402", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "85", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ハートビートロッカー", - "alias_name_display" : "ハートビートロッカー", - "event" : [ { - "event_id" : 601, - "event_name" : "アイドルセッション" - } ], - "hash" : "49bbaee0b5da4e747f6a30f047aa53a3", - "id" : "3406101", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "85", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ハートビートロッカー", - "alias_name_display" : "ハートビートロッカー", - "event" : [ { - "event_id" : 601, - "event_name" : "アイドルセッション" - } ], - "hash" : "a7a8fdea40caf917c330796c9d55da16", - "id" : "3506102", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "85", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ロッキングラヴァー", - "alias_name_display" : "ロッキングラヴァー", - "hash" : "b732fa6c81f1f4a53dd0f3eaf9573b0e", - "id" : "3408901", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "85", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ロッキングラヴァー", - "alias_name_display" : "ロッキングラヴァー", - "hash" : "fd399f8c029ebfb373556f8a66d4d0a6", - "id" : "3508902", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "85", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ラギッドチアー", - "alias_name_display" : "ラギッドチアー", - "event" : [ { - "event_id" : 1104, - "event_name" : "プロダクション対抗トークバトルショーinSUMMER" - } ], - "hash" : "f66b8072a4bde3415f62c74ec5991d05", - "id" : "3416501", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "85", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ラギッドチアー", - "alias_name_display" : "ラギッドチアー", - "event" : [ { - "event_id" : 1104, - "event_name" : "プロダクション対抗トークバトルショーinSUMMER" - } ], - "hash" : "d53f71d5d96617cb898d079671603d0c", - "id" : "3516502", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "85", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "華夜紅炎", - "alias_name_display" : "華夜紅炎", - "event" : [ { - "event_id" : 1702, - "event_name" : "アイドルプロデュース京町編(復刻)" - } ], - "hash" : "ad4aeac42d563895be2f638167d74b79", - "id" : "3424901", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "85", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "華夜紅炎", - "alias_name_display" : "華夜紅炎", - "event" : [ { - "event_id" : 1702, - "event_name" : "アイドルプロデュース京町編(復刻)" - } ], - "hash" : "03b304d0171758d025ed2dd02bd01c28", - "id" : "3524902", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "85", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ロッキングメイド", - "alias_name_display" : "ロッキングメイド", - "hash" : "27d5c3b652aa05efe6e8c3400a3294ea", - "id" : "3429201", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "85", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ロッキングメイド", - "alias_name_display" : "ロッキングメイド", - "hash" : "e6d82a7805702869c9beb24e37d66411", - "id" : "3529202", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "85", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ベニトアイトロンギング", - "alias_name_display" : "ベニトアイトロンギング", - "event" : [ { - "event_id" : 1215, - "event_name" : "ふたりでアイドルチャレンジ 目指せクールなミュージックビデオ" - } ], - "hash" : "cb5056ce89a2e9060f6d411eebdfbe30", - "id" : "3439001", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "85", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ベニトアイトロンギング", - "alias_name_display" : "ベニトアイトロンギング", - "event" : [ { - "event_id" : 1215, - "event_name" : "ふたりでアイドルチャレンジ 目指せクールなミュージックビデオ" - } ], - "hash" : "468cdc31777a7a884927fb3ca0db52f5", - "id" : "3539002", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "85", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ベニトアイトロンギング・S", - "alias_name_display" : "ベニトアイトロンギング・S", - "event" : [ { - "event_id" : 1215, - "event_name" : "ふたりでアイドルチャレンジ 目指せクールなミュージックビデオ" - } ], - "hash" : "59af084173d77dc7657f85e162dbc4b6", - "id" : "3439101", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "85", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ベニトアイトロンギング・S", - "alias_name_display" : "ベニトアイトロンギング・S", - "event" : [ { - "event_id" : 1215, - "event_name" : "ふたりでアイドルチャレンジ 目指せクールなミュージックビデオ" - } ], - "hash" : "f3a9f6ffd1b7e0ed7bad2d27cb3604af", - "id" : "3539102", - "profile" : { - "bust" : "83", - "height" : "159", - "hip" : "85", - "waist" : "57", - "weight" : "45" - } - } ], - "idol_id" : 138, - "idol_name" : "木村夏樹", - "idol_name_display" : "木村夏樹", - "units" : [ { - "id" : "81", - "name" : "Rock the Beat" - }, { - "id" : "117", - "name" : "ハードメテオライツ" - }, { - "id" : "123", - "name" : "マッシブライダース" - }, { - "id" : "168", - "name" : "*(Asterisk) with なつなな" - }, { - "id" : "175", - "name" : "ライトグリーンセーフ" - }, { - "id" : "176", - "name" : "炎陣" - } ] -}, { - "aliases" : [ { - "hash" : "7674301daa6c75a7321b726f9571ead2", - "id" : "3000601", - "profile" : { - "bust" : "81", - "height" : "161", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "hash" : "f69052165dc006c8bc15558a299ef1b7", - "id" : "3100602", - "profile" : { - "bust" : "81", - "height" : "161", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "ジューンブライド", - "alias_name_display" : "ジューンブライド", - "event" : [ { - "event_id" : 105, - "event_name" : "きらめくブライダルショー" - } ], - "hash" : "604b434174cd1f069de9b869d0448554", - "id" : "3002701", - "profile" : { - "bust" : "81", - "height" : "161", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "ジューンブライド", - "alias_name_display" : "ジューンブライド", - "event" : [ { - "event_id" : 105, - "event_name" : "きらめくブライダルショー" - } ], - "hash" : "8711647291f4ed0a44bea640aa273a4e", - "id" : "3102702", - "profile" : { - "bust" : "81", - "height" : "161", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "プリムラブルーム", - "alias_name_display" : "プリムラブルーム", - "event" : [ { - "event_id" : 703, - "event_name" : "第3回ドリームLIVEフェスティバル" - } ], - "hash" : "b5ec0f44a42c1c9f6ced51deeb325d43", - "id" : "3213201", - "profile" : { - "bust" : "81", - "height" : "161", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "プリムラブルーム", - "alias_name_display" : "プリムラブルーム", - "event" : [ { - "event_id" : 703, - "event_name" : "第3回ドリームLIVEフェスティバル" - } ], - "hash" : "e64ebec9e56c38e90e5d327430fbeced", - "id" : "3313202", - "profile" : { - "bust" : "81", - "height" : "161", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "フレッシュJKT", - "alias_name_display" : "フレッシュJKT", - "hash" : "1f906f0ee9f495fda81757e9ebabbc6b", - "id" : "3217001", - "profile" : { - "bust" : "81", - "height" : "161", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "フレッシュJKT", - "alias_name_display" : "フレッシュJKT", - "hash" : "dc863484f599dc76a895efecf840298f", - "id" : "3317002", - "profile" : { - "bust" : "81", - "height" : "161", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "バレンタインデビル", - "alias_name_display" : "バレンタインデビル", - "hash" : "dc08ed4d9a27c637264bf09fbafb4325", - "id" : "3221501", - "profile" : { - "bust" : "81", - "height" : "161", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "バレンタインデビル", - "alias_name_display" : "バレンタインデビル", - "hash" : "1cf3856ba48a3db590710a6fe6906ccb", - "id" : "3321502", - "profile" : { - "bust" : "81", - "height" : "161", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "やわらかな音", - "alias_name_display" : "やわらかな音", - "hash" : "b766fb82f395cb35df7d159a0888dc78", - "id" : "3226001", - "profile" : { - "bust" : "81", - "height" : "161", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "やわらかな音", - "alias_name_display" : "やわらかな音", - "hash" : "56359b75053466aeeeb9e8f91719ef5a", - "id" : "3326002", - "profile" : { - "bust" : "81", - "height" : "161", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "美しき挑戦", - "alias_name_display" : "美しき挑戦", - "event" : [ { - "event_id" : 1905, - "event_name" : "ディアリースターナイト ~聖夜のキセキ~" - } ], - "hash" : "c023aaab4cb1a06929ef073eef6321b9", - "id" : "3331802", - "profile" : { - "bust" : "81", - "height" : "161", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "南国の舞姫", - "alias_name_display" : "南国の舞姫", - "hash" : "fde6b9e07ded5dfe6b368d37d4e5df8b", - "id" : "3406201", - "profile" : { - "bust" : "81", - "height" : "161", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "南国の舞姫", - "alias_name_display" : "南国の舞姫", - "hash" : "61987ec6972c1ac539f65eb25e89e97a", - "id" : "3506202", - "profile" : { - "bust" : "81", - "height" : "161", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "アレグロ気分", - "alias_name_display" : "アレグロ気分", - "event" : [ { - "event_id" : 708, - "event_name" : "第8回ドリームLIVEフェスティバル" - } ], - "hash" : "565af6911e5cf6ba5de1e56023e00349", - "id" : "3416901", - "profile" : { - "bust" : "81", - "height" : "161", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "アレグロ気分", - "alias_name_display" : "アレグロ気分", - "event" : [ { - "event_id" : 708, - "event_name" : "第8回ドリームLIVEフェスティバル" - } ], - "hash" : "1a5d7692d328fa114b177ebe5c427d0b", - "id" : "3516902", - "profile" : { - "bust" : "81", - "height" : "161", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "フライハイ!", - "alias_name_display" : "フライハイ!", - "event" : [ { - "event_id" : 1803, - "event_name" : "アイドルバラエティ 大空への挑戦 ~Fly me to the Sky~" - } ], - "hash" : "624fd0a55c5e957c9634dd6e2188f7ce", - "id" : "3432501", - "profile" : { - "bust" : "81", - "height" : "161", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "フライハイ!", - "alias_name_display" : "フライハイ!", - "event" : [ { - "event_id" : 1803, - "event_name" : "アイドルバラエティ 大空への挑戦 ~Fly me to the Sky~" - } ], - "hash" : "3fc83fbe66b63aaff06e8c8d1bf27da5", - "id" : "3532502", - "profile" : { - "bust" : "81", - "height" : "161", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "心吹き抜ける風", - "alias_name_display" : "心吹き抜ける風", - "hash" : "478e26b19bf1a88474dc0ffb92717954", - "id" : "3440501", - "profile" : { - "bust" : "81", - "height" : "161", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "心吹き抜ける風", - "alias_name_display" : "心吹き抜ける風", - "hash" : "e23409154c61e745d3e92fe075d8d7e8", - "id" : "3540502", - "profile" : { - "bust" : "81", - "height" : "161", - "hip" : "81", - "waist" : "56", - "weight" : "44" - } - } ], - "idol_id" : 139, - "idol_name" : "松山久美子", - "idol_name_display" : "松山久美子", - "units" : [ { - "id" : "118", - "name" : "ビューティーアリュール" - }, { - "id" : "146", - "name" : "サンセットノスタルジー" - } ] -}, { - "aliases" : [ { - "hash" : "a264ec914168a4e0fa2be2774b4213f5", - "id" : "3000701", - "profile" : { - "bust" : "85", - "height" : "157", - "hip" : "82", - "waist" : "57", - "weight" : "46" - } - }, { - "hash" : "e24e9a4d94ecff4e3b24d87642d54ca4", - "id" : "3100702", - "profile" : { - "bust" : "85", - "height" : "157", - "hip" : "82", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "テーマパーク", - "alias_name_display" : "テーマパーク", - "event" : [ { - "event_id" : 203, - "event_name" : "アイドルサバイバルinテーマパーク" - } ], - "hash" : "bbb2c000d43ea2a15adbed784595add3", - "id" : "3204401", - "profile" : { - "bust" : "85", - "height" : "157", - "hip" : "82", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "テーマパーク", - "alias_name_display" : "テーマパーク", - "event" : [ { - "event_id" : 203, - "event_name" : "アイドルサバイバルinテーマパーク" - } ], - "hash" : "e02a44f2de1e821a4dfff0b3d3db681f", - "id" : "3304402", - "profile" : { - "bust" : "85", - "height" : "157", - "hip" : "82", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "湯けむり月夜", - "alias_name_display" : "湯けむり月夜", - "hash" : "d96ef4cbddf04a780a4af8082a4081e2", - "id" : "3213701", - "profile" : { - "bust" : "85", - "height" : "157", - "hip" : "82", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "湯けむり月夜", - "alias_name_display" : "湯けむり月夜", - "hash" : "d3b714b42d67360598b8c8c9a28d3ef1", - "id" : "3313702", - "profile" : { - "bust" : "85", - "height" : "157", - "hip" : "82", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "アクティブチアー", - "alias_name_display" : "アクティブチアー", - "event" : [ { - "event_id" : "015", - "event_name" : "第15回プロダクションマッチフェスティバル" - } ], - "hash" : "aa81549cf0a3cee335c64d20e9386635", - "id" : "3215701", - "profile" : { - "bust" : "85", - "height" : "157", - "hip" : "82", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "アクティブチアー", - "alias_name_display" : "アクティブチアー", - "event" : [ { - "event_id" : "015", - "event_name" : "第15回プロダクションマッチフェスティバル" - } ], - "hash" : "60d7e7fa4af2462132d22b339b0df55e", - "id" : "3315702", - "profile" : { - "bust" : "85", - "height" : "157", - "hip" : "82", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ナイトパーティー", - "alias_name_display" : "ナイトパーティー", - "hash" : "40ac7b999dd928719947512fff5f57fd", - "id" : "3221901", - "profile" : { - "bust" : "85", - "height" : "157", - "hip" : "82", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ナイトパーティー", - "alias_name_display" : "ナイトパーティー", - "hash" : "a5f88f3476beafef8c1fbd491bdf167b", - "id" : "3321902", - "profile" : { - "bust" : "85", - "height" : "157", - "hip" : "82", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ウェルネスデイズ", - "alias_name_display" : "ウェルネスデイズ", - "hash" : "9086b74e92fcb074c154a8aa5ad516d2", - "id" : "3229301", - "profile" : { - "bust" : "85", - "height" : "157", - "hip" : "82", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ウェルネスデイズ", - "alias_name_display" : "ウェルネスデイズ", - "hash" : "645befcc6e4768dd22934277bd7e98cf", - "id" : "3329302", - "profile" : { - "bust" : "85", - "height" : "157", - "hip" : "82", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "フェリーチェ・チョコラータ", - "alias_name_display" : "フェリーチェ・チョコラータ", - "hash" : "8010afc200495c069ca1c340ec365798", - "id" : "3232601", - "profile" : { - "bust" : "85", - "height" : "157", - "hip" : "82", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "フェリーチェ・チョコラータ", - "alias_name_display" : "フェリーチェ・チョコラータ", - "hash" : "ca815683f4f6629bb6bf302a75e56d55", - "id" : "3332602", - "profile" : { - "bust" : "85", - "height" : "157", - "hip" : "82", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "アクティブビューティー", - "alias_name_display" : "アクティブビューティー", - "hash" : "6493f1eb3bfcb583cff1e74961039d42", - "id" : "3406301", - "profile" : { - "bust" : "85", - "height" : "157", - "hip" : "82", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "アクティブビューティー", - "alias_name_display" : "アクティブビューティー", - "hash" : "f8ba08532e70a89d22a0b58a01cedd4a", - "id" : "3506302", - "profile" : { - "bust" : "85", - "height" : "157", - "hip" : "82", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ロワイヤルサマー", - "alias_name_display" : "ロワイヤルサマー", - "event" : [ { - "event_id" : 806, - "event_name" : "アイドルLIVEロワイヤルinSUMMER" - } ], - "hash" : "d86f212dc2bd0b2aff150597954ae65c", - "id" : "3416801", - "profile" : { - "bust" : "85", - "height" : "157", - "hip" : "82", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ロワイヤルサマー", - "alias_name_display" : "ロワイヤルサマー", - "event" : [ { - "event_id" : 806, - "event_name" : "アイドルLIVEロワイヤルinSUMMER" - } ], - "hash" : "6d7bec74730f62497406933a724deeb7", - "id" : "3516802", - "profile" : { - "bust" : "85", - "height" : "157", - "hip" : "82", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "パンプアップ", - "alias_name_display" : "パンプアップ", - "event" : [ { - "event_id" : 1304, - "event_name" : "第4回プロダクションマッチフェスティバルS" - } ], - "hash" : "87ddcb0644b65e0e0f77a0b8b40e2e9e", - "id" : "3425201", - "profile" : { - "bust" : "85", - "height" : "157", - "hip" : "82", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "パンプアップ", - "alias_name_display" : "パンプアップ", - "event" : [ { - "event_id" : 1304, - "event_name" : "第4回プロダクションマッチフェスティバルS" - } ], - "hash" : "6404ed97807a171fa347f103f3a1ed80", - "id" : "3525202", - "profile" : { - "bust" : "85", - "height" : "157", - "hip" : "82", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "アクティブ・ロワイヤル", - "alias_name_display" : "アクティブ・ロワイヤル", - "event" : [ { - "event_id" : 816, - "event_name" : "第16回アイドルLIVEロワイヤル" - } ], - "hash" : "63e3fed9d083a1311df1964f1095b84c", - "id" : "3430401", - "profile" : { - "bust" : "85", - "height" : "157", - "hip" : "82", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "アクティブ・ロワイヤル", - "alias_name_display" : "アクティブ・ロワイヤル", - "event" : [ { - "event_id" : 816, - "event_name" : "第16回アイドルLIVEロワイヤル" - } ], - "hash" : "1013f20a456ce20449239b3e587bb424", - "id" : "3530402", - "profile" : { - "bust" : "85", - "height" : "157", - "hip" : "82", - "waist" : "57", - "weight" : "46" - } - } ], - "idol_id" : 140, - "idol_name" : "斉藤洋子", - "idol_name_display" : "斉藤洋子", - "units" : [ { - "id" : "150", - "name" : "ヒートアップ☆チアーズ" - }, { - "id" : "175", - "name" : "ライトグリーンセーフ" - }, { - "id" : "207", - "name" : "ムーランルージュ" - } ] -}, { - "aliases" : [ { - "hash" : "52a617fd8f60c1aec0b3d22d3cb1c944", - "id" : "3000801", - "profile" : { - "bust" : "87", - "height" : "166", - "hip" : "87", - "waist" : "57", - "weight" : "47" - } - }, { - "hash" : "a68bf3cebca5cf13cc7612b3a352049a", - "id" : "3100802", - "profile" : { - "bust" : "87", - "height" : "166", - "hip" : "87", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "スポーツ祭", - "alias_name_display" : "スポーツ祭", - "hash" : "9a0f0835a438f5d4013a84b532afe2e2", - "id" : "3204801", - "profile" : { - "bust" : "87", - "height" : "166", - "hip" : "87", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "スポーツ祭", - "alias_name_display" : "スポーツ祭", - "hash" : "2f9882ba5bf9bf2a98e4c9f6be3bb4d0", - "id" : "3304802", - "profile" : { - "bust" : "87", - "height" : "166", - "hip" : "87", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "素顔のお姉さん", - "alias_name_display" : "素顔のお姉さん", - "event" : [ { - "event_id" : 704, - "event_name" : "第4回ドリームLIVEフェスティバル" - } ], - "hash" : "0fa2b130740aac2e0c2a03514c384087", - "id" : "3214001", - "profile" : { - "bust" : "87", - "height" : "166", - "hip" : "87", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "素顔のお姉さん", - "alias_name_display" : "素顔のお姉さん", - "event" : [ { - "event_id" : 704, - "event_name" : "第4回ドリームLIVEフェスティバル" - } ], - "hash" : "6bc46ded8c72c0dcf0c755cf1030fd32", - "id" : "3314002", - "profile" : { - "bust" : "87", - "height" : "166", - "hip" : "87", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "ハッピーウェディング", - "alias_name_display" : "ハッピーウェディング", - "hash" : "ca24c8bd42c3d13dbfa7557b1c1372eb", - "id" : "3217201", - "profile" : { - "bust" : "87", - "height" : "166", - "hip" : "87", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "ハッピーウェディング", - "alias_name_display" : "ハッピーウェディング", - "hash" : "f0454c235c5f433fcda6b03cb620ceed", - "id" : "3317202", - "profile" : { - "bust" : "87", - "height" : "166", - "hip" : "87", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "ウォーミーリップル", - "alias_name_display" : "ウォーミーリップル", - "hash" : "7a53b24d9a77a46b09d23ffea844c323", - "id" : "3223501", - "profile" : { - "bust" : "87", - "height" : "166", - "hip" : "87", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "ウォーミーリップル", - "alias_name_display" : "ウォーミーリップル", - "hash" : "96d272441983405ba34c23b46e6c2227", - "id" : "3323502", - "profile" : { - "bust" : "87", - "height" : "166", - "hip" : "87", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "ファンサーキット", - "alias_name_display" : "ファンサーキット", - "hash" : "15ee9f0c9ebcc5d43e060efb4cc379df", - "id" : "3228801", - "profile" : { - "bust" : "87", - "height" : "166", - "hip" : "87", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "ファンサーキット", - "alias_name_display" : "ファンサーキット", - "hash" : "2c3ff03cbadf8efa3f71ad6b7612ca08", - "id" : "3328802", - "profile" : { - "bust" : "87", - "height" : "166", - "hip" : "87", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "セクシーサーファー", - "alias_name_display" : "セクシーサーファー", - "event" : [ { - "event_id" : "010", - "event_name" : "第10回プロダクションマッチフェスティバル" - } ], - "hash" : "742203c0a8436f9ff6bdee1a338d0347", - "id" : "3407001", - "profile" : { - "bust" : "87", - "height" : "166", - "hip" : "87", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "セクシーサーファー", - "alias_name_display" : "セクシーサーファー", - "event" : [ { - "event_id" : "010", - "event_name" : "第10回プロダクションマッチフェスティバル" - } ], - "hash" : "f1d924650d28a57e713a8bf1acacaa54", - "id" : "3507002", - "profile" : { - "bust" : "87", - "height" : "166", - "hip" : "87", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "グルービー・ロワイヤル", - "alias_name_display" : "グルービー・ロワイヤル", - "event" : [ { - "event_id" : 808, - "event_name" : "第8回アイドルLIVEロワイヤル" - } ], - "hash" : "c908f6fbdc042fbc50430d13a69a3057", - "id" : "3419301", - "profile" : { - "bust" : "87", - "height" : "166", - "hip" : "87", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "グルービー・ロワイヤル", - "alias_name_display" : "グルービー・ロワイヤル", - "event" : [ { - "event_id" : 808, - "event_name" : "第8回アイドルLIVEロワイヤル" - } ], - "hash" : "7ad648beefa0778eae89938851dc6e61", - "id" : "3519302", - "profile" : { - "bust" : "87", - "height" : "166", - "hip" : "87", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "祝餐の淑女", - "alias_name_display" : "祝餐の淑女", - "event" : [ { - "event_id" : 718, - "event_name" : "ドリームLIVEフェスティバル 新春SP" - } ], - "hash" : "3c1312246f7720032341d4e19c526125", - "id" : "3428901", - "profile" : { - "bust" : "87", - "height" : "166", - "hip" : "87", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "祝餐の淑女", - "alias_name_display" : "祝餐の淑女", - "event" : [ { - "event_id" : 718, - "event_name" : "ドリームLIVEフェスティバル 新春SP" - } ], - "hash" : "ae593e0a2d8887e74430c883147e51f5", - "id" : "3528902", - "profile" : { - "bust" : "87", - "height" : "166", - "hip" : "87", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "フローズンダンサー", - "alias_name_display" : "フローズンダンサー", - "event" : [ { - "event_id" : 727, - "event_name" : "第27回ドリームLIVEフェスティバル" - } ], - "hash" : "e27a43d681805008f55469904c953aca", - "id" : "3437801", - "profile" : { - "bust" : "87", - "height" : "166", - "hip" : "87", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "フローズンダンサー", - "alias_name_display" : "フローズンダンサー", - "event" : [ { - "event_id" : 727, - "event_name" : "第27回ドリームLIVEフェスティバル" - } ], - "hash" : "1714cda17ded0f8215ee4c0f217a2c91", - "id" : "3537802", - "profile" : { - "bust" : "87", - "height" : "166", - "hip" : "87", - "waist" : "57", - "weight" : "47" - } - } ], - "idol_id" : 141, - "idol_name" : "沢田麻理菜", - "idol_name_display" : "沢田麻理菜", - "units" : [ { - "id" : "7", - "name" : "エターナルレディエイト" - }, { - "id" : "159", - "name" : "パステル・カクテル" - }, { - "id" : "175", - "name" : "ライトグリーンセーフ" - }, { - "id" : "181", - "name" : "フレッシュアスリーテス" - } ] -}, { - "aliases" : [ { - "hash" : "d7eb1b97b7cc5d256ceb95118ffae977", - "id" : "3000901", - "profile" : { - "bust" : "81", - "height" : "150", - "hip" : "80", - "waist" : "56", - "weight" : "41" - } - }, { - "hash" : "cd29b7fda8167b0f4dbd63f347c1e961", - "id" : "3100902", - "profile" : { - "bust" : "81", - "height" : "150", - "hip" : "80", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "制服コレクション", - "alias_name_display" : "制服コレクション", - "hash" : "8cf81b294f2bd48461e6630ce3ca6be1", - "id" : "3204101", - "profile" : { - "bust" : "81", - "height" : "150", - "hip" : "80", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "制服コレクション", - "alias_name_display" : "制服コレクション", - "hash" : "ac83a1675befe192bae8063a8862af2c", - "id" : "3304102", - "profile" : { - "bust" : "81", - "height" : "150", - "hip" : "80", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "ハワイアンスタイル", - "alias_name_display" : "ハワイアンスタイル", - "event" : [ { - "event_id" : 506, - "event_name" : "アイドルLIVEツアーinハワイ" - } ], - "hash" : "85ef52af1f2d9996d4b0a3f46b3df7fe", - "id" : "3211901", - "profile" : { - "bust" : "81", - "height" : "150", - "hip" : "80", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "ハワイアンスタイル", - "alias_name_display" : "ハワイアンスタイル", - "event" : [ { - "event_id" : 506, - "event_name" : "アイドルLIVEツアーinハワイ" - } ], - "hash" : "14cc48fd8eb6548c8dcfb39dfc1d7bbc", - "id" : "3311902", - "profile" : { - "bust" : "81", - "height" : "150", - "hip" : "80", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "トキメキバレンタイン", - "alias_name_display" : "トキメキバレンタイン", - "hash" : "532af3fcc507a3fb7951ad57b0761e90", - "id" : "3215201", - "profile" : { - "bust" : "81", - "height" : "150", - "hip" : "80", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "トキメキバレンタイン", - "alias_name_display" : "トキメキバレンタイン", - "hash" : "104ec8d4883bf49b54e2c41340624341", - "id" : "3315202", - "profile" : { - "bust" : "81", - "height" : "150", - "hip" : "80", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "フラワーガーデン", - "alias_name_display" : "フラワーガーデン", - "event" : [ { - "event_id" : 213, - "event_name" : "アイドルサバイバルinフラワーガーデン" - } ], - "hash" : "2afe4a5af0037435ffd47489846a4701", - "id" : "3216801", - "profile" : { - "bust" : "81", - "height" : "150", - "hip" : "80", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "フラワーガーデン", - "alias_name_display" : "フラワーガーデン", - "event" : [ { - "event_id" : 213, - "event_name" : "アイドルサバイバルinフラワーガーデン" - } ], - "hash" : "b332fa15c09b8ef0f2946c26b9a128e4", - "id" : "3316802", - "profile" : { - "bust" : "81", - "height" : "150", - "hip" : "80", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "T.B.チアーズ", - "alias_name_display" : "T.B.チアーズ", - "event" : [ { - "event_id" : 1109, - "event_name" : "第9回プロダクション対抗トークバトルショー" - } ], - "hash" : "1c8a014993aeb9b2090aef102b3017da", - "id" : "3222101", - "profile" : { - "bust" : "81", - "height" : "150", - "hip" : "80", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "T.B.チアーズ", - "alias_name_display" : "T.B.チアーズ", - "event" : [ { - "event_id" : 1109, - "event_name" : "第9回プロダクション対抗トークバトルショー" - } ], - "hash" : "3c57816bba9f19f1f2071a0676b369ff", - "id" : "3322102", - "profile" : { - "bust" : "81", - "height" : "150", - "hip" : "80", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "クリスマスナイト", - "alias_name_display" : "クリスマスナイト", - "hash" : "2986dbc55d810b89275600447c9369af", - "id" : "3226701", - "profile" : { - "bust" : "81", - "height" : "150", - "hip" : "80", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "クリスマスナイト", - "alias_name_display" : "クリスマスナイト", - "hash" : "36563d1fcd7ab0070dbd2ca0a269e380", - "id" : "3326702", - "profile" : { - "bust" : "81", - "height" : "150", - "hip" : "80", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "オータムタイム", - "alias_name_display" : "オータムタイム", - "event" : [ { - "event_id" : 724, - "event_name" : "第24回ドリームLIVEフェスティバル" - } ], - "hash" : "45be8be35629c6e28aabb419da97dd2f", - "id" : "3230901", - "profile" : { - "bust" : "81", - "height" : "150", - "hip" : "80", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "オータムタイム", - "alias_name_display" : "オータムタイム", - "event" : [ { - "event_id" : 724, - "event_name" : "第24回ドリームLIVEフェスティバル" - } ], - "hash" : "57bb56d1f69582541a8010dd167d8889", - "id" : "3330902", - "profile" : { - "bust" : "81", - "height" : "150", - "hip" : "80", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "ワイルドフレンズ", - "alias_name_display" : "ワイルドフレンズ", - "hash" : "f04dac9c82d71a897241138a4f42caec", - "id" : "3233701", - "profile" : { - "bust" : "81", - "height" : "150", - "hip" : "80", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "ワイルドフレンズ", - "alias_name_display" : "ワイルドフレンズ", - "hash" : "4d8997fc3f94ac70311fa9f92408655a", - "id" : "3333702", - "profile" : { - "bust" : "81", - "height" : "150", - "hip" : "80", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "悩めるお年頃", - "alias_name_display" : "悩めるお年頃", - "event" : [ { - "event_id" : 207, - "event_name" : "アイドルサバイバル ハロウィン編" - } ], - "hash" : "f8c0017a5ca2ef4fc7cd0d07151994ac", - "id" : "3403601", - "profile" : { - "bust" : "81", - "height" : "150", - "hip" : "80", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "悩めるお年頃", - "alias_name_display" : "悩めるお年頃", - "event" : [ { - "event_id" : 207, - "event_name" : "アイドルサバイバル ハロウィン編" - } ], - "hash" : "d24774d9639553e63860f5b854d944a4", - "id" : "3503602", - "profile" : { - "bust" : "81", - "height" : "150", - "hip" : "80", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "楽しい夏休み", - "alias_name_display" : "楽しい夏休み", - "event" : [ { - "event_id" : 413, - "event_name" : "みんなのなつやすみ" - } ], - "hash" : "b72ccff36b410011b79a299f01d25674", - "id" : "3415901", - "profile" : { - "bust" : "81", - "height" : "150", - "hip" : "80", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "楽しい夏休み", - "alias_name_display" : "楽しい夏休み", - "event" : [ { - "event_id" : 413, - "event_name" : "みんなのなつやすみ" - } ], - "hash" : "3e8e8f242d248978458d505a2edad10a", - "id" : "3515902", - "profile" : { - "bust" : "81", - "height" : "150", - "hip" : "80", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "賑やか夏休み", - "alias_name_display" : "賑やか夏休み", - "event" : [ { - "event_id" : 413, - "event_name" : "みんなのなつやすみ" - } ], - "hash" : "4b273e3aaed3bafe748f94c4a850f230", - "id" : "3416001", - "profile" : { - "bust" : "81", - "height" : "150", - "hip" : "80", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "賑やか夏休み", - "alias_name_display" : "賑やか夏休み", - "event" : [ { - "event_id" : 413, - "event_name" : "みんなのなつやすみ" - } ], - "hash" : "5b073af22fb3cd6adcc1e9e319fa67f6", - "id" : "3516002", - "profile" : { - "bust" : "81", - "height" : "150", - "hip" : "80", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "天魔降臨", - "alias_name_display" : "天魔降臨", - "event" : [ { - "event_id" : 515, - "event_name" : "戦国公演 天魔の乱" - } ], - "hash" : "68b35585d39dafaba5d9cf38c0b9f083", - "id" : "3418701", - "profile" : { - "bust" : "81", - "height" : "150", - "hip" : "80", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "天魔降臨", - "alias_name_display" : "天魔降臨", - "event" : [ { - "event_id" : 515, - "event_name" : "戦国公演 天魔の乱" - } ], - "hash" : "d2170d41b184072934a9fff773547cd0", - "id" : "3518702", - "profile" : { - "bust" : "81", - "height" : "150", - "hip" : "80", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "ふわふわファクトリー", - "alias_name_display" : "ふわふわファクトリー", - "hash" : "ea0d9e48afcf9f896c208b1540efd59f", - "id" : "3431401", - "profile" : { - "bust" : "81", - "height" : "150", - "hip" : "80", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "ふわふわファクトリー", - "alias_name_display" : "ふわふわファクトリー", - "hash" : "c0bb1ce2f048f36f6397fc8dd094cc23", - "id" : "3531402", - "profile" : { - "bust" : "81", - "height" : "150", - "hip" : "80", - "waist" : "56", - "weight" : "41" - } - } ], - "idol_id" : 142, - "idol_name" : "矢口美羽", - "idol_name_display" : "矢口美羽", - "units" : [ { - "id" : "26", - "name" : "スクールガールフレンズ" - }, { - "id" : "44", - "name" : "ハワイアンツイン" - }, { - "id" : "146", - "name" : "サンセットノスタルジー" - }, { - "id" : "151", - "name" : "ブエナ・スエルテ" - } ] -}, { - "aliases" : [ { - "hash" : "6ef2cd5ef498c7caaea87f7d89340110", - "id" : "3001001", - "profile" : { - "bust" : "75", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "36" - } - }, { - "hash" : "e0b836342a1aee295a7ccbab0a16fd87", - "id" : "3101002", - "profile" : { - "bust" : "75", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "36" - } - }, { - "alias_name" : "バレンタイン", - "alias_name_display" : "バレンタイン", - "event" : [ { - "event_id" : 103, - "event_name" : "バレンタインパーティー" - } ], - "hash" : "10da168b4b369bc6ffa72e78e93071be", - "id" : "3203201", - "profile" : { - "bust" : "75", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "36" - } - }, { - "alias_name" : "バレンタイン", - "alias_name_display" : "バレンタイン", - "event" : [ { - "event_id" : 103, - "event_name" : "バレンタインパーティー" - } ], - "hash" : "9b08de504854ac1df4fd5dc76a9a5ac1", - "id" : "3303202", - "profile" : { - "bust" : "75", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "36" - } - }, { - "alias_name" : "ポッピンポップ", - "alias_name_display" : "ポッピンポップ", - "hash" : "92a5705c0b6de55d2f168f9bd29a3edb", - "id" : "3220801", - "profile" : { - "bust" : "75", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "36" - } - }, { - "alias_name" : "ポッピンポップ", - "alias_name_display" : "ポッピンポップ", - "hash" : "8a7f7bead0878b56904f736f4421253d", - "id" : "3320802", - "profile" : { - "bust" : "75", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "36" - } - }, { - "alias_name" : "マーチングバンド", - "alias_name_display" : "マーチングバンド", - "hash" : "89e9e5b0a1b6e15b0fff88744901f461", - "id" : "3231101", - "profile" : { - "bust" : "75", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "36" - } - }, { - "alias_name" : "マーチングバンド", - "alias_name_display" : "マーチングバンド", - "hash" : "0f1b57bb36e56e4ecfb13b3e1954b368", - "id" : "3331102", - "profile" : { - "bust" : "75", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "36" - } - }, { - "alias_name" : "サーカスパフォーマー", - "alias_name_display" : "サーカスパフォーマー", - "event" : [ { - "event_id" : 1709, - "event_name" : "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" - } ], - "hash" : "b579c840179644a36de6fa1c133671cf", - "id" : "3333102", - "profile" : { - "bust" : "75", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "36" - } - }, { - "alias_name" : "スマイリーパフォーマー", - "alias_name_display" : "スマイリーパフォーマー", - "event" : [ { - "event_id" : 1709, - "event_name" : "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" - } ], - "hash" : "8109a4ac1c65efa9906f314f523b9916", - "id" : "3333202", - "profile" : { - "bust" : "75", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "36" - } - }, { - "alias_name" : "しっぽもふもふ", - "alias_name_display" : "しっぽもふもふ", - "event" : [ { - "event_id" : 204, - "event_name" : "アイドルサバイバルin動物園" - } ], - "hash" : "c674c58bab136ff597a815671bb1892b", - "id" : "3402001", - "profile" : { - "bust" : "75", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "36" - } - }, { - "alias_name" : "しっぽもふもふ", - "alias_name_display" : "しっぽもふもふ", - "event" : [ { - "event_id" : 204, - "event_name" : "アイドルサバイバルin動物園" - } ], - "hash" : "cfb03542cf02bdeb2401a33d0d86daeb", - "id" : "3502002", - "profile" : { - "bust" : "75", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "36" - } - }, { - "alias_name" : "ニュースマイル", - "alias_name_display" : "ニュースマイル", - "event" : [ { - "event_id" : 404, - "event_name" : "新春アイドルプロデュース" - } ], - "hash" : "b6c652c77203c6836a0489af5a37662c", - "id" : "3404301", - "profile" : { - "bust" : "75", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "36" - } - }, { - "alias_name" : "ニュースマイル", - "alias_name_display" : "ニュースマイル", - "event" : [ { - "event_id" : 404, - "event_name" : "新春アイドルプロデュース" - } ], - "hash" : "d44aa4f47e363eea2e35a73f54fc6379", - "id" : "3504302", - "profile" : { - "bust" : "75", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "36" - } - }, { - "alias_name" : "ちびっこアクマ", - "alias_name_display" : "ちびっこアクマ", - "hash" : "0793eaf891f21d96424137f2fb375650", - "id" : "3406501", - "profile" : { - "bust" : "75", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "36" - } - }, { - "alias_name" : "ちびっこアクマ", - "alias_name_display" : "ちびっこアクマ", - "hash" : "ef781662f1714c3f272954635d794a5f", - "id" : "3506502", - "profile" : { - "bust" : "75", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "36" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "b1189784b88e5fd4438eebc83b08daad", - "id" : "3406801", - "profile" : { - "bust" : "75", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "36" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "b408f15906c6b54d17985d285f98dee7", - "id" : "3506802", - "profile" : { - "bust" : "75", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "36" - } - }, { - "alias_name" : "シンデレラドリーム", - "alias_name_display" : "シンデレラドリーム", - "hash" : "52ac8b4cab7ec3e61bd7468381f76495", - "id" : "3408701", - "profile" : { - "bust" : "75", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "36" - } - }, { - "alias_name" : "シンデレラドリーム", - "alias_name_display" : "シンデレラドリーム", - "hash" : "ec0b6fa7958a83eb2e758c36dd8fc26b", - "id" : "3508702", - "profile" : { - "bust" : "75", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "36" - } - }, { - "alias_name" : "ニュースマイル・S", - "alias_name_display" : "ニュースマイル・S", - "hash" : "4292b737c6a1afdcb237a28c36cc2e9c", - "id" : "3410301", - "profile" : { - "bust" : "75", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "36" - } - }, { - "alias_name" : "ニュースマイル・S", - "alias_name_display" : "ニュースマイル・S", - "hash" : "6ac6ac48ba9f668c30c8e267633b4860", - "id" : "3510302", - "profile" : { - "bust" : "75", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "36" - } - }, { - "alias_name" : "キラキラ☆ジャンプ", - "alias_name_display" : "キラキラ☆ジャンプ", - "hash" : "f9823071fb73c76c8e0ad947e4374c76", - "id" : "3414201", - "profile" : { - "bust" : "75", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "36" - } - }, { - "alias_name" : "キラキラ☆ジャンプ", - "alias_name_display" : "キラキラ☆ジャンプ", - "hash" : "35951a39f9d4e99402bbb2d9c5f5335d", - "id" : "3514202", - "profile" : { - "bust" : "75", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "36" - } - }, { - "alias_name" : "ないしょのステップ", - "alias_name_display" : "ないしょのステップ", - "hash" : "4868d8e9411de3f444c270c04bcaec1a", - "id" : "3423801", - "profile" : { - "bust" : "75", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "36" - } - }, { - "alias_name" : "ないしょのステップ", - "alias_name_display" : "ないしょのステップ", - "hash" : "2186837114eebf98ae667f26f0e5a79c", - "id" : "3523802", - "profile" : { - "bust" : "75", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "36" - } - }, { - "alias_name" : "凸レーション", - "alias_name_display" : "凸レーション", - "hash" : "03160f702f45fbdd3c17d910d80306d6", - "id" : "3525002", - "profile" : { - "bust" : "75", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "36" - } - }, { - "alias_name" : "ちびっこナース", - "alias_name_display" : "ちびっこナース", - "hash" : "98c52238c3f897072403599574115094", - "id" : "3427901", - "profile" : { - "bust" : "75", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "36" - } - }, { - "alias_name" : "ちびっこナース", - "alias_name_display" : "ちびっこナース", - "hash" : "68acef995b160d04df9bb1173d1e25e7", - "id" : "3527902", - "profile" : { - "bust" : "75", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "36" - } - }, { - "alias_name" : "お花のプリンセス", - "alias_name_display" : "お花のプリンセス", - "event" : [ { - "event_id" : "027", - "event_name" : "第27回プロダクションマッチフェスティバル" - } ], - "hash" : "3e573ed0cc4873adfe4b882e4330bd7f", - "id" : "3432101", - "profile" : { - "bust" : "75", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "36" - } - }, { - "alias_name" : "お花のプリンセス", - "alias_name_display" : "お花のプリンセス", - "event" : [ { - "event_id" : "027", - "event_name" : "第27回プロダクションマッチフェスティバル" - } ], - "hash" : "daeb66a45687cdd22c51c70df1daa6c3", - "id" : "3532102", - "profile" : { - "bust" : "75", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "36" - } - }, { - "alias_name" : "おてんばピエレッタ", - "alias_name_display" : "おてんばピエレッタ", - "event" : [ { - "event_id" : 1709, - "event_name" : "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" - } ], - "hash" : "98925b626042078c4a1ecc8aad8cc7c0", - "id" : "3438401", - "profile" : { - "bust" : "75", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "36" - } - }, { - "alias_name" : "おてんばピエレッタ", - "alias_name_display" : "おてんばピエレッタ", - "event" : [ { - "event_id" : 1709, - "event_name" : "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" - } ], - "hash" : "f2713603ccfb1afc09437a853b864ccd", - "id" : "3538402", - "profile" : { - "bust" : "75", - "height" : "140", - "hip" : "78", - "waist" : "55", - "weight" : "36" - } - } ], - "idol_id" : 143, - "idol_name" : "赤城みりあ", - "idol_name_display" : "赤城みりあ", - "units" : [ { - "id" : "77", - "name" : "Jumpin'Joker" - }, { - "id" : "149", - "name" : "凸レーション" - }, { - "id" : "204", - "name" : "トロピカル☆スターズ" - }, { - "id" : "213", - "name" : "CINDERELLA PROJECT" - }, { - "id" : "214", - "name" : "L.M.B.G" - } ] -}, { - "aliases" : [ { - "hash" : "63fd3fcbc361ec10820d32bf513be16e", - "id" : "3001101", - "profile" : { - "bust" : "84", - "height" : "163", - "hip" : "85", - "waist" : "58", - "weight" : "47" - } - }, { - "hash" : "3353660bfbeee7d2f221c98611512242", - "id" : "3101102", - "profile" : { - "bust" : "84", - "height" : "163", - "hip" : "85", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "明朗☆快活", - "alias_name_display" : "明朗☆快活", - "event" : [ { - "event_id" : "008", - "event_name" : "第8回プロダクションマッチフェスティバル" - } ], - "hash" : "8f2beaf70b437880a985f8b8f79114a0", - "id" : "3208901", - "profile" : { - "bust" : "84", - "height" : "163", - "hip" : "85", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "明朗☆快活", - "alias_name_display" : "明朗☆快活", - "event" : [ { - "event_id" : "008", - "event_name" : "第8回プロダクションマッチフェスティバル" - } ], - "hash" : "d3d9f4a27caef8301249c341b4e19998", - "id" : "3308902", - "profile" : { - "bust" : "84", - "height" : "163", - "hip" : "85", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "スポーティスタイル", - "alias_name_display" : "スポーティスタイル", - "event" : [ { - "event_id" : 212, - "event_name" : "アイドルサバイバル 秋の大運動会" - } ], - "hash" : "dfbdd61be4ccdc68e525717d0bac2587", - "id" : "3213401", - "profile" : { - "bust" : "84", - "height" : "163", - "hip" : "85", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "スポーティスタイル", - "alias_name_display" : "スポーティスタイル", - "event" : [ { - "event_id" : 212, - "event_name" : "アイドルサバイバル 秋の大運動会" - } ], - "hash" : "ceef2d2586809b80112bc40b23069aca", - "id" : "3313402", - "profile" : { - "bust" : "84", - "height" : "163", - "hip" : "85", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "豪放の鬼人", - "alias_name_display" : "豪放の鬼人", - "event" : [ { - "event_id" : 515, - "event_name" : "戦国公演 天魔の乱" - } ], - "hash" : "a598244c502625e88e206b64f2a6f248", - "id" : "3220201", - "profile" : { - "bust" : "84", - "height" : "163", - "hip" : "85", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "豪放の鬼人", - "alias_name_display" : "豪放の鬼人", - "event" : [ { - "event_id" : 515, - "event_name" : "戦国公演 天魔の乱" - } ], - "hash" : "8bbfb3b8fbec2518b6fb12050c9933f9", - "id" : "3320202", - "profile" : { - "bust" : "84", - "height" : "163", - "hip" : "85", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "エナジーフィール", - "alias_name_display" : "エナジーフィール", - "hash" : "46dfaa3309c9fc33443b0cc627912f13", - "id" : "3222401", - "profile" : { - "bust" : "84", - "height" : "163", - "hip" : "85", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "エナジーフィール", - "alias_name_display" : "エナジーフィール", - "hash" : "2b0e2716c03031eaaeb29a09d61e75aa", - "id" : "3322402", - "profile" : { - "bust" : "84", - "height" : "163", - "hip" : "85", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "迎春神楽", - "alias_name_display" : "迎春神楽", - "hash" : "4e760adc4e6919f6f358270b34455820", - "id" : "3232201", - "profile" : { - "bust" : "84", - "height" : "163", - "hip" : "85", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "迎春神楽", - "alias_name_display" : "迎春神楽", - "hash" : "001d10686845cdce26772524579a982d", - "id" : "3332202", - "profile" : { - "bust" : "84", - "height" : "163", - "hip" : "85", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "センター・キャプテン", - "alias_name_display" : "センター・キャプテン", - "hash" : "868c92e18aa41e24a61546b2100548b5", - "id" : "3413401", - "profile" : { - "bust" : "84", - "height" : "163", - "hip" : "85", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "センター・キャプテン", - "alias_name_display" : "センター・キャプテン", - "hash" : "701f66d34f5d7d58aa7d977ca3450565", - "id" : "3513402", - "profile" : { - "bust" : "84", - "height" : "163", - "hip" : "85", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "シューティングチアー", - "alias_name_display" : "シューティングチアー", - "event" : [ { - "event_id" : 1503, - "event_name" : "チーム対抗 夏だ!プールだ!トークバトルショー" - } ], - "hash" : "13c7561bc0a40734ac98f74b94414a5c", - "id" : "3425601", - "profile" : { - "bust" : "84", - "height" : "163", - "hip" : "85", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "シューティングチアー", - "alias_name_display" : "シューティングチアー", - "event" : [ { - "event_id" : 1503, - "event_name" : "チーム対抗 夏だ!プールだ!トークバトルショー" - } ], - "hash" : "82117663678e1ecd83cac4b74970f7e3", - "id" : "3525602", - "profile" : { - "bust" : "84", - "height" : "163", - "hip" : "85", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ドリームアドベント", - "alias_name_display" : "ドリームアドベント", - "event" : [ { - "event_id" : 721, - "event_name" : "第21回ドリームLIVEフェスティバル" - } ], - "hash" : "0b015e960d21bb82468304a236db2719", - "id" : "3432301", - "profile" : { - "bust" : "84", - "height" : "163", - "hip" : "85", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ドリームアドベント", - "alias_name_display" : "ドリームアドベント", - "event" : [ { - "event_id" : 721, - "event_name" : "第21回ドリームLIVEフェスティバル" - } ], - "hash" : "b3c0ab815b7dae87ea9a636433655d89", - "id" : "3532302", - "profile" : { - "bust" : "84", - "height" : "163", - "hip" : "85", - "waist" : "56", - "weight" : "45" - } - } ], - "idol_id" : 144, - "idol_name" : "愛野渚", - "idol_name_display" : "愛野渚", - "units" : [ { - "id" : "122", - "name" : "ホットアートジャンピン" - }, { - "id" : "174", - "name" : "カナリアサマー" - } ] -}, { - "aliases" : [ { - "hash" : "b209c422b7346f1d4d69feda95318a5f", - "id" : "3001201", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "83", - "waist" : "57", - "weight" : "46" - } - }, { - "hash" : "9e3bbf542345ebed15fb2032e1c837d7", - "id" : "3101202", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "83", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "レッスン&チャレンジ", - "alias_name_display" : "レッスン&チャレンジ", - "hash" : "66a6a21d46da643503586a7a22df87dd", - "id" : "3207501", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "83", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "レッスン&チャレンジ", - "alias_name_display" : "レッスン&チャレンジ", - "hash" : "de348637cc18a3f5e4c81fa791580495", - "id" : "3307502", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "83", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "カジュアルスタイル", - "alias_name_display" : "カジュアルスタイル", - "hash" : "2432eb32593381cfec0f4f599fec4f36", - "id" : "3213801", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "83", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "カジュアルスタイル", - "alias_name_display" : "カジュアルスタイル", - "hash" : "c002a51fc066d05b168e709c067abd3b", - "id" : "3313802", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "83", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "カジュアルチアー", - "alias_name_display" : "カジュアルチアー", - "event" : [ { - "event_id" : "016", - "event_name" : "第16回プロダクションマッチフェスティバル" - } ], - "hash" : "2b41c4a4cb28d37563feb07668337853", - "id" : "3216701", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "83", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "カジュアルチアー", - "alias_name_display" : "カジュアルチアー", - "event" : [ { - "event_id" : "016", - "event_name" : "第16回プロダクションマッチフェスティバル" - } ], - "hash" : "ce408b02973567997eb52f3e61c8bfec", - "id" : "3316702", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "83", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ガーリースタイル", - "alias_name_display" : "ガーリースタイル", - "hash" : "0b1e16ffc8a773f87a5ad8cc7f8bf0f8", - "id" : "3222001", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "83", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ガーリースタイル", - "alias_name_display" : "ガーリースタイル", - "hash" : "a5f4297b7066dfc5f18b8542bc15c08a", - "id" : "3322002", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "83", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "シェイプアップ", - "alias_name_display" : "シェイプアップ", - "hash" : "6b37e98cb7731439ed6f3cae9fee2306", - "id" : "3224801", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "83", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "シェイプアップ", - "alias_name_display" : "シェイプアップ", - "hash" : "b3d0922a9fd538b1d6503904d0defc49", - "id" : "3324802", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "83", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "節分豆撒", - "alias_name_display" : "節分豆撒", - "event" : [ { - "event_id" : 719, - "event_name" : "ドリームLIVEフェスティバル 節分SP" - } ], - "hash" : "ff9f17efbe7d2c3470f6a0c7c8e7f54b", - "id" : "3227401", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "83", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "節分豆撒", - "alias_name_display" : "節分豆撒", - "event" : [ { - "event_id" : 719, - "event_name" : "ドリームLIVEフェスティバル 節分SP" - } ], - "hash" : "3ccaaf0d3541e34f974b94e453c6a19f", - "id" : "3327402", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "83", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "サーカスパフォーマー", - "alias_name_display" : "サーカスパフォーマー", - "event" : [ { - "event_id" : 1709, - "event_name" : "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" - } ], - "hash" : "77dbd0fac660c71139ab3a8a1e93cfae", - "id" : "3232801", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "83", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "サーカスパフォーマー", - "alias_name_display" : "サーカスパフォーマー", - "event" : [ { - "event_id" : 1709, - "event_name" : "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" - } ], - "hash" : "6327296e1442dcf684f2454f116b4d0f", - "id" : "3332802", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "83", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "スマイリーパフォーマー", - "alias_name_display" : "スマイリーパフォーマー", - "event" : [ { - "event_id" : 1709, - "event_name" : "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" - } ], - "hash" : "47e364881876ef5d26ff179d2e0a1ae2", - "id" : "3232901", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "83", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "スマイリーパフォーマー", - "alias_name_display" : "スマイリーパフォーマー", - "event" : [ { - "event_id" : 1709, - "event_name" : "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" - } ], - "hash" : "ff4d10646fd683720b03ba75ee2ac087", - "id" : "3332902", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "83", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ハッピープレジャー", - "alias_name_display" : "ハッピープレジャー", - "event" : [ { - "event_id" : 210, - "event_name" : "アイドルサバイバルinテーマパーク2013" - } ], - "hash" : "7f9a18fa7616eb1439f038c58b02f983", - "id" : "3406601", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "83", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ハッピープレジャー", - "alias_name_display" : "ハッピープレジャー", - "event" : [ { - "event_id" : 210, - "event_name" : "アイドルサバイバルinテーマパーク2013" - } ], - "hash" : "a4f446a8b78c3ea7fdbafe5866892169", - "id" : "3506602", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "83", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "拳舞酔客", - "alias_name_display" : "拳舞酔客", - "event" : [ { - "event_id" : 514, - "event_name" : "功夫公演 香港大決戦" - } ], - "hash" : "6af497e47078dc8ea2c6691297cc7300", - "id" : "3417401", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "83", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "拳舞酔客", - "alias_name_display" : "拳舞酔客", - "event" : [ { - "event_id" : 514, - "event_name" : "功夫公演 香港大決戦" - } ], - "hash" : "5ed37ce77056ed6867c6d70631496a34", - "id" : "3517402", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "83", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ふるき待ち人", - "alias_name_display" : "ふるき待ち人", - "event" : [ { - "event_id" : 1903, - "event_name" : "怪奇公演 心霊探偵の事件簿" - } ], - "hash" : "ce4ea40b0df3c2d7af34153ff9d00a69", - "id" : "3434401", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "83", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ふるき待ち人", - "alias_name_display" : "ふるき待ち人", - "event" : [ { - "event_id" : 1903, - "event_name" : "怪奇公演 心霊探偵の事件簿" - } ], - "hash" : "83aa3c1928c1a0b2055c71ccd32ef090", - "id" : "3534402", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "83", - "waist" : "57", - "weight" : "46" - } - } ], - "idol_id" : 145, - "idol_name" : "真鍋いつき", - "idol_name_display" : "真鍋いつき", - "units" : [ { - "id" : "150", - "name" : "ヒートアップ☆チアーズ" - }, { - "id" : "175", - "name" : "ライトグリーンセーフ" - } ] -}, { - "aliases" : [ { - "hash" : "1515860fd22175a20c99d8007cf8faae", - "id" : "3001301", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "83", - "waist" : "56", - "weight" : "42" - } - }, { - "hash" : "120b0acaa2c1419c3de79c1e6ef6890a", - "id" : "3101302", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "83", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "お花見", - "alias_name_display" : "お花見", - "event" : [ { - "event_id" : 104, - "event_name" : "桜舞う花見祭り" - } ], - "hash" : "212bb3e0d7f2ba5bcdeced90bf48561b", - "id" : "3002301", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "83", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "お花見", - "alias_name_display" : "お花見", - "event" : [ { - "event_id" : 104, - "event_name" : "桜舞う花見祭り" - } ], - "hash" : "c8e7deaf2263a700b6f7d41902770f41", - "id" : "3102302", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "83", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "サマーガールオレンジ", - "alias_name_display" : "サマーガールオレンジ", - "event" : [ { - "event_id" : 106, - "event_name" : "アイドル水泳大会 水着のシンデレラ" - } ], - "hash" : "9a21c3eaede2b44ea3fbeb6c46f631f5", - "id" : "3205401", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "83", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "サマーガールグリーン", - "alias_name_display" : "サマーガールグリーン", - "event" : [ { - "event_id" : 106, - "event_name" : "アイドル水泳大会 水着のシンデレラ" - } ], - "hash" : "01501d1215a4b5d6a9260a2a13acd4cf", - "id" : "3205402", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "83", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "サマーガールブルー", - "alias_name_display" : "サマーガールブルー", - "event" : [ { - "event_id" : 106, - "event_name" : "アイドル水泳大会 水着のシンデレラ" - } ], - "hash" : "bdfb3cab23611b7efcf2a0d26d6241c0", - "id" : "3205403", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "83", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "サマーガールイエロー", - "alias_name_display" : "サマーガールイエロー", - "event" : [ { - "event_id" : 106, - "event_name" : "アイドル水泳大会 水着のシンデレラ" - } ], - "hash" : "f4f935084bfe52e387f6bd30ce760ad0", - "id" : "3205404", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "83", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "サマーショッピングイエロー", - "alias_name_display" : "サマーショッピングイエロー", - "event" : [ { - "event_id" : 106, - "event_name" : "アイドル水泳大会 水着のシンデレラ" - } ], - "hash" : "653b7a8fbbfbad90d029a8ab600f056b", - "id" : "3305405", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "83", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "サマーショッピンググリーン", - "alias_name_display" : "サマーショッピンググリーン", - "event" : [ { - "event_id" : 106, - "event_name" : "アイドル水泳大会 水着のシンデレラ" - } ], - "hash" : "69c82c51bd137b4225908435cb8455e4", - "id" : "3305406", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "83", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "サマーショッピングピンク", - "alias_name_display" : "サマーショッピングピンク", - "event" : [ { - "event_id" : 106, - "event_name" : "アイドル水泳大会 水着のシンデレラ" - } ], - "hash" : "9929a169843d9f7e7312eca020caf3cc", - "id" : "3305407", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "83", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "サマーショッピングブラウン", - "alias_name_display" : "サマーショッピングブラウン", - "event" : [ { - "event_id" : 106, - "event_name" : "アイドル水泳大会 水着のシンデレラ" - } ], - "hash" : "df467ee38a2c1a4b771029f24a419529", - "id" : "3305408", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "83", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "サマーショッピングアメリカン", - "alias_name_display" : "サマーショッピングアメリカン", - "event" : [ { - "event_id" : 106, - "event_name" : "アイドル水泳大会 水着のシンデレラ" - } ], - "hash" : "5cc4622076643ca2818b7793393fc531", - "id" : "3305409", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "83", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "レインドロップ", - "alias_name_display" : "レインドロップ", - "event" : [ { - "event_id" : 407, - "event_name" : "アイドルプロデュース 鎌倉あじさい巡り" - } ], - "hash" : "0dcfcc73c8e1fe5f8c2afded0838cff5", - "id" : "3210601", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "83", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "レインドロップ", - "alias_name_display" : "レインドロップ", - "event" : [ { - "event_id" : 407, - "event_name" : "アイドルプロデュース 鎌倉あじさい巡り" - } ], - "hash" : "aa671e6aed1e53e554f9b9589de70d48", - "id" : "3310602", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "83", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "レインドロップスマイル", - "alias_name_display" : "レインドロップスマイル", - "event" : [ { - "event_id" : 407, - "event_name" : "アイドルプロデュース 鎌倉あじさい巡り" - } ], - "hash" : "91f1b140eec2747dd2a2cb31c005d37f", - "id" : "3210701", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "83", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "レインドロップスマイル", - "alias_name_display" : "レインドロップスマイル", - "event" : [ { - "event_id" : 407, - "event_name" : "アイドルプロデュース 鎌倉あじさい巡り" - } ], - "hash" : "915507cb01b608f92add67390ad849c3", - "id" : "3310702", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "83", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "バレンタインデビル", - "alias_name_display" : "バレンタインデビル", - "hash" : "79b5a5fe045e3d04bd7fe1045a280011", - "id" : "3221401", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "83", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "バレンタインデビル", - "alias_name_display" : "バレンタインデビル", - "hash" : "bda80f1fe71cef7ba31a51521b1ec5dc", - "id" : "3321402", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "83", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "セレクテッド", - "alias_name_display" : "セレクテッド", - "hash" : "589a124c4fa6098a722264d6e676341a", - "id" : "3228901", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "83", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "セレクテッド", - "alias_name_display" : "セレクテッド", - "hash" : "b6d13d92ef2602a297f285d0b08fdead", - "id" : "3328902", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "83", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "サマースプラッシュ", - "alias_name_display" : "サマースプラッシュ", - "event" : [ { - "event_id" : 106, - "event_name" : "アイドル水泳大会 水着のシンデレラ" - } ], - "hash" : "252492330a944c5dcb457bb2683c07dc", - "id" : "3402101", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "83", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "サマースプラッシュ", - "alias_name_display" : "サマースプラッシュ", - "event" : [ { - "event_id" : 106, - "event_name" : "アイドル水泳大会 水着のシンデレラ" - } ], - "hash" : "161aba59d0e7079677a6344345b890a1", - "id" : "3502102", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "83", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "湯けむりギャル", - "alias_name_display" : "湯けむりギャル", - "hash" : "b1d4347b0562c9b9257a1bbfe8007256", - "id" : "3403801", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "83", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "湯けむりギャル", - "alias_name_display" : "湯けむりギャル", - "hash" : "e2e85e351b7f8739d4c1f2f132ef2ef3", - "id" : "3503802", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "83", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "クリスマス☆ギャル", - "alias_name_display" : "クリスマス☆ギャル", - "hash" : "9894ac29d3d2f85e6a8e9a2975710ede", - "id" : "3410601", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "83", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "クリスマス☆ギャル", - "alias_name_display" : "クリスマス☆ギャル", - "hash" : "cc195ea8b89a4c42db5db2054f3e512f", - "id" : "3510602", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "83", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "自由の海姫", - "alias_name_display" : "自由の海姫", - "event" : [ { - "event_id" : 513, - "event_name" : "海賊公演 オーシャンクルーズ" - } ], - "hash" : "0cb4c2a94c73c4dee9e2911ae33b9349", - "id" : "3415701", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "83", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "自由の海姫", - "alias_name_display" : "自由の海姫", - "event" : [ { - "event_id" : 513, - "event_name" : "海賊公演 オーシャンクルーズ" - } ], - "hash" : "50e4cbc50998270b16051eb4c3eb98aa", - "id" : "3515702", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "83", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "きまぐれアラカルト", - "alias_name_display" : "きまぐれアラカルト", - "hash" : "c77f15a9ae5b41cab5c25dd81fc8b439", - "id" : "3422901", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "83", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "きまぐれアラカルト", - "alias_name_display" : "きまぐれアラカルト", - "hash" : "5be7e798333d3df7bae2151d64547659", - "id" : "3522902", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "83", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "フリーダムノーツ", - "alias_name_display" : "フリーダムノーツ", - "event" : [ { - "event_id" : 1504, - "event_name" : "第4回チーム対抗トークバトルショー" - } ], - "hash" : "d98730214d1599bdf4c6da1e9baeb783", - "id" : "3427101", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "83", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "フリーダムノーツ", - "alias_name_display" : "フリーダムノーツ", - "event" : [ { - "event_id" : 1504, - "event_name" : "第4回チーム対抗トークバトルショー" - } ], - "hash" : "7b4aaee0f26206451ecfa1d472badb1a", - "id" : "3527102", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "83", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "958ee39a6a98210ef9e12bb51af82a99", - "id" : "3430701", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "83", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "6e869ad95d0b0c12b200342730b0c8d2", - "id" : "3530702", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "83", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "5thアニバーサリー", - "alias_name_display" : "5thアニバーサリー", - "event" : [ { - "event_id" : 1708, - "event_name" : "アイドルプロデュース the 5th Anniversary" - } ], - "hash" : "16bc1b80f078bbbcee22f54b02ffde34", - "id" : "3436701", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "83", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "5thアニバーサリー", - "alias_name_display" : "5thアニバーサリー", - "event" : [ { - "event_id" : 1708, - "event_name" : "アイドルプロデュース the 5th Anniversary" - } ], - "hash" : "d8d934b5f927a10360e68a68f0ebe00b", - "id" : "3536702", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "83", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "5thアニバーサリー・S", - "alias_name_display" : "5thアニバーサリー・S", - "event" : [ { - "event_id" : 1708, - "event_name" : "アイドルプロデュース the 5th Anniversary" - } ], - "hash" : "a8285d3a36a915d9d87530d72a4d7f03", - "id" : "3436801", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "83", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "5thアニバーサリー・S", - "alias_name_display" : "5thアニバーサリー・S", - "event" : [ { - "event_id" : 1708, - "event_name" : "アイドルプロデュース the 5th Anniversary" - } ], - "hash" : "ebd89ca488c46fd5f7ffcae59c61f2e0", - "id" : "3536802", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "83", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "おねだりサボタージュ", - "alias_name_display" : "おねだりサボタージュ", - "hash" : "7d61e916c1009fe5c94281bb2804ca3b", - "id" : "3439901", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "83", - "waist" : "56", - "weight" : "41" - } - }, { - "alias_name" : "おねだりサボタージュ", - "alias_name_display" : "おねだりサボタージュ", - "hash" : "3989619894f357d64debb55929ca0edc", - "id" : "3539902", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "83", - "waist" : "56", - "weight" : "41" - } - } ], - "idol_id" : 146, - "idol_name" : "大槻唯", - "idol_name_display" : "大槻唯", - "units" : [ { - "id" : "18", - "name" : "サクラブロッサム" - }, { - "id" : "106", - "name" : "レインドロップ" - }, { - "id" : "112", - "name" : "ギャルズパーティー" - }, { - "id" : "113", - "name" : "セクシーギャルズ" - }, { - "id" : "155", - "name" : "セレクテッド" - }, { - "id" : "174", - "name" : "カナリアサマー" - }, { - "id" : "202", - "name" : "サンフラワー" - }, { - "id" : "215", - "name" : "Project:Krone" - } ] -}, { - "aliases" : [ { - "hash" : "70e2c81b06c8865ca2b615df8ee4ff93", - "id" : "3001401", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "hash" : "d3b1f19515db0f6b68de3891bca053aa", - "id" : "3101402", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "お花見", - "alias_name_display" : "お花見", - "event" : [ { - "event_id" : 104, - "event_name" : "桜舞う花見祭り" - } ], - "hash" : "e1d1e2125f47a113e3f713279449b89f", - "id" : "3203801", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "お花見", - "alias_name_display" : "お花見", - "event" : [ { - "event_id" : 104, - "event_name" : "桜舞う花見祭り" - } ], - "hash" : "49596a983a3633415ef8bc526bc3bf87", - "id" : "3303802", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "クッキングチャレンジ", - "alias_name_display" : "クッキングチャレンジ", - "event" : [ { - "event_id" : 409, - "event_name" : "アイドルプロデュース チャレンジクッキング イタリアン編" - } ], - "hash" : "0a909c1a66f53d5148005a8a8d9f8ac2", - "id" : "3212701", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "クッキングチャレンジ", - "alias_name_display" : "クッキングチャレンジ", - "event" : [ { - "event_id" : 409, - "event_name" : "アイドルプロデュース チャレンジクッキング イタリアン編" - } ], - "hash" : "1e7a035696e095ced606582c232843aa", - "id" : "3312702", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "クッキング・スマイル", - "alias_name_display" : "クッキング・スマイル", - "event" : [ { - "event_id" : 409, - "event_name" : "アイドルプロデュース チャレンジクッキング イタリアン編" - } ], - "hash" : "3ff62a9466016547f90ed44c7840c560", - "id" : "3212801", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "クッキング・スマイル", - "alias_name_display" : "クッキング・スマイル", - "event" : [ { - "event_id" : 409, - "event_name" : "アイドルプロデュース チャレンジクッキング イタリアン編" - } ], - "hash" : "2fad2373d17b2e6470454b2469c9161a", - "id" : "3312802", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "サマーシーズン", - "alias_name_display" : "サマーシーズン", - "hash" : "c629d8330bbadfcaab5de5b4b1613e6b", - "id" : "3223701", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "サマーシーズン", - "alias_name_display" : "サマーシーズン", - "hash" : "9cc97855d3b407da47211b55983dfed2", - "id" : "3323702", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "全力インタビュー", - "alias_name_display" : "全力インタビュー", - "hash" : "ee335947e8e5c66353550496c1ef76a9", - "id" : "3230801", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "全力インタビュー", - "alias_name_display" : "全力インタビュー", - "hash" : "6f1244bd2e41ac322ca9b745556c1dea", - "id" : "3330802", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "全力チアガール", - "alias_name_display" : "全力チアガール", - "event" : [ { - "event_id" : 206, - "event_name" : "アイドルサバイバルin学園祭" - } ], - "hash" : "346a8fe47bf44812289254630a3246d7", - "id" : "3403301", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "全力チアガール", - "alias_name_display" : "全力チアガール", - "event" : [ { - "event_id" : 206, - "event_name" : "アイドルサバイバルin学園祭" - } ], - "hash" : "74de50d140d29d3775b7b4d9b7dab726", - "id" : "3503302", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "チアフルエース", - "alias_name_display" : "チアフルエース", - "hash" : "244571d79f62f7e92f4864005d0c5b7f", - "id" : "3406901", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "チアフルエース", - "alias_name_display" : "チアフルエース", - "hash" : "bec7aaa5a179f7543cd32b81ee1791b1", - "id" : "3506902", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "ユッキ☆レボリューション", - "alias_name_display" : "ユッキ☆レボリューション", - "event" : [ { - "event_id" : 804, - "event_name" : "第4回アイドルLIVEロワイヤル" - } ], - "hash" : "b54d7f133cee9d01ae67eff3ba70d9ad", - "id" : "3412501", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "ユッキ☆レボリューション", - "alias_name_display" : "ユッキ☆レボリューション", - "event" : [ { - "event_id" : 804, - "event_name" : "第4回アイドルLIVEロワイヤル" - } ], - "hash" : "be2d31e96f2501ddf6cca066da9a35f3", - "id" : "3512502", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "ハッピーホームラン", - "alias_name_display" : "ハッピーホームラン", - "hash" : "36e3f8bdb6303b5bba63e1d38d487c44", - "id" : "3414801", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "ハッピーホームラン", - "alias_name_display" : "ハッピーホームラン", - "hash" : "f7f85a3949cd94e6fe04a9b30189eb57", - "id" : "3514802", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "12954acb6219dd4841a6d1f7f57d3f0a", - "id" : "3421301", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "5b885f6976141113bc26b21c5a61ef35", - "id" : "3521302", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "1番センター", - "alias_name_display" : "1番センター", - "hash" : "6f6a927a66ac554f5e790bcfe480f5ca", - "id" : "3421701", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "1番センター", - "alias_name_display" : "1番センター", - "hash" : "9cf7b202de8b66500945e79e2860f412", - "id" : "3521702", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "秋色センター", - "alias_name_display" : "秋色センター", - "hash" : "9ff71f444262cc7258e36d981c1ac617", - "id" : "3427001", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "秋色センター", - "alias_name_display" : "秋色センター", - "hash" : "732db8a3c5364c55fba41ccba39ae41e", - "id" : "3527002", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "GO!GO!レッツゴー", - "alias_name_display" : "GO!GO!レッツゴー", - "hash" : "e4ca80856602723aa2498d0322c09d4a", - "id" : "3431601", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "GO!GO!レッツゴー", - "alias_name_display" : "GO!GO!レッツゴー", - "hash" : "634e9b498ffbbf3083d18df6f99e012f", - "id" : "3531602", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "満塁バレンタイン", - "alias_name_display" : "満塁バレンタイン", - "event" : [ { - "event_id" : 1906, - "event_name" : "ディアリースターハート ~ラブキュンバレンタイン~" - } ], - "hash" : "93e98bdad1fea731728b2c13f79782be", - "id" : "3438001", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - }, { - "alias_name" : "満塁バレンタイン", - "alias_name_display" : "満塁バレンタイン", - "event" : [ { - "event_id" : 1906, - "event_name" : "ディアリースターハート ~ラブキュンバレンタイン~" - } ], - "hash" : "85688ae1cb65177f8acc8c407901267b", - "id" : "3538002", - "profile" : { - "bust" : "80", - "height" : "161", - "hip" : "80", - "waist" : "57", - "weight" : "44" - } - } ], - "idol_id" : 147, - "idol_name" : "姫川友紀", - "idol_name_display" : "姫川友紀", - "units" : [ { - "id" : "54", - "name" : "ボール・フレンズ" - }, { - "id" : "87", - "name" : "ウィンター・F・ドライバーズ" - }, { - "id" : "96", - "name" : "チャレンジクッキング" - }, { - "id" : "131", - "name" : "KBYD" - }, { - "id" : "148", - "name" : "チアフルボンバーズ" - }, { - "id" : "152", - "name" : "B.B.ロワイヤル" - }, { - "id" : "174", - "name" : "カナリアサマー" - }, { - "id" : "191", - "name" : "Love Yell" - }, { - "id" : "202", - "name" : "サンフラワー" - } ] -}, { - "aliases" : [ { - "event" : [ { - "event_id" : 303, - "event_name" : "アイドル強化合宿" - } ], - "hash" : "a398078875ab4c504e9a1bf8881f1611", - "id" : "3001501", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "85", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "聖夜", - "alias_name_display" : "聖夜", - "hash" : "a7673fe01d9509ff3e9aba10cb5b2cb2", - "id" : "3001701", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "85", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "新春", - "alias_name_display" : "新春", - "hash" : "e1bcd7081670a0d4d323c29a7027f790", - "id" : "3001901", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "85", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "バレンタイン", - "alias_name_display" : "バレンタイン", - "hash" : "d33a56bef548f47c75d4b9a857031ceb", - "id" : "3002201", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "85", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "サマースタイル", - "alias_name_display" : "サマースタイル", - "hash" : "b20beba7135aeafec64debff48a007d6", - "id" : "3002801", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "85", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "スイミングレッスン", - "alias_name_display" : "スイミングレッスン", - "hash" : "35298581105317744d50303a73e59816", - "id" : "3212201", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "85", - "waist" : "56", - "weight" : "45" - } - } ], - "idol_id" : 148, - "idol_name" : "トレーナー", - "idol_name_display" : "トレーナー" -}, { - "aliases" : [ { - "event" : [ { - "event_id" : 101, - "event_name" : "星降るクリスマス" - } ], - "hash" : "76e94c283b186a3461922f4ec21881ea", - "id" : "3001601", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "event" : [ { - "event_id" : 101, - "event_name" : "星降るクリスマス" - } ], - "hash" : "9ddb7f0e4c699e93d3735c56d163bc1b", - "id" : "3101602", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "ハロウィンヴァンパイア", - "alias_name_display" : "ハロウィンヴァンパイア", - "event" : [ { - "event_id" : 207, - "event_name" : "アイドルサバイバル ハロウィン編" - } ], - "hash" : "a64fe8b98f2e7b40a6a342368f412450", - "id" : "3207001", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "ハロウィンヴァンパイア", - "alias_name_display" : "ハロウィンヴァンパイア", - "event" : [ { - "event_id" : 207, - "event_name" : "アイドルサバイバル ハロウィン編" - } ], - "hash" : "100cd905a11b9720c2c2900c2d29cd24", - "id" : "3307002", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "制服コレクション", - "alias_name_display" : "制服コレクション", - "hash" : "9ff651d605c80ce711f075fac892e4ba", - "id" : "3209701", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "制服コレクション", - "alias_name_display" : "制服コレクション", - "hash" : "ca525a89021186705bef26286ca60aa0", - "id" : "3309702", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "イノセントカジュアル", - "alias_name_display" : "イノセントカジュアル", - "event" : [ { - "event_id" : 210, - "event_name" : "アイドルサバイバルinテーマパーク2013" - } ], - "hash" : "43dc4ab01d267de125f55814e78d562d", - "id" : "3210301", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "イノセントカジュアル", - "alias_name_display" : "イノセントカジュアル", - "event" : [ { - "event_id" : 210, - "event_name" : "アイドルサバイバルinテーマパーク2013" - } ], - "hash" : "6c5ed46ea8e57d875cee7a9a156f94dd", - "id" : "3310302", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "フレンズホリデー", - "alias_name_display" : "フレンズホリデー", - "hash" : "96aaa980d88be40c137aba05e087cf31", - "id" : "3218801", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "フレンズホリデー", - "alias_name_display" : "フレンズホリデー", - "hash" : "0981d408ac65375660c7f0e6e9c9aacb", - "id" : "3318802", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "お転婆ひな娘", - "alias_name_display" : "お転婆ひな娘", - "event" : [ { - "event_id" : 202, - "event_name" : "アイドルサバイバルひな祭り編" - } ], - "hash" : "f6f5df7f8023462cfbe413c9ffe6b0e6", - "id" : "3401201", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "お転婆ひな娘", - "alias_name_display" : "お転婆ひな娘", - "event" : [ { - "event_id" : 202, - "event_name" : "アイドルサバイバルひな祭り編" - } ], - "hash" : "fccbc1e099783725061730d71f4f3c7f", - "id" : "3501202", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "フード☆メイド", - "alias_name_display" : "フード☆メイド", - "event" : [ { - "event_id" : 409, - "event_name" : "アイドルプロデュース チャレンジクッキング イタリアン編" - } ], - "hash" : "6784ca2ff27361baf60e5656d41aa7b3", - "id" : "3408801", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "フード☆メイド", - "alias_name_display" : "フード☆メイド", - "event" : [ { - "event_id" : 409, - "event_name" : "アイドルプロデュース チャレンジクッキング イタリアン編" - } ], - "hash" : "c2cc3cb89e8a952d912ac52cc4ea29ea", - "id" : "3508802", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "無防備☆ガール", - "alias_name_display" : "無防備☆ガール", - "hash" : "0bd28c1f2662bd35b68a149c97b2dc9d", - "id" : "3411601", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "無防備☆ガール", - "alias_name_display" : "無防備☆ガール", - "hash" : "1c54bb41c531be11a13a01ab43943f85", - "id" : "3511602", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "ロワイヤル・スクエア", - "alias_name_display" : "ロワイヤル・スクエア", - "event" : [ { - "event_id" : 809, - "event_name" : "第9回アイドルLIVEロワイヤル" - } ], - "hash" : "e64f42e43c60813b610e0629287cf330", - "id" : "3420501", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "ロワイヤル・スクエア", - "alias_name_display" : "ロワイヤル・スクエア", - "event" : [ { - "event_id" : 809, - "event_name" : "第9回アイドルLIVEロワイヤル" - } ], - "hash" : "688a91e414403d1ce4dca71260eef0e1", - "id" : "3520502", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "ホップステップサマー", - "alias_name_display" : "ホップステップサマー", - "hash" : "3d198b386e57e5d7982ef82b7347f39a", - "id" : "3424701", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "ホップステップサマー", - "alias_name_display" : "ホップステップサマー", - "hash" : "266fa426c7b00f75b3148cb82ad3ec05", - "id" : "3524702", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "桃園花娘", - "alias_name_display" : "桃園花娘", - "hash" : "201c8374336e2c79188ec5840052aecb", - "id" : "3431001", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "桃園花娘", - "alias_name_display" : "桃園花娘", - "hash" : "4b14cd287e67145814d5ddb0c187ae8a", - "id" : "3531002", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "ひらめき☆アンサー", - "alias_name_display" : "ひらめき☆アンサー", - "hash" : "93008f94a5c66e998d1a0e45e7bab89a", - "id" : "3434901", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "ひらめき☆アンサー", - "alias_name_display" : "ひらめき☆アンサー", - "hash" : "d2f0b1423a844ac537fa255c1e383b22", - "id" : "3534902", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "82", - "waist" : "57", - "weight" : "43" - } - } ], - "idol_id" : 149, - "idol_name" : "喜多見柚", - "idol_name_display" : "喜多見柚", - "units" : [ { - "id" : "101", - "name" : "ハロウィンヴァンパイア" - }, { - "id" : "163", - "name" : "フリルドスクエア" - } ] -}, { - "aliases" : [ { - "event" : [ { - "event_id" : 102, - "event_name" : "アイドルおもちつき大会" - } ], - "hash" : "d20b8ca340a2b6ee42797c966f3a79b3", - "id" : "3001801", - "profile" : { - "bust" : "76", - "height" : "156", - "hip" : "79", - "waist" : "55", - "weight" : "42" - } - }, { - "event" : [ { - "event_id" : 102, - "event_name" : "アイドルおもちつき大会" - } ], - "hash" : "8c704c3ba88575367b7800a88e72eb9a", - "id" : "3101802", - "profile" : { - "bust" : "76", - "height" : "156", - "hip" : "79", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "ひな祭り", - "alias_name_display" : "ひな祭り", - "event" : [ { - "event_id" : 202, - "event_name" : "アイドルサバイバルひな祭り編" - } ], - "hash" : "c21299fa797c699cd1962bfc3803e736", - "id" : "3203601", - "profile" : { - "bust" : "76", - "height" : "156", - "hip" : "79", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "ひな祭り", - "alias_name_display" : "ひな祭り", - "event" : [ { - "event_id" : 202, - "event_name" : "アイドルサバイバルひな祭り編" - } ], - "hash" : "fc4b2b4edf58524ab549dc95abef1c44", - "id" : "3303602", - "profile" : { - "bust" : "76", - "height" : "156", - "hip" : "79", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "ハロウィンパーティー", - "alias_name_display" : "ハロウィンパーティー", - "hash" : "e6e361376fc4005af6546bf627d8cdfe", - "id" : "3206501", - "profile" : { - "bust" : "76", - "height" : "156", - "hip" : "79", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "ハロウィンパーティー", - "alias_name_display" : "ハロウィンパーティー", - "hash" : "6157e73a9eb2323a89bc9948fe7e5aa9", - "id" : "3306502", - "profile" : { - "bust" : "76", - "height" : "156", - "hip" : "79", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "テーマパーク", - "alias_name_display" : "テーマパーク", - "event" : [ { - "event_id" : 210, - "event_name" : "アイドルサバイバルinテーマパーク2013" - } ], - "hash" : "99f4555961526cda5c748127bef7870e", - "id" : "3210201", - "profile" : { - "bust" : "76", - "height" : "156", - "hip" : "79", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "テーマパーク", - "alias_name_display" : "テーマパーク", - "event" : [ { - "event_id" : 210, - "event_name" : "アイドルサバイバルinテーマパーク2013" - } ], - "hash" : "15b1e56e15dc511c428b7ef1b46ea4c9", - "id" : "3310202", - "profile" : { - "bust" : "76", - "height" : "156", - "hip" : "79", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "ハロウィンナイト", - "alias_name_display" : "ハロウィンナイト", - "hash" : "c038a0397e933eae426c272eff7f482e", - "id" : "3213101", - "profile" : { - "bust" : "76", - "height" : "156", - "hip" : "79", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "ハロウィンナイト", - "alias_name_display" : "ハロウィンナイト", - "hash" : "258fd3521d2a8454f156a30388a15342", - "id" : "3313102", - "profile" : { - "bust" : "76", - "height" : "156", - "hip" : "79", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "食えないスタイル", - "alias_name_display" : "食えないスタイル", - "event" : [ { - "event_id" : 710, - "event_name" : "サンタDEドリームLIVEフェスティバル" - } ], - "hash" : "63b4835e9f506fd149e300b69c640ed1", - "id" : "3220701", - "profile" : { - "bust" : "76", - "height" : "156", - "hip" : "79", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "食えないスタイル", - "alias_name_display" : "食えないスタイル", - "event" : [ { - "event_id" : 710, - "event_name" : "サンタDEドリームLIVEフェスティバル" - } ], - "hash" : "a8f9ae620ce05852ae3e99e6540dd062", - "id" : "3320702", - "profile" : { - "bust" : "76", - "height" : "156", - "hip" : "79", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "メデタイガール", - "alias_name_display" : "メデタイガール", - "hash" : "6d67f83eba3d6fe3c8831b9f6767b518", - "id" : "3225201", - "profile" : { - "bust" : "76", - "height" : "156", - "hip" : "79", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "メデタイガール", - "alias_name_display" : "メデタイガール", - "hash" : "fd402f4d39b07f0d650348588df99235", - "id" : "3325202", - "profile" : { - "bust" : "76", - "height" : "156", - "hip" : "79", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "ホーリーコーラス", - "alias_name_display" : "ホーリーコーラス", - "hash" : "f6a5cf105b88bd60cc66bb32499f6895", - "id" : "3231701", - "profile" : { - "bust" : "76", - "height" : "156", - "hip" : "79", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "ホーリーコーラス", - "alias_name_display" : "ホーリーコーラス", - "hash" : "d0d0373d0b07622c508aa5eeee1cc1f4", - "id" : "3331702", - "profile" : { - "bust" : "76", - "height" : "156", - "hip" : "79", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "ジ・アース", - "alias_name_display" : "ジ・アース", - "hash" : "c8bd49d003289cdd8def158eb3588760", - "id" : "3234401", - "profile" : { - "bust" : "76", - "height" : "156", - "hip" : "79", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "ジ・アース", - "alias_name_display" : "ジ・アース", - "hash" : "6f796b27b0eab4db53272233989c4a30", - "id" : "3334402", - "profile" : { - "bust" : "76", - "height" : "156", - "hip" : "79", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "みんなの太陽", - "alias_name_display" : "みんなの太陽", - "hash" : "2c81a2d0f28abd511851284ad313c915", - "id" : "3415501", - "profile" : { - "bust" : "76", - "height" : "156", - "hip" : "79", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "みんなの太陽", - "alias_name_display" : "みんなの太陽", - "hash" : "4c250678e7988d72cd313a1a87e5c3de", - "id" : "3515502", - "profile" : { - "bust" : "76", - "height" : "156", - "hip" : "79", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "ファッション☆モンスター", - "alias_name_display" : "ファッション☆モンスター", - "event" : [ { - "event_id" : 1402, - "event_name" : "第2回ぷちデレラコレクション" - } ], - "hash" : "0eed071ca9aabe1e0dc62630767ae5f8", - "id" : "3423601", - "profile" : { - "bust" : "76", - "height" : "156", - "hip" : "79", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "ファッション☆モンスター", - "alias_name_display" : "ファッション☆モンスター", - "event" : [ { - "event_id" : 1402, - "event_name" : "第2回ぷちデレラコレクション" - } ], - "hash" : "8ac2145403872fa99ee3b074be4c4dc6", - "id" : "3523602", - "profile" : { - "bust" : "76", - "height" : "156", - "hip" : "79", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "ファニー・ロワイヤル", - "alias_name_display" : "ファニー・ロワイヤル", - "event" : [ { - "event_id" : 818, - "event_name" : "アイドルLIVEロワイヤル 雨の日SP" - } ], - "hash" : "61fe8ff699e7e51036c0faf6f85f7d57", - "id" : "3433101", - "profile" : { - "bust" : "76", - "height" : "156", - "hip" : "79", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "ファニー・ロワイヤル", - "alias_name_display" : "ファニー・ロワイヤル", - "event" : [ { - "event_id" : 818, - "event_name" : "アイドルLIVEロワイヤル 雨の日SP" - } ], - "hash" : "ddf643f7944b7f55b9867bb33c17e9c6", - "id" : "3533102", - "profile" : { - "bust" : "76", - "height" : "156", - "hip" : "79", - "waist" : "55", - "weight" : "42" - } - } ], - "idol_id" : 150, - "idol_name" : "上田鈴帆", - "idol_name_display" : "上田鈴帆", - "units" : [ { - "id" : "6", - "name" : "笑美と鈴帆の爆笑エブリデイ" - }, { - "id" : "161", - "name" : "ハロウィンナイト" - }, { - "id" : "180", - "name" : "ハロウィンパーティー" - }, { - "id" : "190", - "name" : "サマプリ" - }, { - "id" : "211", - "name" : "ワンダー・フル" - } ] -}, { - "aliases" : [ { - "hash" : "f11481993da76a38d7f289c35cae41f5", - "id" : "3002001", - "profile" : { - "bust" : "92", - "height" : "162", - "hip" : "93", - "waist" : "65", - "weight" : "58" - } - }, { - "hash" : "6393963b2feeb36881d4263c72bfa0cd", - "id" : "3102002", - "profile" : { - "bust" : "92", - "height" : "162", - "hip" : "93", - "waist" : "67", - "weight" : "59" - } - }, { - "alias_name" : "浴衣祭り", - "alias_name_display" : "浴衣祭り", - "hash" : "a9b3485ee109892c4a263b990ed57be6", - "id" : "3205201", - "profile" : { - "bust" : "92", - "height" : "162", - "hip" : "93", - "waist" : "67", - "weight" : "59" - } - }, { - "alias_name" : "浴衣祭り", - "alias_name_display" : "浴衣祭り", - "hash" : "882d09cd56864c6f8e27e24437215b42", - "id" : "3305202", - "profile" : { - "bust" : "92", - "height" : "162", - "hip" : "93", - "waist" : "67", - "weight" : "59" - } - }, { - "alias_name" : "デビリッシュゴシック", - "alias_name_display" : "デビリッシュゴシック", - "hash" : "99a8eba4e46f0b16a51a372d4a4dc565", - "id" : "3210101", - "profile" : { - "bust" : "92", - "height" : "162", - "hip" : "93", - "waist" : "67", - "weight" : "59" - } - }, { - "alias_name" : "デビリッシュゴシック", - "alias_name_display" : "デビリッシュゴシック", - "hash" : "721088da0e9e7de67a903eea16dd5b4c", - "id" : "3310102", - "profile" : { - "bust" : "92", - "height" : "162", - "hip" : "93", - "waist" : "67", - "weight" : "59" - } - }, { - "alias_name" : "ぷにぷにサマー", - "alias_name_display" : "ぷにぷにサマー", - "event" : [ { - "event_id" : 506, - "event_name" : "アイドルLIVEツアーinハワイ" - } ], - "hash" : "393c6cafd2d14a97c4949f0bf386bb03", - "id" : "3212101", - "profile" : { - "bust" : "92", - "height" : "162", - "hip" : "93", - "waist" : "67", - "weight" : "59" - } - }, { - "alias_name" : "ぷにぷにサマー", - "alias_name_display" : "ぷにぷにサマー", - "event" : [ { - "event_id" : 506, - "event_name" : "アイドルLIVEツアーinハワイ" - } ], - "hash" : "ad08ca71aac4affbd98e2c8613e2ef72", - "id" : "3312102", - "profile" : { - "bust" : "92", - "height" : "162", - "hip" : "93", - "waist" : "67", - "weight" : "59" - } - }, { - "alias_name" : "あまあまボディ", - "alias_name_display" : "あまあまボディ", - "event" : [ { - "event_id" : 1301, - "event_name" : "プロダクションマッチフェスティバルS" - } ], - "hash" : "5feee873f7f71f93bc9c64f7488223ee", - "id" : "3218001", - "profile" : { - "bust" : "92", - "height" : "162", - "hip" : "93", - "waist" : "67", - "weight" : "59" - } - }, { - "alias_name" : "あまあまボディ", - "alias_name_display" : "あまあまボディ", - "event" : [ { - "event_id" : 1301, - "event_name" : "プロダクションマッチフェスティバルS" - } ], - "hash" : "1606de8faf4939054583ca16ef1d834e", - "id" : "3318002", - "profile" : { - "bust" : "92", - "height" : "162", - "hip" : "93", - "waist" : "67", - "weight" : "59" - } - }, { - "alias_name" : "自慢の一皿", - "alias_name_display" : "自慢の一皿", - "event" : [ { - "event_id" : 519, - "event_name" : "美食公演 女神に捧ぐ御馳走" - } ], - "hash" : "2801a1e061cc7bd20fd826efef86e591", - "id" : "3323002", - "profile" : { - "bust" : "92", - "height" : "162", - "hip" : "93", - "waist" : "67", - "weight" : "59" - } - }, { - "alias_name" : "紅葉温泉", - "alias_name_display" : "紅葉温泉", - "hash" : "a0d8f9c70a90965f5383f23fc9297e73", - "id" : "3226201", - "profile" : { - "bust" : "92", - "height" : "162", - "hip" : "93", - "waist" : "67", - "weight" : "59" - } - }, { - "alias_name" : "紅葉温泉", - "alias_name_display" : "紅葉温泉", - "hash" : "edc726ca8c756384a88415b7a3caf667", - "id" : "3326202", - "profile" : { - "bust" : "92", - "height" : "162", - "hip" : "93", - "waist" : "67", - "weight" : "59" - } - }, { - "alias_name" : "ランプの魔神", - "alias_name_display" : "ランプの魔神", - "event" : [ { - "event_id" : 1902, - "event_name" : "御伽公演 おてんば姫とまぢヤバな魔法のランプ" - } ], - "hash" : "07db6378f0e35643cac8d82235b68123", - "id" : "3329702", - "profile" : { - "bust" : "92", - "height" : "162", - "hip" : "93", - "waist" : "67", - "weight" : "59" - } - }, { - "alias_name" : "プニョフワ乙女", - "alias_name_display" : "プニョフワ乙女", - "event" : [ { - "event_id" : 704, - "event_name" : "第4回ドリームLIVEフェスティバル" - } ], - "hash" : "c86d7c82683d60607bc5d143515334af", - "id" : "3409901", - "profile" : { - "bust" : "92", - "height" : "162", - "hip" : "93", - "waist" : "67", - "weight" : "59" - } - }, { - "alias_name" : "プニョフワ乙女", - "alias_name_display" : "プニョフワ乙女", - "event" : [ { - "event_id" : 704, - "event_name" : "第4回ドリームLIVEフェスティバル" - } ], - "hash" : "63bca4c7ba8800505ce5a061d4aee09c", - "id" : "3509902", - "profile" : { - "bust" : "92", - "height" : "162", - "hip" : "93", - "waist" : "67", - "weight" : "59" - } - }, { - "alias_name" : "ぷにむにフィーリング", - "alias_name_display" : "ぷにむにフィーリング", - "event" : [ { - "event_id" : "019", - "event_name" : "第19回プロダクションマッチフェスティバル" - } ], - "hash" : "322962fdcf32dd19ff02fc6cb50077a8", - "id" : "3418901", - "profile" : { - "bust" : "92", - "height" : "162", - "hip" : "93", - "waist" : "67", - "weight" : "59" - } - }, { - "alias_name" : "ぷにむにフィーリング", - "alias_name_display" : "ぷにむにフィーリング", - "event" : [ { - "event_id" : "019", - "event_name" : "第19回プロダクションマッチフェスティバル" - } ], - "hash" : "b469418a2073c780c8641fe2a23c7224", - "id" : "3518902", - "profile" : { - "bust" : "92", - "height" : "162", - "hip" : "93", - "waist" : "67", - "weight" : "59" - } - }, { - "alias_name" : "ぷにっとチアー", - "alias_name_display" : "ぷにっとチアー", - "event" : [ { - "event_id" : 1506, - "event_name" : "第6回チーム対抗トークバトルショー" - } ], - "hash" : "4b48f10d4de9328c9c106f9077981894", - "id" : "3430901", - "profile" : { - "bust" : "92", - "height" : "162", - "hip" : "93", - "waist" : "67", - "weight" : "59" - } - }, { - "alias_name" : "ぷにっとチアー", - "alias_name_display" : "ぷにっとチアー", - "event" : [ { - "event_id" : 1506, - "event_name" : "第6回チーム対抗トークバトルショー" - } ], - "hash" : "82e103ab4c545dc25fd404a6ff80ba59", - "id" : "3530902", - "profile" : { - "bust" : "92", - "height" : "162", - "hip" : "93", - "waist" : "67", - "weight" : "59" - } - }, { - "alias_name" : "ふわっと艶乙女", - "alias_name_display" : "ふわっと艶乙女", - "hash" : "6561e1ef73f3ae607ff507d0cb6596c6", - "id" : "3437601", - "profile" : { - "bust" : "92", - "height" : "162", - "hip" : "93", - "waist" : "67", - "weight" : "59" - } - }, { - "alias_name" : "ふわっと艶乙女", - "alias_name_display" : "ふわっと艶乙女", - "hash" : "f918315bf0b28276e87d685d545c8145", - "id" : "3537602", - "profile" : { - "bust" : "92", - "height" : "162", - "hip" : "93", - "waist" : "67", - "weight" : "59" - } - } ], - "idol_id" : 151, - "idol_name" : "海老原菜帆", - "idol_name_display" : "海老原菜帆", - "units" : [ { - "id" : "157", - "name" : "デビリッシュゴシック" - }, { - "id" : "178", - "name" : "からぱれ" - }, { - "id" : "206", - "name" : "セクシーボンデージ" - } ] -}, { - "aliases" : [ { - "event" : [ { - "event_id" : 303, - "event_name" : "アイドル強化合宿" - } ], - "hash" : "9d8f7ddf9814571ec92baa652f20ead5", - "id" : "3002401", - "profile" : { - "bust" : "77", - "height" : "157", - "hip" : "82", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "バレンタイン", - "alias_name_display" : "バレンタイン", - "hash" : "36e37884b950605dc92c789b5b270b37", - "id" : "3003701", - "profile" : { - "bust" : "77", - "height" : "157", - "hip" : "82", - "waist" : "56", - "weight" : "45" - } - } ], - "idol_id" : 152, - "idol_name" : "ルーキートレーナー", - "idol_name_display" : "ルーキートレーナー" -}, { - "aliases" : [ { - "hash" : "66fbc3ffdc1d467d4656be4e6a806c8d", - "id" : "3002501", - "profile" : { - "bust" : "105", - "height" : "170", - "hip" : "92", - "waist" : "64", - "weight" : "56" - } - }, { - "hash" : "73887de78a57a5c49170947f2b83c81b", - "id" : "3102502", - "profile" : { - "bust" : "105", - "height" : "170", - "hip" : "92", - "waist" : "64", - "weight" : "56" - } - }, { - "alias_name" : "マーメイドパラダイス", - "alias_name_display" : "マーメイドパラダイス", - "hash" : "07d404f5b5197204f9664334fa255730", - "id" : "3205801", - "profile" : { - "bust" : "105", - "height" : "170", - "hip" : "92", - "waist" : "64", - "weight" : "56" - } - }, { - "alias_name" : "マーメイドパラダイス", - "alias_name_display" : "マーメイドパラダイス", - "hash" : "69a5fd83ed2443c3bd79c2cc133c6334", - "id" : "3305802", - "profile" : { - "bust" : "105", - "height" : "170", - "hip" : "92", - "waist" : "64", - "weight" : "56" - } - }, { - "alias_name" : "浴衣祭り", - "alias_name_display" : "浴衣祭り", - "hash" : "6e35b42e385c8c1ba43173498fb1e76f", - "id" : "3211301", - "profile" : { - "bust" : "105", - "height" : "170", - "hip" : "92", - "waist" : "64", - "weight" : "56" - } - }, { - "alias_name" : "浴衣祭り", - "alias_name_display" : "浴衣祭り", - "hash" : "88101417f347a5f1a8f3eb488c36e8d2", - "id" : "3311302", - "profile" : { - "bust" : "105", - "height" : "170", - "hip" : "92", - "waist" : "64", - "weight" : "56" - } - }, { - "alias_name" : "ミルキーB.B", - "alias_name_display" : "ミルキーB.B", - "hash" : "77aa04216bfb980d6a349ebc31f297f5", - "id" : "3221601", - "profile" : { - "bust" : "105", - "height" : "170", - "hip" : "92", - "waist" : "64", - "weight" : "56" - } - }, { - "alias_name" : "ミルキーB.B", - "alias_name_display" : "ミルキーB.B", - "hash" : "bb05e3e826f6b264c9b9fab8920f40ca", - "id" : "3321602", - "profile" : { - "bust" : "105", - "height" : "170", - "hip" : "92", - "waist" : "64", - "weight" : "56" - } - }, { - "alias_name" : "ビーチガール", - "alias_name_display" : "ビーチガール", - "event" : [ { - "event_id" : 1703, - "event_name" : "アイドルプロデュース おいでよ!海の家" - } ], - "hash" : "a9916b3a3bfdeee7e137a0fe098260bc", - "id" : "3224101", - "profile" : { - "bust" : "105", - "height" : "170", - "hip" : "92", - "waist" : "64", - "weight" : "56" - } - }, { - "alias_name" : "ビーチガール", - "alias_name_display" : "ビーチガール", - "event" : [ { - "event_id" : 1703, - "event_name" : "アイドルプロデュース おいでよ!海の家" - } ], - "hash" : "cb6e0046c38105c34bf814d7de9faf54", - "id" : "3324102", - "profile" : { - "bust" : "105", - "height" : "170", - "hip" : "92", - "waist" : "64", - "weight" : "56" - } - }, { - "alias_name" : "ビーチガール・S", - "alias_name_display" : "ビーチガール・S", - "event" : [ { - "event_id" : 1703, - "event_name" : "アイドルプロデュース おいでよ!海の家" - } ], - "hash" : "f3339d2dacbd08cab3248fed296c152e", - "id" : "3224201", - "profile" : { - "bust" : "105", - "height" : "170", - "hip" : "92", - "waist" : "64", - "weight" : "56" - } - }, { - "alias_name" : "ビーチガール・S", - "alias_name_display" : "ビーチガール・S", - "event" : [ { - "event_id" : 1703, - "event_name" : "アイドルプロデュース おいでよ!海の家" - } ], - "hash" : "330125851af71481cec10cd6c08ead5d", - "id" : "3324202", - "profile" : { - "bust" : "105", - "height" : "170", - "hip" : "92", - "waist" : "64", - "weight" : "56" - } - }, { - "alias_name" : "バレンタインI.C", - "alias_name_display" : "バレンタインI.C", - "event" : [ { - "event_id" : 1209, - "event_name" : "アイドルチャレンジ チャレンジクッキング バレンタイン編" - } ], - "hash" : "64a0bb938d41f1029525df2e503ac1c4", - "id" : "3327702", - "profile" : { - "bust" : "105", - "height" : "170", - "hip" : "92", - "waist" : "64", - "weight" : "56" - } - }, { - "alias_name" : "コロッセオクイーン", - "alias_name_display" : "コロッセオクイーン", - "event" : [ { - "event_id" : 503, - "event_name" : "アイドルLIVEツアーinイタリア" - } ], - "hash" : "e70d367d497a566cf2c90eba7cf20acc", - "id" : "3405401", - "profile" : { - "bust" : "105", - "height" : "170", - "hip" : "92", - "waist" : "64", - "weight" : "56" - } - }, { - "alias_name" : "コロッセオクイーン", - "alias_name_display" : "コロッセオクイーン", - "event" : [ { - "event_id" : 503, - "event_name" : "アイドルLIVEツアーinイタリア" - } ], - "hash" : "0037cb7e98c14596a6eb124788dfb080", - "id" : "3505402", - "profile" : { - "bust" : "105", - "height" : "170", - "hip" : "92", - "waist" : "64", - "weight" : "56" - } - }, { - "alias_name" : "愛の癒し系", - "alias_name_display" : "愛の癒し系", - "hash" : "aa3c25c011a1152a9af8e920df5533c5", - "id" : "3411001", - "profile" : { - "bust" : "105", - "height" : "170", - "hip" : "92", - "waist" : "64", - "weight" : "56" - } - }, { - "alias_name" : "愛の癒し系", - "alias_name_display" : "愛の癒し系", - "hash" : "7ce85c1cb569dab668f55c5019084f36", - "id" : "3511002", - "profile" : { - "bust" : "105", - "height" : "170", - "hip" : "92", - "waist" : "64", - "weight" : "56" - } - }, { - "alias_name" : "癒しの満月", - "alias_name_display" : "癒しの満月", - "hash" : "04b085f6025a0db0dd34223ff1ecefbd", - "id" : "3413301", - "profile" : { - "bust" : "105", - "height" : "170", - "hip" : "92", - "waist" : "64", - "weight" : "56" - } - }, { - "alias_name" : "癒しの満月", - "alias_name_display" : "癒しの満月", - "hash" : "198d50500bd1408485c99c5a33719597", - "id" : "3513302", - "profile" : { - "bust" : "105", - "height" : "170", - "hip" : "92", - "waist" : "64", - "weight" : "56" - } - }, { - "alias_name" : "真夏の果実", - "alias_name_display" : "真夏の果実", - "event" : [ { - "event_id" : "018", - "event_name" : "第18回プロダクションマッチフェスティバル" - } ], - "hash" : "3b35a7be62c1baf6d0320e704af57c35", - "id" : "3416601", - "profile" : { - "bust" : "105", - "height" : "170", - "hip" : "92", - "waist" : "64", - "weight" : "56" - } - }, { - "alias_name" : "真夏の果実", - "alias_name_display" : "真夏の果実", - "event" : [ { - "event_id" : "018", - "event_name" : "第18回プロダクションマッチフェスティバル" - } ], - "hash" : "b0b2836b44bcc84f30cb2a0b4ee95811", - "id" : "3516602", - "profile" : { - "bust" : "105", - "height" : "170", - "hip" : "92", - "waist" : "64", - "weight" : "56" - } - }, { - "alias_name" : "たっぷりクッキング", - "alias_name_display" : "たっぷりクッキング", - "event" : [ { - "event_id" : 1209, - "event_name" : "アイドルチャレンジ チャレンジクッキング バレンタイン編" - } ], - "hash" : "429bd4b9d09119bf50561fd585ff2a03", - "id" : "3429901", - "profile" : { - "bust" : "105", - "height" : "170", - "hip" : "92", - "waist" : "64", - "weight" : "56" - } - }, { - "alias_name" : "たっぷりクッキング", - "alias_name_display" : "たっぷりクッキング", - "event" : [ { - "event_id" : 1209, - "event_name" : "アイドルチャレンジ チャレンジクッキング バレンタイン編" - } ], - "hash" : "06eb2a01d94dbc499b79359b3cff0fea", - "id" : "3529902", - "profile" : { - "bust" : "105", - "height" : "170", - "hip" : "92", - "waist" : "64", - "weight" : "56" - } - }, { - "alias_name" : "たっぷりクッキング・S", - "alias_name_display" : "たっぷりクッキング・S", - "event" : [ { - "event_id" : 1209, - "event_name" : "アイドルチャレンジ チャレンジクッキング バレンタイン編" - } ], - "hash" : "559790e9b6e4de4ac9449d337663ddbb", - "id" : "3430001", - "profile" : { - "bust" : "105", - "height" : "170", - "hip" : "92", - "waist" : "64", - "weight" : "56" - } - }, { - "alias_name" : "たっぷりクッキング・S", - "alias_name_display" : "たっぷりクッキング・S", - "event" : [ { - "event_id" : 1209, - "event_name" : "アイドルチャレンジ チャレンジクッキング バレンタイン編" - } ], - "hash" : "14c5a8ec192752cbd093a8f6273d2b1e", - "id" : "3530002", - "profile" : { - "bust" : "105", - "height" : "170", - "hip" : "92", - "waist" : "64", - "weight" : "56" - } - }, { - "alias_name" : "実りの季節", - "alias_name_display" : "実りの季節", - "event" : [ { - "event_id" : 724, - "event_name" : "第24回ドリームLIVEフェスティバル" - } ], - "hash" : "bbbfa253851f09e73d360a8d7e870e8c", - "id" : "3435101", - "profile" : { - "bust" : "105", - "height" : "170", - "hip" : "92", - "waist" : "64", - "weight" : "56" - } - }, { - "alias_name" : "実りの季節", - "alias_name_display" : "実りの季節", - "event" : [ { - "event_id" : 724, - "event_name" : "第24回ドリームLIVEフェスティバル" - } ], - "hash" : "c68c5ef6c59aa24884cab075a33569cc", - "id" : "3535102", - "profile" : { - "bust" : "105", - "height" : "170", - "hip" : "92", - "waist" : "64", - "weight" : "56" - } - }, { - "alias_name" : "バウンシーラウンド", - "alias_name_display" : "バウンシーラウンド", - "hash" : "bc1a87fb25e1da16048f98be8a1d3610", - "id" : "3438501", - "profile" : { - "bust" : "105", - "height" : "170", - "hip" : "92", - "waist" : "64", - "weight" : "56" - } - }, { - "alias_name" : "バウンシーラウンド", - "alias_name_display" : "バウンシーラウンド", - "hash" : "8f67ec464f14c69c9abff99d4e5c4eae", - "id" : "3538502", - "profile" : { - "bust" : "105", - "height" : "170", - "hip" : "92", - "waist" : "64", - "weight" : "56" - } - } ], - "idol_id" : 153, - "idol_name" : "及川雫", - "idol_name_display" : "及川雫", - "units" : [ { - "id" : "71", - "name" : "B.B" - }, { - "id" : "147", - "name" : "セクシーギルティ" - }, { - "id" : "182", - "name" : "マーメイドパラダイス" - }, { - "id" : "188", - "name" : "Sweetches" - } ] -}, { - "aliases" : [ { - "hash" : "95dfef96c030c77201ff9ed0faa2077f", - "id" : "3002601", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "77", - "waist" : "50", - "weight" : "41" - } - }, { - "hash" : "78df21dcef6a0526a64a6d9cac16b48c", - "id" : "3102602", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "77", - "waist" : "50", - "weight" : "41" - } - }, { - "alias_name" : "イタズラっ子", - "alias_name_display" : "イタズラっ子", - "event" : [ { - "event_id" : 205, - "event_name" : "アイドルサバイバルinサマーライブ" - } ], - "hash" : "14a463ebd0706f1db075f8cccb392178", - "id" : "3205701", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "77", - "waist" : "50", - "weight" : "41" - } - }, { - "alias_name" : "イタズラっ子", - "alias_name_display" : "イタズラっ子", - "event" : [ { - "event_id" : 205, - "event_name" : "アイドルサバイバルinサマーライブ" - } ], - "hash" : "20500acb55c3d5d486308c993316b64a", - "id" : "3305702", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "77", - "waist" : "50", - "weight" : "41" - } - }, { - "alias_name" : "イタズラゴシック", - "alias_name_display" : "イタズラゴシック", - "hash" : "37709b95b40e62f7d715e388278a899c", - "id" : "3212301", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "77", - "waist" : "50", - "weight" : "41" - } - }, { - "alias_name" : "イタズラゴシック", - "alias_name_display" : "イタズラゴシック", - "hash" : "d89af5643544548c921520265fa69492", - "id" : "3312302", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "77", - "waist" : "50", - "weight" : "41" - } - }, { - "alias_name" : "魔女っ娘I.C", - "alias_name_display" : "魔女っ娘I.C", - "event" : [ { - "event_id" : 1201, - "event_name" : "目指せ魔女っ娘 アイドルチャレンジ" - } ], - "hash" : "c48cd2738311b6a1f088e92adb23dab6", - "id" : "3317102", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "77", - "waist" : "50", - "weight" : "41" - } - }, { - "alias_name" : "秋色温泉", - "alias_name_display" : "秋色温泉", - "hash" : "8cb9abd592c10bbf1255a9d404541b5b", - "id" : "3220001", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "77", - "waist" : "50", - "weight" : "41" - } - }, { - "alias_name" : "秋色温泉", - "alias_name_display" : "秋色温泉", - "hash" : "48121be6ac23c40b833653f041f850e6", - "id" : "3320002", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "77", - "waist" : "50", - "weight" : "41" - } - }, { - "alias_name" : "ノルウェー紀行", - "alias_name_display" : "ノルウェー紀行", - "event" : [ { - "event_id" : 1705, - "event_name" : "アイドルプロデュース きらめくオーロラ紀行" - } ], - "hash" : "3b1f8e51a11ceb203de8a734f9f7dd35", - "id" : "3228001", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "77", - "waist" : "50", - "weight" : "41" - } - }, { - "alias_name" : "ノルウェー紀行", - "alias_name_display" : "ノルウェー紀行", - "event" : [ { - "event_id" : 1705, - "event_name" : "アイドルプロデュース きらめくオーロラ紀行" - } ], - "hash" : "822067804b45cef47ecf9c2a870d2338", - "id" : "3328002", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "77", - "waist" : "50", - "weight" : "41" - } - }, { - "alias_name" : "ノルウェー紀行・S", - "alias_name_display" : "ノルウェー紀行・S", - "event" : [ { - "event_id" : 1705, - "event_name" : "アイドルプロデュース きらめくオーロラ紀行" - } ], - "hash" : "b8546cf7912612caf25933c15242f9e1", - "id" : "3228101", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "77", - "waist" : "50", - "weight" : "41" - } - }, { - "alias_name" : "ノルウェー紀行・S", - "alias_name_display" : "ノルウェー紀行・S", - "event" : [ { - "event_id" : 1705, - "event_name" : "アイドルプロデュース きらめくオーロラ紀行" - } ], - "hash" : "3a09dcfe3af2d7bfba567bb4d0eba840", - "id" : "3328102", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "77", - "waist" : "50", - "weight" : "41" - } - }, { - "alias_name" : "スライリーボス", - "alias_name_display" : "スライリーボス", - "hash" : "1450cb40e9291f7b9da2581ab121abd3", - "id" : "3234101", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "77", - "waist" : "50", - "weight" : "41" - } - }, { - "alias_name" : "スライリーボス", - "alias_name_display" : "スライリーボス", - "hash" : "037fba15808ccc155155baa5294fc88b", - "id" : "3334102", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "77", - "waist" : "50", - "weight" : "41" - } - }, { - "alias_name" : "スクールデビル", - "alias_name_display" : "スクールデビル", - "hash" : "0fcdc2e5ed21fa7c29cc526213ddf9f7", - "id" : "3405901", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "77", - "waist" : "50", - "weight" : "41" - } - }, { - "alias_name" : "スクールデビル", - "alias_name_display" : "スクールデビル", - "hash" : "cf9738e0a6277c8199423e64327f9a0b", - "id" : "3505902", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "77", - "waist" : "50", - "weight" : "41" - } - }, { - "alias_name" : "ロワイヤルジョーカー", - "alias_name_display" : "ロワイヤルジョーカー", - "event" : [ { - "event_id" : 803, - "event_name" : "第3回アイドルLIVEロワイヤル" - } ], - "hash" : "1ea77064b2e69011cac2b271cea19e49", - "id" : "3411101", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "77", - "waist" : "50", - "weight" : "41" - } - }, { - "alias_name" : "ロワイヤルジョーカー", - "alias_name_display" : "ロワイヤルジョーカー", - "event" : [ { - "event_id" : 803, - "event_name" : "第3回アイドルLIVEロワイヤル" - } ], - "hash" : "de341f17a3de36ce56f9ed87c89942be", - "id" : "3511102", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "77", - "waist" : "50", - "weight" : "41" - } - }, { - "alias_name" : "マジカルガール・フレイム", - "alias_name_display" : "マジカルガール・フレイム", - "event" : [ { - "event_id" : 1201, - "event_name" : "目指せ魔女っ娘 アイドルチャレンジ" - } ], - "hash" : "89154211f3d3df8c15937f18b01c8641", - "id" : "3414401", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "77", - "waist" : "50", - "weight" : "41" - } - }, { - "alias_name" : "マジカルガール・フレイム", - "alias_name_display" : "マジカルガール・フレイム", - "event" : [ { - "event_id" : 1201, - "event_name" : "目指せ魔女っ娘 アイドルチャレンジ" - } ], - "hash" : "f1bdc15bec53fd74b3e11de6e3a77eab", - "id" : "3514402", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "77", - "waist" : "50", - "weight" : "41" - } - }, { - "alias_name" : "マジカルガールS・フレイム", - "alias_name_display" : "マジカルガールS・フレイム", - "event" : [ { - "event_id" : 1201, - "event_name" : "目指せ魔女っ娘 アイドルチャレンジ" - } ], - "hash" : "aeaa5782beec126061a02b18ddb73d77", - "id" : "3414501", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "77", - "waist" : "50", - "weight" : "41" - } - }, { - "alias_name" : "マジカルガールS・フレイム", - "alias_name_display" : "マジカルガールS・フレイム", - "event" : [ { - "event_id" : 1201, - "event_name" : "目指せ魔女っ娘 アイドルチャレンジ" - } ], - "hash" : "c8bfa6571c1447a4a3eacf97e2233006", - "id" : "3514502", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "77", - "waist" : "50", - "weight" : "41" - } - }, { - "alias_name" : "イタズラ☆クイーン", - "alias_name_display" : "イタズラ☆クイーン", - "event" : [ { - "event_id" : "020", - "event_name" : "第20回プロダクションマッチフェスティバル" - } ], - "hash" : "e2a0fb6aa0a659039f7f426e68ba3d5b", - "id" : "3421601", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "77", - "waist" : "50", - "weight" : "41" - } - }, { - "alias_name" : "イタズラ☆クイーン", - "alias_name_display" : "イタズラ☆クイーン", - "event" : [ { - "event_id" : "020", - "event_name" : "第20回プロダクションマッチフェスティバル" - } ], - "hash" : "3c37b1a01265b61ac9fe41f006a58536", - "id" : "3521602", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "77", - "waist" : "50", - "weight" : "41" - } - }, { - "alias_name" : "マーチング☆ラウド", - "alias_name_display" : "マーチング☆ラウド", - "hash" : "6f4015168a5dd90b7c312c398ea46a7b", - "id" : "3424401", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "77", - "waist" : "50", - "weight" : "41" - } - }, { - "alias_name" : "マーチング☆ラウド", - "alias_name_display" : "マーチング☆ラウド", - "hash" : "6ebb6a6bb44de19413523eb7e59051b7", - "id" : "3524402", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "77", - "waist" : "50", - "weight" : "41" - } - }, { - "alias_name" : "ライブリージョーカー", - "alias_name_display" : "ライブリージョーカー", - "event" : [ { - "event_id" : 725, - "event_name" : "第25回ドリームLIVEフェスティバル" - } ], - "hash" : "2c28f7721ac9396626a999e6339b2c88", - "id" : "3435801", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "77", - "waist" : "50", - "weight" : "41" - } - }, { - "alias_name" : "ライブリージョーカー", - "alias_name_display" : "ライブリージョーカー", - "event" : [ { - "event_id" : 725, - "event_name" : "第25回ドリームLIVEフェスティバル" - } ], - "hash" : "f6119202da4cb7287258017f533e28a7", - "id" : "3535802", - "profile" : { - "bust" : "75", - "height" : "148", - "hip" : "77", - "waist" : "50", - "weight" : "41" - } - } ], - "idol_id" : 154, - "idol_name" : "小関麗奈", - "idol_name_display" : "小関麗奈", - "units" : [ { - "id" : "46", - "name" : "ヒーローヴァーサス" - }, { - "id" : "59", - "name" : "ムシバレイナと小春ちゃん" - }, { - "id" : "154", - "name" : "秋色温泉" - }, { - "id" : "164", - "name" : "マジカルテット" - }, { - "id" : "214", - "name" : "L.M.B.G" - } ] -}, { - "aliases" : [ { - "hash" : "ce41501e26f10c602104c8ea99058fac", - "id" : "3002901", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "hash" : "9b84bbcea8121a56969c15b2173a4e41", - "id" : "3102902", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ショービズガール", - "alias_name_display" : "ショービズガール", - "hash" : "d080f0c1cd8fe5edd66a70752ad330f9", - "id" : "3207401", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ショービズガール", - "alias_name_display" : "ショービズガール", - "hash" : "11c15104d7999e6f18f959a5959525c1", - "id" : "3307402", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "エレガントスタイル", - "alias_name_display" : "エレガントスタイル", - "event" : [ { - "event_id" : "012", - "event_name" : "第12回プロダクションマッチフェスティバル" - } ], - "hash" : "7397b8aef0b374bfda98b7585fa5975a", - "id" : "3212601", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "エレガントスタイル", - "alias_name_display" : "エレガントスタイル", - "event" : [ { - "event_id" : "012", - "event_name" : "第12回プロダクションマッチフェスティバル" - } ], - "hash" : "2fcfc69158f584eda0c93f680cea3b9c", - "id" : "3312602", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "セレクトメイド", - "alias_name_display" : "セレクトメイド", - "hash" : "77254317d91c39c769bb9ea89a4dd7a9", - "id" : "3216001", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "セレクトメイド", - "alias_name_display" : "セレクトメイド", - "hash" : "eccdb961c4d022c046a8769df1db6ebb", - "id" : "3316002", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "シーパイレーツ", - "alias_name_display" : "シーパイレーツ", - "event" : [ { - "event_id" : 513, - "event_name" : "海賊公演 オーシャンクルーズ" - } ], - "hash" : "78f0e9e484234a2349b36a911138382b", - "id" : "3217901", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "シーパイレーツ", - "alias_name_display" : "シーパイレーツ", - "event" : [ { - "event_id" : 513, - "event_name" : "海賊公演 オーシャンクルーズ" - } ], - "hash" : "2140acc12cf828a2f2a3edb5d5b8c6fa", - "id" : "3317902", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ガールズモード", - "alias_name_display" : "ガールズモード", - "event" : [ { - "event_id" : 713, - "event_name" : "第13回ドリームLIVEフェスティバル" - } ], - "hash" : "ed18ec00d1882aab7d3bffd12eeb6ff7", - "id" : "3223201", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ガールズモード", - "alias_name_display" : "ガールズモード", - "event" : [ { - "event_id" : 713, - "event_name" : "第13回ドリームLIVEフェスティバル" - } ], - "hash" : "6a45bdcaacbacf08ace0cdf463f8564c", - "id" : "3323202", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ナデシコI.C", - "alias_name_display" : "ナデシコI.C", - "event" : [ { - "event_id" : 1207, - "event_name" : "目指せ大和撫子 アイドルチャレンジ" - } ], - "hash" : "45d8d8a1d481ed88a1b379ae38724496", - "id" : "3325402", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "フレッシュPG", - "alias_name_display" : "フレッシュPG", - "hash" : "c1de4993ff2cb610b6bb1df718fac98c", - "id" : "3227801", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "フレッシュPG", - "alias_name_display" : "フレッシュPG", - "hash" : "af02f2cc9eff0cc1b65cdfb25c4d7e46", - "id" : "3327802", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ビターバレンタイン", - "alias_name_display" : "ビターバレンタイン", - "hash" : "5d714716503f34d64e3793fd1a2f3d16", - "id" : "3405001", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ビターバレンタイン", - "alias_name_display" : "ビターバレンタイン", - "hash" : "3d652688429abc27f23dfe08203c0a2c", - "id" : "3505002", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "あたしの磨き方", - "alias_name_display" : "あたしの磨き方", - "event" : [ { - "event_id" : 1302, - "event_name" : "第2回プロダクションマッチフェスティバルS" - } ], - "hash" : "6c2a19b5543568e87ea94e385348ae09", - "id" : "3418101", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "あたしの磨き方", - "alias_name_display" : "あたしの磨き方", - "event" : [ { - "event_id" : 1302, - "event_name" : "第2回プロダクションマッチフェスティバルS" - } ], - "hash" : "80d9025585c14a2d82acfed3696ed523", - "id" : "3518102", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "華道の大和撫子", - "alias_name_display" : "華道の大和撫子", - "event" : [ { - "event_id" : 1207, - "event_name" : "目指せ大和撫子 アイドルチャレンジ" - } ], - "hash" : "c3dee40a36c07b80e0ac30fc33656961", - "id" : "3426601", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "華道の大和撫子", - "alias_name_display" : "華道の大和撫子", - "event" : [ { - "event_id" : 1207, - "event_name" : "目指せ大和撫子 アイドルチャレンジ" - } ], - "hash" : "d13a2d0afa9cf52d1649abe6cfb8d90c", - "id" : "3526602", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "華道の大和撫子・S", - "alias_name_display" : "華道の大和撫子・S", - "event" : [ { - "event_id" : 1207, - "event_name" : "目指せ大和撫子 アイドルチャレンジ" - } ], - "hash" : "a7a27109f7578b5ce87588c613000daf", - "id" : "3426701", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "華道の大和撫子・S", - "alias_name_display" : "華道の大和撫子・S", - "event" : [ { - "event_id" : 1207, - "event_name" : "目指せ大和撫子 アイドルチャレンジ" - } ], - "hash" : "1bf6398daee19fd22d81891ea63f807d", - "id" : "3526702", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ガールズアドバンス", - "alias_name_display" : "ガールズアドバンス", - "event" : [ { - "event_id" : 1408, - "event_name" : "第8回ぷちデレラコレクション" - } ], - "hash" : "2dc7b60647c7602b90c9424e99a4e8a2", - "id" : "3434601", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ガールズアドバンス", - "alias_name_display" : "ガールズアドバンス", - "event" : [ { - "event_id" : 1408, - "event_name" : "第8回ぷちデレラコレクション" - } ], - "hash" : "a0a4ffd9f9b3ccef042c60afb65fcf16", - "id" : "3534602", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "フェミニンチアー", - "alias_name_display" : "フェミニンチアー", - "event" : [ { - "event_id" : 1511, - "event_name" : "第11回チーム対抗トークバトルショー" - } ], - "hash" : "b52cc985711baa1789287d1e8aa54152", - "id" : "3438301", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "フェミニンチアー", - "alias_name_display" : "フェミニンチアー", - "event" : [ { - "event_id" : 1511, - "event_name" : "第11回チーム対抗トークバトルショー" - } ], - "hash" : "7b95eee4202b9c3265ba5a41194b1d34", - "id" : "3538302", - "profile" : { - "bust" : "84", - "height" : "160", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - } ], - "idol_id" : 155, - "idol_name" : "衛藤美紗希", - "idol_name_display" : "衛藤美紗希", - "units" : [ { - "id" : "89", - "name" : "ガールズ・パワー" - }, { - "id" : "210", - "name" : "ロワイヤルスタイルND" - } ] -}, { - "aliases" : [ { - "hash" : "f07c10e7c7e68491371b5c0b6fcbf1a6", - "id" : "3003101", - "profile" : { - "bust" : "73", - "height" : "142", - "hip" : "75", - "waist" : "53", - "weight" : "35" - } - }, { - "hash" : "efa9219cd5f005681c2c8f35faf2b281", - "id" : "3103102", - "profile" : { - "bust" : "73", - "height" : "142", - "hip" : "75", - "waist" : "53", - "weight" : "35" - } - }, { - "alias_name" : "クリスマスパーティー", - "alias_name_display" : "クリスマスパーティー", - "hash" : "1970c0edfde84ab46dac71b558e1b491", - "id" : "3207701", - "profile" : { - "bust" : "73", - "height" : "142", - "hip" : "75", - "waist" : "53", - "weight" : "35" - } - }, { - "alias_name" : "クリスマスパーティー", - "alias_name_display" : "クリスマスパーティー", - "hash" : "0fd92436ed9230b2eb474918832a34bf", - "id" : "3307702", - "profile" : { - "bust" : "73", - "height" : "142", - "hip" : "75", - "waist" : "53", - "weight" : "35" - } - }, { - "alias_name" : "絶叫★ヴァンパイア", - "alias_name_display" : "絶叫★ヴァンパイア", - "hash" : "34bf5a625a64f94a63b733219a6a5552", - "id" : "3405501", - "profile" : { - "bust" : "73", - "height" : "142", - "hip" : "75", - "waist" : "53", - "weight" : "35" - } - }, { - "alias_name" : "絶叫★ヴァンパイア", - "alias_name_display" : "絶叫★ヴァンパイア", - "hash" : "e6f94f2ab308857c0c0bb39db6f8b44b", - "id" : "3505502", - "profile" : { - "bust" : "73", - "height" : "142", - "hip" : "75", - "waist" : "53", - "weight" : "35" - } - }, { - "alias_name" : "あやしい少女", - "alias_name_display" : "あやしい少女", - "event" : [ { - "event_id" : "011", - "event_name" : "第11回プロダクションマッチフェスティバル" - } ], - "hash" : "0a7f97b5a04101aaf4c0f079bb970612", - "id" : "3407801", - "profile" : { - "bust" : "73", - "height" : "142", - "hip" : "75", - "waist" : "53", - "weight" : "35" - } - }, { - "alias_name" : "あやしい少女", - "alias_name_display" : "あやしい少女", - "event" : [ { - "event_id" : "011", - "event_name" : "第11回プロダクションマッチフェスティバル" - } ], - "hash" : "68cf9aa71ce3ce45e7b62eceec103417", - "id" : "3507802", - "profile" : { - "bust" : "73", - "height" : "142", - "hip" : "75", - "waist" : "53", - "weight" : "35" - } - }, { - "alias_name" : "ブラックバレンタイン", - "alias_name_display" : "ブラックバレンタイン", - "hash" : "f86bda677cae35d624ba494f3bb55b5c", - "id" : "3411401", - "profile" : { - "bust" : "73", - "height" : "142", - "hip" : "75", - "waist" : "53", - "weight" : "35" - } - }, { - "alias_name" : "ブラックバレンタイン", - "alias_name_display" : "ブラックバレンタイン", - "hash" : "70b15d671e957c51bbcf418fab66baef", - "id" : "3511402", - "profile" : { - "bust" : "73", - "height" : "142", - "hip" : "75", - "waist" : "53", - "weight" : "35" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "5c0203a4bfdf4ee9d147a04274cfa231", - "id" : "3413601", - "profile" : { - "bust" : "73", - "height" : "142", - "hip" : "75", - "waist" : "53", - "weight" : "35" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "069ce3db030a5ee081a1fa53626e4e30", - "id" : "3513602", - "profile" : { - "bust" : "73", - "height" : "142", - "hip" : "75", - "waist" : "53", - "weight" : "35" - } - }, { - "alias_name" : "ラブ☆キノコ", - "alias_name_display" : "ラブ☆キノコ", - "hash" : "7ffa484262f73c8a238d9246cf1b0814", - "id" : "3415001", - "profile" : { - "bust" : "73", - "height" : "142", - "hip" : "75", - "waist" : "53", - "weight" : "35" - } - }, { - "alias_name" : "ラブ☆キノコ", - "alias_name_display" : "ラブ☆キノコ", - "hash" : "981498bd59de8a3b833367e486c09b1a", - "id" : "3515002", - "profile" : { - "bust" : "73", - "height" : "142", - "hip" : "75", - "waist" : "53", - "weight" : "35" - } - }, { - "alias_name" : "ナイトメア・キノコ", - "alias_name_display" : "ナイトメア・キノコ", - "hash" : "e94008cbc6d10fcb7568c0350661979d", - "id" : "3422001", - "profile" : { - "bust" : "73", - "height" : "142", - "hip" : "75", - "waist" : "53", - "weight" : "35" - } - }, { - "alias_name" : "ナイトメア・キノコ", - "alias_name_display" : "ナイトメア・キノコ", - "hash" : "bf8d8709702aeee5c69ae801d11edd37", - "id" : "3522002", - "profile" : { - "bust" : "73", - "height" : "142", - "hip" : "75", - "waist" : "53", - "weight" : "35" - } - }, { - "alias_name" : "爆発★キノコ", - "alias_name_display" : "爆発★キノコ", - "hash" : "3f7874784573946c967d1fb2056dbeae", - "id" : "3428801", - "profile" : { - "bust" : "73", - "height" : "142", - "hip" : "75", - "waist" : "53", - "weight" : "35" - } - }, { - "alias_name" : "爆発★キノコ", - "alias_name_display" : "爆発★キノコ", - "hash" : "122c028d272b414af53fb6331e1e1408", - "id" : "3528802", - "profile" : { - "bust" : "73", - "height" : "142", - "hip" : "75", - "waist" : "53", - "weight" : "35" - } - }, { - "alias_name" : "熱風★マーメイド", - "alias_name_display" : "熱風★マーメイド", - "hash" : "d923a0d3e684bbc79bdb9c76538e3f27", - "id" : "3433501", - "profile" : { - "bust" : "73", - "height" : "142", - "hip" : "75", - "waist" : "53", - "weight" : "35" - } - }, { - "alias_name" : "熱風★マーメイド", - "alias_name_display" : "熱風★マーメイド", - "hash" : "1f8420bcda1dbe084bb88738dfb8ebee", - "id" : "3533502", - "profile" : { - "bust" : "73", - "height" : "142", - "hip" : "75", - "waist" : "53", - "weight" : "35" - } - }, { - "alias_name" : "5thアニバーサリー", - "alias_name_display" : "5thアニバーサリー", - "event" : [ { - "event_id" : 1708, - "event_name" : "アイドルプロデュース the 5th Anniversary" - } ], - "hash" : "6c3cedcaf10692458192b79ba6324334", - "id" : "3436401", - "profile" : { - "bust" : "73", - "height" : "142", - "hip" : "75", - "waist" : "53", - "weight" : "35" - } - }, { - "alias_name" : "5thアニバーサリー", - "alias_name_display" : "5thアニバーサリー", - "event" : [ { - "event_id" : 1708, - "event_name" : "アイドルプロデュース the 5th Anniversary" - } ], - "hash" : "957dfa01a9625ff274c6d7d600d5e163", - "id" : "3536402", - "profile" : { - "bust" : "73", - "height" : "142", - "hip" : "75", - "waist" : "53", - "weight" : "35" - } - }, { - "alias_name" : "5thアニバーサリー・S", - "alias_name_display" : "5thアニバーサリー・S", - "event" : [ { - "event_id" : 1708, - "event_name" : "アイドルプロデュース the 5th Anniversary" - } ], - "hash" : "965ed7a9106c0c6e8ffe951bbabbd530", - "id" : "3436501", - "profile" : { - "bust" : "73", - "height" : "142", - "hip" : "75", - "waist" : "53", - "weight" : "35" - } - }, { - "alias_name" : "5thアニバーサリー・S", - "alias_name_display" : "5thアニバーサリー・S", - "event" : [ { - "event_id" : 1708, - "event_name" : "アイドルプロデュース the 5th Anniversary" - } ], - "hash" : "22aced971fa5898c838516e6f15fe27d", - "id" : "3536502", - "profile" : { - "bust" : "73", - "height" : "142", - "hip" : "75", - "waist" : "53", - "weight" : "35" - } - } ], - "idol_id" : 156, - "idol_name" : "星輝子", - "idol_name_display" : "星輝子", - "units" : [ { - "id" : "17", - "name" : "サイレントスクリーマー" - }, { - "id" : "79", - "name" : "NiGHT ENCOUNTER" - }, { - "id" : "85", - "name" : "アンダーザデスク" - }, { - "id" : "90", - "name" : "カワイイボクと142's" - }, { - "id" : "94", - "name" : "シャイニングゴッドチェリー" - }, { - "id" : "108", - "name" : "individuals" - }, { - "id" : "111", - "name" : "アンチェイン・シグナル" - }, { - "id" : "187", - "name" : "NEX-US" - }, { - "id" : "203", - "name" : "ゼッケンズ" - } ] -}, { - "aliases" : [ { - "hash" : "b87dd23cc34603944cd75e87db7435d8", - "id" : "3003201", - "profile" : { - "bust" : "92", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "47" - } - }, { - "hash" : "fbc70efe03d1bd54fbd28175460510a8", - "id" : "3103202", - "profile" : { - "bust" : "92", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "47" - } - }, { - "alias_name" : "ハイレグマーメイド", - "alias_name_display" : "ハイレグマーメイド", - "hash" : "ecffbe70cac95bf6992918d5e652a8f7", - "id" : "3208301", - "profile" : { - "bust" : "92", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "47" - } - }, { - "alias_name" : "ハイレグマーメイド", - "alias_name_display" : "ハイレグマーメイド", - "hash" : "d5622930911cee8dfb082a6144ab24b9", - "id" : "3308302", - "profile" : { - "bust" : "92", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "47" - } - }, { - "alias_name" : "桜祭り", - "alias_name_display" : "桜祭り", - "event" : [ { - "event_id" : 406, - "event_name" : "アイドルプロデュース 春の桜祭り編" - } ], - "hash" : "e9f5d3a721a4e8b8dbbbab8eb237d7de", - "id" : "3209401", - "profile" : { - "bust" : "92", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "47" - } - }, { - "alias_name" : "桜祭り", - "alias_name_display" : "桜祭り", - "event" : [ { - "event_id" : 406, - "event_name" : "アイドルプロデュース 春の桜祭り編" - } ], - "hash" : "86dab11a4ee3cf83fe7e3e3a5372fc09", - "id" : "3309402", - "profile" : { - "bust" : "92", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "47" - } - }, { - "alias_name" : "桜祭りスマイル", - "alias_name_display" : "桜祭りスマイル", - "event" : [ { - "event_id" : 406, - "event_name" : "アイドルプロデュース 春の桜祭り編" - } ], - "hash" : "377fbdfb1d83aa9567368f6f6859ba59", - "id" : "3209501", - "profile" : { - "bust" : "92", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "47" - } - }, { - "alias_name" : "桜祭りスマイル", - "alias_name_display" : "桜祭りスマイル", - "event" : [ { - "event_id" : 406, - "event_name" : "アイドルプロデュース 春の桜祭り編" - } ], - "hash" : "d721cc2ce2e66a6b1e23fce55363a5cf", - "id" : "3309502", - "profile" : { - "bust" : "92", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "47" - } - }, { - "alias_name" : "ワーキング・ダーティ", - "alias_name_display" : "ワーキング・ダーティ", - "hash" : "d9dd32e691096c60b1c0601c95925066", - "id" : "3216901", - "profile" : { - "bust" : "92", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "47" - } - }, { - "alias_name" : "ワーキング・ダーティ", - "alias_name_display" : "ワーキング・ダーティ", - "hash" : "ef3322348ca2d2ea6fe9667562652fbd", - "id" : "3316902", - "profile" : { - "bust" : "92", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "47" - } - }, { - "alias_name" : "ウェディングI.C", - "alias_name_display" : "ウェディングI.C", - "event" : [ { - "event_id" : 1206, - "event_name" : "目指せウェディングモデル アイドルチャレンジ" - } ], - "hash" : "e752c3b2e14d3d50dce6c8218aa6e1a7", - "id" : "3323402", - "profile" : { - "bust" : "92", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "47" - } - }, { - "alias_name" : "デンジャーフレッシュ", - "alias_name_display" : "デンジャーフレッシュ", - "hash" : "41828c6114091713176d8f841add07d0", - "id" : "3225701", - "profile" : { - "bust" : "92", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "47" - } - }, { - "alias_name" : "デンジャーフレッシュ", - "alias_name_display" : "デンジャーフレッシュ", - "hash" : "411086d51c041d47c644c4acb2bcbb8f", - "id" : "3325702", - "profile" : { - "bust" : "92", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "47" - } - }, { - "alias_name" : "酔いどれお姉さん", - "alias_name_display" : "酔いどれお姉さん", - "hash" : "f0c2e711d5f1c4d49bfcd612c0903e33", - "id" : "3407501", - "profile" : { - "bust" : "92", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "47" - } - }, { - "alias_name" : "酔いどれお姉さん", - "alias_name_display" : "酔いどれお姉さん", - "hash" : "698e43a20181b5d63fde302f85247b21", - "id" : "3507502", - "profile" : { - "bust" : "92", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "47" - } - }, { - "alias_name" : "やりすぎお姉さん", - "alias_name_display" : "やりすぎお姉さん", - "event" : [ { - "event_id" : 212, - "event_name" : "アイドルサバイバル 秋の大運動会" - } ], - "hash" : "0dbb918c0150f688583630318d8e5cf0", - "id" : "3409301", - "profile" : { - "bust" : "92", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "47" - } - }, { - "alias_name" : "やりすぎお姉さん", - "alias_name_display" : "やりすぎお姉さん", - "event" : [ { - "event_id" : 212, - "event_name" : "アイドルサバイバル 秋の大運動会" - } ], - "hash" : "bccea5972ad490da05d26a045a2f988f", - "id" : "3509302", - "profile" : { - "bust" : "92", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "47" - } - }, { - "alias_name" : "デンジャラスアダルティ", - "alias_name_display" : "デンジャラスアダルティ", - "hash" : "60f7cf692d9c64ad96e43a115b9e9a76", - "id" : "3416401", - "profile" : { - "bust" : "92", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "47" - } - }, { - "alias_name" : "デンジャラスアダルティ", - "alias_name_display" : "デンジャラスアダルティ", - "hash" : "7f6090794a05cb3592915bf8b5be2d6a", - "id" : "3516402", - "profile" : { - "bust" : "92", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "47" - } - }, { - "alias_name" : "ボンバー・ロワイヤル", - "alias_name_display" : "ボンバー・ロワイヤル", - "event" : [ { - "event_id" : 810, - "event_name" : "アイドルLIVEロワイヤル バレンタインSP" - } ], - "hash" : "9205795bcfa72efcbaf3fbc3d3ed2507", - "id" : "3421501", - "profile" : { - "bust" : "92", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "47" - } - }, { - "alias_name" : "ボンバー・ロワイヤル", - "alias_name_display" : "ボンバー・ロワイヤル", - "event" : [ { - "event_id" : 810, - "event_name" : "アイドルLIVEロワイヤル バレンタインSP" - } ], - "hash" : "5c6a7d91faf763f00693b4571c4ea210", - "id" : "3521502", - "profile" : { - "bust" : "92", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "47" - } - }, { - "alias_name" : "はりきり花嫁", - "alias_name_display" : "はりきり花嫁", - "event" : [ { - "event_id" : 1206, - "event_name" : "目指せウェディングモデル アイドルチャレンジ" - } ], - "hash" : "1683444bf90b1c5b16e8d8cf56a46191", - "id" : "3424101", - "profile" : { - "bust" : "92", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "47" - } - }, { - "alias_name" : "はりきり花嫁", - "alias_name_display" : "はりきり花嫁", - "event" : [ { - "event_id" : 1206, - "event_name" : "目指せウェディングモデル アイドルチャレンジ" - } ], - "hash" : "570d11792a06edcd84948256ea98650c", - "id" : "3524102", - "profile" : { - "bust" : "92", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "47" - } - }, { - "alias_name" : "はりきり花嫁・S", - "alias_name_display" : "はりきり花嫁・S", - "event" : [ { - "event_id" : 1206, - "event_name" : "目指せウェディングモデル アイドルチャレンジ" - } ], - "hash" : "549cdd87b8efe48b3bc5de9aff27424c", - "id" : "3424201", - "profile" : { - "bust" : "92", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "47" - } - }, { - "alias_name" : "はりきり花嫁・S", - "alias_name_display" : "はりきり花嫁・S", - "event" : [ { - "event_id" : 1206, - "event_name" : "目指せウェディングモデル アイドルチャレンジ" - } ], - "hash" : "8d93c8ee952ca04150a7dd645b4be51f", - "id" : "3524202", - "profile" : { - "bust" : "92", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "47" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "40e5ce644fe9b9d8d4db3797c8df1636", - "id" : "3427701", - "profile" : { - "bust" : "92", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "47" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "6967d76548f6c4bcefbdea44d9f0058a", - "id" : "3527702", - "profile" : { - "bust" : "92", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "47" - } - }, { - "alias_name" : "極楽お姉さん", - "alias_name_display" : "極楽お姉さん", - "hash" : "bf738f2f9689ce80fd3c885b1baf80f7", - "id" : "3432601", - "profile" : { - "bust" : "92", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "47" - } - }, { - "alias_name" : "極楽お姉さん", - "alias_name_display" : "極楽お姉さん", - "hash" : "c0b85368c419f35c0f544181e7b07d0c", - "id" : "3532602", - "profile" : { - "bust" : "92", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "47" - } - }, { - "alias_name" : "深秋いろは", - "alias_name_display" : "深秋いろは", - "hash" : "d6f4c8132723e974386c6f16355d77b3", - "id" : "3435901", - "profile" : { - "bust" : "92", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "47" - } - }, { - "alias_name" : "深秋いろは", - "alias_name_display" : "深秋いろは", - "hash" : "5d00b2bc12676b4ae3679763dab02d1c", - "id" : "3535902", - "profile" : { - "bust" : "92", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "47" - } - }, { - "alias_name" : "ギルティグローリー", - "alias_name_display" : "ギルティグローリー", - "hash" : "6d97cb9bb465d14cde626b232bb59928", - "id" : "3439701", - "profile" : { - "bust" : "92", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "47" - } - }, { - "alias_name" : "ギルティグローリー", - "alias_name_display" : "ギルティグローリー", - "hash" : "c28e1707af95249b5b67568cfb748a50", - "id" : "3539702", - "profile" : { - "bust" : "92", - "height" : "152", - "hip" : "84", - "waist" : "58", - "weight" : "47" - } - } ], - "idol_id" : 157, - "idol_name" : "片桐早苗", - "idol_name_display" : "片桐早苗", - "units" : [ { - "id" : "8", - "name" : "越後小町" - }, { - "id" : "19", - "name" : "さつきの頃" - }, { - "id" : "88", - "name" : "桜花小町" - }, { - "id" : "124", - "name" : "女神たちの夏宴" - }, { - "id" : "147", - "name" : "セクシーギルティ" - }, { - "id" : "184", - "name" : "宵乙女" - }, { - "id" : "202", - "name" : "サンフラワー" - } ] -}, { - "aliases" : [ { - "hash" : "c55d799ec6a7189b86c2c61309ff705e", - "id" : "3003301", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "80", - "waist" : "58", - "weight" : "44" - } - }, { - "hash" : "af03f83edd3f6081e7a94f7dee76c69c", - "id" : "3103302", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "80", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "スパニッシュスタイル", - "alias_name_display" : "スパニッシュスタイル", - "event" : [ { - "event_id" : 504, - "event_name" : "アイドルLIVEツアーinスペイン" - } ], - "hash" : "366697976ec9eadf5d9af8aa05627c06", - "id" : "3210001", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "80", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "スパニッシュスタイル", - "alias_name_display" : "スパニッシュスタイル", - "event" : [ { - "event_id" : 504, - "event_name" : "アイドルLIVEツアーinスペイン" - } ], - "hash" : "0704a849a66af4661b4b5fca9bdd29d8", - "id" : "3310002", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "80", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "おちゃめなサイキッカー", - "alias_name_display" : "おちゃめなサイキッカー", - "hash" : "8e63cd4a640f8f1d81aa58b0f5b965e1", - "id" : "3211801", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "80", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "おちゃめなサイキッカー", - "alias_name_display" : "おちゃめなサイキッカー", - "hash" : "206627c86b320778aa94bb336021a57f", - "id" : "3311802", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "80", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "ビター&スウィート", - "alias_name_display" : "ビター&スウィート", - "hash" : "ffb2c98591b0c9c025db8d210b9eceb7", - "id" : "3227501", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "80", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "ビター&スウィート", - "alias_name_display" : "ビター&スウィート", - "hash" : "1bad11e08f6d67660858e2a625af9706", - "id" : "3327502", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "80", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "湯けむりサイキッカー", - "alias_name_display" : "湯けむりサイキッカー", - "hash" : "0662af7af3c7bf97ba34266f06737dd4", - "id" : "3409501", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "80", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "湯けむりサイキッカー", - "alias_name_display" : "湯けむりサイキッカー", - "hash" : "756110c37e69d992aa3a8d4ba539f3e8", - "id" : "3509502", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "80", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "3d3269835487382b0df4e3c8579bb76a", - "id" : "3413701", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "80", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "753c417a7ec341db7cea1b1310039afe", - "id" : "3513702", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "80", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "サイキックマジシャン", - "alias_name_display" : "サイキックマジシャン", - "hash" : "6b9c0707971d95fd191fea1138c10722", - "id" : "3414001", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "80", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "サイキックマジシャン", - "alias_name_display" : "サイキックマジシャン", - "hash" : "cab748d4dfb5cbe80afb594b3c3f3a2c", - "id" : "3514002", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "80", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "大地のぱわー☆", - "alias_name_display" : "大地のぱわー☆", - "event" : [ { - "event_id" : 414, - "event_name" : "どうぶつアドベンチャー オーストラリア編" - } ], - "hash" : "99264bf5143c8ef20d5799bcee877921", - "id" : "3417101", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "80", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "大地のぱわー☆", - "alias_name_display" : "大地のぱわー☆", - "event" : [ { - "event_id" : 414, - "event_name" : "どうぶつアドベンチャー オーストラリア編" - } ], - "hash" : "9549306aa4c5394f93ee2eb93809485d", - "id" : "3517102", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "80", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "さいきっく☆ボイス", - "alias_name_display" : "さいきっく☆ボイス", - "hash" : "4d914ac85a06f7643c5b327242a6c30b", - "id" : "3422201", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "80", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "さいきっく☆ボイス", - "alias_name_display" : "さいきっく☆ボイス", - "hash" : "210300780515553e62e96bea844e9a8d", - "id" : "3522202", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "80", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "ミラクルパティシエール☆", - "alias_name_display" : "ミラクルパティシエール☆", - "event" : [ { - "event_id" : 1801, - "event_name" : "アイドルバラエティ 究極のショートケーキを作ろう!" - } ], - "hash" : "e60c6c9469235806c84c200bd1336dc6", - "id" : "3426301", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "80", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "ミラクルパティシエール☆", - "alias_name_display" : "ミラクルパティシエール☆", - "event" : [ { - "event_id" : 1801, - "event_name" : "アイドルバラエティ 究極のショートケーキを作ろう!" - } ], - "hash" : "cd82605167df5280f7a1496dfb819801", - "id" : "3526302", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "80", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "海のぱわー☆", - "alias_name_display" : "海のぱわー☆", - "event" : [ { - "event_id" : 1508, - "event_name" : "チーム対抗トークバトルショー in SUMMER" - } ], - "hash" : "fcadcbebe66c5cbafbfcda3fde7aed3c", - "id" : "3434301", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "80", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "海のぱわー☆", - "alias_name_display" : "海のぱわー☆", - "event" : [ { - "event_id" : 1508, - "event_name" : "チーム対抗トークバトルショー in SUMMER" - } ], - "hash" : "c45a6475300f696474afa6e473eaef75", - "id" : "3534302", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "80", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "夕焼けテレパシー", - "alias_name_display" : "夕焼けテレパシー", - "hash" : "b0c6e9c33f363fe1bfea05c3d007983c", - "id" : "3438201", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "80", - "waist" : "58", - "weight" : "44" - } - }, { - "alias_name" : "夕焼けテレパシー", - "alias_name_display" : "夕焼けテレパシー", - "hash" : "64bfd146a17bcae9c53f47b939d3199a", - "id" : "3538202", - "profile" : { - "bust" : "81", - "height" : "157", - "hip" : "80", - "waist" : "58", - "weight" : "44" - } - } ], - "idol_id" : 158, - "idol_name" : "堀裕子", - "idol_name_display" : "堀裕子", - "units" : [ { - "id" : "15", - "name" : "サイキックヒーツ" - }, { - "id" : "28", - "name" : "スパニッシュスタイル" - }, { - "id" : "56", - "name" : "ミステリアスガールズ" - }, { - "id" : "80", - "name" : "P・U" - }, { - "id" : "147", - "name" : "セクシーギルティ" - }, { - "id" : "190", - "name" : "サマプリ" - }, { - "id" : "203", - "name" : "ゼッケンズ" - } ] -}, { - "aliases" : [ { - "hash" : "90e1a482a68770c0117ff910db7209c2", - "id" : "3003401", - "profile" : { - "bust" : "86", - "height" : "172", - "hip" : "83", - "waist" : "59", - "weight" : "49" - } - }, { - "hash" : "2deaaf0de326f04174e4c0187d20d1e2", - "id" : "3103402", - "profile" : { - "bust" : "86", - "height" : "172", - "hip" : "83", - "waist" : "59", - "weight" : "49" - } - }, { - "alias_name" : "浴衣祭り", - "alias_name_display" : "浴衣祭り", - "hash" : "9d3b68f92212bd2b95d73a5ba2358b4e", - "id" : "3211201", - "profile" : { - "bust" : "86", - "height" : "172", - "hip" : "83", - "waist" : "59", - "weight" : "49" - } - }, { - "alias_name" : "浴衣祭り", - "alias_name_display" : "浴衣祭り", - "hash" : "bb91c7a10a12b5a3ed01557f161ba4a1", - "id" : "3311202", - "profile" : { - "bust" : "86", - "height" : "172", - "hip" : "83", - "waist" : "59", - "weight" : "49" - } - }, { - "alias_name" : "スペーススタイル", - "alias_name_display" : "スペーススタイル", - "event" : [ { - "event_id" : 508, - "event_name" : "LIVEツアーカーニバルinスペースワールド" - } ], - "hash" : "c996e8c27de072d99879b307e536a874", - "id" : "3213501", - "profile" : { - "bust" : "86", - "height" : "172", - "hip" : "83", - "waist" : "59", - "weight" : "49" - } - }, { - "alias_name" : "スペーススタイル", - "alias_name_display" : "スペーススタイル", - "event" : [ { - "event_id" : 508, - "event_name" : "LIVEツアーカーニバルinスペースワールド" - } ], - "hash" : "d84b4a1cfb08637667606e72446d417b", - "id" : "3313502", - "profile" : { - "bust" : "86", - "height" : "172", - "hip" : "83", - "waist" : "59", - "weight" : "49" - } - }, { - "alias_name" : "パラダイスリゾート", - "alias_name_display" : "パラダイスリゾート", - "hash" : "115667c89bcb3a1e593ccddf15bb1709", - "id" : "3218501", - "profile" : { - "bust" : "86", - "height" : "172", - "hip" : "83", - "waist" : "59", - "weight" : "49" - } - }, { - "alias_name" : "パラダイスリゾート", - "alias_name_display" : "パラダイスリゾート", - "hash" : "d3a6e3bf2a9fa94c1acfb5b91dccce53", - "id" : "3318502", - "profile" : { - "bust" : "86", - "height" : "172", - "hip" : "83", - "waist" : "59", - "weight" : "49" - } - }, { - "alias_name" : "セルフセレクト", - "alias_name_display" : "セルフセレクト", - "hash" : "6d5fe6750042dc9c21589f254b91e1e5", - "id" : "3220301", - "profile" : { - "bust" : "86", - "height" : "172", - "hip" : "83", - "waist" : "59", - "weight" : "49" - } - }, { - "alias_name" : "セルフセレクト", - "alias_name_display" : "セルフセレクト", - "hash" : "0ed637b2de3041121021c52989c82533", - "id" : "3320302", - "profile" : { - "bust" : "86", - "height" : "172", - "hip" : "83", - "waist" : "59", - "weight" : "49" - } - }, { - "alias_name" : "人狼将軍", - "alias_name_display" : "人狼将軍", - "event" : [ { - "event_id" : 522, - "event_name" : "魔界公演 幽鬱女王とハロウィンの祝祭" - } ], - "hash" : "2dd54667369628560e906717044d5d92", - "id" : "3325902", - "profile" : { - "bust" : "86", - "height" : "172", - "hip" : "83", - "waist" : "59", - "weight" : "49" - } - }, { - "alias_name" : "人波のスイマー", - "alias_name_display" : "人波のスイマー", - "hash" : "1f39f1a654d566d8bf94dda9cc0d54f6", - "id" : "3412101", - "profile" : { - "bust" : "86", - "height" : "172", - "hip" : "83", - "waist" : "59", - "weight" : "49" - } - }, { - "alias_name" : "人波のスイマー", - "alias_name_display" : "人波のスイマー", - "hash" : "3615fdeb23d847c39fb844c9bf446ff9", - "id" : "3512102", - "profile" : { - "bust" : "86", - "height" : "172", - "hip" : "83", - "waist" : "59", - "weight" : "49" - } - }, { - "alias_name" : "ドルフィンチアー", - "alias_name_display" : "ドルフィンチアー", - "event" : [ { - "event_id" : 1501, - "event_name" : "チーム対抗トークバトルショー" - } ], - "hash" : "427b561348d55eed4db451a497176f95", - "id" : "3423101", - "profile" : { - "bust" : "86", - "height" : "172", - "hip" : "83", - "waist" : "59", - "weight" : "49" - } - }, { - "alias_name" : "ドルフィンチアー", - "alias_name_display" : "ドルフィンチアー", - "event" : [ { - "event_id" : 1501, - "event_name" : "チーム対抗トークバトルショー" - } ], - "hash" : "2ab8abfbcbada4e1877149d06f200fad", - "id" : "3523102", - "profile" : { - "bust" : "86", - "height" : "172", - "hip" : "83", - "waist" : "59", - "weight" : "49" - } - }, { - "alias_name" : "ホットクルージング", - "alias_name_display" : "ホットクルージング", - "hash" : "c4956742e83de544e7bb1f10bf4362e4", - "id" : "3433701", - "profile" : { - "bust" : "86", - "height" : "172", - "hip" : "83", - "waist" : "59", - "weight" : "49" - } - }, { - "alias_name" : "ホットクルージング", - "alias_name_display" : "ホットクルージング", - "hash" : "d97b128c8dbc9235834e5e045e75339c", - "id" : "3533702", - "profile" : { - "bust" : "86", - "height" : "172", - "hip" : "83", - "waist" : "59", - "weight" : "49" - } - }, { - "alias_name" : "グリルドスピリット", - "alias_name_display" : "グリルドスピリット", - "event" : [ { - "event_id" : 729, - "event_name" : "ドリームLIVEフェスティバル ゴールデンウィークSP" - } ], - "hash" : "6f5389395cfeec54633e3bd18ab02bd6", - "id" : "3439801", - "profile" : { - "bust" : "86", - "height" : "172", - "hip" : "83", - "waist" : "59", - "weight" : "49" - } - }, { - "alias_name" : "グリルドスピリット", - "alias_name_display" : "グリルドスピリット", - "event" : [ { - "event_id" : 729, - "event_name" : "ドリームLIVEフェスティバル ゴールデンウィークSP" - } ], - "hash" : "dd34bfe74931aeab10c7aaafe2832d86", - "id" : "3539802", - "profile" : { - "bust" : "86", - "height" : "172", - "hip" : "83", - "waist" : "59", - "weight" : "49" - } - } ], - "idol_id" : 159, - "idol_name" : "西島櫂", - "idol_name_display" : "西島櫂", - "units" : [ { - "id" : "95", - "name" : "スペーススタイル" - }, { - "id" : "122", - "name" : "ホットアートジャンピン" - } ] -}, { - "aliases" : [ { - "hash" : "d95254e127a889746034022f82cb5798", - "id" : "3003501", - "profile" : { - "bust" : "71", - "height" : "143", - "hip" : "73", - "waist" : "58", - "weight" : "38" - } - }, { - "hash" : "5fd2939e3e1b4403ed6f3886c48a1d32", - "id" : "3103502", - "profile" : { - "bust" : "71", - "height" : "143", - "hip" : "73", - "waist" : "58", - "weight" : "38" - } - }, { - "alias_name" : "ニューイヤースタイル", - "alias_name_display" : "ニューイヤースタイル", - "event" : [ { - "event_id" : 509, - "event_name" : "新春LIVEツアーカーニバル" - } ], - "hash" : "27886dda8120d9992e0bde75d3132487", - "id" : "3214901", - "profile" : { - "bust" : "71", - "height" : "143", - "hip" : "73", - "waist" : "58", - "weight" : "38" - } - }, { - "alias_name" : "ニューイヤースタイル", - "alias_name_display" : "ニューイヤースタイル", - "event" : [ { - "event_id" : 509, - "event_name" : "新春LIVEツアーカーニバル" - } ], - "hash" : "d9f8828d3ee7daf7c3287b4414d76aa0", - "id" : "3314902", - "profile" : { - "bust" : "71", - "height" : "143", - "hip" : "73", - "waist" : "58", - "weight" : "38" - } - }, { - "alias_name" : "サファリアドベンチャー", - "alias_name_display" : "サファリアドベンチャー", - "event" : [ { - "event_id" : 414, - "event_name" : "どうぶつアドベンチャー オーストラリア編" - } ], - "hash" : "81884ba2df20b5ecab3e6db70413b9c3", - "id" : "3219201", - "profile" : { - "bust" : "71", - "height" : "143", - "hip" : "73", - "waist" : "58", - "weight" : "38" - } - }, { - "alias_name" : "サファリアドベンチャー", - "alias_name_display" : "サファリアドベンチャー", - "event" : [ { - "event_id" : 414, - "event_name" : "どうぶつアドベンチャー オーストラリア編" - } ], - "hash" : "01a473d058eccb980f44c6cf2b07b540", - "id" : "3319202", - "profile" : { - "bust" : "71", - "height" : "143", - "hip" : "73", - "waist" : "58", - "weight" : "38" - } - }, { - "alias_name" : "サファリアドベンチャー・S", - "alias_name_display" : "サファリアドベンチャー・S", - "event" : [ { - "event_id" : 414, - "event_name" : "どうぶつアドベンチャー オーストラリア編" - } ], - "hash" : "280a9941a00ec7d1954fb70d5c806151", - "id" : "3219301", - "profile" : { - "bust" : "71", - "height" : "143", - "hip" : "73", - "waist" : "58", - "weight" : "38" - } - }, { - "alias_name" : "サファリアドベンチャー・S", - "alias_name_display" : "サファリアドベンチャー・S", - "event" : [ { - "event_id" : 414, - "event_name" : "どうぶつアドベンチャー オーストラリア編" - } ], - "hash" : "1b7a0a4e902ae4dcdcc7f2045f241656", - "id" : "3319302", - "profile" : { - "bust" : "71", - "height" : "143", - "hip" : "73", - "waist" : "58", - "weight" : "38" - } - }, { - "alias_name" : "乙女武将", - "alias_name_display" : "乙女武将", - "event" : [ { - "event_id" : 517, - "event_name" : "戦国公演 風来剣客伝" - } ], - "hash" : "9378c5e537cb2acc360dd0bdb0dfdd70", - "id" : "3221701", - "profile" : { - "bust" : "71", - "height" : "143", - "hip" : "73", - "waist" : "58", - "weight" : "38" - } - }, { - "alias_name" : "乙女武将", - "alias_name_display" : "乙女武将", - "event" : [ { - "event_id" : 517, - "event_name" : "戦国公演 風来剣客伝" - } ], - "hash" : "4c786bf74a7f7bf25daa7b91fe7c7e0a", - "id" : "3321702", - "profile" : { - "bust" : "71", - "height" : "143", - "hip" : "73", - "waist" : "58", - "weight" : "38" - } - }, { - "alias_name" : "サンタI.C", - "alias_name_display" : "サンタI.C", - "event" : [ { - "event_id" : 1208, - "event_name" : "目指せサンタクロース アイドルチャレンジ" - } ], - "hash" : "b7b438513131f3e40cd1bad252c38d1a", - "id" : "3326902", - "profile" : { - "bust" : "71", - "height" : "143", - "hip" : "73", - "waist" : "58", - "weight" : "38" - } - }, { - "alias_name" : "マーチングバンド", - "alias_name_display" : "マーチングバンド", - "hash" : "3e9ae5337b2b5222c5270c9561fbf0b8", - "id" : "3228301", - "profile" : { - "bust" : "71", - "height" : "143", - "hip" : "73", - "waist" : "58", - "weight" : "38" - } - }, { - "alias_name" : "マーチングバンド", - "alias_name_display" : "マーチングバンド", - "hash" : "1868d1975710558fe8bdea18220ce69f", - "id" : "3328302", - "profile" : { - "bust" : "71", - "height" : "143", - "hip" : "73", - "waist" : "58", - "weight" : "38" - } - }, { - "alias_name" : "セクシーパンサー", - "alias_name_display" : "セクシーパンサー", - "hash" : "8ad64acb66ae95edb5e955375d51b90b", - "id" : "3411801", - "profile" : { - "bust" : "71", - "height" : "143", - "hip" : "73", - "waist" : "58", - "weight" : "38" - } - }, { - "alias_name" : "セクシーパンサー", - "alias_name_display" : "セクシーパンサー", - "hash" : "5c68f5a84cbeaee1a887b7a1691577b4", - "id" : "3511802", - "profile" : { - "bust" : "71", - "height" : "143", - "hip" : "73", - "waist" : "58", - "weight" : "38" - } - }, { - "alias_name" : "スウィートハニーハート", - "alias_name_display" : "スウィートハニーハート", - "event" : [ { - "event_id" : "017", - "event_name" : "第17回プロダクションマッチフェスティバル" - } ], - "hash" : "5ab593bd5d05f2e496f088706687f7da", - "id" : "3414901", - "profile" : { - "bust" : "71", - "height" : "143", - "hip" : "73", - "waist" : "58", - "weight" : "38" - } - }, { - "alias_name" : "スウィートハニーハート", - "alias_name_display" : "スウィートハニーハート", - "event" : [ { - "event_id" : "017", - "event_name" : "第17回プロダクションマッチフェスティバル" - } ], - "hash" : "3a71223fc974c44985da17ab245e9401", - "id" : "3514902", - "profile" : { - "bust" : "71", - "height" : "143", - "hip" : "73", - "waist" : "58", - "weight" : "38" - } - }, { - "alias_name" : "ファントムレディ", - "alias_name_display" : "ファントムレディ", - "event" : [ { - "event_id" : 521, - "event_name" : "怪盗公演 美しき追跡者" - } ], - "hash" : "23c506cfa1119f316cd9b7e07e30b490", - "id" : "3425801", - "profile" : { - "bust" : "71", - "height" : "143", - "hip" : "73", - "waist" : "58", - "weight" : "38" - } - }, { - "alias_name" : "ファントムレディ", - "alias_name_display" : "ファントムレディ", - "event" : [ { - "event_id" : 521, - "event_name" : "怪盗公演 美しき追跡者" - } ], - "hash" : "c94eb2410c0f5c98643fa4cc5dc00a2d", - "id" : "3525802", - "profile" : { - "bust" : "71", - "height" : "143", - "hip" : "73", - "waist" : "58", - "weight" : "38" - } - }, { - "alias_name" : "どきどきクリスマス", - "alias_name_display" : "どきどきクリスマス", - "event" : [ { - "event_id" : 1208, - "event_name" : "目指せサンタクロース アイドルチャレンジ" - } ], - "hash" : "258f6b36adac5b6da65d8cf1ebf8a5a8", - "id" : "3428601", - "profile" : { - "bust" : "71", - "height" : "143", - "hip" : "73", - "waist" : "58", - "weight" : "38" - } - }, { - "alias_name" : "どきどきクリスマス", - "alias_name_display" : "どきどきクリスマス", - "event" : [ { - "event_id" : 1208, - "event_name" : "目指せサンタクロース アイドルチャレンジ" - } ], - "hash" : "3902966b6611ebad08386b3e8e1665c9", - "id" : "3528602", - "profile" : { - "bust" : "71", - "height" : "143", - "hip" : "73", - "waist" : "58", - "weight" : "38" - } - }, { - "alias_name" : "どきどきクリスマス・S", - "alias_name_display" : "どきどきクリスマス・S", - "event" : [ { - "event_id" : 1208, - "event_name" : "目指せサンタクロース アイドルチャレンジ" - } ], - "hash" : "9a8d92a67b66329fb01f13f151d0f9fb", - "id" : "3428701", - "profile" : { - "bust" : "71", - "height" : "143", - "hip" : "73", - "waist" : "58", - "weight" : "38" - } - }, { - "alias_name" : "どきどきクリスマス・S", - "alias_name_display" : "どきどきクリスマス・S", - "event" : [ { - "event_id" : 1208, - "event_name" : "目指せサンタクロース アイドルチャレンジ" - } ], - "hash" : "70e4a170e6d8ac1de9f6f103c9c3dfd1", - "id" : "3528702", - "profile" : { - "bust" : "71", - "height" : "143", - "hip" : "73", - "waist" : "58", - "weight" : "38" - } - }, { - "alias_name" : "オトメのポリシー", - "alias_name_display" : "オトメのポリシー", - "event" : [ { - "event_id" : 1409, - "event_name" : "第9回ぷちデレラコレクション" - } ], - "hash" : "64698d63ae6f12f30ac46ff5e61550f7", - "id" : "3435701", - "profile" : { - "bust" : "71", - "height" : "143", - "hip" : "73", - "waist" : "58", - "weight" : "38" - } - }, { - "alias_name" : "オトメのポリシー", - "alias_name_display" : "オトメのポリシー", - "event" : [ { - "event_id" : 1409, - "event_name" : "第9回ぷちデレラコレクション" - } ], - "hash" : "8311d865f81f1063978d094431e038d4", - "id" : "3535702", - "profile" : { - "bust" : "71", - "height" : "143", - "hip" : "73", - "waist" : "58", - "weight" : "38" - } - }, { - "alias_name" : "プラウディスポット", - "alias_name_display" : "プラウディスポット", - "hash" : "0bfee936f43c4008bb7446d70950d81a", - "id" : "3439501", - "profile" : { - "bust" : "71", - "height" : "143", - "hip" : "73", - "waist" : "58", - "weight" : "38" - } - }, { - "alias_name" : "プラウディスポット", - "alias_name_display" : "プラウディスポット", - "hash" : "076ff2416464383dd10c0895f1118c57", - "id" : "3539502", - "profile" : { - "bust" : "71", - "height" : "143", - "hip" : "73", - "waist" : "58", - "weight" : "38" - } - } ], - "idol_id" : 160, - "idol_name" : "的場梨沙", - "idol_name_display" : "的場梨沙", - "units" : [ { - "id" : "45", - "name" : "ビートシューター" - }, { - "id" : "98", - "name" : "ニューイヤースタイル" - }, { - "id" : "104", - "name" : "ももぺあべりー" - }, { - "id" : "177", - "name" : "桜舞隊" - }, { - "id" : "214", - "name" : "L.M.B.G" - } ] -}, { - "aliases" : [ { - "hash" : "d1aa3bc716ff2f22ebf41c1fe9b83266", - "id" : "3003601", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "55", - "weight" : "46" - } - }, { - "hash" : "c0f2d0167e0d5623f5bbc035eb412c26", - "id" : "3103602", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "55", - "weight" : "46" - } - }, { - "alias_name" : "ロワイヤルスタイルNP", - "alias_name_display" : "ロワイヤルスタイルNP", - "event" : [ { - "event_id" : 804, - "event_name" : "第4回アイドルLIVEロワイヤル" - } ], - "hash" : "15bad0e239396c14ba25c714bfdc9f9e", - "id" : "3216201", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "55", - "weight" : "46" - } - }, { - "alias_name" : "ロワイヤルスタイルNP", - "alias_name_display" : "ロワイヤルスタイルNP", - "event" : [ { - "event_id" : 804, - "event_name" : "第4回アイドルLIVEロワイヤル" - } ], - "hash" : "a878dde61487baf7b31c28093da0df1b", - "id" : "3316202", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "55", - "weight" : "46" - } - }, { - "alias_name" : "スクールガール", - "alias_name_display" : "スクールガール", - "hash" : "e99733454b58967e0160ccf1959de480", - "id" : "3219701", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "55", - "weight" : "46" - } - }, { - "alias_name" : "スクールガール", - "alias_name_display" : "スクールガール", - "hash" : "3675545fba8738750a3f60c573dde3a6", - "id" : "3319702", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "55", - "weight" : "46" - } - }, { - "alias_name" : "レディタイラント", - "alias_name_display" : "レディタイラント", - "hash" : "5e137bfe353c3f0d1425e32982c8f226", - "id" : "3221101", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "55", - "weight" : "46" - } - }, { - "alias_name" : "レディタイラント", - "alias_name_display" : "レディタイラント", - "hash" : "37865a0f7f25d1f9f20b1b0932fd0a15", - "id" : "3321102", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "55", - "weight" : "46" - } - }, { - "alias_name" : "サマービーチ", - "alias_name_display" : "サマービーチ", - "hash" : "8b9fcba48ed38f79114879a280024fd9", - "id" : "3230001", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "55", - "weight" : "46" - } - }, { - "alias_name" : "サマービーチ", - "alias_name_display" : "サマービーチ", - "hash" : "4ea2df5004456c968bdc36873337f71a", - "id" : "3330002", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "55", - "weight" : "46" - } - }, { - "alias_name" : "マジェスティックオーダー", - "alias_name_display" : "マジェスティックオーダー", - "hash" : "62e0388dff948bed0191ad5a3bbdc629", - "id" : "3232701", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "55", - "weight" : "46" - } - }, { - "alias_name" : "マジェスティックオーダー", - "alias_name_display" : "マジェスティックオーダー", - "hash" : "3ae8b4914157e90a7e0070f39d0afc10", - "id" : "3332702", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "55", - "weight" : "46" - } - }, { - "alias_name" : "メディアの女王", - "alias_name_display" : "メディアの女王", - "event" : [ { - "event_id" : 1102, - "event_name" : "第2回プロダクション対抗トークバトルショー" - } ], - "hash" : "79028ffc2d4dc2ab861d09cdaba8ba68", - "id" : "3414101", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "55", - "weight" : "46" - } - }, { - "alias_name" : "メディアの女王", - "alias_name_display" : "メディアの女王", - "event" : [ { - "event_id" : 1102, - "event_name" : "第2回プロダクション対抗トークバトルショー" - } ], - "hash" : "838a4c6a770f35ab005c376a6e480316", - "id" : "3514102", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "55", - "weight" : "46" - } - }, { - "alias_name" : "ベルベットクイーン", - "alias_name_display" : "ベルベットクイーン", - "hash" : "8b0c9ce3e5eb4ae076626729c5476784", - "id" : "3423501", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "55", - "weight" : "46" - } - }, { - "alias_name" : "ベルベットクイーン", - "alias_name_display" : "ベルベットクイーン", - "hash" : "d2c90e9e8f108c4d9d7e373ff21da35b", - "id" : "3523502", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "55", - "weight" : "46" - } - }, { - "alias_name" : "ドミネイトクリスマス", - "alias_name_display" : "ドミネイトクリスマス", - "hash" : "19df0dce995f785d6347b7905879b11d", - "id" : "3428301", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "55", - "weight" : "46" - } - }, { - "alias_name" : "ドミネイトクリスマス", - "alias_name_display" : "ドミネイトクリスマス", - "hash" : "7ade063367ad652bc5d05aa008a75237", - "id" : "3528302", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "55", - "weight" : "46" - } - } ], - "idol_id" : 161, - "idol_name" : "財前時子", - "idol_name_display" : "財前時子", - "units" : [ { - "id" : "209", - "name" : "ロワイヤルスタイルNP" - } ] -}, { - "aliases" : [ { - "hash" : "ddf7d3e8d751523496c1bb75a1aa2124", - "id" : "3003801", - "profile" : { - "bust" : "73", - "height" : "151", - "hip" : "73", - "waist" : "53", - "weight" : "40" - } - }, { - "hash" : "3217691d80f41d408aa0def73b17b549", - "id" : "3103802", - "profile" : { - "bust" : "73", - "height" : "151", - "hip" : "73", - "waist" : "53", - "weight" : "40" - } - }, { - "alias_name" : "T.B.チアーズ", - "alias_name_display" : "T.B.チアーズ", - "event" : [ { - "event_id" : 1104, - "event_name" : "プロダクション対抗トークバトルショーinSUMMER" - } ], - "hash" : "351c45b33901b324a5a827d191de82f4", - "id" : "3218601", - "profile" : { - "bust" : "73", - "height" : "151", - "hip" : "73", - "waist" : "53", - "weight" : "40" - } - }, { - "alias_name" : "T.B.チアーズ", - "alias_name_display" : "T.B.チアーズ", - "event" : [ { - "event_id" : 1104, - "event_name" : "プロダクション対抗トークバトルショーinSUMMER" - } ], - "hash" : "d7d7bfee2160054f5bd522c3f2d212af", - "id" : "3318602", - "profile" : { - "bust" : "73", - "height" : "151", - "hip" : "73", - "waist" : "53", - "weight" : "40" - } - }, { - "alias_name" : "ラブリーメイド", - "alias_name_display" : "ラブリーメイド", - "hash" : "481689442ba6392b4f7f7c1abf423cb1", - "id" : "3224901", - "profile" : { - "bust" : "73", - "height" : "151", - "hip" : "73", - "waist" : "53", - "weight" : "40" - } - }, { - "alias_name" : "ラブリーメイド", - "alias_name_display" : "ラブリーメイド", - "hash" : "640c775e1aa6d19d4498c15ab3d52875", - "id" : "3324902", - "profile" : { - "bust" : "73", - "height" : "151", - "hip" : "73", - "waist" : "53", - "weight" : "40" - } - }, { - "alias_name" : "湯浴みの踊子", - "alias_name_display" : "湯浴みの踊子", - "hash" : "fbb5477c8bd9c2c96d1ab988bc13176a", - "id" : "3418501", - "profile" : { - "bust" : "73", - "height" : "151", - "hip" : "73", - "waist" : "53", - "weight" : "40" - } - }, { - "alias_name" : "湯浴みの踊子", - "alias_name_display" : "湯浴みの踊子", - "hash" : "4774371e15f23136d1bd20eb453c9c17", - "id" : "3518502", - "profile" : { - "bust" : "73", - "height" : "151", - "hip" : "73", - "waist" : "53", - "weight" : "40" - } - }, { - "alias_name" : "詩詠みの赤ずきん", - "alias_name_display" : "詩詠みの赤ずきん", - "event" : [ { - "event_id" : 518, - "event_name" : "御伽公演 ふれあい狼と小さな赤ずきんちゃん" - } ], - "hash" : "959f6f75f20bd4127d4bf753ddbe6190", - "id" : "3422801", - "profile" : { - "bust" : "73", - "height" : "151", - "hip" : "73", - "waist" : "53", - "weight" : "40" - } - }, { - "alias_name" : "詩詠みの赤ずきん", - "alias_name_display" : "詩詠みの赤ずきん", - "event" : [ { - "event_id" : 518, - "event_name" : "御伽公演 ふれあい狼と小さな赤ずきんちゃん" - } ], - "hash" : "680348a16a23bd1ab4b7a2bca513b4fb", - "id" : "3522802", - "profile" : { - "bust" : "73", - "height" : "151", - "hip" : "73", - "waist" : "53", - "weight" : "40" - } - }, { - "alias_name" : "春光の少女", - "alias_name_display" : "春光の少女", - "hash" : "3f57a6b17e176fb96686d081f79e3231", - "id" : "3429001", - "profile" : { - "bust" : "73", - "height" : "151", - "hip" : "73", - "waist" : "53", - "weight" : "40" - } - }, { - "alias_name" : "春光の少女", - "alias_name_display" : "春光の少女", - "hash" : "38f60f4a3ee2a8ada8fed10044b64ea4", - "id" : "3529002", - "profile" : { - "bust" : "73", - "height" : "151", - "hip" : "73", - "waist" : "53", - "weight" : "40" - } - }, { - "alias_name" : "ひと結び", - "alias_name_display" : "ひと結び", - "event" : [ { - "event_id" : 720, - "event_name" : "第20回ドリームLIVEフェスティバル" - } ], - "hash" : "5bc53e5cbba34aff18f7009d50c17f0e", - "id" : "3431501", - "profile" : { - "bust" : "73", - "height" : "151", - "hip" : "73", - "waist" : "53", - "weight" : "40" - } - }, { - "alias_name" : "ひと結び", - "alias_name_display" : "ひと結び", - "event" : [ { - "event_id" : 720, - "event_name" : "第20回ドリームLIVEフェスティバル" - } ], - "hash" : "db65dbfc1d0326aaacab3176a4160e90", - "id" : "3531502", - "profile" : { - "bust" : "73", - "height" : "151", - "hip" : "73", - "waist" : "53", - "weight" : "40" - } - }, { - "alias_name" : "黄昏の映し人", - "alias_name_display" : "黄昏の映し人", - "hash" : "10e4d88969fd0d9e4b366ea9e3fccdb7", - "id" : "3435201", - "profile" : { - "bust" : "73", - "height" : "151", - "hip" : "73", - "waist" : "53", - "weight" : "40" - } - }, { - "alias_name" : "黄昏の映し人", - "alias_name_display" : "黄昏の映し人", - "hash" : "86045c8c5c85b81aa51156dbcdb0e1a5", - "id" : "3535202", - "profile" : { - "bust" : "73", - "height" : "151", - "hip" : "73", - "waist" : "53", - "weight" : "40" - } - } ], - "idol_id" : 162, - "idol_name" : "依田芳乃", - "idol_name_display" : "依田芳乃", - "units" : [ { - "id" : "20", - "name" : "山紫水明" - }, { - "id" : "179", - "name" : "春霞" - } ] -}, { - "aliases" : [ { - "hash" : "af64f16df0293b28f4bd8fd8e213b98a", - "id" : "3200101", - "profile" : { - "bust" : "81", - "height" : "158", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "hash" : "4f7f75478ec8088e7b44680ccf69e601", - "id" : "3300102", - "profile" : { - "bust" : "81", - "height" : "158", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "フラワーブーケ", - "alias_name_display" : "フラワーブーケ", - "hash" : "ea1c96b7284f8fbf531f1c7a17565d01", - "id" : "3204301", - "profile" : { - "bust" : "81", - "height" : "158", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "フラワーブーケ", - "alias_name_display" : "フラワーブーケ", - "hash" : "7c983cf4f268272d5ff3fbc72e20477f", - "id" : "3304302", - "profile" : { - "bust" : "81", - "height" : "158", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "ガーリースタイルブルー", - "alias_name_display" : "ガーリースタイルブルー", - "event" : [ { - "event_id" : 107, - "event_name" : "秋夜のお月見会" - } ], - "hash" : "91bf66e462541654840ad63b590f7a92", - "id" : "3206201", - "profile" : { - "bust" : "81", - "height" : "158", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "ガーリースタイルピンク", - "alias_name_display" : "ガーリースタイルピンク", - "event" : [ { - "event_id" : 107, - "event_name" : "秋夜のお月見会" - } ], - "hash" : "cc13b2455d70284fa028ffbc71109f3c", - "id" : "3206202", - "profile" : { - "bust" : "81", - "height" : "158", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "ガーリースタイルグリーン", - "alias_name_display" : "ガーリースタイルグリーン", - "event" : [ { - "event_id" : 107, - "event_name" : "秋夜のお月見会" - } ], - "hash" : "a004ebf66be0062d592367afaa9df9c6", - "id" : "3206203", - "profile" : { - "bust" : "81", - "height" : "158", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "ガーリースタイルホワイト", - "alias_name_display" : "ガーリースタイルホワイト", - "event" : [ { - "event_id" : 107, - "event_name" : "秋夜のお月見会" - } ], - "hash" : "e2d746d67b2f486c24276cfdd6c04b91", - "id" : "3206204", - "profile" : { - "bust" : "81", - "height" : "158", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "スタイルセレクトヴァイオレット", - "alias_name_display" : "スタイルセレクトヴァイオレット", - "event" : [ { - "event_id" : 107, - "event_name" : "秋夜のお月見会" - } ], - "hash" : "bc13d4418e9a47ce43493ee837c079f7", - "id" : "3306205", - "profile" : { - "bust" : "81", - "height" : "158", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "スタイルセレクトピンク", - "alias_name_display" : "スタイルセレクトピンク", - "event" : [ { - "event_id" : 107, - "event_name" : "秋夜のお月見会" - } ], - "hash" : "a145b90c3b7a076a742f1243fc934c36", - "id" : "3306206", - "profile" : { - "bust" : "81", - "height" : "158", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "スタイルセレクトグレー", - "alias_name_display" : "スタイルセレクトグレー", - "event" : [ { - "event_id" : 107, - "event_name" : "秋夜のお月見会" - } ], - "hash" : "88d68028d63bd897115d57cb468133a2", - "id" : "3306207", - "profile" : { - "bust" : "81", - "height" : "158", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "スタイルセレクトパープル", - "alias_name_display" : "スタイルセレクトパープル", - "event" : [ { - "event_id" : 107, - "event_name" : "秋夜のお月見会" - } ], - "hash" : "b55a300ec52c0ede5b78a0870d2cfe53", - "id" : "3306208", - "profile" : { - "bust" : "81", - "height" : "158", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "スタイルセレクトホワイト", - "alias_name_display" : "スタイルセレクトホワイト", - "event" : [ { - "event_id" : 107, - "event_name" : "秋夜のお月見会" - } ], - "hash" : "5de0ef2c7289a92299b5870d38c2e290", - "id" : "3306209", - "profile" : { - "bust" : "81", - "height" : "158", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "ニューイヤー", - "alias_name_display" : "ニューイヤー", - "event" : [ { - "event_id" : 404, - "event_name" : "新春アイドルプロデュース" - } ], - "hash" : "6d85e7f52925d9aeb18f207ea86023de", - "id" : "3208001", - "profile" : { - "bust" : "81", - "height" : "158", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "ニューイヤー", - "alias_name_display" : "ニューイヤー", - "event" : [ { - "event_id" : 404, - "event_name" : "新春アイドルプロデュース" - } ], - "hash" : "e387585b395a759ba2774b9a49921303", - "id" : "3308002", - "profile" : { - "bust" : "81", - "height" : "158", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "ムーンライトフラワー", - "alias_name_display" : "ムーンライトフラワー", - "event" : [ { - "event_id" : 107, - "event_name" : "秋夜のお月見会" - } ], - "hash" : "142f146366609731aa64a5c2c2a1a912", - "id" : "3403101", - "profile" : { - "bust" : "81", - "height" : "158", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "ムーンライトフラワー", - "alias_name_display" : "ムーンライトフラワー", - "event" : [ { - "event_id" : 107, - "event_name" : "秋夜のお月見会" - } ], - "hash" : "33f1fa5b1d518cf7c16da1d7d9090aa8", - "id" : "3503102", - "profile" : { - "bust" : "81", - "height" : "158", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "真夏のフラワーガール", - "alias_name_display" : "真夏のフラワーガール", - "hash" : "9e89c636ff5da917444ca1cabe028fc9", - "id" : "3408001", - "profile" : { - "bust" : "81", - "height" : "158", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "真夏のフラワーガール", - "alias_name_display" : "真夏のフラワーガール", - "hash" : "37589decfcf637e2c37feeee7ddc5ad8", - "id" : "3508002", - "profile" : { - "bust" : "81", - "height" : "158", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "甘い花束", - "alias_name_display" : "甘い花束", - "event" : [ { - "event_id" : 411, - "event_name" : "アイドルプロデュース チョコレートフォーユー!" - } ], - "hash" : "05977029f17dd39831b673314a817238", - "id" : "3411501", - "profile" : { - "bust" : "81", - "height" : "158", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "甘い花束", - "alias_name_display" : "甘い花束", - "event" : [ { - "event_id" : 411, - "event_name" : "アイドルプロデュース チョコレートフォーユー!" - } ], - "hash" : "172930f3ec38def704b5d886c7109aa6", - "id" : "3511502", - "profile" : { - "bust" : "81", - "height" : "158", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "花の小悪魔", - "alias_name_display" : "花の小悪魔", - "hash" : "ab9d06b633142cecac28895ff15b7106", - "id" : "3418301", - "profile" : { - "bust" : "81", - "height" : "158", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "花の小悪魔", - "alias_name_display" : "花の小悪魔", - "hash" : "27dc4499bc995e764ee5277377a7ad11", - "id" : "3518302", - "profile" : { - "bust" : "81", - "height" : "158", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "さくらふわり", - "alias_name_display" : "さくらふわり", - "hash" : "5bc2eb8496976790007a468b9029038b", - "id" : "3422601", - "profile" : { - "bust" : "81", - "height" : "158", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "さくらふわり", - "alias_name_display" : "さくらふわり", - "hash" : "a1a5ad34d1f639456d074faf6cbee8fd", - "id" : "3522602", - "profile" : { - "bust" : "81", - "height" : "158", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "ふんわり花乙女", - "alias_name_display" : "ふんわり花乙女", - "hash" : "e60349af525f22282f0cce54d5ddfc39", - "id" : "3425701", - "profile" : { - "bust" : "81", - "height" : "158", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "ふんわり花乙女", - "alias_name_display" : "ふんわり花乙女", - "hash" : "3b24b0c37eaa7e5b936d38660580ddeb", - "id" : "3525702", - "profile" : { - "bust" : "81", - "height" : "158", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "スプリングフラワー", - "alias_name_display" : "スプリングフラワー", - "event" : [ { - "event_id" : 719, - "event_name" : "ドリームLIVEフェスティバル 節分SP" - } ], - "hash" : "ba6e73113054aad2140a54f733256d17", - "id" : "3429601", - "profile" : { - "bust" : "81", - "height" : "158", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "スプリングフラワー", - "alias_name_display" : "スプリングフラワー", - "event" : [ { - "event_id" : 719, - "event_name" : "ドリームLIVEフェスティバル 節分SP" - } ], - "hash" : "3ee0da58a0a9b42484666b12293bcc11", - "id" : "3529602", - "profile" : { - "bust" : "81", - "height" : "158", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "37c34a83da57161eb7ebe0ad62d4b144", - "id" : "3430801", - "profile" : { - "bust" : "81", - "height" : "158", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "1fc18af0c5a0f3b65e228e7d5abfd54e", - "id" : "3530802", - "profile" : { - "bust" : "81", - "height" : "158", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "花しずく", - "alias_name_display" : "花しずく", - "hash" : "1fd2e753404d29ba95066c277f752db7", - "id" : "3434801", - "profile" : { - "bust" : "81", - "height" : "158", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - }, { - "alias_name" : "花しずく", - "alias_name_display" : "花しずく", - "hash" : "eff3e13dd30475d420b7f95ce86c2bc4", - "id" : "3534802", - "profile" : { - "bust" : "81", - "height" : "158", - "hip" : "80", - "waist" : "57", - "weight" : "42" - } - } ], - "idol_id" : 163, - "idol_name" : "相葉夕美", - "idol_name_display" : "相葉夕美", - "units" : [ { - "id" : "51", - "name" : "フィオレンティナ" - }, { - "id" : "57", - "name" : "ミステリックガーデン" - }, { - "id" : "75", - "name" : "Flowery" - }, { - "id" : "189", - "name" : "アインフェリア" - }, { - "id" : "202", - "name" : "サンフラワー" - } ] -}, { - "aliases" : [ { - "hash" : "bb90dd3425c2e096e9b48a928e734b8b", - "id" : "3200201", - "profile" : { - "bust" : "84", - "height" : "157", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "hash" : "91a74c8b18e013ecb8a341d4586aa8f5", - "id" : "3300202", - "profile" : { - "bust" : "84", - "height" : "157", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "イタリアンスタイル", - "alias_name_display" : "イタリアンスタイル", - "event" : [ { - "event_id" : 503, - "event_name" : "アイドルLIVEツアーinイタリア" - } ], - "hash" : "a2b68b8474b5286d60a33891113e57df", - "id" : "3209201", - "profile" : { - "bust" : "84", - "height" : "157", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "イタリアンスタイル", - "alias_name_display" : "イタリアンスタイル", - "event" : [ { - "event_id" : 503, - "event_name" : "アイドルLIVEツアーinイタリア" - } ], - "hash" : "e1e647efe2dc11ccc84bd244ced05c06", - "id" : "3309202", - "profile" : { - "bust" : "84", - "height" : "157", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ロワイヤルスタイル", - "alias_name_display" : "ロワイヤルスタイル", - "event" : [ { - "event_id" : 801, - "event_name" : "アイドルLIVEロワイヤル" - } ], - "hash" : "9305d01a77298c6ccd1dc85c31312ed6", - "id" : "3212901", - "profile" : { - "bust" : "84", - "height" : "157", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ロワイヤルスタイル", - "alias_name_display" : "ロワイヤルスタイル", - "event" : [ { - "event_id" : 801, - "event_name" : "アイドルLIVEロワイヤル" - } ], - "hash" : "bf38507a985eb502dc11b0669c035668", - "id" : "3312902", - "profile" : { - "bust" : "84", - "height" : "157", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "はっぴーはっぴー", - "alias_name_display" : "はっぴーはっぴー", - "hash" : "76e96d82a4a7800e7f41379167f70830", - "id" : "3215101", - "profile" : { - "bust" : "84", - "height" : "157", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "はっぴーはっぴー", - "alias_name_display" : "はっぴーはっぴー", - "hash" : "ba7243eb399089267666d8b44f3eb6a2", - "id" : "3315102", - "profile" : { - "bust" : "84", - "height" : "157", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "T.B.ハロウィン", - "alias_name_display" : "T.B.ハロウィン", - "event" : [ { - "event_id" : 1106, - "event_name" : "プロダクション対抗トークバトルショー ハロウィンSP" - } ], - "hash" : "2dbac60081ce8d246d03957ff5c8337d", - "id" : "3219901", - "profile" : { - "bust" : "84", - "height" : "157", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "T.B.ハロウィン", - "alias_name_display" : "T.B.ハロウィン", - "event" : [ { - "event_id" : 1106, - "event_name" : "プロダクション対抗トークバトルショー ハロウィンSP" - } ], - "hash" : "cd3b73854b58929671aa432ab259417e", - "id" : "3319902", - "profile" : { - "bust" : "84", - "height" : "157", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ラブリーメイド", - "alias_name_display" : "ラブリーメイド", - "hash" : "152e419be9a216a353b9297511456a15", - "id" : "3225001", - "profile" : { - "bust" : "84", - "height" : "157", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ラブリーメイド", - "alias_name_display" : "ラブリーメイド", - "hash" : "ac84d4d34bca1fb65b66233fc5b864b6", - "id" : "3325002", - "profile" : { - "bust" : "84", - "height" : "157", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "フライトバラエティ", - "alias_name_display" : "フライトバラエティ", - "event" : [ { - "event_id" : 1803, - "event_name" : "アイドルバラエティ 大空への挑戦 ~Fly me to the Sky~" - } ], - "hash" : "7ef301dfd58f3bb7ce5d82667ade6bf4", - "id" : "3329002", - "profile" : { - "bust" : "84", - "height" : "157", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ろでお☆がーる", - "alias_name_display" : "ろでお☆がーる", - "event" : [ { - "event_id" : 512, - "event_name" : "西部公演 ガンスリンガージャーニー" - } ], - "hash" : "5a3f49b98c1c6eed21a5554324df93a4", - "id" : "3414701", - "profile" : { - "bust" : "84", - "height" : "157", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ろでお☆がーる", - "alias_name_display" : "ろでお☆がーる", - "event" : [ { - "event_id" : 512, - "event_name" : "西部公演 ガンスリンガージャーニー" - } ], - "hash" : "4549aa1570a45b094e0c93f87e7456a8", - "id" : "3514702", - "profile" : { - "bust" : "84", - "height" : "157", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "わいるどしゃうと", - "alias_name_display" : "わいるどしゃうと", - "event" : [ { - "event_id" : "021", - "event_name" : "第21回プロダクションマッチフェスティバル" - } ], - "hash" : "ac00fc26dcf39db7b99b0dbd25fba25d", - "id" : "3423001", - "profile" : { - "bust" : "84", - "height" : "157", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "わいるどしゃうと", - "alias_name_display" : "わいるどしゃうと", - "event" : [ { - "event_id" : "021", - "event_name" : "第21回プロダクションマッチフェスティバル" - } ], - "hash" : "9f7bcd2b186da54f58a6c708b6673e2b", - "id" : "3523002", - "profile" : { - "bust" : "84", - "height" : "157", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ぷりむすたいる", - "alias_name_display" : "ぷりむすたいる", - "event" : [ { - "event_id" : 1410, - "event_name" : "第10回ぷちデレラコレクション" - } ], - "hash" : "c9ff2aa64967a2cbc5455bb32ebc02ec", - "id" : "3437101", - "profile" : { - "bust" : "84", - "height" : "157", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ぷりむすたいる", - "alias_name_display" : "ぷりむすたいる", - "event" : [ { - "event_id" : 1410, - "event_name" : "第10回ぷちデレラコレクション" - } ], - "hash" : "3c9777fee6bd72b52c4700f384987b3a", - "id" : "3537102", - "profile" : { - "bust" : "84", - "height" : "157", - "hip" : "85", - "waist" : "57", - "weight" : "46" - } - } ], - "idol_id" : 164, - "idol_name" : "野々村そら", - "idol_name_display" : "野々村そら", - "units" : [ { - "id" : "86", - "name" : "イタリアンスタイル" - }, { - "id" : "208", - "name" : "ロワイヤルスタイル" - } ] -}, { - "aliases" : [ { - "hash" : "7fa02e42c440b57785448072345ef8e0", - "id" : "3200301", - "profile" : { - "bust" : "92", - "height" : "168", - "hip" : "85", - "waist" : "58", - "weight" : "50" - } - }, { - "hash" : "a3ccb7b3c841ae42ca70437699830a6b", - "id" : "3300302", - "profile" : { - "bust" : "92", - "height" : "168", - "hip" : "85", - "waist" : "58", - "weight" : "50" - } - }, { - "alias_name" : "浴衣祭り", - "alias_name_display" : "浴衣祭り", - "hash" : "5041107d9f74a0719ed4c66d7945f270", - "id" : "3205301", - "profile" : { - "bust" : "92", - "height" : "168", - "hip" : "85", - "waist" : "58", - "weight" : "50" - } - }, { - "alias_name" : "浴衣祭り", - "alias_name_display" : "浴衣祭り", - "hash" : "da62089ea524fd4255801e539746c146", - "id" : "3305302", - "profile" : { - "bust" : "92", - "height" : "168", - "hip" : "85", - "waist" : "58", - "weight" : "50" - } - }, { - "alias_name" : "エレガントJKT", - "alias_name_display" : "エレガントJKT", - "hash" : "18303720c0d458d42f75000b7a801f94", - "id" : "3213301", - "profile" : { - "bust" : "92", - "height" : "168", - "hip" : "85", - "waist" : "58", - "weight" : "50" - } - }, { - "alias_name" : "エレガントJKT", - "alias_name_display" : "エレガントJKT", - "hash" : "1c2b58322ae59b405e3147536884ac99", - "id" : "3313302", - "profile" : { - "bust" : "92", - "height" : "168", - "hip" : "85", - "waist" : "58", - "weight" : "50" - } - }, { - "alias_name" : "ビーチサイド", - "alias_name_display" : "ビーチサイド", - "hash" : "fb666de8cb248a5cb534465aad1a1ee6", - "id" : "3217801", - "profile" : { - "bust" : "92", - "height" : "168", - "hip" : "85", - "waist" : "58", - "weight" : "50" - } - }, { - "alias_name" : "ビーチサイド", - "alias_name_display" : "ビーチサイド", - "hash" : "3c1c4486f502c31f1da9502917400d14", - "id" : "3317802", - "profile" : { - "bust" : "92", - "height" : "168", - "hip" : "85", - "waist" : "58", - "weight" : "50" - } - }, { - "alias_name" : "ジョッキースタイル", - "alias_name_display" : "ジョッキースタイル", - "hash" : "a0e1b3d2ecd96234e3477d67e302d240", - "id" : "3222501", - "profile" : { - "bust" : "92", - "height" : "168", - "hip" : "85", - "waist" : "58", - "weight" : "50" - } - }, { - "alias_name" : "ジョッキースタイル", - "alias_name_display" : "ジョッキースタイル", - "hash" : "53b5cd0bd501f09c4c6a209b3b2ef963", - "id" : "3322502", - "profile" : { - "bust" : "92", - "height" : "168", - "hip" : "85", - "waist" : "58", - "weight" : "50" - } - }, { - "alias_name" : "クッキングバラエティ", - "alias_name_display" : "クッキングバラエティ", - "event" : [ { - "event_id" : 1801, - "event_name" : "アイドルバラエティ 究極のショートケーキを作ろう!" - } ], - "hash" : "9db33f824b8d4ecb038436a2e7399d57", - "id" : "3325302", - "profile" : { - "bust" : "92", - "height" : "168", - "hip" : "85", - "waist" : "58", - "weight" : "50" - } - }, { - "alias_name" : "自信の裏側", - "alias_name_display" : "自信の裏側", - "hash" : "098b55088316d0bd6eb28bdea008654d", - "id" : "3227901", - "profile" : { - "bust" : "92", - "height" : "168", - "hip" : "85", - "waist" : "58", - "weight" : "50" - } - }, { - "alias_name" : "自信の裏側", - "alias_name_display" : "自信の裏側", - "hash" : "c1f3b08ee2f0a1121be49b71b54bd721", - "id" : "3327902", - "profile" : { - "bust" : "92", - "height" : "168", - "hip" : "85", - "waist" : "58", - "weight" : "50" - } - }, { - "alias_name" : "サマーガール", - "alias_name_display" : "サマーガール", - "event" : [ { - "event_id" : 722, - "event_name" : "夏祭りDEドリームLIVEフェスティバル" - } ], - "hash" : "e82a880bb685e3fd108f1720cdc27959", - "id" : "3229501", - "profile" : { - "bust" : "92", - "height" : "168", - "hip" : "85", - "waist" : "58", - "weight" : "50" - } - }, { - "alias_name" : "サマーガール", - "alias_name_display" : "サマーガール", - "event" : [ { - "event_id" : 722, - "event_name" : "夏祭りDEドリームLIVEフェスティバル" - } ], - "hash" : "df4914c7a9d1da0c7113ff56dfff3175", - "id" : "3329502", - "profile" : { - "bust" : "92", - "height" : "168", - "hip" : "85", - "waist" : "58", - "weight" : "50" - } - }, { - "alias_name" : "ハイカラガンナー", - "alias_name_display" : "ハイカラガンナー", - "event" : [ { - "event_id" : 1907, - "event_name" : "ディアリースタークエスト ~夜桜奇譚~" - } ], - "hash" : "dec1007c6dc06d01e61a7bf2ff65e44b", - "id" : "3333802", - "profile" : { - "bust" : "92", - "height" : "168", - "hip" : "85", - "waist" : "58", - "weight" : "50" - } - }, { - "alias_name" : "セクシーディーヴァ", - "alias_name_display" : "セクシーディーヴァ", - "event" : [ { - "event_id" : 504, - "event_name" : "アイドルLIVEツアーinスペイン" - } ], - "hash" : "bd8544d7fee8e557f5b223836d20ff0d", - "id" : "3406401", - "profile" : { - "bust" : "92", - "height" : "168", - "hip" : "85", - "waist" : "58", - "weight" : "50" - } - }, { - "alias_name" : "セクシーディーヴァ", - "alias_name_display" : "セクシーディーヴァ", - "event" : [ { - "event_id" : 504, - "event_name" : "アイドルLIVEツアーinスペイン" - } ], - "hash" : "447b6056924998cacf744688697a4f1d", - "id" : "3506402", - "profile" : { - "bust" : "92", - "height" : "168", - "hip" : "85", - "waist" : "58", - "weight" : "50" - } - }, { - "alias_name" : "パナシェ・ロワイヤル", - "alias_name_display" : "パナシェ・ロワイヤル", - "event" : [ { - "event_id" : 807, - "event_name" : "第7回アイドルLIVEロワイヤル" - } ], - "hash" : "688413c83d5f09927ee6ab46b0247988", - "id" : "3418001", - "profile" : { - "bust" : "92", - "height" : "168", - "hip" : "85", - "waist" : "58", - "weight" : "50" - } - }, { - "alias_name" : "パナシェ・ロワイヤル", - "alias_name_display" : "パナシェ・ロワイヤル", - "event" : [ { - "event_id" : 807, - "event_name" : "第7回アイドルLIVEロワイヤル" - } ], - "hash" : "0ff15c0dd87a8d2bed9916f45007d884", - "id" : "3518002", - "profile" : { - "bust" : "92", - "height" : "168", - "hip" : "85", - "waist" : "58", - "weight" : "50" - } - }, { - "alias_name" : "アンルーリィチアー", - "alias_name_display" : "アンルーリィチアー", - "event" : [ { - "event_id" : 1509, - "event_name" : "第9回チーム対抗トークバトルショー" - } ], - "hash" : "e8a3517e4e352e1a355526953320449b", - "id" : "3436001", - "profile" : { - "bust" : "92", - "height" : "168", - "hip" : "85", - "waist" : "58", - "weight" : "50" - } - }, { - "alias_name" : "アンルーリィチアー", - "alias_name_display" : "アンルーリィチアー", - "event" : [ { - "event_id" : 1509, - "event_name" : "第9回チーム対抗トークバトルショー" - } ], - "hash" : "aa9f7f62858b8a7afc5bf79a5d8bb989", - "id" : "3536002", - "profile" : { - "bust" : "92", - "height" : "168", - "hip" : "85", - "waist" : "58", - "weight" : "50" - } - } ], - "idol_id" : 165, - "idol_name" : "浜川愛結奈", - "idol_name_display" : "浜川愛結奈", - "units" : [ { - "id" : "118", - "name" : "ビューティーアリュール" - } ] -}, { - "aliases" : [ { - "hash" : "bf61ef00c0f50870767799b93134aed8", - "id" : "3200401", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "hash" : "aeed90627f00bd22dca766f74cba96b7", - "id" : "3300402", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "パジャマパーティー", - "alias_name_display" : "パジャマパーティー", - "hash" : "131c89b09553e3b1adf8211a825bef94", - "id" : "3204501", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "パジャマパーティー", - "alias_name_display" : "パジャマパーティー", - "hash" : "108bc0c3aa328e2ac67782b356672155", - "id" : "3304502", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "バレンタインパーティー", - "alias_name_display" : "バレンタインパーティー", - "hash" : "5804656c2c53a974b9dfd2df368f4309", - "id" : "3208501", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "バレンタインパーティー", - "alias_name_display" : "バレンタインパーティー", - "hash" : "ec7057af8940d714ad8af9f3ae8300ea", - "id" : "3308502", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "サマーバケーション", - "alias_name_display" : "サマーバケーション", - "event" : [ { - "event_id" : 211, - "event_name" : "アイドルサバイバルinサマーバケーション" - } ], - "hash" : "f08432b1b1ed5f779e4a05950da2869b", - "id" : "3212401", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "サマーバケーション", - "alias_name_display" : "サマーバケーション", - "event" : [ { - "event_id" : 211, - "event_name" : "アイドルサバイバルinサマーバケーション" - } ], - "hash" : "38d77ce3afc38411d2dae8c5fe362cd9", - "id" : "3312402", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "青春のありか", - "alias_name_display" : "青春のありか", - "event" : [ { - "event_id" : 708, - "event_name" : "第8回ドリームLIVEフェスティバル" - } ], - "hash" : "ad51b71ac5197e926d54027ee34c5439", - "id" : "3218901", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "青春のありか", - "alias_name_display" : "青春のありか", - "event" : [ { - "event_id" : 708, - "event_name" : "第8回ドリームLIVEフェスティバル" - } ], - "hash" : "53ef3721dd9737e2ff8d88136230886b", - "id" : "3318902", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ネクサスガール", - "alias_name_display" : "ネクサスガール", - "hash" : "752bf582313e7183b20823fdcfaf64db", - "id" : "3223901", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ネクサスガール", - "alias_name_display" : "ネクサスガール", - "hash" : "2c4e927cadd73b11da5c722e6b32019a", - "id" : "3323902", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "スクールプール", - "alias_name_display" : "スクールプール", - "hash" : "4fb0aa129a4ecd3a5ae5fb262c77dd5a", - "id" : "3229601", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "スクールプール", - "alias_name_display" : "スクールプール", - "hash" : "22177b0b3d43621ab1f291b07ad87c2f", - "id" : "3329602", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ロワイヤルスタイルND", - "alias_name_display" : "ロワイヤルスタイルND", - "event" : [ { - "event_id" : 821, - "event_name" : "第21回アイドルLIVEロワイヤル" - } ], - "hash" : "9c9bd76b06bada99f133ffe795d63d51", - "id" : "3232301", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ロワイヤルスタイルND", - "alias_name_display" : "ロワイヤルスタイルND", - "event" : [ { - "event_id" : 821, - "event_name" : "第21回アイドルLIVEロワイヤル" - } ], - "hash" : "95eca02219ea79f8580e430b77051710", - "id" : "3332302", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "フレッシュチアガール", - "alias_name_display" : "フレッシュチアガール", - "hash" : "cdb51d58743eed84230167094b26d0e1", - "id" : "3405601", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "フレッシュチアガール", - "alias_name_display" : "フレッシュチアガール", - "hash" : "00bea124dc35973d55b52fa765ad9668", - "id" : "3505602", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ハッピーチアー", - "alias_name_display" : "ハッピーチアー", - "event" : [ { - "event_id" : 509, - "event_name" : "新春LIVEツアーカーニバル" - } ], - "hash" : "83d9e2030ef0d1c4ab0f46e104bebe2d", - "id" : "3410701", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "ハッピーチアー", - "alias_name_display" : "ハッピーチアー", - "event" : [ { - "event_id" : 509, - "event_name" : "新春LIVEツアーカーニバル" - } ], - "hash" : "0a37155927a181d59ee7979bf5f98698", - "id" : "3510702", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "チアフル・ロワイヤル", - "alias_name_display" : "チアフル・ロワイヤル", - "event" : [ { - "event_id" : 811, - "event_name" : "第11回アイドルLIVEロワイヤル" - } ], - "hash" : "fd801652029b6d929ee53d416b4e8ec0", - "id" : "3422401", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "チアフル・ロワイヤル", - "alias_name_display" : "チアフル・ロワイヤル", - "event" : [ { - "event_id" : 811, - "event_name" : "第11回アイドルLIVEロワイヤル" - } ], - "hash" : "d072b96acd476cccdb2b94bd8199a5d8", - "id" : "3522402", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "春うらら", - "alias_name_display" : "春うらら", - "event" : [ { - "event_id" : "026", - "event_name" : "第26回プロダクションマッチフェスティバル" - } ], - "hash" : "097f3b60e7f177c70488cb8d993b77fa", - "id" : "3430201", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - }, { - "alias_name" : "春うらら", - "alias_name_display" : "春うらら", - "event" : [ { - "event_id" : "026", - "event_name" : "第26回プロダクションマッチフェスティバル" - } ], - "hash" : "90acff12db7ec8895021c3726ee2ab58", - "id" : "3530202", - "profile" : { - "bust" : "82", - "height" : "156", - "hip" : "83", - "waist" : "57", - "weight" : "45" - } - } ], - "idol_id" : 166, - "idol_name" : "若林智香", - "idol_name_display" : "若林智香", - "units" : [ { - "id" : "148", - "name" : "チアフルボンバーズ" - }, { - "id" : "150", - "name" : "ヒートアップ☆チアーズ" - }, { - "id" : "210", - "name" : "ロワイヤルスタイルND" - } ] -}, { - "aliases" : [ { - "hash" : "73eea87bdec62f29de318e50e84f021d", - "id" : "3200501", - "profile" : { - "bust" : "80", - "height" : "162", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "hash" : "61a1dfc4c713b5d5a094a19923bacc08", - "id" : "3300502", - "profile" : { - "bust" : "80", - "height" : "162", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "ギャルブロッサム", - "alias_name_display" : "ギャルブロッサム", - "event" : [ { - "event_id" : 712, - "event_name" : "花見DEドリームLIVEフェスティバル" - } ], - "hash" : "c407e2e483b9ff36689e486dfbd847e4", - "id" : "3222201", - "profile" : { - "bust" : "80", - "height" : "162", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "ギャルブロッサム", - "alias_name_display" : "ギャルブロッサム", - "event" : [ { - "event_id" : 712, - "event_name" : "花見DEドリームLIVEフェスティバル" - } ], - "hash" : "4f4bc793b515a5c802b9ab7e0a9198e8", - "id" : "3322202", - "profile" : { - "bust" : "80", - "height" : "162", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "ニューヴォーグ", - "alias_name_display" : "ニューヴォーグ", - "hash" : "d6fdc4c2a992ea8b249d6015d1186e6c", - "id" : "3230401", - "profile" : { - "bust" : "80", - "height" : "162", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "ニューヴォーグ", - "alias_name_display" : "ニューヴォーグ", - "hash" : "7fe0b25036ad4318f240e85827e4ba96", - "id" : "3330402", - "profile" : { - "bust" : "80", - "height" : "162", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "カリスマギャル", - "alias_name_display" : "カリスマギャル", - "hash" : "30fe4887cbc082bf375169d6f83a1ffa", - "id" : "3402201", - "profile" : { - "bust" : "80", - "height" : "162", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "カリスマギャル", - "alias_name_display" : "カリスマギャル", - "hash" : "6ccf37a6cfdd206dc34434a1be3d56b8", - "id" : "3502202", - "profile" : { - "bust" : "80", - "height" : "162", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "7af6cc3d2ca1f5d15230f2366280a444", - "id" : "3402701", - "profile" : { - "bust" : "80", - "height" : "162", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "53a89429c64132c4d0058aea4b233fca", - "id" : "3502702", - "profile" : { - "bust" : "80", - "height" : "162", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "シークレット★ハート", - "alias_name_display" : "シークレット★ハート", - "hash" : "f6e5a4e341770463ef088e55921596fa", - "id" : "3404701", - "profile" : { - "bust" : "80", - "height" : "162", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "シークレット★ハート", - "alias_name_display" : "シークレット★ハート", - "hash" : "f9385a42acabcfae3013c79d5466edf4", - "id" : "3504702", - "profile" : { - "bust" : "80", - "height" : "162", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "ラブ★クリスマス", - "alias_name_display" : "ラブ★クリスマス", - "hash" : "c34d79efd9030ebf948a18cbf9df7bf3", - "id" : "3410201", - "profile" : { - "bust" : "80", - "height" : "162", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "ラブ★クリスマス", - "alias_name_display" : "ラブ★クリスマス", - "hash" : "70ca98bb88391ddbaf3841e5912c7367", - "id" : "3510202", - "profile" : { - "bust" : "80", - "height" : "162", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "ワンダフルマジック", - "alias_name_display" : "ワンダフルマジック", - "hash" : "4a3abe4cfb93b694333cddf0c8521f64", - "id" : "3412801", - "profile" : { - "bust" : "80", - "height" : "162", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "ワンダフルマジック", - "alias_name_display" : "ワンダフルマジック", - "hash" : "e204975f21b0e3374a0633d0522f1b19", - "id" : "3512802", - "profile" : { - "bust" : "80", - "height" : "162", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "夏のユウワク", - "alias_name_display" : "夏のユウワク", - "hash" : "76c2eb6eac6f3d975264dfaac44157c7", - "id" : "3416301", - "profile" : { - "bust" : "80", - "height" : "162", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "夏のユウワク", - "alias_name_display" : "夏のユウワク", - "hash" : "eb38818dc3fd59a5cae7f69a4f743f6c", - "id" : "3516302", - "profile" : { - "bust" : "80", - "height" : "162", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "3rdアニバーサリー", - "alias_name_display" : "3rdアニバーサリー", - "event" : [ { - "event_id" : 415, - "event_name" : "アイドルプロデュース the 3rd Anniversary" - } ], - "hash" : "21886e4c2903ab6da97230b772c6804f", - "id" : "3419401", - "profile" : { - "bust" : "80", - "height" : "162", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "3rdアニバーサリー", - "alias_name_display" : "3rdアニバーサリー", - "event" : [ { - "event_id" : 415, - "event_name" : "アイドルプロデュース the 3rd Anniversary" - } ], - "hash" : "5f0ff7b6385298516aedd9b4e334a018", - "id" : "3519402", - "profile" : { - "bust" : "80", - "height" : "162", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "3rdアニバーサリー・S", - "alias_name_display" : "3rdアニバーサリー・S", - "event" : [ { - "event_id" : 415, - "event_name" : "アイドルプロデュース the 3rd Anniversary" - } ], - "hash" : "942ee9cb2a6140de3f7f35122ebe7e00", - "id" : "3419501", - "profile" : { - "bust" : "80", - "height" : "162", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "3rdアニバーサリー・S", - "alias_name_display" : "3rdアニバーサリー・S", - "event" : [ { - "event_id" : 415, - "event_name" : "アイドルプロデュース the 3rd Anniversary" - } ], - "hash" : "e6bafa973570753123cd686c18c2b975", - "id" : "3519502", - "profile" : { - "bust" : "80", - "height" : "162", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "ラブ★サマーナイト", - "alias_name_display" : "ラブ★サマーナイト", - "hash" : "3ea30b1c14dafc422ae4b4eb46aaa54e", - "id" : "3424801", - "profile" : { - "bust" : "80", - "height" : "162", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "ラブ★サマーナイト", - "alias_name_display" : "ラブ★サマーナイト", - "hash" : "f84e6d3c1d11b46d7efe8e53e1013eb4", - "id" : "3524802", - "profile" : { - "bust" : "80", - "height" : "162", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "G4U!", - "alias_name_display" : "G4U!", - "hash" : "8d9c26ea00d4d16b952f129ce7c80034", - "id" : "3530502", - "profile" : { - "bust" : "80", - "height" : "162", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "ラブ★ドクター", - "alias_name_display" : "ラブ★ドクター", - "hash" : "7523568f90f1dabbcacf633f6f178729", - "id" : "3430601", - "profile" : { - "bust" : "80", - "height" : "162", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "ラブ★ドクター", - "alias_name_display" : "ラブ★ドクター", - "hash" : "61497838f9a33ff6592fa0e11c4c2c1a", - "id" : "3530602", - "profile" : { - "bust" : "80", - "height" : "162", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "ユア★ウォーム", - "alias_name_display" : "ユア★ウォーム", - "hash" : "4de072a494475aa83d7ee9eca92de2bb", - "id" : "3437501", - "profile" : { - "bust" : "80", - "height" : "162", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "ユア★ウォーム", - "alias_name_display" : "ユア★ウォーム", - "hash" : "cd1aaa15207932e56aaa449c14daa578", - "id" : "3537502", - "profile" : { - "bust" : "80", - "height" : "162", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - }, { - "alias_name" : "たたいてご褒美", - "alias_name_display" : "たたいてご褒美", - "hash" : "062f663090a8424fca1a20133b774120", - "id" : "3538702", - "profile" : { - "bust" : "80", - "height" : "162", - "hip" : "82", - "waist" : "56", - "weight" : "43" - } - } ], - "idol_id" : 167, - "idol_name" : "城ヶ崎美嘉", - "idol_name_display" : "城ヶ崎美嘉", - "units" : [ { - "id" : "50", - "name" : "ファミリアツイン" - }, { - "id" : "113", - "name" : "セクシーギャルズ" - }, { - "id" : "185", - "name" : "LiPPS" - }, { - "id" : "204", - "name" : "トロピカル☆スターズ" - }, { - "id" : "212", - "name" : "CINDERELLA GIRLS" - } ] -}, { - "aliases" : [ { - "hash" : "959bc006631151106b824edd21901161", - "id" : "3200601", - "profile" : { - "bust" : "72", - "height" : "149", - "hip" : "75", - "waist" : "54", - "weight" : "36" - } - }, { - "hash" : "2e78f311230052d2ccf604dc941ebc8c", - "id" : "3300602", - "profile" : { - "bust" : "72", - "height" : "149", - "hip" : "75", - "waist" : "54", - "weight" : "36" - } - }, { - "alias_name" : "夏休み", - "alias_name_display" : "夏休み", - "event" : [ { - "event_id" : 413, - "event_name" : "みんなのなつやすみ" - } ], - "hash" : "d8d930d28b4ce932041240e81f907905", - "id" : "3218101", - "profile" : { - "bust" : "72", - "height" : "149", - "hip" : "75", - "waist" : "54", - "weight" : "36" - } - }, { - "alias_name" : "夏休み", - "alias_name_display" : "夏休み", - "event" : [ { - "event_id" : 413, - "event_name" : "みんなのなつやすみ" - } ], - "hash" : "78f52e2a15799e1e06822dfe51d3eaa3", - "id" : "3318102", - "profile" : { - "bust" : "72", - "height" : "149", - "hip" : "75", - "waist" : "54", - "weight" : "36" - } - }, { - "alias_name" : "笑顔の夏休み", - "alias_name_display" : "笑顔の夏休み", - "event" : [ { - "event_id" : 413, - "event_name" : "みんなのなつやすみ" - } ], - "hash" : "7adcfc7258831785ce0f855a13f244a6", - "id" : "3218201", - "profile" : { - "bust" : "72", - "height" : "149", - "hip" : "75", - "waist" : "54", - "weight" : "36" - } - }, { - "alias_name" : "笑顔の夏休み", - "alias_name_display" : "笑顔の夏休み", - "event" : [ { - "event_id" : 413, - "event_name" : "みんなのなつやすみ" - } ], - "hash" : "a8164aee777ecd0f1802e98e5acaeaef", - "id" : "3318202", - "profile" : { - "bust" : "72", - "height" : "149", - "hip" : "75", - "waist" : "54", - "weight" : "36" - } - }, { - "alias_name" : "ハイカラサクラ", - "alias_name_display" : "ハイカラサクラ", - "hash" : "fb731622d7dbb239f5877d838b883c02", - "id" : "3222301", - "profile" : { - "bust" : "72", - "height" : "149", - "hip" : "75", - "waist" : "54", - "weight" : "36" - } - }, { - "alias_name" : "ハイカラサクラ", - "alias_name_display" : "ハイカラサクラ", - "hash" : "5013bb8c3861ccf38077eb5222cb2282", - "id" : "3322302", - "profile" : { - "bust" : "72", - "height" : "149", - "hip" : "75", - "waist" : "54", - "weight" : "36" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "6ea43f0179614b007603260b8bdf8fe1", - "id" : "3401401", - "profile" : { - "bust" : "72", - "height" : "149", - "hip" : "75", - "waist" : "54", - "weight" : "36" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "f4a121eb8de314497224aed4155c7291", - "id" : "3501402", - "profile" : { - "bust" : "72", - "height" : "149", - "hip" : "75", - "waist" : "54", - "weight" : "36" - } - }, { - "alias_name" : "カリスマちびギャル", - "alias_name_display" : "カリスマちびギャル", - "hash" : "98998d4de666be93b4e9667965b80808", - "id" : "3402301", - "profile" : { - "bust" : "72", - "height" : "149", - "hip" : "75", - "waist" : "54", - "weight" : "36" - } - }, { - "alias_name" : "カリスマちびギャル", - "alias_name_display" : "カリスマちびギャル", - "hash" : "ae8fb02e54bda306eb45dd2ecf875185", - "id" : "3502302", - "profile" : { - "bust" : "72", - "height" : "149", - "hip" : "75", - "waist" : "54", - "weight" : "36" - } - }, { - "alias_name" : "ハッピー☆クリスマス", - "alias_name_display" : "ハッピー☆クリスマス", - "hash" : "d9b090bc9ba7b6b5cf9004ac1014fde3", - "id" : "3404101", - "profile" : { - "bust" : "72", - "height" : "149", - "hip" : "75", - "waist" : "54", - "weight" : "36" - } - }, { - "alias_name" : "ハッピー☆クリスマス", - "alias_name_display" : "ハッピー☆クリスマス", - "hash" : "59b6132bdb66f678941338690c3eca2f", - "id" : "3504102", - "profile" : { - "bust" : "72", - "height" : "149", - "hip" : "75", - "waist" : "54", - "weight" : "36" - } - }, { - "alias_name" : "シークレット☆モード", - "alias_name_display" : "シークレット☆モード", - "hash" : "5f884308996c7f7369f304379ac028cc", - "id" : "3409401", - "profile" : { - "bust" : "72", - "height" : "149", - "hip" : "75", - "waist" : "54", - "weight" : "36" - } - }, { - "alias_name" : "シークレット☆モード", - "alias_name_display" : "シークレット☆モード", - "hash" : "e3990a65bbb99ede5a0fd7cd3ce57100", - "id" : "3509402", - "profile" : { - "bust" : "72", - "height" : "149", - "hip" : "75", - "waist" : "54", - "weight" : "36" - } - }, { - "alias_name" : "ワンダフルマジック", - "alias_name_display" : "ワンダフルマジック", - "hash" : "4ecd248e0f400d89b150c7d9c6f125ae", - "id" : "3412601", - "profile" : { - "bust" : "72", - "height" : "149", - "hip" : "75", - "waist" : "54", - "weight" : "36" - } - }, { - "alias_name" : "ワンダフルマジック", - "alias_name_display" : "ワンダフルマジック", - "hash" : "45e3224de0e8d9b80d0739e4dbc6e523", - "id" : "3512602", - "profile" : { - "bust" : "72", - "height" : "149", - "hip" : "75", - "waist" : "54", - "weight" : "36" - } - }, { - "alias_name" : "ウィンター☆モード", - "alias_name_display" : "ウィンター☆モード", - "hash" : "5ae975e8058ac9fa8dfe9fdabe6d9249", - "id" : "3420001", - "profile" : { - "bust" : "72", - "height" : "149", - "hip" : "75", - "waist" : "54", - "weight" : "36" - } - }, { - "alias_name" : "ウィンター☆モード", - "alias_name_display" : "ウィンター☆モード", - "hash" : "b67b9f2b0751ff7104544f92e91151b9", - "id" : "3520002", - "profile" : { - "bust" : "72", - "height" : "149", - "hip" : "75", - "waist" : "54", - "weight" : "36" - } - }, { - "alias_name" : "DONDOKOリズム", - "alias_name_display" : "DONDOKOリズム", - "hash" : "c412e6116df1c59a54a022a2e4c0ae2a", - "id" : "3521002", - "profile" : { - "bust" : "72", - "height" : "149", - "hip" : "75", - "waist" : "54", - "weight" : "36" - } - }, { - "alias_name" : "凸レーション", - "alias_name_display" : "凸レーション", - "hash" : "79455fc3b740c160d1c1dc6d652b551a", - "id" : "3525502", - "profile" : { - "bust" : "72", - "height" : "149", - "hip" : "75", - "waist" : "54", - "weight" : "36" - } - }, { - "alias_name" : "G4U!", - "alias_name_display" : "G4U!", - "hash" : "4850054db6e522f5a192e1bbef55e563", - "id" : "3526002", - "profile" : { - "bust" : "72", - "height" : "149", - "hip" : "75", - "waist" : "54", - "weight" : "36" - } - }, { - "alias_name" : "ナイト☆バニーギャル", - "alias_name_display" : "ナイト☆バニーギャル", - "hash" : "1cf8e7776ccc0f5695f30fc7fced834d", - "id" : "3426401", - "profile" : { - "bust" : "72", - "height" : "149", - "hip" : "75", - "waist" : "54", - "weight" : "36" - } - }, { - "alias_name" : "ナイト☆バニーギャル", - "alias_name_display" : "ナイト☆バニーギャル", - "hash" : "e254aad0347bd2ef9680f7313b26dbe9", - "id" : "3526402", - "profile" : { - "bust" : "72", - "height" : "149", - "hip" : "75", - "waist" : "54", - "weight" : "36" - } - }, { - "alias_name" : "ちょこっと☆ギャル", - "alias_name_display" : "ちょこっと☆ギャル", - "hash" : "8bcbc5887f1256838f7ea35c8cd3d351", - "id" : "3429801", - "profile" : { - "bust" : "72", - "height" : "149", - "hip" : "75", - "waist" : "54", - "weight" : "36" - } - }, { - "alias_name" : "ちょこっと☆ギャル", - "alias_name_display" : "ちょこっと☆ギャル", - "hash" : "efc88c60acb3ff739690c459246d436b", - "id" : "3529802", - "profile" : { - "bust" : "72", - "height" : "149", - "hip" : "75", - "waist" : "54", - "weight" : "36" - } - }, { - "alias_name" : "シンデレラドリーム", - "alias_name_display" : "シンデレラドリーム", - "hash" : "71e2444ffa964bc4222f3afcb11af6b7", - "id" : "3433301", - "profile" : { - "bust" : "72", - "height" : "149", - "hip" : "75", - "waist" : "54", - "weight" : "36" - } - }, { - "alias_name" : "シンデレラドリーム", - "alias_name_display" : "シンデレラドリーム", - "hash" : "10b54a98f80b3573f8a64e1f4f1517e8", - "id" : "3533302", - "profile" : { - "bust" : "72", - "height" : "149", - "hip" : "75", - "waist" : "54", - "weight" : "36" - } - }, { - "alias_name" : "とびきり☆ニューイヤー", - "alias_name_display" : "とびきり☆ニューイヤー", - "event" : [ { - "event_id" : 726, - "event_name" : "ドリームLIVEフェスティバル新春SP" - } ], - "hash" : "44d249234243ecd62758f1119e59670e", - "id" : "3437201", - "profile" : { - "bust" : "72", - "height" : "149", - "hip" : "75", - "waist" : "54", - "weight" : "36" - } - }, { - "alias_name" : "とびきり☆ニューイヤー", - "alias_name_display" : "とびきり☆ニューイヤー", - "event" : [ { - "event_id" : 726, - "event_name" : "ドリームLIVEフェスティバル新春SP" - } ], - "hash" : "2c6f68904c5e8c886b60fcc1c01682df", - "id" : "3537202", - "profile" : { - "bust" : "72", - "height" : "149", - "hip" : "75", - "waist" : "54", - "weight" : "36" - } - } ], - "idol_id" : 168, - "idol_name" : "城ヶ崎莉嘉", - "idol_name_display" : "城ヶ崎莉嘉", - "units" : [ { - "id" : "50", - "name" : "ファミリアツイン" - }, { - "id" : "107", - "name" : "ロッキングガール" - }, { - "id" : "149", - "name" : "凸レーション" - }, { - "id" : "158", - "name" : "ハイカラサクラ" - }, { - "id" : "186", - "name" : "LittlePOPS" - }, { - "id" : "204", - "name" : "トロピカル☆スターズ" - }, { - "id" : "213", - "name" : "CINDERELLA PROJECT" - } ] -}, { - "aliases" : [ { - "hash" : "9ffc7c24c1e76bcb922e7b8c1b40fd66", - "id" : "3200701", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "hash" : "d76f5e3183e18f6bdc72e2c29842942b", - "id" : "3300702", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "UKスタイル", - "alias_name_display" : "UKスタイル", - "event" : [ { - "event_id" : 502, - "event_name" : "アイドルLIVEツアーinイギリス" - } ], - "hash" : "95f215e70e1bcf2d255ba093a53fc51a", - "id" : "3208401", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "UKスタイル", - "alias_name_display" : "UKスタイル", - "event" : [ { - "event_id" : 502, - "event_name" : "アイドルLIVEツアーinイギリス" - } ], - "hash" : "908dafec84548cbf8c75842184023c91", - "id" : "3308402", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "ロワイヤルスタイル", - "alias_name_display" : "ロワイヤルスタイル", - "event" : [ { - "event_id" : 802, - "event_name" : "第2回アイドルLIVEロワイヤル" - } ], - "hash" : "fde23288979f4580f5deedef60cb501a", - "id" : "3214501", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "ロワイヤルスタイル", - "alias_name_display" : "ロワイヤルスタイル", - "event" : [ { - "event_id" : 802, - "event_name" : "第2回アイドルLIVEロワイヤル" - } ], - "hash" : "cb50684de885349d4aa14adf1dadd9b4", - "id" : "3314502", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "スリーピースパンクス", - "alias_name_display" : "スリーピースパンクス", - "hash" : "1eb173041b3bf713cef78c219d521b76", - "id" : "3217401", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "スリーピースパンクス", - "alias_name_display" : "スリーピースパンクス", - "hash" : "e3ac8ab38a64054351d2e1299a9c6e3f", - "id" : "3317402", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "秋色温泉", - "alias_name_display" : "秋色温泉", - "hash" : "287daffde22b976c189b75a094c22f5f", - "id" : "3220101", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "秋色温泉", - "alias_name_display" : "秋色温泉", - "hash" : "6a8b35f08771019784ec87e3be87d16f", - "id" : "3320102", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "ハウリングダンサー", - "alias_name_display" : "ハウリングダンサー", - "event" : [ { - "event_id" : "024", - "event_name" : "第24回プロダクションマッチフェスティバル" - } ], - "hash" : "5b35d5a564068d9a4eabb7d3e29fd334", - "id" : "3325802", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "T.B.オーシャン", - "alias_name_display" : "T.B.オーシャン", - "event" : [ { - "event_id" : 1508, - "event_name" : "チーム対抗トークバトルショー in SUMMER" - } ], - "hash" : "492f86962e67178c2c2faf2915bc2dd9", - "id" : "3230201", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "T.B.オーシャン", - "alias_name_display" : "T.B.オーシャン", - "event" : [ { - "event_id" : 1508, - "event_name" : "チーム対抗トークバトルショー in SUMMER" - } ], - "hash" : "4400c05573122de64ed14d39a7bdcbc9", - "id" : "3330202", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "ゴーフォーヴィクトリー", - "alias_name_display" : "ゴーフォーヴィクトリー", - "hash" : "1a488f8bab8e0efae8f777f10b21dc6a", - "id" : "3233001", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "ゴーフォーヴィクトリー", - "alias_name_display" : "ゴーフォーヴィクトリー", - "hash" : "da406e1470dbda90d69b49c622d235fb", - "id" : "3333002", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "アッパーテンション", - "alias_name_display" : "アッパーテンション", - "event" : [ { - "event_id" : 505, - "event_name" : "アイドルLIVEツアーinバリ島" - } ], - "hash" : "7f26f3f44be087e5e97f699666dacd54", - "id" : "3407601", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "アッパーテンション", - "alias_name_display" : "アッパーテンション", - "event" : [ { - "event_id" : 505, - "event_name" : "アイドルLIVEツアーinバリ島" - } ], - "hash" : "5106e3a24d812aa9ed097708c9166f18", - "id" : "3507602", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "パワフル・ロワイヤル", - "alias_name_display" : "パワフル・ロワイヤル", - "event" : [ { - "event_id" : 812, - "event_name" : "第12回アイドルLIVEロワイヤル" - } ], - "hash" : "884598c99e835d4c6306f2dac9e083a5", - "id" : "3423701", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "パワフル・ロワイヤル", - "alias_name_display" : "パワフル・ロワイヤル", - "event" : [ { - "event_id" : 812, - "event_name" : "第12回アイドルLIVEロワイヤル" - } ], - "hash" : "35d6ff804d2fa7642da6cf413c94feed", - "id" : "3523702", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "クルーエルクロウ", - "alias_name_display" : "クルーエルクロウ", - "event" : [ { - "event_id" : 1901, - "event_name" : "童話公演 気まぐれアリスと不思議の国" - } ], - "hash" : "922f70e6284cac4909124ad587aad82f", - "id" : "3431201", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "クルーエルクロウ", - "alias_name_display" : "クルーエルクロウ", - "event" : [ { - "event_id" : 1901, - "event_name" : "童話公演 気まぐれアリスと不思議の国" - } ], - "hash" : "1ee716e4411265ade87048be92422d1d", - "id" : "3531202", - "profile" : { - "bust" : "81", - "height" : "156", - "hip" : "81", - "waist" : "55", - "weight" : "45" - } - } ], - "idol_id" : 169, - "idol_name" : "仙崎恵磨", - "idol_name_display" : "仙崎恵磨", - "units" : [ { - "id" : "112", - "name" : "ギャルズパーティー" - }, { - "id" : "154", - "name" : "秋色温泉" - }, { - "id" : "170", - "name" : "UKスタイル" - }, { - "id" : "208", - "name" : "ロワイヤルスタイル" - } ] -}, { - "aliases" : [ { - "hash" : "2ba9aa6bf49a8d75a1cf6ae3a131de74", - "id" : "3200801", - "profile" : { - "bust" : "80", - "height" : "148", - "hip" : "82", - "waist" : "60", - "weight" : "40" - } - }, { - "hash" : "3d0085be5f6add9c2d1eb2b484a02fbf", - "id" : "3300802", - "profile" : { - "bust" : "80", - "height" : "148", - "hip" : "82", - "waist" : "60", - "weight" : "40" - } - }, { - "alias_name" : "湯けむり紀行", - "alias_name_display" : "湯けむり紀行", - "hash" : "0fea5846d80145b07c4a992b77c85922", - "id" : "3231301", - "profile" : { - "bust" : "80", - "height" : "148", - "hip" : "82", - "waist" : "60", - "weight" : "40" - } - }, { - "alias_name" : "湯けむり紀行", - "alias_name_display" : "湯けむり紀行", - "hash" : "d963e9624da72e02228195db55a89219", - "id" : "3331302", - "profile" : { - "bust" : "80", - "height" : "148", - "hip" : "82", - "waist" : "60", - "weight" : "40" - } - }, { - "alias_name" : "全力熱血", - "alias_name_display" : "全力熱血", - "hash" : "5d7f41615b787cc7d3ab3a1f377fd936", - "id" : "3402801", - "profile" : { - "bust" : "80", - "height" : "148", - "hip" : "82", - "waist" : "60", - "weight" : "40" - } - }, { - "alias_name" : "全力熱血", - "alias_name_display" : "全力熱血", - "hash" : "363a16627a484afd5d6a40db7fc761e8", - "id" : "3502802", - "profile" : { - "bust" : "80", - "height" : "148", - "hip" : "82", - "waist" : "60", - "weight" : "40" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "36ba64d4547b90ed4a529998022f112f", - "id" : "3406701", - "profile" : { - "bust" : "80", - "height" : "148", - "hip" : "82", - "waist" : "60", - "weight" : "40" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "3c7d9f82c5984e67fc79749cfe3869cc", - "id" : "3506702", - "profile" : { - "bust" : "80", - "height" : "148", - "hip" : "82", - "waist" : "60", - "weight" : "40" - } - }, { - "alias_name" : "暴走☆花嫁", - "alias_name_display" : "暴走☆花嫁", - "hash" : "8f54ab4a77270d5799c31edff371e945", - "id" : "3407101", - "profile" : { - "bust" : "80", - "height" : "148", - "hip" : "82", - "waist" : "60", - "weight" : "40" - } - }, { - "alias_name" : "暴走☆花嫁", - "alias_name_display" : "暴走☆花嫁", - "hash" : "1d1b4eba1b4f97930d41cd9bd6e8c45e", - "id" : "3507102", - "profile" : { - "bust" : "80", - "height" : "148", - "hip" : "82", - "waist" : "60", - "weight" : "40" - } - }, { - "alias_name" : "バーニングハート", - "alias_name_display" : "バーニングハート", - "hash" : "1a41c58580b5f380f9ae1080f1bd01c5", - "id" : "3410101", - "profile" : { - "bust" : "80", - "height" : "148", - "hip" : "82", - "waist" : "60", - "weight" : "40" - } - }, { - "alias_name" : "バーニングハート", - "alias_name_display" : "バーニングハート", - "hash" : "1c048cc1b02c25f972f8147b14c2c19b", - "id" : "3510102", - "profile" : { - "bust" : "80", - "height" : "148", - "hip" : "82", - "waist" : "60", - "weight" : "40" - } - }, { - "alias_name" : "プールサイドクイーン", - "alias_name_display" : "プールサイドクイーン", - "hash" : "0a49238fa8e0451304135adbc957705c", - "id" : "3415601", - "profile" : { - "bust" : "80", - "height" : "148", - "hip" : "82", - "waist" : "60", - "weight" : "40" - } - }, { - "alias_name" : "プールサイドクイーン", - "alias_name_display" : "プールサイドクイーン", - "hash" : "50a3f572c3c17067f6a37ba5b2b58da4", - "id" : "3515602", - "profile" : { - "bust" : "80", - "height" : "148", - "hip" : "82", - "waist" : "60", - "weight" : "40" - } - }, { - "alias_name" : "3rdアニバーサリー", - "alias_name_display" : "3rdアニバーサリー", - "event" : [ { - "event_id" : 415, - "event_name" : "アイドルプロデュース the 3rd Anniversary" - } ], - "hash" : "99e843a15f7f2073232bb045f5f59baf", - "id" : "3419601", - "profile" : { - "bust" : "80", - "height" : "148", - "hip" : "82", - "waist" : "60", - "weight" : "40" - } - }, { - "alias_name" : "3rdアニバーサリー", - "alias_name_display" : "3rdアニバーサリー", - "event" : [ { - "event_id" : 415, - "event_name" : "アイドルプロデュース the 3rd Anniversary" - } ], - "hash" : "b5432fa0d132d27b02039aea00da87d3", - "id" : "3519602", - "profile" : { - "bust" : "80", - "height" : "148", - "hip" : "82", - "waist" : "60", - "weight" : "40" - } - }, { - "alias_name" : "3rdアニバーサリー・S", - "alias_name_display" : "3rdアニバーサリー・S", - "event" : [ { - "event_id" : 415, - "event_name" : "アイドルプロデュース the 3rd Anniversary" - } ], - "hash" : "bd500c4da4d4b7e1ca5e54f813177ed6", - "id" : "3419701", - "profile" : { - "bust" : "80", - "height" : "148", - "hip" : "82", - "waist" : "60", - "weight" : "40" - } - }, { - "alias_name" : "3rdアニバーサリー・S", - "alias_name_display" : "3rdアニバーサリー・S", - "event" : [ { - "event_id" : 415, - "event_name" : "アイドルプロデュース the 3rd Anniversary" - } ], - "hash" : "e27d096696fd3ffd8baaf504f526864d", - "id" : "3519702", - "profile" : { - "bust" : "80", - "height" : "148", - "hip" : "82", - "waist" : "60", - "weight" : "40" - } - }, { - "alias_name" : "放課後トライ", - "alias_name_display" : "放課後トライ", - "event" : [ { - "event_id" : "022", - "event_name" : "第22回プロダクションマッチフェスティバル" - } ], - "hash" : "bdc9cebae8d2f4aa75cbe2ac77876726", - "id" : "3424301", - "profile" : { - "bust" : "80", - "height" : "148", - "hip" : "82", - "waist" : "60", - "weight" : "40" - } - }, { - "alias_name" : "放課後トライ", - "alias_name_display" : "放課後トライ", - "event" : [ { - "event_id" : "022", - "event_name" : "第22回プロダクションマッチフェスティバル" - } ], - "hash" : "40577520ba74911e5233e36f28eac68d", - "id" : "3524302", - "profile" : { - "bust" : "80", - "height" : "148", - "hip" : "82", - "waist" : "60", - "weight" : "40" - } - }, { - "alias_name" : "シンデレラドリーム", - "alias_name_display" : "シンデレラドリーム", - "hash" : "c3eca737aebfe22448304ff91b552b4e", - "id" : "3429701", - "profile" : { - "bust" : "80", - "height" : "148", - "hip" : "82", - "waist" : "60", - "weight" : "40" - } - }, { - "alias_name" : "シンデレラドリーム", - "alias_name_display" : "シンデレラドリーム", - "hash" : "a90865f4f336e89e69fe55f45137c05d", - "id" : "3529702", - "profile" : { - "bust" : "80", - "height" : "148", - "hip" : "82", - "waist" : "60", - "weight" : "40" - } - }, { - "alias_name" : "シャイニーブルーム", - "alias_name_display" : "シャイニーブルーム", - "hash" : "2149410a8b10577676fd93962e65e72d", - "id" : "3432401", - "profile" : { - "bust" : "80", - "height" : "148", - "hip" : "82", - "waist" : "60", - "weight" : "40" - } - }, { - "alias_name" : "シャイニーブルーム", - "alias_name_display" : "シャイニーブルーム", - "hash" : "9c04faffee708181d50dca5884d3fb1e", - "id" : "3532402", - "profile" : { - "bust" : "80", - "height" : "148", - "hip" : "82", - "waist" : "60", - "weight" : "40" - } - } ], - "idol_id" : 170, - "idol_name" : "日野茜", - "idol_name_display" : "日野茜", - "units" : [ { - "id" : "15", - "name" : "サイキックヒーツ" - }, { - "id" : "148", - "name" : "チアフルボンバーズ" - }, { - "id" : "153", - "name" : "Positive Passion" - }, { - "id" : "190", - "name" : "サマプリ" - }, { - "id" : "203", - "name" : "ゼッケンズ" - }, { - "id" : "212", - "name" : "CINDERELLA GIRLS" - } ] -}, { - "aliases" : [ { - "hash" : "e36b10a6274efaa7836e5b54f9a47ffa", - "id" : "3200901", - "profile" : { - "bust" : "91", - "height" : "182", - "hip" : "86", - "waist" : "64", - "weight" : "60" - } - }, { - "hash" : "67fb7b5c31807c904c0fac573a185733", - "id" : "3300902", - "profile" : { - "bust" : "91", - "height" : "184", - "hip" : "87", - "waist" : "65", - "weight" : "61" - } - }, { - "alias_name" : "京町乙女", - "alias_name_display" : "京町乙女", - "event" : [ { - "event_id" : 402, - "event_name" : "アイドルプロデュース京町編" - } ], - "hash" : "27768e59fb3f6273046deb807ed464d1", - "id" : "3206801", - "profile" : { - "bust" : "92", - "height" : "186", - "hip" : "87", - "waist" : "65", - "weight" : "61.5" - } - }, { - "alias_name" : "京町乙女", - "alias_name_display" : "京町乙女", - "event" : [ { - "event_id" : 402, - "event_name" : "アイドルプロデュース京町編" - } ], - "hash" : "d114ead173608ffaaa6d3865c7cf001b", - "id" : "3306802", - "profile" : { - "bust" : "92", - "height" : "186.2", - "hip" : "87", - "waist" : "65", - "weight" : "61.5" - } - }, { - "alias_name" : "ナイトパーティー", - "alias_name_display" : "ナイトパーティー", - "hash" : "bf0808c3848632a3eae9e4f9ac3b2d2d", - "id" : "3224001", - "profile" : { - "bust" : "92", - "height" : "186.2", - "hip" : "87", - "waist" : "65", - "weight" : "61.5" - } - }, { - "alias_name" : "ナイトパーティー", - "alias_name_display" : "ナイトパーティー", - "hash" : "91323eeabe7830ac1134cb7cd640abed", - "id" : "3324002", - "profile" : { - "bust" : "92", - "height" : "186.2", - "hip" : "87", - "waist" : "65", - "weight" : "61.5" - } - }, { - "alias_name" : "ラブリープリンセス", - "alias_name_display" : "ラブリープリンセス", - "event" : [ { - "event_id" : 201, - "event_name" : "アイドルサバイバル" - } ], - "hash" : "13d35f865ec01a0b67bd9298ce18fde1", - "id" : "3400801", - "profile" : { - "bust" : "91", - "height" : "184.5", - "hip" : "86", - "waist" : "64", - "weight" : "61" - } - }, { - "alias_name" : "ラブリープリンセス", - "alias_name_display" : "ラブリープリンセス", - "event" : [ { - "event_id" : 201, - "event_name" : "アイドルサバイバル" - } ], - "hash" : "8d11496014d025ce5a9d6b29798cbb28", - "id" : "3500802", - "profile" : { - "bust" : "91", - "height" : "185", - "hip" : "87", - "waist" : "65", - "weight" : "61.5" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "98e1c97f110919d0776c498088d498a2", - "id" : "3402601", - "profile" : { - "bust" : "91", - "height" : "182", - "hip" : "86", - "waist" : "64", - "weight" : "60" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "805521caf23ffffe33935a44a3c3bb9f", - "id" : "3502602", - "profile" : { - "bust" : "91", - "height" : "184", - "hip" : "87", - "waist" : "65", - "weight" : "61" - } - }, { - "alias_name" : "キューティーメイド", - "alias_name_display" : "キューティーメイド", - "hash" : "681565d6931e8942e07aa96914bae78a", - "id" : "3403001", - "profile" : { - "bust" : "92", - "height" : "185.5", - "hip" : "87", - "waist" : "65", - "weight" : "61" - } - }, { - "alias_name" : "キューティーメイド", - "alias_name_display" : "キューティーメイド", - "hash" : "c838c2b59f98bf1c5a788e6f735da0b1", - "id" : "3503002", - "profile" : { - "bust" : "92", - "height" : "186", - "hip" : "87", - "waist" : "65", - "weight" : "61.5" - } - }, { - "alias_name" : "ゴシックプリンセス", - "alias_name_display" : "ゴシックプリンセス", - "hash" : "f4932a6e93017b3dde0189c4b2c765af", - "id" : "3405301", - "profile" : { - "bust" : "92", - "height" : "186", - "hip" : "87", - "waist" : "65", - "weight" : "61.5" - } - }, { - "alias_name" : "ゴシックプリンセス", - "alias_name_display" : "ゴシックプリンセス", - "hash" : "4ce06aedcdc3452d744898d33dacf148", - "id" : "3505302", - "profile" : { - "bust" : "92", - "height" : "186.2", - "hip" : "87", - "waist" : "65", - "weight" : "61.5" - } - }, { - "alias_name" : "ニューイヤープリンセス", - "alias_name_display" : "ニューイヤープリンセス", - "hash" : "a913d3efecf382ac9179ba1073df905c", - "id" : "3410801", - "profile" : { - "bust" : "92", - "height" : "186.2", - "hip" : "87", - "waist" : "65", - "weight" : "61.5" - } - }, { - "alias_name" : "ニューイヤープリンセス", - "alias_name_display" : "ニューイヤープリンセス", - "hash" : "eccdc3e012a96c6c4f69cebfb8774946", - "id" : "3510802", - "profile" : { - "bust" : "92", - "height" : "186.2", - "hip" : "87", - "waist" : "65", - "weight" : "61.5" - } - }, { - "alias_name" : "ワンダフルマジック", - "alias_name_display" : "ワンダフルマジック", - "hash" : "e4cf30032d3151909b22ee89cdc5a16d", - "id" : "3412401", - "profile" : { - "bust" : "92", - "height" : "186.2", - "hip" : "87", - "waist" : "65", - "weight" : "61.5" - } - }, { - "alias_name" : "ワンダフルマジック", - "alias_name_display" : "ワンダフルマジック", - "hash" : "5dda31240aff8ba47ce49dc2b381009e", - "id" : "3512402", - "profile" : { - "bust" : "92", - "height" : "186.2", - "hip" : "87", - "waist" : "65", - "weight" : "61.5" - } - }, { - "alias_name" : "びびっど☆モデル", - "alias_name_display" : "びびっど☆モデル", - "event" : [ { - "event_id" : 1203, - "event_name" : "目指せきらきらモデル アイドルチャレンジ" - } ], - "hash" : "3f3e317ba9be747dc17321a725664108", - "id" : "3417601", - "profile" : { - "bust" : "92", - "height" : "186.2", - "hip" : "87", - "waist" : "65", - "weight" : "61.5" - } - }, { - "alias_name" : "びびっど☆モデル", - "alias_name_display" : "びびっど☆モデル", - "event" : [ { - "event_id" : 1203, - "event_name" : "目指せきらきらモデル アイドルチャレンジ" - } ], - "hash" : "90977ab9ab78e092fa509d5313e532b4", - "id" : "3517602", - "profile" : { - "bust" : "92", - "height" : "186.2", - "hip" : "87", - "waist" : "65", - "weight" : "61.5" - } - }, { - "alias_name" : "はぴはぴデビル", - "alias_name_display" : "はぴはぴデビル", - "hash" : "db62b848e999ac5f02979ed4a00c2f9e", - "id" : "3421201", - "profile" : { - "bust" : "92", - "height" : "186.2", - "hip" : "87", - "waist" : "65", - "weight" : "61.5" - } - }, { - "alias_name" : "はぴはぴデビル", - "alias_name_display" : "はぴはぴデビル", - "hash" : "c10030d3b38bd695450f91a5177e5eb4", - "id" : "3521202", - "profile" : { - "bust" : "92", - "height" : "186.2", - "hip" : "87", - "waist" : "65", - "weight" : "61.5" - } - }, { - "alias_name" : "凸レーション", - "alias_name_display" : "凸レーション", - "hash" : "a289fc73aa922d84f7917c8eb21428e0", - "id" : "3522702", - "profile" : { - "bust" : "91", - "height" : "185", - "hip" : "87", - "waist" : "65", - "weight" : "61.5" - } - }, { - "alias_name" : "ぐれいと博士", - "alias_name_display" : "ぐれいと博士", - "event" : [ { - "event_id" : 523, - "event_name" : "鋼鉄公演 きらりんロボ -襲来!コスメティア帝国-" - } ], - "hash" : "8318239c3aa1500c359147deafe04495", - "id" : "3429101", - "profile" : { - "bust" : "92", - "height" : "186.2", - "hip" : "87", - "waist" : "65", - "weight" : "61.5" - } - }, { - "alias_name" : "ぐれいと博士", - "alias_name_display" : "ぐれいと博士", - "event" : [ { - "event_id" : 523, - "event_name" : "鋼鉄公演 きらりんロボ -襲来!コスメティア帝国-" - } ], - "hash" : "2d2bd33c37a21e558eb0c9fab16a8776", - "id" : "3529102", - "profile" : { - "bust" : "92", - "height" : "186.2", - "hip" : "87", - "waist" : "65", - "weight" : "61.5" - } - }, { - "alias_name" : "はぴはぴウェディング", - "alias_name_display" : "はぴはぴウェディング", - "hash" : "885b27d2b03761b4a9dc6fbaa438b094", - "id" : "3432901", - "profile" : { - "bust" : "92", - "height" : "186.2", - "hip" : "87", - "waist" : "65", - "weight" : "61.5" - } - }, { - "alias_name" : "はぴはぴウェディング", - "alias_name_display" : "はぴはぴウェディング", - "hash" : "076806b1ad6aeae0acb06132c6bb6929", - "id" : "3532902", - "profile" : { - "bust" : "92", - "height" : "186.2", - "hip" : "87", - "waist" : "65", - "weight" : "61.5" - } - }, { - "alias_name" : "ぷちっと☆スウィート", - "alias_name_display" : "ぷちっと☆スウィート", - "hash" : "45cb660714f8f59460d315604f53b314", - "id" : "3435601", - "profile" : { - "bust" : "92", - "height" : "186.2", - "hip" : "87", - "waist" : "65", - "weight" : "61.5" - } - }, { - "alias_name" : "ぷちっと☆スウィート", - "alias_name_display" : "ぷちっと☆スウィート", - "hash" : "ded71c9bb18c1052fb0640e53f40ea04", - "id" : "3535602", - "profile" : { - "bust" : "92", - "height" : "186.2", - "hip" : "87", - "waist" : "65", - "weight" : "61.5" - } - }, { - "alias_name" : "ろまんすジェット", - "alias_name_display" : "ろまんすジェット", - "event" : [ { - "event_id" : "034", - "event_name" : "第34回プロダクションマッチフェスティバル" - } ], - "hash" : "e34a8cecd07eb4a178c622a6d45f7f50", - "id" : "3438801", - "profile" : { - "bust" : "92", - "height" : "186.2", - "hip" : "87", - "waist" : "65", - "weight" : "61.5" - } - }, { - "alias_name" : "ろまんすジェット", - "alias_name_display" : "ろまんすジェット", - "event" : [ { - "event_id" : "034", - "event_name" : "第34回プロダクションマッチフェスティバル" - } ], - "hash" : "d5d01a505a212461f49c618591073cf5", - "id" : "3538802", - "profile" : { - "bust" : "92", - "height" : "186.2", - "hip" : "87", - "waist" : "65", - "weight" : "61.5" - } - } ], - "idol_id" : 171, - "idol_name" : "諸星きらり", - "idol_name_display" : "諸星きらり", - "units" : [ { - "id" : "76", - "name" : "HappyHappyTwin" - }, { - "id" : "91", - "name" : "京町乙女" - }, { - "id" : "149", - "name" : "凸レーション" - }, { - "id" : "191", - "name" : "Love Yell" - }, { - "id" : "204", - "name" : "トロピカル☆スターズ" - }, { - "id" : "213", - "name" : "CINDERELLA PROJECT" - } ] -}, { - "aliases" : [ { - "hash" : "2af54b80c9be9ffde43904089069d877", - "id" : "3201001", - "profile" : { - "bust" : "86", - "height" : "161", - "hip" : "88", - "waist" : "58", - "weight" : "46" - } - }, { - "hash" : "7fedbb6c9f01d1ac667ae1978cc2b3f5", - "id" : "3301002", - "profile" : { - "bust" : "86", - "height" : "161", - "hip" : "88", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "ビーチガール", - "alias_name_display" : "ビーチガール", - "event" : [ { - "event_id" : 1703, - "event_name" : "アイドルプロデュース おいでよ!海の家" - } ], - "hash" : "342e254d0cc96070e10c97f6cb744832", - "id" : "3324402", - "profile" : { - "bust" : "88", - "height" : "161", - "hip" : "88", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "ビーチガール・S", - "alias_name_display" : "ビーチガール・S", - "event" : [ { - "event_id" : 1703, - "event_name" : "アイドルプロデュース おいでよ!海の家" - } ], - "hash" : "d8a1b40c7f18b184bf206fef877eb34b", - "id" : "3324502", - "profile" : { - "bust" : "88", - "height" : "161", - "hip" : "88", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "スイートバレンタイン", - "alias_name_display" : "スイートバレンタイン", - "event" : [ { - "event_id" : 103, - "event_name" : "バレンタインパーティー" - } ], - "hash" : "ff99cc10da22220420bd52ef92a8d135", - "id" : "3400901", - "profile" : { - "bust" : "86", - "height" : "161", - "hip" : "88", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "スイートバレンタイン", - "alias_name_display" : "スイートバレンタイン", - "event" : [ { - "event_id" : 103, - "event_name" : "バレンタインパーティー" - } ], - "hash" : "bab8fa10fde7b5a62fbd398303d36b79", - "id" : "3500902", - "profile" : { - "bust" : "86", - "height" : "161", - "hip" : "88", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "シンデレラガール", - "alias_name_display" : "シンデレラガール", - "hash" : "034377942c947a0ecf549e21e8b0c6be", - "id" : "3403201", - "profile" : { - "bust" : "88", - "height" : "161", - "hip" : "88", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "シンデレラガール", - "alias_name_display" : "シンデレラガール", - "hash" : "9c90f735aa3431dd6c1d78ed0fd2e4e1", - "id" : "3503202", - "profile" : { - "bust" : "88", - "height" : "161", - "hip" : "88", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "アニバーサリープリンセス", - "alias_name_display" : "アニバーサリープリンセス", - "event" : [ { - "event_id" : 403, - "event_name" : "アイドルプロデュース the 1st Anniversary" - } ], - "hash" : "11a50ed020b2340a327caced00b51b5c", - "id" : "3403901", - "profile" : { - "bust" : "88", - "height" : "161", - "hip" : "88", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "アニバーサリープリンセス", - "alias_name_display" : "アニバーサリープリンセス", - "event" : [ { - "event_id" : 403, - "event_name" : "アイドルプロデュース the 1st Anniversary" - } ], - "hash" : "f769e6ce429482fbbdcde602a3c3309f", - "id" : "3503902", - "profile" : { - "bust" : "88", - "height" : "161", - "hip" : "88", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "25d5b934facd2e7774950f0739677c73", - "id" : "3404801", - "profile" : { - "bust" : "86", - "height" : "161", - "hip" : "88", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "06aed4cfdfc8300c80e61e7baca31e71", - "id" : "3504802", - "profile" : { - "bust" : "86", - "height" : "161", - "hip" : "88", - "waist" : "58", - "weight" : "46" - } - }, { - "alias_name" : "プリンセスバニー", - "alias_name_display" : "プリンセスバニー", - "hash" : "4d4a2e681beeaef1858015166d1f9f5d", - "id" : "3408501", - "profile" : { - "bust" : "88", - "height" : "161", - "hip" : "88", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "プリンセスバニー", - "alias_name_display" : "プリンセスバニー", - "hash" : "7fbb40e99cb6fea16823cf3fc7c50cd1", - "id" : "3508502", - "profile" : { - "bust" : "88", - "height" : "161", - "hip" : "88", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "ふわふわメイド", - "alias_name_display" : "ふわふわメイド", - "hash" : "7efecb6b29255582379ee2a4256047e9", - "id" : "3412001", - "profile" : { - "bust" : "88", - "height" : "161", - "hip" : "88", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "ふわふわメイド", - "alias_name_display" : "ふわふわメイド", - "hash" : "4aa960584fafb8410e3ed44ae8ca26b2", - "id" : "3512002", - "profile" : { - "bust" : "88", - "height" : "161", - "hip" : "88", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "シンデレラドリーム", - "alias_name_display" : "シンデレラドリーム", - "hash" : "d7ca177e2b83a24a67c781c249182925", - "id" : "3416701", - "profile" : { - "bust" : "88", - "height" : "161", - "hip" : "88", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "シンデレラドリーム", - "alias_name_display" : "シンデレラドリーム", - "hash" : "faa98701e195ebc5d0d2da415e0e0d73", - "id" : "3516702", - "profile" : { - "bust" : "88", - "height" : "161", - "hip" : "88", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "スウィートトゥスウィート", - "alias_name_display" : "スウィートトゥスウィート", - "hash" : "db8c193960aff622a0cec3ce39ee9989", - "id" : "3419001", - "profile" : { - "bust" : "88", - "height" : "161", - "hip" : "88", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "スウィートトゥスウィート", - "alias_name_display" : "スウィートトゥスウィート", - "hash" : "1a77b2cd5134093cda454212e9c4847e", - "id" : "3519002", - "profile" : { - "bust" : "88", - "height" : "161", - "hip" : "88", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "いっしょにえいっ!", - "alias_name_display" : "いっしょにえいっ!", - "hash" : "2c022714d96cafa06555dd9f20f40835", - "id" : "3423201", - "profile" : { - "bust" : "88", - "height" : "161", - "hip" : "88", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "いっしょにえいっ!", - "alias_name_display" : "いっしょにえいっ!", - "hash" : "55ddccc958d486c8347c694072d1d5cc", - "id" : "3523202", - "profile" : { - "bust" : "88", - "height" : "161", - "hip" : "88", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "夏のお届け", - "alias_name_display" : "夏のお届け", - "event" : [ { - "event_id" : 1703, - "event_name" : "アイドルプロデュース おいでよ!海の家" - } ], - "hash" : "e82f2ce53d0dcc09860e503516407b62", - "id" : "3425301", - "profile" : { - "bust" : "88", - "height" : "161", - "hip" : "88", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "夏のお届け", - "alias_name_display" : "夏のお届け", - "event" : [ { - "event_id" : 1703, - "event_name" : "アイドルプロデュース おいでよ!海の家" - } ], - "hash" : "7dd0c60d4ab37295a9201125ad8c178c", - "id" : "3525302", - "profile" : { - "bust" : "88", - "height" : "161", - "hip" : "88", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "スウィートサマーナイト", - "alias_name_display" : "スウィートサマーナイト", - "event" : [ { - "event_id" : 722, - "event_name" : "夏祭りDEドリームLIVEフェスティバル" - } ], - "hash" : "a3ba1315b2d8f4e7feee004b53c16b49", - "id" : "3433401", - "profile" : { - "bust" : "88", - "height" : "161", - "hip" : "88", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "スウィートサマーナイト", - "alias_name_display" : "スウィートサマーナイト", - "event" : [ { - "event_id" : 722, - "event_name" : "夏祭りDEドリームLIVEフェスティバル" - } ], - "hash" : "8f7c91d9148d3f3651eaa326b49052d9", - "id" : "3533402", - "profile" : { - "bust" : "88", - "height" : "161", - "hip" : "88", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "ホーリーリゾートナイト", - "alias_name_display" : "ホーリーリゾートナイト", - "hash" : "eea0e747d0a7d87755a66d81a80348ae", - "id" : "3437001", - "profile" : { - "bust" : "88", - "height" : "161", - "hip" : "88", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "ホーリーリゾートナイト", - "alias_name_display" : "ホーリーリゾートナイト", - "hash" : "b188b901992026dee7ba0b274a118a60", - "id" : "3537002", - "profile" : { - "bust" : "88", - "height" : "161", - "hip" : "88", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "空のおくりもの", - "alias_name_display" : "空のおくりもの", - "hash" : "0b19c1ca9b7472477bc293eed4ce1cee", - "id" : "3440101", - "profile" : { - "bust" : "88", - "height" : "161", - "hip" : "88", - "waist" : "57", - "weight" : "47" - } - }, { - "alias_name" : "空のおくりもの", - "alias_name_display" : "空のおくりもの", - "hash" : "36516e31833083116be887f5b74985ab", - "id" : "3540102", - "profile" : { - "bust" : "88", - "height" : "161", - "hip" : "88", - "waist" : "57", - "weight" : "47" - } - } ], - "idol_id" : 172, - "idol_name" : "十時愛梨", - "idol_name_display" : "十時愛梨", - "units" : [ { - "id" : "25", - "name" : "スウィートラヴァーズ" - }, { - "id" : "69", - "name" : "Ai's" - }, { - "id" : "188", - "name" : "Sweetches" - }, { - "id" : "203", - "name" : "ゼッケンズ" - }, { - "id" : "205", - "name" : "シンデレラガール" - }, { - "id" : "212", - "name" : "CINDERELLA GIRLS" - } ] -}, { - "aliases" : [ { - "hash" : "f382a774439acb0a89167e8d2923b630", - "id" : "3201101", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "86", - "waist" : "55", - "weight" : "43" - } - }, { - "hash" : "6099b368b8bf9782cebecb0e44a41232", - "id" : "3301102", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "86", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "聖夜", - "alias_name_display" : "聖夜", - "event" : [ { - "event_id" : 101, - "event_name" : "星降るクリスマス" - } ], - "hash" : "440a03665b455c7bcfd3dc0d98b824ff", - "id" : "3202101", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "86", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "聖夜", - "alias_name_display" : "聖夜", - "event" : [ { - "event_id" : 101, - "event_name" : "星降るクリスマス" - } ], - "hash" : "266144cbb02edc5958e0568f11557c93", - "id" : "3302102", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "86", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "トラベルスタイル ブラウン", - "alias_name_display" : "トラベルスタイル ブラウン", - "hash" : "efa6d6607cc1a82d8a87acf0a8169655", - "id" : "3206901", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "86", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "トラベルスタイル グリーン", - "alias_name_display" : "トラベルスタイル グリーン", - "hash" : "4c715aaa8d5e67763d6331346aa91542", - "id" : "3206902", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "86", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "トラベルスタイル ピンク", - "alias_name_display" : "トラベルスタイル ピンク", - "hash" : "6f18bdce1306af0aee712f91b24e5dab", - "id" : "3206903", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "86", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "トラベルスタイル ブラック", - "alias_name_display" : "トラベルスタイル ブラック", - "hash" : "b5b11e6049d261c4d9dba48f90a74c4a", - "id" : "3206904", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "86", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "アラビアンドレス グリーン", - "alias_name_display" : "アラビアンドレス グリーン", - "hash" : "1df9b2a1e81a015409d89ec644398a92", - "id" : "3306905", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "86", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "アラビアンドレス ブルー", - "alias_name_display" : "アラビアンドレス ブルー", - "hash" : "3272befd917e2a1d74d75acb4a64ce7f", - "id" : "3306906", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "86", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "アラビアンドレス レッド", - "alias_name_display" : "アラビアンドレス レッド", - "hash" : "16ddd10637f3d70cd0d3b670be191dc3", - "id" : "3306907", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "86", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "アラビアンドレス ブラック", - "alias_name_display" : "アラビアンドレス ブラック", - "hash" : "7a208c090db9ec7b3dab29117f4346a5", - "id" : "3306908", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "86", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "アラビアンドレス ゴールド", - "alias_name_display" : "アラビアンドレス ゴールド", - "hash" : "e7643a2c9f27cad76554e8aab9c3bb93", - "id" : "3306909", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "86", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "新春コレクション", - "alias_name_display" : "新春コレクション", - "hash" : "2021128f14e5bfcadd20a0973ba8258f", - "id" : "3214801", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "86", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "新春コレクション", - "alias_name_display" : "新春コレクション", - "hash" : "5be5890f3317c441ebc4e2ad70cf75ae", - "id" : "3314802", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "86", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ファーバースタイル", - "alias_name_display" : "ファーバースタイル", - "hash" : "282db7b7a41863a84f27da47ee75e6ad", - "id" : "3227301", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "86", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ファーバースタイル", - "alias_name_display" : "ファーバースタイル", - "hash" : "f2b082328617efad27ef7189c8f93e41", - "id" : "3327302", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "86", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ハッピーブライダル", - "alias_name_display" : "ハッピーブライダル", - "event" : [ { - "event_id" : 105, - "event_name" : "きらめくブライダルショー" - } ], - "hash" : "bd67c595320eec896b20adab8246cb8e", - "id" : "3401801", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "86", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ハッピーブライダル", - "alias_name_display" : "ハッピーブライダル", - "event" : [ { - "event_id" : 105, - "event_name" : "きらめくブライダルショー" - } ], - "hash" : "f6e881bd45b483f16c9c307a6f5fa9d5", - "id" : "3501802", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "86", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "千夜一夜舞姫", - "alias_name_display" : "千夜一夜舞姫", - "hash" : "1724e54c47dc1c5ea2665d24939bf5ae", - "id" : "3403510", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "86", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "千夜一夜舞姫", - "alias_name_display" : "千夜一夜舞姫", - "hash" : "21fe7b8165a5785bf25cce6710551f3d", - "id" : "3503511", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "86", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "カーニバルスター", - "alias_name_display" : "カーニバルスター", - "hash" : "b5a925908f8d9e107c00ed5da3053525", - "id" : "3407301", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "86", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "カーニバルスター", - "alias_name_display" : "カーニバルスター", - "hash" : "22df606bb7b17d4cf58ace3ebcfcc1b2", - "id" : "3507302", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "86", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ヴォヤージュ・プリンセス", - "alias_name_display" : "ヴォヤージュ・プリンセス", - "event" : [ { - "event_id" : 511, - "event_name" : "幻想公演 黒薔薇姫のヴォヤージュ" - } ], - "hash" : "98eb2fe3e133b3729a7da417a389d155", - "id" : "3413201", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "86", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "ヴォヤージュ・プリンセス", - "alias_name_display" : "ヴォヤージュ・プリンセス", - "event" : [ { - "event_id" : 511, - "event_name" : "幻想公演 黒薔薇姫のヴォヤージュ" - } ], - "hash" : "e565c552c27db943ad6db5ba2a7240da", - "id" : "3513202", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "86", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "南国オニむすめ", - "alias_name_display" : "南国オニむすめ", - "event" : [ { - "event_id" : 711, - "event_name" : "福は内DEドリームLIVEフェスティバル" - } ], - "hash" : "186891067486fac1d3dd32ee5d8f60ec", - "id" : "3421101", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "86", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "南国オニむすめ", - "alias_name_display" : "南国オニむすめ", - "event" : [ { - "event_id" : 711, - "event_name" : "福は内DEドリームLIVEフェスティバル" - } ], - "hash" : "e03ea585a3b44cc59e7f35e478f6aad6", - "id" : "3521102", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "86", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "熱情のメイド", - "alias_name_display" : "熱情のメイド", - "hash" : "641de8e01bf4bcb53165e17e145c394c", - "id" : "3426201", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "86", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "熱情のメイド", - "alias_name_display" : "熱情のメイド", - "hash" : "930037884bb22ac36fac0509dba6b7c1", - "id" : "3526202", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "86", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "おいしい体験", - "alias_name_display" : "おいしい体験", - "event" : [ { - "event_id" : 1706, - "event_name" : "アイドルプロデュース 北の大地と夜さりの祭" - } ], - "hash" : "6324dade2fc264bb093679995e739ce4", - "id" : "3432701", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "86", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "おいしい体験", - "alias_name_display" : "おいしい体験", - "event" : [ { - "event_id" : 1706, - "event_name" : "アイドルプロデュース 北の大地と夜さりの祭" - } ], - "hash" : "110ecffefb66009043e02b1e6a502ee8", - "id" : "3532702", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "86", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "おいしい笑顔", - "alias_name_display" : "おいしい笑顔", - "event" : [ { - "event_id" : 1706, - "event_name" : "アイドルプロデュース 北の大地と夜さりの祭" - } ], - "hash" : "af2db88bb0e5382e09ddab757998481c", - "id" : "3432801", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "86", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "おいしい笑顔", - "alias_name_display" : "おいしい笑顔", - "event" : [ { - "event_id" : 1706, - "event_name" : "アイドルプロデュース 北の大地と夜さりの祭" - } ], - "hash" : "eb1010945d948fdbdef7deff5dd0f069", - "id" : "3532802", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "86", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "真冬の太陽", - "alias_name_display" : "真冬の太陽", - "event" : [ { - "event_id" : 1510, - "event_name" : "チーム対抗トークバトルショー オールスターSP" - } ], - "hash" : "7c92b21376459ee6864ed24def650fcf", - "id" : "3436901", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "86", - "waist" : "55", - "weight" : "43" - } - }, { - "alias_name" : "真冬の太陽", - "alias_name_display" : "真冬の太陽", - "event" : [ { - "event_id" : 1510, - "event_name" : "チーム対抗トークバトルショー オールスターSP" - } ], - "hash" : "6dc2df6837dff054aaaf63c93f92256b", - "id" : "3536902", - "profile" : { - "bust" : "84", - "height" : "155", - "hip" : "86", - "waist" : "55", - "weight" : "43" - } - } ], - "idol_id" : 173, - "idol_name" : "ナターリア", - "idol_name_display" : "ナターリア", - "units" : [ { - "id" : "31", - "name" : "ソル・カマル" - }, { - "id" : "125", - "name" : "ユア・フレンズ" - } ] -}, { - "aliases" : [ { - "hash" : "df8b4a9675f16bdc8379a8e5f59a20ad", - "id" : "3201201", - "profile" : { - "bust" : "83", - "height" : "160", - "hip" : "89", - "waist" : "60", - "weight" : "46" - } - }, { - "hash" : "ba2d9fc0c2d88014e875358f245b6e05", - "id" : "3301202", - "profile" : { - "bust" : "83", - "height" : "160", - "hip" : "89", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "ストイックビューティ", - "alias_name_display" : "ストイックビューティ", - "hash" : "54f6c52057b1ee155af0f9b3d9675a25", - "id" : "3207901", - "profile" : { - "bust" : "83", - "height" : "160", - "hip" : "89", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "ストイックビューティ", - "alias_name_display" : "ストイックビューティ", - "hash" : "f00fcf5ddeafeaa2451d5ba27d270ba8", - "id" : "3307902", - "profile" : { - "bust" : "83", - "height" : "160", - "hip" : "89", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "バニーガール", - "alias_name_display" : "バニーガール", - "hash" : "014c596e3f63a4268e1b08f577c7e4aa", - "id" : "3212501", - "profile" : { - "bust" : "83", - "height" : "160", - "hip" : "89", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "バニーガール", - "alias_name_display" : "バニーガール", - "hash" : "8693753c14c0e5dbff7021c880c8b4ad", - "id" : "3312502", - "profile" : { - "bust" : "83", - "height" : "160", - "hip" : "89", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "アダルティフェミニン", - "alias_name_display" : "アダルティフェミニン", - "hash" : "29afbffb42d6fabb1c7cd796b1bec5db", - "id" : "3217501", - "profile" : { - "bust" : "83", - "height" : "160", - "hip" : "89", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "アダルティフェミニン", - "alias_name_display" : "アダルティフェミニン", - "hash" : "f36f9067bd023981ae6ec8081920ac3c", - "id" : "3317502", - "profile" : { - "bust" : "83", - "height" : "160", - "hip" : "89", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "T.B.チアーズ", - "alias_name_display" : "T.B.チアーズ", - "event" : [ { - "event_id" : 1504, - "event_name" : "第4回チーム対抗トークバトルショー" - } ], - "hash" : "dacd3782cc330619e7b2505008e4527a", - "id" : "3225601", - "profile" : { - "bust" : "83", - "height" : "160", - "hip" : "89", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "T.B.チアーズ", - "alias_name_display" : "T.B.チアーズ", - "event" : [ { - "event_id" : 1504, - "event_name" : "第4回チーム対抗トークバトルショー" - } ], - "hash" : "cdc01ceb8c597ab043e4a0c4b1d611f5", - "id" : "3325602", - "profile" : { - "bust" : "83", - "height" : "160", - "hip" : "89", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "ビター&スウィート", - "alias_name_display" : "ビター&スウィート", - "hash" : "08c8021dd356090cf6e6c67ce364c6c5", - "id" : "3227601", - "profile" : { - "bust" : "83", - "height" : "160", - "hip" : "89", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "ビター&スウィート", - "alias_name_display" : "ビター&スウィート", - "hash" : "52f9319275299caf7bea5eeb1617c8fe", - "id" : "3327602", - "profile" : { - "bust" : "83", - "height" : "160", - "hip" : "89", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "サマービーチ", - "alias_name_display" : "サマービーチ", - "hash" : "73aafeafe35337515de4a8ea14811e4b", - "id" : "3230101", - "profile" : { - "bust" : "83", - "height" : "160", - "hip" : "89", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "サマービーチ", - "alias_name_display" : "サマービーチ", - "hash" : "2dff8b1eb623fe157e9994f11a8c4272", - "id" : "3330102", - "profile" : { - "bust" : "83", - "height" : "160", - "hip" : "89", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "湯けむり紀行", - "alias_name_display" : "湯けむり紀行", - "hash" : "5cdaef85b672564c81aae4d446c0d1fe", - "id" : "3233301", - "profile" : { - "bust" : "83", - "height" : "160", - "hip" : "89", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "湯けむり紀行", - "alias_name_display" : "湯けむり紀行", - "hash" : "cae2391c1b618fc95dd8b35d508b240e", - "id" : "3333302", - "profile" : { - "bust" : "83", - "height" : "160", - "hip" : "89", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "明日へのフライト", - "alias_name_display" : "明日へのフライト", - "event" : [ { - "event_id" : "015", - "event_name" : "第15回プロダクションマッチフェスティバル" - } ], - "hash" : "caa77dc7a7f1de14f95233f4f6fab724", - "id" : "3411701", - "profile" : { - "bust" : "83", - "height" : "160", - "hip" : "89", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "明日へのフライト", - "alias_name_display" : "明日へのフライト", - "event" : [ { - "event_id" : "015", - "event_name" : "第15回プロダクションマッチフェスティバル" - } ], - "hash" : "1b437d9ca380059cc9b380c5f2354511", - "id" : "3511702", - "profile" : { - "bust" : "83", - "height" : "160", - "hip" : "89", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "紅葉色の風", - "alias_name_display" : "紅葉色の風", - "event" : [ { - "event_id" : 709, - "event_name" : "第9回ドリームLIVEフェスティバル" - } ], - "hash" : "9086936700dd75591e0cfa109819e211", - "id" : "3418401", - "profile" : { - "bust" : "83", - "height" : "160", - "hip" : "89", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "紅葉色の風", - "alias_name_display" : "紅葉色の風", - "event" : [ { - "event_id" : 709, - "event_name" : "第9回ドリームLIVEフェスティバル" - } ], - "hash" : "497bf3092363f016268cf298c5b99146", - "id" : "3518402", - "profile" : { - "bust" : "83", - "height" : "160", - "hip" : "89", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "ストイック・ロワイヤル", - "alias_name_display" : "ストイック・ロワイヤル", - "event" : [ { - "event_id" : 813, - "event_name" : "第13回アイドルLIVEロワイヤル" - } ], - "hash" : "f9c3a2a5ede2924c4dc5b9829481e789", - "id" : "3425101", - "profile" : { - "bust" : "83", - "height" : "160", - "hip" : "89", - "waist" : "60", - "weight" : "46" - } - }, { - "alias_name" : "ストイック・ロワイヤル", - "alias_name_display" : "ストイック・ロワイヤル", - "event" : [ { - "event_id" : 813, - "event_name" : "第13回アイドルLIVEロワイヤル" - } ], - "hash" : "53c6e0d594d07c777aa0cceeb7e425b8", - "id" : "3525102", - "profile" : { - "bust" : "83", - "height" : "160", - "hip" : "89", - "waist" : "60", - "weight" : "46" - } - } ], - "idol_id" : 174, - "idol_name" : "相馬夏美", - "idol_name_display" : "相馬夏美", - "units" : [ { - "id" : "159", - "name" : "パステル・カクテル" - }, { - "id" : "167", - "name" : "ロマンティックツアーズ" - } ] -}, { - "aliases" : [ { - "hash" : "631512ff6dcc396969055e90d1430a6d", - "id" : "3201301", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "91", - "waist" : "57", - "weight" : "46" - } - }, { - "hash" : "569f02751f9ff485931fd93d5c1c81a3", - "id" : "3301302", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "91", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "メイドコレクション", - "alias_name_display" : "メイドコレクション", - "hash" : "25efbdc5d98716f254d4b615ab27b120", - "id" : "3206101", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "91", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "メイドコレクション", - "alias_name_display" : "メイドコレクション", - "hash" : "e5c75d9bfc61b4443d47ab881673d791", - "id" : "3306102", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "91", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "バリスタイル", - "alias_name_display" : "バリスタイル", - "event" : [ { - "event_id" : 505, - "event_name" : "アイドルLIVEツアーinバリ島" - } ], - "hash" : "da57276b8114b62e0baf4b45abe791c1", - "id" : "3211101", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "91", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "バリスタイル", - "alias_name_display" : "バリスタイル", - "event" : [ { - "event_id" : 505, - "event_name" : "アイドルLIVEツアーinバリ島" - } ], - "hash" : "d961c9e96664a1780df29863d264ac1f", - "id" : "3311102", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "91", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ティーフレーバーメイド", - "alias_name_display" : "ティーフレーバーメイド", - "hash" : "a3b8047efc21fd4c75c213c46c6ef4ba", - "id" : "3214601", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "91", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ティーフレーバーメイド", - "alias_name_display" : "ティーフレーバーメイド", - "hash" : "8c102de57f48bcbcf728f33a178490ab", - "id" : "3314602", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "91", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "クリスマスプレゼント", - "alias_name_display" : "クリスマスプレゼント", - "hash" : "8d214505b61bc523bb8d2c961f6cc893", - "id" : "3220601", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "91", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "クリスマスプレゼント", - "alias_name_display" : "クリスマスプレゼント", - "hash" : "c7c70767452bba98330bdfe14af0138b", - "id" : "3320602", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "91", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "フレッシュライフ", - "alias_name_display" : "フレッシュライフ", - "hash" : "9627ead9b834427fda965a722669ff1f", - "id" : "3223601", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "91", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "フレッシュライフ", - "alias_name_display" : "フレッシュライフ", - "hash" : "c5f8a13d83c343ba3e671d9d48766c10", - "id" : "3323602", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "91", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "チェンジタイム", - "alias_name_display" : "チェンジタイム", - "hash" : "70c0319dc14965836d47b43a0eb0231b", - "id" : "3228601", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "91", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "チェンジタイム", - "alias_name_display" : "チェンジタイム", - "hash" : "219b941411f0d170137aa0dbc575da04", - "id" : "3328602", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "91", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ぷちぷちフレッシュ", - "alias_name_display" : "ぷちぷちフレッシュ", - "hash" : "d8cdf407e9f473221b46a24aefb9ff5f", - "id" : "3234001", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "91", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "ぷちぷちフレッシュ", - "alias_name_display" : "ぷちぷちフレッシュ", - "hash" : "b2b089c4cb75471d8e24873800d34d05", - "id" : "3334002", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "91", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "甘いひととき", - "alias_name_display" : "甘いひととき", - "event" : [ { - "event_id" : 805, - "event_name" : "第5回アイドルLIVEロワイヤル" - } ], - "hash" : "46622b85db85b604f09c7761c3c961e9", - "id" : "3415101", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "91", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "甘いひととき", - "alias_name_display" : "甘いひととき", - "event" : [ { - "event_id" : 805, - "event_name" : "第5回アイドルLIVEロワイヤル" - } ], - "hash" : "a109b84c1e6b327f91f5844d4ae07435", - "id" : "3515102", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "91", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "小悪魔ヴァンパイア", - "alias_name_display" : "小悪魔ヴァンパイア", - "event" : [ { - "event_id" : 522, - "event_name" : "魔界公演 幽鬱女王とハロウィンの祝祭" - } ], - "hash" : "28333045bbce33e1dc610922ae42c0b3", - "id" : "3427301", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "91", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "小悪魔ヴァンパイア", - "alias_name_display" : "小悪魔ヴァンパイア", - "event" : [ { - "event_id" : 522, - "event_name" : "魔界公演 幽鬱女王とハロウィンの祝祭" - } ], - "hash" : "c4aec86eca5285bc73297ce6233f9afc", - "id" : "3527302", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "91", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "至福のボリューム", - "alias_name_display" : "至福のボリューム", - "hash" : "045dd1edac3495d38bb59e44b36b637e", - "id" : "3436201", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "91", - "waist" : "57", - "weight" : "46" - } - }, { - "alias_name" : "至福のボリューム", - "alias_name_display" : "至福のボリューム", - "hash" : "fdce336ae18237fdf6e8811aa42d5444", - "id" : "3536202", - "profile" : { - "bust" : "86", - "height" : "162", - "hip" : "91", - "waist" : "57", - "weight" : "46" - } - } ], - "idol_id" : 175, - "idol_name" : "槙原志保", - "idol_name_display" : "槙原志保", - "units" : [ { - "id" : "42", - "name" : "バリスタイル" - }, { - "id" : "119", - "name" : "フランメ・ルージュ" - }, { - "id" : "183", - "name" : "メイドコレクション" - } ] -}, { - "aliases" : [ { - "hash" : "e01a1807c67d2fc57825c3acbb06bb0f", - "id" : "3201401", - "profile" : { - "bust" : "81", - "height" : "155", - "hip" : "81", - "waist" : "56", - "weight" : "42" - } - }, { - "hash" : "48bd1e2b725fbcbabf8836f901a797c9", - "id" : "3301402", - "profile" : { - "bust" : "81", - "height" : "155", - "hip" : "81", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "制服ブルー", - "alias_name_display" : "制服ブルー", - "hash" : "e6e076765046fdfe473b17ecce87b081", - "id" : "3203901", - "profile" : { - "bust" : "81", - "height" : "155", - "hip" : "81", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "制服レッド", - "alias_name_display" : "制服レッド", - "hash" : "a64b6c62e587d382e6b7f13898f731b1", - "id" : "3203902", - "profile" : { - "bust" : "81", - "height" : "155", - "hip" : "81", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "制服グリーン", - "alias_name_display" : "制服グリーン", - "hash" : "dd098abcaa327e6d1b3e87f5ae0ca630", - "id" : "3203903", - "profile" : { - "bust" : "81", - "height" : "155", - "hip" : "81", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "制服ベージュ", - "alias_name_display" : "制服ベージュ", - "hash" : "f55b11ed9a3bae507601e01b808d7fcd", - "id" : "3203904", - "profile" : { - "bust" : "81", - "height" : "155", - "hip" : "81", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "ピンクダイヤモンド765", - "alias_name_display" : "ピンクダイヤモンド765", - "hash" : "14b07aa0c4c86609327f71c9fe3234a7", - "id" : "3303905", - "profile" : { - "bust" : "81", - "height" : "155", - "hip" : "81", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "パウダースノーホワイティ", - "alias_name_display" : "パウダースノーホワイティ", - "hash" : "ccbf1bef431de35d49f91b4b33e1c071", - "id" : "3303906", - "profile" : { - "bust" : "81", - "height" : "155", - "hip" : "81", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "ファイアオパール76ct", - "alias_name_display" : "ファイアオパール76ct", - "hash" : "67304a52ef511f0a1d867ed94bc34733", - "id" : "3303907", - "profile" : { - "bust" : "81", - "height" : "155", - "hip" : "81", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "メイデンインブラック", - "alias_name_display" : "メイデンインブラック", - "hash" : "8a7da5a3b073b6a34f903f467c226483", - "id" : "3303908", - "profile" : { - "bust" : "81", - "height" : "155", - "hip" : "81", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "ギルデッドマドモアゼル", - "alias_name_display" : "ギルデッドマドモアゼル", - "hash" : "4361c6d74eb62bd54389b51636065de7", - "id" : "3303909", - "profile" : { - "bust" : "81", - "height" : "155", - "hip" : "81", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "臆病な天使", - "alias_name_display" : "臆病な天使", - "hash" : "06dafddc14d8e0d892dd9894823096bb", - "id" : "3400201", - "profile" : { - "bust" : "81", - "height" : "155", - "hip" : "81", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "臆病な天使", - "alias_name_display" : "臆病な天使", - "hash" : "f1e541422f10cf882ca4a0193ceafbcb", - "id" : "3500202", - "profile" : { - "bust" : "81", - "height" : "155", - "hip" : "81", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "癒しの天使", - "alias_name_display" : "癒しの天使", - "hash" : "cf3f8b4f5eb92c82d7db89d358fbb222", - "id" : "3401310", - "profile" : { - "bust" : "81", - "height" : "155", - "hip" : "81", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "癒しの天使", - "alias_name_display" : "癒しの天使", - "hash" : "0621e2c41675c75cc29d0b2a6a3fad12", - "id" : "3501311", - "profile" : { - "bust" : "81", - "height" : "155", - "hip" : "81", - "waist" : "56", - "weight" : "42" - } - }, { - "alias_name" : "アニス衣装", - "alias_name_display" : "アニス衣装", - "hash" : "a627c4d6e7a223402aa99e1d174dd7ce", - "id" : "3501902", - "profile" : { - "bust" : "81", - "height" : "155", - "hip" : "81", - "waist" : "56", - "weight" : "42" - } - } ], - "idol_id" : 176, - "idol_name" : "萩原雪歩", - "idol_name_display" : "萩原雪歩" -}, { - "aliases" : [ { - "hash" : "c161cb226474f58f3393e3d6aabfc9b2", - "id" : "3201501", - "profile" : { - "bust" : "78", - "height" : "158", - "hip" : "77", - "waist" : "55", - "weight" : "42" - } - }, { - "hash" : "11db690ef5aec1cd0cd9c9e2aedfb2cd", - "id" : "3301502", - "profile" : { - "bust" : "78", - "height" : "158", - "hip" : "77", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "パワフル双子妹", - "alias_name_display" : "パワフル双子妹", - "hash" : "65b0cc4a2afc8a4e9e4c194b4aecd267", - "id" : "3401001", - "profile" : { - "bust" : "78", - "height" : "158", - "hip" : "77", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "パワフル双子妹", - "alias_name_display" : "パワフル双子妹", - "hash" : "d604961da03fd554556bf5ec24eae13a", - "id" : "3501002", - "profile" : { - "bust" : "78", - "height" : "158", - "hip" : "77", - "waist" : "55", - "weight" : "42" - } - } ], - "idol_id" : 177, - "idol_name" : "双海亜美", - "idol_name_display" : "双海亜美" -}, { - "aliases" : [ { - "hash" : "421870a18b78ade223c811fe38edf51e", - "id" : "3201601", - "profile" : { - "bust" : "78", - "height" : "158", - "hip" : "77", - "waist" : "55", - "weight" : "42" - } - }, { - "hash" : "ee397ecc1f873bb6d986acb05e5b9916", - "id" : "3301602", - "profile" : { - "bust" : "78", - "height" : "158", - "hip" : "77", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "パワフル双子姉", - "alias_name_display" : "パワフル双子姉", - "hash" : "cb92615dedf1df3d4b4971b256254d39", - "id" : "3401101", - "profile" : { - "bust" : "78", - "height" : "158", - "hip" : "77", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "パワフル双子姉", - "alias_name_display" : "パワフル双子姉", - "hash" : "7174c14b3213a89f45cc5375eb1fff5a", - "id" : "3501102", - "profile" : { - "bust" : "78", - "height" : "158", - "hip" : "77", - "waist" : "55", - "weight" : "42" - } - } ], - "idol_id" : 178, - "idol_name" : "双海真美", - "idol_name_display" : "双海真美" -}, { - "aliases" : [ { - "hash" : "0fd395f1fae53b17c20854465439ca1d", - "id" : "3201701", - "profile" : { - "bust" : "86", - "height" : "161", - "hip" : "83", - "waist" : "55", - "weight" : "45" - } - }, { - "hash" : "8370a885b84e453d5dc557005de4fd17", - "id" : "3301702", - "profile" : { - "bust" : "86", - "height" : "161", - "hip" : "83", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "制服オレンジ", - "alias_name_display" : "制服オレンジ", - "hash" : "ebb522ecfbd377353069ebd81c91fb16", - "id" : "3202801", - "profile" : { - "bust" : "86", - "height" : "161", - "hip" : "83", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "制服レッド", - "alias_name_display" : "制服レッド", - "hash" : "6b3065f0a962d20cff5d955a3dbc4314", - "id" : "3202802", - "profile" : { - "bust" : "86", - "height" : "161", - "hip" : "83", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "制服ブルー", - "alias_name_display" : "制服ブルー", - "hash" : "04c878def0b7d2bb8dda5f2f756ab53d", - "id" : "3202803", - "profile" : { - "bust" : "86", - "height" : "161", - "hip" : "83", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "制服グリーン", - "alias_name_display" : "制服グリーン", - "hash" : "a79af47eae779e8bea9e4d779616fb2f", - "id" : "3202804", - "profile" : { - "bust" : "86", - "height" : "161", - "hip" : "83", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "ピンクダイヤモンド765", - "alias_name_display" : "ピンクダイヤモンド765", - "hash" : "5831bf84cae2c72d1e14475a3d10a4fd", - "id" : "3302805", - "profile" : { - "bust" : "86", - "height" : "161", - "hip" : "83", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "ギルデッドマドモアゼル", - "alias_name_display" : "ギルデッドマドモアゼル", - "hash" : "a9ed29a9f57923d25c99a7439136e26d", - "id" : "3302806", - "profile" : { - "bust" : "86", - "height" : "161", - "hip" : "83", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "メイデンインブラック", - "alias_name_display" : "メイデンインブラック", - "hash" : "9ba2da0a155f2a20df7aa61826b2883c", - "id" : "3302807", - "profile" : { - "bust" : "86", - "height" : "161", - "hip" : "83", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "ベイビーブルージャガー", - "alias_name_display" : "ベイビーブルージャガー", - "hash" : "ff56ed5787d63f5a6a73ab567452cd49", - "id" : "3302808", - "profile" : { - "bust" : "86", - "height" : "161", - "hip" : "83", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "トワイライトサファリ", - "alias_name_display" : "トワイライトサファリ", - "hash" : "ff83137129b578d3c62b7fc2a984de58", - "id" : "3302809", - "profile" : { - "bust" : "86", - "height" : "161", - "hip" : "83", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "才能無限大", - "alias_name_display" : "才能無限大", - "hash" : "5ee38ca4a88f80c624feb7fb5cec0ba7", - "id" : "3400710", - "profile" : { - "bust" : "86", - "height" : "161", - "hip" : "83", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "才能無限大", - "alias_name_display" : "才能無限大", - "hash" : "92102c96222350216184f02f45dc7d84", - "id" : "3500711", - "profile" : { - "bust" : "86", - "height" : "161", - "hip" : "83", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "眠れる姫君", - "alias_name_display" : "眠れる姫君", - "hash" : "3c0f40fdeba208d3fc9eee9cd90d8843", - "id" : "3401601", - "profile" : { - "bust" : "86", - "height" : "161", - "hip" : "83", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "眠れる姫君", - "alias_name_display" : "眠れる姫君", - "hash" : "d68e4b36d3e506fbbb958c0bf1434867", - "id" : "3501602", - "profile" : { - "bust" : "86", - "height" : "161", - "hip" : "83", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "1stセレブレイト", - "alias_name_display" : "1stセレブレイト", - "hash" : "76b1355f3c75a11675d5e5fbd7477c36", - "id" : "3504202", - "profile" : { - "bust" : "86", - "height" : "161", - "hip" : "83", - "waist" : "55", - "weight" : "45" - } - }, { - "alias_name" : "ワンフォーオール", - "alias_name_display" : "ワンフォーオール", - "hash" : "c504c5f878ac85da8d9ccb70ef44fbe4", - "id" : "3514302", - "profile" : { - "bust" : "86", - "height" : "161", - "hip" : "83", - "waist" : "55", - "weight" : "45" - } - } ], - "idol_id" : 179, - "idol_name" : "星井美希", - "idol_name_display" : "星井美希" -}, { - "aliases" : [ { - "hash" : "20f58f004dad13ba670869c921dc32b9", - "id" : "3201801", - "profile" : { - "bust" : "95", - "height" : "163", - "hip" : "87", - "waist" : "60", - "weight" : "53" - } - }, { - "hash" : "25ddc32b1b3797057b29bf5fb6de3092", - "id" : "3301802", - "profile" : { - "bust" : "95", - "height" : "163", - "hip" : "87", - "waist" : "58", - "weight" : "51" - } - }, { - "alias_name" : "姉御肌", - "alias_name_display" : "姉御肌", - "hash" : "092c5efbc6e0e566958d7fc507821e0d", - "id" : "3204701", - "profile" : { - "bust" : "95", - "height" : "163", - "hip" : "87", - "waist" : "58", - "weight" : "51" - } - }, { - "alias_name" : "姉御肌", - "alias_name_display" : "姉御肌", - "hash" : "9457d1172204c626ec30cfe67f0bdb32", - "id" : "3304702", - "profile" : { - "bust" : "95", - "height" : "163", - "hip" : "87", - "waist" : "58", - "weight" : "51" - } - }, { - "alias_name" : "ビーチパラダイス", - "alias_name_display" : "ビーチパラダイス", - "hash" : "92248cecce1bf62b838a10634aac23b8", - "id" : "3212001", - "profile" : { - "bust" : "95", - "height" : "163", - "hip" : "87", - "waist" : "58", - "weight" : "51" - } - }, { - "alias_name" : "ビーチパラダイス", - "alias_name_display" : "ビーチパラダイス", - "hash" : "7a94d2b2aa7c63db4e6653313a31546a", - "id" : "3312002", - "profile" : { - "bust" : "95", - "height" : "163", - "hip" : "87", - "waist" : "58", - "weight" : "51" - } - }, { - "alias_name" : "硬派乙女", - "alias_name_display" : "硬派乙女", - "hash" : "0e90856cd6e941b956af90027490d868", - "id" : "3403401", - "profile" : { - "bust" : "95", - "height" : "163", - "hip" : "87", - "waist" : "58", - "weight" : "51" - } - }, { - "alias_name" : "硬派乙女", - "alias_name_display" : "硬派乙女", - "hash" : "f3186c8e8aafb4bc748f8eb08ced1d45", - "id" : "3503402", - "profile" : { - "bust" : "95", - "height" : "163", - "hip" : "87", - "waist" : "58", - "weight" : "51" - } - }, { - "alias_name" : "はにかみバレンタイン", - "alias_name_display" : "はにかみバレンタイン", - "event" : [ { - "event_id" : 405, - "event_name" : "アイドルプロデュース バレンタイン編" - } ], - "hash" : "918ea661dcd0221ad5cb7a69c5f3822d", - "id" : "3405101", - "profile" : { - "bust" : "95", - "height" : "163", - "hip" : "87", - "waist" : "58", - "weight" : "51" - } - }, { - "alias_name" : "はにかみバレンタイン", - "alias_name_display" : "はにかみバレンタイン", - "event" : [ { - "event_id" : 405, - "event_name" : "アイドルプロデュース バレンタイン編" - } ], - "hash" : "f87ee02a7edd0c6e4ec18b561de3979d", - "id" : "3505102", - "profile" : { - "bust" : "95", - "height" : "163", - "hip" : "87", - "waist" : "58", - "weight" : "51" - } - }, { - "alias_name" : "走志走愛", - "alias_name_display" : "走志走愛", - "event" : [ { - "event_id" : 510, - "event_name" : "ひな祭りLIVEツアーカーニバル" - } ], - "hash" : "232fa3d7136a3427103cbcf6e5ba7e2f", - "id" : "3411901", - "profile" : { - "bust" : "95", - "height" : "163", - "hip" : "87", - "waist" : "58", - "weight" : "51" - } - }, { - "alias_name" : "走志走愛", - "alias_name_display" : "走志走愛", - "event" : [ { - "event_id" : 510, - "event_name" : "ひな祭りLIVEツアーカーニバル" - } ], - "hash" : "66bd2e19f6654df596306b2b8602b1d2", - "id" : "3511902", - "profile" : { - "bust" : "95", - "height" : "163", - "hip" : "87", - "waist" : "58", - "weight" : "51" - } - }, { - "alias_name" : "百獣の女王", - "alias_name_display" : "百獣の女王", - "hash" : "a017f0aeb84bba360795e5c8ff59bcdd", - "id" : "3417001", - "profile" : { - "bust" : "95", - "height" : "163", - "hip" : "87", - "waist" : "58", - "weight" : "51" - } - }, { - "alias_name" : "百獣の女王", - "alias_name_display" : "百獣の女王", - "hash" : "b9b7cc2cbce8aaf53fe3bda1a44996ff", - "id" : "3517002", - "profile" : { - "bust" : "95", - "height" : "163", - "hip" : "87", - "waist" : "58", - "weight" : "51" - } - }, { - "alias_name" : "初日の出変装", - "alias_name_display" : "初日の出変装", - "hash" : "348d7861a7a71b576d14599b1c55f26c", - "id" : "3420601", - "profile" : { - "bust" : "95", - "height" : "163", - "hip" : "87", - "waist" : "58", - "weight" : "51" - } - }, { - "alias_name" : "初日の出変装", - "alias_name_display" : "初日の出変装", - "hash" : "1ba2870e74e721957e0a2730047f9ce7", - "id" : "3520602", - "profile" : { - "bust" : "95", - "height" : "163", - "hip" : "87", - "waist" : "58", - "weight" : "51" - } - }, { - "alias_name" : "炎天の女王", - "alias_name_display" : "炎天の女王", - "hash" : "c59fb577d23dbfce5a08c9b53e6947c8", - "id" : "3425401", - "profile" : { - "bust" : "95", - "height" : "163", - "hip" : "87", - "waist" : "58", - "weight" : "51" - } - }, { - "alias_name" : "炎天の女王", - "alias_name_display" : "炎天の女王", - "hash" : "f00fb6b6b7eb49b5ebaae24580a0b917", - "id" : "3525402", - "profile" : { - "bust" : "95", - "height" : "163", - "hip" : "87", - "waist" : "58", - "weight" : "51" - } - }, { - "alias_name" : "4thアニバーサリー", - "alias_name_display" : "4thアニバーサリー", - "event" : [ { - "event_id" : 1704, - "event_name" : "アイドルプロデュース the 4th Anniversary" - } ], - "hash" : "62558d3fb34d3585e7d45da67c3a796e", - "id" : "3428001", - "profile" : { - "bust" : "95", - "height" : "163", - "hip" : "87", - "waist" : "58", - "weight" : "51" - } - }, { - "alias_name" : "4thアニバーサリー", - "alias_name_display" : "4thアニバーサリー", - "event" : [ { - "event_id" : 1704, - "event_name" : "アイドルプロデュース the 4th Anniversary" - } ], - "hash" : "1c907965f5315da790eee90f018e1662", - "id" : "3528002", - "profile" : { - "bust" : "95", - "height" : "163", - "hip" : "87", - "waist" : "58", - "weight" : "51" - } - }, { - "alias_name" : "4thアニバーサリー・S", - "alias_name_display" : "4thアニバーサリー・S", - "event" : [ { - "event_id" : 1704, - "event_name" : "アイドルプロデュース the 4th Anniversary" - } ], - "hash" : "b0f137bebf1a85a9e07a83ee645abae2", - "id" : "3428101", - "profile" : { - "bust" : "95", - "height" : "163", - "hip" : "87", - "waist" : "58", - "weight" : "51" - } - }, { - "alias_name" : "4thアニバーサリー・S", - "alias_name_display" : "4thアニバーサリー・S", - "event" : [ { - "event_id" : 1704, - "event_name" : "アイドルプロデュース the 4th Anniversary" - } ], - "hash" : "d1cadffd8525c34cf2351c5c99b288a5", - "id" : "3528102", - "profile" : { - "bust" : "95", - "height" : "163", - "hip" : "87", - "waist" : "58", - "weight" : "51" - } - }, { - "alias_name" : "ワン・サマー・カーニバル", - "alias_name_display" : "ワン・サマー・カーニバル", - "hash" : "7315e47ffb4d283653056bb6cf405b6b", - "id" : "3434001", - "profile" : { - "bust" : "95", - "height" : "163", - "hip" : "87", - "waist" : "58", - "weight" : "51" - } - }, { - "alias_name" : "ワン・サマー・カーニバル", - "alias_name_display" : "ワン・サマー・カーニバル", - "hash" : "edecc7f8cfda4fdf6274a9bd2754d2b8", - "id" : "3534002", - "profile" : { - "bust" : "95", - "height" : "163", - "hip" : "87", - "waist" : "58", - "weight" : "51" - } - }, { - "alias_name" : "シンデレラドリーム", - "alias_name_display" : "シンデレラドリーム", - "hash" : "c7083266edd7edc700f07c910f77b6f3", - "id" : "3437701", - "profile" : { - "bust" : "95", - "height" : "163", - "hip" : "87", - "waist" : "58", - "weight" : "51" - } - }, { - "alias_name" : "シンデレラドリーム", - "alias_name_display" : "シンデレラドリーム", - "hash" : "2198eb80f3fc029ca19d09a514a66a30", - "id" : "3537702", - "profile" : { - "bust" : "95", - "height" : "163", - "hip" : "87", - "waist" : "58", - "weight" : "51" - } - } ], - "idol_id" : 180, - "idol_name" : "向井拓海", - "idol_name_display" : "向井拓海", - "units" : [ { - "id" : "39", - "name" : "ノーティギャルズ" - }, { - "id" : "123", - "name" : "マッシブライダース" - }, { - "id" : "176", - "name" : "炎陣" - } ] -}, { - "aliases" : [ { - "hash" : "5d06736b102de0b7c12dc2ff98d00eec", - "id" : "3201901", - "profile" : { - "bust" : "77", - "height" : "153", - "hip" : "79", - "waist" : "54", - "weight" : "40" - } - }, { - "hash" : "3ad04e62905e3fac4f2c1a40ec0b80a8", - "id" : "3301902", - "profile" : { - "bust" : "77", - "height" : "153", - "hip" : "79", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "高飛車お嬢様", - "alias_name_display" : "高飛車お嬢様", - "hash" : "953571fbea83b361e8d2a0ee086b71bb", - "id" : "3400101", - "profile" : { - "bust" : "77", - "height" : "153", - "hip" : "79", - "waist" : "54", - "weight" : "40" - } - }, { - "alias_name" : "高飛車お嬢様", - "alias_name_display" : "高飛車お嬢様", - "hash" : "933333b6f15c88a6e8564a2dee2f125a", - "id" : "3500102", - "profile" : { - "bust" : "77", - "height" : "153", - "hip" : "79", - "waist" : "54", - "weight" : "40" - } - } ], - "idol_id" : 181, - "idol_name" : "水瀬伊織", - "idol_name_display" : "水瀬伊織" -}, { - "aliases" : [ { - "event" : [ { - "event_id" : 303, - "event_name" : "アイドル強化合宿" - } ], - "hash" : "b0fca5a125b526c755eeec59253e3bb3", - "id" : "3202001", - "profile" : { - "bust" : "83", - "height" : "163", - "hip" : "84", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "聖夜", - "alias_name_display" : "聖夜", - "hash" : "c7b48696b8c78ad11d3fb0f898b1343b", - "id" : "3202201", - "profile" : { - "bust" : "83", - "height" : "163", - "hip" : "84", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "新春", - "alias_name_display" : "新春", - "hash" : "16df3c000e1bd9af11046666963cfdb9", - "id" : "3202401", - "profile" : { - "bust" : "83", - "height" : "163", - "hip" : "84", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "バレンタイン", - "alias_name_display" : "バレンタイン", - "hash" : "313b271eddfdc8c9d223cfc16fc55eb9", - "id" : "3203301", - "profile" : { - "bust" : "83", - "height" : "163", - "hip" : "84", - "waist" : "56", - "weight" : "45" - } - } ], - "idol_id" : 182, - "idol_name" : "ベテラントレーナー", - "idol_name_display" : "ベテラントレーナー" -}, { - "aliases" : [ { - "event" : [ { - "event_id" : 102, - "event_name" : "アイドルおもちつき大会" - } ], - "hash" : "461c0f642b5623fcd0df84af1de98fc7", - "id" : "3202501", - "profile" : { - "bust" : "61", - "height" : "128", - "hip" : "67", - "waist" : "57", - "weight" : "29" - } - }, { - "event" : [ { - "event_id" : 102, - "event_name" : "アイドルおもちつき大会" - } ], - "hash" : "101a6b754f02d297fac368dd7644cc16", - "id" : "3302502", - "profile" : { - "bust" : "62", - "height" : "129", - "hip" : "67", - "waist" : "58", - "weight" : "30" - } - }, { - "alias_name" : "アニマルパーク", - "alias_name_display" : "アニマルパーク", - "event" : [ { - "event_id" : 204, - "event_name" : "アイドルサバイバルin動物園" - } ], - "hash" : "16c84938d5bc45ce243e3c42a00ca98f", - "id" : "3205001", - "profile" : { - "bust" : "62", - "height" : "129", - "hip" : "67", - "waist" : "58", - "weight" : "30" - } - }, { - "alias_name" : "アニマルパーク", - "alias_name_display" : "アニマルパーク", - "event" : [ { - "event_id" : 204, - "event_name" : "アイドルサバイバルin動物園" - } ], - "hash" : "373178c8cac8f998af6b1b10e5b65754", - "id" : "3305002", - "profile" : { - "bust" : "62", - "height" : "129", - "hip" : "67", - "waist" : "58", - "weight" : "30" - } - }, { - "alias_name" : "きぐるみもふもふ", - "alias_name_display" : "きぐるみもふもふ", - "event" : [ { - "event_id" : "007", - "event_name" : "第7回プロダクションマッチフェスティバル" - } ], - "hash" : "a6babedb100170e974c49456628b367f", - "id" : "3404501", - "profile" : { - "bust" : "62", - "height" : "129", - "hip" : "67", - "waist" : "58", - "weight" : "30" - } - }, { - "alias_name" : "きぐるみもふもふ", - "alias_name_display" : "きぐるみもふもふ", - "event" : [ { - "event_id" : "007", - "event_name" : "第7回プロダクションマッチフェスティバル" - } ], - "hash" : "5482291c15f4a0b26b81eac4702b255b", - "id" : "3504502", - "profile" : { - "bust" : "62", - "height" : "129", - "hip" : "67", - "waist" : "58", - "weight" : "30" - } - }, { - "alias_name" : "うみのいきもの", - "alias_name_display" : "うみのいきもの", - "event" : [ { - "event_id" : 702, - "event_name" : "水着DEドリームLIVEフェスティバル" - } ], - "hash" : "c4d48bdb3ffa6f6d408619a0a34fe9f4", - "id" : "3408101", - "profile" : { - "bust" : "62", - "height" : "129", - "hip" : "67", - "waist" : "58", - "weight" : "30" - } - }, { - "alias_name" : "うみのいきもの", - "alias_name_display" : "うみのいきもの", - "event" : [ { - "event_id" : 702, - "event_name" : "水着DEドリームLIVEフェスティバル" - } ], - "hash" : "18a4aaa5bcd5dc6fddd2d01ec7e0f526", - "id" : "3508102", - "profile" : { - "bust" : "62", - "height" : "129", - "hip" : "67", - "waist" : "58", - "weight" : "30" - } - }, { - "alias_name" : "にゅーきぐるみ", - "alias_name_display" : "にゅーきぐるみ", - "event" : [ { - "event_id" : "014", - "event_name" : "第14回プロダクションマッチフェスティバル" - } ], - "hash" : "7644ffcf30392370091e558404adcc6a", - "id" : "3410901", - "profile" : { - "bust" : "62", - "height" : "129", - "hip" : "67", - "waist" : "58", - "weight" : "30" - } - }, { - "alias_name" : "にゅーきぐるみ", - "alias_name_display" : "にゅーきぐるみ", - "event" : [ { - "event_id" : "014", - "event_name" : "第14回プロダクションマッチフェスティバル" - } ], - "hash" : "5c393f00c7cca8fffb369c91099f15d4", - "id" : "3510902", - "profile" : { - "bust" : "62", - "height" : "129", - "hip" : "67", - "waist" : "58", - "weight" : "30" - } - }, { - "alias_name" : "きぐるみわーく", - "alias_name_display" : "きぐるみわーく", - "hash" : "81ce951e49b513921c0fc0aa91889e59", - "id" : "3417201", - "profile" : { - "bust" : "62", - "height" : "129", - "hip" : "67", - "waist" : "58", - "weight" : "30" - } - }, { - "alias_name" : "きぐるみわーく", - "alias_name_display" : "きぐるみわーく", - "hash" : "d8f0b946466ef70a0f705364696a8b09", - "id" : "3517202", - "profile" : { - "bust" : "62", - "height" : "129", - "hip" : "67", - "waist" : "58", - "weight" : "30" - } - }, { - "alias_name" : "にゅーいやー", - "alias_name_display" : "にゅーいやー", - "hash" : "a79bdcc89bd7b9fdcd59f0c3e42caddc", - "id" : "3420401", - "profile" : { - "bust" : "62", - "height" : "129", - "hip" : "67", - "waist" : "58", - "weight" : "30" - } - }, { - "alias_name" : "にゅーいやー", - "alias_name_display" : "にゅーいやー", - "hash" : "9ce5c63b01d63ae3a72544427e599088", - "id" : "3520402", - "profile" : { - "bust" : "62", - "height" : "129", - "hip" : "67", - "waist" : "58", - "weight" : "30" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "dfbef98b0d7c10d4053b30906c38c351", - "id" : "3421401", - "profile" : { - "bust" : "61", - "height" : "128", - "hip" : "67", - "waist" : "57", - "weight" : "29" - } - }, { - "alias_name" : "CDデビュー", - "alias_name_display" : "CDデビュー", - "hash" : "6b7b27756e32560ebd97a01021ce4b9d", - "id" : "3521402", - "profile" : { - "bust" : "61", - "height" : "128", - "hip" : "67", - "waist" : "57", - "weight" : "29" - } - }, { - "alias_name" : "わくわくきゃんぷ", - "alias_name_display" : "わくわくきゃんぷ", - "event" : [ { - "event_id" : 1701, - "event_name" : "アイドルプロデュース はじめてのキャンプ" - } ], - "hash" : "1676fb40ccf5df3f3ee58a16e2cddae6", - "id" : "3423301", - "profile" : { - "bust" : "62", - "height" : "129", - "hip" : "67", - "waist" : "58", - "weight" : "30" - } - }, { - "alias_name" : "わくわくきゃんぷ", - "alias_name_display" : "わくわくきゃんぷ", - "event" : [ { - "event_id" : 1701, - "event_name" : "アイドルプロデュース はじめてのキャンプ" - } ], - "hash" : "320a45ed640a34b288113d3745e88f70", - "id" : "3523302", - "profile" : { - "bust" : "62", - "height" : "129", - "hip" : "67", - "waist" : "58", - "weight" : "30" - } - }, { - "alias_name" : "うきうききゃんぷ", - "alias_name_display" : "うきうききゃんぷ", - "event" : [ { - "event_id" : 1701, - "event_name" : "アイドルプロデュース はじめてのキャンプ" - } ], - "hash" : "190125c60157b1943b89c47e92fe6493", - "id" : "3423401", - "profile" : { - "bust" : "62", - "height" : "129", - "hip" : "67", - "waist" : "58", - "weight" : "30" - } - }, { - "alias_name" : "うきうききゃんぷ", - "alias_name_display" : "うきうききゃんぷ", - "event" : [ { - "event_id" : 1701, - "event_name" : "アイドルプロデュース はじめてのキャンプ" - } ], - "hash" : "fcad0b83c13c9d2ce611c181a8ac16f8", - "id" : "3523402", - "profile" : { - "bust" : "62", - "height" : "129", - "hip" : "67", - "waist" : "58", - "weight" : "30" - } - }, { - "alias_name" : "もふもふうぃんたー", - "alias_name_display" : "もふもふうぃんたー", - "hash" : "89df1bfca5012ae06d8b214eedba6a73", - "id" : "3430101", - "profile" : { - "bust" : "62", - "height" : "129", - "hip" : "67", - "waist" : "58", - "weight" : "30" - } - }, { - "alias_name" : "もふもふうぃんたー", - "alias_name_display" : "もふもふうぃんたー", - "hash" : "966af1bfc59670c22a6005a9ea61670d", - "id" : "3530102", - "profile" : { - "bust" : "62", - "height" : "129", - "hip" : "67", - "waist" : "58", - "weight" : "30" - } - }, { - "alias_name" : "わんつー☆マーチング", - "alias_name_display" : "わんつー☆マーチング", - "hash" : "18197892c34249d75d985645aec8e49f", - "id" : "3434501", - "profile" : { - "bust" : "62", - "height" : "129", - "hip" : "67", - "waist" : "58", - "weight" : "30" - } - }, { - "alias_name" : "わんつー☆マーチング", - "alias_name_display" : "わんつー☆マーチング", - "hash" : "ea3503c100442dae6d2bd0959a68046e", - "id" : "3534502", - "profile" : { - "bust" : "62", - "height" : "129", - "hip" : "67", - "waist" : "58", - "weight" : "30" - } - }, { - "alias_name" : "はるかぜぶんぶん", - "alias_name_display" : "はるかぜぶんぶん", - "event" : [ { - "event_id" : 728, - "event_name" : "ドリームLIVEフェスティバル スプリングSP" - } ], - "hash" : "6b23c2fa9aaa385717a346f4bbb6d6b6", - "id" : "3439201", - "profile" : { - "bust" : "62", - "height" : "129", - "hip" : "67", - "waist" : "58", - "weight" : "30" - } - }, { - "alias_name" : "はるかぜぶんぶん", - "alias_name_display" : "はるかぜぶんぶん", - "event" : [ { - "event_id" : 728, - "event_name" : "ドリームLIVEフェスティバル スプリングSP" - } ], - "hash" : "f8e4f10ef977349e598b44f6ca5f0141", - "id" : "3539202", - "profile" : { - "bust" : "62", - "height" : "129", - "hip" : "67", - "waist" : "58", - "weight" : "30" - } - } ], - "idol_id" : 183, - "idol_name" : "市原仁奈", - "idol_name_display" : "市原仁奈", - "units" : [ { - "id" : "4", - "name" : "イカバラプリンセス" - }, { - "id" : "84", - "name" : "アニマルパーク" - }, { - "id" : "202", - "name" : "サンフラワー" - }, { - "id" : "214", - "name" : "L.M.B.G" - } ] -}, { - "aliases" : [ { - "hash" : "35ed8cc4e33cec53aea016cb9e2f0f22", - "id" : "3202701", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "78", - "waist" : "56", - "weight" : "38" - } - }, { - "hash" : "64ba99c6d5b579d020a5a2e8731648d4", - "id" : "3302702", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "78", - "waist" : "56", - "weight" : "38" - } - }, { - "alias_name" : "花火祭り", - "alias_name_display" : "花火祭り", - "event" : [ { - "event_id" : 408, - "event_name" : "アイドルプロデュース 夜空に咲く花火編" - } ], - "hash" : "d43d25a428dd282462276f7ea893e15c", - "id" : "3211601", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "78", - "waist" : "56", - "weight" : "38" - } - }, { - "alias_name" : "花火祭り", - "alias_name_display" : "花火祭り", - "event" : [ { - "event_id" : 408, - "event_name" : "アイドルプロデュース 夜空に咲く花火編" - } ], - "hash" : "b1e253723b1b2b4a276636717e943356", - "id" : "3311602", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "78", - "waist" : "56", - "weight" : "38" - } - }, { - "alias_name" : "花火祭りスマイル", - "alias_name_display" : "花火祭りスマイル", - "event" : [ { - "event_id" : 408, - "event_name" : "アイドルプロデュース 夜空に咲く花火編" - } ], - "hash" : "de01bd005756ddc45569087214ffa088", - "id" : "3211701", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "78", - "waist" : "56", - "weight" : "38" - } - }, { - "alias_name" : "花火祭りスマイル", - "alias_name_display" : "花火祭りスマイル", - "event" : [ { - "event_id" : 408, - "event_name" : "アイドルプロデュース 夜空に咲く花火編" - } ], - "hash" : "71bf844f9d6bba187861e9a94c4d1a2a", - "id" : "3311702", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "78", - "waist" : "56", - "weight" : "38" - } - }, { - "alias_name" : "グリッターステージ", - "alias_name_display" : "グリッターステージ", - "hash" : "283f95982e58cb966d2a07d4fb85ca94", - "id" : "3216301", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "78", - "waist" : "56", - "weight" : "38" - } - }, { - "alias_name" : "グリッターステージ", - "alias_name_display" : "グリッターステージ", - "hash" : "0de6cb9fa2f79c444b5a8bc6c80b126b", - "id" : "3316302", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "78", - "waist" : "56", - "weight" : "38" - } - }, { - "alias_name" : "ドリームペイント", - "alias_name_display" : "ドリームペイント", - "hash" : "82abdf981278d1ac8db9caf12c77fd3d", - "id" : "3219401", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "78", - "waist" : "56", - "weight" : "38" - } - }, { - "alias_name" : "ドリームペイント", - "alias_name_display" : "ドリームペイント", - "hash" : "965f5c538bbd1baa8ba16e8a092d0921", - "id" : "3319402", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "78", - "waist" : "56", - "weight" : "38" - } - }, { - "alias_name" : "ふらふら☆トリッパー", - "alias_name_display" : "ふらふら☆トリッパー", - "hash" : "07030bb9c263382fb19cde7b091561a8", - "id" : "3232001", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "78", - "waist" : "56", - "weight" : "38" - } - }, { - "alias_name" : "ふらふら☆トリッパー", - "alias_name_display" : "ふらふら☆トリッパー", - "hash" : "c1bb3d0591ba0ff7d0f8c6d3aaf19186", - "id" : "3332002", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "78", - "waist" : "56", - "weight" : "38" - } - }, { - "alias_name" : "妄想お姫様", - "alias_name_display" : "妄想お姫様", - "event" : [ { - "event_id" : 203, - "event_name" : "アイドルサバイバルinテーマパーク" - } ], - "hash" : "bddbbf700738b76daca74173b181733a", - "id" : "3401501", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "78", - "waist" : "56", - "weight" : "38" - } - }, { - "alias_name" : "妄想お姫様", - "alias_name_display" : "妄想お姫様", - "event" : [ { - "event_id" : 203, - "event_name" : "アイドルサバイバルinテーマパーク" - } ], - "hash" : "7ff7bf1dca35b8b2572ca73a0caecc49", - "id" : "3501502", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "78", - "waist" : "56", - "weight" : "38" - } - }, { - "alias_name" : "妄想☆暴走★", - "alias_name_display" : "妄想☆暴走★", - "hash" : "1a1d4bdd3145e5fec11094585f8d5e25", - "id" : "3403701", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "78", - "waist" : "56", - "weight" : "38" - } - }, { - "alias_name" : "妄想☆暴走★", - "alias_name_display" : "妄想☆暴走★", - "hash" : "d02f7c4e0e91862a3732593aede41145", - "id" : "3503702", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "78", - "waist" : "56", - "weight" : "38" - } - }, { - "alias_name" : "ビューティフルドリーマー", - "alias_name_display" : "ビューティフルドリーマー", - "event" : [ { - "event_id" : 802, - "event_name" : "第2回アイドルLIVEロワイヤル" - } ], - "hash" : "2282ba15a285c7df2a7f85f1bd3365b5", - "id" : "3410401", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "78", - "waist" : "56", - "weight" : "38" - } - }, { - "alias_name" : "ビューティフルドリーマー", - "alias_name_display" : "ビューティフルドリーマー", - "event" : [ { - "event_id" : 802, - "event_name" : "第2回アイドルLIVEロワイヤル" - } ], - "hash" : "dc63d553aea48ddd20cb3623f8a85308", - "id" : "3510402", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "78", - "waist" : "56", - "weight" : "38" - } - }, { - "alias_name" : "妄想☆わんだふる", - "alias_name_display" : "妄想☆わんだふる", - "event" : [ { - "event_id" : 1109, - "event_name" : "第9回プロダクション対抗トークバトルショー" - } ], - "hash" : "fec2cb1b8c1742c4551d262e56f2dfd3", - "id" : "3422101", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "78", - "waist" : "56", - "weight" : "38" - } - }, { - "alias_name" : "妄想☆わんだふる", - "alias_name_display" : "妄想☆わんだふる", - "event" : [ { - "event_id" : 1109, - "event_name" : "第9回プロダクション対抗トークバトルショー" - } ], - "hash" : "8885845534e6d6e29cb32c72d6eb2165", - "id" : "3522102", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "78", - "waist" : "56", - "weight" : "38" - } - }, { - "alias_name" : "ワンダフルブライド", - "alias_name_display" : "ワンダフルブライド", - "hash" : "cd55b9e1c5d5063cc373eeaee5edf646", - "id" : "3427201", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "78", - "waist" : "56", - "weight" : "38" - } - }, { - "alias_name" : "ワンダフルブライド", - "alias_name_display" : "ワンダフルブライド", - "hash" : "ed70d31790fd506b7a5a966d1f441028", - "id" : "3527202", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "78", - "waist" : "56", - "weight" : "38" - } - }, { - "alias_name" : "ひらひらふわり", - "alias_name_display" : "ひらひらふわり", - "event" : [ { - "event_id" : "030", - "event_name" : "第30回プロダクションマッチフェスティバル" - } ], - "hash" : "b3b1fa6ac4889d1847f4af965b3fe390", - "id" : "3433601", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "78", - "waist" : "56", - "weight" : "38" - } - }, { - "alias_name" : "ひらひらふわり", - "alias_name_display" : "ひらひらふわり", - "event" : [ { - "event_id" : "030", - "event_name" : "第30回プロダクションマッチフェスティバル" - } ], - "hash" : "2b84984d9d6c5a8c0520fe96a7ba45d6", - "id" : "3533602", - "profile" : { - "bust" : "78", - "height" : "151", - "hip" : "78", - "waist" : "56", - "weight" : "38" - } - } ], - "idol_id" : 184, - "idol_name" : "喜多日菜子", - "idol_name_display" : "喜多日菜子", - "units" : [ { - "id" : "48", - "name" : "日菜子と愛海の妄想ワールド" - }, { - "id" : "151", - "name" : "ブエナ・スエルテ" - } ] -}, { - "aliases" : [ { - "hash" : "6edab62ef4c1db15158c13d522310985", - "id" : "3202601", - "profile" : { - "bust" : "88", - "height" : "162", - "hip" : "86", - "waist" : "58", - "weight" : "45" - } - }, { - "hash" : "6b619f987d78ad43e4b7a872c7af6f45", - "id" : "3302602", - "profile" : { - "bust" : "88", - "height" : "162", - "hip" : "86", - "waist" : "58", - "weight" : "45" - } - }, { - "alias_name" : "メルヘン&ゴシック", - "alias_name_display" : "メルヘン&ゴシック", - "hash" : "0a9233d5c36f67535bc550c2a37a160b", - "id" : "3209101", - "profile" : { - "bust" : "88", - "height" : "162", - "hip" : "86", - "waist" : "58", - "weight" : "45" - } - }, { - "alias_name" : "メルヘン&ゴシック", - "alias_name_display" : "メルヘン&ゴシック", - "hash" : "3d7ae831c66c150cd8df504d9ec2726c", - "id" : "3309102", - "profile" : { - "bust" : "88", - "height" : "162", - "hip" : "86", - "waist" : "58", - "weight" : "45" - } - }, { - "alias_name" : "エキゾチックダンサー", - "alias_name_display" : "エキゾチックダンサー", - "hash" : "506c7af5dd9e88a07d624b02e8b10477", - "id" : "3210901", - "profile" : { - "bust" : "88", - "height" : "162", - "hip" : "86", - "waist" : "58", - "weight" : "45" - } - }, { - "alias_name" : "エキゾチックダンサー", - "alias_name_display" : "エキゾチックダンサー", - "hash" : "1f24f868254f226ca4d9cb49821353d8", - "id" : "3310902", - "profile" : { - "bust" : "88", - "height" : "162", - "hip" : "86", - "waist" : "58", - "weight" : "45" - } - }, { - "alias_name" : "ほのかな甘さ", - "alias_name_display" : "ほのかな甘さ", - "hash" : "795d079f6a4cae7c0e83302f07753de1", - "id" : "3218301", - "profile" : { - "bust" : "88", - "height" : "162", - "hip" : "86", - "waist" : "58", - "weight" : "45" - } - }, { - "alias_name" : "ほのかな甘さ", - "alias_name_display" : "ほのかな甘さ", - "hash" : "6b44a9f0dd3b99a82ab313a0ae0a6959", - "id" : "3318302", - "profile" : { - "bust" : "88", - "height" : "162", - "hip" : "86", - "waist" : "58", - "weight" : "45" - } - }, { - "alias_name" : "エスニックタイガー", - "alias_name_display" : "エスニックタイガー", - "event" : [ { - "event_id" : 711, - "event_name" : "福は内DEドリームLIVEフェスティバル" - } ], - "hash" : "d8ff0d484c0b918e0b7d9c175a50fe7f", - "id" : "3221301", - "profile" : { - "bust" : "88", - "height" : "162", - "hip" : "86", - "waist" : "58", - "weight" : "45" - } - }, { - "alias_name" : "エスニックタイガー", - "alias_name_display" : "エスニックタイガー", - "event" : [ { - "event_id" : 711, - "event_name" : "福は内DEドリームLIVEフェスティバル" - } ], - "hash" : "92ec6bdec324e9f28ed76acfdf0b6689", - "id" : "3321302", - "profile" : { - "bust" : "88", - "height" : "162", - "hip" : "86", - "waist" : "58", - "weight" : "45" - } - }, { - "alias_name" : "テンダーハート", - "alias_name_display" : "テンダーハート", - "event" : [ { - "event_id" : "025", - "event_name" : "第25回プロダクションマッチフェスティバル" - } ], - "hash" : "14e16ee65ada054132b63a298a16f969", - "id" : "3227101", - "profile" : { - "bust" : "88", - "height" : "162", - "hip" : "86", - "waist" : "58", - "weight" : "45" - } - }, { - "alias_name" : "テンダーハート", - "alias_name_display" : "テンダーハート", - "event" : [ { - "event_id" : "025", - "event_name" : "第25回プロダクションマッチフェスティバル" - } ], - "hash" : "b6062625d2b3926c7ff59586fabf9a59", - "id" : "3327102", - "profile" : { - "bust" : "88", - "height" : "162", - "hip" : "86", - "waist" : "58", - "weight" : "45" - } - }, { - "alias_name" : "ほっこりゲン担ぎ", - "alias_name_display" : "ほっこりゲン担ぎ", - "event" : [ { - "event_id" : 726, - "event_name" : "ドリームLIVEフェスティバル新春SP" - } ], - "hash" : "daa724181b0eaabdb0703cf6d8511879", - "id" : "3232101", - "profile" : { - "bust" : "88", - "height" : "162", - "hip" : "86", - "waist" : "58", - "weight" : "45" - } - }, { - "alias_name" : "ほっこりゲン担ぎ", - "alias_name_display" : "ほっこりゲン担ぎ", - "event" : [ { - "event_id" : 726, - "event_name" : "ドリームLIVEフェスティバル新春SP" - } ], - "hash" : "39c3ae689cbc1723753ab102b3420b34", - "id" : "3332102", - "profile" : { - "bust" : "88", - "height" : "162", - "hip" : "86", - "waist" : "58", - "weight" : "45" - } - }, { - "alias_name" : "エキゾチックサーファー", - "alias_name_display" : "エキゾチックサーファー", - "event" : [ { - "event_id" : 804, - "event_name" : "第4回アイドルLIVEロワイヤル" - } ], - "hash" : "55ad3fbb5d19ca6c12a8262cc9596cef", - "id" : "3412701", - "profile" : { - "bust" : "88", - "height" : "162", - "hip" : "86", - "waist" : "58", - "weight" : "45" - } - }, { - "alias_name" : "エキゾチックサーファー", - "alias_name_display" : "エキゾチックサーファー", - "event" : [ { - "event_id" : 804, - "event_name" : "第4回アイドルLIVEロワイヤル" - } ], - "hash" : "b82a9987c891d3e29b18d15d90c7d884", - "id" : "3512702", - "profile" : { - "bust" : "88", - "height" : "162", - "hip" : "86", - "waist" : "58", - "weight" : "45" - } - }, { - "alias_name" : "夏色情緒", - "alias_name_display" : "夏色情緒", - "event" : [ { - "event_id" : 714, - "event_name" : "夏祭りDEドリームLIVEフェスティバル" - } ], - "hash" : "b15a029083439aac358a12f9e5c48ea5", - "id" : "3424601", - "profile" : { - "bust" : "88", - "height" : "162", - "hip" : "86", - "waist" : "58", - "weight" : "45" - } - }, { - "alias_name" : "夏色情緒", - "alias_name_display" : "夏色情緒", - "event" : [ { - "event_id" : 714, - "event_name" : "夏祭りDEドリームLIVEフェスティバル" - } ], - "hash" : "caa08ae235a5cb1fcacdac027f8f9f2a", - "id" : "3524602", - "profile" : { - "bust" : "88", - "height" : "162", - "hip" : "86", - "waist" : "58", - "weight" : "45" - } - }, { - "alias_name" : "エキゾチックドレッサー", - "alias_name_display" : "エキゾチックドレッサー", - "event" : [ { - "event_id" : 1407, - "event_name" : "第7回ぷちデレラコレクション" - } ], - "hash" : "ac452a8f4078b9c8a4e2df386eefe0c9", - "id" : "3433001", - "profile" : { - "bust" : "88", - "height" : "162", - "hip" : "86", - "waist" : "58", - "weight" : "45" - } - }, { - "alias_name" : "エキゾチックドレッサー", - "alias_name_display" : "エキゾチックドレッサー", - "event" : [ { - "event_id" : 1407, - "event_name" : "第7回ぷちデレラコレクション" - } ], - "hash" : "26a0294ebbd82d18425173f46b4d8860", - "id" : "3533002", - "profile" : { - "bust" : "88", - "height" : "162", - "hip" : "86", - "waist" : "58", - "weight" : "45" - } - } ], - "idol_id" : 185, - "idol_name" : "杉坂海", - "idol_name_display" : "杉坂海", - "units" : [ { - "id" : "100", - "name" : "ハートウォーマー" - }, { - "id" : "165", - "name" : "メルヘンゴシック" - } ] -}, { - "aliases" : [ { - "event" : [ { - "event_id" : 201, - "event_name" : "アイドルサバイバル" - } ], - "hash" : "ded225525d77bc5e164da6ec41d0342e", - "id" : "3202901", - "profile" : { - "bust" : "75", - "height" : "158", - "hip" : "79", - "waist" : "57", - "weight" : "43" - } - }, { - "event" : [ { - "event_id" : 201, - "event_name" : "アイドルサバイバル" - } ], - "hash" : "f17d6bd4caee1e6ace28eb66c2c0160c", - "id" : "3302902", - "profile" : { - "bust" : "75", - "height" : "158", - "hip" : "79", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "スポーツ祭", - "alias_name_display" : "スポーツ祭", - "hash" : "5d9bbfe79fb467cff5efcc33fe949228", - "id" : "3204901", - "profile" : { - "bust" : "75", - "height" : "158", - "hip" : "79", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "スポーツ祭", - "alias_name_display" : "スポーツ祭", - "hash" : "a49d2ce44927c252d39b05c3ec553044", - "id" : "3304902", - "profile" : { - "bust" : "75", - "height" : "158", - "hip" : "79", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "スポーティガール", - "alias_name_display" : "スポーティガール", - "hash" : "c37466d224d79ec5b4582a2e05865f5c", - "id" : "3209301", - "profile" : { - "bust" : "75", - "height" : "158", - "hip" : "79", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "スポーティガール", - "alias_name_display" : "スポーティガール", - "hash" : "f0627779554f7932ca75fba796816000", - "id" : "3309302", - "profile" : { - "bust" : "75", - "height" : "158", - "hip" : "79", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "ひな祭り", - "alias_name_display" : "ひな祭り", - "event" : [ { - "event_id" : 510, - "event_name" : "ひな祭りLIVEツアーカーニバル" - } ], - "hash" : "53b74090a5ced2280a40b699017e80d2", - "id" : "3215901", - "profile" : { - "bust" : "75", - "height" : "158", - "hip" : "79", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "ひな祭り", - "alias_name_display" : "ひな祭り", - "event" : [ { - "event_id" : 510, - "event_name" : "ひな祭りLIVEツアーカーニバル" - } ], - "hash" : "c2cee09440f26baf18469aa365b2df73", - "id" : "3315902", - "profile" : { - "bust" : "75", - "height" : "158", - "hip" : "79", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "メルヘンアニマルズ", - "alias_name_display" : "メルヘンアニマルズ", - "hash" : "90f843c2f09a7ddc764aacce7fa7074f", - "id" : "3219001", - "profile" : { - "bust" : "75", - "height" : "158", - "hip" : "79", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "メルヘンアニマルズ", - "alias_name_display" : "メルヘンアニマルズ", - "hash" : "c4cbadee96999cfe3a34797d3ccff9a1", - "id" : "3319002", - "profile" : { - "bust" : "75", - "height" : "158", - "hip" : "79", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "ごきげんスターター", - "alias_name_display" : "ごきげんスターター", - "hash" : "276fb5e876944d35f8f7261be7464d58", - "id" : "3229101", - "profile" : { - "bust" : "75", - "height" : "158", - "hip" : "79", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "ごきげんスターター", - "alias_name_display" : "ごきげんスターター", - "hash" : "c700626ff44e2158a1e3917f0c60d934", - "id" : "3329102", - "profile" : { - "bust" : "75", - "height" : "158", - "hip" : "79", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "ディアンドルガール", - "alias_name_display" : "ディアンドルガール", - "event" : [ { - "event_id" : 507, - "event_name" : "LIVEツアーカーニバルinドイツ" - } ], - "hash" : "3f15212a15a1422e0a5cebff2094ee3a", - "id" : "3408401", - "profile" : { - "bust" : "75", - "height" : "158", - "hip" : "79", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "ディアンドルガール", - "alias_name_display" : "ディアンドルガール", - "event" : [ { - "event_id" : 507, - "event_name" : "LIVEツアーカーニバルinドイツ" - } ], - "hash" : "7ec7936571af537a32f0c8256789ab73", - "id" : "3508402", - "profile" : { - "bust" : "75", - "height" : "158", - "hip" : "79", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "ジョイフル・ロワイヤル", - "alias_name_display" : "ジョイフル・ロワイヤル", - "event" : [ { - "event_id" : 811, - "event_name" : "第11回アイドルLIVEロワイヤル" - } ], - "hash" : "178edad79aa9ee2b9cbbd9bdaf003b52", - "id" : "3422301", - "profile" : { - "bust" : "75", - "height" : "158", - "hip" : "79", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "ジョイフル・ロワイヤル", - "alias_name_display" : "ジョイフル・ロワイヤル", - "event" : [ { - "event_id" : 811, - "event_name" : "第11回アイドルLIVEロワイヤル" - } ], - "hash" : "5a260e4dd152105385c08cf8fc4904ff", - "id" : "3522302", - "profile" : { - "bust" : "75", - "height" : "158", - "hip" : "79", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "バイタルシャウト", - "alias_name_display" : "バイタルシャウト", - "event" : [ { - "event_id" : 716, - "event_name" : "第16回ドリームLIVEフェスティバル" - } ], - "hash" : "6facfc1c890c01ada655add731f9d797", - "id" : "3426901", - "profile" : { - "bust" : "75", - "height" : "158", - "hip" : "79", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "バイタルシャウト", - "alias_name_display" : "バイタルシャウト", - "event" : [ { - "event_id" : 716, - "event_name" : "第16回ドリームLIVEフェスティバル" - } ], - "hash" : "bccd086a6baf5aa7c9836b1744b2961b", - "id" : "3526902", - "profile" : { - "bust" : "75", - "height" : "158", - "hip" : "79", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "ダッシュ・ロワイヤル", - "alias_name_display" : "ダッシュ・ロワイヤル", - "event" : [ { - "event_id" : 820, - "event_name" : "第20回アイドルLIVEロワイヤル" - } ], - "hash" : "caa40a2b61e26c6bc67b7e8e19ef0050", - "id" : "3436301", - "profile" : { - "bust" : "75", - "height" : "158", - "hip" : "79", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "ダッシュ・ロワイヤル", - "alias_name_display" : "ダッシュ・ロワイヤル", - "event" : [ { - "event_id" : 820, - "event_name" : "第20回アイドルLIVEロワイヤル" - } ], - "hash" : "73510215f3daefbf89a05623b83e3fd8", - "id" : "3536302", - "profile" : { - "bust" : "75", - "height" : "158", - "hip" : "79", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "ペッピーウォーキン☆", - "alias_name_display" : "ペッピーウォーキン☆", - "event" : [ { - "event_id" : 1412, - "event_name" : "第12回ぷちデレラコレクション" - } ], - "hash" : "152d472f4e2ac23df690fde0685bb3f6", - "id" : "3439401", - "profile" : { - "bust" : "75", - "height" : "158", - "hip" : "79", - "waist" : "57", - "weight" : "43" - } - }, { - "alias_name" : "ペッピーウォーキン☆", - "alias_name_display" : "ペッピーウォーキン☆", - "event" : [ { - "event_id" : 1412, - "event_name" : "第12回ぷちデレラコレクション" - } ], - "hash" : "b24f3818f1e1073ea376f64f62004d15", - "id" : "3539402", - "profile" : { - "bust" : "75", - "height" : "158", - "hip" : "79", - "waist" : "57", - "weight" : "43" - } - } ], - "idol_id" : 186, - "idol_name" : "北川真尋", - "idol_name_display" : "北川真尋", - "units" : [ { - "id" : "97", - "name" : "ドイツスタイル" - }, { - "id" : "166", - "name" : "メルヘンアニマルズ" - }, { - "id" : "181", - "name" : "フレッシュアスリーテス" - }, { - "id" : "211", - "name" : "ワンダー・フル" - } ] -}, { - "aliases" : [ { - "alias_name" : "水泳大会", - "alias_name_display" : "水泳大会", - "event" : [ { - "event_id" : 106, - "event_name" : "アイドル水泳大会 水着のシンデレラ" - } ], - "hash" : "886e0e6ddf996f029d572480ab02dd81", - "id" : "3003001", - "profile" : { - "bust" : "71", - "height" : "152", - "hip" : "73", - "waist" : "59", - "weight" : "41" - } - }, { - "alias_name" : "水泳大会", - "alias_name_display" : "水泳大会", - "event" : [ { - "event_id" : 106, - "event_name" : "アイドル水泳大会 水着のシンデレラ" - } ], - "hash" : "3e0a6ce679f6f028f72df476ee639a2d", - "id" : "3103002", - "profile" : { - "bust" : "71", - "height" : "152", - "hip" : "73", - "waist" : "59", - "weight" : "41" - } - }, { - "hash" : "18489764f5cbce4a977c80ee9d7783a1", - "id" : "3203001", - "profile" : { - "bust" : "70", - "height" : "150", - "hip" : "72", - "waist" : "58", - "weight" : "40" - } - }, { - "hash" : "65101cc645b1b98eba948fe54046ff6f", - "id" : "3303002", - "profile" : { - "bust" : "71", - "height" : "152", - "hip" : "73", - "waist" : "59", - "weight" : "41" - } - }, { - "alias_name" : "湯けむり温泉", - "alias_name_display" : "湯けむり温泉", - "hash" : "bd4274434813bd239fc7ea3c76f536c5", - "id" : "3207101", - "profile" : { - "bust" : "71", - "height" : "152", - "hip" : "73", - "waist" : "59", - "weight" : "41" - } - }, { - "alias_name" : "湯けむり温泉", - "alias_name_display" : "湯けむり温泉", - "hash" : "e94f806191848660212e2e8d5cf8e788", - "id" : "3307102", - "profile" : { - "bust" : "71", - "height" : "152", - "hip" : "73", - "waist" : "59", - "weight" : "41" - } - }, { - "alias_name" : "リトルアクトレス", - "alias_name_display" : "リトルアクトレス", - "hash" : "d26384fd64b2ba4dd1c1d86cfb67b8a0", - "id" : "3211401", - "profile" : { - "bust" : "71", - "height" : "152", - "hip" : "73", - "waist" : "59", - "weight" : "41" - } - }, { - "alias_name" : "リトルアクトレス", - "alias_name_display" : "リトルアクトレス", - "hash" : "4651350df55caf44e7f2cab5de005a4e", - "id" : "3311402", - "profile" : { - "bust" : "71", - "height" : "152", - "hip" : "73", - "waist" : "59", - "weight" : "41" - } - }, { - "alias_name" : "ブライダルセレクション", - "alias_name_display" : "ブライダルセレクション", - "hash" : "dee7d5cc58fb28e3a1e115ca1c86fd4c", - "id" : "3223301", - "profile" : { - "bust" : "71", - "height" : "152", - "hip" : "73", - "waist" : "59", - "weight" : "41" - } - }, { - "alias_name" : "ブライダルセレクション", - "alias_name_display" : "ブライダルセレクション", - "hash" : "e92cc31ad73eaa57f553a47e360d33cf", - "id" : "3323302", - "profile" : { - "bust" : "71", - "height" : "152", - "hip" : "73", - "waist" : "59", - "weight" : "41" - } - }, { - "alias_name" : "レディスタイル", - "alias_name_display" : "レディスタイル", - "event" : [ { - "event_id" : "029", - "event_name" : "第29回プロダクションマッチフェスティバル" - } ], - "hash" : "75e021f7d250349ad9200dc8a41078cc", - "id" : "3229401", - "profile" : { - "bust" : "71", - "height" : "152", - "hip" : "73", - "waist" : "59", - "weight" : "41" - } - }, { - "alias_name" : "レディスタイル", - "alias_name_display" : "レディスタイル", - "event" : [ { - "event_id" : "029", - "event_name" : "第29回プロダクションマッチフェスティバル" - } ], - "hash" : "f07ac41e9accff6a007922b58505d2a5", - "id" : "3329402", - "profile" : { - "bust" : "71", - "height" : "152", - "hip" : "73", - "waist" : "59", - "weight" : "41" - } - }, { - "alias_name" : "マーチングバンド", - "alias_name_display" : "マーチングバンド", - "hash" : "bf401761087be840072f8fabc7f3b073", - "id" : "3231601", - "profile" : { - "bust" : "71", - "height" : "152", - "hip" : "73", - "waist" : "59", - "weight" : "41" - } - }, { - "alias_name" : "マーチングバンド", - "alias_name_display" : "マーチングバンド", - "hash" : "f2661e2d6e1a47730b985c6d3346b2bd", - "id" : "3331602", - "profile" : { - "bust" : "71", - "height" : "152", - "hip" : "73", - "waist" : "59", - "weight" : "41" - } - }, { - "alias_name" : "おませなリトルガール", - "alias_name_display" : "おませなリトルガール", - "event" : [ { - "event_id" : 502, - "event_name" : "アイドルLIVEツアーinイギリス" - } ], - "hash" : "eabcfd8ee79889adba48d73ad1f69c79", - "id" : "3404601", - "profile" : { - "bust" : "71", - "height" : "152", - "hip" : "73", - "waist" : "59", - "weight" : "41" - } - }, { - "alias_name" : "おませなリトルガール", - "alias_name_display" : "おませなリトルガール", - "event" : [ { - "event_id" : 502, - "event_name" : "アイドルLIVEツアーinイギリス" - } ], - "hash" : "3390b977532c2288bfeaf47e57853643", - "id" : "3504602", - "profile" : { - "bust" : "71", - "height" : "152", - "hip" : "73", - "waist" : "59", - "weight" : "41" - } - }, { - "alias_name" : "オトメのお勉強", - "alias_name_display" : "オトメのお勉強", - "hash" : "382b58a89b0ff8b39f719704e4723e44", - "id" : "3411201", - "profile" : { - "bust" : "71", - "height" : "152", - "hip" : "73", - "waist" : "59", - "weight" : "41" - } - }, { - "alias_name" : "オトメのお勉強", - "alias_name_display" : "オトメのお勉強", - "hash" : "92fb772d2d95efadf4b23d64a88d9598", - "id" : "3511202", - "profile" : { - "bust" : "71", - "height" : "152", - "hip" : "73", - "waist" : "59", - "weight" : "41" - } - }, { - "alias_name" : "学園の魔女", - "alias_name_display" : "学園の魔女", - "event" : [ { - "event_id" : 412, - "event_name" : "聖靴学園の七不思議" - } ], - "hash" : "dec0c48fb7ff2cea33acedc86d60ed77", - "id" : "3413801", - "profile" : { - "bust" : "71", - "height" : "152", - "hip" : "73", - "waist" : "59", - "weight" : "41" - } - }, { - "alias_name" : "学園の魔女", - "alias_name_display" : "学園の魔女", - "event" : [ { - "event_id" : 412, - "event_name" : "聖靴学園の七不思議" - } ], - "hash" : "860470aa8c2a41e31fb01ef84b3ff1fa", - "id" : "3513802", - "profile" : { - "bust" : "71", - "height" : "152", - "hip" : "73", - "waist" : "59", - "weight" : "41" - } - }, { - "alias_name" : "学園の魔女・S", - "alias_name_display" : "学園の魔女・S", - "event" : [ { - "event_id" : 412, - "event_name" : "聖靴学園の七不思議" - } ], - "hash" : "81f2b25fee15cd052eb46e500a139a58", - "id" : "3413901", - "profile" : { - "bust" : "71", - "height" : "152", - "hip" : "73", - "waist" : "59", - "weight" : "41" - } - }, { - "alias_name" : "学園の魔女・S", - "alias_name_display" : "学園の魔女・S", - "event" : [ { - "event_id" : 412, - "event_name" : "聖靴学園の七不思議" - } ], - "hash" : "1a5a05e3855800ce1bd8a029a381d3ae", - "id" : "3513902", - "profile" : { - "bust" : "71", - "height" : "152", - "hip" : "73", - "waist" : "59", - "weight" : "41" - } - }, { - "alias_name" : "碧眼の姫君", - "alias_name_display" : "碧眼の姫君", - "hash" : "990199c5bd44be16361a787dda7e5ec2", - "id" : "3418801", - "profile" : { - "bust" : "71", - "height" : "152", - "hip" : "73", - "waist" : "59", - "weight" : "41" - } - }, { - "alias_name" : "碧眼の姫君", - "alias_name_display" : "碧眼の姫君", - "hash" : "1cff2e692e16e4a5080e58d376ac647a", - "id" : "3518802", - "profile" : { - "bust" : "71", - "height" : "152", - "hip" : "73", - "waist" : "59", - "weight" : "41" - } - }, { - "alias_name" : "スーパーリトルヒーロー", - "alias_name_display" : "スーパーリトルヒーロー", - "event" : [ { - "event_id" : 523, - "event_name" : "鋼鉄公演 きらりんロボ -襲来!コスメティア帝国-" - } ], - "hash" : "21aedb74f5d55532af0ec8d9405eb4d7", - "id" : "3429301", - "profile" : { - "bust" : "71", - "height" : "152", - "hip" : "73", - "waist" : "59", - "weight" : "41" - } - }, { - "alias_name" : "スーパーリトルヒーロー", - "alias_name_display" : "スーパーリトルヒーロー", - "event" : [ { - "event_id" : 523, - "event_name" : "鋼鉄公演 きらりんロボ -襲来!コスメティア帝国-" - } ], - "hash" : "f9e2aa124e090e96d8f60f125f9ff172", - "id" : "3529302", - "profile" : { - "bust" : "71", - "height" : "152", - "hip" : "73", - "waist" : "59", - "weight" : "41" - } - }, { - "alias_name" : "プリティブロンド", - "alias_name_display" : "プリティブロンド", - "event" : [ { - "event_id" : 823, - "event_name" : "第23回アイドルLIVEロワイヤル" - } ], - "hash" : "571191f721985c5482bbb81971f25b98", - "id" : "3440001", - "profile" : { - "bust" : "71", - "height" : "152", - "hip" : "73", - "waist" : "59", - "weight" : "41" - } - }, { - "alias_name" : "プリティブロンド", - "alias_name_display" : "プリティブロンド", - "event" : [ { - "event_id" : 823, - "event_name" : "第23回アイドルLIVEロワイヤル" - } ], - "hash" : "cda5c513974a4e22bdafa7fb7e662c56", - "id" : "3540002", - "profile" : { - "bust" : "71", - "height" : "152", - "hip" : "73", - "waist" : "59", - "weight" : "41" - } - } ], - "idol_id" : 187, - "idol_name" : "メアリー・コクラン", - "idol_name_display" : "メアリー・コクラン", - "units" : [ { - "id" : "125", - "name" : "ユア・フレンズ" - }, { - "id" : "162", - "name" : "ブライダルセレクション" - }, { - "id" : "170", - "name" : "UKスタイル" - }, { - "id" : "214", - "name" : "L.M.B.G" - } ] -}, { - "aliases" : [ { - "hash" : "981843c62010419ba465420262c9550f", - "id" : "3203101", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "88", - "waist" : "59", - "weight" : "48" - } - }, { - "hash" : "f5c48d566baf361906d0951ebfdc9234", - "id" : "3303102", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "88", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "学園祭", - "alias_name_display" : "学園祭", - "event" : [ { - "event_id" : 206, - "event_name" : "アイドルサバイバルin学園祭" - } ], - "hash" : "71acc3f7453e1a9821d89a1d545f5c94", - "id" : "3206401", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "88", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "学園祭", - "alias_name_display" : "学園祭", - "event" : [ { - "event_id" : 206, - "event_name" : "アイドルサバイバルin学園祭" - } ], - "hash" : "d82c7d5601b6218d47b3f619d13bfe55", - "id" : "3306402", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "88", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "ハッピーバレンタイン", - "alias_name_display" : "ハッピーバレンタイン", - "event" : [ { - "event_id" : 405, - "event_name" : "アイドルプロデュース バレンタイン編" - } ], - "hash" : "230c5b5ec92445aaed128c7508cb8356", - "id" : "3208701", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "88", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "ハッピーバレンタイン", - "alias_name_display" : "ハッピーバレンタイン", - "event" : [ { - "event_id" : 405, - "event_name" : "アイドルプロデュース バレンタイン編" - } ], - "hash" : "220f83f980eec9c9351bed10645e0405", - "id" : "3308702", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "88", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "スマイルバレンタイン", - "alias_name_display" : "スマイルバレンタイン", - "event" : [ { - "event_id" : 405, - "event_name" : "アイドルプロデュース バレンタイン編" - } ], - "hash" : "fbbfc8130fff846c3e712282ca7f841b", - "id" : "3208801", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "88", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "スマイルバレンタイン", - "alias_name_display" : "スマイルバレンタイン", - "event" : [ { - "event_id" : 405, - "event_name" : "アイドルプロデュース バレンタイン編" - } ], - "hash" : "66a35e542777658570fd3b0579538e63", - "id" : "3308802", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "88", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "ダンシングブライド", - "alias_name_display" : "ダンシングブライド", - "hash" : "d8bc3c2d3dc0cff584279852792d7a95", - "id" : "3213901", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "88", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "ダンシングブライド", - "alias_name_display" : "ダンシングブライド", - "hash" : "3a2aa4fc0fb6337f9451d4efad5b9916", - "id" : "3313902", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "88", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "カジュアル&フリル", - "alias_name_display" : "カジュアル&フリル", - "hash" : "dfb65b80dbdb7746d7eb0b0037744684", - "id" : "3216101", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "88", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "カジュアル&フリル", - "alias_name_display" : "カジュアル&フリル", - "hash" : "7dc7df39668d17d3e6aefc45dad172c8", - "id" : "3316102", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "88", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "さわやかスポーツ", - "alias_name_display" : "さわやかスポーツ", - "hash" : "2ed81a3a0badd66417a9d8dac2380dcd", - "id" : "3222901", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "88", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "さわやかスポーツ", - "alias_name_display" : "さわやかスポーツ", - "hash" : "2f113b28d941cd9250d02f9491e2425a", - "id" : "3322902", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "88", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "ディライトタイム", - "alias_name_display" : "ディライトタイム", - "event" : [ { - "event_id" : 717, - "event_name" : "第17回ドリームLIVEフェスティバル" - } ], - "hash" : "e026a9a2e9fdd0cb527ab89ce1ac8b62", - "id" : "3326102", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "88", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "サバゲーI.C", - "alias_name_display" : "サバゲーI.C", - "event" : [ { - "event_id" : 1210, - "event_name" : "アイドルチャレンジ サバイバルゲーム編" - } ], - "hash" : "0dbc072b0335f879d112086ca78ad77a", - "id" : "3328502", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "88", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "ストリートスパークル", - "alias_name_display" : "ストリートスパークル", - "hash" : "94bff0502f041e4baae4b676e3468a23", - "id" : "3233501", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "88", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "ストリートスパークル", - "alias_name_display" : "ストリートスパークル", - "hash" : "804b115656386639daea4c52420f7105", - "id" : "3333502", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "88", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "トロピカルダンサー", - "alias_name_display" : "トロピカルダンサー", - "event" : [ { - "event_id" : 505, - "event_name" : "アイドルLIVEツアーinバリ島" - } ], - "hash" : "664ca1e6850282545e40668063e9f05d", - "id" : "3407401", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "88", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "トロピカルダンサー", - "alias_name_display" : "トロピカルダンサー", - "event" : [ { - "event_id" : 505, - "event_name" : "アイドルLIVEツアーinバリ島" - } ], - "hash" : "08cd13a051d1962fee067b9e38acd6c4", - "id" : "3507402", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "88", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "フェイバリット☆タイム", - "alias_name_display" : "フェイバリット☆タイム", - "hash" : "56fb7869be014b15e2daccaf1dc6d4dc", - "id" : "3417501", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "88", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "フェイバリット☆タイム", - "alias_name_display" : "フェイバリット☆タイム", - "hash" : "1af95abc44fe62d8324257c1f6290018", - "id" : "3517502", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "88", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "フレッシュソルジャー", - "alias_name_display" : "フレッシュソルジャー", - "event" : [ { - "event_id" : 1210, - "event_name" : "アイドルチャレンジ サバイバルゲーム編" - } ], - "hash" : "d23f88fda4981caa35655e6be23fc54c", - "id" : "3431901", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "88", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "フレッシュソルジャー", - "alias_name_display" : "フレッシュソルジャー", - "event" : [ { - "event_id" : 1210, - "event_name" : "アイドルチャレンジ サバイバルゲーム編" - } ], - "hash" : "64765fd2a7760ab7c85ff530a7ee1014", - "id" : "3531902", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "88", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "フレッシュソルジャー・S", - "alias_name_display" : "フレッシュソルジャー・S", - "event" : [ { - "event_id" : 1210, - "event_name" : "アイドルチャレンジ サバイバルゲーム編" - } ], - "hash" : "14b9f5fc5395420c5fba5f8f9b6982ae", - "id" : "3432001", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "88", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "フレッシュソルジャー・S", - "alias_name_display" : "フレッシュソルジャー・S", - "event" : [ { - "event_id" : 1210, - "event_name" : "アイドルチャレンジ サバイバルゲーム編" - } ], - "hash" : "93ff417b98647caf533179ef85083542", - "id" : "3532002", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "88", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "月夜のダンサー", - "alias_name_display" : "月夜のダンサー", - "event" : [ { - "event_id" : 819, - "event_name" : "アイドルLIVEロワイヤル お月見SP" - } ], - "hash" : "c49c6d77d6640d6be62d4f0043739f4f", - "id" : "3435001", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "88", - "waist" : "59", - "weight" : "48" - } - }, { - "alias_name" : "月夜のダンサー", - "alias_name_display" : "月夜のダンサー", - "event" : [ { - "event_id" : 819, - "event_name" : "アイドルLIVEロワイヤル お月見SP" - } ], - "hash" : "74726c9cfa072e384c992e8d8bde9ff9", - "id" : "3535002", - "profile" : { - "bust" : "85", - "height" : "165", - "hip" : "88", - "waist" : "59", - "weight" : "48" - } - } ], - "idol_id" : 188, - "idol_name" : "小松伊吹", - "idol_name_display" : "小松伊吹", - "units" : [ { - "id" : "2", - "name" : "アーティスター" - }, { - "id" : "119", - "name" : "フランメ・ルージュ" - }, { - "id" : "160", - "name" : "ハッピーバレンタイン" - } ] -}, { - "aliases" : [ { - "hash" : "74a5d336821a3ccbb0e27083910eb4a2", - "id" : "3203401", - "profile" : { - "bust" : "75", - "height" : "149", - "hip" : "80", - "waist" : "56", - "weight" : "39" - } - }, { - "hash" : "6975abbc1acbd11dc0761db34100eeff", - "id" : "3303402", - "profile" : { - "bust" : "75", - "height" : "149", - "hip" : "80", - "waist" : "56", - "weight" : "39" - } - }, { - "alias_name" : "サマーライブ", - "alias_name_display" : "サマーライブ", - "event" : [ { - "event_id" : 205, - "event_name" : "アイドルサバイバルinサマーライブ" - } ], - "hash" : "a2c76c7c3d6cd4ed9bfae16a519606e3", - "id" : "3205501", - "profile" : { - "bust" : "75", - "height" : "149", - "hip" : "80", - "waist" : "56", - "weight" : "39" - } - }, { - "alias_name" : "サマーライブ", - "alias_name_display" : "サマーライブ", - "event" : [ { - "event_id" : 205, - "event_name" : "アイドルサバイバルinサマーライブ" - } ], - "hash" : "55f4201ee5b5f40f49f375d912ca5a48", - "id" : "3305502", - "profile" : { - "bust" : "75", - "height" : "149", - "hip" : "80", - "waist" : "56", - "weight" : "39" - } - }, { - "alias_name" : "バレンタインパーティー", - "alias_name_display" : "バレンタインパーティー", - "hash" : "a912475f262c6610d16fd01a89b67b4f", - "id" : "3208601", - "profile" : { - "bust" : "75", - "height" : "149", - "hip" : "80", - "waist" : "56", - "weight" : "39" - } - }, { - "alias_name" : "バレンタインパーティー", - "alias_name_display" : "バレンタインパーティー", - "hash" : "035f0fe78149312386a6359970285410", - "id" : "3308602", - "profile" : { - "bust" : "75", - "height" : "149", - "hip" : "80", - "waist" : "56", - "weight" : "39" - } - }, { - "alias_name" : "ドリームプレイヤー", - "alias_name_display" : "ドリームプレイヤー", - "hash" : "ec9534560df91355b8d8237b6ac478d2", - "id" : "3210401", - "profile" : { - "bust" : "75", - "height" : "149", - "hip" : "80", - "waist" : "56", - "weight" : "39" - } - }, { - "alias_name" : "ドリームプレイヤー", - "alias_name_display" : "ドリームプレイヤー", - "hash" : "39462197c42755367ed51077cd00d7d0", - "id" : "3310402", - "profile" : { - "bust" : "75", - "height" : "149", - "hip" : "80", - "waist" : "56", - "weight" : "39" - } - }, { - "alias_name" : "ロワイヤルスタイル", - "alias_name_display" : "ロワイヤルスタイル", - "event" : [ { - "event_id" : 803, - "event_name" : "第3回アイドルLIVEロワイヤル" - } ], - "hash" : "a16bd6a20aae0e2a289296b10faa0816", - "id" : "3215001", - "profile" : { - "bust" : "75", - "height" : "149", - "hip" : "80", - "waist" : "56", - "weight" : "39" - } - }, { - "alias_name" : "ロワイヤルスタイル", - "alias_name_display" : "ロワイヤルスタイル", - "event" : [ { - "event_id" : 803, - "event_name" : "第3回アイドルLIVEロワイヤル" - } ], - "hash" : "7eadf1a32f2acd16c352cc821d3edd11", - "id" : "3315002", - "profile" : { - "bust" : "75", - "height" : "149", - "hip" : "80", - "waist" : "56", - "weight" : "39" - } - }, { - "alias_name" : "ビーチサイド", - "alias_name_display" : "ビーチサイド", - "hash" : "1a49f2b52578fca59c62611f515030ea", - "id" : "3217701", - "profile" : { - "bust" : "75", - "height" : "149", - "hip" : "80", - "waist" : "56", - "weight" : "39" - } - }, { - "alias_name" : "ビーチサイド", - "alias_name_display" : "ビーチサイド", - "hash" : "ebb3ac001f3f27dd4ae4303f9a68bb0d", - "id" : "3317702", - "profile" : { - "bust" : "75", - "height" : "149", - "hip" : "80", - "waist" : "56", - "weight" : "39" - } - }, { - "alias_name" : "春キャンプ", - "alias_name_display" : "春キャンプ", - "event" : [ { - "event_id" : 1701, - "event_name" : "アイドルプロデュース はじめてのキャンプ" - } ], - "hash" : "d1603fa7ad370e35126a6d5c7aa76111", - "id" : "3222601", - "profile" : { - "bust" : "75", - "height" : "149", - "hip" : "80", - "waist" : "56", - "weight" : "39" - } - }, { - "alias_name" : "春キャンプ", - "alias_name_display" : "春キャンプ", - "event" : [ { - "event_id" : 1701, - "event_name" : "アイドルプロデュース はじめてのキャンプ" - } ], - "hash" : "1ef60a5f56267922ef2c087e52328d28", - "id" : "3322602", - "profile" : { - "bust" : "75", - "height" : "149", - "hip" : "80", - "waist" : "56", - "weight" : "39" - } - }, { - "alias_name" : "笑顔でキャンプ", - "alias_name_display" : "笑顔でキャンプ", - "event" : [ { - "event_id" : 1701, - "event_name" : "アイドルプロデュース はじめてのキャンプ" - } ], - "hash" : "5e70ce9f10f6cceae13ad3ab5b62cdff", - "id" : "3222701", - "profile" : { - "bust" : "75", - "height" : "149", - "hip" : "80", - "waist" : "56", - "weight" : "39" - } - }, { - "alias_name" : "笑顔でキャンプ", - "alias_name_display" : "笑顔でキャンプ", - "event" : [ { - "event_id" : 1701, - "event_name" : "アイドルプロデュース はじめてのキャンプ" - } ], - "hash" : "bc4fe5771be756b951a3bfe654de6c1a", - "id" : "3322702", - "profile" : { - "bust" : "75", - "height" : "149", - "hip" : "80", - "waist" : "56", - "weight" : "39" - } - }, { - "alias_name" : "コレクションスタイル", - "alias_name_display" : "コレクションスタイル", - "event" : [ { - "event_id" : 1403, - "event_name" : "第3回ぷちデレラコレクション" - } ], - "hash" : "3941f572ab28142e287098298b0dc886", - "id" : "3324602", - "profile" : { - "bust" : "75", - "height" : "149", - "hip" : "80", - "waist" : "56", - "weight" : "39" - } - }, { - "alias_name" : "秋の学園祭", - "alias_name_display" : "秋の学園祭", - "hash" : "e491607723ee289413421eb50c7865ad", - "id" : "3231001", - "profile" : { - "bust" : "75", - "height" : "149", - "hip" : "80", - "waist" : "56", - "weight" : "39" - } - }, { - "alias_name" : "秋の学園祭", - "alias_name_display" : "秋の学園祭", - "hash" : "0188bc58f63647f0b7862f81905b8698", - "id" : "3331002", - "profile" : { - "bust" : "75", - "height" : "149", - "hip" : "80", - "waist" : "56", - "weight" : "39" - } - }, { - "alias_name" : "ピコピコ☆ゲーマー", - "alias_name_display" : "ピコピコ☆ゲーマー", - "hash" : "7e318d7290da68dd33c9c312042da379", - "id" : "3408301", - "profile" : { - "bust" : "75", - "height" : "149", - "hip" : "80", - "waist" : "56", - "weight" : "39" - } - }, { - "alias_name" : "ピコピコ☆ゲーマー", - "alias_name_display" : "ピコピコ☆ゲーマー", - "hash" : "4a13052e4c41d9c815300df353359412", - "id" : "3508302", - "profile" : { - "bust" : "75", - "height" : "149", - "hip" : "80", - "waist" : "56", - "weight" : "39" - } - }, { - "alias_name" : "ゲームトークナイト", - "alias_name_display" : "ゲームトークナイト", - "event" : [ { - "event_id" : 1106, - "event_name" : "プロダクション対抗トークバトルショー ハロウィンSP" - } ], - "hash" : "8e9bd7c98e4c86491db3a28af15d607b", - "id" : "3418201", - "profile" : { - "bust" : "75", - "height" : "149", - "hip" : "80", - "waist" : "56", - "weight" : "39" - } - }, { - "alias_name" : "ゲームトークナイト", - "alias_name_display" : "ゲームトークナイト", - "event" : [ { - "event_id" : 1106, - "event_name" : "プロダクション対抗トークバトルショー ハロウィンSP" - } ], - "hash" : "1b31aa81142324e6e5817be4e32a26a8", - "id" : "3518202", - "profile" : { - "bust" : "75", - "height" : "149", - "hip" : "80", - "waist" : "56", - "weight" : "39" - } - }, { - "alias_name" : "ミッション☆コンプリート", - "alias_name_display" : "ミッション☆コンプリート", - "event" : [ { - "event_id" : 1802, - "event_name" : "アイドルバラエティ 手作りライブプロジェクト!" - } ], - "hash" : "008dfb4279896adf547835f3f11a408f", - "id" : "3427801", - "profile" : { - "bust" : "75", - "height" : "149", - "hip" : "80", - "waist" : "56", - "weight" : "39" - } - }, { - "alias_name" : "ミッション☆コンプリート", - "alias_name_display" : "ミッション☆コンプリート", - "event" : [ { - "event_id" : 1802, - "event_name" : "アイドルバラエティ 手作りライブプロジェクト!" - } ], - "hash" : "dca3fed6718b0a88528a6c1482136d79", - "id" : "3527802", - "profile" : { - "bust" : "75", - "height" : "149", - "hip" : "80", - "waist" : "56", - "weight" : "39" - } - }, { - "alias_name" : "冒険者", - "alias_name_display" : "冒険者", - "hash" : "12294135f86976c08cd019bd74bb9617", - "id" : "3431301", - "profile" : { - "bust" : "75", - "height" : "149", - "hip" : "80", - "waist" : "56", - "weight" : "39" - } - }, { - "alias_name" : "冒険者", - "alias_name_display" : "冒険者", - "hash" : "5caedbb13727f0afdd234d8e73a40a32", - "id" : "3531302", - "profile" : { - "bust" : "75", - "height" : "149", - "hip" : "80", - "waist" : "56", - "weight" : "39" - } - } ], - "idol_id" : 189, - "idol_name" : "三好紗南", - "idol_name_display" : "三好紗南", - "units" : [ { - "id" : "93", - "name" : "サマーライブセーラー" - }, { - "id" : "208", - "name" : "ロワイヤルスタイル" - } ] -}, { - "aliases" : [ { - "hash" : "b3484b86731fa47b0a59f2d1fb3af249", - "id" : "3203501", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "56", - "weight" : "49" - } - }, { - "hash" : "b8843d1031f4438aba54223452579b4d", - "id" : "3303502", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "56", - "weight" : "49" - } - }, { - "alias_name" : "新春コレクション", - "alias_name_display" : "新春コレクション", - "hash" : "03e13b764bf732aa5f4f075a2d1e95b2", - "id" : "3208101", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "56", - "weight" : "49" - } - }, { - "alias_name" : "新春コレクション", - "alias_name_display" : "新春コレクション", - "hash" : "a687207d5948158046e24f5fb94f6821", - "id" : "3308102", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "56", - "weight" : "49" - } - }, { - "alias_name" : "フレッシュマンダリン", - "alias_name_display" : "フレッシュマンダリン", - "hash" : "b625f2e8a25e839e2e5cb9664fb71b7a", - "id" : "3210501", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "56", - "weight" : "49" - } - }, { - "alias_name" : "フレッシュマンダリン", - "alias_name_display" : "フレッシュマンダリン", - "hash" : "ab2bb97e46e8102de86579aff4b90518", - "id" : "3310502", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "56", - "weight" : "49" - } - }, { - "alias_name" : "ガンスリンガー", - "alias_name_display" : "ガンスリンガー", - "event" : [ { - "event_id" : 512, - "event_name" : "西部公演 ガンスリンガージャーニー" - } ], - "hash" : "afe03e20c836f8ff906a253a56ee26b4", - "id" : "3217301", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "56", - "weight" : "49" - } - }, { - "alias_name" : "ガンスリンガー", - "alias_name_display" : "ガンスリンガー", - "event" : [ { - "event_id" : 512, - "event_name" : "西部公演 ガンスリンガージャーニー" - } ], - "hash" : "b8ebb0a9955fa101aa15e6e1a5783a91", - "id" : "3317302", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "56", - "weight" : "49" - } - }, { - "alias_name" : "お笑いスタイル", - "alias_name_display" : "お笑いスタイル", - "hash" : "f5f8259dc3787f4f8b0f206197fcf841", - "id" : "3219801", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "56", - "weight" : "49" - } - }, { - "alias_name" : "お笑いスタイル", - "alias_name_display" : "お笑いスタイル", - "hash" : "8f06d715ec61652d3319aa6b5b598985", - "id" : "3319802", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "56", - "weight" : "49" - } - }, { - "alias_name" : "オータムコレクション", - "alias_name_display" : "オータムコレクション", - "hash" : "cbfeca48ab63abe8384f4ad14fafb16d", - "id" : "3225501", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "56", - "weight" : "49" - } - }, { - "alias_name" : "オータムコレクション", - "alias_name_display" : "オータムコレクション", - "hash" : "d1f3863d47e6b365bfcaa26abc17bfd7", - "id" : "3325502", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "56", - "weight" : "49" - } - }, { - "alias_name" : "ウェディングセレモニー", - "alias_name_display" : "ウェディングセレモニー", - "hash" : "05fce5bf386ef6017a6682a7d150b3b2", - "id" : "3229201", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "56", - "weight" : "49" - } - }, { - "alias_name" : "ウェディングセレモニー", - "alias_name_display" : "ウェディングセレモニー", - "hash" : "d5499ca5008c269d303d65621dc37893", - "id" : "3329202", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "56", - "weight" : "49" - } - }, { - "alias_name" : "スクールプール", - "alias_name_display" : "スクールプール", - "hash" : "99ad862dd87829dfeea90bff61767a6d", - "id" : "3231501", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "56", - "weight" : "49" - } - }, { - "alias_name" : "スクールプール", - "alias_name_display" : "スクールプール", - "hash" : "6ba750a1ecbc961392b6751f7a1bf65e", - "id" : "3331502", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "56", - "weight" : "49" - } - }, { - "alias_name" : "ベーカリーI.C", - "alias_name_display" : "ベーカリーI.C", - "hash" : "42ca5290aba119f9e690b169d75aedd8", - "id" : "3334302", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "56", - "weight" : "49" - } - }, { - "alias_name" : "スペーススター", - "alias_name_display" : "スペーススター", - "event" : [ { - "event_id" : 508, - "event_name" : "LIVEツアーカーニバルinスペースワールド" - } ], - "hash" : "2dcce81c8d5ba61f3f882ed5dc1bb7c2", - "id" : "3409601", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "56", - "weight" : "49" - } - }, { - "alias_name" : "スペーススター", - "alias_name_display" : "スペーススター", - "event" : [ { - "event_id" : 508, - "event_name" : "LIVEツアーカーニバルinスペースワールド" - } ], - "hash" : "273db82fa4d3ec9a7b8065f541094314", - "id" : "3509602", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "56", - "weight" : "49" - } - }, { - "alias_name" : "お喋りチアー", - "alias_name_display" : "お喋りチアー", - "event" : [ { - "event_id" : 1108, - "event_name" : "第8回プロダクション対抗トークバトルショー" - } ], - "hash" : "63b3d81129e7a3f06f0c2057752eeace", - "id" : "3420901", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "56", - "weight" : "49" - } - }, { - "alias_name" : "お喋りチアー", - "alias_name_display" : "お喋りチアー", - "event" : [ { - "event_id" : 1108, - "event_name" : "第8回プロダクション対抗トークバトルショー" - } ], - "hash" : "608a40ac8502a9e202ff4a4e94172e1e", - "id" : "3520902", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "56", - "weight" : "49" - } - }, { - "alias_name" : "ラフ&ガーリー", - "alias_name_display" : "ラフ&ガーリー", - "event" : [ { - "event_id" : 1405, - "event_name" : "第5回ぷちデレラコレクション" - } ], - "hash" : "e1da7a5efed1a5603f126ce01d6b7190", - "id" : "3429501", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "56", - "weight" : "49" - } - }, { - "alias_name" : "ラフ&ガーリー", - "alias_name_display" : "ラフ&ガーリー", - "event" : [ { - "event_id" : 1405, - "event_name" : "第5回ぷちデレラコレクション" - } ], - "hash" : "afd21d0607cc0a99723267c0a5ca4625", - "id" : "3529502", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "56", - "weight" : "49" - } - }, { - "alias_name" : "ジョイフルベーカー", - "alias_name_display" : "ジョイフルベーカー", - "event" : [ { - "event_id" : 1216, - "event_name" : "先生と一緒に♪目指せおいしいパン作り アイドルチャレンジ" - } ], - "hash" : "1770ac1f502f862edc4e9d03bc2f26ea", - "id" : "3440201", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "56", - "weight" : "49" - } - }, { - "alias_name" : "ジョイフルベーカー", - "alias_name_display" : "ジョイフルベーカー", - "event" : [ { - "event_id" : 1216, - "event_name" : "先生と一緒に♪目指せおいしいパン作り アイドルチャレンジ" - } ], - "hash" : "0851d1fa2ae859921bc702b404c67de7", - "id" : "3540202", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "56", - "weight" : "49" - } - }, { - "alias_name" : "にっこりベーカー", - "alias_name_display" : "にっこりベーカー", - "hash" : "786235d566b59592b81ca34c53c5668b", - "id" : "3440301", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "56", - "weight" : "49" - } - }, { - "alias_name" : "にっこりベーカー", - "alias_name_display" : "にっこりベーカー", - "hash" : "7257d04c6b64058492bc0279c5b1da20", - "id" : "3540302", - "profile" : { - "bust" : "83", - "height" : "168", - "hip" : "85", - "waist" : "56", - "weight" : "49" - } - } ], - "idol_id" : 190, - "idol_name" : "キャシー・グラハム", - "idol_name_display" : "キャシー・グラハム", - "units" : [ { - "id" : "73", - "name" : "ERICATHY" - } ] -}, { - "aliases" : [ { - "hash" : "462788ef215a343a2f7ea3cdf5a79fd3", - "id" : "3203701", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "hash" : "0c755957e7a21af1c343c8976620b90e", - "id" : "3303702", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ハロウィンパーティー", - "alias_name_display" : "ハロウィンパーティー", - "hash" : "0802e6c069e5eb587b99f54a91c3b35f", - "id" : "3206601", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ハロウィンパーティー", - "alias_name_display" : "ハロウィンパーティー", - "hash" : "91d84bb565062b321b0656140a64229e", - "id" : "3306602", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "メデタイガール", - "alias_name_display" : "メデタイガール", - "hash" : "f4520ebc0eb2a8f9c7604e6dd5d1ff2c", - "id" : "3214701", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "メデタイガール", - "alias_name_display" : "メデタイガール", - "hash" : "2c534b1284f41395baad36dfe778d53f", - "id" : "3314702", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ロワイヤルスタイルNP", - "alias_name_display" : "ロワイヤルスタイルNP", - "event" : [ { - "event_id" : 808, - "event_name" : "第8回アイドルLIVEロワイヤル" - } ], - "hash" : "407561052d14f76e674387a9bf26ae21", - "id" : "3220401", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "ロワイヤルスタイルNP", - "alias_name_display" : "ロワイヤルスタイルNP", - "event" : [ { - "event_id" : 808, - "event_name" : "第8回アイドルLIVEロワイヤル" - } ], - "hash" : "14fe0cc1973b33542f4cd53504468157", - "id" : "3320402", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "サマーバケーション", - "alias_name_display" : "サマーバケーション", - "hash" : "fb3a18ab728bd89b803f635d1dcbe2ee", - "id" : "3224301", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "サマーバケーション", - "alias_name_display" : "サマーバケーション", - "hash" : "2248a6d3a1dc713c0369a1d7341e6086", - "id" : "3324302", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "コレクションスタイル", - "alias_name_display" : "コレクションスタイル", - "event" : [ { - "event_id" : 1404, - "event_name" : "第4回ぷちデレラコレクション" - } ], - "hash" : "7c668cd224c4b1481a50265b2fad07ba", - "id" : "3326302", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "湯けむり紀行", - "alias_name_display" : "湯けむり紀行", - "hash" : "0b90d9ced62058b2ebd6346f901ee365", - "id" : "3231401", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "湯けむり紀行", - "alias_name_display" : "湯けむり紀行", - "hash" : "aebaafab9c096221c76d6f101a84bcab", - "id" : "3331402", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "浪速の派手娘", - "alias_name_display" : "浪速の派手娘", - "event" : [ { - "event_id" : 701, - "event_name" : "ドリームLIVEフェスティバル" - } ], - "hash" : "201ebec439117f0f54102f5846e86c12", - "id" : "3407201", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "浪速の派手娘", - "alias_name_display" : "浪速の派手娘", - "event" : [ { - "event_id" : 701, - "event_name" : "ドリームLIVEフェスティバル" - } ], - "hash" : "06ab397c7df69732c1952897a4b3a7f8", - "id" : "3507202", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "お笑い☆伝道師", - "alias_name_display" : "お笑い☆伝道師", - "hash" : "0811dd9530eb29e539e0eaec1b603a30", - "id" : "3414601", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "お笑い☆伝道師", - "alias_name_display" : "お笑い☆伝道師", - "hash" : "52c8883ccd2ca956eaa81d9b55b4c04b", - "id" : "3514602", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "爆笑チアー", - "alias_name_display" : "爆笑チアー", - "event" : [ { - "event_id" : 1505, - "event_name" : "チーム対抗トークバトルショー ウィンターSP" - } ], - "hash" : "2d77fd6c9641905d6751667510c2b70e", - "id" : "3429401", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "爆笑チアー", - "alias_name_display" : "爆笑チアー", - "event" : [ { - "event_id" : 1505, - "event_name" : "チーム対抗トークバトルショー ウィンターSP" - } ], - "hash" : "7ca0bf3dd109857d28f794f7772d3729", - "id" : "3529402", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "花盛り☆乙女", - "alias_name_display" : "花盛り☆乙女", - "event" : [ { - "event_id" : 817, - "event_name" : "アイドルLIVEロワイヤル お花見SP" - } ], - "hash" : "00f30f05193ace2cf45ee2e131248543", - "id" : "3431701", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "花盛り☆乙女", - "alias_name_display" : "花盛り☆乙女", - "event" : [ { - "event_id" : 817, - "event_name" : "アイドルLIVEロワイヤル お花見SP" - } ], - "hash" : "557803a0324c4d494b78d83b42174e61", - "id" : "3531702", - "profile" : { - "bust" : "82", - "height" : "158", - "hip" : "80", - "waist" : "56", - "weight" : "45" - } - } ], - "idol_id" : 191, - "idol_name" : "難波笑美", - "idol_name_display" : "難波笑美", - "units" : [ { - "id" : "6", - "name" : "笑美と鈴帆の爆笑エブリデイ" - }, { - "id" : "128", - "name" : "ラビュー☆アイス☆マウンテン" - }, { - "id" : "152", - "name" : "B.B.ロワイヤル" - }, { - "id" : "180", - "name" : "ハロウィンパーティー" - }, { - "id" : "190", - "name" : "サマプリ" - }, { - "id" : "209", - "name" : "ロワイヤルスタイルNP" - } ] -}, { - "aliases" : [ { - "hash" : "ca56d3f1c3dfddc86c3e2d5c12c12747", - "id" : "3204201", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "42" - } - }, { - "hash" : "792bcdf081da623dd1fdbac58b9e4399", - "id" : "3304202", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "くのいち忍ドル", - "alias_name_display" : "くのいち忍ドル", - "event" : [ { - "event_id" : "006", - "event_name" : "第6回プロダクションマッチフェスティバル" - } ], - "hash" : "9f221e53168c21925ff336e2c2331eff", - "id" : "3207201", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "くのいち忍ドル", - "alias_name_display" : "くのいち忍ドル", - "event" : [ { - "event_id" : "006", - "event_name" : "第6回プロダクションマッチフェスティバル" - } ], - "hash" : "159060b683d4e8bea49d2c90753f61c7", - "id" : "3307202", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "制服コレクション", - "alias_name_display" : "制服コレクション", - "hash" : "66004323a3b953d2e44968f078de54ab", - "id" : "3209601", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "制服コレクション", - "alias_name_display" : "制服コレクション", - "hash" : "7b0a05b33bd4ab2cff635918cdf66049", - "id" : "3309602", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "リゾート忍ドル", - "alias_name_display" : "リゾート忍ドル", - "hash" : "16912bf56b6bdeb5720986c2865f0c9d", - "id" : "3221201", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "リゾート忍ドル", - "alias_name_display" : "リゾート忍ドル", - "hash" : "0f1161d9c1966cb505756ca600be8d8e", - "id" : "3321202", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "春風スポーツ", - "alias_name_display" : "春風スポーツ", - "hash" : "aeae61e9c8eadfbaa9a18d4d1957f02c", - "id" : "3228401", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "春風スポーツ", - "alias_name_display" : "春風スポーツ", - "hash" : "8bb4775d1c95510634789152546fb595", - "id" : "3328402", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "ロコガール", - "alias_name_display" : "ロコガール", - "event" : [ { - "event_id" : 1707, - "event_name" : "アイドルプロデュース アロハ!常夏の楽園" - } ], - "hash" : "aba42cf3647de7baed67ea72dfafe288", - "id" : "3230501", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "ロコガール", - "alias_name_display" : "ロコガール", - "event" : [ { - "event_id" : 1707, - "event_name" : "アイドルプロデュース アロハ!常夏の楽園" - } ], - "hash" : "cdfbd3cc796f86bd72bfbc59ddb0d37a", - "id" : "3330502", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "オリ・ロコガール", - "alias_name_display" : "オリ・ロコガール", - "event" : [ { - "event_id" : 1707, - "event_name" : "アイドルプロデュース アロハ!常夏の楽園" - } ], - "hash" : "346bf79369d960b64b2687a91743526d", - "id" : "3230601", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "オリ・ロコガール", - "alias_name_display" : "オリ・ロコガール", - "event" : [ { - "event_id" : 1707, - "event_name" : "アイドルプロデュース アロハ!常夏の楽園" - } ], - "hash" : "b2f583b8ab6e0e38ff6b5eac684b30fc", - "id" : "3330602", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "華麗なくのいち", - "alias_name_display" : "華麗なくのいち", - "hash" : "006b31b74f05473ef9f96d9da18aad5b", - "id" : "3407701", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "華麗なくのいち", - "alias_name_display" : "華麗なくのいち", - "hash" : "71558cd2e1d7a1664f22956ce2b3a358", - "id" : "3507702", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "筆術くのいち", - "alias_name_display" : "筆術くのいち", - "event" : [ { - "event_id" : "013", - "event_name" : "第13回プロダクションマッチフェスティバル" - } ], - "hash" : "b0fed18f01b130a35af0a63a73c34e5f", - "id" : "3409801", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "筆術くのいち", - "alias_name_display" : "筆術くのいち", - "event" : [ { - "event_id" : "013", - "event_name" : "第13回プロダクションマッチフェスティバル" - } ], - "hash" : "8479a11885622091deeb77207c85c369", - "id" : "3509802", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "助太刀☆チアー", - "alias_name_display" : "助太刀☆チアー", - "event" : [ { - "event_id" : 1101, - "event_name" : "プロダクション対抗トークバトルショー" - } ], - "hash" : "bb55ef853d7164b8b6d29a4b28be3c3e", - "id" : "3412301", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "助太刀☆チアー", - "alias_name_display" : "助太刀☆チアー", - "event" : [ { - "event_id" : 1101, - "event_name" : "プロダクション対抗トークバトルショー" - } ], - "hash" : "889a7a96129faba04a608bf55171c80c", - "id" : "3512302", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "海風の使者", - "alias_name_display" : "海風の使者", - "hash" : "56297f6f253dada7215cdc52fa5ecbe5", - "id" : "3415801", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "海風の使者", - "alias_name_display" : "海風の使者", - "hash" : "eae651188d4cdbac6e4773e9587cdd77", - "id" : "3515802", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "秘伝☆くのいち", - "alias_name_display" : "秘伝☆くのいち", - "event" : [ { - "event_id" : 713, - "event_name" : "第13回ドリームLIVEフェスティバル" - } ], - "hash" : "0c892e7b0943a2914287dfa8bb44bc9b", - "id" : "3423901", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "秘伝☆くのいち", - "alias_name_display" : "秘伝☆くのいち", - "event" : [ { - "event_id" : 713, - "event_name" : "第13回ドリームLIVEフェスティバル" - } ], - "hash" : "bafd37229535e91c6103b32b90bbd970", - "id" : "3523902", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "純真☆変化", - "alias_name_display" : "純真☆変化", - "hash" : "6ce3af540ca2b7a1c77c6fc26794a4cc", - "id" : "3426801", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "純真☆変化", - "alias_name_display" : "純真☆変化", - "hash" : "ac99882834472fa2caf60e75690f8aca", - "id" : "3526802", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "月影の刺客", - "alias_name_display" : "月影の刺客", - "event" : [ { - "event_id" : 1214, - "event_name" : "目指せくのいち アイドルチャレンジ" - } ], - "hash" : "1d71db748957b5c2a6d9e01a4757a7f9", - "id" : "3437401", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "42" - } - }, { - "alias_name" : "月影の刺客", - "alias_name_display" : "月影の刺客", - "event" : [ { - "event_id" : 1214, - "event_name" : "目指せくのいち アイドルチャレンジ" - } ], - "hash" : "fc4b0d7524dab986a0d4a97f5eab93ff", - "id" : "3537402", - "profile" : { - "bust" : "78", - "height" : "154", - "hip" : "80", - "waist" : "55", - "weight" : "42" - } - } ], - "idol_id" : 192, - "idol_name" : "浜口あやめ", - "idol_name_display" : "浜口あやめ", - "units" : [ { - "id" : "0", - "name" : "くノ一あやめ忍法帖" - }, { - "id" : "19", - "name" : "さつきの頃" - }, { - "id" : "30", - "name" : "センゴク☆ランブ" - }, { - "id" : "38", - "name" : "忍武☆繚乱" - }, { - "id" : "156", - "name" : "センゴク☆華☆ランブ" - }, { - "id" : "179", - "name" : "春霞" - } ] -}, { - "aliases" : [ { - "hash" : "52a9739a10a91ce69139bb28d742e99e", - "id" : "3205101", - "profile" : { - "bust" : "74", - "height" : "146", - "hip" : "76", - "waist" : "53", - "weight" : "37" - } - }, { - "hash" : "e104bb799ff765c82e1be6be6fba6291", - "id" : "3305102", - "profile" : { - "bust" : "74", - "height" : "146", - "hip" : "76", - "waist" : "53", - "weight" : "37" - } - }, { - "alias_name" : "緋桜お嬢", - "alias_name_display" : "緋桜お嬢", - "event" : [ { - "event_id" : "005", - "event_name" : "第5回プロダクションマッチフェスティバル" - } ], - "hash" : "9229fa2ac5d27d5ff9cb61c3edd49baa", - "id" : "3206701", - "profile" : { - "bust" : "74", - "height" : "146", - "hip" : "76", - "waist" : "53", - "weight" : "37" - } - }, { - "alias_name" : "緋桜お嬢", - "alias_name_display" : "緋桜お嬢", - "event" : [ { - "event_id" : "005", - "event_name" : "第5回プロダクションマッチフェスティバル" - } ], - "hash" : "324a9f368dfba1870822807887b3ba7f", - "id" : "3306702", - "profile" : { - "bust" : "74", - "height" : "146", - "hip" : "76", - "waist" : "53", - "weight" : "37" - } - }, { - "alias_name" : "クリスマスパーティー", - "alias_name_display" : "クリスマスパーティー", - "hash" : "063ffec0aa97792c72174763408ba1fb", - "id" : "3214401", - "profile" : { - "bust" : "74", - "height" : "146", - "hip" : "76", - "waist" : "53", - "weight" : "37" - } - }, { - "alias_name" : "クリスマスパーティー", - "alias_name_display" : "クリスマスパーティー", - "hash" : "1b8738bbc354106b60524b170c267ff3", - "id" : "3314402", - "profile" : { - "bust" : "74", - "height" : "146", - "hip" : "76", - "waist" : "53", - "weight" : "37" - } - }, { - "alias_name" : "セレクトメイド", - "alias_name_display" : "セレクトメイド", - "hash" : "c6dac2259d77a69bee5cdc6948f96642", - "id" : "3218701", - "profile" : { - "bust" : "74", - "height" : "146", - "hip" : "76", - "waist" : "53", - "weight" : "37" - } - }, { - "alias_name" : "セレクトメイド", - "alias_name_display" : "セレクトメイド", - "hash" : "ca6c5513c5e2fa0020de3baca8b6a0ef", - "id" : "3318702", - "profile" : { - "bust" : "74", - "height" : "146", - "hip" : "76", - "waist" : "53", - "weight" : "37" - } - }, { - "alias_name" : "クライムI.C", - "alias_name_display" : "クライムI.C", - "event" : [ { - "event_id" : 1211, - "event_name" : "目指せ山頂! アイドルチャレンジ" - } ], - "hash" : "9322735592db663dcc49f60e49f3183f", - "id" : "3329802", - "profile" : { - "bust" : "74", - "height" : "146", - "hip" : "76", - "waist" : "53", - "weight" : "37" - } - }, { - "alias_name" : "新春花道", - "alias_name_display" : "新春花道", - "hash" : "7c46a92d5aed4d00fadb147482537d7b", - "id" : "3404401", - "profile" : { - "bust" : "74", - "height" : "146", - "hip" : "76", - "waist" : "53", - "weight" : "37" - } - }, { - "alias_name" : "新春花道", - "alias_name_display" : "新春花道", - "hash" : "a357bf9e03b66e27cbfe061765e9d1cc", - "id" : "3504402", - "profile" : { - "bust" : "74", - "height" : "146", - "hip" : "76", - "waist" : "53", - "weight" : "37" - } - }, { - "alias_name" : "緋色のプリンセス", - "alias_name_display" : "緋色のプリンセス", - "event" : [ { - "event_id" : 506, - "event_name" : "アイドルLIVEツアーinハワイ" - } ], - "hash" : "0f82f32aefe18696235be44d706de892", - "id" : "3407901", - "profile" : { - "bust" : "74", - "height" : "146", - "hip" : "76", - "waist" : "53", - "weight" : "37" - } - }, { - "alias_name" : "緋色のプリンセス", - "alias_name_display" : "緋色のプリンセス", - "event" : [ { - "event_id" : 506, - "event_name" : "アイドルLIVEツアーinハワイ" - } ], - "hash" : "b1fedfbdbeb47a1cd00a555204dc42bc", - "id" : "3507902", - "profile" : { - "bust" : "74", - "height" : "146", - "hip" : "76", - "waist" : "53", - "weight" : "37" - } - }, { - "alias_name" : "緋色の一皿", - "alias_name_display" : "緋色の一皿", - "event" : [ { - "event_id" : 706, - "event_name" : "第6回ドリームLIVEフェスティバル" - } ], - "hash" : "9ea724a88193776de79ef5f2dc68deed", - "id" : "3412901", - "profile" : { - "bust" : "74", - "height" : "146", - "hip" : "76", - "waist" : "53", - "weight" : "37" - } - }, { - "alias_name" : "緋色の一皿", - "alias_name_display" : "緋色の一皿", - "event" : [ { - "event_id" : 706, - "event_name" : "第6回ドリームLIVEフェスティバル" - } ], - "hash" : "204d94633810b7fc3d886f04802acadd", - "id" : "3512902", - "profile" : { - "bust" : "74", - "height" : "146", - "hip" : "76", - "waist" : "53", - "weight" : "37" - } - }, { - "alias_name" : "紅の一指し", - "alias_name_display" : "紅の一指し", - "hash" : "bede574c4a9a90ab62205799fd9139ef", - "id" : "3419201", - "profile" : { - "bust" : "74", - "height" : "146", - "hip" : "76", - "waist" : "53", - "weight" : "37" - } - }, { - "alias_name" : "紅の一指し", - "alias_name_display" : "紅の一指し", - "hash" : "4bea26175c846e829776dea3b708ea5e", - "id" : "3519202", - "profile" : { - "bust" : "74", - "height" : "146", - "hip" : "76", - "waist" : "53", - "weight" : "37" - } - }, { - "alias_name" : "緋桜宵一刻", - "alias_name_display" : "緋桜宵一刻", - "event" : [ { - "event_id" : 712, - "event_name" : "花見DEドリームLIVEフェスティバル" - } ], - "hash" : "1bbf65958a8b15249f7b3ded9686ba8a", - "id" : "3422501", - "profile" : { - "bust" : "74", - "height" : "146", - "hip" : "76", - "waist" : "53", - "weight" : "37" - } - }, { - "alias_name" : "緋桜宵一刻", - "alias_name_display" : "緋桜宵一刻", - "event" : [ { - "event_id" : 712, - "event_name" : "花見DEドリームLIVEフェスティバル" - } ], - "hash" : "08507b1415aac3425a832f673c3de275", - "id" : "3522502", - "profile" : { - "bust" : "74", - "height" : "146", - "hip" : "76", - "waist" : "53", - "weight" : "37" - } - }, { - "alias_name" : "紅染まる情景", - "alias_name_display" : "紅染まる情景", - "event" : [ { - "event_id" : 717, - "event_name" : "第17回ドリームLIVEフェスティバル" - } ], - "hash" : "f61ce6f523670d1df4811683c3d88932", - "id" : "3427401", - "profile" : { - "bust" : "74", - "height" : "146", - "hip" : "76", - "waist" : "53", - "weight" : "37" - } - }, { - "alias_name" : "紅染まる情景", - "alias_name_display" : "紅染まる情景", - "event" : [ { - "event_id" : 717, - "event_name" : "第17回ドリームLIVEフェスティバル" - } ], - "hash" : "9ed607c190b8f31085a90adb4b333564", - "id" : "3527402", - "profile" : { - "bust" : "74", - "height" : "146", - "hip" : "76", - "waist" : "53", - "weight" : "37" - } - }, { - "alias_name" : "情熱クライマー", - "alias_name_display" : "情熱クライマー", - "event" : [ { - "event_id" : 1211, - "event_name" : "目指せ山頂! アイドルチャレンジ" - } ], - "hash" : "0274b29c98fd5fb1b83903f2b6a184d6", - "id" : "3433801", - "profile" : { - "bust" : "74", - "height" : "146", - "hip" : "76", - "waist" : "53", - "weight" : "37" - } - }, { - "alias_name" : "情熱クライマー", - "alias_name_display" : "情熱クライマー", - "event" : [ { - "event_id" : 1211, - "event_name" : "目指せ山頂! アイドルチャレンジ" - } ], - "hash" : "9f856d31ab13638093c2bae804bda29d", - "id" : "3533802", - "profile" : { - "bust" : "74", - "height" : "146", - "hip" : "76", - "waist" : "53", - "weight" : "37" - } - }, { - "alias_name" : "笑顔でクライマー", - "alias_name_display" : "笑顔でクライマー", - "event" : [ { - "event_id" : 1211, - "event_name" : "目指せ山頂! アイドルチャレンジ" - } ], - "hash" : "56d28fdbe680efdacbfee5769b324d16", - "id" : "3433901", - "profile" : { - "bust" : "74", - "height" : "146", - "hip" : "76", - "waist" : "53", - "weight" : "37" - } - }, { - "alias_name" : "笑顔でクライマー", - "alias_name_display" : "笑顔でクライマー", - "event" : [ { - "event_id" : 1211, - "event_name" : "目指せ山頂! アイドルチャレンジ" - } ], - "hash" : "83b53b4dceb9b7022e17587ced38dc4e", - "id" : "3533902", - "profile" : { - "bust" : "74", - "height" : "146", - "hip" : "76", - "waist" : "53", - "weight" : "37" - } - }, { - "alias_name" : "義理と愛情", - "alias_name_display" : "義理と愛情", - "hash" : "d663200d41b0a9411ce984ffa964cfc5", - "id" : "3437901", - "profile" : { - "bust" : "74", - "height" : "146", - "hip" : "76", - "waist" : "53", - "weight" : "37" - } - }, { - "alias_name" : "義理と愛情", - "alias_name_display" : "義理と愛情", - "hash" : "1c6ff2bbe0458219764965de70302d56", - "id" : "3537902", - "profile" : { - "bust" : "74", - "height" : "146", - "hip" : "76", - "waist" : "53", - "weight" : "37" - } - } ], - "idol_id" : 193, - "idol_name" : "村上巴", - "idol_name_display" : "村上巴", - "units" : [ { - "id" : "52", - "name" : "フォーリンシーサイド" - }, { - "id" : "66", - "name" : "レッドベリィズ" - }, { - "id" : "152", - "name" : "B.B.ロワイヤル" - }, { - "id" : "177", - "name" : "桜舞隊" - } ] -}, { - "aliases" : [ { - "alias_name" : "ニューウェーブ", - "alias_name_display" : "ニューウェーブ", - "event" : [ { - "event_id" : 401, - "event_name" : "新人アイドルプロデュース" - } ], - "hash" : "84775bd2804d19b99d77eddeaa86a02c", - "id" : "3205901", - "profile" : { - "bust" : "85", - "height" : "156", - "hip" : "83", - "waist" : "54", - "weight" : "42" - } - }, { - "alias_name" : "ニューウェーブ", - "alias_name_display" : "ニューウェーブ", - "event" : [ { - "event_id" : 401, - "event_name" : "新人アイドルプロデュース" - } ], - "hash" : "2e4405c20b2ef8458796c8efe0e0a592", - "id" : "3305902", - "profile" : { - "bust" : "85", - "height" : "156", - "hip" : "83", - "waist" : "54", - "weight" : "42" - } - }, { - "alias_name" : "アメリカンスタイル", - "alias_name_display" : "アメリカンスタイル", - "event" : [ { - "event_id" : 501, - "event_name" : "アイドルLIVEツアーinUSA" - } ], - "hash" : "b22058d3eb900c919dc0c48711d34618", - "id" : "3207301", - "profile" : { - "bust" : "85", - "height" : "156", - "hip" : "83", - "waist" : "54", - "weight" : "42" - } - }, { - "alias_name" : "アメリカンスタイル", - "alias_name_display" : "アメリカンスタイル", - "event" : [ { - "event_id" : 501, - "event_name" : "アイドルLIVEツアーinUSA" - } ], - "hash" : "07288a321d758444cb8b4d80bcb77948", - "id" : "3307302", - "profile" : { - "bust" : "85", - "height" : "156", - "hip" : "83", - "waist" : "54", - "weight" : "42" - } - }, { - "alias_name" : "ジューンブライド", - "alias_name_display" : "ジューンブライド", - "hash" : "a37cd388993bc752c3145e815649c566", - "id" : "3210801", - "profile" : { - "bust" : "85", - "height" : "156", - "hip" : "83", - "waist" : "54", - "weight" : "42" - } - }, { - "alias_name" : "ジューンブライド", - "alias_name_display" : "ジューンブライド", - "hash" : "2c344452271d9b3ace6f5f815025a7a7", - "id" : "3310802", - "profile" : { - "bust" : "85", - "height" : "156", - "hip" : "83", - "waist" : "54", - "weight" : "42" - } - }, { - "alias_name" : "サルファーブライト", - "alias_name_display" : "サルファーブライト", - "hash" : "90653f94871586fd61fb3c1f3a6363ef", - "id" : "3215801", - "profile" : { - "bust" : "85", - "height" : "156", - "hip" : "83", - "waist" : "54", - "weight" : "42" - } - }, { - "alias_name" : "サルファーブライト", - "alias_name_display" : "サルファーブライト", - "hash" : "80452b67b1eed6240a01c5b71b98f539", - "id" : "3315802", - "profile" : { - "bust" : "85", - "height" : "156", - "hip" : "83", - "waist" : "54", - "weight" : "42" - } - }, { - "alias_name" : "振袖まつり", - "alias_name_display" : "振袖まつり", - "hash" : "2d1449e0672588d77f37bd725f5cd491", - "id" : "3221001", - "profile" : { - "bust" : "85", - "height" : "156", - "hip" : "83", - "waist" : "54", - "weight" : "42" - } - }, { - "alias_name" : "振袖まつり", - "alias_name_display" : "振袖まつり", - "hash" : "94d5a2817b51f852833622f3c84f06b0", - "id" : "3321002", - "profile" : { - "bust" : "85", - "height" : "156", - "hip" : "83", - "waist" : "54", - "weight" : "42" - } - }, { - "alias_name" : "LIVEバラエティ", - "alias_name_display" : "LIVEバラエティ", - "event" : [ { - "event_id" : 1802, - "event_name" : "アイドルバラエティ 手作りライブプロジェクト!" - } ], - "hash" : "474d81de241426873715c3d2e2a7d006", - "id" : "3326402", - "profile" : { - "bust" : "85", - "height" : "156", - "hip" : "83", - "waist" : "54", - "weight" : "42" - } - }, { - "alias_name" : "ファンサーキット", - "alias_name_display" : "ファンサーキット", - "hash" : "ccf090e74a63bbd02c4adbcc61062c0c", - "id" : "3228701", - "profile" : { - "bust" : "85", - "height" : "156", - "hip" : "83", - "waist" : "54", - "weight" : "42" - } - }, { - "alias_name" : "ファンサーキット", - "alias_name_display" : "ファンサーキット", - "hash" : "6bd4684e21d43d1bd95105c7501ea253", - "id" : "3328702", - "profile" : { - "bust" : "85", - "height" : "156", - "hip" : "83", - "waist" : "54", - "weight" : "42" - } - }, { - "alias_name" : "サルファージョリー", - "alias_name_display" : "サルファージョリー", - "event" : [ { - "event_id" : 728, - "event_name" : "ドリームLIVEフェスティバル スプリングSP" - } ], - "hash" : "8d0283221223adb708f446581e51ca4d", - "id" : "3233601", - "profile" : { - "bust" : "85", - "height" : "156", - "hip" : "83", - "waist" : "54", - "weight" : "42" - } - }, { - "alias_name" : "サルファージョリー", - "alias_name_display" : "サルファージョリー", - "event" : [ { - "event_id" : 728, - "event_name" : "ドリームLIVEフェスティバル スプリングSP" - } ], - "hash" : "ba8adbf8b689ab078caddbc7cba45fd6", - "id" : "3333602", - "profile" : { - "bust" : "85", - "height" : "156", - "hip" : "83", - "waist" : "54", - "weight" : "42" - } - }, { - "alias_name" : "サルファーウェーブ", - "alias_name_display" : "サルファーウェーブ", - "event" : [ { - "event_id" : 801, - "event_name" : "アイドルLIVEロワイヤル" - } ], - "hash" : "cc587b5c006d330d28dd586f5aa01ab5", - "id" : "3409101", - "profile" : { - "bust" : "85", - "height" : "156", - "hip" : "83", - "waist" : "54", - "weight" : "42" - } - }, { - "alias_name" : "サルファーウェーブ", - "alias_name_display" : "サルファーウェーブ", - "event" : [ { - "event_id" : 801, - "event_name" : "アイドルLIVEロワイヤル" - } ], - "hash" : "40b0bf0485405d6fe0253371c92c0932", - "id" : "3509102", - "profile" : { - "bust" : "85", - "height" : "156", - "hip" : "83", - "waist" : "54", - "weight" : "42" - } - }, { - "alias_name" : "黄金の好運", - "alias_name_display" : "黄金の好運", - "hash" : "67e21e4b8d91d5a75e1810c40a58f2d2", - "id" : "3415301", - "profile" : { - "bust" : "85", - "height" : "156", - "hip" : "83", - "waist" : "54", - "weight" : "42" - } - }, { - "alias_name" : "黄金の好運", - "alias_name_display" : "黄金の好運", - "hash" : "dea4197fb41bc0d916debf2f4263c8a5", - "id" : "3515302", - "profile" : { - "bust" : "85", - "height" : "156", - "hip" : "83", - "waist" : "54", - "weight" : "42" - } - }, { - "alias_name" : "シャイニーチアー", - "alias_name_display" : "シャイニーチアー", - "event" : [ { - "event_id" : 1502, - "event_name" : "チーム対抗雨の日トークバトルショー" - } ], - "hash" : "d0511dd81329bcff9ae0bd87dd0f7daf", - "id" : "3424501", - "profile" : { - "bust" : "85", - "height" : "156", - "hip" : "83", - "waist" : "54", - "weight" : "42" - } - }, { - "alias_name" : "シャイニーチアー", - "alias_name_display" : "シャイニーチアー", - "event" : [ { - "event_id" : 1502, - "event_name" : "チーム対抗雨の日トークバトルショー" - } ], - "hash" : "17a8da8f1b09741e0cad2f3f5ccd323e", - "id" : "3524502", - "profile" : { - "bust" : "85", - "height" : "156", - "hip" : "83", - "waist" : "54", - "weight" : "42" - } - }, { - "alias_name" : "魔科学ドクトル", - "alias_name_display" : "魔科学ドクトル", - "event" : [ { - "event_id" : 1904, - "event_name" : "魔界公演 妖艶魔女と消えたハロウィン" - } ], - "hash" : "9b8c49c88c689859176c103c9624c131", - "id" : "3435301", - "profile" : { - "bust" : "85", - "height" : "156", - "hip" : "83", - "waist" : "54", - "weight" : "42" - } - }, { - "alias_name" : "魔科学ドクトル", - "alias_name_display" : "魔科学ドクトル", - "event" : [ { - "event_id" : 1904, - "event_name" : "魔界公演 妖艶魔女と消えたハロウィン" - } ], - "hash" : "bd055ba043dc7166491f48b3587b1984", - "id" : "3535302", - "profile" : { - "bust" : "85", - "height" : "156", - "hip" : "83", - "waist" : "54", - "weight" : "42" - } - } ], - "idol_id" : 194, - "idol_name" : "土屋亜子", - "idol_name_display" : "土屋亜子", - "units" : [ { - "id" : "99", - "name" : "ニューウェーブ" - }, { - "id" : "151", - "name" : "ブエナ・スエルテ" - } ] -}, { - "aliases" : [ { - "hash" : "43868973b8854862d7c02d14e3c03740", - "id" : "3206301", - "profile" : { - "bust" : "73", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "hash" : "cf3952309d0a044864fe64891a138a49", - "id" : "3306302", - "profile" : { - "bust" : "73", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "ひな祭り", - "alias_name_display" : "ひな祭り", - "event" : [ { - "event_id" : 209, - "event_name" : "アイドルサバイバルひな祭り2013" - } ], - "hash" : "029c39ffd4a7437d563d418abb957075", - "id" : "3209001", - "profile" : { - "bust" : "73", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "ひな祭り", - "alias_name_display" : "ひな祭り", - "event" : [ { - "event_id" : 209, - "event_name" : "アイドルサバイバルひな祭り2013" - } ], - "hash" : "d453b8b6edc12b7d723e1a1a2969d007", - "id" : "3309002", - "profile" : { - "bust" : "73", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "はいから料理娘", - "alias_name_display" : "はいから料理娘", - "hash" : "a428515798abc1514df83ae3066cb0c6", - "id" : "3211001", - "profile" : { - "bust" : "73", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "はいから料理娘", - "alias_name_display" : "はいから料理娘", - "hash" : "f8f9d86199c34e4684ba54d055d9bcfd", - "id" : "3311002", - "profile" : { - "bust" : "73", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "グリッターステージ", - "alias_name_display" : "グリッターステージ", - "hash" : "6f89d22c276f688ac37de02735b6e0a9", - "id" : "3216401", - "profile" : { - "bust" : "73", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "グリッターステージ", - "alias_name_display" : "グリッターステージ", - "hash" : "d52d6627d5a0add014631032375ae337", - "id" : "3316402", - "profile" : { - "bust" : "73", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "新春I.C", - "alias_name_display" : "新春I.C", - "event" : [ { - "event_id" : 1204, - "event_name" : "新年かくし芸SP アイドルチャレンジ" - } ], - "hash" : "8079dc0e0dea63c3571ae36597c62b20", - "id" : "3320902", - "profile" : { - "bust" : "73", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "パワフルメイト", - "alias_name_display" : "パワフルメイト", - "event" : [ { - "event_id" : 520, - "event_name" : "青春公演 シング・ア・ソング" - } ], - "hash" : "a788612caf23b550865996cab821698f", - "id" : "3323802", - "profile" : { - "bust" : "73", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "まごころ若女将", - "alias_name_display" : "まごころ若女将", - "event" : [ { - "event_id" : 703, - "event_name" : "第3回ドリームLIVEフェスティバル" - } ], - "hash" : "740d796bdc3fe5bc331f25df386164e4", - "id" : "3409201", - "profile" : { - "bust" : "73", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "まごころ若女将", - "alias_name_display" : "まごころ若女将", - "event" : [ { - "event_id" : 703, - "event_name" : "第3回ドリームLIVEフェスティバル" - } ], - "hash" : "62fbdf5d61178972214ab660b8b71541", - "id" : "3509202", - "profile" : { - "bust" : "73", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "手鞠の芸達者", - "alias_name_display" : "手鞠の芸達者", - "event" : [ { - "event_id" : 1204, - "event_name" : "新年かくし芸SP アイドルチャレンジ" - } ], - "hash" : "f359083d4dd5ab80912ac670b4fcfa2a", - "id" : "3420201", - "profile" : { - "bust" : "73", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "手鞠の芸達者", - "alias_name_display" : "手鞠の芸達者", - "event" : [ { - "event_id" : 1204, - "event_name" : "新年かくし芸SP アイドルチャレンジ" - } ], - "hash" : "914aa8f542329e1039dd149af2501faa", - "id" : "3520202", - "profile" : { - "bust" : "73", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "手鞠の芸達者・S", - "alias_name_display" : "手鞠の芸達者・S", - "event" : [ { - "event_id" : 1204, - "event_name" : "新年かくし芸SP アイドルチャレンジ" - } ], - "hash" : "67e86f423d1bd82990e21e6e99d88425", - "id" : "3420301", - "profile" : { - "bust" : "73", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "手鞠の芸達者・S", - "alias_name_display" : "手鞠の芸達者・S", - "event" : [ { - "event_id" : 1204, - "event_name" : "新年かくし芸SP アイドルチャレンジ" - } ], - "hash" : "702c4529eb6c6a90f7800123193d10eb", - "id" : "3520302", - "profile" : { - "bust" : "73", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "チャーミー・ロワイヤル", - "alias_name_display" : "チャーミー・ロワイヤル", - "event" : [ { - "event_id" : 815, - "event_name" : "アイドルLIVEロワイヤル クリスマスSP" - } ], - "hash" : "b91dddc951d13df4f5901c66b653a248", - "id" : "3428401", - "profile" : { - "bust" : "73", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "チャーミー・ロワイヤル", - "alias_name_display" : "チャーミー・ロワイヤル", - "event" : [ { - "event_id" : 815, - "event_name" : "アイドルLIVEロワイヤル クリスマスSP" - } ], - "hash" : "f7457ada3cc849fac7b99099be1206b6", - "id" : "3528402", - "profile" : { - "bust" : "73", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "サマージャンピン", - "alias_name_display" : "サマージャンピン", - "event" : [ { - "event_id" : 723, - "event_name" : "水着DEドリームLIVEフェスティバル" - } ], - "hash" : "4a8c3fded5624bb3fd188663949c599f", - "id" : "3434101", - "profile" : { - "bust" : "73", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "サマージャンピン", - "alias_name_display" : "サマージャンピン", - "event" : [ { - "event_id" : 723, - "event_name" : "水着DEドリームLIVEフェスティバル" - } ], - "hash" : "a288f6905fe80b48ac93124a6ed086e2", - "id" : "3534102", - "profile" : { - "bust" : "73", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "チャキチャキ☆晴れ娘", - "alias_name_display" : "チャキチャキ☆晴れ娘", - "hash" : "eea58dceca065bf2321c38cb03194094", - "id" : "3438901", - "profile" : { - "bust" : "73", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - }, { - "alias_name" : "チャキチャキ☆晴れ娘", - "alias_name_display" : "チャキチャキ☆晴れ娘", - "hash" : "b55c0b1bb4d08a833d7ae0fbbd248731", - "id" : "3538902", - "profile" : { - "bust" : "73", - "height" : "145", - "hip" : "75", - "waist" : "53", - "weight" : "39" - } - } ], - "idol_id" : 195, - "idol_name" : "首藤葵", - "idol_name_display" : "首藤葵", - "units" : [ { - "id" : "102", - "name" : "パワフルヒーラーズ" - }, { - "id" : "156", - "name" : "センゴク☆華☆ランブ" - } ] -}, { - "aliases" : [ { - "hash" : "697e19df704f2ef4b9aca8fb57aa39d2", - "id" : "3211501", - "profile" : { - "bust" : "76", - "height" : "153", - "hip" : "78", - "waist" : "58", - "weight" : "43" - } - }, { - "hash" : "a795675b428cf7cc384eedde31c6258a", - "id" : "3311502", - "profile" : { - "bust" : "76", - "height" : "153", - "hip" : "78", - "waist" : "58", - "weight" : "43" - } - }, { - "alias_name" : "湯けむり月夜", - "alias_name_display" : "湯けむり月夜", - "hash" : "0b195865a262327e4732c68aeff5456c", - "id" : "3213601", - "profile" : { - "bust" : "76", - "height" : "153", - "hip" : "78", - "waist" : "58", - "weight" : "43" - } - }, { - "alias_name" : "湯けむり月夜", - "alias_name_display" : "湯けむり月夜", - "hash" : "748d86d7610287f202ac26a1d4195269", - "id" : "3313602", - "profile" : { - "bust" : "76", - "height" : "153", - "hip" : "78", - "waist" : "58", - "weight" : "43" - } - }, { - "alias_name" : "ショコラフレーバー", - "alias_name_display" : "ショコラフレーバー", - "event" : [ { - "event_id" : 411, - "event_name" : "アイドルプロデュース チョコレートフォーユー!" - } ], - "hash" : "096e063d60b4b7702c871871d66b4519", - "id" : "3215301", - "profile" : { - "bust" : "76", - "height" : "153", - "hip" : "78", - "waist" : "58", - "weight" : "43" - } - }, { - "alias_name" : "ショコラフレーバー", - "alias_name_display" : "ショコラフレーバー", - "event" : [ { - "event_id" : 411, - "event_name" : "アイドルプロデュース チョコレートフォーユー!" - } ], - "hash" : "60aac231822dea54e7042584603fc4d8", - "id" : "3315302", - "profile" : { - "bust" : "76", - "height" : "153", - "hip" : "78", - "waist" : "58", - "weight" : "43" - } - }, { - "alias_name" : "ショコラフレーバー・S", - "alias_name_display" : "ショコラフレーバー・S", - "event" : [ { - "event_id" : 411, - "event_name" : "アイドルプロデュース チョコレートフォーユー!" - } ], - "hash" : "e96c0d9f1bc2c591042ff10001a3e28e", - "id" : "3215401", - "profile" : { - "bust" : "76", - "height" : "153", - "hip" : "78", - "waist" : "58", - "weight" : "43" - } - }, { - "alias_name" : "ショコラフレーバー・S", - "alias_name_display" : "ショコラフレーバー・S", - "event" : [ { - "event_id" : 411, - "event_name" : "アイドルプロデュース チョコレートフォーユー!" - } ], - "hash" : "7a3d5393fa60cfe4bf872cbcde7bd740", - "id" : "3315402", - "profile" : { - "bust" : "76", - "height" : "153", - "hip" : "78", - "waist" : "58", - "weight" : "43" - } - }, { - "alias_name" : "ロックI.C", - "alias_name_display" : "ロックI.C", - "event" : [ { - "event_id" : 1202, - "event_name" : "目指せロックスター アイドルチャレンジ" - } ], - "hash" : "1d8fc0d491ca864c126ce13cff71e55b", - "id" : "3318402", - "profile" : { - "bust" : "76", - "height" : "153", - "hip" : "78", - "waist" : "58", - "weight" : "43" - } - }, { - "alias_name" : "アイドル取締係", - "alias_name_display" : "アイドル取締係", - "hash" : "8917cbf796fc48c5a8e55d383339eba5", - "id" : "3223101", - "profile" : { - "bust" : "76", - "height" : "153", - "hip" : "78", - "waist" : "58", - "weight" : "43" - } - }, { - "alias_name" : "アイドル取締係", - "alias_name_display" : "アイドル取締係", - "hash" : "39802652866ea5548a61d257a6d787c3", - "id" : "3323102", - "profile" : { - "bust" : "76", - "height" : "153", - "hip" : "78", - "waist" : "58", - "weight" : "43" - } - }, { - "alias_name" : "タラン・アナリーズ", - "alias_name_display" : "タラン・アナリーズ", - "hash" : "94c08885da41d1fc80e33b8e7e23ea6b", - "id" : "3230701", - "profile" : { - "bust" : "76", - "height" : "153", - "hip" : "78", - "waist" : "58", - "weight" : "43" - } - }, { - "alias_name" : "タラン・アナリーズ", - "alias_name_display" : "タラン・アナリーズ", - "hash" : "f9adb6b00e178dc8dbddd07a8c9d3629", - "id" : "3330702", - "profile" : { - "bust" : "76", - "height" : "153", - "hip" : "78", - "waist" : "58", - "weight" : "43" - } - }, { - "alias_name" : "学園の超☆新星", - "alias_name_display" : "学園の超☆新星", - "hash" : "8dd85e79dbfde7f5888c4aabd5805d4b", - "id" : "3413501", - "profile" : { - "bust" : "76", - "height" : "153", - "hip" : "78", - "waist" : "58", - "weight" : "43" - } - }, { - "alias_name" : "学園の超☆新星", - "alias_name_display" : "学園の超☆新星", - "hash" : "789218d49debfd49fe6ea42ed26e7839", - "id" : "3513502", - "profile" : { - "bust" : "76", - "height" : "153", - "hip" : "78", - "waist" : "58", - "weight" : "43" - } - }, { - "alias_name" : "ガールズロッカー", - "alias_name_display" : "ガールズロッカー", - "event" : [ { - "event_id" : 1202, - "event_name" : "目指せロックスター アイドルチャレンジ" - } ], - "hash" : "65358f57a96b392c90e1b573723939e1", - "id" : "3416101", - "profile" : { - "bust" : "76", - "height" : "153", - "hip" : "78", - "waist" : "58", - "weight" : "43" - } - }, { - "alias_name" : "ガールズロッカー", - "alias_name_display" : "ガールズロッカー", - "event" : [ { - "event_id" : 1202, - "event_name" : "目指せロックスター アイドルチャレンジ" - } ], - "hash" : "db755eae0641bef500fb12fda1026268", - "id" : "3516102", - "profile" : { - "bust" : "76", - "height" : "153", - "hip" : "78", - "waist" : "58", - "weight" : "43" - } - }, { - "alias_name" : "ガールズロッカー・S", - "alias_name_display" : "ガールズロッカー・S", - "event" : [ { - "event_id" : 1202, - "event_name" : "目指せロックスター アイドルチャレンジ" - } ], - "hash" : "b5912188c743433a82f5866f9e473ff9", - "id" : "3416201", - "profile" : { - "bust" : "76", - "height" : "153", - "hip" : "78", - "waist" : "58", - "weight" : "43" - } - }, { - "alias_name" : "ガールズロッカー・S", - "alias_name_display" : "ガールズロッカー・S", - "event" : [ { - "event_id" : 1202, - "event_name" : "目指せロックスター アイドルチャレンジ" - } ], - "hash" : "f913a86dcbf8a9c3d60cc4c3beac9944", - "id" : "3516202", - "profile" : { - "bust" : "76", - "height" : "153", - "hip" : "78", - "waist" : "58", - "weight" : "43" - } - }, { - "alias_name" : "ベリーメリーチアー", - "alias_name_display" : "ベリーメリーチアー", - "event" : [ { - "event_id" : 1107, - "event_name" : "プロダクション対抗トークバトルショー クリスマスSP" - } ], - "hash" : "07e0aefc7c9c5fbb79cca7355977460e", - "id" : "3420101", - "profile" : { - "bust" : "76", - "height" : "153", - "hip" : "78", - "waist" : "58", - "weight" : "43" - } - }, { - "alias_name" : "ベリーメリーチアー", - "alias_name_display" : "ベリーメリーチアー", - "event" : [ { - "event_id" : 1107, - "event_name" : "プロダクション対抗トークバトルショー クリスマスSP" - } ], - "hash" : "8e832b807804f4f50dc1bba42ef61426", - "id" : "3520102", - "profile" : { - "bust" : "76", - "height" : "153", - "hip" : "78", - "waist" : "58", - "weight" : "43" - } - }, { - "alias_name" : "超☆スーパーモデル", - "alias_name_display" : "超☆スーパーモデル", - "event" : [ { - "event_id" : 1406, - "event_name" : "第6回ぷちデレラコレクション" - } ], - "hash" : "2b63b7e0ec092dfd36a67f809c36a5a9", - "id" : "3431101", - "profile" : { - "bust" : "76", - "height" : "153", - "hip" : "78", - "waist" : "58", - "weight" : "43" - } - }, { - "alias_name" : "超☆スーパーモデル", - "alias_name_display" : "超☆スーパーモデル", - "event" : [ { - "event_id" : 1406, - "event_name" : "第6回ぷちデレラコレクション" - } ], - "hash" : "795be75c072fbeca019121e5a065f41b", - "id" : "3531102", - "profile" : { - "bust" : "76", - "height" : "153", - "hip" : "78", - "waist" : "58", - "weight" : "43" - } - }, { - "alias_name" : "超☆風紀・ロワイヤル", - "alias_name_display" : "超☆風紀・ロワイヤル", - "event" : [ { - "event_id" : 822, - "event_name" : "第22回アイドルLIVEロワイヤル" - } ], - "hash" : "ed713f3796903b39b2859de02333692e", - "id" : "3438601", - "profile" : { - "bust" : "76", - "height" : "153", - "hip" : "78", - "waist" : "58", - "weight" : "43" - } - }, { - "alias_name" : "超☆風紀・ロワイヤル", - "alias_name_display" : "超☆風紀・ロワイヤル", - "event" : [ { - "event_id" : 822, - "event_name" : "第22回アイドルLIVEロワイヤル" - } ], - "hash" : "d6be32a4312ef65e6697fbd4da5b3926", - "id" : "3538602", - "profile" : { - "bust" : "76", - "height" : "153", - "hip" : "78", - "waist" : "58", - "weight" : "43" - } - } ], - "idol_id" : 196, - "idol_name" : "冴島清美", - "idol_name_display" : "冴島清美", - "units" : [ { - "id" : "169", - "name" : "FOUR PIECE" - }, { - "id" : "211", - "name" : "ワンダー・フル" - } ] -}, { - "aliases" : [ { - "hash" : "d9a0ec5b2f49514b8f6fdbc2b3771f44", - "id" : "3215601", - "profile" : { - "bust" : "ぼんっ", - "height" : "166", - "hip" : "ぼんっ♪", - "waist" : "きゅっ", - "weight" : "ダイエットちゅう" - } - }, { - "hash" : "340ab00d64a6d94dfc46bdc4ceb2cc5f", - "id" : "3315602", - "profile" : { - "bust" : "ぼんっ", - "height" : "166", - "hip" : "ぼんっ♪", - "waist" : "きゅっ", - "weight" : "ダイエットちゅう" - } - }, { - "alias_name" : "T.B.スウィーティー", - "alias_name_display" : "T.B.スウィーティー", - "event" : [ { - "event_id" : 1103, - "event_name" : "第3回プロダクション対抗トークバトルショー" - } ], - "hash" : "c9e9b869be6e4d8b500f800793636dce", - "id" : "3217601", - "profile" : { - "bust" : "ぼんっ", - "height" : "166", - "hip" : "ぼんっ♪", - "waist" : "きゅっ", - "weight" : "ダイエットちゅう" - } - }, { - "alias_name" : "T.B.スウィーティー", - "alias_name_display" : "T.B.スウィーティー", - "event" : [ { - "event_id" : 1103, - "event_name" : "第3回プロダクション対抗トークバトルショー" - } ], - "hash" : "97f9fb8f9bf728f75d26d1c22f49477c", - "id" : "3317602", - "profile" : { - "bust" : "ぼんっ", - "height" : "166", - "hip" : "ぼんっ♪", - "waist" : "きゅっ", - "weight" : "ダイエットちゅう" - } - }, { - "alias_name" : "ネクストスターI.C", - "alias_name_display" : "ネクストスターI.C", - "event" : [ { - "event_id" : 1203, - "event_name" : "目指せきらきらモデル アイドルチャレンジ" - } ], - "hash" : "2d067cd983148c41ec37a279bfa8486d", - "id" : "3319602", - "profile" : { - "bust" : "ぼんっ", - "height" : "166", - "hip" : "ぼんっ♪", - "waist" : "きゅっ", - "weight" : "ダイエットちゅう" - } - }, { - "alias_name" : "ワーキング・スウィーティー", - "alias_name_display" : "ワーキング・スウィーティー", - "hash" : "6385fb5d76d87acc8a5ba8595a7acf6d", - "id" : "3228201", - "profile" : { - "bust" : "ぼんっ", - "height" : "166", - "hip" : "ぼんっ♪", - "waist" : "きゅっ", - "weight" : "ダイエットちゅう" - } - }, { - "alias_name" : "ワーキング・スウィーティー", - "alias_name_display" : "ワーキング・スウィーティー", - "hash" : "e1488e5ae3ac05066a970d9944e8a3a9", - "id" : "3328202", - "profile" : { - "bust" : "ぼんっ", - "height" : "166", - "hip" : "ぼんっ♪", - "waist" : "きゅっ", - "weight" : "ダイエットちゅう" - } - }, { - "alias_name" : "チクッとスウィーティー", - "alias_name_display" : "チクッとスウィーティー", - "hash" : "7fce9acadfec04fbcaeffd38ee89a37c", - "id" : "3232401", - "profile" : { - "bust" : "ぼんっ", - "height" : "166", - "hip" : "ぼんっ♪", - "waist" : "きゅっ", - "weight" : "ダイエットちゅう" - } - }, { - "alias_name" : "チクッとスウィーティー", - "alias_name_display" : "チクッとスウィーティー", - "hash" : "b4f0b6752da23051ae62d105fd8e635a", - "id" : "3332402", - "profile" : { - "bust" : "ぼんっ", - "height" : "166", - "hip" : "ぼんっ♪", - "waist" : "きゅっ", - "weight" : "ダイエットちゅう" - } - }, { - "alias_name" : "ハート・モデル", - "alias_name_display" : "ハート・モデル", - "event" : [ { - "event_id" : 1203, - "event_name" : "目指せきらきらモデル アイドルチャレンジ" - } ], - "hash" : "694a57d1825e26a2132b02becd9912ed", - "id" : "3417701", - "profile" : { - "bust" : "ぼんっ", - "height" : "166", - "hip" : "ぼんっ♪", - "waist" : "きゅっ", - "weight" : "ダイエットちゅう" - } - }, { - "alias_name" : "ハート・モデル", - "alias_name_display" : "ハート・モデル", - "event" : [ { - "event_id" : 1203, - "event_name" : "目指せきらきらモデル アイドルチャレンジ" - } ], - "hash" : "44f999f95a88e0041b321292f5db456c", - "id" : "3517702", - "profile" : { - "bust" : "ぼんっ", - "height" : "166", - "hip" : "ぼんっ♪", - "waist" : "きゅっ", - "weight" : "ダイエットちゅう" - } - }, { - "alias_name" : "ハート・モデル・S", - "alias_name_display" : "ハート・モデル・S", - "event" : [ { - "event_id" : 1203, - "event_name" : "目指せきらきらモデル アイドルチャレンジ" - } ], - "hash" : "e35da96f170e1b96f8e95725f0134d1a", - "id" : "3417801", - "profile" : { - "bust" : "ぼんっ", - "height" : "166", - "hip" : "ぼんっ♪", - "waist" : "きゅっ", - "weight" : "ダイエットちゅう" - } - }, { - "alias_name" : "ハート・モデル・S", - "alias_name_display" : "ハート・モデル・S", - "event" : [ { - "event_id" : 1203, - "event_name" : "目指せきらきらモデル アイドルチャレンジ" - } ], - "hash" : "fdf75acee757844ae1c7ec62cc122b95", - "id" : "3517802", - "profile" : { - "bust" : "ぼんっ", - "height" : "166", - "hip" : "ぼんっ♪", - "waist" : "きゅっ", - "weight" : "ダイエットちゅう" - } - }, { - "alias_name" : "えんじぇるはぁと", - "alias_name_display" : "えんじぇるはぁと", - "hash" : "e4312ec25c1a71e1e6a6f813ee481471", - "id" : "3420801", - "profile" : { - "bust" : "ぼんっ", - "height" : "166", - "hip" : "ぼんっ♪", - "waist" : "きゅっ", - "weight" : "ダイエットちゅう" - } - }, { - "alias_name" : "えんじぇるはぁと", - "alias_name_display" : "えんじぇるはぁと", - "hash" : "789f1a503d40faaf26a0035c6cc3c407", - "id" : "3520802", - "profile" : { - "bust" : "ぼんっ", - "height" : "166", - "hip" : "ぼんっ♪", - "waist" : "きゅっ", - "weight" : "ダイエットちゅう" - } - }, { - "alias_name" : "はぁとの嫁入り", - "alias_name_display" : "はぁとの嫁入り", - "hash" : "70d4fbc5a0fdde7d00431fcebd27ef00", - "id" : "3424001", - "profile" : { - "bust" : "ぼんっ", - "height" : "166", - "hip" : "ぼんっ♪", - "waist" : "きゅっ", - "weight" : "ダイエットちゅう" - } - }, { - "alias_name" : "はぁとの嫁入り", - "alias_name_display" : "はぁとの嫁入り", - "hash" : "f5507a6ede55324eade6917c61cf9d95", - "id" : "3524002", - "profile" : { - "bust" : "ぼんっ", - "height" : "166", - "hip" : "ぼんっ♪", - "waist" : "きゅっ", - "weight" : "ダイエットちゅう" - } - }, { - "alias_name" : "スウィーティー・ロワイヤル", - "alias_name_display" : "スウィーティー・ロワイヤル", - "event" : [ { - "event_id" : 814, - "event_name" : "第14回アイドルLIVEロワイヤル" - } ], - "hash" : "494edfe064b8fb4d35d104020969742d", - "id" : "3427601", - "profile" : { - "bust" : "ぼんっ", - "height" : "166", - "hip" : "ぼんっ♪", - "waist" : "きゅっ", - "weight" : "ダイエットちゅう" - } - }, { - "alias_name" : "スウィーティー・ロワイヤル", - "alias_name_display" : "スウィーティー・ロワイヤル", - "event" : [ { - "event_id" : 814, - "event_name" : "第14回アイドルLIVEロワイヤル" - } ], - "hash" : "6c4b16f4c3351cd74d4f757ba7e67a5e", - "id" : "3527602", - "profile" : { - "bust" : "ぼんっ", - "height" : "166", - "hip" : "ぼんっ♪", - "waist" : "きゅっ", - "weight" : "ダイエットちゅう" - } - }, { - "alias_name" : "常夏パラダイス", - "alias_name_display" : "常夏パラダイス", - "hash" : "bdcb6defb92cad18920c35ced7e4d272", - "id" : "3434201", - "profile" : { - "bust" : "ぼんっ", - "height" : "166", - "hip" : "ぼんっ♪", - "waist" : "きゅっ", - "weight" : "ダイエットちゅう" - } - }, { - "alias_name" : "常夏パラダイス", - "alias_name_display" : "常夏パラダイス", - "hash" : "00a73075d65a7d0c56ceef9dd11c7a06", - "id" : "3534202", - "profile" : { - "bust" : "ぼんっ", - "height" : "166", - "hip" : "ぼんっ♪", - "waist" : "きゅっ", - "weight" : "ダイエットちゅう" - } - } ], - "idol_id" : 197, - "idol_name" : "佐藤心", - "idol_name_display" : "佐藤心", - "units" : [ { - "id" : "7", - "name" : "エターナルレディエイト" - }, { - "id" : "13", - "name" : "カワスウィーティーなボクはぁと(仮)" - }, { - "id" : "23", - "name" : "しゅがしゅが☆み~ん" - }, { - "id" : "184", - "name" : "宵乙女" - }, { - "id" : "207", - "name" : "ムーランルージュ" - } ] -}, { - "aliases" : [ { - "alias_name" : "等身大の素顔", - "alias_name_display" : "等身大の素顔", - "hash" : "8e9bb5d91c1612e5a4962aed94f45a78", - "id" : "3213001", - "profile" : { - "bust" : "79", - "height" : "140", - "hip" : "80", - "waist" : "58", - "weight" : "41" - } - }, { - "alias_name" : "等身大の素顔", - "alias_name_display" : "等身大の素顔", - "hash" : "3c3c58aa3056c75b8139189c71d2afa5", - "id" : "3313002", - "profile" : { - "bust" : "79", - "height" : "140", - "hip" : "80", - "waist" : "58", - "weight" : "41" - } - }, { - "alias_name" : "レジェンドシーフ", - "alias_name_display" : "レジェンドシーフ", - "event" : [ { - "event_id" : 521, - "event_name" : "怪盗公演 美しき追跡者" - } ], - "hash" : "c59d82869331715bcd9d9f0a8b9a1c06", - "id" : "3324702", - "profile" : { - "bust" : "79", - "height" : "140", - "hip" : "80", - "waist" : "58", - "weight" : "41" - } - }, { - "alias_name" : "マーチングバンド", - "alias_name_display" : "マーチングバンド", - "hash" : "ab06c2777617f9bcff312f943cc6f866", - "id" : "3226501", - "profile" : { - "bust" : "79", - "height" : "140", - "hip" : "80", - "waist" : "58", - "weight" : "41" - } - }, { - "alias_name" : "マーチングバンド", - "alias_name_display" : "マーチングバンド", - "hash" : "469b6a4ccbd38b20234c7709cfa14637", - "id" : "3326502", - "profile" : { - "bust" : "79", - "height" : "140", - "hip" : "80", - "waist" : "58", - "weight" : "41" - } - }, { - "alias_name" : "まごころメイド", - "alias_name_display" : "まごころメイド", - "hash" : "5c67bd0d15b98bd30c121d41d898805d", - "id" : "3234201", - "profile" : { - "bust" : "79", - "height" : "140", - "hip" : "80", - "waist" : "58", - "weight" : "41" - } - }, { - "alias_name" : "まごころメイド", - "alias_name_display" : "まごころメイド", - "hash" : "a2a18aad6f03d8eff6eb539a3f7d1b63", - "id" : "3334202", - "profile" : { - "bust" : "79", - "height" : "140", - "hip" : "80", - "waist" : "58", - "weight" : "41" - } - }, { - "alias_name" : "小さな英雄", - "alias_name_display" : "小さな英雄", - "hash" : "abbbabfa5e9a819053742de3ca99ba21", - "id" : "3400401", - "profile" : { - "bust" : "79", - "height" : "140", - "hip" : "80", - "waist" : "58", - "weight" : "41" - } - }, { - "alias_name" : "小さな英雄", - "alias_name_display" : "小さな英雄", - "hash" : "91439894ec4fdaed270c83fc0e6d6dfb", - "id" : "3500402", - "profile" : { - "bust" : "79", - "height" : "140", - "hip" : "80", - "waist" : "58", - "weight" : "41" - } - }, { - "alias_name" : "ミンナノミカタ", - "alias_name_display" : "ミンナノミカタ", - "event" : [ { - "event_id" : 1103, - "event_name" : "第3回プロダクション対抗トークバトルショー" - } ], - "hash" : "c9de774c074706e3b00f4c57bcaf19fb", - "id" : "3415201", - "profile" : { - "bust" : "79", - "height" : "140", - "hip" : "80", - "waist" : "58", - "weight" : "41" - } - }, { - "alias_name" : "ミンナノミカタ", - "alias_name_display" : "ミンナノミカタ", - "event" : [ { - "event_id" : 1103, - "event_name" : "第3回プロダクション対抗トークバトルショー" - } ], - "hash" : "bbcc7d08ecafb83fa87d6eb23346d512", - "id" : "3515202", - "profile" : { - "bust" : "79", - "height" : "140", - "hip" : "80", - "waist" : "58", - "weight" : "41" - } - }, { - "alias_name" : "無限大の夢", - "alias_name_display" : "無限大の夢", - "hash" : "90704fe71aac46fb8a34b98a0d4dd7f4", - "id" : "3430301", - "profile" : { - "bust" : "79", - "height" : "140", - "hip" : "80", - "waist" : "58", - "weight" : "41" - } - }, { - "alias_name" : "無限大の夢", - "alias_name_display" : "無限大の夢", - "hash" : "a3697dced0815fc5f72fdbabdcc000ff", - "id" : "3530302", - "profile" : { - "bust" : "79", - "height" : "140", - "hip" : "80", - "waist" : "58", - "weight" : "41" - } - }, { - "alias_name" : "ジャスティスブレイズ", - "alias_name_display" : "ジャスティスブレイズ", - "event" : [ { - "event_id" : "032", - "event_name" : "第32回プロダクションマッチフェスティバル" - } ], - "hash" : "afc890c6cbb5ba31bd2c0b60baa3fb15", - "id" : "3436101", - "profile" : { - "bust" : "79", - "height" : "140", - "hip" : "80", - "waist" : "58", - "weight" : "41" - } - }, { - "alias_name" : "ジャスティスブレイズ", - "alias_name_display" : "ジャスティスブレイズ", - "event" : [ { - "event_id" : "032", - "event_name" : "第32回プロダクションマッチフェスティバル" - } ], - "hash" : "6cdda5b7a8549133166ba9eb9be99096", - "id" : "3536102", - "profile" : { - "bust" : "79", - "height" : "140", - "hip" : "80", - "waist" : "58", - "weight" : "41" - } - } ], - "idol_id" : 198, - "idol_name" : "南条光", - "idol_name_display" : "南条光", - "units" : [ { - "id" : "46", - "name" : "ヒーローヴァーサス" - }, { - "id" : "64", - "name" : "リトルヒーロー" - }, { - "id" : "214", - "name" : "L.M.B.G" - } ] -}, { - "aliases" : [ { - "hash" : "24d5423d9fe8deb825e29b8a516d39de", - "id" : "3400501", - "profile" : { - "bust" : "82", - "height" : "166", - "hip" : "83", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "スペシャルテクニック", - "alias_name_display" : "スペシャルテクニック", - "event" : [ { - "event_id" : 303, - "event_name" : "アイドル強化合宿" - } ], - "hash" : "e9c8869f89f20e106098b24f222d9769", - "id" : "3402401", - "profile" : { - "bust" : "82", - "height" : "166", - "hip" : "83", - "waist" : "56", - "weight" : "45" - } - }, { - "alias_name" : "地獄の特訓", - "alias_name_display" : "地獄の特訓", - "hash" : "6681d3a0c30f354a44317608a1d68971", - "id" : "3412201", - "profile" : { - "bust" : "82", - "height" : "166", - "hip" : "83", - "waist" : "56", - "weight" : "45" - } - } ], - "idol_id" : 199, - "idol_name" : "マスタートレーナー", - "idol_name_display" : "マスタートレーナー" -}, { - "aliases" : [ { - "alias_name" : "ホーリーガール", - "alias_name_display" : "ホーリーガール", - "hash" : "f8c5c2664ca76f4aa84b267300290d54", - "id" : "3229901", - "profile" : { - "bust" : "81", - "height" : "165", - "hip" : "80", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "ホーリーガール", - "alias_name_display" : "ホーリーガール", - "hash" : "b886108b5b598273662056ff15dc76cb", - "id" : "3329902", - "profile" : { - "bust" : "81", - "height" : "165", - "hip" : "80", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "聖夜の使者", - "alias_name_display" : "聖夜の使者", - "event" : [ { - "event_id" : 101, - "event_name" : "星降るクリスマス" - } ], - "hash" : "49f6fd4549adcb500dcc21d87297e5bb", - "id" : "3400601", - "profile" : { - "bust" : "81", - "height" : "165", - "hip" : "80", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "聖夜の使者", - "alias_name_display" : "聖夜の使者", - "event" : [ { - "event_id" : 101, - "event_name" : "星降るクリスマス" - } ], - "hash" : "106db7ae8a02839fbaac3658a11cf2b9", - "id" : "3500602", - "profile" : { - "bust" : "81", - "height" : "165", - "hip" : "80", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "渚のマーメイド", - "alias_name_display" : "渚のマーメイド", - "hash" : "4aecdc034fc76ca31243603d3fdfbca8", - "id" : "3402501", - "profile" : { - "bust" : "81", - "height" : "165", - "hip" : "80", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "渚のマーメイド", - "alias_name_display" : "渚のマーメイド", - "hash" : "c9d1b3f76a38a9e4b8897028c4430754", - "id" : "3502502", - "profile" : { - "bust" : "81", - "height" : "165", - "hip" : "80", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "温泉郷の救世主", - "alias_name_display" : "温泉郷の救世主", - "hash" : "657a35f18d07f00a1dc67170ef05ca36", - "id" : "3406001", - "profile" : { - "bust" : "81", - "height" : "165", - "hip" : "80", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "温泉郷の救世主", - "alias_name_display" : "温泉郷の救世主", - "hash" : "266483313283264643bb92cfdb9b520f", - "id" : "3506002", - "profile" : { - "bust" : "81", - "height" : "165", - "hip" : "80", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "ハッピーホーリーナイト", - "alias_name_display" : "ハッピーホーリーナイト", - "event" : [ { - "event_id" : 1001, - "event_name" : "プロダクション対抗ドリームLIVEフェスティバル" - } ], - "hash" : "ead06a92514b67ede47e8b0ff2d7ec36", - "id" : "3410501", - "profile" : { - "bust" : "81", - "height" : "165", - "hip" : "80", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "ハッピーホーリーナイト", - "alias_name_display" : "ハッピーホーリーナイト", - "event" : [ { - "event_id" : 1001, - "event_name" : "プロダクション対抗ドリームLIVEフェスティバル" - } ], - "hash" : "9aa5c47cb237eca12686c8310a9a1617", - "id" : "3510502", - "profile" : { - "bust" : "81", - "height" : "165", - "hip" : "80", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "ふわふわホーリーナイト", - "alias_name_display" : "ふわふわホーリーナイト", - "event" : [ { - "event_id" : 710, - "event_name" : "サンタDEドリームLIVEフェスティバル" - } ], - "hash" : "13cd8e91ab44bed6a0eb3ad73ac98d55", - "id" : "3419901", - "profile" : { - "bust" : "81", - "height" : "165", - "hip" : "80", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "ふわふわホーリーナイト", - "alias_name_display" : "ふわふわホーリーナイト", - "event" : [ { - "event_id" : 710, - "event_name" : "サンタDEドリームLIVEフェスティバル" - } ], - "hash" : "86e560efafce2bd5b91d2da5fa9a9649", - "id" : "3519902", - "profile" : { - "bust" : "81", - "height" : "165", - "hip" : "80", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "マジカルホーリーナイト", - "alias_name_display" : "マジカルホーリーナイト", - "event" : [ { - "event_id" : 1208, - "event_name" : "目指せサンタクロース アイドルチャレンジ" - } ], - "hash" : "8700eb37ea90c08296384294dcba8f0b", - "id" : "3428501", - "profile" : { - "bust" : "81", - "height" : "165", - "hip" : "80", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "マジカルホーリーナイト", - "alias_name_display" : "マジカルホーリーナイト", - "event" : [ { - "event_id" : 1208, - "event_name" : "目指せサンタクロース アイドルチャレンジ" - } ], - "hash" : "b4157ceea09c89490bcefdf47e81f2c8", - "id" : "3528502", - "profile" : { - "bust" : "81", - "height" : "165", - "hip" : "80", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "幸せのお届け人", - "alias_name_display" : "幸せのお届け人", - "hash" : "7b4c4efa720fb207fccb3a7161c73360", - "id" : "3436601", - "profile" : { - "bust" : "81", - "height" : "165", - "hip" : "80", - "waist" : "56", - "weight" : "44" - } - }, { - "alias_name" : "幸せのお届け人", - "alias_name_display" : "幸せのお届け人", - "hash" : "876fb43ce5ef639022ddf7ce233a859a", - "id" : "3536602", - "profile" : { - "bust" : "81", - "height" : "165", - "hip" : "80", - "waist" : "56", - "weight" : "44" - } - } ], - "idol_id" : 200, - "idol_name" : "イヴ・サンタクロース", - "idol_name_display" : "イヴ・サンタクロース" -}, { - "aliases" : [ { - "alias_name" : "ラブキュンバレンタイン", - "alias_name_display" : "ラブキュンバレンタイン", - "event" : [ { - "event_id" : 1906, - "event_name" : "ディアリースターハート ~ラブキュンバレンタイン~" - } ], - "hash" : "5b85ccd2e62127d71edeb18ca68a43b6", - "id" : "1232001", - "profile" : { - "bust" : "78", - "height" : "149", - "hip" : "79", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "ラブキュンバレンタイン", - "alias_name_display" : "ラブキュンバレンタイン", - "event" : [ { - "event_id" : 1906, - "event_name" : "ディアリースターハート ~ラブキュンバレンタイン~" - } ], - "hash" : "caa9df35d41ce022727122458d34a5b3", - "id" : "1332002", - "profile" : { - "bust" : "78", - "height" : "149", - "hip" : "79", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "夜桜奇譚", - "alias_name_display" : "夜桜奇譚", - "event" : [ { - "event_id" : 1907, - "event_name" : "ディアリースタークエスト ~夜桜奇譚~" - } ], - "hash" : "c3dc039dbb8e4e3b2ea2ce70dcc0279a", - "id" : "1232701", - "profile" : { - "bust" : "78", - "height" : "149", - "hip" : "79", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "夜桜奇譚", - "alias_name_display" : "夜桜奇譚", - "event" : [ { - "event_id" : 1907, - "event_name" : "ディアリースタークエスト ~夜桜奇譚~" - } ], - "hash" : "acb21dca7cfc523e0a041f32c92f0c8e", - "id" : "1332702", - "profile" : { - "bust" : "78", - "height" : "149", - "hip" : "79", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "聖夜のキセキ", - "alias_name_display" : "聖夜のキセキ", - "event" : [ { - "event_id" : 1905, - "event_name" : "ディアリースターナイト ~聖夜のキセキ~" - } ], - "hash" : "4270223bf3b0fa1fe9ad07050b397f65", - "id" : "1437201", - "profile" : { - "bust" : "78", - "height" : "149", - "hip" : "79", - "waist" : "55", - "weight" : "40" - } - }, { - "alias_name" : "聖夜のキセキ", - "alias_name_display" : "聖夜のキセキ", - "event" : [ { - "event_id" : 1905, - "event_name" : "ディアリースターナイト ~聖夜のキセキ~" - } ], - "hash" : "e39015d925db23fa7c4a5fbfeaf09534", - "id" : "1537202", - "profile" : { - "bust" : "78", - "height" : "149", - "hip" : "79", - "waist" : "55", - "weight" : "40" - } - } ], - "idol_id" : 201, - "idol_name" : "日高愛", - "idol_name_display" : "日高愛" -}, { - "aliases" : [ { - "alias_name" : "聖夜のキセキ", - "alias_name_display" : "聖夜のキセキ", - "event" : [ { - "event_id" : 1905, - "event_name" : "ディアリースターナイト ~聖夜のキセキ~" - } ], - "hash" : "addeb97fac43f59ea040b91102e7a6fd", - "id" : "2229601", - "profile" : { - "bust" : "82", - "height" : "152", - "hip" : "76", - "waist" : "53", - "weight" : "36" - } - }, { - "alias_name" : "聖夜のキセキ", - "alias_name_display" : "聖夜のキセキ", - "event" : [ { - "event_id" : 1905, - "event_name" : "ディアリースターナイト ~聖夜のキセキ~" - } ], - "hash" : "4ff1e97c188a31e681f47940481fd2e4", - "id" : "2329602", - "profile" : { - "bust" : "82", - "height" : "152", - "hip" : "76", - "waist" : "53", - "weight" : "36" - } - }, { - "alias_name" : "ラブキュンバレンタイン", - "alias_name_display" : "ラブキュンバレンタイン", - "event" : [ { - "event_id" : 1906, - "event_name" : "ディアリースターハート ~ラブキュンバレンタイン~" - } ], - "hash" : "e9e3e22a50cb40f14e8af378610d8827", - "id" : "2230501", - "profile" : { - "bust" : "82", - "height" : "152", - "hip" : "76", - "waist" : "53", - "weight" : "36" - } - }, { - "alias_name" : "ラブキュンバレンタイン", - "alias_name_display" : "ラブキュンバレンタイン", - "event" : [ { - "event_id" : 1906, - "event_name" : "ディアリースターハート ~ラブキュンバレンタイン~" - } ], - "hash" : "70927bba624b93645c5e3d510c8efa69", - "id" : "2330502", - "profile" : { - "bust" : "82", - "height" : "152", - "hip" : "76", - "waist" : "53", - "weight" : "36" - } - }, { - "alias_name" : "夜桜奇譚", - "alias_name_display" : "夜桜奇譚", - "event" : [ { - "event_id" : 1907, - "event_name" : "ディアリースタークエスト ~夜桜奇譚~" - } ], - "hash" : "7ad6bd146fe2c0a9d7f4d1d70e85339a", - "id" : "2439301", - "profile" : { - "bust" : "82", - "height" : "152", - "hip" : "76", - "waist" : "53", - "weight" : "36" - } - }, { - "alias_name" : "夜桜奇譚", - "alias_name_display" : "夜桜奇譚", - "event" : [ { - "event_id" : 1907, - "event_name" : "ディアリースタークエスト ~夜桜奇譚~" - } ], - "hash" : "2c578bcb320f60bfd692e097bff03291", - "id" : "2539302", - "profile" : { - "bust" : "82", - "height" : "152", - "hip" : "76", - "waist" : "53", - "weight" : "36" - } - } ], - "idol_id" : 202, - "idol_name" : "水谷絵理", - "idol_name_display" : "水谷絵理" -}, { - "aliases" : [ { - "alias_name" : "聖夜のキセキ", - "alias_name_display" : "聖夜のキセキ", - "event" : [ { - "event_id" : 1905, - "event_name" : "ディアリースターナイト ~聖夜のキセキ~" - } ], - "hash" : "74bfb36578411126f56d04baeb48212d", - "id" : "3231901", - "profile" : { - "bust" : "80", - "height" : "162", - "hip" : "80", - "waist" : "59", - "weight" : "54" - } - }, { - "alias_name" : "聖夜のキセキ", - "alias_name_display" : "聖夜のキセキ", - "event" : [ { - "event_id" : 1905, - "event_name" : "ディアリースターナイト ~聖夜のキセキ~" - } ], - "hash" : "c79b5a90e44cbca6c6b31c566e8b0878", - "id" : "3331902", - "profile" : { - "bust" : "80", - "height" : "162", - "hip" : "80", - "waist" : "59", - "weight" : "54" - } - }, { - "alias_name" : "夜桜奇譚", - "alias_name_display" : "夜桜奇譚", - "event" : [ { - "event_id" : 1907, - "event_name" : "ディアリースタークエスト ~夜桜奇譚~" - } ], - "hash" : "8528eab7689a81e088cc8b537a7308b3", - "id" : "3233901", - "profile" : { - "bust" : "80", - "height" : "162", - "hip" : "80", - "waist" : "59", - "weight" : "54" - } - }, { - "alias_name" : "夜桜奇譚", - "alias_name_display" : "夜桜奇譚", - "event" : [ { - "event_id" : 1907, - "event_name" : "ディアリースタークエスト ~夜桜奇譚~" - } ], - "hash" : "9ec1db535f6c5277ab50ffd22d33953c", - "id" : "3333902", - "profile" : { - "bust" : "80", - "height" : "162", - "hip" : "80", - "waist" : "59", - "weight" : "54" - } - }, { - "alias_name" : "ラブキュンバレンタイン", - "alias_name_display" : "ラブキュンバレンタイン", - "event" : [ { - "event_id" : 1906, - "event_name" : "ディアリースターハート ~ラブキュンバレンタイン~" - } ], - "hash" : "3b618f0273fecf8b47e9c4b5fd9366a4", - "id" : "3438101", - "profile" : { - "bust" : "80", - "height" : "162", - "hip" : "80", - "waist" : "59", - "weight" : "54" - } - }, { - "alias_name" : "ラブキュンバレンタイン", - "alias_name_display" : "ラブキュンバレンタイン", - "event" : [ { - "event_id" : 1906, - "event_name" : "ディアリースターハート ~ラブキュンバレンタイン~" - } ], - "hash" : "cb10db1e0bcf18c7ae8b49edee29eea2", - "id" : "3538102", - "profile" : { - "bust" : "80", - "height" : "162", - "hip" : "80", - "waist" : "59", - "weight" : "54" - } - } ], - "idol_id" : 203, - "idol_name" : "秋月涼", - "idol_name_display" : "秋月涼" -} ] +[ + null, + { + "aliases": [ + { + "hash": "0dabb79ff64691111a0abae2ffed01ce", + "id": "1000101", + "profile": { + "bust": "83", + "height": "159", + "hip": "87", + "waist": "59", + "weight": "45" + } + }, + { + "hash": "798ed3093c682f20234934cef65c2106", + "id": "1100102", + "profile": { + "bust": "83", + "height": "159", + "hip": "87", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "2ndアニバーサリー", + "alias_name_display": "2ndアニバーサリー", + "event": [ + { + "event_id": 410, + "event_name": "アイドルプロデュース the 2nd Anniversary" + } + ], + "hash": "250645af5bca76120314f21e69b0caca", + "id": "1213201", + "profile": { + "bust": "83", + "height": "159", + "hip": "87", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "2ndアニバーサリー", + "alias_name_display": "2ndアニバーサリー", + "event": [ + { + "event_id": 410, + "event_name": "アイドルプロデュース the 2nd Anniversary" + } + ], + "hash": "5ebb3e7bbe7fd6a46a5bfc3eab50097f", + "id": "1313202", + "profile": { + "bust": "83", + "height": "159", + "hip": "87", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "2ndアニバーサリー・スマイル", + "alias_name_display": "2ndアニバーサリー・スマイル", + "event": [ + { + "event_id": 410, + "event_name": "アイドルプロデュース the 2nd Anniversary" + } + ], + "hash": "61bde20d527ff4744e91729ffbd67058", + "id": "1213301", + "profile": { + "bust": "83", + "height": "159", + "hip": "87", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "2ndアニバーサリー・スマイル", + "alias_name_display": "2ndアニバーサリー・スマイル", + "event": [ + { + "event_id": 410, + "event_name": "アイドルプロデュース the 2nd Anniversary" + } + ], + "hash": "421e19ae69094b30d5edd8fa97e4d7bf", + "id": "1313302", + "profile": { + "bust": "83", + "height": "159", + "hip": "87", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "2ndアニバーサリー・ネコミミ", + "alias_name_display": "2ndアニバーサリー・ネコミミ", + "event": [ + { + "event_id": 410, + "event_name": "アイドルプロデュース the 2nd Anniversary" + } + ], + "hash": "7d7fa151dcc1e44e6aaeadb3fd14eab7", + "id": "1213401", + "profile": { + "bust": "83", + "height": "159", + "hip": "87", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "2ndアニバーサリー・ネコミミ", + "alias_name_display": "2ndアニバーサリー・ネコミミ", + "event": [ + { + "event_id": 410, + "event_name": "アイドルプロデュース the 2nd Anniversary" + } + ], + "hash": "09b1b846d0f89dc251b0bcac4e497e14", + "id": "1313402", + "profile": { + "bust": "83", + "height": "159", + "hip": "87", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "ニュージェネレーション", + "alias_name_display": "ニュージェネレーション", + "hash": "00f4266728c5a057c338b3033a9aa17c", + "id": "1401801", + "profile": { + "bust": "83", + "height": "159", + "hip": "87", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "ニュージェネレーション", + "alias_name_display": "ニュージェネレーション", + "hash": "c33c2372ddc593434572ddc9265d64e4", + "id": "1501802", + "profile": { + "bust": "83", + "height": "159", + "hip": "87", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "f69c865e5d5e3ef35843e5900ffad3be", + "id": "1402501", + "profile": { + "bust": "83", + "height": "159", + "hip": "87", + "waist": "59", + "weight": "45" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "aa559b2b0e83b4b98c5372b171b2e9f7", + "id": "1502502", + "profile": { + "bust": "83", + "height": "159", + "hip": "87", + "waist": "59", + "weight": "45" + } + }, + { + "alias_name": "新春の華姫", + "alias_name_display": "新春の華姫", + "hash": "6628f9feaa319f6b228fb52b057388d0", + "id": "1404501", + "profile": { + "bust": "83", + "height": "159", + "hip": "87", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "新春の華姫", + "alias_name_display": "新春の華姫", + "hash": "eb58e141b268cd2c22134a8572fb14bc", + "id": "1504502", + "profile": { + "bust": "83", + "height": "159", + "hip": "87", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "はじけて♪サマー", + "alias_name_display": "はじけて♪サマー", + "hash": "a8ac3c44eb75cd9b5b3b359cab9f3f31", + "id": "1411801", + "profile": { + "bust": "83", + "height": "159", + "hip": "87", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "はじけて♪サマー", + "alias_name_display": "はじけて♪サマー", + "hash": "15159f0ac1f58bdd90ddd0532faaa4d1", + "id": "1511802", + "profile": { + "bust": "83", + "height": "159", + "hip": "87", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "ワンダフルマジック", + "alias_name_display": "ワンダフルマジック", + "hash": "00a10e6b8e178ce3976b1b0456af74ca", + "id": "1413401", + "profile": { + "bust": "83", + "height": "159", + "hip": "87", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "ワンダフルマジック", + "alias_name_display": "ワンダフルマジック", + "hash": "865bdc197f5ee49d902694d6ebfc9022", + "id": "1513402", + "profile": { + "bust": "83", + "height": "159", + "hip": "87", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "ウィーアーザフレンズ", + "alias_name_display": "ウィーアーザフレンズ", + "hash": "f781ef4c14e675083bc0068d34e09386", + "id": "1517002", + "profile": { + "bust": "83", + "height": "159", + "hip": "87", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "アニバーサリーフォーユー", + "alias_name_display": "アニバーサリーフォーユー", + "hash": "a9377e14d83aad99d635f52da5bdaaee", + "id": "1420301", + "profile": { + "bust": "83", + "height": "159", + "hip": "87", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "アニバーサリーフォーユー", + "alias_name_display": "アニバーサリーフォーユー", + "hash": "616664284f3ddf53a42d0b626133a9f4", + "id": "1520302", + "profile": { + "bust": "83", + "height": "159", + "hip": "87", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "ドリームストーリー", + "alias_name_display": "ドリームストーリー", + "hash": "34e7b232ee8887d3561285595ce8ce8b", + "id": "1521402", + "profile": { + "bust": "83", + "height": "159", + "hip": "87", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "G4U!", + "alias_name_display": "G4U!", + "hash": "f28077a23bfe9608f2ee0971655cd492", + "id": "1523802", + "profile": { + "bust": "83", + "height": "159", + "hip": "87", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "ワンダーメイド", + "alias_name_display": "ワンダーメイド", + "hash": "c7424c2f32ffb2348a2fe5f7bb9d70ba", + "id": "1427201", + "profile": { + "bust": "83", + "height": "159", + "hip": "87", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "ワンダーメイド", + "alias_name_display": "ワンダーメイド", + "hash": "700fb803afd6413117dcd8d4b499745b", + "id": "1527202", + "profile": { + "bust": "83", + "height": "159", + "hip": "87", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "笑顔の原点", + "alias_name_display": "笑顔の原点", + "hash": "ba0bdaa1002fbe32da508725212d1f92", + "id": "1432701", + "profile": { + "bust": "83", + "height": "159", + "hip": "87", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "笑顔の原点", + "alias_name_display": "笑顔の原点", + "hash": "a366ceb2fcfda4f30ada58439dfc80c1", + "id": "1532702", + "profile": { + "bust": "83", + "height": "159", + "hip": "87", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "シンデレラガール", + "alias_name_display": "シンデレラガール", + "hash": "d42b08b2d8bccbfaa9324bbda41de0d1", + "id": "1434001", + "profile": { + "bust": "83", + "height": "159", + "hip": "87", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "シンデレラガール", + "alias_name_display": "シンデレラガール", + "hash": "2e4a0459415d8d8b8600bb80a777d85b", + "id": "1534002", + "profile": { + "bust": "83", + "height": "159", + "hip": "87", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "アニバーサリープリンセス", + "alias_name_display": "アニバーサリープリンセス", + "event": [ + { + "event_id": 1708, + "event_name": "アイドルプロデュース the 5th Anniversary" + } + ], + "hash": "8b1ad6b6bd53c893b9107819c9bd0495", + "id": "1436601", + "profile": { + "bust": "83", + "height": "159", + "hip": "87", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "アニバーサリープリンセス", + "alias_name_display": "アニバーサリープリンセス", + "event": [ + { + "event_id": 1708, + "event_name": "アイドルプロデュース the 5th Anniversary" + } + ], + "hash": "1338de950f95214e111dad2943f191c8", + "id": "1536602", + "profile": { + "bust": "83", + "height": "159", + "hip": "87", + "waist": "58", + "weight": "44" + } + } + ], + "idol_id": 1, + "idol_name": "島村卯月", + "idol_name_display": "島村卯月", + "units": [ + { + "id": "21", + "name": "ジェネレーションオブサマー" + }, + { + "id": "109", + "name": "new generations" + }, + { + "id": "135", + "name": "ピンキーキュート" + }, + { + "id": "138", + "name": "ピンクチェックスクール" + }, + { + "id": "195", + "name": "C5" + }, + { + "id": "205", + "name": "シンデレラガール" + }, + { + "id": "213", + "name": "CINDERELLA PROJECT" + } + ] + }, + { + "aliases": [ + { + "hash": "46c53f722dfaa05a4f4d36b7821a686a", + "id": "1000201", + "profile": { + "bust": "77", + "height": "149", + "hip": "81", + "waist": "57", + "weight": "40" + } + }, + { + "hash": "929d8ba093d1be6624734173b6e5066a", + "id": "1100202", + "profile": { + "bust": "77", + "height": "149", + "hip": "81", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "お花見", + "alias_name_display": "お花見", + "event": [ + { + "event_id": 104, + "event_name": "桜舞う花見祭り" + } + ], + "hash": "22fd192e16f0ee5d1539b343a8f18925", + "id": "1203701", + "profile": { + "bust": "77", + "height": "149", + "hip": "81", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "お花見", + "alias_name_display": "お花見", + "event": [ + { + "event_id": 104, + "event_name": "桜舞う花見祭り" + } + ], + "hash": "2c97a783f38ff22d0a8a903358acf92a", + "id": "1303702", + "profile": { + "bust": "77", + "height": "149", + "hip": "81", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "パワフル&スマイル", + "alias_name_display": "パワフル&スマイル", + "hash": "5f74fa33d7f4d70270d5de88b9607222", + "id": "1205701", + "profile": { + "bust": "77", + "height": "149", + "hip": "81", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "パワフル&スマイル", + "alias_name_display": "パワフル&スマイル", + "hash": "e23e339b42039e29def1a1d3fb53f341", + "id": "1305702", + "profile": { + "bust": "77", + "height": "149", + "hip": "81", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "ビキニチャレンジ", + "alias_name_display": "ビキニチャレンジ", + "event": [ + { + "event_id": 702, + "event_name": "水着DEドリームLIVEフェスティバル" + } + ], + "hash": "2a44bb0f8a3f6056ee6ae93ce85d37e0", + "id": "1211201", + "profile": { + "bust": "77", + "height": "149", + "hip": "81", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "ビキニチャレンジ", + "alias_name_display": "ビキニチャレンジ", + "event": [ + { + "event_id": 702, + "event_name": "水着DEドリームLIVEフェスティバル" + } + ], + "hash": "5728168713d43f6166617778d5383d17", + "id": "1311202", + "profile": { + "bust": "77", + "height": "149", + "hip": "81", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "ナデシコI.C", + "alias_name_display": "ナデシコI.C", + "event": [ + { + "event_id": 1207, + "event_name": "目指せ大和撫子 アイドルチャレンジ" + } + ], + "hash": "c544cf8434aad3802004185664a27d82", + "id": "1323702", + "profile": { + "bust": "77", + "height": "149", + "hip": "81", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "ウェディングセレモニー", + "alias_name_display": "ウェディングセレモニー", + "hash": "036055e8855d54d50bf860b2e8e886c0", + "id": "1230301", + "profile": { + "bust": "77", + "height": "149", + "hip": "81", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "ウェディングセレモニー", + "alias_name_display": "ウェディングセレモニー", + "hash": "887f02780b02259ae8143b985b2d7510", + "id": "1330302", + "profile": { + "bust": "77", + "height": "149", + "hip": "81", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "プリティパティシエ", + "alias_name_display": "プリティパティシエ", + "event": [ + { + "event_id": 405, + "event_name": "アイドルプロデュース バレンタイン編" + } + ], + "hash": "f93a42096ba8aa95b7c3bc45aa0a3003", + "id": "1405101", + "profile": { + "bust": "77", + "height": "149", + "hip": "81", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "プリティパティシエ", + "alias_name_display": "プリティパティシエ", + "event": [ + { + "event_id": 405, + "event_name": "アイドルプロデュース バレンタイン編" + } + ], + "hash": "f4391f44173bd50a0c6dd83065936908", + "id": "1505102", + "profile": { + "bust": "77", + "height": "149", + "hip": "81", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "スマイルパティシエ", + "alias_name_display": "スマイルパティシエ", + "event": [ + { + "event_id": 405, + "event_name": "アイドルプロデュース バレンタイン編" + } + ], + "hash": "070e8c432c9dbd4fa1b2fa926d307839", + "id": "1405201", + "profile": { + "bust": "77", + "height": "149", + "hip": "81", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "スマイルパティシエ", + "alias_name_display": "スマイルパティシエ", + "event": [ + { + "event_id": 405, + "event_name": "アイドルプロデュース バレンタイン編" + } + ], + "hash": "3bcf46aeeb08f4688e1bcd7cc505be95", + "id": "1505202", + "profile": { + "bust": "77", + "height": "149", + "hip": "81", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "ファイティングチアー", + "alias_name_display": "ファイティングチアー", + "event": [ + { + "event_id": 1101, + "event_name": "プロダクション対抗トークバトルショー" + } + ], + "hash": "c9aed64496ffbddde3dfe139f5821d81", + "id": "1412801", + "profile": { + "bust": "77", + "height": "149", + "hip": "81", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "ファイティングチアー", + "alias_name_display": "ファイティングチアー", + "event": [ + { + "event_id": 1101, + "event_name": "プロダクション対抗トークバトルショー" + } + ], + "hash": "f1f5d41ea64dc5f21d2f22b17bf37972", + "id": "1512802", + "profile": { + "bust": "77", + "height": "149", + "hip": "81", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "流麗武闘", + "alias_name_display": "流麗武闘", + "event": [ + { + "event_id": 514, + "event_name": "功夫公演 香港大決戦" + } + ], + "hash": "aee2ad73ab0ea320d72882ee5d3c12b5", + "id": "1418401", + "profile": { + "bust": "77", + "height": "149", + "hip": "81", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "流麗武闘", + "alias_name_display": "流麗武闘", + "event": [ + { + "event_id": 514, + "event_name": "功夫公演 香港大決戦" + } + ], + "hash": "1a647c3d7de9bc4ca3b5ec62c7a3d4f5", + "id": "1518402", + "profile": { + "bust": "77", + "height": "149", + "hip": "81", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "日々鍛錬", + "alias_name_display": "日々鍛錬", + "hash": "077286881073bf516cb65a8fa9aedaf2", + "id": "1423301", + "profile": { + "bust": "77", + "height": "149", + "hip": "81", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "日々鍛錬", + "alias_name_display": "日々鍛錬", + "hash": "026f207848544f8ddba5ca6743dc56f4", + "id": "1523302", + "profile": { + "bust": "77", + "height": "149", + "hip": "81", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "舞踊の大和撫子", + "alias_name_display": "舞踊の大和撫子", + "event": [ + { + "event_id": 1207, + "event_name": "目指せ大和撫子 アイドルチャレンジ" + } + ], + "hash": "96c0809449a3a9c7eea157ffa9c586d7", + "id": "1427601", + "profile": { + "bust": "77", + "height": "149", + "hip": "81", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "舞踊の大和撫子", + "alias_name_display": "舞踊の大和撫子", + "event": [ + { + "event_id": 1207, + "event_name": "目指せ大和撫子 アイドルチャレンジ" + } + ], + "hash": "bf895736a930908d3f6ccd71065ee6d8", + "id": "1527602", + "profile": { + "bust": "77", + "height": "149", + "hip": "81", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "舞踊の大和撫子・S", + "alias_name_display": "舞踊の大和撫子・S", + "event": [ + { + "event_id": 1207, + "event_name": "目指せ大和撫子 アイドルチャレンジ" + } + ], + "hash": "742359412cdfd26e34574d29b931e81a", + "id": "1427701", + "profile": { + "bust": "77", + "height": "149", + "hip": "81", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "舞踊の大和撫子・S", + "alias_name_display": "舞踊の大和撫子・S", + "event": [ + { + "event_id": 1207, + "event_name": "目指せ大和撫子 アイドルチャレンジ" + } + ], + "hash": "cd2ea844567cc89df463cc94e87ede48", + "id": "1527702", + "profile": { + "bust": "77", + "height": "149", + "hip": "81", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "2a73950f13b4fe7b694e9ecbdf8e9216", + "id": "1431601", + "profile": { + "bust": "77", + "height": "149", + "hip": "81", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "0b8aba8c0d1c322588c7786f420d0717", + "id": "1531602", + "profile": { + "bust": "77", + "height": "149", + "hip": "81", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "パワフルチャージ", + "alias_name_display": "パワフルチャージ", + "hash": "1e636fde2ac167157ac7a3110085f226", + "id": "1432201", + "profile": { + "bust": "77", + "height": "149", + "hip": "81", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "パワフルチャージ", + "alias_name_display": "パワフルチャージ", + "hash": "7fe5882d01aa44bbd57c2a3e4bf8307d", + "id": "1532202", + "profile": { + "bust": "77", + "height": "149", + "hip": "81", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "湯の花乙女", + "alias_name_display": "湯の花乙女", + "hash": "3822324e5238a535b49fd5be10e0f985", + "id": "1439101", + "profile": { + "bust": "77", + "height": "149", + "hip": "81", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "湯の花乙女", + "alias_name_display": "湯の花乙女", + "hash": "b1976493a44373a42a7087ea012da84a", + "id": "1539102", + "profile": { + "bust": "77", + "height": "149", + "hip": "81", + "waist": "57", + "weight": "40" + } + } + ], + "idol_id": 2, + "idol_name": "中野有香", + "idol_name_display": "中野有香", + "units": [ + { + "id": "27", + "name": "ストレートフルート" + }, + { + "id": "136", + "name": "メロウ・イエロー" + }, + { + "id": "160", + "name": "ハッピーバレンタイン" + }, + { + "id": "187", + "name": "NEX-US" + }, + { + "id": "193", + "name": "イエローリリー" + }, + { + "id": "196", + "name": "la Roseraie" + } + ] + }, + { + "aliases": [ + { + "hash": "5a32b53f2943c5c7b76b18c0e098f400", + "id": "1000301", + "profile": { + "bust": "81", + "height": "155", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "hash": "4b39f05563a8175f27b8d893561976ee", + "id": "1100302", + "profile": { + "bust": "81", + "height": "155", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "純粋奏者", + "alias_name_display": "純粋奏者", + "hash": "57c3dca535e8b78bb9ba031c065690ed", + "id": "1203501", + "profile": { + "bust": "81", + "height": "155", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "純粋奏者", + "alias_name_display": "純粋奏者", + "hash": "e3ae28f9dae9077d49ff85eedf90d38d", + "id": "1303502", + "profile": { + "bust": "81", + "height": "155", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "ヴォヤージュ・ヒーラー", + "alias_name_display": "ヴォヤージュ・ヒーラー", + "event": [ + { + "event_id": 511, + "event_name": "幻想公演 黒薔薇姫のヴォヤージュ" + } + ], + "hash": "12a16e06fe32d7bfec53eba8ca6f67de", + "id": "1215401", + "profile": { + "bust": "81", + "height": "155", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "ヴォヤージュ・ヒーラー", + "alias_name_display": "ヴォヤージュ・ヒーラー", + "event": [ + { + "event_id": 511, + "event_name": "幻想公演 黒薔薇姫のヴォヤージュ" + } + ], + "hash": "ce97613529cae736a80ecd5a24ff0c05", + "id": "1315402", + "profile": { + "bust": "81", + "height": "155", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "自然なテンポ", + "alias_name_display": "自然なテンポ", + "hash": "99994fd85c91d0c29fe5531d99fcf38d", + "id": "1220901", + "profile": { + "bust": "81", + "height": "155", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "自然なテンポ", + "alias_name_display": "自然なテンポ", + "hash": "cdbe1c879b7bbb71c58e0d0b7d0161a1", + "id": "1320902", + "profile": { + "bust": "81", + "height": "155", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "ウェディングI.C", + "alias_name_display": "ウェディングI.C", + "event": [ + { + "event_id": 1206, + "event_name": "目指せウェディングモデル アイドルチャレンジ" + } + ], + "hash": "7d5aa18aec3123ba1e95812ef0561f39", + "id": "1322002", + "profile": { + "bust": "81", + "height": "155", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "スクールメロディー", + "alias_name_display": "スクールメロディー", + "hash": "1068a0adedbd74a596f77200e983813f", + "id": "1232101", + "profile": { + "bust": "81", + "height": "155", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "スクールメロディー", + "alias_name_display": "スクールメロディー", + "hash": "801ae1b1b6aae6d32a62ae3f6e05f5f6", + "id": "1332102", + "profile": { + "bust": "81", + "height": "155", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "清純令嬢", + "alias_name_display": "清純令嬢", + "hash": "063b5513bbd62fb98cfab5b98edee7b6", + "id": "1404401", + "profile": { + "bust": "81", + "height": "155", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "清純令嬢", + "alias_name_display": "清純令嬢", + "hash": "39fcc8af5585b77a898d2b0a30ba7b9a", + "id": "1504402", + "profile": { + "bust": "81", + "height": "155", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "素顔のお嬢様", + "alias_name_display": "素顔のお嬢様", + "event": [ + { + "event_id": 801, + "event_name": "アイドルLIVEロワイヤル" + } + ], + "hash": "3916b51a4d2993ae85d4315532fb635c", + "id": "1409301", + "profile": { + "bust": "81", + "height": "155", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "素顔のお嬢様", + "alias_name_display": "素顔のお嬢様", + "event": [ + { + "event_id": 801, + "event_name": "アイドルLIVEロワイヤル" + } + ], + "hash": "65b1614f1d60f9654a0e57ed0e157409", + "id": "1509302", + "profile": { + "bust": "81", + "height": "155", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "誠実なる花嫁", + "alias_name_display": "誠実なる花嫁", + "event": [ + { + "event_id": 1206, + "event_name": "目指せウェディングモデル アイドルチャレンジ" + } + ], + "hash": "36b04f9bf0aa3a07751364ba1660cddf", + "id": "1424901", + "profile": { + "bust": "81", + "height": "155", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "誠実なる花嫁", + "alias_name_display": "誠実なる花嫁", + "event": [ + { + "event_id": 1206, + "event_name": "目指せウェディングモデル アイドルチャレンジ" + } + ], + "hash": "4eac93743268759f36147deee87e59e9", + "id": "1524902", + "profile": { + "bust": "81", + "height": "155", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "誠実なる花嫁・S", + "alias_name_display": "誠実なる花嫁・S", + "event": [ + { + "event_id": 1206, + "event_name": "目指せウェディングモデル アイドルチャレンジ" + } + ], + "hash": "7fdbcc0917346497b8c7fbf9241e9ce1", + "id": "1425001", + "profile": { + "bust": "81", + "height": "155", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "誠実なる花嫁・S", + "alias_name_display": "誠実なる花嫁・S", + "event": [ + { + "event_id": 1206, + "event_name": "目指せウェディングモデル アイドルチャレンジ" + } + ], + "hash": "722d3107b2c4c73e3ca66ad25ba67cfa", + "id": "1525002", + "profile": { + "bust": "81", + "height": "155", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "冬のハーモニー", + "alias_name_display": "冬のハーモニー", + "event": [ + { + "event_id": 1505, + "event_name": "チーム対抗トークバトルショー ウィンターSP" + } + ], + "hash": "718d1b6bbb63606ba766256b8527b66c", + "id": "1430701", + "profile": { + "bust": "81", + "height": "155", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "冬のハーモニー", + "alias_name_display": "冬のハーモニー", + "event": [ + { + "event_id": 1505, + "event_name": "チーム対抗トークバトルショー ウィンターSP" + } + ], + "hash": "19dca795d6ca96446f8949d9619c441d", + "id": "1530702", + "profile": { + "bust": "81", + "height": "155", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "エフォートブリランテ", + "alias_name_display": "エフォートブリランテ", + "hash": "4cb935f4cee9ad752573a9d41f34d024", + "id": "1434701", + "profile": { + "bust": "81", + "height": "155", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "エフォートブリランテ", + "alias_name_display": "エフォートブリランテ", + "hash": "0ae0b50138bbf05741509420d5324943", + "id": "1534702", + "profile": { + "bust": "81", + "height": "155", + "hip": "82", + "waist": "56", + "weight": "42" + } + } + ], + "idol_id": 3, + "idol_name": "水本ゆかり", + "idol_name_display": "水本ゆかり", + "units": [ + { + "id": "27", + "name": "ストレートフルート" + }, + { + "id": "134", + "name": "ノーブルセレブリティ" + }, + { + "id": "136", + "name": "メロウ・イエロー" + }, + { + "id": "191", + "name": "Love Yell" + }, + { + "id": "193", + "name": "イエローリリー" + } + ] + }, + { + "aliases": [ + { + "hash": "9e4c72332c4881ae0bdc40ed2ec88c89", + "id": "1000401", + "profile": { + "bust": "64", + "height": "132", + "hip": "70", + "waist": "56", + "weight": "28" + } + }, + { + "hash": "4b7647610d30d56613fa83e5e9616afb", + "id": "1100402", + "profile": { + "bust": "64", + "height": "132", + "hip": "70", + "waist": "56", + "weight": "28" + } + }, + { + "alias_name": "ひな祭り", + "alias_name_display": "ひな祭り", + "event": [ + { + "event_id": 202, + "event_name": "アイドルサバイバルひな祭り編" + } + ], + "hash": "432ad39240f6444c7b5f475a40b94cdd", + "id": "1203401", + "profile": { + "bust": "64", + "height": "132", + "hip": "70", + "waist": "56", + "weight": "28" + } + }, + { + "alias_name": "ひな祭り", + "alias_name_display": "ひな祭り", + "event": [ + { + "event_id": 202, + "event_name": "アイドルサバイバルひな祭り編" + } + ], + "hash": "c7e09d78076a52fe3585aea1c6a8cd22", + "id": "1303402", + "profile": { + "bust": "64", + "height": "132", + "hip": "70", + "waist": "56", + "weight": "28" + } + }, + { + "alias_name": "ビーチパラダイス", + "alias_name_display": "ビーチパラダイス", + "hash": "3bce49b8578a3244816aea3c4b946970", + "id": "1211001", + "profile": { + "bust": "64", + "height": "132", + "hip": "70", + "waist": "56", + "weight": "28" + } + }, + { + "alias_name": "ビーチパラダイス", + "alias_name_display": "ビーチパラダイス", + "hash": "74fb1af8cf551785d0eb3c886169b29c", + "id": "1311002", + "profile": { + "bust": "64", + "height": "132", + "hip": "70", + "waist": "56", + "weight": "28" + } + }, + { + "alias_name": "マーチングバンド", + "alias_name_display": "マーチングバンド", + "hash": "5f198336d9cb50f8ab727a22ec32aa97", + "id": "1213101", + "profile": { + "bust": "64", + "height": "132", + "hip": "70", + "waist": "56", + "weight": "28" + } + }, + { + "alias_name": "マーチングバンド", + "alias_name_display": "マーチングバンド", + "hash": "12a280521ddf493e5f868b618494392a", + "id": "1313102", + "profile": { + "bust": "64", + "height": "132", + "hip": "70", + "waist": "56", + "weight": "28" + } + }, + { + "alias_name": "魔女っ娘I.C", + "alias_name_display": "魔女っ娘I.C", + "event": [ + { + "event_id": 1201, + "event_name": "目指せ魔女っ娘 アイドルチャレンジ" + } + ], + "hash": "7afc67a566bd72f23eedb3a19bb3a982", + "id": "1316202", + "profile": { + "bust": "64", + "height": "132", + "hip": "70", + "waist": "56", + "weight": "28" + } + }, + { + "alias_name": "フレンドシップ", + "alias_name_display": "フレンドシップ", + "event": [ + { + "event_id": "020", + "event_name": "第20回プロダクションマッチフェスティバル" + } + ], + "hash": "a626e8ea3402255c88c43fa7e35fb2ff", + "id": "1220401", + "profile": { + "bust": "64", + "height": "132", + "hip": "70", + "waist": "56", + "weight": "28" + } + }, + { + "alias_name": "フレンドシップ", + "alias_name_display": "フレンドシップ", + "event": [ + { + "event_id": "020", + "event_name": "第20回プロダクションマッチフェスティバル" + } + ], + "hash": "ba304a7ee476e2e6f34d1d1380710dcf", + "id": "1320402", + "profile": { + "bust": "64", + "height": "132", + "hip": "70", + "waist": "56", + "weight": "28" + } + }, + { + "alias_name": "クリスマスナイト", + "alias_name_display": "クリスマスナイト", + "hash": "fd3ac0d9e8392a40fd5f88a0f8f4a135", + "id": "1224901", + "profile": { + "bust": "64", + "height": "132", + "hip": "70", + "waist": "56", + "weight": "28" + } + }, + { + "alias_name": "クリスマスナイト", + "alias_name_display": "クリスマスナイト", + "hash": "ab388a028b0c06ac2b8ad7e5b87c14e9", + "id": "1324902", + "profile": { + "bust": "64", + "height": "132", + "hip": "70", + "waist": "56", + "weight": "28" + } + }, + { + "alias_name": "コレクションスタイル", + "alias_name_display": "コレクションスタイル", + "event": [ + { + "event_id": 1406, + "event_name": "第6回ぷちデレラコレクション" + } + ], + "hash": "b8f180aef3da364b62a7d9d94c49f790", + "id": "1326902", + "profile": { + "bust": "64", + "height": "132", + "hip": "70", + "waist": "56", + "weight": "28" + } + }, + { + "alias_name": "ロワイヤルスタイルND", + "alias_name_display": "ロワイヤルスタイルND", + "event": [ + { + "event_id": 823, + "event_name": "第23回アイドルLIVEロワイヤル" + } + ], + "hash": "88261973e6dc33c1efcf5f13fd5024ad", + "id": "1233201", + "profile": { + "bust": "64", + "height": "132", + "hip": "70", + "waist": "56", + "weight": "28" + } + }, + { + "alias_name": "ロワイヤルスタイルND", + "alias_name_display": "ロワイヤルスタイルND", + "event": [ + { + "event_id": 823, + "event_name": "第23回アイドルLIVEロワイヤル" + } + ], + "hash": "2ce3a5f3b4995d42f6e8e0687b189e11", + "id": "1333202", + "profile": { + "bust": "64", + "height": "132", + "hip": "70", + "waist": "56", + "weight": "28" + } + }, + { + "alias_name": "リトルプリンセス", + "alias_name_display": "リトルプリンセス", + "event": [ + { + "event_id": 502, + "event_name": "アイドルLIVEツアーinイギリス" + } + ], + "hash": "d59c444656b4257c797792a85ea7087b", + "id": "1404701", + "profile": { + "bust": "64", + "height": "132", + "hip": "70", + "waist": "56", + "weight": "28" + } + }, + { + "alias_name": "リトルプリンセス", + "alias_name_display": "リトルプリンセス", + "event": [ + { + "event_id": 502, + "event_name": "アイドルLIVEツアーinイギリス" + } + ], + "hash": "1795c63d5c362fe01f69b2ff03031d34", + "id": "1504702", + "profile": { + "bust": "64", + "height": "132", + "hip": "70", + "waist": "56", + "weight": "28" + } + }, + { + "alias_name": "マジカルガール・アクア", + "alias_name_display": "マジカルガール・アクア", + "event": [ + { + "event_id": 1201, + "event_name": "目指せ魔女っ娘 アイドルチャレンジ" + } + ], + "hash": "64ceb0a3aba19347f000e9ea2e320c3e", + "id": "1414601", + "profile": { + "bust": "64", + "height": "132", + "hip": "70", + "waist": "56", + "weight": "28" + } + }, + { + "alias_name": "マジカルガール・アクア", + "alias_name_display": "マジカルガール・アクア", + "event": [ + { + "event_id": 1201, + "event_name": "目指せ魔女っ娘 アイドルチャレンジ" + } + ], + "hash": "7bab85379544f5baa52a0c14e399b63a", + "id": "1514602", + "profile": { + "bust": "64", + "height": "132", + "hip": "70", + "waist": "56", + "weight": "28" + } + }, + { + "alias_name": "マジカルガールS・アクア", + "alias_name_display": "マジカルガールS・アクア", + "event": [ + { + "event_id": 1201, + "event_name": "目指せ魔女っ娘 アイドルチャレンジ" + } + ], + "hash": "f3a7e94a6dfa24bdaf63dde0c51184d6", + "id": "1414701", + "profile": { + "bust": "64", + "height": "132", + "hip": "70", + "waist": "56", + "weight": "28" + } + }, + { + "alias_name": "マジカルガールS・アクア", + "alias_name_display": "マジカルガールS・アクア", + "event": [ + { + "event_id": 1201, + "event_name": "目指せ魔女っ娘 アイドルチャレンジ" + } + ], + "hash": "186553b4e590e75736c7b2e3620abc8f", + "id": "1514702", + "profile": { + "bust": "64", + "height": "132", + "hip": "70", + "waist": "56", + "weight": "28" + } + }, + { + "alias_name": "からふるタイム", + "alias_name_display": "からふるタイム", + "hash": "c141ec5c30df557ec8b4c70280222551", + "id": "1425101", + "profile": { + "bust": "64", + "height": "132", + "hip": "70", + "waist": "56", + "weight": "28" + } + }, + { + "alias_name": "からふるタイム", + "alias_name_display": "からふるタイム", + "hash": "29b2e04c3b9aad43ab45f10697f24ee2", + "id": "1525102", + "profile": { + "bust": "64", + "height": "132", + "hip": "70", + "waist": "56", + "weight": "28" + } + }, + { + "alias_name": "ちいさな秋", + "alias_name_display": "ちいさな秋", + "event": [ + { + "event_id": 724, + "event_name": "第24回ドリームLIVEフェスティバル" + } + ], + "hash": "ebd6eb001f23da8db802a95ac4f0334f", + "id": "1435701", + "profile": { + "bust": "64", + "height": "132", + "hip": "70", + "waist": "56", + "weight": "28" + } + }, + { + "alias_name": "ちいさな秋", + "alias_name_display": "ちいさな秋", + "event": [ + { + "event_id": 724, + "event_name": "第24回ドリームLIVEフェスティバル" + } + ], + "hash": "02a5755a9e817844b01702bd71f8a68f", + "id": "1535702", + "profile": { + "bust": "64", + "height": "132", + "hip": "70", + "waist": "56", + "weight": "28" + } + } + ], + "idol_id": 4, + "idol_name": "福山舞", + "idol_name_display": "福山舞", + "units": [ + { + "id": "164", + "name": "マジカルテット" + }, + { + "id": "177", + "name": "桜舞隊" + }, + { + "id": "210", + "name": "ロワイヤルスタイルND" + }, + { + "id": "214", + "name": "L.M.B.G" + } + ] + }, + { + "aliases": [ + { + "hash": "2c27422ff05ee7bb687d23d68b8e5437", + "id": "1000501", + "profile": { + "bust": "76", + "height": "147", + "hip": "79", + "waist": "55", + "weight": "38" + } + }, + { + "hash": "9afc857da9d69bf96e603bf8837a66ce", + "id": "1100502", + "profile": { + "bust": "76", + "height": "147", + "hip": "79", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "バレンタイン", + "alias_name_display": "バレンタイン", + "event": [ + { + "event_id": 103, + "event_name": "バレンタインパーティー" + } + ], + "hash": "8d83c2c10b5dda3a24ab3fd2d2d5a65e", + "id": "1001801", + "profile": { + "bust": "76", + "height": "147", + "hip": "79", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "バレンタイン", + "alias_name_display": "バレンタイン", + "event": [ + { + "event_id": 103, + "event_name": "バレンタインパーティー" + } + ], + "hash": "93917a715e96a0ed275f0bc15236ce9d", + "id": "1101802", + "profile": { + "bust": "76", + "height": "147", + "hip": "79", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "ハッピーバレンタイン", + "alias_name_display": "ハッピーバレンタイン", + "event": [ + { + "event_id": 405, + "event_name": "アイドルプロデュース バレンタイン編" + } + ], + "hash": "6a3760f4ae142edb4fa79c55c0711f16", + "id": "1207701", + "profile": { + "bust": "76", + "height": "147", + "hip": "79", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "ハッピーバレンタイン", + "alias_name_display": "ハッピーバレンタイン", + "event": [ + { + "event_id": 405, + "event_name": "アイドルプロデュース バレンタイン編" + } + ], + "hash": "f662c0d2f39ebe7c9f6f2b5801a5637f", + "id": "1307702", + "profile": { + "bust": "76", + "height": "147", + "hip": "79", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "スマイルバレンタイン", + "alias_name_display": "スマイルバレンタイン", + "event": [ + { + "event_id": 405, + "event_name": "アイドルプロデュース バレンタイン編" + } + ], + "hash": "600d9532a365f51b484cde2e1968dbb0", + "id": "1207801", + "profile": { + "bust": "76", + "height": "147", + "hip": "79", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "スマイルバレンタイン", + "alias_name_display": "スマイルバレンタイン", + "event": [ + { + "event_id": 405, + "event_name": "アイドルプロデュース バレンタイン編" + } + ], + "hash": "ed5efe1f4f7f8fab7501b684faa673f5", + "id": "1307802", + "profile": { + "bust": "76", + "height": "147", + "hip": "79", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "ロワイヤルスタイルNP", + "alias_name_display": "ロワイヤルスタイルNP", + "event": [ + { + "event_id": 804, + "event_name": "第4回アイドルLIVEロワイヤル" + } + ], + "hash": "f342a9da146eba2799e8451dab7c0a22", + "id": "1215201", + "profile": { + "bust": "76", + "height": "147", + "hip": "79", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "ロワイヤルスタイルNP", + "alias_name_display": "ロワイヤルスタイルNP", + "event": [ + { + "event_id": 804, + "event_name": "第4回アイドルLIVEロワイヤル" + } + ], + "hash": "9ac4c4497893b1212e1a4b5fef670c74", + "id": "1315202", + "profile": { + "bust": "76", + "height": "147", + "hip": "79", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "スクールガール", + "alias_name_display": "スクールガール", + "hash": "5f4163ebaa3db4ae6a40335feeab9d05", + "id": "1218601", + "profile": { + "bust": "76", + "height": "147", + "hip": "79", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "スクールガール", + "alias_name_display": "スクールガール", + "hash": "5bd608ecda1c88289f543f740fa31798", + "id": "1318602", + "profile": { + "bust": "76", + "height": "147", + "hip": "79", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "なかよし☆ドーナッツ", + "alias_name_display": "なかよし☆ドーナッツ", + "hash": "df0842fcb37dca93468e740e24134f38", + "id": "1220801", + "profile": { + "bust": "76", + "height": "147", + "hip": "79", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "なかよし☆ドーナッツ", + "alias_name_display": "なかよし☆ドーナッツ", + "hash": "b830925d4da9a4ebb45aad7b456f68a6", + "id": "1320802", + "profile": { + "bust": "76", + "height": "147", + "hip": "79", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "ハイカラガール", + "alias_name_display": "ハイカラガール", + "hash": "59774669f6fd1ce8779b3ad085780d99", + "id": "1223001", + "profile": { + "bust": "76", + "height": "147", + "hip": "79", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "ハイカラガール", + "alias_name_display": "ハイカラガール", + "hash": "53aa3e20e3981711db5c1c9c00490217", + "id": "1323002", + "profile": { + "bust": "76", + "height": "147", + "hip": "79", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "スイートサマー", + "alias_name_display": "スイートサマー", + "event": [ + { + "event_id": 205, + "event_name": "アイドルサバイバルinサマーライブ" + } + ], + "hash": "75d17e59127cb32465dd5f4cf7a35f69", + "id": "1402201", + "profile": { + "bust": "76", + "height": "147", + "hip": "79", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "スイートサマー", + "alias_name_display": "スイートサマー", + "event": [ + { + "event_id": 205, + "event_name": "アイドルサバイバルinサマーライブ" + } + ], + "hash": "d4d7df4f74b6612da8f3b9256354039e", + "id": "1502202", + "profile": { + "bust": "76", + "height": "147", + "hip": "79", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "ドーナッツ☆マーメイド", + "alias_name_display": "ドーナッツ☆マーメイド", + "hash": "6639dfcca711df063ea40a7e8e423a5d", + "id": "1408301", + "profile": { + "bust": "76", + "height": "147", + "hip": "79", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "ドーナッツ☆マーメイド", + "alias_name_display": "ドーナッツ☆マーメイド", + "hash": "c5686d14889a1c7a421a38304dc8f88c", + "id": "1508302", + "profile": { + "bust": "76", + "height": "147", + "hip": "79", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "目覚めし勇者", + "alias_name_display": "目覚めし勇者", + "event": [ + { + "event_id": 516, + "event_name": "幻想公演栄光のシュヴァリエ" + } + ], + "hash": "7a53687160966f6fc639e8581c961d45", + "id": "1420801", + "profile": { + "bust": "76", + "height": "147", + "hip": "79", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "目覚めし勇者", + "alias_name_display": "目覚めし勇者", + "event": [ + { + "event_id": 516, + "event_name": "幻想公演栄光のシュヴァリエ" + } + ], + "hash": "6d3ed0a7f03b9b5fd51721010eaf81f1", + "id": "1520802", + "profile": { + "bust": "76", + "height": "147", + "hip": "79", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "スウィートサークル", + "alias_name_display": "スウィートサークル", + "event": [ + { + "event_id": 720, + "event_name": "第20回ドリームLIVEフェスティバル" + } + ], + "hash": "380c5bc88f6fc5c34164164c8b721e66", + "id": "1432101", + "profile": { + "bust": "76", + "height": "147", + "hip": "79", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "スウィートサークル", + "alias_name_display": "スウィートサークル", + "event": [ + { + "event_id": 720, + "event_name": "第20回ドリームLIVEフェスティバル" + } + ], + "hash": "4451be66b36f225beba93e12fa235f36", + "id": "1532102", + "profile": { + "bust": "76", + "height": "147", + "hip": "79", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "あま~い★誘惑", + "alias_name_display": "あま~い★誘惑", + "event": [ + { + "event_id": 1213, + "event_name": "目指せお菓子なハロウィン アイドルチャレンジ" + } + ], + "hash": "f2a2dfca90f836b1d98d889179daad59", + "id": "1436001", + "profile": { + "bust": "76", + "height": "147", + "hip": "79", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "あま~い★誘惑", + "alias_name_display": "あま~い★誘惑", + "event": [ + { + "event_id": 1213, + "event_name": "目指せお菓子なハロウィン アイドルチャレンジ" + } + ], + "hash": "06f18e9f5532d8fd04e01d1a64c16df4", + "id": "1536002", + "profile": { + "bust": "76", + "height": "147", + "hip": "79", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "できたてシュガー", + "alias_name_display": "できたてシュガー", + "hash": "c6e0e9ac726d8b09a19f833255f8ca38", + "id": "1440001", + "profile": { + "bust": "76", + "height": "147", + "hip": "79", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "できたてシュガー", + "alias_name_display": "できたてシュガー", + "hash": "6e42fd90357609b6d27c0afa237f117b", + "id": "1540002", + "profile": { + "bust": "76", + "height": "147", + "hip": "79", + "waist": "55", + "weight": "38" + } + } + ], + "idol_id": 5, + "idol_name": "椎名法子", + "idol_name_display": "椎名法子", + "units": [ + { + "id": "33", + "name": "チーム・フラワー" + }, + { + "id": "136", + "name": "メロウ・イエロー" + }, + { + "id": "160", + "name": "ハッピーバレンタイン" + }, + { + "id": "188", + "name": "Sweetches" + }, + { + "id": "193", + "name": "イエローリリー" + }, + { + "id": "209", + "name": "ロワイヤルスタイルNP" + } + ] + }, + { + "aliases": [ + { + "hash": "ed6aeeec0997ee6943d1791c228c1ec7", + "id": "1000601", + "profile": { + "bust": "81", + "height": "153", + "hip": "79", + "waist": "56", + "weight": "41" + } + }, + { + "hash": "f3f2597ca67e9fc3058a86fc5394c6ef", + "id": "1100602", + "profile": { + "bust": "81", + "height": "153", + "hip": "79", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "スポーツ祭", + "alias_name_display": "スポーツ祭", + "hash": "ba32b49a158314a1fca1cc2183fccd4b", + "id": "1204401", + "profile": { + "bust": "81", + "height": "153", + "hip": "79", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "スポーツ祭", + "alias_name_display": "スポーツ祭", + "hash": "086e26928b30bbc058eb89c453157284", + "id": "1304402", + "profile": { + "bust": "81", + "height": "153", + "hip": "79", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "クリスマスパーティー", + "alias_name_display": "クリスマスパーティー", + "hash": "62618351b0bcde86f002c3bcec730148", + "id": "1213601", + "profile": { + "bust": "81", + "height": "153", + "hip": "79", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "クリスマスパーティー", + "alias_name_display": "クリスマスパーティー", + "hash": "898a7b7cee8c3554b096fb44fbf1c6e5", + "id": "1313602", + "profile": { + "bust": "81", + "height": "153", + "hip": "79", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "フラワーガーデン", + "alias_name_display": "フラワーガーデン", + "event": [ + { + "event_id": 213, + "event_name": "アイドルサバイバルinフラワーガーデン" + } + ], + "hash": "78c348ee69a886457da80ac238317a5c", + "id": "1215601", + "profile": { + "bust": "81", + "height": "153", + "hip": "79", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "フラワーガーデン", + "alias_name_display": "フラワーガーデン", + "event": [ + { + "event_id": 213, + "event_name": "アイドルサバイバルinフラワーガーデン" + } + ], + "hash": "2f5762635183f75a5be435de3a0c58b4", + "id": "1315602", + "profile": { + "bust": "81", + "height": "153", + "hip": "79", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "ファンシーガール", + "alias_name_display": "ファンシーガール", + "hash": "6b35883cb4c64cec7edbbbcffd5a3390", + "id": "1406901", + "profile": { + "bust": "81", + "height": "153", + "hip": "79", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "ファンシーガール", + "alias_name_display": "ファンシーガール", + "hash": "5d1e7b399154bdf492febc326a51a8bb", + "id": "1506902", + "profile": { + "bust": "81", + "height": "153", + "hip": "79", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "こぼれるスマイル", + "alias_name_display": "こぼれるスマイル", + "event": [ + { + "event_id": 709, + "event_name": "第9回ドリームLIVEフェスティバル" + } + ], + "hash": "2c5a5b78471f6d6c40dbe61cd3e9900d", + "id": "1419501", + "profile": { + "bust": "81", + "height": "153", + "hip": "79", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "こぼれるスマイル", + "alias_name_display": "こぼれるスマイル", + "event": [ + { + "event_id": 709, + "event_name": "第9回ドリームLIVEフェスティバル" + } + ], + "hash": "a445a50c0d5fb02ff4f82c959384d750", + "id": "1519502", + "profile": { + "bust": "81", + "height": "153", + "hip": "79", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "フレンドリーチアー", + "alias_name_display": "フレンドリーチアー", + "event": [ + { + "event_id": 1109, + "event_name": "第9回プロダクション対抗トークバトルショー" + } + ], + "hash": "21aafbfb633a28a9bd5a24f0e75efe80", + "id": "1423001", + "profile": { + "bust": "81", + "height": "153", + "hip": "79", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "フレンドリーチアー", + "alias_name_display": "フレンドリーチアー", + "event": [ + { + "event_id": 1109, + "event_name": "第9回プロダクション対抗トークバトルショー" + } + ], + "hash": "e84038818af54434a5dade1f5e257738", + "id": "1523002", + "profile": { + "bust": "81", + "height": "153", + "hip": "79", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "コーラスリーダー", + "alias_name_display": "コーラスリーダー", + "event": [ + { + "event_id": 520, + "event_name": "青春公演 シング・ア・ソング" + } + ], + "hash": "436039c361c04185b59793ac385a5d82", + "id": "1425601", + "profile": { + "bust": "81", + "height": "153", + "hip": "79", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "コーラスリーダー", + "alias_name_display": "コーラスリーダー", + "event": [ + { + "event_id": 520, + "event_name": "青春公演 シング・ア・ソング" + } + ], + "hash": "6d640f84d12ca279bca2fe4f10d6e4ec", + "id": "1525602", + "profile": { + "bust": "81", + "height": "153", + "hip": "79", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "南国バケーション", + "alias_name_display": "南国バケーション", + "hash": "9def754016201d226cdb8f58a13c294c", + "id": "1428901", + "profile": { + "bust": "81", + "height": "153", + "hip": "79", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "南国バケーション", + "alias_name_display": "南国バケーション", + "hash": "9525aeca682cb5138adfad2b93165509", + "id": "1528902", + "profile": { + "bust": "81", + "height": "153", + "hip": "79", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "ライクアバッドガール", + "alias_name_display": "ライクアバッドガール", + "event": [ + { + "event_id": 1407, + "event_name": "第7回ぷちデレラコレクション" + } + ], + "hash": "0d75122abd7d6be852284b94fbedf2ea", + "id": "1433401", + "profile": { + "bust": "81", + "height": "153", + "hip": "79", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "ライクアバッドガール", + "alias_name_display": "ライクアバッドガール", + "event": [ + { + "event_id": 1407, + "event_name": "第7回ぷちデレラコレクション" + } + ], + "hash": "d4bee022093890359552c612a72b9b89", + "id": "1533402", + "profile": { + "bust": "81", + "height": "153", + "hip": "79", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "ワンダーホーリーナイト", + "alias_name_display": "ワンダーホーリーナイト", + "hash": "db115e1ba38a17d275397d1b00513ddb", + "id": "1437001", + "profile": { + "bust": "81", + "height": "153", + "hip": "79", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "ワンダーホーリーナイト", + "alias_name_display": "ワンダーホーリーナイト", + "hash": "2ed07d073761b8d9b26106a1bebea34a", + "id": "1537002", + "profile": { + "bust": "81", + "height": "153", + "hip": "79", + "waist": "56", + "weight": "41" + } + } + ], + "idol_id": 6, + "idol_name": "今井加奈", + "idol_name_display": "今井加奈", + "units": [ + { + "id": "11", + "name": "かな☆かな☆ふぁんしー" + }, + { + "id": "103", + "name": "ビビッドカラーエイジ" + }, + { + "id": "133", + "name": "スケルツォ・プリマヴェーラ" + }, + { + "id": "181", + "name": "フレッシュアスリーテス" + }, + { + "id": "193", + "name": "イエローリリー" + } + ] + }, + { + "aliases": [ + { + "hash": "bb74192d2815e42c51cbf484f0e7c57b", + "id": "1000701", + "profile": { + "bust": "77", + "height": "156", + "hip": "76", + "waist": "54", + "weight": "45" + } + }, + { + "hash": "590ea3d4692769eab56d96af4d5c6298", + "id": "1100702", + "profile": { + "bust": "77", + "height": "156", + "hip": "76", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "ウサコちゃんと", + "alias_name_display": "ウサコちゃんと", + "event": [ + { + "event_id": 203, + "event_name": "アイドルサバイバルinテーマパーク" + } + ], + "hash": "bb1565b0cc877336f3c836abbf54aa7e", + "id": "1204001", + "profile": { + "bust": "77", + "height": "156", + "hip": "76", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "ウサコちゃんと", + "alias_name_display": "ウサコちゃんと", + "event": [ + { + "event_id": 203, + "event_name": "アイドルサバイバルinテーマパーク" + } + ], + "hash": "2726872f85e9ca83e70c9897d833cbbe", + "id": "1304002", + "profile": { + "bust": "77", + "height": "156", + "hip": "76", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "浴衣祭り", + "alias_name_display": "浴衣祭り", + "hash": "c38e02af7867d399dc755701470f8fb6", + "id": "1210401", + "profile": { + "bust": "77", + "height": "156", + "hip": "76", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "浴衣祭り", + "alias_name_display": "浴衣祭り", + "hash": "393b6b1b2e28e60508ecfc9f13769c3c", + "id": "1310402", + "profile": { + "bust": "77", + "height": "156", + "hip": "76", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "パラダイスリゾート", + "alias_name_display": "パラダイスリゾート", + "hash": "28351f2aa36a19be5e71535a9da90df2", + "id": "1217701", + "profile": { + "bust": "77", + "height": "156", + "hip": "76", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "パラダイスリゾート", + "alias_name_display": "パラダイスリゾート", + "hash": "e62386d71c2fd0d5ad4dd47207df9b39", + "id": "1317702", + "profile": { + "bust": "77", + "height": "156", + "hip": "76", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "オータムコレクション", + "alias_name_display": "オータムコレクション", + "hash": "8e287b6e2675f27792f7c11ae46cdbcd", + "id": "1223901", + "profile": { + "bust": "77", + "height": "156", + "hip": "76", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "オータムコレクション", + "alias_name_display": "オータムコレクション", + "hash": "dfaef83aefde74600203a567895707b1", + "id": "1323902", + "profile": { + "bust": "77", + "height": "156", + "hip": "76", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "クライムI.C", + "alias_name_display": "クライムI.C", + "event": [ + { + "event_id": 1211, + "event_name": "目指せ山頂! アイドルチャレンジ" + } + ], + "hash": "5284e8ed9804a5f52178ffad4654693c", + "id": "1329002", + "profile": { + "bust": "77", + "height": "156", + "hip": "76", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "ハロウィンクイーン", + "alias_name_display": "ハロウィンクイーン", + "event": [ + { + "event_id": 207, + "event_name": "アイドルサバイバル ハロウィン編" + } + ], + "hash": "02e6e6ca1a87c6990997bd7e95004bf2", + "id": "1403401", + "profile": { + "bust": "77", + "height": "156", + "hip": "76", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "ハロウィンクイーン", + "alias_name_display": "ハロウィンクイーン", + "event": [ + { + "event_id": 207, + "event_name": "アイドルサバイバル ハロウィン編" + } + ], + "hash": "b4ce1229bd3669f873535993c78119a4", + "id": "1503402", + "profile": { + "bust": "77", + "height": "156", + "hip": "76", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "うたのおねえさん", + "alias_name_display": "うたのおねえさん", + "hash": "5b22bf84b28a80e6bc9bba507cb475ca", + "id": "1412001", + "profile": { + "bust": "77", + "height": "156", + "hip": "76", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "うたのおねえさん", + "alias_name_display": "うたのおねえさん", + "hash": "7ff72968fd3f03a494d52e24b597be01", + "id": "1512002", + "profile": { + "bust": "77", + "height": "156", + "hip": "76", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "甲斐のウサトラ", + "alias_name_display": "甲斐のウサトラ", + "event": [ + { + "event_id": 515, + "event_name": "戦国公演 天魔の乱" + } + ], + "hash": "3cc897e17eb9ec00935c3f09dd790b44", + "id": "1419701", + "profile": { + "bust": "77", + "height": "156", + "hip": "76", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "甲斐のウサトラ", + "alias_name_display": "甲斐のウサトラ", + "event": [ + { + "event_id": 515, + "event_name": "戦国公演 天魔の乱" + } + ], + "hash": "545f910a45bcaf27bf287cf9ae8149e5", + "id": "1519702", + "profile": { + "bust": "77", + "height": "156", + "hip": "76", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "ウサコちゃんとチアー", + "alias_name_display": "ウサコちゃんとチアー", + "event": [ + { + "event_id": 1501, + "event_name": "チーム対抗トークバトルショー" + } + ], + "hash": "1ca5b0c45103639cf0269381b7c00758", + "id": "1423901", + "profile": { + "bust": "77", + "height": "156", + "hip": "76", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "ウサコちゃんとチアー", + "alias_name_display": "ウサコちゃんとチアー", + "event": [ + { + "event_id": 1501, + "event_name": "チーム対抗トークバトルショー" + } + ], + "hash": "a4b95d602f54ab58070cacc27508ccc0", + "id": "1523902", + "profile": { + "bust": "77", + "height": "156", + "hip": "76", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "たのしくクライマー", + "alias_name_display": "たのしくクライマー", + "event": [ + { + "event_id": 1211, + "event_name": "目指せ山頂! アイドルチャレンジ" + } + ], + "hash": "125e81ee1827f6f200d28b40aa1be60c", + "id": "1434201", + "profile": { + "bust": "77", + "height": "156", + "hip": "76", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "たのしくクライマー", + "alias_name_display": "たのしくクライマー", + "event": [ + { + "event_id": 1211, + "event_name": "目指せ山頂! アイドルチャレンジ" + } + ], + "hash": "ab230b11f6a1d816f09e09d220d47773", + "id": "1534202", + "profile": { + "bust": "77", + "height": "156", + "hip": "76", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "にこにこクライマー", + "alias_name_display": "にこにこクライマー", + "event": [ + { + "event_id": 1211, + "event_name": "目指せ山頂! アイドルチャレンジ" + } + ], + "hash": "64effa640e159e91df4d2536e9fb2ef1", + "id": "1434301", + "profile": { + "bust": "77", + "height": "156", + "hip": "76", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "にこにこクライマー", + "alias_name_display": "にこにこクライマー", + "event": [ + { + "event_id": 1211, + "event_name": "目指せ山頂! アイドルチャレンジ" + } + ], + "hash": "9d21319e84f61ca87cc24dfd1aa511dc", + "id": "1534302", + "profile": { + "bust": "77", + "height": "156", + "hip": "76", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "クラッシールージュ", + "alias_name_display": "クラッシールージュ", + "event": [ + { + "event_id": 1411, + "event_name": "第11回ぷちデレラコレクション" + } + ], + "hash": "0bafd8a70b95838077ee10b32b1c12e6", + "id": "1438401", + "profile": { + "bust": "77", + "height": "156", + "hip": "76", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "クラッシールージュ", + "alias_name_display": "クラッシールージュ", + "event": [ + { + "event_id": 1411, + "event_name": "第11回ぷちデレラコレクション" + } + ], + "hash": "baf115536838f243cc9a52df9853fb22", + "id": "1538402", + "profile": { + "bust": "77", + "height": "156", + "hip": "76", + "waist": "54", + "weight": "45" + } + } + ], + "idol_id": 7, + "idol_name": "持田亜里沙", + "idol_name_display": "持田亜里沙", + "units": [ + { + "id": "173", + "name": "ピンクドットバルーン" + } + ] + }, + { + "aliases": [ + { + "hash": "9934868123e14bccac84dfb85f7ecd8a", + "id": "1000801", + "profile": { + "bust": "90", + "height": "153", + "hip": "89", + "waist": "65", + "weight": "52" + } + }, + { + "hash": "4a82a002228540b7fb96ca744599f1b1", + "id": "1100802", + "profile": { + "bust": "90", + "height": "153", + "hip": "89", + "waist": "63", + "weight": "51" + } + }, + { + "alias_name": "春風スポーツ", + "alias_name_display": "春風スポーツ", + "hash": "9c9fb21dc78b7642279e08ce560b9326", + "id": "1227201", + "profile": { + "bust": "90", + "height": "153", + "hip": "89", + "waist": "63", + "weight": "51" + } + }, + { + "alias_name": "春風スポーツ", + "alias_name_display": "春風スポーツ", + "hash": "a4e16ebe27838b975e37bfe74c84ddc2", + "id": "1327202", + "profile": { + "bust": "90", + "height": "153", + "hip": "89", + "waist": "63", + "weight": "51" + } + }, + { + "alias_name": "ワイルドフレンズ", + "alias_name_display": "ワイルドフレンズ", + "hash": "16d9293bf83ba6bf24a6852f8d34c0a7", + "id": "1232601", + "profile": { + "bust": "90", + "height": "153", + "hip": "89", + "waist": "63", + "weight": "51" + } + }, + { + "alias_name": "ワイルドフレンズ", + "alias_name_display": "ワイルドフレンズ", + "hash": "82aa4935c95e87e5a62185d63a42dd2c", + "id": "1332602", + "profile": { + "bust": "90", + "height": "153", + "hip": "89", + "waist": "63", + "weight": "51" + } + }, + { + "alias_name": "ふわふわスマイル", + "alias_name_display": "ふわふわスマイル", + "hash": "5bc1016a4121d230bcadb3e57ae9becc", + "id": "1401301", + "profile": { + "bust": "90", + "height": "153", + "hip": "89", + "waist": "64", + "weight": "52" + } + }, + { + "alias_name": "ふわふわスマイル", + "alias_name_display": "ふわふわスマイル", + "hash": "a58abdbbc7258e54993ab40137c6cd78", + "id": "1501302", + "profile": { + "bust": "91", + "height": "153", + "hip": "89", + "waist": "63", + "weight": "51" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "98d99f1382acbdcffbdf1f2c2b878c86", + "id": "1401501", + "profile": { + "bust": "90", + "height": "153", + "hip": "89", + "waist": "65", + "weight": "52" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "207845571c37f60aa09865f7ad5684d4", + "id": "1501502", + "profile": { + "bust": "90", + "height": "153", + "hip": "89", + "waist": "63", + "weight": "51" + } + }, + { + "alias_name": "LIVEゲスト", + "alias_name_display": "LIVEゲスト", + "event": [ + { + "event_id": 401, + "event_name": "新人アイドルプロデュース" + } + ], + "hash": "5f3df9ce0891daba5ad5462315bc6542", + "id": "1402601", + "profile": { + "bust": "90", + "height": "153", + "hip": "89", + "waist": "63", + "weight": "51" + } + }, + { + "alias_name": "LIVEゲスト", + "alias_name_display": "LIVEゲスト", + "event": [ + { + "event_id": 401, + "event_name": "新人アイドルプロデュース" + } + ], + "hash": "f055efc23fbee62b7f35ff7957efaf19", + "id": "1502602", + "profile": { + "bust": "90", + "height": "153", + "hip": "89", + "waist": "63", + "weight": "51" + } + }, + { + "alias_name": "メルティスイート", + "alias_name_display": "メルティスイート", + "hash": "1af7bfaac9ee148dd2e9046e761a5430", + "id": "1405401", + "profile": { + "bust": "90", + "height": "153", + "hip": "89", + "waist": "63", + "weight": "51" + } + }, + { + "alias_name": "メルティスイート", + "alias_name_display": "メルティスイート", + "hash": "9d95cb4e0a29f5df3d19ce03bab584a5", + "id": "1505402", + "profile": { + "bust": "90", + "height": "153", + "hip": "89", + "waist": "63", + "weight": "51" + } + }, + { + "alias_name": "シンデレラドリーム", + "alias_name_display": "シンデレラドリーム", + "hash": "9be2474eed1f4bb918def97edd402d7b", + "id": "1409101", + "profile": { + "bust": "90", + "height": "153", + "hip": "89", + "waist": "63", + "weight": "51" + } + }, + { + "alias_name": "シンデレラドリーム", + "alias_name_display": "シンデレラドリーム", + "hash": "67f12e31fbef152f316ccab074033751", + "id": "1509102", + "profile": { + "bust": "90", + "height": "153", + "hip": "89", + "waist": "63", + "weight": "51" + } + }, + { + "alias_name": "LIVEゲスト・スマイル", + "alias_name_display": "LIVEゲスト・スマイル", + "event": [ + { + "event_id": 401, + "event_name": "新人アイドルプロデュース" + } + ], + "hash": "885560563387d31c9c3df18f4acf5b65", + "id": "1410901", + "profile": { + "bust": "90", + "height": "153", + "hip": "89", + "waist": "63", + "weight": "51" + } + }, + { + "alias_name": "LIVEゲスト・スマイル", + "alias_name_display": "LIVEゲスト・スマイル", + "event": [ + { + "event_id": 401, + "event_name": "新人アイドルプロデュース" + } + ], + "hash": "70626858ff6676ee4f1eafbf6d52706f", + "id": "1510902", + "profile": { + "bust": "90", + "height": "153", + "hip": "89", + "waist": "63", + "weight": "51" + } + }, + { + "alias_name": "ワンダフルマジック", + "alias_name_display": "ワンダフルマジック", + "hash": "1690e6ca3699ea1491a93ac6ad33f835", + "id": "1412901", + "profile": { + "bust": "90", + "height": "153", + "hip": "89", + "waist": "63", + "weight": "51" + } + }, + { + "alias_name": "ワンダフルマジック", + "alias_name_display": "ワンダフルマジック", + "hash": "29c61e62f922a8da71ff6782d757b18e", + "id": "1512902", + "profile": { + "bust": "90", + "height": "153", + "hip": "89", + "waist": "63", + "weight": "51" + } + }, + { + "alias_name": "桜色の華姫", + "alias_name_display": "桜色の華姫", + "hash": "28bcf7054852b0cc022339a29fbab508", + "id": "1419601", + "profile": { + "bust": "90", + "height": "153", + "hip": "89", + "waist": "63", + "weight": "51" + } + }, + { + "alias_name": "桜色の華姫", + "alias_name_display": "桜色の華姫", + "hash": "b3b00bc958af646c2c96a1c9235117ff", + "id": "1519602", + "profile": { + "bust": "90", + "height": "153", + "hip": "89", + "waist": "63", + "weight": "51" + } + }, + { + "alias_name": "キャンディアイランド", + "alias_name_display": "キャンディアイランド", + "hash": "672ec165dd3a8a5cdfbf40fafafe20aa", + "id": "1523202", + "profile": { + "bust": "90", + "height": "153", + "hip": "89", + "waist": "63", + "weight": "51" + } + }, + { + "alias_name": "クリーミィトライフル", + "alias_name_display": "クリーミィトライフル", + "hash": "a7c2006bb177f730e7b13d57fb1b5665", + "id": "1425301", + "profile": { + "bust": "90", + "height": "153", + "hip": "89", + "waist": "63", + "weight": "51" + } + }, + { + "alias_name": "クリーミィトライフル", + "alias_name_display": "クリーミィトライフル", + "hash": "a96314dfbb8bddd68b73adaff44f5261", + "id": "1525302", + "profile": { + "bust": "90", + "height": "153", + "hip": "89", + "waist": "63", + "weight": "51" + } + }, + { + "alias_name": "メルティスノー", + "alias_name_display": "メルティスノー", + "hash": "b0cc22595859cf3a35cb7fad726acf0c", + "id": "1430101", + "profile": { + "bust": "90", + "height": "153", + "hip": "89", + "waist": "63", + "weight": "51" + } + }, + { + "alias_name": "メルティスノー", + "alias_name_display": "メルティスノー", + "hash": "de08ee30102b9de8473d24f8cab704d1", + "id": "1530102", + "profile": { + "bust": "90", + "height": "153", + "hip": "89", + "waist": "63", + "weight": "51" + } + }, + { + "alias_name": "スイートサマータイム", + "alias_name_display": "スイートサマータイム", + "hash": "a971864b897eb298bf98410917dcff59", + "id": "1434501", + "profile": { + "bust": "90", + "height": "153", + "hip": "89", + "waist": "63", + "weight": "51" + } + }, + { + "alias_name": "スイートサマータイム", + "alias_name_display": "スイートサマータイム", + "hash": "c8c44f8080c9c5fe57633092232f5dee", + "id": "1534502", + "profile": { + "bust": "90", + "height": "153", + "hip": "89", + "waist": "63", + "weight": "51" + } + } + ], + "idol_id": 8, + "idol_name": "三村かな子", + "idol_name_display": "三村かな子", + "units": [ + { + "id": "11", + "name": "かな☆かな☆ふぁんしー" + }, + { + "id": "25", + "name": "スウィートラヴァーズ" + }, + { + "id": "107", + "name": "ロッキングガール" + }, + { + "id": "137", + "name": "CANDY ISLAND" + }, + { + "id": "173", + "name": "ピンクドットバルーン" + }, + { + "id": "188", + "name": "Sweetches" + }, + { + "id": "194", + "name": "サクヤヒメ" + }, + { + "id": "213", + "name": "CINDERELLA PROJECT" + } + ] + }, + { + "aliases": [ + { + "hash": "2bc8b92d3444429e10e29e7fd056aaab", + "id": "1000901", + "profile": { + "bust": "83", + "height": "156", + "hip": "81", + "waist": "57", + "weight": "47" + } + }, + { + "hash": "8617333c94b6505b0e39c62dbbd7239b", + "id": "1100902", + "profile": { + "bust": "83", + "height": "156", + "hip": "81", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "浴衣祭り", + "alias_name_display": "浴衣祭り", + "hash": "12a84ee0f8802a28922bea40d190b1d3", + "id": "1204901", + "profile": { + "bust": "83", + "height": "156", + "hip": "81", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "浴衣祭り", + "alias_name_display": "浴衣祭り", + "hash": "fd16eb68d5aa1b68d4301ade853b1b82", + "id": "1304902", + "profile": { + "bust": "83", + "height": "156", + "hip": "81", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "ライラックガーリー", + "alias_name_display": "ライラックガーリー", + "event": [ + { + "event_id": 701, + "event_name": "ドリームLIVEフェスティバル" + } + ], + "hash": "80334ec678333541b423f0cfe2c6b8a4", + "id": "1210201", + "profile": { + "bust": "83", + "height": "156", + "hip": "81", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "ライラックガーリー", + "alias_name_display": "ライラックガーリー", + "event": [ + { + "event_id": 701, + "event_name": "ドリームLIVEフェスティバル" + } + ], + "hash": "6bcc7d82ba156c52ffefe1389c7aa795", + "id": "1310202", + "profile": { + "bust": "83", + "height": "156", + "hip": "81", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "学園の生徒", + "alias_name_display": "学園の生徒", + "event": [ + { + "event_id": 412, + "event_name": "聖靴学園の七不思議" + } + ], + "hash": "e2e9a35d29f0513a02423cb6d7655557", + "id": "1215701", + "profile": { + "bust": "83", + "height": "156", + "hip": "81", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "学園の生徒", + "alias_name_display": "学園の生徒", + "event": [ + { + "event_id": 412, + "event_name": "聖靴学園の七不思議" + } + ], + "hash": "0cc148d8ef200b2482c77d0b249d682f", + "id": "1315702", + "profile": { + "bust": "83", + "height": "156", + "hip": "81", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "学園の生徒・H", + "alias_name_display": "学園の生徒・H", + "event": [ + { + "event_id": 412, + "event_name": "聖靴学園の七不思議" + } + ], + "hash": "2d5c37db9e10793884e2649a98d18af1", + "id": "1215801", + "profile": { + "bust": "83", + "height": "156", + "hip": "81", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "学園の生徒・H", + "alias_name_display": "学園の生徒・H", + "event": [ + { + "event_id": 412, + "event_name": "聖靴学園の七不思議" + } + ], + "hash": "50127e06e323eda201d204a8ec4ae63d", + "id": "1315802", + "profile": { + "bust": "83", + "height": "156", + "hip": "81", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "T.B.チアーズ", + "alias_name_display": "T.B.チアーズ", + "event": [ + { + "event_id": 1502, + "event_name": "チーム対抗雨の日トークバトルショー" + } + ], + "hash": "b3ef5644d3ea4f71b6c07f4b6ced0142", + "id": "1222301", + "profile": { + "bust": "83", + "height": "156", + "hip": "81", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "T.B.チアーズ", + "alias_name_display": "T.B.チアーズ", + "event": [ + { + "event_id": 1502, + "event_name": "チーム対抗雨の日トークバトルショー" + } + ], + "hash": "9d0e515e9a0f87f9fbf510d5db8972a0", + "id": "1322302", + "profile": { + "bust": "83", + "height": "156", + "hip": "81", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "純朴ネズミ", + "alias_name_display": "純朴ネズミ", + "event": [ + { + "event_id": 1901, + "event_name": "童話公演 気まぐれアリスと不思議の国" + } + ], + "hash": "cb38626d995af7e002dd35bb675d9094", + "id": "1327002", + "profile": { + "bust": "83", + "height": "156", + "hip": "81", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "ブルーローゼス", + "alias_name_display": "ブルーローゼス", + "event": [ + { + "event_id": "031", + "event_name": "第31回プロダクションマッチフェスティバル" + } + ], + "hash": "1d00a1b541167b75e92acf127b30351a", + "id": "1229901", + "profile": { + "bust": "83", + "height": "156", + "hip": "81", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "ブルーローゼス", + "alias_name_display": "ブルーローゼス", + "event": [ + { + "event_id": "031", + "event_name": "第31回プロダクションマッチフェスティバル" + } + ], + "hash": "499bcaf9ec86b7f1ebda4f6aff7b7815", + "id": "1329902", + "profile": { + "bust": "83", + "height": "156", + "hip": "81", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "ポップスクリーン", + "alias_name_display": "ポップスクリーン", + "event": [ + { + "event_id": 729, + "event_name": "ドリームLIVEフェスティバル ゴールデンウィークSP" + } + ], + "hash": "968454d2d888cba54601af388d0bd810", + "id": "1232901", + "profile": { + "bust": "83", + "height": "156", + "hip": "81", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "ポップスクリーン", + "alias_name_display": "ポップスクリーン", + "event": [ + { + "event_id": 729, + "event_name": "ドリームLIVEフェスティバル ゴールデンウィークSP" + } + ], + "hash": "5b7e98ea91e703b48b6f44353c1933f8", + "id": "1332902", + "profile": { + "bust": "83", + "height": "156", + "hip": "81", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "ピュアリーガール", + "alias_name_display": "ピュアリーガール", + "hash": "48f052c21de4a7b3f2414314364ccc40", + "id": "1409701", + "profile": { + "bust": "83", + "height": "156", + "hip": "81", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "ピュアリーガール", + "alias_name_display": "ピュアリーガール", + "hash": "ce5c146a7f092ebd7b118ec5ad736c7d", + "id": "1509702", + "profile": { + "bust": "83", + "height": "156", + "hip": "81", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "ピュアリー・ロワイヤル", + "alias_name_display": "ピュアリー・ロワイヤル", + "event": [ + { + "event_id": 807, + "event_name": "第7回アイドルLIVEロワイヤル" + } + ], + "hash": "a6f51bce5e094052da09c95b382edbc8", + "id": "1419101", + "profile": { + "bust": "83", + "height": "156", + "hip": "81", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "ピュアリー・ロワイヤル", + "alias_name_display": "ピュアリー・ロワイヤル", + "event": [ + { + "event_id": 807, + "event_name": "第7回アイドルLIVEロワイヤル" + } + ], + "hash": "33c1f059acc1311a5f74820b875be8ba", + "id": "1519102", + "profile": { + "bust": "83", + "height": "156", + "hip": "81", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "イノセントアミューズ", + "alias_name_display": "イノセントアミューズ", + "event": [ + { + "event_id": 717, + "event_name": "第17回ドリームLIVEフェスティバル" + } + ], + "hash": "f8fecd863bd847cb1a36312f50bca69c", + "id": "1428601", + "profile": { + "bust": "83", + "height": "156", + "hip": "81", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "イノセントアミューズ", + "alias_name_display": "イノセントアミューズ", + "event": [ + { + "event_id": 717, + "event_name": "第17回ドリームLIVEフェスティバル" + } + ], + "hash": "d5524d87d135dae077956ca332579a7e", + "id": "1528602", + "profile": { + "bust": "83", + "height": "156", + "hip": "81", + "waist": "57", + "weight": "47" + } + } + ], + "idol_id": 9, + "idol_name": "奥山沙織", + "idol_name_display": "奥山沙織", + "units": [ + { + "id": "49", + "name": "ピュアリーツイン" + } + ] + }, + { + "aliases": [ + { + "hash": "729dbe34998bc4505ec54c4a91d6274c", + "id": "1001001", + "profile": { + "bust": "84", + "height": "160", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "hash": "6655d43d8c1acde40cdc1740c3096403", + "id": "1101002", + "profile": { + "bust": "84", + "height": "160", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "パジャマパーティー", + "alias_name_display": "パジャマパーティー", + "hash": "2f69d0c03220e324a6ef7c3a6f3cddd0", + "id": "1204201", + "profile": { + "bust": "84", + "height": "160", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "パジャマパーティー", + "alias_name_display": "パジャマパーティー", + "hash": "e57b36e27f8f7a01204a79a4d8556424", + "id": "1304202", + "profile": { + "bust": "84", + "height": "160", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "デビリッシュゴシック", + "alias_name_display": "デビリッシュゴシック", + "hash": "da37673cb29940724a44320a4eb5b9c7", + "id": "1212501", + "profile": { + "bust": "84", + "height": "160", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "デビリッシュゴシック", + "alias_name_display": "デビリッシュゴシック", + "hash": "43257fa67c9e153c2342a7a9b3f68570", + "id": "1312502", + "profile": { + "bust": "84", + "height": "160", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "スクールガール", + "alias_name_display": "スクールガール", + "hash": "fb5049ce7e308b41e7b7ff194b4d4c8c", + "id": "1218701", + "profile": { + "bust": "84", + "height": "160", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "スクールガール", + "alias_name_display": "スクールガール", + "hash": "5070ff91ff6e35dfd983aaa23d49c4f8", + "id": "1318702", + "profile": { + "bust": "84", + "height": "160", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ブライダルセレクション", + "alias_name_display": "ブライダルセレクション", + "hash": "9f456971110744b4582cdc908daff847", + "id": "1224101", + "profile": { + "bust": "84", + "height": "160", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ブライダルセレクション", + "alias_name_display": "ブライダルセレクション", + "hash": "789d621e2350e2918f7de22eaa885ce5", + "id": "1324102", + "profile": { + "bust": "84", + "height": "160", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ロワイヤルスタイルNP", + "alias_name_display": "ロワイヤルスタイルNP", + "event": [ + { + "event_id": 817, + "event_name": "アイドルLIVEロワイヤル お花見SP" + } + ], + "hash": "239a7383564dda0b8581c60fd9e91d19", + "id": "1227401", + "profile": { + "bust": "84", + "height": "160", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ロワイヤルスタイルNP", + "alias_name_display": "ロワイヤルスタイルNP", + "event": [ + { + "event_id": 817, + "event_name": "アイドルLIVEロワイヤル お花見SP" + } + ], + "hash": "a008d980b8fa78799cba20ca9ca26ba1", + "id": "1327402", + "profile": { + "bust": "84", + "height": "160", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "プリティー助手", + "alias_name_display": "プリティー助手", + "event": [ + { + "event_id": 1904, + "event_name": "魔界公演 妖艶魔女と消えたハロウィン" + } + ], + "hash": "5910b23711ad9fad1d4b0422bdcb6e34", + "id": "1330202", + "profile": { + "bust": "84", + "height": "160", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "プリマヴェーラビアッジョ", + "alias_name_display": "プリマヴェーラビアッジョ", + "event": [ + { + "event_id": 503, + "event_name": "アイドルLIVEツアーinイタリア" + } + ], + "hash": "98b0ed321a6ffcbd43865235bcddfeaf", + "id": "1406001", + "profile": { + "bust": "84", + "height": "160", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "プリマヴェーラビアッジョ", + "alias_name_display": "プリマヴェーラビアッジョ", + "event": [ + { + "event_id": 503, + "event_name": "アイドルLIVEツアーinイタリア" + } + ], + "hash": "5a92ba70490bbfcc2beb6da09a4bfe49", + "id": "1506002", + "profile": { + "bust": "84", + "height": "160", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ホワイトピクシー", + "alias_name_display": "ホワイトピクシー", + "event": [ + { + "event_id": 1303, + "event_name": "第3回プロダクションマッチフェスティバルS" + } + ], + "hash": "4e23cc6a906719f5abd9c071f6a951f3", + "id": "1421501", + "profile": { + "bust": "84", + "height": "160", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ホワイトピクシー", + "alias_name_display": "ホワイトピクシー", + "event": [ + { + "event_id": 1303, + "event_name": "第3回プロダクションマッチフェスティバルS" + } + ], + "hash": "bd77e3aa1b781fed0b474a070e939eab", + "id": "1521502", + "profile": { + "bust": "84", + "height": "160", + "hip": "85", + "waist": "57", + "weight": "46" + } + } + ], + "idol_id": 10, + "idol_name": "間中美里", + "idol_name_display": "間中美里", + "units": [ + { + "id": "159", + "name": "パステル・カクテル" + }, + { + "id": "193", + "name": "イエローリリー" + }, + { + "id": "206", + "name": "セクシーボンデージ" + }, + { + "id": "207", + "name": "ムーランルージュ" + }, + { + "id": "209", + "name": "ロワイヤルスタイルNP" + } + ] + }, + { + "aliases": [ + { + "hash": "bef9093335fbcbe9e92a41d2d68a206d", + "id": "1001101", + "profile": { + "bust": "82", + "height": "155", + "hip": "86", + "waist": "59", + "weight": "42" + } + }, + { + "hash": "d25ce47acff65352ce0a24e20ff15178", + "id": "1101102", + "profile": { + "bust": "82", + "height": "155", + "hip": "86", + "waist": "58", + "weight": "42" + } + }, + { + "alias_name": "聖夜", + "alias_name_display": "聖夜", + "event": [ + { + "event_id": 101, + "event_name": "星降るクリスマス" + } + ], + "hash": "4907a5097709ffb270d71d19a4535cee", + "id": "1202001", + "profile": { + "bust": "82", + "height": "155", + "hip": "86", + "waist": "59", + "weight": "42" + } + }, + { + "alias_name": "聖夜", + "alias_name_display": "聖夜", + "event": [ + { + "event_id": 101, + "event_name": "星降るクリスマス" + } + ], + "hash": "892b6b0c9aa3f3edbf2ea1b05e3c70ea", + "id": "1302002", + "profile": { + "bust": "82", + "height": "155", + "hip": "86", + "waist": "58", + "weight": "42" + } + }, + { + "alias_name": "戦国姫", + "alias_name_display": "戦国姫", + "hash": "2d5bc0c5df458224606809495dc1afcd", + "id": "1500902", + "profile": { + "bust": "82", + "height": "155", + "hip": "86", + "waist": "58", + "weight": "42" + } + }, + { + "alias_name": "はにかみ乙女", + "alias_name_display": "はにかみ乙女", + "hash": "4f6605f1390ff27296abf8072f06d1a7", + "id": "1402301", + "profile": { + "bust": "82", + "height": "155", + "hip": "86", + "waist": "59", + "weight": "42" + } + }, + { + "alias_name": "はにかみ乙女", + "alias_name_display": "はにかみ乙女", + "hash": "d6ddb3065b0006be872bc532d29297ec", + "id": "1502302", + "profile": { + "bust": "82", + "height": "155", + "hip": "86", + "waist": "59", + "weight": "42" + } + }, + { + "alias_name": "聖夜のプレゼント", + "alias_name_display": "聖夜のプレゼント", + "hash": "94d3ea2fc6d661ab277e492432568e22", + "id": "1404301", + "profile": { + "bust": "82", + "height": "155", + "hip": "86", + "waist": "59", + "weight": "42" + } + }, + { + "alias_name": "聖夜のプレゼント", + "alias_name_display": "聖夜のプレゼント", + "hash": "02fb1d61edfcf0ab6ea439807a8ad914", + "id": "1504302", + "profile": { + "bust": "82", + "height": "155", + "hip": "86", + "waist": "59", + "weight": "42" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "255795031bff51e2289b75d660d2d292", + "id": "1404801", + "profile": { + "bust": "82", + "height": "155", + "hip": "86", + "waist": "59", + "weight": "42" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "2a0ba73e0e08299a21d28ac6f7512b1d", + "id": "1504802", + "profile": { + "bust": "82", + "height": "155", + "hip": "86", + "waist": "59", + "weight": "42" + } + }, + { + "alias_name": "ハロウィンうぃっち", + "alias_name_display": "ハロウィンうぃっち", + "hash": "4666ad388b7ba759654a7299eb302356", + "id": "1409501", + "profile": { + "bust": "82", + "height": "155", + "hip": "86", + "waist": "59", + "weight": "42" + } + }, + { + "alias_name": "ハロウィンうぃっち", + "alias_name_display": "ハロウィンうぃっち", + "hash": "d8acf685442132547a1c399fd9d342bc", + "id": "1509502", + "profile": { + "bust": "82", + "height": "155", + "hip": "86", + "waist": "59", + "weight": "42" + } + }, + { + "alias_name": "ワンダフルマジック", + "alias_name_display": "ワンダフルマジック", + "hash": "dfc136bcf818e927b74615613332e737", + "id": "1413001", + "profile": { + "bust": "82", + "height": "155", + "hip": "86", + "waist": "59", + "weight": "42" + } + }, + { + "alias_name": "ワンダフルマジック", + "alias_name_display": "ワンダフルマジック", + "hash": "136657fa4a63321ec624a82fb10e97a4", + "id": "1513002", + "profile": { + "bust": "82", + "height": "155", + "hip": "86", + "waist": "59", + "weight": "42" + } + }, + { + "alias_name": "3rdアニバーサリー", + "alias_name_display": "3rdアニバーサリー", + "event": [ + { + "event_id": 415, + "event_name": "アイドルプロデュース the 3rd Anniversary" + } + ], + "hash": "8a42faefd560fa7d67825f9922b0a5c9", + "id": "1420101", + "profile": { + "bust": "82", + "height": "155", + "hip": "86", + "waist": "59", + "weight": "42" + } + }, + { + "alias_name": "3rdアニバーサリー", + "alias_name_display": "3rdアニバーサリー", + "event": [ + { + "event_id": 415, + "event_name": "アイドルプロデュース the 3rd Anniversary" + } + ], + "hash": "086525ca98f96b889095348482203f98", + "id": "1520102", + "profile": { + "bust": "82", + "height": "155", + "hip": "86", + "waist": "59", + "weight": "42" + } + }, + { + "alias_name": "3rdアニバーサリー・S", + "alias_name_display": "3rdアニバーサリー・S", + "event": [ + { + "event_id": 415, + "event_name": "アイドルプロデュース the 3rd Anniversary" + } + ], + "hash": "7a9aeb6c91fce6a201f9249503875b6e", + "id": "1420201", + "profile": { + "bust": "82", + "height": "155", + "hip": "86", + "waist": "59", + "weight": "42" + } + }, + { + "alias_name": "3rdアニバーサリー・S", + "alias_name_display": "3rdアニバーサリー・S", + "event": [ + { + "event_id": 415, + "event_name": "アイドルプロデュース the 3rd Anniversary" + } + ], + "hash": "aa66da9ab10d44dc6b422f12befbfbb8", + "id": "1520202", + "profile": { + "bust": "82", + "height": "155", + "hip": "86", + "waist": "59", + "weight": "42" + } + }, + { + "alias_name": "プレシャスエモーション", + "alias_name_display": "プレシャスエモーション", + "hash": "b6c6287c284349785258a66ddf5cc487", + "id": "1424201", + "profile": { + "bust": "82", + "height": "155", + "hip": "86", + "waist": "59", + "weight": "42" + } + }, + { + "alias_name": "プレシャスエモーション", + "alias_name_display": "プレシャスエモーション", + "hash": "3166f21cb4b0a33660bc162146a7d129", + "id": "1524202", + "profile": { + "bust": "82", + "height": "155", + "hip": "86", + "waist": "59", + "weight": "42" + } + }, + { + "alias_name": "ホワイトニューイヤー", + "alias_name_display": "ホワイトニューイヤー", + "hash": "658b39b8d4cebd6c30cfc5e2d7dd04c6", + "id": "1430401", + "profile": { + "bust": "82", + "height": "155", + "hip": "86", + "waist": "59", + "weight": "42" + } + }, + { + "alias_name": "ホワイトニューイヤー", + "alias_name_display": "ホワイトニューイヤー", + "hash": "4b4e748d60b9a1b78aec215fb49c2227", + "id": "1530402", + "profile": { + "bust": "82", + "height": "155", + "hip": "86", + "waist": "59", + "weight": "42" + } + }, + { + "alias_name": "シンデレラドリーム", + "alias_name_display": "シンデレラドリーム", + "hash": "4b123c9565147d559a1900bc29cc143e", + "id": "1433101", + "profile": { + "bust": "82", + "height": "155", + "hip": "86", + "waist": "59", + "weight": "42" + } + }, + { + "alias_name": "シンデレラドリーム", + "alias_name_display": "シンデレラドリーム", + "hash": "06634f09752a3c79a39c537123cd9f95", + "id": "1533102", + "profile": { + "bust": "82", + "height": "155", + "hip": "86", + "waist": "59", + "weight": "42" + } + }, + { + "alias_name": "キープオンゴーイング", + "alias_name_display": "キープオンゴーイング", + "hash": "ed3895ce9f0156ac1a737b5f52c229e3", + "id": "1436901", + "profile": { + "bust": "82", + "height": "155", + "hip": "86", + "waist": "59", + "weight": "42" + } + }, + { + "alias_name": "キープオンゴーイング", + "alias_name_display": "キープオンゴーイング", + "hash": "319223e824af7aed34094925be62c94c", + "id": "1536902", + "profile": { + "bust": "82", + "height": "155", + "hip": "86", + "waist": "59", + "weight": "42" + } + }, + { + "alias_name": "つなげてドロップス", + "alias_name_display": "つなげてドロップス", + "hash": "9b6f3d979994b95c68ec9a6057ff9681", + "id": "1440201", + "profile": { + "bust": "82", + "height": "155", + "hip": "86", + "waist": "59", + "weight": "42" + } + }, + { + "alias_name": "つなげてドロップス", + "alias_name_display": "つなげてドロップス", + "hash": "6c7bab6998ae7b616fc1598308ba201b", + "id": "1540202", + "profile": { + "bust": "82", + "height": "155", + "hip": "86", + "waist": "59", + "weight": "42" + } + } + ], + "idol_id": 11, + "idol_name": "小日向美穂", + "idol_name_display": "小日向美穂", + "units": [ + { + "id": "43", + "name": "春色姫君" + }, + { + "id": "135", + "name": "ピンキーキュート" + }, + { + "id": "138", + "name": "ピンクチェックスクール" + }, + { + "id": "192", + "name": "Masque:Rade" + }, + { + "id": "195", + "name": "C5" + }, + { + "id": "212", + "name": "CINDERELLA GIRLS" + } + ] + }, + { + "aliases": [ + { + "hash": "e0ac4f8b1faf39c137d2bef65559b5f5", + "id": "1001201", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "hash": "fa69e322ed10a34ef9b35030d5250e4c", + "id": "1101202", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "バレンタイン", + "alias_name_display": "バレンタイン", + "event": [ + { + "event_id": 103, + "event_name": "バレンタインパーティー" + } + ], + "hash": "4c51173ad96349b44354060477ee821d", + "id": "1202901", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "バレンタイン", + "alias_name_display": "バレンタイン", + "event": [ + { + "event_id": 103, + "event_name": "バレンタインパーティー" + } + ], + "hash": "a1efe353a69781c9b79c3755f2f39ed4", + "id": "1302902", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "パジャマパーティー", + "alias_name_display": "パジャマパーティー", + "hash": "76d8828c447915a4dc60fff5907a58a7", + "id": "1204101", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "パジャマパーティー", + "alias_name_display": "パジャマパーティー", + "hash": "f6a64a87bff96b4a2e0f53edb6779af6", + "id": "1304102", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "京町乙女", + "alias_name_display": "京町乙女", + "event": [ + { + "event_id": 402, + "event_name": "アイドルプロデュース京町編" + } + ], + "hash": "1c4243ff6b135d3a6ad27e1fa4bb3a2c", + "id": "1205901", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "京町乙女", + "alias_name_display": "京町乙女", + "event": [ + { + "event_id": 402, + "event_name": "アイドルプロデュース京町編" + } + ], + "hash": "7b98a6c56f9eeb63d49689d3afa516e8", + "id": "1305902", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "バレンタインエンジェル", + "alias_name_display": "バレンタインエンジェル", + "hash": "41da088536def062d420ebad260e37c2", + "id": "1405001", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "バレンタインエンジェル", + "alias_name_display": "バレンタインエンジェル", + "hash": "56e0f5e7c766e4719720b824f51e5a55", + "id": "1505002", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "浴衣の華姫", + "alias_name_display": "浴衣の華姫", + "hash": "5440e9e9c4cfbc57188213c0aff1639e", + "id": "1407601", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "浴衣の華姫", + "alias_name_display": "浴衣の華姫", + "hash": "56b9e10a10d166583011ef60a58a9c82", + "id": "1507602", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "e0bc2a1ae04cb1a3e0045ece2eb6935f", + "id": "1410301", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "da5e0614a354a5c21a1afc915a91ba97", + "id": "1510302", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "冬のメロディー", + "alias_name_display": "冬のメロディー", + "hash": "80d79214f75af36736b7bd2e55a76cc2", + "id": "1410701", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "冬のメロディー", + "alias_name_display": "冬のメロディー", + "hash": "f3a4a141eb2c9ec791d984c1655ed24d", + "id": "1510702", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "クローバーエンジェル", + "alias_name_display": "クローバーエンジェル", + "event": [ + { + "event_id": 706, + "event_name": "第6回ドリームLIVEフェスティバル" + } + ], + "hash": "f9c770b61a35768542faa7ef959070e6", + "id": "1413301", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "クローバーエンジェル", + "alias_name_display": "クローバーエンジェル", + "event": [ + { + "event_id": 706, + "event_name": "第6回ドリームLIVEフェスティバル" + } + ], + "hash": "265938c96a3a1d74ccbc5cc7577fa546", + "id": "1513302", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ふわふわうさぎ", + "alias_name_display": "ふわふわうさぎ", + "hash": "cdf131bfe5c184dbc3decfc85773a8fa", + "id": "1417901", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ふわふわうさぎ", + "alias_name_display": "ふわふわうさぎ", + "hash": "5bc43718ce56eb04476f0e60a08eca4f", + "id": "1517902", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ブライダルエンジェル", + "alias_name_display": "ブライダルエンジェル", + "hash": "fbf203c786aef175dc76a2aa8227a5d9", + "id": "1424801", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ブライダルエンジェル", + "alias_name_display": "ブライダルエンジェル", + "hash": "fc04f9389656bde489e65ae8d36e6a2e", + "id": "1524802", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "キャンディアイランド", + "alias_name_display": "キャンディアイランド", + "hash": "93dfb2c011a794668c1653f097a4b464", + "id": "1526002", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "はじめての太鼓", + "alias_name_display": "はじめての太鼓", + "hash": "61f90183b1e6c59133ec8c0ae4d3f2cd", + "id": "1528002", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "G4U!", + "alias_name_display": "G4U!", + "hash": "f32aa981899a3e4f8367b6346e59e8c8", + "id": "1530902", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ハピネスチューン", + "alias_name_display": "ハピネスチューン", + "hash": "7b2d41d513acc6f434bc29bacca28529", + "id": "1431501", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ハピネスチューン", + "alias_name_display": "ハピネスチューン", + "hash": "7881ef1cb6cf776ed071272ca3dbf5e7", + "id": "1531502", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "スクールデイズ", + "alias_name_display": "スクールデイズ", + "hash": "277f54caf12509c27e2a04db25fb43c1", + "id": "1435801", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "スクールデイズ", + "alias_name_display": "スクールデイズ", + "hash": "89d14a4ef29eabee5f88b05e4c133846", + "id": "1535802", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "シンデレラドリーム", + "alias_name_display": "シンデレラドリーム", + "hash": "986579406645926e00ee0cf4857fb25d", + "id": "1439201", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "シンデレラドリーム", + "alias_name_display": "シンデレラドリーム", + "hash": "aab77d68d6c72c73efda675edbd387a8", + "id": "1539202", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "41" + } + } + ], + "idol_id": 12, + "idol_name": "緒方智絵里", + "idol_name_display": "緒方智絵里", + "units": [ + { + "id": "91", + "name": "京町乙女" + }, + { + "id": "94", + "name": "シャイニングゴッドチェリー" + }, + { + "id": "135", + "name": "ピンキーキュート" + }, + { + "id": "137", + "name": "CANDY ISLAND" + }, + { + "id": "139", + "name": "397cherry" + }, + { + "id": "173", + "name": "ピンクドットバルーン" + }, + { + "id": "192", + "name": "Masque:Rade" + }, + { + "id": "194", + "name": "サクヤヒメ" + }, + { + "id": "213", + "name": "CINDERELLA PROJECT" + } + ] + }, + { + "aliases": [ + { + "hash": "fb3b173c49703071b4dbdd5ed424640c", + "id": "1001301", + "profile": { + "bust": "81", + "height": "154", + "hip": "80", + "waist": "58", + "weight": "43" + } + }, + { + "hash": "9e15861e6115bffdcce4d7115522857b", + "id": "1101302", + "profile": { + "bust": "81", + "height": "154", + "hip": "80", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "ジューンブライド", + "alias_name_display": "ジューンブライド", + "event": [ + { + "event_id": 105, + "event_name": "きらめくブライダルショー" + } + ], + "hash": "fc3e9297dd790e8cf196c3aad44ac280", + "id": "1002101", + "profile": { + "bust": "81", + "height": "154", + "hip": "80", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "ジューンブライド", + "alias_name_display": "ジューンブライド", + "event": [ + { + "event_id": 105, + "event_name": "きらめくブライダルショー" + } + ], + "hash": "9f990b2be46d9594ff3fb547b07974de", + "id": "1102102", + "profile": { + "bust": "81", + "height": "154", + "hip": "80", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "マーメイドパラダイス", + "alias_name_display": "マーメイドパラダイス", + "hash": "2e581f1e6d6efc823c7c50f727df3515", + "id": "1205201", + "profile": { + "bust": "81", + "height": "154", + "hip": "80", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "マーメイドパラダイス", + "alias_name_display": "マーメイドパラダイス", + "hash": "d5667b3d3207d1cb3d7655fa13b969fd", + "id": "1305202", + "profile": { + "bust": "81", + "height": "154", + "hip": "80", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "ラブリーデイズ", + "alias_name_display": "ラブリーデイズ", + "hash": "5f46af2a7cfc01c41a697f621c12a8fb", + "id": "1221701", + "profile": { + "bust": "81", + "height": "154", + "hip": "80", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "ラブリーデイズ", + "alias_name_display": "ラブリーデイズ", + "hash": "a49399e42faba8f22952e1fbb066fdce", + "id": "1321702", + "profile": { + "bust": "81", + "height": "154", + "hip": "80", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "タラン・サリュ", + "alias_name_display": "タラン・サリュ", + "hash": "804fbc1bb11314fb878793df312736c6", + "id": "1229601", + "profile": { + "bust": "81", + "height": "154", + "hip": "80", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "タラン・サリュ", + "alias_name_display": "タラン・サリュ", + "hash": "49050a377ed2b834ec13a980739f1430", + "id": "1329602", + "profile": { + "bust": "81", + "height": "154", + "hip": "80", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "スイートクリスマス", + "alias_name_display": "スイートクリスマス", + "hash": "93ac99834f1bd8a4900266cee4fe87a3", + "id": "1404001", + "profile": { + "bust": "81", + "height": "154", + "hip": "80", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "スイートクリスマス", + "alias_name_display": "スイートクリスマス", + "hash": "3060e7a4d2ecc75ca60ec384e40eaa6f", + "id": "1504002", + "profile": { + "bust": "81", + "height": "154", + "hip": "80", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "カラフルレインボー", + "alias_name_display": "カラフルレインボー", + "event": [ + { + "event_id": 407, + "event_name": "アイドルプロデュース 鎌倉あじさい巡り" + } + ], + "hash": "aa88b658b8901cf3bb0af315c145248e", + "id": "1407001", + "profile": { + "bust": "81", + "height": "154", + "hip": "80", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "カラフルレインボー", + "alias_name_display": "カラフルレインボー", + "event": [ + { + "event_id": 407, + "event_name": "アイドルプロデュース 鎌倉あじさい巡り" + } + ], + "hash": "17159c03d3380ca6670329df4722b3e4", + "id": "1507002", + "profile": { + "bust": "81", + "height": "154", + "hip": "80", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "ハートフルサービス", + "alias_name_display": "ハートフルサービス", + "hash": "82977bbfbadf655998e449ebaa3f6b35", + "id": "1411101", + "profile": { + "bust": "81", + "height": "154", + "hip": "80", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "ハートフルサービス", + "alias_name_display": "ハートフルサービス", + "hash": "973864636042aaedda0574601c8f2915", + "id": "1511102", + "profile": { + "bust": "81", + "height": "154", + "hip": "80", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "学園の秘密", + "alias_name_display": "学園の秘密", + "event": [ + { + "event_id": 412, + "event_name": "聖靴学園の七不思議" + } + ], + "hash": "486dd74101ffb18ea9e915e62a56e5a4", + "id": "1414201", + "profile": { + "bust": "81", + "height": "154", + "hip": "80", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "学園の秘密", + "alias_name_display": "学園の秘密", + "event": [ + { + "event_id": 412, + "event_name": "聖靴学園の七不思議" + } + ], + "hash": "e1e37fcbbe67e706cb0bb336f9d972c5", + "id": "1514202", + "profile": { + "bust": "81", + "height": "154", + "hip": "80", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "学園の秘密・S", + "alias_name_display": "学園の秘密・S", + "event": [ + { + "event_id": 412, + "event_name": "聖靴学園の七不思議" + } + ], + "hash": "4aa2c8c878931a167d1a1d87a70442e4", + "id": "1414301", + "profile": { + "bust": "81", + "height": "154", + "hip": "80", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "学園の秘密・S", + "alias_name_display": "学園の秘密・S", + "event": [ + { + "event_id": 412, + "event_name": "聖靴学園の七不思議" + } + ], + "hash": "04fc73953bac772e2030c32bd86e66a2", + "id": "1514302", + "profile": { + "bust": "81", + "height": "154", + "hip": "80", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "ホームメイドハッピー", + "alias_name_display": "ホームメイドハッピー", + "event": [ + { + "event_id": 708, + "event_name": "第8回ドリームLIVEフェスティバル" + } + ], + "hash": "da958ba98f8b7ff456eabc29c82648a5", + "id": "1417801", + "profile": { + "bust": "81", + "height": "154", + "hip": "80", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "ホームメイドハッピー", + "alias_name_display": "ホームメイドハッピー", + "event": [ + { + "event_id": 708, + "event_name": "第8回ドリームLIVEフェスティバル" + } + ], + "hash": "2b63366b029c03f89a8d9d08ed27a091", + "id": "1517802", + "profile": { + "bust": "81", + "height": "154", + "hip": "80", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "ウィンターホリデーリゾート", + "alias_name_display": "ウィンターホリデーリゾート", + "hash": "eea0ece9a3e1f4abc11b3c0314a1c3df", + "id": "1421701", + "profile": { + "bust": "81", + "height": "154", + "hip": "80", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "ウィンターホリデーリゾート", + "alias_name_display": "ウィンターホリデーリゾート", + "hash": "a21cdf41a5909ce5afd832ee49a95cb5", + "id": "1521702", + "profile": { + "bust": "81", + "height": "154", + "hip": "80", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "サマーメモリー", + "alias_name_display": "サマーメモリー", + "event": [ + { + "event_id": 1304, + "event_name": "第4回プロダクションマッチフェスティバルS" + } + ], + "hash": "fe4522316252c03ecf070a4ce8006420", + "id": "1426101", + "profile": { + "bust": "81", + "height": "154", + "hip": "80", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "サマーメモリー", + "alias_name_display": "サマーメモリー", + "event": [ + { + "event_id": 1304, + "event_name": "第4回プロダクションマッチフェスティバルS" + } + ], + "hash": "a9e1539ebecc3f6a7bd92247238517cb", + "id": "1526102", + "profile": { + "bust": "81", + "height": "154", + "hip": "80", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "ハートキャプチャー", + "alias_name_display": "ハートキャプチャー", + "hash": "182d6a7355ec611af924f02f27c3b5cf", + "id": "1431301", + "profile": { + "bust": "81", + "height": "154", + "hip": "80", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "ハートキャプチャー", + "alias_name_display": "ハートキャプチャー", + "hash": "198beec37ee1f0cf59423f1f5e674ce4", + "id": "1531302", + "profile": { + "bust": "81", + "height": "154", + "hip": "80", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "42207079abfb5d0aae516e2774f5683c", + "id": "1431701", + "profile": { + "bust": "81", + "height": "154", + "hip": "80", + "waist": "58", + "weight": "43" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "deb87e553eab1a1d04036d340c632d0c", + "id": "1531702", + "profile": { + "bust": "81", + "height": "154", + "hip": "80", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "ハートオブユニティ", + "alias_name_display": "ハートオブユニティ", + "event": [ + { + "event_id": 1905, + "event_name": "ディアリースターナイト ~聖夜のキセキ~" + } + ], + "hash": "ef73d6963acf01c99f2b7e304c1f603c", + "id": "1437101", + "profile": { + "bust": "81", + "height": "154", + "hip": "80", + "waist": "58", + "weight": "43" + } + }, + { + "alias_name": "ハートオブユニティ", + "alias_name_display": "ハートオブユニティ", + "event": [ + { + "event_id": 1905, + "event_name": "ディアリースターナイト ~聖夜のキセキ~" + } + ], + "hash": "0bacaa88e323666ac8790a16a2ac46ee", + "id": "1537102", + "profile": { + "bust": "81", + "height": "154", + "hip": "80", + "waist": "57", + "weight": "43" + } + } + ], + "idol_id": 13, + "idol_name": "五十嵐響子", + "idol_name_display": "五十嵐響子", + "units": [ + { + "id": "40", + "name": "ハートハーモナイズ" + }, + { + "id": "138", + "name": "ピンクチェックスクール" + }, + { + "id": "182", + "name": "マーメイドパラダイス" + }, + { + "id": "191", + "name": "Love Yell" + }, + { + "id": "196", + "name": "la Roseraie" + } + ] + }, + { + "aliases": [ + { + "hash": "64b53f490afd702be31de96b5ae28e36", + "id": "1001401", + "profile": { + "bust": "75", + "height": "144", + "hip": "77", + "waist": "54", + "weight": "33" + } + }, + { + "hash": "1b1970e02f5855b63072777bcbb52293", + "id": "1101402", + "profile": { + "bust": "75", + "height": "144", + "hip": "77", + "waist": "54", + "weight": "33" + } + }, + { + "alias_name": "テーマパーク", + "alias_name_display": "テーマパーク", + "event": [ + { + "event_id": 203, + "event_name": "アイドルサバイバルinテーマパーク" + } + ], + "hash": "9561157dddcfefb3edfcf2965e025edc", + "id": "1203901", + "profile": { + "bust": "75", + "height": "144", + "hip": "77", + "waist": "54", + "weight": "33" + } + }, + { + "alias_name": "テーマパーク", + "alias_name_display": "テーマパーク", + "event": [ + { + "event_id": 203, + "event_name": "アイドルサバイバルinテーマパーク" + } + ], + "hash": "b76617a1099b216004254eeeaee57846", + "id": "1303902", + "profile": { + "bust": "75", + "height": "144", + "hip": "77", + "waist": "54", + "weight": "33" + } + }, + { + "alias_name": "プリティ☆ウィッチ", + "alias_name_display": "プリティ☆ウィッチ", + "hash": "6a7eca54ae5c7fa44e5a6af92f3ae135", + "id": "1208701", + "profile": { + "bust": "75", + "height": "144", + "hip": "77", + "waist": "54", + "weight": "33" + } + }, + { + "alias_name": "プリティ☆ウィッチ", + "alias_name_display": "プリティ☆ウィッチ", + "hash": "727ec3b14e0bede0acfde0c345314419", + "id": "1308702", + "profile": { + "bust": "75", + "height": "144", + "hip": "77", + "waist": "54", + "weight": "33" + } + }, + { + "alias_name": "ひな祭り", + "alias_name_display": "ひな祭り", + "event": [ + { + "event_id": 510, + "event_name": "ひな祭りLIVEツアーカーニバル" + } + ], + "hash": "d85836d7aa213eeaa97637ced5f4c905", + "id": "1214901", + "profile": { + "bust": "75", + "height": "144", + "hip": "77", + "waist": "54", + "weight": "33" + } + }, + { + "alias_name": "ひな祭り", + "alias_name_display": "ひな祭り", + "event": [ + { + "event_id": 510, + "event_name": "ひな祭りLIVEツアーカーニバル" + } + ], + "hash": "3f10e5b72b8ec50b7d0661ed47518e05", + "id": "1314902", + "profile": { + "bust": "75", + "height": "144", + "hip": "77", + "waist": "54", + "weight": "33" + } + }, + { + "alias_name": "カニ☆ピース", + "alias_name_display": "カニ☆ピース", + "event": [ + { + "event_id": 1302, + "event_name": "第2回プロダクションマッチフェスティバルS" + } + ], + "hash": "bc8c093931062396a2f92c167729fe61", + "id": "1218901", + "profile": { + "bust": "75", + "height": "144", + "hip": "77", + "waist": "54", + "weight": "33" + } + }, + { + "alias_name": "カニ☆ピース", + "alias_name_display": "カニ☆ピース", + "event": [ + { + "event_id": 1302, + "event_name": "第2回プロダクションマッチフェスティバルS" + } + ], + "hash": "8cde5ff1e02d37e807792a6423c9537d", + "id": "1318902", + "profile": { + "bust": "75", + "height": "144", + "hip": "77", + "waist": "54", + "weight": "33" + } + }, + { + "alias_name": "マーチングバンド", + "alias_name_display": "マーチングバンド", + "hash": "81dacc4c39b0dc0b7e01c2b8e7e04887", + "id": "1223601", + "profile": { + "bust": "75", + "height": "144", + "hip": "77", + "waist": "54", + "weight": "33" + } + }, + { + "alias_name": "マーチングバンド", + "alias_name_display": "マーチングバンド", + "hash": "a2b97d98b0f9ce2deec5a0e7cd0b8bc6", + "id": "1323602", + "profile": { + "bust": "75", + "height": "144", + "hip": "77", + "waist": "54", + "weight": "33" + } + }, + { + "alias_name": "ビターミルキー", + "alias_name_display": "ビターミルキー", + "hash": "9df9b80b17154f73174f72929415acdd", + "id": "1228501", + "profile": { + "bust": "75", + "height": "144", + "hip": "77", + "waist": "54", + "weight": "33" + } + }, + { + "alias_name": "ビターミルキー", + "alias_name_display": "ビターミルキー", + "hash": "326c2f9e2f203f305f9436112b522034", + "id": "1328502", + "profile": { + "bust": "75", + "height": "144", + "hip": "77", + "waist": "54", + "weight": "33" + } + }, + { + "alias_name": "ロワイヤルスタイルND", + "alias_name_display": "ロワイヤルスタイルND", + "event": [ + { + "event_id": 820, + "event_name": "第20回アイドルLIVEロワイヤル" + } + ], + "hash": "8ec6cfce021cf00090bec4fca426fe41", + "id": "1230801", + "profile": { + "bust": "75", + "height": "144", + "hip": "77", + "waist": "54", + "weight": "33" + } + }, + { + "alias_name": "ロワイヤルスタイルND", + "alias_name_display": "ロワイヤルスタイルND", + "event": [ + { + "event_id": 820, + "event_name": "第20回アイドルLIVEロワイヤル" + } + ], + "hash": "a6c7fd38a0f375a571248af4be5f7302", + "id": "1330802", + "profile": { + "bust": "75", + "height": "144", + "hip": "77", + "waist": "54", + "weight": "33" + } + }, + { + "alias_name": "キラキラリコメンド", + "alias_name_display": "キラキラリコメンド", + "hash": "a56a124013e06a0399fd43f5612bae90", + "id": "1233401", + "profile": { + "bust": "75", + "height": "144", + "hip": "77", + "waist": "54", + "weight": "33" + } + }, + { + "alias_name": "キラキラリコメンド", + "alias_name_display": "キラキラリコメンド", + "hash": "face73d591e33ea649dfb00040334ed8", + "id": "1333402", + "profile": { + "bust": "75", + "height": "144", + "hip": "77", + "waist": "54", + "weight": "33" + } + }, + { + "alias_name": "夏色ガール", + "alias_name_display": "夏色ガール", + "event": [ + { + "event_id": 702, + "event_name": "水着DEドリームLIVEフェスティバル" + } + ], + "hash": "6a9e56a14c98a683a788a243c107c5be", + "id": "1408401", + "profile": { + "bust": "75", + "height": "144", + "hip": "77", + "waist": "54", + "weight": "33" + } + }, + { + "alias_name": "夏色ガール", + "alias_name_display": "夏色ガール", + "event": [ + { + "event_id": 702, + "event_name": "水着DEドリームLIVEフェスティバル" + } + ], + "hash": "58176ddb838cc778720e4e3a388815ef", + "id": "1508402", + "profile": { + "bust": "75", + "height": "144", + "hip": "77", + "waist": "54", + "weight": "33" + } + }, + { + "alias_name": "かわいいコックさん", + "alias_name_display": "かわいいコックさん", + "event": [ + { + "event_id": 519, + "event_name": "美食公演 女神に捧ぐ御馳走" + } + ], + "hash": "ae0a204566199c5837bebf8fdd6173e7", + "id": "1424301", + "profile": { + "bust": "75", + "height": "144", + "hip": "77", + "waist": "54", + "weight": "33" + } + }, + { + "alias_name": "かわいいコックさん", + "alias_name_display": "かわいいコックさん", + "event": [ + { + "event_id": 519, + "event_name": "美食公演 女神に捧ぐ御馳走" + } + ], + "hash": "12c2c842a331db791b909c0003a105ba", + "id": "1524302", + "profile": { + "bust": "75", + "height": "144", + "hip": "77", + "waist": "54", + "weight": "33" + } + } + ], + "idol_id": 14, + "idol_name": "柳瀬美由紀", + "idol_name_display": "柳瀬美由紀", + "units": [ + { + "id": "173", + "name": "ピンクドットバルーン" + }, + { + "id": "178", + "name": "からぱれ" + }, + { + "id": "210", + "name": "ロワイヤルスタイルND" + }, + { + "id": "214", + "name": "L.M.B.G" + } + ] + }, + { + "aliases": [ + { + "event": [ + { + "event_id": 101, + "event_name": "星降るクリスマス" + } + ], + "hash": "1cefdef7df7c14eca803910b67e61dfc", + "id": "1001501", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "event": [ + { + "event_id": 101, + "event_name": "星降るクリスマス" + } + ], + "hash": "fe2f3ecbf682014be99d3f94512a48bd", + "id": "1101502", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "メルヘン&ゴシック", + "alias_name_display": "メルヘン&ゴシック", + "hash": "2b676cf6e1bd042f04a6e8367ac47fdd", + "id": "1208201", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "メルヘン&ゴシック", + "alias_name_display": "メルヘン&ゴシック", + "hash": "21d48ab7d98d5800c7a8db34c89842cd", + "id": "1308202", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "迎春神楽", + "alias_name_display": "迎春神楽", + "hash": "eb1d6cdcf74fa0b5467bb4479fbcb819", + "id": "1231401", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "迎春神楽", + "alias_name_display": "迎春神楽", + "hash": "68e199a73566867818bddc1cea19666e", + "id": "1331402", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "薔薇色お姫様", + "alias_name_display": "薔薇色お姫様", + "event": [ + { + "event_id": "001", + "event_name": "プロダクションマッチフェスティバル" + } + ], + "hash": "9e47b6134fcc68ce03f1e646032535f6", + "id": "1401101", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "薔薇色お姫様", + "alias_name_display": "薔薇色お姫様", + "event": [ + { + "event_id": "001", + "event_name": "プロダクションマッチフェスティバル" + } + ], + "hash": "188588430665ce152a5da1c7bef37766", + "id": "1501102", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "絢爛紅葉", + "alias_name_display": "絢爛紅葉", + "event": [ + { + "event_id": 402, + "event_name": "アイドルプロデュース京町編" + } + ], + "hash": "0f6309b3a564f81155784e21c8c92bfe", + "id": "1403101", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "絢爛紅葉", + "alias_name_display": "絢爛紅葉", + "event": [ + { + "event_id": 402, + "event_name": "アイドルプロデュース京町編" + } + ], + "hash": "eebd6e6b152f50a6c3bc18fabb54a0a0", + "id": "1503102", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "薔薇色花嫁", + "alias_name_display": "薔薇色花嫁", + "hash": "fe8cd968bd4ee6c8beaa758e650eee5d", + "id": "1407101", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "薔薇色花嫁", + "alias_name_display": "薔薇色花嫁", + "hash": "d31209b053eb49962fdea278ece7e26b", + "id": "1507102", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "ロゼ・マドモアゼル", + "alias_name_display": "ロゼ・マドモアゼル", + "hash": "b7284bd572e970f7140cef7484d47e4e", + "id": "1414801", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "ロゼ・マドモアゼル", + "alias_name_display": "ロゼ・マドモアゼル", + "hash": "fd5714748c23dee73f43176c8bd71f29", + "id": "1514802", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "バレンタインスウィート", + "alias_name_display": "バレンタインスウィート", + "hash": "1db672f026cfc1e8a82037549477dccf", + "id": "1421901", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "バレンタインスウィート", + "alias_name_display": "バレンタインスウィート", + "hash": "81fc62c6d3dc7b6dd9ae05f2c9df4d31", + "id": "1521902", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "オープンハート", + "alias_name_display": "オープンハート", + "event": [ + { + "event_id": 715, + "event_name": "第15回ドリームLIVEフェスティバル" + } + ], + "hash": "287d93a6b5dcebe0774cc8dead51c237", + "id": "1427101", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "オープンハート", + "alias_name_display": "オープンハート", + "event": [ + { + "event_id": 715, + "event_name": "第15回ドリームLIVEフェスティバル" + } + ], + "hash": "45e1c5533ba0e0a103511f58ee17f850", + "id": "1527102", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "77155375be053699373b3e7271072d5b", + "id": "1429201", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "ffc736f0dd52509c5bc4724e6829d693", + "id": "1529202", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "4thアニバーサリー", + "alias_name_display": "4thアニバーサリー", + "event": [ + { + "event_id": 1704, + "event_name": "アイドルプロデュース the 4th Anniversary" + } + ], + "hash": "7ec7a2ad5161e9618958f951fd4752e4", + "id": "1429601", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "4thアニバーサリー", + "alias_name_display": "4thアニバーサリー", + "event": [ + { + "event_id": 1704, + "event_name": "アイドルプロデュース the 4th Anniversary" + } + ], + "hash": "940e4561030b7cb18e6f6f1d612618b7", + "id": "1529602", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "4thアニバーサリー・S", + "alias_name_display": "4thアニバーサリー・S", + "event": [ + { + "event_id": 1704, + "event_name": "アイドルプロデュース the 4th Anniversary" + } + ], + "hash": "555df2682110f80cc57e2a745e812661", + "id": "1429701", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "4thアニバーサリー・S", + "alias_name_display": "4thアニバーサリー・S", + "event": [ + { + "event_id": 1704, + "event_name": "アイドルプロデュース the 4th Anniversary" + } + ], + "hash": "ee70a56e781ee96f461da009805f49a8", + "id": "1529702", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "サマーマドモアゼル", + "alias_name_display": "サマーマドモアゼル", + "hash": "f78ca58df1e12f7fdbed9f567a9dfdc0", + "id": "1433801", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "サマーマドモアゼル", + "alias_name_display": "サマーマドモアゼル", + "hash": "d32d219a3c0ad6dc84734d1fc3f9f94e", + "id": "1533802", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + } + ], + "idol_id": 15, + "idol_name": "櫻井桃華", + "idol_name_display": "櫻井桃華", + "units": [ + { + "id": "4", + "name": "イカバラプリンセス" + }, + { + "id": "61", + "name": "ももべりー" + }, + { + "id": "104", + "name": "ももぺあべりー" + }, + { + "id": "105", + "name": "リトルチェリーブロッサム" + }, + { + "id": "165", + "name": "メルヘンゴシック" + }, + { + "id": "171", + "name": "Black/White-Roses" + }, + { + "id": "196", + "name": "la Roseraie" + }, + { + "id": "214", + "name": "L.M.B.G" + } + ] + }, + { + "aliases": [ + { + "event": [ + { + "event_id": 102, + "event_name": "アイドルおもちつき大会" + } + ], + "hash": "1b52629f3463de549e9e776fb9be9c73", + "id": "1001601", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "46" + } + }, + { + "event": [ + { + "event_id": 102, + "event_name": "アイドルおもちつき大会" + } + ], + "hash": "209c74c920b04b6aa1c88f2ae810c0ab", + "id": "1101602", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "新春コレクション", + "alias_name_display": "新春コレクション", + "hash": "ae6475b68a873a19cbf2008ac66d2c12", + "id": "1207101", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "新春コレクション", + "alias_name_display": "新春コレクション", + "hash": "f172e8d5a8a50a8cecf29d9e939b015d", + "id": "1307102", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ハッピーメモリアル", + "alias_name_display": "ハッピーメモリアル", + "hash": "40aa9ec43d952fd28e1cce41237b5622", + "id": "1211501", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ハッピーメモリアル", + "alias_name_display": "ハッピーメモリアル", + "hash": "664c40149a8f2c88ea211c5e7ccc5857", + "id": "1311502", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "秋色温泉", + "alias_name_display": "秋色温泉", + "hash": "5a01b67ab301b1c982c5fc6c2bb3bb01", + "id": "1219101", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "秋色温泉", + "alias_name_display": "秋色温泉", + "hash": "b0bf971f90f59c9cfc79b6a166fe6aed", + "id": "1319102", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "シャイニーカーマイン", + "alias_name_display": "シャイニーカーマイン", + "event": [ + { + "event_id": 716, + "event_name": "第16回ドリームLIVEフェスティバル" + } + ], + "hash": "5d97a337e5c70a470e14a590a104ebed", + "id": "1323802", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "リレイトストーリー", + "alias_name_display": "リレイトストーリー", + "event": [ + { + "event_id": "033", + "event_name": "第33回プロダクションマッチフェスティバル" + } + ], + "hash": "0627d85acc8c4c074c16f85e2e638446", + "id": "1231701", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "リレイトストーリー", + "alias_name_display": "リレイトストーリー", + "event": [ + { + "event_id": "033", + "event_name": "第33回プロダクションマッチフェスティバル" + } + ], + "hash": "3875503a08289671c8354eed6119eff3", + "id": "1331702", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ゆかしい花椿", + "alias_name_display": "ゆかしい花椿", + "hash": "b8f040ade84d43170ba0ef6b2cde9e5a", + "id": "1412601", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ゆかしい花椿", + "alias_name_display": "ゆかしい花椿", + "hash": "92b7a6ffc4084d14ed6af4dc45b41c92", + "id": "1512602", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "カメリア・ロワイヤル", + "alias_name_display": "カメリア・ロワイヤル", + "event": [ + { + "event_id": 812, + "event_name": "第12回アイドルLIVEロワイヤル" + } + ], + "hash": "f42b82c8b55c8379eea9ebd9f6aea00d", + "id": "1424601", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "カメリア・ロワイヤル", + "alias_name_display": "カメリア・ロワイヤル", + "event": [ + { + "event_id": 812, + "event_name": "第12回アイドルLIVEロワイヤル" + } + ], + "hash": "457370553d93e1da4d39ad3c2b742c27", + "id": "1524602", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "夏のゆらぎ", + "alias_name_display": "夏のゆらぎ", + "event": [ + { + "event_id": 722, + "event_name": "夏祭りDEドリームLIVEフェスティバル" + } + ], + "hash": "f4d7801c6c3496ae294ad932267b26e6", + "id": "1433701", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "夏のゆらぎ", + "alias_name_display": "夏のゆらぎ", + "event": [ + { + "event_id": 722, + "event_name": "夏祭りDEドリームLIVEフェスティバル" + } + ], + "hash": "beba5121254d967e0be4895fbe2fac3c", + "id": "1533702", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "46" + } + } + ], + "idol_id": 16, + "idol_name": "江上椿", + "idol_name_display": "江上椿", + "units": [ + { + "id": "8", + "name": "越後小町" + }, + { + "id": "154", + "name": "秋色温泉" + }, + { + "id": "167", + "name": "ロマンティックツアーズ" + } + ] + }, + { + "aliases": [ + { + "hash": "4d2e995945e069c1c219d6c6b45edfce", + "id": "1001701", + "profile": { + "bust": "83", + "height": "161", + "hip": "85", + "waist": "56", + "weight": "45" + } + }, + { + "hash": "2443422535f988e8e6a19e358b7232df", + "id": "1101702", + "profile": { + "bust": "83", + "height": "161", + "hip": "85", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "湯けむり温泉", + "alias_name_display": "湯けむり温泉", + "hash": "5f9fdc0febde1ca6beb90cfdbb90f565", + "id": "1206201", + "profile": { + "bust": "83", + "height": "161", + "hip": "85", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "湯けむり温泉", + "alias_name_display": "湯けむり温泉", + "hash": "8253386575ab1a9138e7d522620e42a4", + "id": "1306202", + "profile": { + "bust": "83", + "height": "161", + "hip": "85", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "シャイニービーチ", + "alias_name_display": "シャイニービーチ", + "hash": "6ab4b420570dd2342cb8807d5adcf179", + "id": "1210601", + "profile": { + "bust": "83", + "height": "161", + "hip": "85", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "シャイニービーチ", + "alias_name_display": "シャイニービーチ", + "hash": "7cf254cf32563bd2bba7b9b621085ca7", + "id": "1310602", + "profile": { + "bust": "83", + "height": "161", + "hip": "85", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ロワイヤルスタイルNP", + "alias_name_display": "ロワイヤルスタイルNP", + "event": [ + { + "event_id": 807, + "event_name": "第7回アイドルLIVEロワイヤル" + } + ], + "hash": "81fcd084769a29d996613f500af1f511", + "id": "1218801", + "profile": { + "bust": "83", + "height": "161", + "hip": "85", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ロワイヤルスタイルNP", + "alias_name_display": "ロワイヤルスタイルNP", + "event": [ + { + "event_id": 807, + "event_name": "第7回アイドルLIVEロワイヤル" + } + ], + "hash": "955aa295eb3a76e87605c67cc2042b9e", + "id": "1318802", + "profile": { + "bust": "83", + "height": "161", + "hip": "85", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ウォーミングフラワー", + "alias_name_display": "ウォーミングフラワー", + "event": [ + { + "event_id": "026", + "event_name": "第26回プロダクションマッチフェスティバル" + } + ], + "hash": "6455518732d768b065bbd827ec98b400", + "id": "1226301", + "profile": { + "bust": "83", + "height": "161", + "hip": "85", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ウォーミングフラワー", + "alias_name_display": "ウォーミングフラワー", + "event": [ + { + "event_id": "026", + "event_name": "第26回プロダクションマッチフェスティバル" + } + ], + "hash": "2c885ccae440c5c059ee8098121b620c", + "id": "1326302", + "profile": { + "bust": "83", + "height": "161", + "hip": "85", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "フェリーチェ・チョコラータ", + "alias_name_display": "フェリーチェ・チョコラータ", + "hash": "9820c330da30a1f41d14f220a384af70", + "id": "1231901", + "profile": { + "bust": "83", + "height": "161", + "hip": "85", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "フェリーチェ・チョコラータ", + "alias_name_display": "フェリーチェ・チョコラータ", + "hash": "49f0f052f1dae481fa53872899b098ed", + "id": "1331902", + "profile": { + "bust": "83", + "height": "161", + "hip": "85", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "フィーチャースイートピー", + "alias_name_display": "フィーチャースイートピー", + "event": [ + { + "event_id": 803, + "event_name": "第3回アイドルLIVEロワイヤル" + } + ], + "hash": "23e7989e812ce2c789242acd8b1d8472", + "id": "1411901", + "profile": { + "bust": "83", + "height": "161", + "hip": "85", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "フィーチャースイートピー", + "alias_name_display": "フィーチャースイートピー", + "event": [ + { + "event_id": 803, + "event_name": "第3回アイドルLIVEロワイヤル" + } + ], + "hash": "129dff6ad85473683b876ba9171588bc", + "id": "1511902", + "profile": { + "bust": "83", + "height": "161", + "hip": "85", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "素肌のチアー", + "alias_name_display": "素肌のチアー", + "event": [ + { + "event_id": 1503, + "event_name": "チーム対抗 夏だ!プールだ!トークバトルショー" + } + ], + "hash": "56070f7414e85b8412e83ccc0c78184a", + "id": "1426701", + "profile": { + "bust": "83", + "height": "161", + "hip": "85", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "素肌のチアー", + "alias_name_display": "素肌のチアー", + "event": [ + { + "event_id": 1503, + "event_name": "チーム対抗 夏だ!プールだ!トークバトルショー" + } + ], + "hash": "906f4fcae92953c83c522c36d5ff5fe9", + "id": "1526702", + "profile": { + "bust": "83", + "height": "161", + "hip": "85", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "コール・ミー・メイビー", + "alias_name_display": "コール・ミー・メイビー", + "hash": "416e3e705b08bbf389a6f2f18f5c69d4", + "id": "1433201", + "profile": { + "bust": "83", + "height": "161", + "hip": "85", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "コール・ミー・メイビー", + "alias_name_display": "コール・ミー・メイビー", + "hash": "cd8477548a634299e065cc223b70eb74", + "id": "1533202", + "profile": { + "bust": "83", + "height": "161", + "hip": "85", + "waist": "56", + "weight": "45" + } + } + ], + "idol_id": 17, + "idol_name": "長富蓮実", + "idol_name_display": "長富蓮実", + "units": [ + { + "id": "178", + "name": "からぱれ" + }, + { + "id": "209", + "name": "ロワイヤルスタイルNP" + } + ] + }, + { + "aliases": [ + { + "hash": "33e0fe9d3980f8fcc0146acf93b1527c", + "id": "1001901", + "profile": { + "bust": "60", + "height": "127", + "hip": "65", + "waist": "55", + "weight": "31" + } + }, + { + "hash": "a837b5db80a3b8a16ca290a20d18251d", + "id": "1101902", + "profile": { + "bust": "60", + "height": "127", + "hip": "65", + "waist": "55", + "weight": "31" + } + }, + { + "alias_name": "マーメイドパラダイス", + "alias_name_display": "マーメイドパラダイス", + "hash": "0f9eefd5d70b48f20f8816530e6d7d73", + "id": "1205101", + "profile": { + "bust": "60", + "height": "127", + "hip": "65", + "waist": "55", + "weight": "31" + } + }, + { + "alias_name": "マーメイドパラダイス", + "alias_name_display": "マーメイドパラダイス", + "hash": "d5afe53e9eb4629197f42e744720cfa8", + "id": "1305102", + "profile": { + "bust": "60", + "height": "127", + "hip": "65", + "waist": "55", + "weight": "31" + } + }, + { + "alias_name": "ラブリー魔女っ娘", + "alias_name_display": "ラブリー魔女っ娘", + "hash": "0a55494fafe73df2035f17c70ed79af8", + "id": "1206101", + "profile": { + "bust": "60", + "height": "127", + "hip": "65", + "waist": "55", + "weight": "31" + } + }, + { + "alias_name": "ラブリー魔女っ娘", + "alias_name_display": "ラブリー魔女っ娘", + "hash": "19e6e1f54b5b9fccc005269962b858d0", + "id": "1306102", + "profile": { + "bust": "60", + "height": "127", + "hip": "65", + "waist": "55", + "weight": "31" + } + }, + { + "alias_name": "マーチングバンド", + "alias_name_display": "マーチングバンド", + "hash": "66e4c9f29760c0b9c779dae9cec7555b", + "id": "1211901", + "profile": { + "bust": "60", + "height": "127", + "hip": "65", + "waist": "55", + "weight": "31" + } + }, + { + "alias_name": "マーチングバンド", + "alias_name_display": "マーチングバンド", + "hash": "a7e07a4479fdecf1f54fef8a23bf6bca", + "id": "1311902", + "profile": { + "bust": "60", + "height": "127", + "hip": "65", + "waist": "55", + "weight": "31" + } + }, + { + "alias_name": "T.B.チアーズ", + "alias_name_display": "T.B.チアーズ", + "event": [ + { + "event_id": 1505, + "event_name": "チーム対抗トークバトルショー ウィンターSP" + } + ], + "hash": "7df797b6cd664971b45bd3087277b078", + "id": "1225801", + "profile": { + "bust": "60", + "height": "127", + "hip": "65", + "waist": "55", + "weight": "31" + } + }, + { + "alias_name": "T.B.チアーズ", + "alias_name_display": "T.B.チアーズ", + "event": [ + { + "event_id": 1505, + "event_name": "チーム対抗トークバトルショー ウィンターSP" + } + ], + "hash": "784b0d08e971844537fafc49e94341f8", + "id": "1325802", + "profile": { + "bust": "60", + "height": "127", + "hip": "65", + "waist": "55", + "weight": "31" + } + }, + { + "alias_name": "ホーリーコーラス", + "alias_name_display": "ホーリーコーラス", + "hash": "78c1db8e016621883e2b0dc239e8ebc0", + "id": "1231001", + "profile": { + "bust": "60", + "height": "127", + "hip": "65", + "waist": "55", + "weight": "31" + } + }, + { + "alias_name": "ホーリーコーラス", + "alias_name_display": "ホーリーコーラス", + "hash": "911de1e40e95c58e35d00eff5fb783f0", + "id": "1331002", + "profile": { + "bust": "60", + "height": "127", + "hip": "65", + "waist": "55", + "weight": "31" + } + }, + { + "alias_name": "小さなおひな様", + "alias_name_display": "小さなおひな様", + "event": [ + { + "event_id": 209, + "event_name": "アイドルサバイバルひな祭り2013" + } + ], + "hash": "d3ae6c8c118597de7131a46a7a98e3b8", + "id": "1405701", + "profile": { + "bust": "60", + "height": "127", + "hip": "65", + "waist": "55", + "weight": "31" + } + }, + { + "alias_name": "小さなおひな様", + "alias_name_display": "小さなおひな様", + "event": [ + { + "event_id": 209, + "event_name": "アイドルサバイバルひな祭り2013" + } + ], + "hash": "e194a3fabb57c40d442a1922eb36d09a", + "id": "1505702", + "profile": { + "bust": "60", + "height": "127", + "hip": "65", + "waist": "55", + "weight": "31" + } + }, + { + "alias_name": "マジカル☆プリティーハート", + "alias_name_display": "マジカル☆プリティーハート", + "event": [ + { + "event_id": 1201, + "event_name": "目指せ魔女っ娘 アイドルチャレンジ" + } + ], + "hash": "8932419ffa9d909cd881aa9093b1e487", + "id": "1414501", + "profile": { + "bust": "60", + "height": "127", + "hip": "65", + "waist": "55", + "weight": "31" + } + }, + { + "alias_name": "マジカル☆プリティーハート", + "alias_name_display": "マジカル☆プリティーハート", + "event": [ + { + "event_id": 1201, + "event_name": "目指せ魔女っ娘 アイドルチャレンジ" + } + ], + "hash": "1a5c40592d5a168e785ff6ddb49ba6c3", + "id": "1514502", + "profile": { + "bust": "60", + "height": "127", + "hip": "65", + "waist": "55", + "weight": "31" + } + }, + { + "alias_name": "朱きツワモノ", + "alias_name_display": "朱きツワモノ", + "event": [ + { + "event_id": 517, + "event_name": "戦国公演 風来剣客伝" + } + ], + "hash": "c7e31c5643afd8ae07eca3b1ab6373a7", + "id": "1422401", + "profile": { + "bust": "60", + "height": "127", + "hip": "65", + "waist": "55", + "weight": "31" + } + }, + { + "alias_name": "朱きツワモノ", + "alias_name_display": "朱きツワモノ", + "event": [ + { + "event_id": 517, + "event_name": "戦国公演 風来剣客伝" + } + ], + "hash": "6d85b413db065fb9ecbcd80f348d53e6", + "id": "1522402", + "profile": { + "bust": "60", + "height": "127", + "hip": "65", + "waist": "55", + "weight": "31" + } + }, + { + "alias_name": "雨のまほう", + "alias_name_display": "雨のまほう", + "event": [ + { + "event_id": 818, + "event_name": "アイドルLIVEロワイヤル 雨の日SP" + } + ], + "hash": "f7024ca8bc11f488de049b9316cdae6b", + "id": "1433501", + "profile": { + "bust": "60", + "height": "127", + "hip": "65", + "waist": "55", + "weight": "31" + } + }, + { + "alias_name": "雨のまほう", + "alias_name_display": "雨のまほう", + "event": [ + { + "event_id": 818, + "event_name": "アイドルLIVEロワイヤル 雨の日SP" + } + ], + "hash": "d02199911575371c301fa3f8d1f937fe", + "id": "1533502", + "profile": { + "bust": "60", + "height": "127", + "hip": "65", + "waist": "55", + "weight": "31" + } + } + ], + "idol_id": 18, + "idol_name": "横山千佳", + "idol_name_display": "横山千佳", + "units": [ + { + "id": "64", + "name": "リトルヒーロー" + }, + { + "id": "164", + "name": "マジカルテット" + }, + { + "id": "182", + "name": "マーメイドパラダイス" + }, + { + "id": "214", + "name": "L.M.B.G" + } + ] + }, + { + "aliases": [ + { + "hash": "a62ddac0bbdf7507192e5ed73698a4be", + "id": "1002001", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "hash": "c2f5b454d115252ca5b31db8454abd31", + "id": "1102002", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ハロウィンヴァンパイア", + "alias_name_display": "ハロウィンヴァンパイア", + "event": [ + { + "event_id": 207, + "event_name": "アイドルサバイバル ハロウィン編" + } + ], + "hash": "dc62bf6ee089d872b8e4701d8b0f536e", + "id": "1206001", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ハロウィンヴァンパイア", + "alias_name_display": "ハロウィンヴァンパイア", + "event": [ + { + "event_id": 207, + "event_name": "アイドルサバイバル ハロウィン編" + } + ], + "hash": "d4ebad4f68b4f6c1d3e14aedd0e1fb70", + "id": "1306002", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ファンシースパイリーア", + "alias_name_display": "ファンシースパイリーア", + "hash": "b98d47d489c846fcbb6b94a8632231ee", + "id": "1214201", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ファンシースパイリーア", + "alias_name_display": "ファンシースパイリーア", + "hash": "c2796e3d650b904810108ee398953baf", + "id": "1314202", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "夏休み", + "alias_name_display": "夏休み", + "event": [ + { + "event_id": 413, + "event_name": "みんなのなつやすみ" + } + ], + "hash": "fe7a70caed6fe7087a172ca4d1545f7c", + "id": "1217201", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "夏休み", + "alias_name_display": "夏休み", + "event": [ + { + "event_id": 413, + "event_name": "みんなのなつやすみ" + } + ], + "hash": "d85152d27e941ab28409e1ce28515aa0", + "id": "1317202", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "笑顔の夏休み", + "alias_name_display": "笑顔の夏休み", + "event": [ + { + "event_id": 413, + "event_name": "みんなのなつやすみ" + } + ], + "hash": "8555c01eca24269514623464e978ebd7", + "id": "1217301", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "笑顔の夏休み", + "alias_name_display": "笑顔の夏休み", + "event": [ + { + "event_id": 413, + "event_name": "みんなのなつやすみ" + } + ], + "hash": "cd6dbe35df150439d6641aefa0eae7a9", + "id": "1317302", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ラブリーメイド", + "alias_name_display": "ラブリーメイド", + "hash": "37214f0d7ec9a461beda96125f9071cf", + "id": "1223401", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ラブリーメイド", + "alias_name_display": "ラブリーメイド", + "hash": "5ca334dd65bac13411c63caa54f0227f", + "id": "1323402", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "スパニッシュダンサー", + "alias_name_display": "スパニッシュダンサー", + "event": [ + { + "event_id": 504, + "event_name": "アイドルLIVEツアーinスペイン" + } + ], + "hash": "eaaecb4e719c48f55b564a275f4eb705", + "id": "1406301", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "スパニッシュダンサー", + "alias_name_display": "スパニッシュダンサー", + "event": [ + { + "event_id": 504, + "event_name": "アイドルLIVEツアーinスペイン" + } + ], + "hash": "49ece644aa45d424edba7b9c1fdef6c5", + "id": "1506302", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "フォーチュンバニー", + "alias_name_display": "フォーチュンバニー", + "hash": "8254b5bd71ea17452086dba763e4844f", + "id": "1408801", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "フォーチュンバニー", + "alias_name_display": "フォーチュンバニー", + "hash": "e30940ae9dcda36d0d5b06baec45646d", + "id": "1508802", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "イノセントブライド", + "alias_name_display": "イノセントブライド", + "hash": "312b2c5020efdf60d43ba04e2830e58c", + "id": "1419001", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "イノセントブライド", + "alias_name_display": "イノセントブライド", + "hash": "ae708b4006b536e7c436f68dc046479b", + "id": "1519002", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ハピネスプリズム", + "alias_name_display": "ハピネスプリズム", + "event": [ + { + "event_id": "021", + "event_name": "第21回プロダクションマッチフェスティバル" + } + ], + "hash": "3656160c6a0de5035d0ce51801b17929", + "id": "1423601", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ハピネスプリズム", + "alias_name_display": "ハピネスプリズム", + "event": [ + { + "event_id": "021", + "event_name": "第21回プロダクションマッチフェスティバル" + } + ], + "hash": "5301aa1b9c5b7f0acdad5d280323b120", + "id": "1523602", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "手のひらの宝物", + "alias_name_display": "手のひらの宝物", + "hash": "839f27df591c223de347c63503e44191", + "id": "1430601", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "手のひらの宝物", + "alias_name_display": "手のひらの宝物", + "hash": "18e29d6f25535be40fa370323e9e899e", + "id": "1530602", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "笑顔のガーディアン", + "alias_name_display": "笑顔のガーディアン", + "hash": "66b1b474a97ac4e1b17d8522254223ce", + "id": "1435201", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "笑顔のガーディアン", + "alias_name_display": "笑顔のガーディアン", + "hash": "c34d484a61ea8f7be3cfc5ede01b11e3", + "id": "1535202", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ショコラドゥエタメール", + "alias_name_display": "ショコラドゥエタメール", + "event": [ + { + "event_id": 1906, + "event_name": "ディアリースターハート ~ラブキュンバレンタイン~" + } + ], + "hash": "7a16a01f4a544cba2168a69382f3de40", + "id": "1438301", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ショコラドゥエタメール", + "alias_name_display": "ショコラドゥエタメール", + "event": [ + { + "event_id": 1906, + "event_name": "ディアリースターハート ~ラブキュンバレンタイン~" + } + ], + "hash": "6f26798de79180c3bc5aad8a14b31b34", + "id": "1538302", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + } + ], + "idol_id": 19, + "idol_name": "関裕美", + "idol_name_display": "関裕美", + "units": [ + { + "id": "101", + "name": "ハロウィンヴァンパイア" + }, + { + "id": "129", + "name": "ワンステップス" + }, + { + "id": "130", + "name": "GIRLS BE" + }, + { + "id": "172", + "name": "GIRLS BE NEXT STEP" + } + ] + }, + { + "aliases": [ + { + "hash": "54ae8e0c640c6a7b14cb72b9395ea0fd", + "id": "1002301", + "profile": { + "bust": "89", + "height": "159", + "hip": "87", + "waist": "57", + "weight": "45" + } + }, + { + "hash": "753e3e1d55fec03ac0355d390ecab888", + "id": "1102302", + "profile": { + "bust": "89", + "height": "159", + "hip": "87", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "スプリングスイートピー", + "alias_name_display": "スプリングスイートピー", + "event": [ + { + "event_id": 209, + "event_name": "アイドルサバイバルひな祭り2013" + } + ], + "hash": "f4d6767aeb7dd02ac99f8e6f35f3fb17", + "id": "1208401", + "profile": { + "bust": "89", + "height": "159", + "hip": "87", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "スプリングスイートピー", + "alias_name_display": "スプリングスイートピー", + "event": [ + { + "event_id": 209, + "event_name": "アイドルサバイバルひな祭り2013" + } + ], + "hash": "c68e3249a192693c4f6b0f09eee97624", + "id": "1308402", + "profile": { + "bust": "89", + "height": "159", + "hip": "87", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "バニーガール", + "alias_name_display": "バニーガール", + "hash": "5b400c51e77b1d23d6aa5b163c72356a", + "id": "1211701", + "profile": { + "bust": "89", + "height": "159", + "hip": "87", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "バニーガール", + "alias_name_display": "バニーガール", + "hash": "4c47dddab9272c5836546473bce0bc56", + "id": "1311702", + "profile": { + "bust": "89", + "height": "159", + "hip": "87", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "バレンタインデビル", + "alias_name_display": "バレンタインデビル", + "hash": "aac128fdb81a96c932708fd67bde9f9e", + "id": "1220301", + "profile": { + "bust": "89", + "height": "159", + "hip": "87", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "バレンタインデビル", + "alias_name_display": "バレンタインデビル", + "hash": "4e34fc26b435f80d3bbba9f8bd0d7045", + "id": "1320302", + "profile": { + "bust": "89", + "height": "159", + "hip": "87", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "アップトゥデイト", + "alias_name_display": "アップトゥデイト", + "hash": "3301ddcd3460f7d6e8525580ec595ec5", + "id": "1224801", + "profile": { + "bust": "89", + "height": "159", + "hip": "87", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "アップトゥデイト", + "alias_name_display": "アップトゥデイト", + "hash": "f9a1ac1703ec5ddf5a2a55a5c94191c3", + "id": "1324802", + "profile": { + "bust": "89", + "height": "159", + "hip": "87", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "レディダウト", + "alias_name_display": "レディダウト", + "event": [ + { + "event_id": 1902, + "event_name": "御伽公演 おてんば姫とまぢヤバな魔法のランプ" + } + ], + "hash": "7e62b71f86c28b8b0d275eb1e3d2c6ac", + "id": "1328802", + "profile": { + "bust": "89", + "height": "159", + "hip": "87", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "プリティーニューイヤー", + "alias_name_display": "プリティーニューイヤー", + "event": [ + { + "event_id": 509, + "event_name": "新春LIVEツアーカーニバル" + } + ], + "hash": "da6a8f7bf3ca40bab81dd29416beeb29", + "id": "1411501", + "profile": { + "bust": "89", + "height": "159", + "hip": "87", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "プリティーニューイヤー", + "alias_name_display": "プリティーニューイヤー", + "event": [ + { + "event_id": 509, + "event_name": "新春LIVEツアーカーニバル" + } + ], + "hash": "4d9a24cc8b10be07a95dfaf48f9f3320", + "id": "1511502", + "profile": { + "bust": "89", + "height": "159", + "hip": "87", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "わんダフルチアー", + "alias_name_display": "わんダフルチアー", + "event": [ + { + "event_id": 1102, + "event_name": "第2回プロダクション対抗トークバトルショー" + } + ], + "hash": "bb0cd321a47256a75dbb32b021e9f0a4", + "id": "1414401", + "profile": { + "bust": "89", + "height": "159", + "hip": "87", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "わんダフルチアー", + "alias_name_display": "わんダフルチアー", + "event": [ + { + "event_id": 1102, + "event_name": "第2回プロダクション対抗トークバトルショー" + } + ], + "hash": "6f373139364ab88fb2546aa671e71ac2", + "id": "1514402", + "profile": { + "bust": "89", + "height": "159", + "hip": "87", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ラブリーマイベイビー", + "alias_name_display": "ラブリーマイベイビー", + "hash": "7bb355ad1b34e66736bcf328c92dfa6b", + "id": "1437301", + "profile": { + "bust": "89", + "height": "159", + "hip": "87", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ラブリーマイベイビー", + "alias_name_display": "ラブリーマイベイビー", + "hash": "2763a2afd43cf1d265c968e8a9711692", + "id": "1537302", + "profile": { + "bust": "89", + "height": "159", + "hip": "87", + "waist": "57", + "weight": "45" + } + } + ], + "idol_id": 20, + "idol_name": "太田優", + "idol_name_display": "太田優", + "units": [ + { + "id": "110", + "name": "アップトゥデイト" + } + ] + }, + { + "aliases": [ + { + "hash": "668df5f627110fb638fed98ab6f0efdb", + "id": "1002401", + "profile": { + "bust": "73", + "height": "151", + "hip": "75", + "waist": "56", + "weight": "41" + } + }, + { + "hash": "dffba4af62e6c806706ae927d6aa3a63", + "id": "1102402", + "profile": { + "bust": "73", + "height": "151", + "hip": "75", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "デビリッシュゴシック", + "alias_name_display": "デビリッシュゴシック", + "hash": "73728f37f018acb8ac26efd204e3ebd1", + "id": "1209301", + "profile": { + "bust": "73", + "height": "151", + "hip": "75", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "デビリッシュゴシック", + "alias_name_display": "デビリッシュゴシック", + "hash": "e3a357bb24fc6171859cc7d79ff8ebb1", + "id": "1309302", + "profile": { + "bust": "73", + "height": "151", + "hip": "75", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "ハワイアンスタイル", + "alias_name_display": "ハワイアンスタイル", + "event": [ + { + "event_id": 506, + "event_name": "アイドルLIVEツアーinハワイ" + } + ], + "hash": "6705b0f6fa31815de3a3a9a24186c172", + "id": "1210901", + "profile": { + "bust": "73", + "height": "151", + "hip": "75", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "ハワイアンスタイル", + "alias_name_display": "ハワイアンスタイル", + "event": [ + { + "event_id": 506, + "event_name": "アイドルLIVEツアーinハワイ" + } + ], + "hash": "21ae6f0acb669b55fe9470adf2d7781d", + "id": "1310902", + "profile": { + "bust": "73", + "height": "151", + "hip": "75", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "ワーキング・おさわり", + "alias_name_display": "ワーキング・おさわり", + "hash": "c5859dbe3018a61d6edafe6d4adff04d", + "id": "1215901", + "profile": { + "bust": "73", + "height": "151", + "hip": "75", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "ワーキング・おさわり", + "alias_name_display": "ワーキング・おさわり", + "hash": "428e1ebab8c7e5ebec444ddd9c702208", + "id": "1315902", + "profile": { + "bust": "73", + "height": "151", + "hip": "75", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "イケナイオオカミ", + "alias_name_display": "イケナイオオカミ", + "event": [ + { + "event_id": 518, + "event_name": "御伽公演 ふれあい狼と小さな赤ずきんちゃん" + } + ], + "hash": "6e82ddd934172c1ddfd40da18b541538", + "id": "1221201", + "profile": { + "bust": "73", + "height": "151", + "hip": "75", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "イケナイオオカミ", + "alias_name_display": "イケナイオオカミ", + "event": [ + { + "event_id": 518, + "event_name": "御伽公演 ふれあい狼と小さな赤ずきんちゃん" + } + ], + "hash": "24c92596b0ec15c3144510f5a0e1a931", + "id": "1321202", + "profile": { + "bust": "73", + "height": "151", + "hip": "75", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "あなたのエンジェル", + "alias_name_display": "あなたのエンジェル", + "hash": "ac6cb9ba823f5c86e410d6b1982c5a91", + "id": "1223101", + "profile": { + "bust": "73", + "height": "151", + "hip": "75", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "あなたのエンジェル", + "alias_name_display": "あなたのエンジェル", + "hash": "0657fcbc084dbe53351150271defb5a4", + "id": "1323102", + "profile": { + "bust": "73", + "height": "151", + "hip": "75", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "サンタI.C", + "alias_name_display": "サンタI.C", + "event": [ + { + "event_id": 1208, + "event_name": "目指せサンタクロース アイドルチャレンジ" + } + ], + "hash": "4278a96f12fa7a381b660192cd958f3f", + "id": "1325102", + "profile": { + "bust": "73", + "height": "151", + "hip": "75", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "わきわきハンター", + "alias_name_display": "わきわきハンター", + "event": [ + { + "event_id": 704, + "event_name": "第4回ドリームLIVEフェスティバル" + } + ], + "hash": "d3ee0211663368dab63f46d1a466ff68", + "id": "1410401", + "profile": { + "bust": "73", + "height": "151", + "hip": "75", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "わきわきハンター", + "alias_name_display": "わきわきハンター", + "event": [ + { + "event_id": 704, + "event_name": "第4回ドリームLIVEフェスティバル" + } + ], + "hash": "74f8f1da4f14be396b8e97914b4394d5", + "id": "1510402", + "profile": { + "bust": "73", + "height": "151", + "hip": "75", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "愛の手", + "alias_name_display": "愛の手", + "event": [ + { + "event_id": "019", + "event_name": "第19回プロダクションマッチフェスティバル" + } + ], + "hash": "45a7902898278b46aeb15740845d9471", + "id": "1419801", + "profile": { + "bust": "73", + "height": "151", + "hip": "75", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "愛の手", + "alias_name_display": "愛の手", + "event": [ + { + "event_id": "019", + "event_name": "第19回プロダクションマッチフェスティバル" + } + ], + "hash": "69fe9277fb8bad6c807c0fcb58ec7f4c", + "id": "1519802", + "profile": { + "bust": "73", + "height": "151", + "hip": "75", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "わきわきクリスマス", + "alias_name_display": "わきわきクリスマス", + "event": [ + { + "event_id": 1208, + "event_name": "目指せサンタクロース アイドルチャレンジ" + } + ], + "hash": "23924fe986972d26ed597b7116b81d70", + "id": "1429901", + "profile": { + "bust": "73", + "height": "151", + "hip": "75", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "わきわきクリスマス", + "alias_name_display": "わきわきクリスマス", + "event": [ + { + "event_id": 1208, + "event_name": "目指せサンタクロース アイドルチャレンジ" + } + ], + "hash": "8428e141a0f19853238dd295ba9c8122", + "id": "1529902", + "profile": { + "bust": "73", + "height": "151", + "hip": "75", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "わきわきクリスマス・S", + "alias_name_display": "わきわきクリスマス・S", + "event": [ + { + "event_id": 1208, + "event_name": "目指せサンタクロース アイドルチャレンジ" + } + ], + "hash": "297cab43151aa6dacc6873fb79fe7c25", + "id": "1430001", + "profile": { + "bust": "73", + "height": "151", + "hip": "75", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "わきわきクリスマス・S", + "alias_name_display": "わきわきクリスマス・S", + "event": [ + { + "event_id": 1208, + "event_name": "目指せサンタクロース アイドルチャレンジ" + } + ], + "hash": "e46d59be9f46daa789cb0fac05660407", + "id": "1530002", + "profile": { + "bust": "73", + "height": "151", + "hip": "75", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "やわらかな夢", + "alias_name_display": "やわらかな夢", + "event": [ + { + "event_id": 721, + "event_name": "第21回ドリームLIVEフェスティバル" + } + ], + "hash": "3a0dc8a0ffb83f0e7d739b9b38dacd2b", + "id": "1432601", + "profile": { + "bust": "73", + "height": "151", + "hip": "75", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "やわらかな夢", + "alias_name_display": "やわらかな夢", + "event": [ + { + "event_id": 721, + "event_name": "第21回ドリームLIVEフェスティバル" + } + ], + "hash": "00a24b06c95da5f54b0b000c9eed1c7c", + "id": "1532602", + "profile": { + "bust": "73", + "height": "151", + "hip": "75", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "おさわりチアー", + "alias_name_display": "おさわりチアー", + "event": [ + { + "event_id": 1509, + "event_name": "第9回チーム対抗トークバトルショー" + } + ], + "hash": "7eed576c2e8dbd09f8240ec36f8bd6d7", + "id": "1436401", + "profile": { + "bust": "73", + "height": "151", + "hip": "75", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "おさわりチアー", + "alias_name_display": "おさわりチアー", + "event": [ + { + "event_id": 1509, + "event_name": "第9回チーム対抗トークバトルショー" + } + ], + "hash": "6266ac4f14b93b3859953ec5f6e94cb4", + "id": "1536402", + "profile": { + "bust": "73", + "height": "151", + "hip": "75", + "waist": "56", + "weight": "41" + } + } + ], + "idol_id": 21, + "idol_name": "棟方愛海", + "idol_name_display": "棟方愛海", + "units": [ + { + "id": "44", + "name": "ハワイアンツイン" + }, + { + "id": "48", + "name": "日菜子と愛海の妄想ワールド" + }, + { + "id": "128", + "name": "ラビュー☆アイス☆マウンテン" + }, + { + "id": "157", + "name": "デビリッシュゴシック" + } + ] + }, + { + "aliases": [ + { + "hash": "d2e5c0c476cfc344fce7fe03c8c9a4fb", + "id": "1002501", + "profile": { + "bust": "77", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "hash": "c896423b38ed849a1ef973c5c7f369de", + "id": "1102502", + "profile": { + "bust": "77", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ラヴリーギャル", + "alias_name_display": "ラヴリーギャル", + "event": [ + { + "event_id": "010", + "event_name": "第10回プロダクションマッチフェスティバル" + } + ], + "hash": "673b753d25d3f34cc74f4e66ff70a5ef", + "id": "1209701", + "profile": { + "bust": "77", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ラヴリーギャル", + "alias_name_display": "ラヴリーギャル", + "event": [ + { + "event_id": "010", + "event_name": "第10回プロダクションマッチフェスティバル" + } + ], + "hash": "ab24ce09e254e16c0644ea40dc1382f9", + "id": "1309702", + "profile": { + "bust": "77", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ビーチパラダイス", + "alias_name_display": "ビーチパラダイス", + "hash": "1099c469420259169802a9a27d79ff58", + "id": "1211101", + "profile": { + "bust": "77", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ビーチパラダイス", + "alias_name_display": "ビーチパラダイス", + "hash": "550797c200a26c62d2a2d27fbfff83fa", + "id": "1311102", + "profile": { + "bust": "77", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "クリスマスプレゼント", + "alias_name_display": "クリスマスプレゼント", + "hash": "25d34e8c4e8e6db5267c90e5d66ff8c8", + "id": "1219301", + "profile": { + "bust": "77", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "クリスマスプレゼント", + "alias_name_display": "クリスマスプレゼント", + "hash": "f23d11db5595c69dfba4380215f437b3", + "id": "1319302", + "profile": { + "bust": "77", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "夏フェス☆ギャル", + "alias_name_display": "夏フェス☆ギャル", + "hash": "ef7004b6df4b22ebdd71f04a4f820b83", + "id": "1222801", + "profile": { + "bust": "77", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "夏フェス☆ギャル", + "alias_name_display": "夏フェス☆ギャル", + "hash": "c89cbf65ba71e62e7dcde1ad925c3c28", + "id": "1322802", + "profile": { + "bust": "77", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ちーぷり☆テイスト", + "alias_name_display": "ちーぷり☆テイスト", + "hash": "f0b132cb5b9924dd4b152fb7be41e15d", + "id": "1231601", + "profile": { + "bust": "77", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ちーぷり☆テイスト", + "alias_name_display": "ちーぷり☆テイスト", + "hash": "5ae401df521201e18964635c8e00ce27", + "id": "1331602", + "profile": { + "bust": "77", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ラヴリー☆ハート", + "alias_name_display": "ラヴリー☆ハート", + "event": [ + { + "event_id": 803, + "event_name": "第3回アイドルLIVEロワイヤル" + } + ], + "hash": "2319725cfcde4156036a3da376d0e304", + "id": "1411701", + "profile": { + "bust": "77", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ラヴリー☆ハート", + "alias_name_display": "ラヴリー☆ハート", + "event": [ + { + "event_id": 803, + "event_name": "第3回アイドルLIVEロワイヤル" + } + ], + "hash": "a98cd69ad87bc017b0b7a5ab1719bbb7", + "id": "1511702", + "profile": { + "bust": "77", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ラヴリー☆ライダー", + "alias_name_display": "ラヴリー☆ライダー", + "hash": "560a5de9054af39652fb3b48a1c22bc1", + "id": "1415101", + "profile": { + "bust": "77", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ラヴリー☆ライダー", + "alias_name_display": "ラヴリー☆ライダー", + "hash": "7fd49e81f5b5d24cc99f84316ae4b149", + "id": "1515102", + "profile": { + "bust": "77", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ラヴリー・ロワイヤル", + "alias_name_display": "ラヴリー・ロワイヤル", + "event": [ + { + "event_id": 811, + "event_name": "第11回アイドルLIVEロワイヤル" + } + ], + "hash": "807e430846171e03e0490d4519e44b8c", + "id": "1423101", + "profile": { + "bust": "77", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ラヴリー・ロワイヤル", + "alias_name_display": "ラヴリー・ロワイヤル", + "event": [ + { + "event_id": 811, + "event_name": "第11回アイドルLIVEロワイヤル" + } + ], + "hash": "f4988f022dff8ff4dedfec2e679c0407", + "id": "1523102", + "profile": { + "bust": "77", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "4thアニバーサリー", + "alias_name_display": "4thアニバーサリー", + "event": [ + { + "event_id": 1704, + "event_name": "アイドルプロデュース the 4th Anniversary" + } + ], + "hash": "1f1da81fa810a213dc4f0ed50aed6119", + "id": "1429301", + "profile": { + "bust": "77", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "4thアニバーサリー", + "alias_name_display": "4thアニバーサリー", + "event": [ + { + "event_id": 1704, + "event_name": "アイドルプロデュース the 4th Anniversary" + } + ], + "hash": "9e83c80d3589ef5b8f21452a1d5288cd", + "id": "1529302", + "profile": { + "bust": "77", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "4thアニバーサリー・S", + "alias_name_display": "4thアニバーサリー・S", + "event": [ + { + "event_id": 1704, + "event_name": "アイドルプロデュース the 4th Anniversary" + } + ], + "hash": "ab7bfa84426b3b43094252eb65d41ab8", + "id": "1429401", + "profile": { + "bust": "77", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "4thアニバーサリー・S", + "alias_name_display": "4thアニバーサリー・S", + "event": [ + { + "event_id": 1704, + "event_name": "アイドルプロデュース the 4th Anniversary" + } + ], + "hash": "e4a4576044b3998542c3e03cba2b5ce0", + "id": "1529402", + "profile": { + "bust": "77", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "砂漠のプリンセス", + "alias_name_display": "砂漠のプリンセス", + "event": [ + { + "event_id": 1902, + "event_name": "御伽公演 おてんば姫とまぢヤバな魔法のランプ" + } + ], + "hash": "2fbab4bbe8033bf12ae330ad3013e932", + "id": "1433901", + "profile": { + "bust": "77", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "砂漠のプリンセス", + "alias_name_display": "砂漠のプリンセス", + "event": [ + { + "event_id": 1902, + "event_name": "御伽公演 おてんば姫とまぢヤバな魔法のランプ" + } + ], + "hash": "746f35295f4f371ec9b71219fb1224ce", + "id": "1533902", + "profile": { + "bust": "77", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "41" + } + } + ], + "idol_id": 22, + "idol_name": "藤本里奈", + "idol_name_display": "藤本里奈", + "units": [ + { + "id": "39", + "name": "ノーティギャルズ" + }, + { + "id": "83", + "name": "Shock'in Pink!" + }, + { + "id": "112", + "name": "ギャルズパーティー" + }, + { + "id": "113", + "name": "セクシーギャルズ" + }, + { + "id": "123", + "name": "マッシブライダース" + }, + { + "id": "176", + "name": "炎陣" + } + ] + }, + { + "aliases": [ + { + "hash": "6b068f0f0e900fe2dd9026fc45e69c73", + "id": "1002601", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "40" + } + }, + { + "hash": "dfa5a36128104882b3a46258220c6701", + "id": "1102602", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "ドイツスタイル", + "alias_name_display": "ドイツスタイル", + "event": [ + { + "event_id": 507, + "event_name": "LIVEツアーカーニバルinドイツ" + } + ], + "hash": "60af5036a77f2f8269fb6e88d920497f", + "id": "1211601", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "ドイツスタイル", + "alias_name_display": "ドイツスタイル", + "event": [ + { + "event_id": 507, + "event_name": "LIVEツアーカーニバルinドイツ" + } + ], + "hash": "d51d5eadd272f1b876ba341d6382868f", + "id": "1311602", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "ロワイヤルスタイルNP", + "alias_name_display": "ロワイヤルスタイルNP", + "event": [ + { + "event_id": 805, + "event_name": "第5回アイドルLIVEロワイヤル" + } + ], + "hash": "15eb02199aecce5e6f44cc03aedc29ac", + "id": "1216801", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "ロワイヤルスタイルNP", + "alias_name_display": "ロワイヤルスタイルNP", + "event": [ + { + "event_id": 805, + "event_name": "第5回アイドルLIVEロワイヤル" + } + ], + "hash": "286e0026f19374de60af40a8a7e0d06a", + "id": "1316802", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "サマーシーズン", + "alias_name_display": "サマーシーズン", + "hash": "7edc3a0dfceed19ff46f0ebda96b8ee0", + "id": "1222601", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "サマーシーズン", + "alias_name_display": "サマーシーズン", + "hash": "46961adee0f631616278501c02e47d1b", + "id": "1322602", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "ノルウェー紀行", + "alias_name_display": "ノルウェー紀行", + "event": [ + { + "event_id": 1705, + "event_name": "アイドルプロデュース きらめくオーロラ紀行" + } + ], + "hash": "be964026db56c2a6d7451db1085a5c15", + "id": "1226401", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "ノルウェー紀行", + "alias_name_display": "ノルウェー紀行", + "event": [ + { + "event_id": 1705, + "event_name": "アイドルプロデュース きらめくオーロラ紀行" + } + ], + "hash": "dfa5c5f04a0c8af6c6df3838046c8c31", + "id": "1326402", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "ノルウェー紀行・S", + "alias_name_display": "ノルウェー紀行・S", + "event": [ + { + "event_id": 1705, + "event_name": "アイドルプロデュース きらめくオーロラ紀行" + } + ], + "hash": "1268aaec4763af5b7c453126ee0877ce", + "id": "1226501", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "ノルウェー紀行・S", + "alias_name_display": "ノルウェー紀行・S", + "event": [ + { + "event_id": 1705, + "event_name": "アイドルプロデュース きらめくオーロラ紀行" + } + ], + "hash": "158f8d12822a0557a7a615e28bc434ea", + "id": "1326502", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "ウェディングセレモニー", + "alias_name_display": "ウェディングセレモニー", + "hash": "c023db21214e7ae05e530ff7c55c58d5", + "id": "1228301", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "ウェディングセレモニー", + "alias_name_display": "ウェディングセレモニー", + "hash": "b46221f37a06227726085fb255739bc4", + "id": "1328302", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "ノーブレッドノーライフ", + "alias_name_display": "ノーブレッドノーライフ", + "event": [ + { + "event_id": "032", + "event_name": "第32回プロダクションマッチフェスティバル" + } + ], + "hash": "0d022f6519fd7b401d70de6a2f8251c1", + "id": "1230701", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "ノーブレッドノーライフ", + "alias_name_display": "ノーブレッドノーライフ", + "event": [ + { + "event_id": "032", + "event_name": "第32回プロダクションマッチフェスティバル" + } + ], + "hash": "d24d7d1c13fa222394adeb1b8143c884", + "id": "1330702", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "モグモグバレンタイン", + "alias_name_display": "モグモグバレンタイン", + "hash": "8166a4e7c07c118ab7202278f32bf89a", + "id": "1412201", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "モグモグバレンタイン", + "alias_name_display": "モグモグバレンタイン", + "hash": "a154707291de46fdc9e9ec2c9d10055b", + "id": "1512202", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "パンプキンチアー", + "alias_name_display": "パンプキンチアー", + "event": [ + { + "event_id": 1106, + "event_name": "プロダクション対抗トークバトルショー ハロウィンSP" + } + ], + "hash": "d87837c56b1403c8047a7194db02a869", + "id": "1419401", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "パンプキンチアー", + "alias_name_display": "パンプキンチアー", + "event": [ + { + "event_id": 1106, + "event_name": "プロダクション対抗トークバトルショー ハロウィンSP" + } + ], + "hash": "32a2e1707518845648d1684210fce934", + "id": "1519402", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "モグモグオータム", + "alias_name_display": "モグモグオータム", + "event": [ + { + "event_id": 814, + "event_name": "第14回アイドルLIVEロワイヤル" + } + ], + "hash": "65844372377e2a3527d49cf506b2f6fc", + "id": "1428801", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "モグモグオータム", + "alias_name_display": "モグモグオータム", + "event": [ + { + "event_id": 814, + "event_name": "第14回アイドルLIVEロワイヤル" + } + ], + "hash": "77af3dbc70020d39d0731237345f44cf", + "id": "1528802", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "焼きたてハピネス", + "alias_name_display": "焼きたてハピネス", + "event": [ + { + "event_id": 1216, + "event_name": "先生と一緒に♪目指せおいしいパン作り アイドルチャレンジ" + } + ], + "hash": "ebf9935d9b73a4244db58227f97d8d2b", + "id": "1440101", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "焼きたてハピネス", + "alias_name_display": "焼きたてハピネス", + "event": [ + { + "event_id": 1216, + "event_name": "先生と一緒に♪目指せおいしいパン作り アイドルチャレンジ" + } + ], + "hash": "6982bf46c7bfa21df65e8b12044e9555", + "id": "1540102", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "40" + } + } + ], + "idol_id": 23, + "idol_name": "大原みちる", + "idol_name_display": "大原みちる", + "units": [ + { + "id": "33", + "name": "チーム・フラワー" + }, + { + "id": "97", + "name": "ドイツスタイル" + }, + { + "id": "133", + "name": "スケルツォ・プリマヴェーラ" + }, + { + "id": "209", + "name": "ロワイヤルスタイルNP" + } + ] + }, + { + "aliases": [ + { + "hash": "45e99d9c3367c228d33f71058dd2f738", + "id": "1002701", + "profile": { + "bust": "62", + "height": "130", + "hip": "65", + "waist": "50", + "weight": "28" + } + }, + { + "hash": "3144d1c17608aeeee8313c6cd507f9fb", + "id": "1102702", + "profile": { + "bust": "62", + "height": "130", + "hip": "65", + "waist": "50", + "weight": "28" + } + }, + { + "alias_name": "スペーススタイル", + "alias_name_display": "スペーススタイル", + "event": [ + { + "event_id": 508, + "event_name": "LIVEツアーカーニバルinスペースワールド" + } + ], + "hash": "d9f37d6cf95addd1b3965a4f0ce9b614", + "id": "1212801", + "profile": { + "bust": "62", + "height": "130", + "hip": "65", + "waist": "50", + "weight": "28" + } + }, + { + "alias_name": "スペーススタイル", + "alias_name_display": "スペーススタイル", + "event": [ + { + "event_id": 508, + "event_name": "LIVEツアーカーニバルinスペースワールド" + } + ], + "hash": "9d26767ec2bee81a2d044b4dfbf1d047", + "id": "1312802", + "profile": { + "bust": "62", + "height": "130", + "hip": "65", + "waist": "50", + "weight": "28" + } + }, + { + "alias_name": "紅葉温泉", + "alias_name_display": "紅葉温泉", + "hash": "3c51dba58851ac10b8c11fed3d7c089f", + "id": "1224401", + "profile": { + "bust": "62", + "height": "130", + "hip": "65", + "waist": "50", + "weight": "28" + } + }, + { + "alias_name": "紅葉温泉", + "alias_name_display": "紅葉温泉", + "hash": "aa2469f1804965e38a2a14d945c62b2a", + "id": "1324402", + "profile": { + "bust": "62", + "height": "130", + "hip": "65", + "waist": "50", + "weight": "28" + } + }, + { + "alias_name": "ふしぎなちから", + "alias_name_display": "ふしぎなちから", + "hash": "3432d1de0c9fbb642ed0d612ea5525bc", + "id": "1229501", + "profile": { + "bust": "62", + "height": "130", + "hip": "65", + "waist": "50", + "weight": "28" + } + }, + { + "alias_name": "ふしぎなちから", + "alias_name_display": "ふしぎなちから", + "hash": "16c97cfaf2b0ed17ac59a0c545c80286", + "id": "1329502", + "profile": { + "bust": "62", + "height": "130", + "hip": "65", + "waist": "50", + "weight": "28" + } + }, + { + "alias_name": "マジカルエンジェル", + "alias_name_display": "マジカルエンジェル", + "event": [ + { + "event_id": "015", + "event_name": "第15回プロダクションマッチフェスティバル" + } + ], + "hash": "efe818609edadb7a799cd5318a803c06", + "id": "1412501", + "profile": { + "bust": "62", + "height": "130", + "hip": "65", + "waist": "50", + "weight": "28" + } + }, + { + "alias_name": "マジカルエンジェル", + "alias_name_display": "マジカルエンジェル", + "event": [ + { + "event_id": "015", + "event_name": "第15回プロダクションマッチフェスティバル" + } + ], + "hash": "113a747db67955abdf42f480d82bfd0c", + "id": "1512502", + "profile": { + "bust": "62", + "height": "130", + "hip": "65", + "waist": "50", + "weight": "28" + } + }, + { + "alias_name": "スウィートフェアリー", + "alias_name_display": "スウィートフェアリー", + "hash": "692f101a35f8d44b5cfdab20db41d07c", + "id": "1416001", + "profile": { + "bust": "62", + "height": "130", + "hip": "65", + "waist": "50", + "weight": "28" + } + }, + { + "alias_name": "スウィートフェアリー", + "alias_name_display": "スウィートフェアリー", + "hash": "8d6a51322763437b0285d0014de453e1", + "id": "1516002", + "profile": { + "bust": "62", + "height": "130", + "hip": "65", + "waist": "50", + "weight": "28" + } + }, + { + "alias_name": "はじめていっぱい", + "alias_name_display": "はじめていっぱい", + "event": [ + { + "event_id": 1701, + "event_name": "アイドルプロデュース はじめてのキャンプ" + } + ], + "hash": "48ad4413bb8682b45c9dba484b79127d", + "id": "1424101", + "profile": { + "bust": "62", + "height": "130", + "hip": "65", + "waist": "50", + "weight": "28" + } + }, + { + "alias_name": "はじめていっぱい", + "alias_name_display": "はじめていっぱい", + "event": [ + { + "event_id": 1701, + "event_name": "アイドルプロデュース はじめてのキャンプ" + } + ], + "hash": "da45338f44ff37ffe855b752bf0abbd3", + "id": "1524102", + "profile": { + "bust": "62", + "height": "130", + "hip": "65", + "waist": "50", + "weight": "28" + } + }, + { + "alias_name": "ホワイトテイル", + "alias_name_display": "ホワイトテイル", + "hash": "f54882d2d097483a70a35a82c42d40be", + "id": "1430801", + "profile": { + "bust": "62", + "height": "130", + "hip": "65", + "waist": "50", + "weight": "28" + } + }, + { + "alias_name": "ホワイトテイル", + "alias_name_display": "ホワイトテイル", + "hash": "c50e292d766463d6113e97ee03cc6a38", + "id": "1530802", + "profile": { + "bust": "62", + "height": "130", + "hip": "65", + "waist": "50", + "weight": "28" + } + }, + { + "alias_name": "無垢なる魔王", + "alias_name_display": "無垢なる魔王", + "hash": "51d28dcc1cffaf374a73ed53f77e9476", + "id": "1437801", + "profile": { + "bust": "62", + "height": "130", + "hip": "65", + "waist": "50", + "weight": "28" + } + }, + { + "alias_name": "無垢なる魔王", + "alias_name_display": "無垢なる魔王", + "hash": "687b4206d88a37c16864b8f4d507f2cb", + "id": "1537802", + "profile": { + "bust": "62", + "height": "130", + "hip": "65", + "waist": "50", + "weight": "28" + } + } + ], + "idol_id": 24, + "idol_name": "遊佐こずえ", + "idol_name_display": "遊佐こずえ", + "units": [ + { + "id": "62", + "name": "ようせいさんとおねえさん" + }, + { + "id": "95", + "name": "スペーススタイル" + } + ] + }, + { + "aliases": [ + { + "hash": "28789186bef61a4dcdd8eff8ef59fe7f", + "id": "1002801", + "profile": { + "bust": "おっきい", + "height": "145", + "hip": "まぁまぁ", + "waist": "ふつう", + "weight": "40" + } + }, + { + "hash": "98e729ca168828acbf2ba02d89feda8b", + "id": "1102802", + "profile": { + "bust": "おっきい", + "height": "145", + "hip": "まぁまぁ", + "waist": "ふつう", + "weight": "40" + } + }, + { + "alias_name": "トークLIVEチアガール", + "alias_name_display": "トークLIVEチアガール", + "event": [ + { + "event_id": 1101, + "event_name": "プロダクション対抗トークバトルショー" + } + ], + "hash": "4d1ca7f4ecb2d1c02e68551e9bba2ab3", + "id": "1215101", + "profile": { + "bust": "おっきい", + "height": "145", + "hip": "まぁまぁ", + "waist": "ふつう", + "weight": "40" + } + }, + { + "alias_name": "トークLIVEチアガール", + "alias_name_display": "トークLIVEチアガール", + "event": [ + { + "event_id": 1101, + "event_name": "プロダクション対抗トークバトルショー" + } + ], + "hash": "d37d6a4498910c156f63189e2d40d6ed", + "id": "1315102", + "profile": { + "bust": "おっきい", + "height": "145", + "hip": "まぁまぁ", + "waist": "ふつう", + "weight": "40" + } + }, + { + "alias_name": "大粒のドロップ", + "alias_name_display": "大粒のドロップ", + "event": [ + { + "event_id": "018", + "event_name": "第18回プロダクションマッチフェスティバル" + } + ], + "hash": "66f135ec677fc6141ada012bbfcd01d7", + "id": "1218001", + "profile": { + "bust": "おっきい", + "height": "145", + "hip": "まぁまぁ", + "waist": "ふつう", + "weight": "40" + } + }, + { + "alias_name": "大粒のドロップ", + "alias_name_display": "大粒のドロップ", + "event": [ + { + "event_id": "018", + "event_name": "第18回プロダクションマッチフェスティバル" + } + ], + "hash": "6131913e660db86e1a50099c16bc325d", + "id": "1318002", + "profile": { + "bust": "おっきい", + "height": "145", + "hip": "まぁまぁ", + "waist": "ふつう", + "weight": "40" + } + }, + { + "alias_name": "マーチングバンド", + "alias_name_display": "マーチングバンド", + "hash": "e0e1f48b20530c999a6b5a9559d6af6a", + "id": "1226001", + "profile": { + "bust": "おっきい", + "height": "145", + "hip": "まぁまぁ", + "waist": "ふつう", + "weight": "40" + } + }, + { + "alias_name": "マーチングバンド", + "alias_name_display": "マーチングバンド", + "hash": "2ad0b3283dc5a010db5f158eb287e9fc", + "id": "1326002", + "profile": { + "bust": "おっきい", + "height": "145", + "hip": "まぁまぁ", + "waist": "ふつう", + "weight": "40" + } + }, + { + "alias_name": "まごころメイド", + "alias_name_display": "まごころメイド", + "hash": "239499574a3170f40fa617e5e007ad72", + "id": "1233101", + "profile": { + "bust": "おっきい", + "height": "145", + "hip": "まぁまぁ", + "waist": "ふつう", + "weight": "40" + } + }, + { + "alias_name": "まごころメイド", + "alias_name_display": "まごころメイド", + "hash": "9e651b1f7f469561931f12fc9a3b3e01", + "id": "1333102", + "profile": { + "bust": "おっきい", + "height": "145", + "hip": "まぁまぁ", + "waist": "ふつう", + "weight": "40" + } + }, + { + "alias_name": "だだもれエモーション", + "alias_name_display": "だだもれエモーション", + "event": [ + { + "event_id": 807, + "event_name": "第7回アイドルLIVEロワイヤル" + } + ], + "hash": "a4bbadf9252089f4d2d9ebd59b48ce7d", + "id": "1418901", + "profile": { + "bust": "おっきい", + "height": "145", + "hip": "まぁまぁ", + "waist": "ふつう", + "weight": "40" + } + }, + { + "alias_name": "だだもれエモーション", + "alias_name_display": "だだもれエモーション", + "event": [ + { + "event_id": 807, + "event_name": "第7回アイドルLIVEロワイヤル" + } + ], + "hash": "ceb069e649a43f33fcd76f03df331740", + "id": "1518902", + "profile": { + "bust": "おっきい", + "height": "145", + "hip": "まぁまぁ", + "waist": "ふつう", + "weight": "40" + } + }, + { + "alias_name": "ぷるんぷるんB.B", + "alias_name_display": "ぷるんぷるんB.B", + "hash": "0b09d531c78b583e59cf03cef7673ea8", + "id": "1422201", + "profile": { + "bust": "おっきい", + "height": "145", + "hip": "まぁまぁ", + "waist": "ふつう", + "weight": "40" + } + }, + { + "alias_name": "ぷるんぷるんB.B", + "alias_name_display": "ぷるんぷるんB.B", + "hash": "38bcfcacb8cd201a38eda17602d517df", + "id": "1522202", + "profile": { + "bust": "おっきい", + "height": "145", + "hip": "まぁまぁ", + "waist": "ふつう", + "weight": "40" + } + }, + { + "alias_name": "もぎたてビーチガール", + "alias_name_display": "もぎたてビーチガール", + "event": [ + { + "event_id": 1703, + "event_name": "アイドルプロデュース おいでよ!海の家" + } + ], + "hash": "3e40fa8beb3a767790257137865215b1", + "id": "1426301", + "profile": { + "bust": "おっきい", + "height": "145", + "hip": "まぁまぁ", + "waist": "ふつう", + "weight": "40" + } + }, + { + "alias_name": "もぎたてビーチガール", + "alias_name_display": "もぎたてビーチガール", + "event": [ + { + "event_id": 1703, + "event_name": "アイドルプロデュース おいでよ!海の家" + } + ], + "hash": "16bcdd3845d6e3e7329a87b63e487adb", + "id": "1526302", + "profile": { + "bust": "おっきい", + "height": "145", + "hip": "まぁまぁ", + "waist": "ふつう", + "weight": "40" + } + }, + { + "alias_name": "きらきらビーチガール", + "alias_name_display": "きらきらビーチガール", + "event": [ + { + "event_id": 1703, + "event_name": "アイドルプロデュース おいでよ!海の家" + } + ], + "hash": "1d9706dbe3ab49249cc85a75865ce80e", + "id": "1426401", + "profile": { + "bust": "おっきい", + "height": "145", + "hip": "まぁまぁ", + "waist": "ふつう", + "weight": "40" + } + }, + { + "alias_name": "きらきらビーチガール", + "alias_name_display": "きらきらビーチガール", + "event": [ + { + "event_id": 1703, + "event_name": "アイドルプロデュース おいでよ!海の家" + } + ], + "hash": "2c56ab3ad72b1f245847fcc4e0bc94c8", + "id": "1526402", + "profile": { + "bust": "おっきい", + "height": "145", + "hip": "まぁまぁ", + "waist": "ふつう", + "weight": "40" + } + }, + { + "alias_name": "大輪の華", + "alias_name_display": "大輪の華", + "event": [ + { + "event_id": 1408, + "event_name": "第8回ぷちデレラコレクション" + } + ], + "hash": "a80b7a3dce6c300c9bf3d0f0dd7d415e", + "id": "1434801", + "profile": { + "bust": "おっきい", + "height": "145", + "hip": "まぁまぁ", + "waist": "ふつう", + "weight": "40" + } + }, + { + "alias_name": "大輪の華", + "alias_name_display": "大輪の華", + "event": [ + { + "event_id": 1408, + "event_name": "第8回ぷちデレラコレクション" + } + ], + "hash": "d76492cb5a1cc1202e993013da0e48cd", + "id": "1534802", + "profile": { + "bust": "おっきい", + "height": "145", + "hip": "まぁまぁ", + "waist": "ふつう", + "weight": "40" + } + } + ], + "idol_id": 25, + "idol_name": "大沼くるみ", + "idol_name_display": "大沼くるみ", + "units": [ + { + "id": "71", + "name": "B.B" + }, + { + "id": "214", + "name": "L.M.B.G" + } + ] + }, + { + "aliases": [ + { + "hash": "dad249d2193e48fede1efb6b86ce152f", + "id": "1002901", + "profile": { + "bust": "83", + "height": "161", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "hash": "b9e2f6db7e3b84a0319b31c875323c03", + "id": "1102902", + "profile": { + "bust": "83", + "height": "161", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "ガンスリンガー", + "alias_name_display": "ガンスリンガー", + "event": [ + { + "event_id": 512, + "event_name": "西部公演 ガンスリンガージャーニー" + } + ], + "hash": "749918764164a20ffd9548b6e3329cb7", + "id": "1216501", + "profile": { + "bust": "83", + "height": "161", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "ガンスリンガー", + "alias_name_display": "ガンスリンガー", + "event": [ + { + "event_id": 512, + "event_name": "西部公演 ガンスリンガージャーニー" + } + ], + "hash": "06e634647cb9db3a1ae3cd4f0f8c1fdc", + "id": "1316502", + "profile": { + "bust": "83", + "height": "161", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "ダンシングガール", + "alias_name_display": "ダンシングガール", + "event": [ + { + "event_id": 1706, + "event_name": "アイドルプロデュース 北の大地と夜さりの祭" + } + ], + "hash": "87b9ce294ee324ef107117cd775e3e41", + "id": "1228101", + "profile": { + "bust": "83", + "height": "161", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "ダンシングガール", + "alias_name_display": "ダンシングガール", + "event": [ + { + "event_id": 1706, + "event_name": "アイドルプロデュース 北の大地と夜さりの祭" + } + ], + "hash": "8bd62d14e7ae5a19612cb4f63e7bc910", + "id": "1328102", + "profile": { + "bust": "83", + "height": "161", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "ダンシングガール・S", + "alias_name_display": "ダンシングガール・S", + "event": [ + { + "event_id": 1706, + "event_name": "アイドルプロデュース 北の大地と夜さりの祭" + } + ], + "hash": "46b8c7e64644fefca3f9c7836f2c8f40", + "id": "1228201", + "profile": { + "bust": "83", + "height": "161", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "ダンシングガール・S", + "alias_name_display": "ダンシングガール・S", + "event": [ + { + "event_id": 1706, + "event_name": "アイドルプロデュース 北の大地と夜さりの祭" + } + ], + "hash": "ae2a65d68ad26995c036e4a212c15f18", + "id": "1328202", + "profile": { + "bust": "83", + "height": "161", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "セブンスヘブン", + "alias_name_display": "セブンスヘブン", + "hash": "3055dffe2520e6a28427482ae61582e9", + "id": "1417301", + "profile": { + "bust": "83", + "height": "161", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "セブンスヘブン", + "alias_name_display": "セブンスヘブン", + "hash": "5f3a262bdcb15fd59261d1d67eed56e3", + "id": "1517302", + "profile": { + "bust": "83", + "height": "161", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "パフュームトリッパー", + "alias_name_display": "パフュームトリッパー", + "hash": "403297028737ce2c944bfc812dba6c94", + "id": "1419901", + "profile": { + "bust": "83", + "height": "161", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "パフュームトリッパー", + "alias_name_display": "パフュームトリッパー", + "hash": "be20e1ce2d5b116f0b9fecbecf298a48", + "id": "1519902", + "profile": { + "bust": "83", + "height": "161", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "文明開花", + "alias_name_display": "文明開花", + "hash": "af0f233de4c2dfbac1e5a8bf1768dcf6", + "id": "1423501", + "profile": { + "bust": "83", + "height": "161", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "文明開花", + "alias_name_display": "文明開花", + "hash": "c827cb0a7ab82a4395250ab254d6fbcf", + "id": "1523502", + "profile": { + "bust": "83", + "height": "161", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "fdf5b5e967d72bb2b7acf1b43953dbd2", + "id": "1429101", + "profile": { + "bust": "83", + "height": "161", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "aa3d9312403ed3e40e7f92b771676ea9", + "id": "1529102", + "profile": { + "bust": "83", + "height": "161", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "夜の匂い", + "alias_name_display": "夜の匂い", + "event": [ + { + "event_id": 815, + "event_name": "アイドルLIVEロワイヤル クリスマスSP" + } + ], + "hash": "f4add4b54fc6ff462caf154441e049cf", + "id": "1429801", + "profile": { + "bust": "83", + "height": "161", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "夜の匂い", + "alias_name_display": "夜の匂い", + "event": [ + { + "event_id": 815, + "event_name": "アイドルLIVEロワイヤル クリスマスSP" + } + ], + "hash": "abe06fbcf68900a285b0f2244403214e", + "id": "1529802", + "profile": { + "bust": "83", + "height": "161", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "新春パルファム", + "alias_name_display": "新春パルファム", + "hash": "44b0359478c5fbc5a8dcb0d7d91a3776", + "id": "1437601", + "profile": { + "bust": "83", + "height": "161", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "新春パルファム", + "alias_name_display": "新春パルファム", + "hash": "bb156a253fc247462a87b20eee8770f5", + "id": "1537602", + "profile": { + "bust": "83", + "height": "161", + "hip": "82", + "waist": "57", + "weight": "43" + } + } + ], + "idol_id": 26, + "idol_name": "一ノ瀬志希", + "idol_name_display": "一ノ瀬志希", + "units": [ + { + "id": "65", + "name": "レイジー・レイジー" + }, + { + "id": "72", + "name": "Dimension-3" + }, + { + "id": "126", + "name": "誘惑イビル" + }, + { + "id": "185", + "name": "LiPPS" + }, + { + "id": "196", + "name": "la Roseraie" + } + ] + }, + { + "aliases": [ + { + "hash": "eb2571c3f125aa3fcadb1468b6a4dbee", + "id": "1200101", + "profile": { + "bust": "85", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "hash": "b22b6d458e6da02da4717fee2cbb5095", + "id": "1300102", + "profile": { + "bust": "85", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "ハイカラサクラ", + "alias_name_display": "ハイカラサクラ", + "hash": "4355a0e400d64478e92262d218a2c1bf", + "id": "1221101", + "profile": { + "bust": "85", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "ハイカラサクラ", + "alias_name_display": "ハイカラサクラ", + "hash": "521d08134bd68c69fb0393e8c264af7a", + "id": "1321102", + "profile": { + "bust": "85", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "ブラックキャット", + "alias_name_display": "ブラックキャット", + "hash": "b47ef631aaaa60b10106b8f2d9b53481", + "id": "1232801", + "profile": { + "bust": "85", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "ブラックキャット", + "alias_name_display": "ブラックキャット", + "hash": "d4756fbf7ff04813ee44a35a24c776f2", + "id": "1332802", + "profile": { + "bust": "85", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "セクシーキャット", + "alias_name_display": "セクシーキャット", + "hash": "ccebb088023a6049836772db68a1d7f6", + "id": "1400401", + "profile": { + "bust": "85", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "セクシーキャット", + "alias_name_display": "セクシーキャット", + "hash": "fe6e6f03157fbdd74ec000f057c601cb", + "id": "1500402", + "profile": { + "bust": "85", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "069cfeda079f531b4a0d33f4c9e226ba", + "id": "1402401", + "profile": { + "bust": "85", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "c6de2d6bb237d224734e0448ae6f153a", + "id": "1502402", + "profile": { + "bust": "85", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "チャーミングキャット", + "alias_name_display": "チャーミングキャット", + "hash": "c9f7539dc29fc32ea84e5d86153ec745", + "id": "1403901", + "profile": { + "bust": "85", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "チャーミングキャット", + "alias_name_display": "チャーミングキャット", + "hash": "6866eec24a7825980b3325dfc6297b33", + "id": "1503902", + "profile": { + "bust": "85", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "シーサイドキャット", + "alias_name_display": "シーサイドキャット", + "hash": "f369a4d2863096f6482270bf86392140", + "id": "1408101", + "profile": { + "bust": "85", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "シーサイドキャット", + "alias_name_display": "シーサイドキャット", + "hash": "583d7a939c2f8d984fd5a45328019764", + "id": "1508102", + "profile": { + "bust": "85", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "アニバーサリーキャット", + "alias_name_display": "アニバーサリーキャット", + "event": [ + { + "event_id": 410, + "event_name": "アイドルプロデュース the 2nd Anniversary" + } + ], + "hash": "3e410534ed3ae72de2a38d8f0c8caa13", + "id": "1410501", + "profile": { + "bust": "85", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "アニバーサリーキャット", + "alias_name_display": "アニバーサリーキャット", + "event": [ + { + "event_id": 410, + "event_name": "アイドルプロデュース the 2nd Anniversary" + } + ], + "hash": "6c41f4d6efea96e2fb3f34e6fea1de77", + "id": "1510502", + "profile": { + "bust": "85", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "アニバーサリーキャット・S", + "alias_name_display": "アニバーサリーキャット・S", + "event": [ + { + "event_id": 410, + "event_name": "アイドルプロデュース the 2nd Anniversary" + } + ], + "hash": "fa0ecd35b0feef83d385a13de23d7234", + "id": "1410601", + "profile": { + "bust": "85", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "アニバーサリーキャット・S", + "alias_name_display": "アニバーサリーキャット・S", + "event": [ + { + "event_id": 410, + "event_name": "アイドルプロデュース the 2nd Anniversary" + } + ], + "hash": "4aa6cbe5d08e58debf0adfd32f3c5dcd", + "id": "1510602", + "profile": { + "bust": "85", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "シンデレラドリーム", + "alias_name_display": "シンデレラドリーム", + "hash": "665a9ad6cf25489e7e4a11429abed954", + "id": "1413801", + "profile": { + "bust": "85", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "シンデレラドリーム", + "alias_name_display": "シンデレラドリーム", + "hash": "0fb854d9551451b3f1cd518348c520f4", + "id": "1513802", + "profile": { + "bust": "85", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "マジメ/ネコチャン", + "alias_name_display": "マジメ/ネコチャン", + "hash": "bb2eb7f4b69f14c0cf2e438079234201", + "id": "1418701", + "profile": { + "bust": "85", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "マジメ/ネコチャン", + "alias_name_display": "マジメ/ネコチャン", + "hash": "14e6c94e4cc163ffedd84a8ebba62e90", + "id": "1518702", + "profile": { + "bust": "85", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "ムーンナイトキャット", + "alias_name_display": "ムーンナイトキャット", + "hash": "cbf6c6a6ba50576f7be5b9f273d0484d", + "id": "1425801", + "profile": { + "bust": "85", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "ムーンナイトキャット", + "alias_name_display": "ムーンナイトキャット", + "hash": "34a453e835e1cf2f197a43cdc18c0c65", + "id": "1525802", + "profile": { + "bust": "85", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "アスタリスク", + "alias_name_display": "アスタリスク", + "hash": "f0f2405e8f2bbf462ed96d2a47eac58b", + "id": "1526602", + "profile": { + "bust": "85", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "まちぶせキャット", + "alias_name_display": "まちぶせキャット", + "hash": "f78629c8772962a9690611d3b3363906", + "id": "1431101", + "profile": { + "bust": "85", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "まちぶせキャット", + "alias_name_display": "まちぶせキャット", + "hash": "8a73c424553e716484886472e9ef92f9", + "id": "1531102", + "profile": { + "bust": "85", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "フマジメ/ネコチャン", + "alias_name_display": "フマジメ/ネコチャン", + "hash": "92e0e3e2f3feede92f76570968a1b2b4", + "id": "1435601", + "profile": { + "bust": "85", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "フマジメ/ネコチャン", + "alias_name_display": "フマジメ/ネコチャン", + "hash": "e863deaf923d0239d7d118503386c7c4", + "id": "1535602", + "profile": { + "bust": "85", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "45" + } + } + ], + "idol_id": 27, + "idol_name": "前川みく", + "idol_name_display": "前川みく", + "units": [ + { + "id": "3", + "name": "あーにゃんみくにゃん" + }, + { + "id": "70", + "name": "*(Asterisk)" + }, + { + "id": "116", + "name": "にゃん・にゃん・にゃん" + }, + { + "id": "139", + "name": "397cherry" + }, + { + "id": "158", + "name": "ハイカラサクラ" + }, + { + "id": "168", + "name": "*(Asterisk) with なつなな" + }, + { + "id": "187", + "name": "NEX-US" + }, + { + "id": "195", + "name": "C5" + }, + { + "id": "213", + "name": "CINDERELLA PROJECT" + } + ] + }, + { + "aliases": [ + { + "hash": "2cd48b54401ff3ef8a81a753318705a9", + "id": "1200201", + "profile": { + "bust": "92", + "height": "154", + "hip": "88", + "waist": "59", + "weight": "55" + } + }, + { + "hash": "d3f5730a559b84333df073acc29d094d", + "id": "1300202", + "profile": { + "bust": "92", + "height": "154", + "hip": "88", + "waist": "57", + "weight": "53" + } + }, + { + "alias_name": "ラブリー☆バラドル", + "alias_name_display": "ラブリー☆バラドル", + "event": [ + { + "event_id": 505, + "event_name": "アイドルLIVEツアーinバリ島" + } + ], + "hash": "13e6f261e13f120522d4a4675d3f38a9", + "id": "1209401", + "profile": { + "bust": "92", + "height": "154", + "hip": "88", + "waist": "57", + "weight": "53" + } + }, + { + "alias_name": "ラブリー☆バラドル", + "alias_name_display": "ラブリー☆バラドル", + "event": [ + { + "event_id": 505, + "event_name": "アイドルLIVEツアーinバリ島" + } + ], + "hash": "d85e306970e5cfe01adfe4f222014191", + "id": "1309402", + "profile": { + "bust": "92", + "height": "154", + "hip": "88", + "waist": "57", + "weight": "53" + } + }, + { + "alias_name": "おひろめポーズ", + "alias_name_display": "おひろめポーズ", + "hash": "c488c3d6c04ad92b2bd5cc54b24855c9", + "id": "1217901", + "profile": { + "bust": "92", + "height": "154", + "hip": "88", + "waist": "57", + "weight": "53" + } + }, + { + "alias_name": "おひろめポーズ", + "alias_name_display": "おひろめポーズ", + "hash": "9629738a808b833c3c0d28938bf132e0", + "id": "1317902", + "profile": { + "bust": "92", + "height": "154", + "hip": "88", + "waist": "57", + "weight": "53" + } + }, + { + "alias_name": "T.B.サーカス", + "alias_name_display": "T.B.サーカス", + "event": [ + { + "event_id": 1108, + "event_name": "第8回プロダクション対抗トークバトルショー" + } + ], + "hash": "6d515e6022088598ee53e452e64eadfd", + "id": "1220201", + "profile": { + "bust": "92", + "height": "154", + "hip": "88", + "waist": "57", + "weight": "53" + } + }, + { + "alias_name": "T.B.サーカス", + "alias_name_display": "T.B.サーカス", + "event": [ + { + "event_id": 1108, + "event_name": "第8回プロダクション対抗トークバトルショー" + } + ], + "hash": "0522d77ea44cb013c8debaf5b042e606", + "id": "1320202", + "profile": { + "bust": "92", + "height": "154", + "hip": "88", + "waist": "57", + "weight": "53" + } + }, + { + "alias_name": "フライトバラエティ", + "alias_name_display": "フライトバラエティ", + "event": [ + { + "event_id": 1803, + "event_name": "アイドルバラエティ 大空への挑戦 ~Fly me to the Sky~" + } + ], + "hash": "0855654e3e72cb7a3920e2e064e8d204", + "id": "1327902", + "profile": { + "bust": "92", + "height": "154", + "hip": "88", + "waist": "57", + "weight": "53" + } + }, + { + "alias_name": "PROのオシゴト☆", + "alias_name_display": "PROのオシゴト☆", + "hash": "646d02993ce1aa9172a63d9e1fd68e0b", + "id": "1231201", + "profile": { + "bust": "92", + "height": "154", + "hip": "88", + "waist": "57", + "weight": "53" + } + }, + { + "alias_name": "PROのオシゴト☆", + "alias_name_display": "PROのオシゴト☆", + "hash": "c2d987590968cc303bc14c008db97d75", + "id": "1331202", + "profile": { + "bust": "92", + "height": "154", + "hip": "88", + "waist": "57", + "weight": "53" + } + }, + { + "alias_name": "ぷるるんスポーティ", + "alias_name_display": "ぷるるんスポーティ", + "event": [ + { + "event_id": 212, + "event_name": "アイドルサバイバル 秋の大運動会" + } + ], + "hash": "54e1a4a8f49210862d05524ef607b0f0", + "id": "1409801", + "profile": { + "bust": "92", + "height": "154", + "hip": "88", + "waist": "57", + "weight": "53" + } + }, + { + "alias_name": "ぷるるんスポーティ", + "alias_name_display": "ぷるるんスポーティ", + "event": [ + { + "event_id": 212, + "event_name": "アイドルサバイバル 秋の大運動会" + } + ], + "hash": "488ac97d9598d5f6b5ff26028d4a9fc8", + "id": "1509802", + "profile": { + "bust": "92", + "height": "154", + "hip": "88", + "waist": "57", + "weight": "53" + } + }, + { + "alias_name": "吸血貴族", + "alias_name_display": "吸血貴族", + "event": [ + { + "event_id": 522, + "event_name": "魔界公演 幽鬱女王とハロウィンの祝祭" + } + ], + "hash": "70053db7dd59312f3f5f2af3bd8fcbf5", + "id": "1428501", + "profile": { + "bust": "92", + "height": "154", + "hip": "88", + "waist": "57", + "weight": "53" + } + }, + { + "alias_name": "吸血貴族", + "alias_name_display": "吸血貴族", + "event": [ + { + "event_id": 522, + "event_name": "魔界公演 幽鬱女王とハロウィンの祝祭" + } + ], + "hash": "2fc28fdf3ff00656454cd265ac6ff260", + "id": "1528502", + "profile": { + "bust": "92", + "height": "154", + "hip": "88", + "waist": "57", + "weight": "53" + } + } + ], + "idol_id": 28, + "idol_name": "赤西瑛梨華", + "idol_name_display": "赤西瑛梨華", + "units": [ + { + "id": "73", + "name": "ERICATHY" + } + ] + }, + { + "aliases": [ + { + "hash": "510b48227148c9164ac281f46083d2c5", + "id": "1200301", + "profile": { + "bust": "83", + "height": "156", + "hip": "86", + "waist": "58", + "weight": "43" + } + }, + { + "hash": "7e2a4f08a73c0bd5bf11ff7e387fc149", + "id": "1300302", + "profile": { + "bust": "83", + "height": "156", + "hip": "86", + "waist": "58", + "weight": "43" + } + }, + { + "alias_name": "スウィートドリーマー", + "alias_name_display": "スウィートドリーマー", + "hash": "9bff0a176fb7cc6ec70aa1851267c223", + "id": "1210101", + "profile": { + "bust": "83", + "height": "156", + "hip": "86", + "waist": "58", + "weight": "43" + } + }, + { + "alias_name": "スウィートドリーマー", + "alias_name_display": "スウィートドリーマー", + "hash": "eab228023c103ead474b39feec6f2a62", + "id": "1310102", + "profile": { + "bust": "83", + "height": "156", + "hip": "86", + "waist": "58", + "weight": "43" + } + }, + { + "alias_name": "自慢のボディ", + "alias_name_display": "自慢のボディ", + "event": [ + { + "event_id": "017", + "event_name": "第17回プロダクションマッチフェスティバル" + } + ], + "hash": "a31c4b789e163d6300b58fe77258e56a", + "id": "1216701", + "profile": { + "bust": "83", + "height": "156", + "hip": "86", + "waist": "58", + "weight": "43" + } + }, + { + "alias_name": "自慢のボディ", + "alias_name_display": "自慢のボディ", + "event": [ + { + "event_id": "017", + "event_name": "第17回プロダクションマッチフェスティバル" + } + ], + "hash": "d11715682b54f3741316f3bc52ae3435", + "id": "1316702", + "profile": { + "bust": "83", + "height": "156", + "hip": "86", + "waist": "58", + "weight": "43" + } + }, + { + "alias_name": "おねだりガール", + "alias_name_display": "おねだりガール", + "hash": "aae1c18ddab7a1cb39d017984294b8bc", + "id": "1220501", + "profile": { + "bust": "83", + "height": "156", + "hip": "86", + "waist": "58", + "weight": "43" + } + }, + { + "alias_name": "おねだりガール", + "alias_name_display": "おねだりガール", + "hash": "a031a837934a23cd130171507ec1f055", + "id": "1320502", + "profile": { + "bust": "83", + "height": "156", + "hip": "86", + "waist": "58", + "weight": "43" + } + }, + { + "alias_name": "LIVEバラエティ", + "alias_name_display": "LIVEバラエティ", + "event": [ + { + "event_id": 1802, + "event_name": "アイドルバラエティ 手作りライブプロジェクト!" + } + ], + "hash": "31deca7910d4feaa0b6cfc3af4c9e231", + "id": "1324702", + "profile": { + "bust": "83", + "height": "156", + "hip": "86", + "waist": "58", + "weight": "43" + } + }, + { + "alias_name": "かんぺきプラン", + "alias_name_display": "かんぺきプラン", + "event": [ + { + "event_id": 725, + "event_name": "第25回ドリームLIVEフェスティバル" + } + ], + "hash": "be69d241fbd6bc8e3c465ce10a4f903d", + "id": "1230501", + "profile": { + "bust": "83", + "height": "156", + "hip": "86", + "waist": "58", + "weight": "43" + } + }, + { + "alias_name": "かんぺきプラン", + "alias_name_display": "かんぺきプラン", + "event": [ + { + "event_id": 725, + "event_name": "第25回ドリームLIVEフェスティバル" + } + ], + "hash": "c73c7d84c4ec2b59495f658ee6e9f4fa", + "id": "1330502", + "profile": { + "bust": "83", + "height": "156", + "hip": "86", + "waist": "58", + "weight": "43" + } + }, + { + "alias_name": "カラフルリフレッシュ", + "alias_name_display": "カラフルリフレッシュ", + "hash": "25ed69d5934054eb837213ce9373c0c3", + "id": "1233301", + "profile": { + "bust": "83", + "height": "156", + "hip": "86", + "waist": "58", + "weight": "43" + } + }, + { + "alias_name": "カラフルリフレッシュ", + "alias_name_display": "カラフルリフレッシュ", + "hash": "d5ee7f424c9e5017b44623633cf2a1a1", + "id": "1333302", + "profile": { + "bust": "83", + "height": "156", + "hip": "86", + "waist": "58", + "weight": "43" + } + }, + { + "alias_name": "ロワイヤルハート", + "alias_name_display": "ロワイヤルハート", + "event": [ + { + "event_id": 802, + "event_name": "第2回アイドルLIVEロワイヤル" + } + ], + "hash": "8cfe9ef767466eb45c547062a317718b", + "id": "1411001", + "profile": { + "bust": "83", + "height": "156", + "hip": "86", + "waist": "58", + "weight": "43" + } + }, + { + "alias_name": "ロワイヤルハート", + "alias_name_display": "ロワイヤルハート", + "event": [ + { + "event_id": 802, + "event_name": "第2回アイドルLIVEロワイヤル" + } + ], + "hash": "a7cc8e895c42ead2442b9492e36223d5", + "id": "1511002", + "profile": { + "bust": "83", + "height": "156", + "hip": "86", + "waist": "58", + "weight": "43" + } + }, + { + "alias_name": "キューティーチアー", + "alias_name_display": "キューティーチアー", + "event": [ + { + "event_id": 1506, + "event_name": "第6回チーム対抗トークバトルショー" + } + ], + "hash": "f4138dc94327dbcd4649e994dfa8cad0", + "id": "1431801", + "profile": { + "bust": "83", + "height": "156", + "hip": "86", + "waist": "58", + "weight": "43" + } + }, + { + "alias_name": "キューティーチアー", + "alias_name_display": "キューティーチアー", + "event": [ + { + "event_id": 1506, + "event_name": "第6回チーム対抗トークバトルショー" + } + ], + "hash": "eab519121d4491eb02a6ba19010da935", + "id": "1531802", + "profile": { + "bust": "83", + "height": "156", + "hip": "86", + "waist": "58", + "weight": "43" + } + } + ], + "idol_id": 29, + "idol_name": "松原早耶", + "idol_name_display": "松原早耶" + }, + { + "aliases": [ + { + "hash": "fe1ec011929547cd07d17bfa91432bd3", + "id": "1200401", + "profile": { + "bust": "92", + "height": "160", + "hip": "90", + "waist": "58", + "weight": "51" + } + }, + { + "hash": "da2577c3c6e142e7d0e4de14bee28538", + "id": "1300402", + "profile": { + "bust": "92", + "height": "160", + "hip": "90", + "waist": "58", + "weight": "51" + } + }, + { + "alias_name": "ゴスペルドレス", + "alias_name_display": "ゴスペルドレス", + "event": [ + { + "event_id": 208, + "event_name": "アイドルサバイバル聖歌響くクリスマス" + } + ], + "hash": "8feac8e96c99be975a2dcedd499734d3", + "id": "1206801", + "profile": { + "bust": "92", + "height": "160", + "hip": "90", + "waist": "58", + "weight": "51" + } + }, + { + "alias_name": "ゴスペルドレス", + "alias_name_display": "ゴスペルドレス", + "event": [ + { + "event_id": 208, + "event_name": "アイドルサバイバル聖歌響くクリスマス" + } + ], + "hash": "8bf6d88f7be269f26ecc0a82120d6c0d", + "id": "1306802", + "profile": { + "bust": "92", + "height": "160", + "hip": "90", + "waist": "58", + "weight": "51" + } + }, + { + "alias_name": "スウィートスノー", + "alias_name_display": "スウィートスノー", + "hash": "13c9b6c8cc387ff80d3dd1197d827093", + "id": "1213801", + "profile": { + "bust": "92", + "height": "160", + "hip": "90", + "waist": "58", + "weight": "51" + } + }, + { + "alias_name": "スウィートスノー", + "alias_name_display": "スウィートスノー", + "hash": "68945ac1a86d518a4ba0d7d3b6cf4242", + "id": "1313802", + "profile": { + "bust": "92", + "height": "160", + "hip": "90", + "waist": "58", + "weight": "51" + } + }, + { + "alias_name": "チャーミングメイト", + "alias_name_display": "チャーミングメイト", + "event": [ + { + "event_id": 520, + "event_name": "青春公演 シング・ア・ソング" + } + ], + "hash": "3ea19a7a283d7ccf8d67ebcecb3e9b03", + "id": "1322702", + "profile": { + "bust": "92", + "height": "160", + "hip": "90", + "waist": "58", + "weight": "51" + } + }, + { + "alias_name": "タラン・アフェール", + "alias_name_display": "タラン・アフェール", + "hash": "cf38d99062a9637022571c1f26584083", + "id": "1229701", + "profile": { + "bust": "92", + "height": "160", + "hip": "90", + "waist": "58", + "weight": "51" + } + }, + { + "alias_name": "タラン・アフェール", + "alias_name_display": "タラン・アフェール", + "hash": "110c4dcacd7c8645e9dd950465d5c451", + "id": "1329702", + "profile": { + "bust": "92", + "height": "160", + "hip": "90", + "waist": "58", + "weight": "51" + } + }, + { + "alias_name": "フリルドウェスタン", + "alias_name_display": "フリルドウェスタン", + "event": [ + { + "event_id": 512, + "event_name": "西部公演 ガンスリンガージャーニー" + } + ], + "hash": "379f16f5b227b81c72e2ccc4994bc538", + "id": "1414901", + "profile": { + "bust": "92", + "height": "160", + "hip": "90", + "waist": "58", + "weight": "51" + } + }, + { + "alias_name": "フリルドウェスタン", + "alias_name_display": "フリルドウェスタン", + "event": [ + { + "event_id": 512, + "event_name": "西部公演 ガンスリンガージャーニー" + } + ], + "hash": "b948b75ab52fd655f62eae3a3556e5ac", + "id": "1514902", + "profile": { + "bust": "92", + "height": "160", + "hip": "90", + "waist": "58", + "weight": "51" + } + }, + { + "alias_name": "エレガント・ロワイヤル", + "alias_name_display": "エレガント・ロワイヤル", + "event": [ + { + "event_id": 810, + "event_name": "アイドルLIVEロワイヤル バレンタインSP" + } + ], + "hash": "2e42528040b5fad260f931b71e04f0f4", + "id": "1422101", + "profile": { + "bust": "92", + "height": "160", + "hip": "90", + "waist": "58", + "weight": "51" + } + }, + { + "alias_name": "エレガント・ロワイヤル", + "alias_name_display": "エレガント・ロワイヤル", + "event": [ + { + "event_id": 810, + "event_name": "アイドルLIVEロワイヤル バレンタインSP" + } + ], + "hash": "58a0923135a9fcd5da1cedc3ccace8ba", + "id": "1522102", + "profile": { + "bust": "92", + "height": "160", + "hip": "90", + "waist": "58", + "weight": "51" + } + }, + { + "alias_name": "笑門福来", + "alias_name_display": "笑門福来", + "event": [ + { + "event_id": 719, + "event_name": "ドリームLIVEフェスティバル 節分SP" + } + ], + "hash": "b19bd4403fc12200e4ebb45a72a949bf", + "id": "1431001", + "profile": { + "bust": "92", + "height": "160", + "hip": "90", + "waist": "58", + "weight": "51" + } + }, + { + "alias_name": "笑門福来", + "alias_name_display": "笑門福来", + "event": [ + { + "event_id": 719, + "event_name": "ドリームLIVEフェスティバル 節分SP" + } + ], + "hash": "d6058e099d434e6a55b6c7db8011f43e", + "id": "1531002", + "profile": { + "bust": "92", + "height": "160", + "hip": "90", + "waist": "58", + "weight": "51" + } + }, + { + "alias_name": "エレガントチアー", + "alias_name_display": "エレガントチアー", + "event": [ + { + "event_id": 1511, + "event_name": "第11回チーム対抗トークバトルショー" + } + ], + "hash": "4dca0c21e5859981c0e9c239dc90f1ab", + "id": "1438601", + "profile": { + "bust": "92", + "height": "160", + "hip": "90", + "waist": "58", + "weight": "51" + } + }, + { + "alias_name": "エレガントチアー", + "alias_name_display": "エレガントチアー", + "event": [ + { + "event_id": 1511, + "event_name": "第11回チーム対抗トークバトルショー" + } + ], + "hash": "cfc329e650e8c8f39600ad33229d97db", + "id": "1538602", + "profile": { + "bust": "92", + "height": "160", + "hip": "90", + "waist": "58", + "weight": "51" + } + } + ], + "idol_id": 30, + "idol_name": "相原雪乃", + "idol_name_display": "相原雪乃" + }, + { + "aliases": [ + { + "hash": "1593bfefaa649ce28d0b586bbcee2c81", + "id": "1200501", + "profile": { + "bust": "83", + "height": "164", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "hash": "f80b6b94319b514fc4da98bd63edf140", + "id": "1300502", + "profile": { + "bust": "83", + "height": "164", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "湯けむり月夜", + "alias_name_display": "湯けむり月夜", + "hash": "653b56a1fafbb180fe1bc54e289e6168", + "id": "1212901", + "profile": { + "bust": "83", + "height": "164", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "湯けむり月夜", + "alias_name_display": "湯けむり月夜", + "hash": "8e14eb789abc0919c31084da84df7dfd", + "id": "1312902", + "profile": { + "bust": "83", + "height": "164", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "新春ガール", + "alias_name_display": "新春ガール", + "hash": "8b2b95f91390863d0aefcce275216963", + "id": "1225401", + "profile": { + "bust": "83", + "height": "164", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "新春ガール", + "alias_name_display": "新春ガール", + "hash": "f34fc01bea3aa407c5ce2a6d3f9bd90d", + "id": "1325402", + "profile": { + "bust": "83", + "height": "164", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "小悪魔メイド", + "alias_name_display": "小悪魔メイド", + "hash": "98ba7be0650ef8626d67e2402aa665eb", + "id": "1402801", + "profile": { + "bust": "83", + "height": "164", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "小悪魔メイド", + "alias_name_display": "小悪魔メイド", + "hash": "85c3f8d385513b9044698c7bd20056de", + "id": "1502802", + "profile": { + "bust": "83", + "height": "164", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ショコラバレンタイン", + "alias_name_display": "ショコラバレンタイン", + "event": [ + { + "event_id": 411, + "event_name": "アイドルプロデュース チョコレートフォーユー!" + } + ], + "hash": "731660756ad8c37fca4639324f94cd3e", + "id": "1412301", + "profile": { + "bust": "83", + "height": "164", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ショコラバレンタイン", + "alias_name_display": "ショコラバレンタイン", + "event": [ + { + "event_id": 411, + "event_name": "アイドルプロデュース チョコレートフォーユー!" + } + ], + "hash": "f8a00b18927c827e005cb9e6f6dd68a4", + "id": "1512302", + "profile": { + "bust": "83", + "height": "164", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ショコラ・スマイル", + "alias_name_display": "ショコラ・スマイル", + "event": [ + { + "event_id": 411, + "event_name": "アイドルプロデュース チョコレートフォーユー!" + } + ], + "hash": "d05bfa40e5b0eea86f7dc67e65d3b5cd", + "id": "1412401", + "profile": { + "bust": "83", + "height": "164", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ショコラ・スマイル", + "alias_name_display": "ショコラ・スマイル", + "event": [ + { + "event_id": 411, + "event_name": "アイドルプロデュース チョコレートフォーユー!" + } + ], + "hash": "c2e4546518d66324acc7e20c0296ea51", + "id": "1512402", + "profile": { + "bust": "83", + "height": "164", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "リーブル・ミニヨン", + "alias_name_display": "リーブル・ミニヨン", + "hash": "e137e975aa7d8f98998afd46715f9a04", + "id": "1413601", + "profile": { + "bust": "83", + "height": "164", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "リーブル・ミニヨン", + "alias_name_display": "リーブル・ミニヨン", + "hash": "2302f78e3b6c45755ac806fcda036bf7", + "id": "1513602", + "profile": { + "bust": "83", + "height": "164", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "渚のマドモワゼル", + "alias_name_display": "渚のマドモワゼル", + "event": [ + { + "event_id": 1104, + "event_name": "プロダクション対抗トークバトルショーinSUMMER" + } + ], + "hash": "3c65d08696e1a10087ad8c9f7c8460ce", + "id": "1417401", + "profile": { + "bust": "83", + "height": "164", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "渚のマドモワゼル", + "alias_name_display": "渚のマドモワゼル", + "event": [ + { + "event_id": 1104, + "event_name": "プロダクション対抗トークバトルショーinSUMMER" + } + ], + "hash": "5196bf41a2d9d73524e78bd6164559e5", + "id": "1517402", + "profile": { + "bust": "83", + "height": "164", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "カドー・ド・ノエル", + "alias_name_display": "カドー・ド・ノエル", + "hash": "cf269d80bd21af84f56b57b48d21388d", + "id": "1420701", + "profile": { + "bust": "83", + "height": "164", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "カドー・ド・ノエル", + "alias_name_display": "カドー・ド・ノエル", + "hash": "5c4c3e1c99e854f47febc5ef5ae40d74", + "id": "1520702", + "profile": { + "bust": "83", + "height": "164", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "a86180b82411166bce9e0ee90f02b578", + "id": "1422001", + "profile": { + "bust": "83", + "height": "164", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "1570d7a1a0edd19717633e5df8c19842", + "id": "1522002", + "profile": { + "bust": "83", + "height": "164", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "レーブル・カプリシュー", + "alias_name_display": "レーブル・カプリシュー", + "hash": "1a58043805ce26870464007a4c92eb3d", + "id": "1424401", + "profile": { + "bust": "83", + "height": "164", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "レーブル・カプリシュー", + "alias_name_display": "レーブル・カプリシュー", + "hash": "9115963613f19ebcacb3378f581f8246", + "id": "1524402", + "profile": { + "bust": "83", + "height": "164", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "気まぐれアリス", + "alias_name_display": "気まぐれアリス", + "event": [ + { + "event_id": 1901, + "event_name": "童話公演 気まぐれアリスと不思議の国" + } + ], + "hash": "3815832491e393399209a0b9ae0e56ef", + "id": "1431901", + "profile": { + "bust": "83", + "height": "164", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "気まぐれアリス", + "alias_name_display": "気まぐれアリス", + "event": [ + { + "event_id": 1901, + "event_name": "童話公演 気まぐれアリスと不思議の国" + } + ], + "hash": "235d561428433ff56c4f2debd8316d7d", + "id": "1531902", + "profile": { + "bust": "83", + "height": "164", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "シンデレラドリーム", + "alias_name_display": "シンデレラドリーム", + "hash": "1189876e0b701fb5f80f8f4a36a19c87", + "id": "1435401", + "profile": { + "bust": "83", + "height": "164", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "シンデレラドリーム", + "alias_name_display": "シンデレラドリーム", + "hash": "ab148b33c781fb0345cd41403adb0424", + "id": "1535402", + "profile": { + "bust": "83", + "height": "164", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "マジードゥラネージュ", + "alias_name_display": "マジードゥラネージュ", + "event": [ + { + "event_id": 727, + "event_name": "第27回ドリームLIVEフェスティバル" + } + ], + "hash": "610702181bdfb81ec803df4813886aee", + "id": "1438101", + "profile": { + "bust": "83", + "height": "164", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "マジードゥラネージュ", + "alias_name_display": "マジードゥラネージュ", + "event": [ + { + "event_id": 727, + "event_name": "第27回ドリームLIVEフェスティバル" + } + ], + "hash": "09346bd07794d16a01ebdf62ea8fd570", + "id": "1538102", + "profile": { + "bust": "83", + "height": "164", + "hip": "85", + "waist": "57", + "weight": "46" + } + } + ], + "idol_id": 31, + "idol_name": "宮本フレデリカ", + "idol_name_display": "宮本フレデリカ", + "units": [ + { + "id": "36", + "name": "テンプテーション・アイズ" + }, + { + "id": "65", + "name": "レイジー・レイジー" + }, + { + "id": "74", + "name": "FrenchKisS" + }, + { + "id": "126", + "name": "誘惑イビル" + }, + { + "id": "155", + "name": "セレクテッド" + }, + { + "id": "185", + "name": "LiPPS" + }, + { + "id": "196", + "name": "la Roseraie" + }, + { + "id": "215", + "name": "Project:Krone" + } + ] + }, + { + "aliases": [ + { + "hash": "3d5441d51a3d93214ed9798cdb5b0fe1", + "id": "1200601", + "profile": { + "bust": "78", + "height": "148", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "hash": "00855389a2e307b18ddc7a716c4cd7ec", + "id": "1300602", + "profile": { + "bust": "78", + "height": "148", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "花火祭り", + "alias_name_display": "花火祭り", + "event": [ + { + "event_id": 408, + "event_name": "アイドルプロデュース 夜空に咲く花火編" + } + ], + "hash": "b75a1f1e9000341b7e348532de188052", + "id": "1210701", + "profile": { + "bust": "78", + "height": "148", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "花火祭り", + "alias_name_display": "花火祭り", + "event": [ + { + "event_id": 408, + "event_name": "アイドルプロデュース 夜空に咲く花火編" + } + ], + "hash": "16a850adb0df8850bb39fa591a3b8a87", + "id": "1310702", + "profile": { + "bust": "78", + "height": "148", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "花火祭りスマイル", + "alias_name_display": "花火祭りスマイル", + "event": [ + { + "event_id": 408, + "event_name": "アイドルプロデュース 夜空に咲く花火編" + } + ], + "hash": "5eb012ecd9dbc691372a60f46636dd34", + "id": "1210801", + "profile": { + "bust": "78", + "height": "148", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "花火祭りスマイル", + "alias_name_display": "花火祭りスマイル", + "event": [ + { + "event_id": 408, + "event_name": "アイドルプロデュース 夜空に咲く花火編" + } + ], + "hash": "a979654b88d8c984848c4da8bf8e27c4", + "id": "1310802", + "profile": { + "bust": "78", + "height": "148", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "夏の夜の天女", + "alias_name_display": "夏の夜の天女", + "hash": "ecf899616d8c2e0975790388263ef67e", + "id": "1402001", + "profile": { + "bust": "78", + "height": "148", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "夏の夜の天女", + "alias_name_display": "夏の夜の天女", + "hash": "ff5c24d7d8bf90932a79915818e7472c", + "id": "1502002", + "profile": { + "bust": "78", + "height": "148", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "はんなり京娘", + "alias_name_display": "はんなり京娘", + "hash": "519e953aad9d655e2d34f86a8d0ec5b8", + "id": "1409201", + "profile": { + "bust": "78", + "height": "148", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "はんなり京娘", + "alias_name_display": "はんなり京娘", + "hash": "418d73386126d2687fb901deddea1ef8", + "id": "1509202", + "profile": { + "bust": "78", + "height": "148", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "はんなりメイド", + "alias_name_display": "はんなりメイド", + "hash": "fe9fbbd7f57c090d38e2188a25300ebf", + "id": "1412701", + "profile": { + "bust": "78", + "height": "148", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "はんなりメイド", + "alias_name_display": "はんなりメイド", + "hash": "7f76cdc6826e9972671f90f9cad737ac", + "id": "1512702", + "profile": { + "bust": "78", + "height": "148", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "ff87a7aa4b5d9bf8401f1ae6e4e256fb", + "id": "1414001", + "profile": { + "bust": "78", + "height": "148", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "e601a27731e9218244b7171b8350314b", + "id": "1514002", + "profile": { + "bust": "78", + "height": "148", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "天衣の織姫", + "alias_name_display": "天衣の織姫", + "event": [ + { + "event_id": 707, + "event_name": "第7回ドリームLIVEフェスティバル" + } + ], + "hash": "5734c19bfc0b30b167ec301ed3c8644b", + "id": "1415401", + "profile": { + "bust": "78", + "height": "148", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "天衣の織姫", + "alias_name_display": "天衣の織姫", + "event": [ + { + "event_id": 707, + "event_name": "第7回ドリームLIVEフェスティバル" + } + ], + "hash": "8fcf2d3d5fb4cb79e4a95f1b24027258", + "id": "1515402", + "profile": { + "bust": "78", + "height": "148", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "シンデレラドリーム", + "alias_name_display": "シンデレラドリーム", + "hash": "1eaaea63a6986091fd536f7fc5aa13ae", + "id": "1419301", + "profile": { + "bust": "78", + "height": "148", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "シンデレラドリーム", + "alias_name_display": "シンデレラドリーム", + "hash": "4e99233eb7bec767f87545c9b24b84c9", + "id": "1519302", + "profile": { + "bust": "78", + "height": "148", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "白妙の絢姫", + "alias_name_display": "白妙の絢姫", + "hash": "d5790f3f26a34f04e6dca27719fa49b6", + "id": "1423701", + "profile": { + "bust": "78", + "height": "148", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "白妙の絢姫", + "alias_name_display": "白妙の絢姫", + "hash": "bcfc346a8bebc8b91b6c2a4db68af955", + "id": "1523702", + "profile": { + "bust": "78", + "height": "148", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "大和のこころ", + "alias_name_display": "大和のこころ", + "event": [ + { + "event_id": 1207, + "event_name": "目指せ大和撫子 アイドルチャレンジ" + } + ], + "hash": "c8543757f2537f22c13e39998c652da4", + "id": "1427501", + "profile": { + "bust": "78", + "height": "148", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "大和のこころ", + "alias_name_display": "大和のこころ", + "event": [ + { + "event_id": 1207, + "event_name": "目指せ大和撫子 アイドルチャレンジ" + } + ], + "hash": "ffe272a5090faa227b489ea020f69a00", + "id": "1527502", + "profile": { + "bust": "78", + "height": "148", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "銀幕の綺羅星", + "alias_name_display": "銀幕の綺羅星", + "event": [ + { + "event_id": "028", + "event_name": "第28回プロダクションマッチフェスティバル" + } + ], + "hash": "943bd10489f8c2681b5cfc48f9168190", + "id": "1433001", + "profile": { + "bust": "78", + "height": "148", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "銀幕の綺羅星", + "alias_name_display": "銀幕の綺羅星", + "event": [ + { + "event_id": "028", + "event_name": "第28回プロダクションマッチフェスティバル" + } + ], + "hash": "183e353992ea4ae9795f5951b56cbd14", + "id": "1533002", + "profile": { + "bust": "78", + "height": "148", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "風光る乙姫", + "alias_name_display": "風光る乙姫", + "hash": "748375361f27cc443ffefeb77ed71053", + "id": "1436501", + "profile": { + "bust": "78", + "height": "148", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "風光る乙姫", + "alias_name_display": "風光る乙姫", + "hash": "d5e657f5ec28629effc2da211cd79455", + "id": "1536502", + "profile": { + "bust": "78", + "height": "148", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "万代の藤波", + "alias_name_display": "万代の藤波", + "event": [ + { + "event_id": 729, + "event_name": "ドリームLIVEフェスティバル ゴールデンウィークSP" + } + ], + "hash": "13f68f7a37bdcbf6eb4292f0f1473ef3", + "id": "1439901", + "profile": { + "bust": "78", + "height": "148", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "万代の藤波", + "alias_name_display": "万代の藤波", + "event": [ + { + "event_id": 729, + "event_name": "ドリームLIVEフェスティバル ゴールデンウィークSP" + } + ], + "hash": "76301262a0d6d164f8d35b6148bc96cb", + "id": "1539902", + "profile": { + "bust": "78", + "height": "148", + "hip": "80", + "waist": "56", + "weight": "42" + } + } + ], + "idol_id": 32, + "idol_name": "小早川紗枝", + "idol_name_display": "小早川紗枝", + "units": [ + { + "id": "41", + "name": "羽衣小町" + }, + { + "id": "43", + "name": "春色姫君" + }, + { + "id": "131", + "name": "KBYD" + }, + { + "id": "179", + "name": "春霞" + }, + { + "id": "194", + "name": "サクヤヒメ" + } + ] + }, + { + "aliases": [ + { + "hash": "20867159bc2a902527f5dc0efa76d68b", + "id": "1200701", + "profile": { + "bust": "87", + "height": "156", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "hash": "68d5be6e1422d20d4577bfd9fb25929d", + "id": "1300702", + "profile": { + "bust": "87", + "height": "156", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "クッキングチャレンジ", + "alias_name_display": "クッキングチャレンジ", + "event": [ + { + "event_id": 409, + "event_name": "アイドルプロデュース チャレンジクッキング イタリアン編" + } + ], + "hash": "88337a408516e2ea72ba8a25b69d3739", + "id": "1212101", + "profile": { + "bust": "87", + "height": "156", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "クッキングチャレンジ", + "alias_name_display": "クッキングチャレンジ", + "event": [ + { + "event_id": 409, + "event_name": "アイドルプロデュース チャレンジクッキング イタリアン編" + } + ], + "hash": "b0fc0a3b34f1dc4d7015ff992748d787", + "id": "1312102", + "profile": { + "bust": "87", + "height": "156", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "クッキング・スマイル", + "alias_name_display": "クッキング・スマイル", + "event": [ + { + "event_id": 409, + "event_name": "アイドルプロデュース チャレンジクッキング イタリアン編" + } + ], + "hash": "0e9052e6674c415cf96e05e2c47d87ae", + "id": "1212201", + "profile": { + "bust": "87", + "height": "156", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "クッキング・スマイル", + "alias_name_display": "クッキング・スマイル", + "event": [ + { + "event_id": 409, + "event_name": "アイドルプロデュース チャレンジクッキング イタリアン編" + } + ], + "hash": "50f91b233f108e33aca3854c2131ce91", + "id": "1312202", + "profile": { + "bust": "87", + "height": "156", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "トキメキバレンタイン", + "alias_name_display": "トキメキバレンタイン", + "hash": "891d3b2a397131fe10041331ec76579f", + "id": "1214501", + "profile": { + "bust": "87", + "height": "156", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "トキメキバレンタイン", + "alias_name_display": "トキメキバレンタイン", + "hash": "02b77809766989d951dbd71427bc8b4e", + "id": "1314502", + "profile": { + "bust": "87", + "height": "156", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "サマーシーズン", + "alias_name_display": "サマーシーズン", + "hash": "2ca808c34dd608a715ca7dc12abd7e61", + "id": "1222501", + "profile": { + "bust": "87", + "height": "156", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "サマーシーズン", + "alias_name_display": "サマーシーズン", + "hash": "5a3472d22bd7713b226d50f93fd35010", + "id": "1322502", + "profile": { + "bust": "87", + "height": "156", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "スウィートフィール", + "alias_name_display": "スウィートフィール", + "event": [ + { + "event_id": 717, + "event_name": "第17回ドリームLIVEフェスティバル" + } + ], + "hash": "99baa4962244767d412e5585b86a318c", + "id": "1324302", + "profile": { + "bust": "87", + "height": "156", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "はりきりお嬢様", + "alias_name_display": "はりきりお嬢様", + "hash": "a12d2df2bf89c7eb4c9c79c85589d4bf", + "id": "1403801", + "profile": { + "bust": "87", + "height": "156", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "はりきりお嬢様", + "alias_name_display": "はりきりお嬢様", + "hash": "916bedb06316876a193675b005b9e65d", + "id": "1503802", + "profile": { + "bust": "87", + "height": "156", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "花園の春風", + "alias_name_display": "花園の春風", + "event": [ + { + "event_id": 213, + "event_name": "アイドルサバイバルinフラワーガーデン" + } + ], + "hash": "a3bb548475ded39750363881d0d9e565", + "id": "1413901", + "profile": { + "bust": "87", + "height": "156", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "花園の春風", + "alias_name_display": "花園の春風", + "event": [ + { + "event_id": 213, + "event_name": "アイドルサバイバルinフラワーガーデン" + } + ], + "hash": "46a013ca127d7f819c23d119e7a7edda", + "id": "1513902", + "profile": { + "bust": "87", + "height": "156", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ココロ晴れ模様", + "alias_name_display": "ココロ晴れ模様", + "hash": "67aeacd0ecebf79e4dff4b81b17933ea", + "id": "1419201", + "profile": { + "bust": "87", + "height": "156", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ココロ晴れ模様", + "alias_name_display": "ココロ晴れ模様", + "hash": "6a0ab809266438988129412e3b3c0a2f", + "id": "1519202", + "profile": { + "bust": "87", + "height": "156", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "絢爛華麗", + "alias_name_display": "絢爛華麗", + "event": [ + { + "event_id": 1205, + "event_name": "目指せ優雅なお嬢様 アイドルチャレンジ" + } + ], + "hash": "f8e37de970056cb819e9b634f5ed3b50", + "id": "1422501", + "profile": { + "bust": "87", + "height": "156", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "絢爛華麗", + "alias_name_display": "絢爛華麗", + "event": [ + { + "event_id": 1205, + "event_name": "目指せ優雅なお嬢様 アイドルチャレンジ" + } + ], + "hash": "b94d27f8bf6ebca0baf1ddc7f0b58cd1", + "id": "1522502", + "profile": { + "bust": "87", + "height": "156", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "トロピカルサマー", + "alias_name_display": "トロピカルサマー", + "event": [ + { + "event_id": 723, + "event_name": "水着DEドリームLIVEフェスティバル" + } + ], + "hash": "0732aa4adbd00581535c13bcaf43b50c", + "id": "1434401", + "profile": { + "bust": "87", + "height": "156", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "トロピカルサマー", + "alias_name_display": "トロピカルサマー", + "event": [ + { + "event_id": 723, + "event_name": "水着DEドリームLIVEフェスティバル" + } + ], + "hash": "85a78a16c15d828a821e3be821b3793c", + "id": "1534402", + "profile": { + "bust": "87", + "height": "156", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "セレブリティロード", + "alias_name_display": "セレブリティロード", + "event": [ + { + "event_id": 822, + "event_name": "第22回アイドルLIVEロワイヤル" + } + ], + "hash": "4432b1bb442fe24e22c44557b583eab5", + "id": "1439001", + "profile": { + "bust": "87", + "height": "156", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "セレブリティロード", + "alias_name_display": "セレブリティロード", + "event": [ + { + "event_id": 822, + "event_name": "第22回アイドルLIVEロワイヤル" + } + ], + "hash": "37f641a6738f8d5735db957a37b781ae", + "id": "1539002", + "profile": { + "bust": "87", + "height": "156", + "hip": "85", + "waist": "57", + "weight": "46" + } + } + ], + "idol_id": 33, + "idol_name": "西園寺琴歌", + "idol_name_display": "西園寺琴歌", + "units": [ + { + "id": "51", + "name": "フィオレンティナ" + }, + { + "id": "96", + "name": "チャレンジクッキング" + }, + { + "id": "134", + "name": "ノーブルセレブリティ" + } + ] + }, + { + "aliases": [ + { + "hash": "f6db9a4a1e364bf7da838ed3dce77f97", + "id": "1200801", + "profile": { + "bust": "?", + "height": "139", + "hip": "?", + "waist": "?", + "weight": "30" + } + }, + { + "hash": "28407ac006ec510467814e7b512f0a06", + "id": "1300802", + "profile": { + "bust": "?", + "height": "139", + "hip": "?", + "waist": "?", + "weight": "30" + } + }, + { + "alias_name": "夏休み", + "alias_name_display": "夏休み", + "event": [ + { + "event_id": 413, + "event_name": "みんなのなつやすみ" + } + ], + "hash": "4708ed7e50952392ecc752f78a2fc494", + "id": "1317402", + "profile": { + "bust": "?", + "height": "139", + "hip": "?", + "waist": "?", + "weight": "30" + } + }, + { + "alias_name": "笑顔の夏休み", + "alias_name_display": "笑顔の夏休み", + "event": [ + { + "event_id": 413, + "event_name": "みんなのなつやすみ" + } + ], + "hash": "8c4a37be2aaa7ad189f5de329a9fd45b", + "id": "1317502", + "profile": { + "bust": "?", + "height": "139", + "hip": "?", + "waist": "?", + "weight": "30" + } + }, + { + "alias_name": "ハイカラサクラ", + "alias_name_display": "ハイカラサクラ", + "hash": "be6b498b2324fa909e6ad58fa03e875e", + "id": "1221001", + "profile": { + "bust": "?", + "height": "139", + "hip": "?", + "waist": "?", + "weight": "30" + } + }, + { + "alias_name": "ハイカラサクラ", + "alias_name_display": "ハイカラサクラ", + "hash": "bcc92a7d693443ae50353418e9f01e87", + "id": "1321002", + "profile": { + "bust": "?", + "height": "139", + "hip": "?", + "waist": "?", + "weight": "30" + } + }, + { + "alias_name": "だらだら妖精", + "alias_name_display": "だらだら妖精", + "hash": "fa5391c4ffc5f3aaaab8f4be52e4ede2", + "id": "1400801", + "profile": { + "bust": "?", + "height": "139", + "hip": "?", + "waist": "?", + "weight": "30" + } + }, + { + "alias_name": "だらだら妖精", + "alias_name_display": "だらだら妖精", + "hash": "06bf3b4fc27d472d11c5735d4bf1008c", + "id": "1500802", + "profile": { + "bust": "?", + "height": "139", + "hip": "?", + "waist": "?", + "weight": "30" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "f67ab6bb27463ff30c1bf3eb9e30c205", + "id": "1401601", + "profile": { + "bust": "?", + "height": "139", + "hip": "?", + "waist": "?", + "weight": "30" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "0749a5f548083353b1c06f7a71ea2796", + "id": "1501602", + "profile": { + "bust": "?", + "height": "139", + "hip": "?", + "waist": "?", + "weight": "30" + } + }, + { + "alias_name": "ハロウィンぷちデビル", + "alias_name_display": "ハロウィンぷちデビル", + "hash": "d48d11a6d14755a40c497076b2010f6e", + "id": "1403001", + "profile": { + "bust": "?", + "height": "139", + "hip": "?", + "waist": "?", + "weight": "30" + } + }, + { + "alias_name": "ハロウィンぷちデビル", + "alias_name_display": "ハロウィンぷちデビル", + "hash": "68be112533136c5b5838059c76802622", + "id": "1503002", + "profile": { + "bust": "?", + "height": "139", + "hip": "?", + "waist": "?", + "weight": "30" + } + }, + { + "alias_name": "だだっ子お姫さま", + "alias_name_display": "だだっ子お姫さま", + "hash": "9e3d3bf199e1b48a4f973abcd484d078", + "id": "1405901", + "profile": { + "bust": "?", + "height": "139", + "hip": "?", + "waist": "?", + "weight": "30" + } + }, + { + "alias_name": "だだっ子お姫さま", + "alias_name_display": "だだっ子お姫さま", + "hash": "2519a9de93e6cf2e5fee9e4cb9776afe", + "id": "1505902", + "profile": { + "bust": "?", + "height": "139", + "hip": "?", + "waist": "?", + "weight": "30" + } + }, + { + "alias_name": "新春の甘姫", + "alias_name_display": "新春の甘姫", + "hash": "fda6831b48d56bb489de02a54b6e5c1e", + "id": "1411401", + "profile": { + "bust": "?", + "height": "139", + "hip": "?", + "waist": "?", + "weight": "30" + } + }, + { + "alias_name": "新春の甘姫", + "alias_name_display": "新春の甘姫", + "hash": "bc7ab362d3fa9c3bbb60bad0f61efded", + "id": "1511402", + "profile": { + "bust": "?", + "height": "139", + "hip": "?", + "waist": "?", + "weight": "30" + } + }, + { + "alias_name": "ワンダフルマジック", + "alias_name_display": "ワンダフルマジック", + "hash": "451734e83549281289ac3b275f16855c", + "id": "1413201", + "profile": { + "bust": "?", + "height": "139", + "hip": "?", + "waist": "?", + "weight": "30" + } + }, + { + "alias_name": "ワンダフルマジック", + "alias_name_display": "ワンダフルマジック", + "hash": "f86d864ff653884e26e6f2c63457bb11", + "id": "1513202", + "profile": { + "bust": "?", + "height": "139", + "hip": "?", + "waist": "?", + "weight": "30" + } + }, + { + "alias_name": "杏の夏休み", + "alias_name_display": "杏の夏休み", + "event": [ + { + "event_id": 413, + "event_name": "みんなのなつやすみ" + } + ], + "hash": "2141fdb8ac6c65306f07450a0b6e4690", + "id": "1415901", + "profile": { + "bust": "?", + "height": "139", + "hip": "?", + "waist": "?", + "weight": "30" + } + }, + { + "alias_name": "杏の夏休み", + "alias_name_display": "杏の夏休み", + "event": [ + { + "event_id": 413, + "event_name": "みんなのなつやすみ" + } + ], + "hash": "8239f7fd13b7716ec6bce3eff0de15cf", + "id": "1515902", + "profile": { + "bust": "?", + "height": "139", + "hip": "?", + "waist": "?", + "weight": "30" + } + }, + { + "alias_name": "ノーアイドル・ノーライフ", + "alias_name_display": "ノーアイドル・ノーライフ", + "hash": "fb27330f9cd9285f01e38151db642b5b", + "id": "1518802", + "profile": { + "bust": "?", + "height": "139", + "hip": "?", + "waist": "?", + "weight": "30" + } + }, + { + "alias_name": "G4U!", + "alias_name_display": "G4U!", + "hash": "c49fa50c14b052775646fe00e1bf7faf", + "id": "1525902", + "profile": { + "bust": "?", + "height": "139", + "hip": "?", + "waist": "?", + "weight": "30" + } + }, + { + "alias_name": "キャンディアイランド", + "alias_name_display": "キャンディアイランド", + "hash": "f3b18751e845843846fc93062cc3409a", + "id": "1526802", + "profile": { + "bust": "?", + "height": "139", + "hip": "?", + "waist": "?", + "weight": "30" + } + }, + { + "alias_name": "わがままサンタ", + "alias_name_display": "わがままサンタ", + "hash": "b565fc1857e5773d5aa49d06a90fa4d2", + "id": "1429501", + "profile": { + "bust": "?", + "height": "139", + "hip": "?", + "waist": "?", + "weight": "30" + } + }, + { + "alias_name": "わがままサンタ", + "alias_name_display": "わがままサンタ", + "hash": "333da524bde405e4ce1612183eb8971b", + "id": "1529502", + "profile": { + "bust": "?", + "height": "139", + "hip": "?", + "waist": "?", + "weight": "30" + } + }, + { + "alias_name": "ハッピーライフワーク", + "alias_name_display": "ハッピーライフワーク", + "hash": "7363848059cb366197a23423e4b50718", + "id": "1432901", + "profile": { + "bust": "?", + "height": "139", + "hip": "?", + "waist": "?", + "weight": "30" + } + }, + { + "alias_name": "ハッピーライフワーク", + "alias_name_display": "ハッピーライフワーク", + "hash": "f3146fec776d68a022b7424198d733df", + "id": "1532902", + "profile": { + "bust": "?", + "height": "139", + "hip": "?", + "waist": "?", + "weight": "30" + } + }, + { + "alias_name": "あんずのきもち", + "alias_name_display": "あんずのきもち", + "hash": "29daabf3b7a002ea14915a6655fd080b", + "id": "1438201", + "profile": { + "bust": "?", + "height": "139", + "hip": "?", + "waist": "?", + "weight": "30" + } + }, + { + "alias_name": "あんずのきもち", + "alias_name_display": "あんずのきもち", + "hash": "458454502049072b7c4f264362088614", + "id": "1538202", + "profile": { + "bust": "?", + "height": "139", + "hip": "?", + "waist": "?", + "weight": "30" + } + } + ], + "idol_id": 34, + "idol_name": "双葉杏", + "idol_name_display": "双葉杏", + "units": [ + { + "id": "76", + "name": "HappyHappyTwin" + }, + { + "id": "137", + "name": "CANDY ISLAND" + }, + { + "id": "158", + "name": "ハイカラサクラ" + }, + { + "id": "186", + "name": "LittlePOPS" + }, + { + "id": "195", + "name": "C5" + }, + { + "id": "213", + "name": "CINDERELLA PROJECT" + } + ] + }, + { + "aliases": [ + { + "hash": "0b9a4389717199d57e7001d411c67791", + "id": "1200901", + "profile": { + "bust": "82", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "41" + } + }, + { + "hash": "07c7b962d538e859602c9c6859faf8fe", + "id": "1300902", + "profile": { + "bust": "82", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "41" + } + }, + { + "alias_name": "制服コレクション", + "alias_name_display": "制服コレクション", + "hash": "84be1e67e057d843bd0eb46f1540d18c", + "id": "1203801", + "profile": { + "bust": "82", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "41" + } + }, + { + "alias_name": "制服コレクション", + "alias_name_display": "制服コレクション", + "hash": "753750c2b678c8617ce06d6ca935b48c", + "id": "1303802", + "profile": { + "bust": "82", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "41" + } + }, + { + "alias_name": "トキメキバレンタイン", + "alias_name_display": "トキメキバレンタイン", + "hash": "5c830b15548cf9f8c0b706feb765dc48", + "id": "1214601", + "profile": { + "bust": "82", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "41" + } + }, + { + "alias_name": "トキメキバレンタイン", + "alias_name_display": "トキメキバレンタイン", + "hash": "314b709e14f033b561333be1667c2a88", + "id": "1314602", + "profile": { + "bust": "82", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "41" + } + }, + { + "alias_name": "ブシドーナデシコ", + "alias_name_display": "ブシドーナデシコ", + "hash": "258c7d9292272921ae3731d3ffe239d9", + "id": "1218201", + "profile": { + "bust": "82", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "41" + } + }, + { + "alias_name": "ブシドーナデシコ", + "alias_name_display": "ブシドーナデシコ", + "hash": "e8fda8efaad9a349b6a7071d0e10e0b4", + "id": "1318202", + "profile": { + "bust": "82", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "41" + } + }, + { + "alias_name": "ガーリースタイル", + "alias_name_display": "ガーリースタイル", + "hash": "c388718bcf729ef026da145417f86ac3", + "id": "1224601", + "profile": { + "bust": "82", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "41" + } + }, + { + "alias_name": "ガーリースタイル", + "alias_name_display": "ガーリースタイル", + "hash": "f7a27f37ed56823171d7ec434280b94a", + "id": "1324602", + "profile": { + "bust": "82", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "41" + } + }, + { + "alias_name": "ウェディングセレモニー", + "alias_name_display": "ウェディングセレモニー", + "hash": "70371c6e3790ad4e7a6aa6a3d835313a", + "id": "1228401", + "profile": { + "bust": "82", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "41" + } + }, + { + "alias_name": "ウェディングセレモニー", + "alias_name_display": "ウェディングセレモニー", + "hash": "645f9c84d5e3470979cb9ae80078cfba", + "id": "1328402", + "profile": { + "bust": "82", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "41" + } + }, + { + "alias_name": "繚乱の舞姫", + "alias_name_display": "繚乱の舞姫", + "event": [ + { + "event_id": 501, + "event_name": "アイドルLIVEツアーinUSA" + } + ], + "hash": "0d69d20741d3e2ded57afe1265e01c1b", + "id": "1403701", + "profile": { + "bust": "82", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "41" + } + }, + { + "alias_name": "繚乱の舞姫", + "alias_name_display": "繚乱の舞姫", + "event": [ + { + "event_id": 501, + "event_name": "アイドルLIVEツアーinUSA" + } + ], + "hash": "658f3b5d8a57402d73f6f5b8fbf98179", + "id": "1503702", + "profile": { + "bust": "82", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "41" + } + }, + { + "alias_name": "ハートフェルトパーティー", + "alias_name_display": "ハートフェルトパーティー", + "event": [ + { + "event_id": "011", + "event_name": "第11回プロダクションマッチフェスティバル" + } + ], + "hash": "3e2f37c00261808dcbf8415535d34084", + "id": "1407701", + "profile": { + "bust": "82", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "41" + } + }, + { + "alias_name": "ハートフェルトパーティー", + "alias_name_display": "ハートフェルトパーティー", + "event": [ + { + "event_id": "011", + "event_name": "第11回プロダクションマッチフェスティバル" + } + ], + "hash": "25757551fc8ff326f8b928b50228303c", + "id": "1507702", + "profile": { + "bust": "82", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "41" + } + }, + { + "alias_name": "幸福娘々", + "alias_name_display": "幸福娘々", + "event": [ + { + "event_id": 711, + "event_name": "福は内DEドリームLIVEフェスティバル" + } + ], + "hash": "bdccb733796bcc6f371daf922723613a", + "id": "1421801", + "profile": { + "bust": "82", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "41" + } + }, + { + "alias_name": "幸福娘々", + "alias_name_display": "幸福娘々", + "event": [ + { + "event_id": 711, + "event_name": "福は内DEドリームLIVEフェスティバル" + } + ], + "hash": "3540dfd706534f58264d1b479f3e8344", + "id": "1521802", + "profile": { + "bust": "82", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "41" + } + }, + { + "alias_name": "玲瓏水晶", + "alias_name_display": "玲瓏水晶", + "event": [ + { + "event_id": 812, + "event_name": "第12回アイドルLIVEロワイヤル" + } + ], + "hash": "4f20573d3dff91b7701a154fc841e1cc", + "id": "1424501", + "profile": { + "bust": "82", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "41" + } + }, + { + "alias_name": "玲瓏水晶", + "alias_name_display": "玲瓏水晶", + "event": [ + { + "event_id": 812, + "event_name": "第12回アイドルLIVEロワイヤル" + } + ], + "hash": "c46b6174a69648b148c8856a9991ee3b", + "id": "1524502", + "profile": { + "bust": "82", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "41" + } + }, + { + "alias_name": "加油チアー", + "alias_name_display": "加油チアー", + "event": [ + { + "event_id": 1510, + "event_name": "チーム対抗トークバトルショー オールスターSP" + } + ], + "hash": "ec67c8c8a52a99a464d17895c38bacb0", + "id": "1437401", + "profile": { + "bust": "82", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "41" + } + }, + { + "alias_name": "加油チアー", + "alias_name_display": "加油チアー", + "event": [ + { + "event_id": 1510, + "event_name": "チーム対抗トークバトルショー オールスターSP" + } + ], + "hash": "6f2cef2655f476d2f3f6ea80d8f481ec", + "id": "1537402", + "profile": { + "bust": "82", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "41" + } + } + ], + "idol_id": 35, + "idol_name": "楊菲菲", + "idol_name_display": "楊菲菲", + "units": [ + { + "id": "26", + "name": "スクールガールフレンズ" + }, + { + "id": "178", + "name": "からぱれ" + } + ] + }, + { + "aliases": [ + { + "hash": "4efc876705241a31f7ecf57ae3dc8ef4", + "id": "1201001", + "profile": { + "bust": "80", + "height": "145", + "hip": "78", + "waist": "55", + "weight": "40" + } + }, + { + "hash": "fa6d973aa7f7b480fa96338ffecc9ed9", + "id": "1301002", + "profile": { + "bust": "80", + "height": "145", + "hip": "78", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "桜祭り", + "alias_name_display": "桜祭り", + "event": [ + { + "event_id": 406, + "event_name": "アイドルプロデュース 春の桜祭り編" + } + ], + "hash": "963b05e86daf038003b417060a1646ed", + "id": "1208801", + "profile": { + "bust": "80", + "height": "145", + "hip": "78", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "桜祭り", + "alias_name_display": "桜祭り", + "event": [ + { + "event_id": 406, + "event_name": "アイドルプロデュース 春の桜祭り編" + } + ], + "hash": "72e2b4dade433fec680531a9839da725", + "id": "1308802", + "profile": { + "bust": "80", + "height": "145", + "hip": "78", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "桜祭りスマイル", + "alias_name_display": "桜祭りスマイル", + "event": [ + { + "event_id": 406, + "event_name": "アイドルプロデュース 春の桜祭り編" + } + ], + "hash": "55689885ba0c5749221b56330494a77a", + "id": "1208901", + "profile": { + "bust": "80", + "height": "145", + "hip": "78", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "桜祭りスマイル", + "alias_name_display": "桜祭りスマイル", + "event": [ + { + "event_id": 406, + "event_name": "アイドルプロデュース 春の桜祭り編" + } + ], + "hash": "f0514789e4b35f9e8d4086e85bfa43ed", + "id": "1308902", + "profile": { + "bust": "80", + "height": "145", + "hip": "78", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "フレンズ大作戦", + "alias_name_display": "フレンズ大作戦", + "hash": "096928f93993001378e0a9dfa0e84d77", + "id": "1216901", + "profile": { + "bust": "80", + "height": "145", + "hip": "78", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "フレンズ大作戦", + "alias_name_display": "フレンズ大作戦", + "hash": "0574e12bd0b603f118f7961ba4c3e72c", + "id": "1316902", + "profile": { + "bust": "80", + "height": "145", + "hip": "78", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "サマーバケーション", + "alias_name_display": "サマーバケーション", + "hash": "5972a0d0eacd1baf011aaead666663fa", + "id": "1222901", + "profile": { + "bust": "80", + "height": "145", + "hip": "78", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "サマーバケーション", + "alias_name_display": "サマーバケーション", + "hash": "fd84cd6a9120f8ffcafa17c834e6d421", + "id": "1322902", + "profile": { + "bust": "80", + "height": "145", + "hip": "78", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "秋の学園祭", + "alias_name_display": "秋の学園祭", + "hash": "72271817bbcfa730bf3454c26f94eaff", + "id": "1230101", + "profile": { + "bust": "80", + "height": "145", + "hip": "78", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "秋の学園祭", + "alias_name_display": "秋の学園祭", + "hash": "ea55478abc68ac42807e04ff2164cabe", + "id": "1330102", + "profile": { + "bust": "80", + "height": "145", + "hip": "78", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "まごころメイド", + "alias_name_display": "まごころメイド", + "hash": "24bcddb9bcf4f50c23e64b2657329db3", + "id": "1233001", + "profile": { + "bust": "80", + "height": "145", + "hip": "78", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "まごころメイド", + "alias_name_display": "まごころメイド", + "hash": "4dd815b7097a2487a982d3d071b570ab", + "id": "1333002", + "profile": { + "bust": "80", + "height": "145", + "hip": "78", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "艶娘大作戦", + "alias_name_display": "艶娘大作戦", + "event": [ + { + "event_id": 201, + "event_name": "アイドルサバイバル" + } + ], + "hash": "46378cb4d0fffad00600ba63d8a2d183", + "id": "1400701", + "profile": { + "bust": "80", + "height": "145", + "hip": "78", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "艶娘大作戦", + "alias_name_display": "艶娘大作戦", + "event": [ + { + "event_id": 201, + "event_name": "アイドルサバイバル" + } + ], + "hash": "7e6f804d5a9f4f886b637c99669b2ee0", + "id": "1500702", + "profile": { + "bust": "80", + "height": "145", + "hip": "78", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "湯けむり大作戦", + "alias_name_display": "湯けむり大作戦", + "hash": "0e28275081099ed145f74b056ec0e813", + "id": "1403501", + "profile": { + "bust": "80", + "height": "145", + "hip": "78", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "湯けむり大作戦", + "alias_name_display": "湯けむり大作戦", + "hash": "2b2ccaa519a19a25d519eb2b35aac5a1", + "id": "1503502", + "profile": { + "bust": "80", + "height": "145", + "hip": "78", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "メルヘン大作戦", + "alias_name_display": "メルヘン大作戦", + "hash": "cebea77bf64e2434c3ecafd915d2d8d2", + "id": "1408501", + "profile": { + "bust": "80", + "height": "145", + "hip": "78", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "メルヘン大作戦", + "alias_name_display": "メルヘン大作戦", + "hash": "e0d8ee3ba65f7a1db58ab820537d8665", + "id": "1508502", + "profile": { + "bust": "80", + "height": "145", + "hip": "78", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "ロワイヤル・スクエア", + "alias_name_display": "ロワイヤル・スクエア", + "event": [ + { + "event_id": 809, + "event_name": "第9回アイドルLIVEロワイヤル" + } + ], + "hash": "dbea89c47dd5b612f5c1d0a802c77d19", + "id": "1421301", + "profile": { + "bust": "80", + "height": "145", + "hip": "78", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "ロワイヤル・スクエア", + "alias_name_display": "ロワイヤル・スクエア", + "event": [ + { + "event_id": 809, + "event_name": "第9回アイドルLIVEロワイヤル" + } + ], + "hash": "5c926c00a2911519dcdaec1349c4297f", + "id": "1521302", + "profile": { + "bust": "80", + "height": "145", + "hip": "78", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "チャイナ大作戦", + "alias_name_display": "チャイナ大作戦", + "hash": "f7a21d6187b06fa18ed0bf215310a7cb", + "id": "1432501", + "profile": { + "bust": "80", + "height": "145", + "hip": "78", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "チャイナ大作戦", + "alias_name_display": "チャイナ大作戦", + "hash": "cf166d5c57c0446980b7393d66318f22", + "id": "1532502", + "profile": { + "bust": "80", + "height": "145", + "hip": "78", + "waist": "55", + "weight": "40" + } + } + ], + "idol_id": 36, + "idol_name": "桃井あずき", + "idol_name_display": "桃井あずき", + "units": [ + { + "id": "88", + "name": "桜花小町" + }, + { + "id": "163", + "name": "フリルドスクエア" + } + ] + }, + { + "aliases": [ + { + "hash": "e25bfc4f11de8a6ae9c2039c90c21348", + "id": "1201101", + "profile": { + "bust": "82", + "height": "158", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "hash": "fe2ffdada9697df45b8967e875f05fac", + "id": "1301102", + "profile": { + "bust": "82", + "height": "158", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "UKスタイル", + "alias_name_display": "UKスタイル", + "event": [ + { + "event_id": 502, + "event_name": "アイドルLIVEツアーinイギリス" + } + ], + "hash": "52d8710dc5cde4cdcef8c3191012e6d6", + "id": "1207501", + "profile": { + "bust": "82", + "height": "158", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "UKスタイル", + "alias_name_display": "UKスタイル", + "event": [ + { + "event_id": 502, + "event_name": "アイドルLIVEツアーinイギリス" + } + ], + "hash": "c9660e96a053c8c20baf961e2b8c3987", + "id": "1307502", + "profile": { + "bust": "82", + "height": "158", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "優しい旋律", + "alias_name_display": "優しい旋律", + "event": [ + { + "event_id": 507, + "event_name": "LIVEツアーカーニバルinドイツ" + } + ], + "hash": "3ba4b6c440bc9865e3ae92e6e698008e", + "id": "1211801", + "profile": { + "bust": "82", + "height": "158", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "優しい旋律", + "alias_name_display": "優しい旋律", + "event": [ + { + "event_id": 507, + "event_name": "LIVEツアーカーニバルinドイツ" + } + ], + "hash": "bc953b2f0ec510c22eac406cf9bf3443", + "id": "1311802", + "profile": { + "bust": "82", + "height": "158", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ロックI.C", + "alias_name_display": "ロックI.C", + "event": [ + { + "event_id": 1202, + "event_name": "目指せロックスター アイドルチャレンジ" + } + ], + "hash": "6522c3fb23ccf563aad50deebcab512b", + "id": "1317602", + "profile": { + "bust": "82", + "height": "158", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "さわやかスポーツ", + "alias_name_display": "さわやかスポーツ", + "hash": "30ac0cfd82daa33c8a661016a0009c90", + "id": "1221601", + "profile": { + "bust": "82", + "height": "158", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "さわやかスポーツ", + "alias_name_display": "さわやかスポーツ", + "hash": "118b941b346b356e9a0dddd100b73dcb", + "id": "1321602", + "profile": { + "bust": "82", + "height": "158", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ヘルシーリフレッシュ", + "alias_name_display": "ヘルシーリフレッシュ", + "hash": "291302f8800040930835be5be87a247e", + "id": "1228601", + "profile": { + "bust": "82", + "height": "158", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ヘルシーリフレッシュ", + "alias_name_display": "ヘルシーリフレッシュ", + "hash": "f8a4150602d2e7ae3ee4e94e40d99383", + "id": "1328602", + "profile": { + "bust": "82", + "height": "158", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ウィンターリゾートビーチ", + "alias_name_display": "ウィンターリゾートビーチ", + "hash": "af63524aed4f0e699b1de4eb7eba4b62", + "id": "1231301", + "profile": { + "bust": "82", + "height": "158", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ウィンターリゾートビーチ", + "alias_name_display": "ウィンターリゾートビーチ", + "hash": "9ff0c7e86bb6701f7bc022dccc35a9a1", + "id": "1331302", + "profile": { + "bust": "82", + "height": "158", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "小悪魔お嬢様", + "alias_name_display": "小悪魔お嬢様", + "hash": "ee49eaecc77b2a1dfaeacd791c5aa02e", + "id": "1406501", + "profile": { + "bust": "82", + "height": "158", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "小悪魔お嬢様", + "alias_name_display": "小悪魔お嬢様", + "hash": "f065a7f51f813216fa98deb02e1b6558", + "id": "1506502", + "profile": { + "bust": "82", + "height": "158", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "お嬢様の一幕", + "alias_name_display": "お嬢様の一幕", + "event": [ + { + "event_id": 705, + "event_name": "第5回ドリームLIVEフェスティバル" + } + ], + "hash": "cc0bc0563db4d31f94553bec36f3ca30", + "id": "1412101", + "profile": { + "bust": "82", + "height": "158", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "お嬢様の一幕", + "alias_name_display": "お嬢様の一幕", + "event": [ + { + "event_id": 705, + "event_name": "第5回ドリームLIVEフェスティバル" + } + ], + "hash": "b5c0174f4edd5af240e21e6da73fefa8", + "id": "1512102", + "profile": { + "bust": "82", + "height": "158", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ガールズロッカー", + "alias_name_display": "ガールズロッカー", + "event": [ + { + "event_id": 1202, + "event_name": "目指せロックスター アイドルチャレンジ" + } + ], + "hash": "8f572e0b5bd2cde69ae199dfffb951d4", + "id": "1417101", + "profile": { + "bust": "82", + "height": "158", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ガールズロッカー", + "alias_name_display": "ガールズロッカー", + "event": [ + { + "event_id": 1202, + "event_name": "目指せロックスター アイドルチャレンジ" + } + ], + "hash": "7be787dc8fe32a61130cfa876ac1c6e9", + "id": "1517102", + "profile": { + "bust": "82", + "height": "158", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ガールズロッカー・S", + "alias_name_display": "ガールズロッカー・S", + "event": [ + { + "event_id": 1202, + "event_name": "目指せロックスター アイドルチャレンジ" + } + ], + "hash": "47d6db9899b8a6573a7c81e8db4fec3a", + "id": "1417201", + "profile": { + "bust": "82", + "height": "158", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ガールズロッカー・S", + "alias_name_display": "ガールズロッカー・S", + "event": [ + { + "event_id": 1202, + "event_name": "目指せロックスター アイドルチャレンジ" + } + ], + "hash": "9a5fd2fbdb9c27b091d92a84cef6463c", + "id": "1517202", + "profile": { + "bust": "82", + "height": "158", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "リズムアップ", + "alias_name_display": "リズムアップ", + "event": [ + { + "event_id": 1404, + "event_name": "第4回ぷちデレラコレクション" + } + ], + "hash": "8a224c1fb1faaf77041d8087dbd76710", + "id": "1429001", + "profile": { + "bust": "82", + "height": "158", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "リズムアップ", + "alias_name_display": "リズムアップ", + "event": [ + { + "event_id": 1404, + "event_name": "第4回ぷちデレラコレクション" + } + ], + "hash": "a27419ca801cfd72eb2a724f82cdaf55", + "id": "1529002", + "profile": { + "bust": "82", + "height": "158", + "hip": "83", + "waist": "57", + "weight": "45" + } + } + ], + "idol_id": 37, + "idol_name": "涼宮星花", + "idol_name_display": "涼宮星花", + "units": [ + { + "id": "121", + "name": "ヘルシーサバイブ" + }, + { + "id": "134", + "name": "ノーブルセレブリティ" + }, + { + "id": "169", + "name": "FOUR PIECE" + }, + { + "id": "170", + "name": "UKスタイル" + } + ] + }, + { + "aliases": [ + { + "hash": "7c175ee387814c3af476068126e9a693", + "id": "1201201", + "profile": { + "bust": "86", + "height": "153", + "hip": "82", + "waist": "56", + "weight": "44" + } + }, + { + "hash": "8063038338477f74dbd692f75dadb42b", + "id": "1301202", + "profile": { + "bust": "86", + "height": "153", + "hip": "82", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "エレガントレッド", + "alias_name_display": "エレガントレッド", + "hash": "caed99715be00834924660ef829d1828", + "id": "1206901", + "profile": { + "bust": "86", + "height": "153", + "hip": "82", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "エレガントレッド", + "alias_name_display": "エレガントレッド", + "hash": "c0ff3b5b0c1a27a9c588a523004f6289", + "id": "1306902", + "profile": { + "bust": "86", + "height": "153", + "hip": "82", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "ピンキービキニ", + "alias_name_display": "ピンキービキニ", + "hash": "9753b636f0ca1066fd101e5b4df7c022", + "id": "1211301", + "profile": { + "bust": "86", + "height": "153", + "hip": "82", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "ピンキービキニ", + "alias_name_display": "ピンキービキニ", + "hash": "6b0b2de1e6e4ef2116b183803d25c17d", + "id": "1311302", + "profile": { + "bust": "86", + "height": "153", + "hip": "82", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "セレクトメイド", + "alias_name_display": "セレクトメイド", + "hash": "bd4c00d4b8ad3eed06511322b751bce0", + "id": "1215001", + "profile": { + "bust": "86", + "height": "153", + "hip": "82", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "セレクトメイド", + "alias_name_display": "セレクトメイド", + "hash": "de9f7f33793a7dd6c3165d79d5551938", + "id": "1315002", + "profile": { + "bust": "86", + "height": "153", + "hip": "82", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "スウィートガール", + "alias_name_display": "スウィートガール", + "event": [ + { + "event_id": 715, + "event_name": "第15回ドリームLIVEフェスティバル" + } + ], + "hash": "1ce85a1d9321855918cc353ccb64be18", + "id": "1323302", + "profile": { + "bust": "86", + "height": "153", + "hip": "82", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "思い出の形", + "alias_name_display": "思い出の形", + "hash": "5f676b1eb5a5860c9286bb12f923a309", + "id": "1227601", + "profile": { + "bust": "86", + "height": "153", + "hip": "82", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "思い出の形", + "alias_name_display": "思い出の形", + "hash": "d57de9624ff48a962e3a773d2886b8c0", + "id": "1327602", + "profile": { + "bust": "86", + "height": "153", + "hip": "82", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "桜ガール", + "alias_name_display": "桜ガール", + "event": [ + { + "event_id": 104, + "event_name": "桜舞う花見祭り" + } + ], + "hash": "a541e1700026bd6b0383659bd92c006b", + "id": "1401201", + "profile": { + "bust": "86", + "height": "153", + "hip": "82", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "桜ガール", + "alias_name_display": "桜ガール", + "event": [ + { + "event_id": 104, + "event_name": "桜舞う花見祭り" + } + ], + "hash": "afb1d70598ac915ff4ca6b31bc6073ab", + "id": "1501202", + "profile": { + "bust": "86", + "height": "153", + "hip": "82", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "華・美・雅", + "alias_name_display": "華・美・雅", + "event": [ + { + "event_id": 1301, + "event_name": "プロダクションマッチフェスティバルS" + } + ], + "hash": "1f1542c72d0aef515d3d40838783572a", + "id": "1415801", + "profile": { + "bust": "86", + "height": "153", + "hip": "82", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "華・美・雅", + "alias_name_display": "華・美・雅", + "event": [ + { + "event_id": 1301, + "event_name": "プロダクションマッチフェスティバルS" + } + ], + "hash": "7d15fa5eb270efe4d371bbb6f17dfde2", + "id": "1515802", + "profile": { + "bust": "86", + "height": "153", + "hip": "82", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "スウィート・ロワイヤル", + "alias_name_display": "スウィート・ロワイヤル", + "event": [ + { + "event_id": 810, + "event_name": "アイドルLIVEロワイヤル バレンタインSP" + } + ], + "hash": "0e32a0dafd89eb55cc8a31b0fcc6ef0b", + "id": "1422301", + "profile": { + "bust": "86", + "height": "153", + "hip": "82", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "スウィート・ロワイヤル", + "alias_name_display": "スウィート・ロワイヤル", + "event": [ + { + "event_id": 810, + "event_name": "アイドルLIVEロワイヤル バレンタインSP" + } + ], + "hash": "4ff3d0f9b5375da499d0d0f26c960500", + "id": "1522302", + "profile": { + "bust": "86", + "height": "153", + "hip": "82", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "ミルキーミント", + "alias_name_display": "ミルキーミント", + "event": [ + { + "event_id": 1409, + "event_name": "第9回ぷちデレラコレクション" + } + ], + "hash": "1ac01a720d642c8679ee7aaa60c5ef7d", + "id": "1436101", + "profile": { + "bust": "86", + "height": "153", + "hip": "82", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "ミルキーミント", + "alias_name_display": "ミルキーミント", + "event": [ + { + "event_id": 1409, + "event_name": "第9回ぷちデレラコレクション" + } + ], + "hash": "919e170503dee2d9ca5697d7903dcf56", + "id": "1536102", + "profile": { + "bust": "86", + "height": "153", + "hip": "82", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "ルックアットミー", + "alias_name_display": "ルックアットミー", + "hash": "27d9297f2fa9b6bee8a4e1ecdf8f0a49", + "id": "1439701", + "profile": { + "bust": "86", + "height": "153", + "hip": "82", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "ルックアットミー", + "alias_name_display": "ルックアットミー", + "hash": "ea6ea7bc7bb994ee3f40bf04f6126ec8", + "id": "1539702", + "profile": { + "bust": "86", + "height": "153", + "hip": "82", + "waist": "56", + "weight": "44" + } + } + ], + "idol_id": 38, + "idol_name": "月宮雅", + "idol_name_display": "月宮雅", + "units": [ + { + "id": "89", + "name": "ガールズ・パワー" + } + ] + }, + { + "aliases": [ + { + "hash": "fc97ba28d3a4f9ba0863b15761df3403", + "id": "1201301", + "profile": { + "bust": "92", + "height": "167", + "hip": "84", + "waist": "56", + "weight": "48" + } + }, + { + "hash": "1a44a4f1c5ab36cbd0371578241348d7", + "id": "1301302", + "profile": { + "bust": "92", + "height": "167", + "hip": "84", + "waist": "56", + "weight": "48" + } + }, + { + "alias_name": "ディーラーズハート", + "alias_name_display": "ディーラーズハート", + "event": [ + { + "event_id": "003", + "event_name": "第3回プロダクションマッチフェスティバル" + } + ], + "hash": "9a344a0f7eacff98f66992e81351ccf4", + "id": "1204801", + "profile": { + "bust": "92", + "height": "167", + "hip": "84", + "waist": "56", + "weight": "48" + } + }, + { + "alias_name": "ディーラーズハート", + "alias_name_display": "ディーラーズハート", + "event": [ + { + "event_id": "003", + "event_name": "第3回プロダクションマッチフェスティバル" + } + ], + "hash": "28274ccdbc9075fbccd18ce5bb4e606c", + "id": "1304802", + "profile": { + "bust": "92", + "height": "167", + "hip": "84", + "waist": "56", + "weight": "48" + } + }, + { + "alias_name": "湯けむり温泉", + "alias_name_display": "湯けむり温泉", + "hash": "1f613d36bd64b334cab8051894158168", + "id": "1206301", + "profile": { + "bust": "92", + "height": "167", + "hip": "84", + "waist": "56", + "weight": "48" + } + }, + { + "alias_name": "湯けむり温泉", + "alias_name_display": "湯けむり温泉", + "hash": "30480e1245cdbe88f88165b669321b8a", + "id": "1306302", + "profile": { + "bust": "92", + "height": "167", + "hip": "84", + "waist": "56", + "weight": "48" + } + }, + { + "alias_name": "ロワイヤルスタイル", + "alias_name_display": "ロワイヤルスタイル", + "event": [ + { + "event_id": 801, + "event_name": "アイドルLIVEロワイヤル" + } + ], + "hash": "86fcf85ec26cd3626931ab92afdaad94", + "id": "1212401", + "profile": { + "bust": "92", + "height": "167", + "hip": "84", + "waist": "56", + "weight": "48" + } + }, + { + "alias_name": "ロワイヤルスタイル", + "alias_name_display": "ロワイヤルスタイル", + "event": [ + { + "event_id": 801, + "event_name": "アイドルLIVEロワイヤル" + } + ], + "hash": "a0e2019b4854b20b56dd58cd920c30f5", + "id": "1312402", + "profile": { + "bust": "92", + "height": "167", + "hip": "84", + "waist": "56", + "weight": "48" + } + }, + { + "alias_name": "ビーチサイド", + "alias_name_display": "ビーチサイド", + "hash": "03496a2fbc355b045e66bab5430514bb", + "id": "1217001", + "profile": { + "bust": "92", + "height": "167", + "hip": "84", + "waist": "56", + "weight": "48" + } + }, + { + "alias_name": "ビーチサイド", + "alias_name_display": "ビーチサイド", + "hash": "241884f39b4e56dcad17bc712b028f4b", + "id": "1317002", + "profile": { + "bust": "92", + "height": "167", + "hip": "84", + "waist": "56", + "weight": "48" + } + }, + { + "alias_name": "ビター&スウィート", + "alias_name_display": "ビター&スウィート", + "hash": "dd939d75521e408a4185069f3168145e", + "id": "1226101", + "profile": { + "bust": "92", + "height": "167", + "hip": "84", + "waist": "56", + "weight": "48" + } + }, + { + "alias_name": "ビター&スウィート", + "alias_name_display": "ビター&スウィート", + "hash": "4067febaae2008b50c289fbff62d0187", + "id": "1326102", + "profile": { + "bust": "92", + "height": "167", + "hip": "84", + "waist": "56", + "weight": "48" + } + }, + { + "alias_name": "カインドスチーム", + "alias_name_display": "カインドスチーム", + "event": [ + { + "event_id": 727, + "event_name": "第27回ドリームLIVEフェスティバル" + } + ], + "hash": "6dbeaec9fbbebd69811dc606b638cfb1", + "id": "1231801", + "profile": { + "bust": "92", + "height": "167", + "hip": "84", + "waist": "56", + "weight": "48" + } + }, + { + "alias_name": "カインドスチーム", + "alias_name_display": "カインドスチーム", + "event": [ + { + "event_id": 727, + "event_name": "第27回ドリームLIVEフェスティバル" + } + ], + "hash": "2a1eafa5944c41d04572380e89ea37c7", + "id": "1331802", + "profile": { + "bust": "92", + "height": "167", + "hip": "84", + "waist": "56", + "weight": "48" + } + }, + { + "alias_name": "セクシーバニー", + "alias_name_display": "セクシーバニー", + "event": [ + { + "event_id": "008", + "event_name": "第8回プロダクションマッチフェスティバル" + } + ], + "hash": "2cb9de945cba44c89e83966070671d50", + "id": "1405601", + "profile": { + "bust": "92", + "height": "167", + "hip": "84", + "waist": "56", + "weight": "48" + } + }, + { + "alias_name": "セクシーバニー", + "alias_name_display": "セクシーバニー", + "event": [ + { + "event_id": "008", + "event_name": "第8回プロダクションマッチフェスティバル" + } + ], + "hash": "472819ff358f1aca7a0521c1034b354b", + "id": "1505602", + "profile": { + "bust": "92", + "height": "167", + "hip": "84", + "waist": "56", + "weight": "48" + } + }, + { + "alias_name": "ビューティーウィッチ", + "alias_name_display": "ビューティーウィッチ", + "hash": "232036d7ff6b8e1b9e458b312616f7a2", + "id": "1420901", + "profile": { + "bust": "92", + "height": "167", + "hip": "84", + "waist": "56", + "weight": "48" + } + }, + { + "alias_name": "ビューティーウィッチ", + "alias_name_display": "ビューティーウィッチ", + "hash": "e71a7133899c8ed597bd85cabe1bec47", + "id": "1520902", + "profile": { + "bust": "92", + "height": "167", + "hip": "84", + "waist": "56", + "weight": "48" + } + }, + { + "alias_name": "美しき挑発", + "alias_name_display": "美しき挑発", + "event": [ + { + "event_id": "023", + "event_name": "第23回プロダクションマッチフェスティバル" + } + ], + "hash": "0c00b6d2d0c71c6582423064334de122", + "id": "1427301", + "profile": { + "bust": "92", + "height": "167", + "hip": "84", + "waist": "56", + "weight": "48" + } + }, + { + "alias_name": "美しき挑発", + "alias_name_display": "美しき挑発", + "event": [ + { + "event_id": "023", + "event_name": "第23回プロダクションマッチフェスティバル" + } + ], + "hash": "db3da083a2e7e999fad7983cd49e5127", + "id": "1527302", + "profile": { + "bust": "92", + "height": "167", + "hip": "84", + "waist": "56", + "weight": "48" + } + }, + { + "alias_name": "牡丹に蝶", + "alias_name_display": "牡丹に蝶", + "hash": "864bcc62abdfd8c798e906bcd25c0e93", + "id": "1434101", + "profile": { + "bust": "92", + "height": "167", + "hip": "84", + "waist": "56", + "weight": "48" + } + }, + { + "alias_name": "牡丹に蝶", + "alias_name_display": "牡丹に蝶", + "hash": "9cf74ba99862e8a7d52677bca5e48c3b", + "id": "1534102", + "profile": { + "bust": "92", + "height": "167", + "hip": "84", + "waist": "56", + "weight": "48" + } + } + ], + "idol_id": 39, + "idol_name": "兵藤レナ", + "idol_name_display": "兵藤レナ", + "units": [ + { + "id": "206", + "name": "セクシーボンデージ" + }, + { + "id": "208", + "name": "ロワイヤルスタイル" + } + ] + }, + { + "aliases": [ + { + "hash": "3fed05567d232be4af746b2de681d024", + "id": "1206401", + "profile": { + "bust": "81", + "height": "157", + "hip": "79", + "waist": "55", + "weight": "43" + } + }, + { + "hash": "61a25ac7330f9ee3a9031a4d25655401", + "id": "1306402", + "profile": { + "bust": "81", + "height": "157", + "hip": "79", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "制服コレクション", + "alias_name_display": "制服コレクション", + "hash": "179872194da3a40845ce4bcd78966a52", + "id": "1209001", + "profile": { + "bust": "81", + "height": "157", + "hip": "79", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "制服コレクション", + "alias_name_display": "制服コレクション", + "hash": "8fd90fc1c4189e56096f2e69153854ec", + "id": "1309002", + "profile": { + "bust": "81", + "height": "157", + "hip": "79", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ハロウィンナイト", + "alias_name_display": "ハロウィンナイト", + "hash": "6caef3a534d1f4625f1d90b6f56e12d0", + "id": "1212301", + "profile": { + "bust": "81", + "height": "157", + "hip": "79", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ハロウィンナイト", + "alias_name_display": "ハロウィンナイト", + "hash": "83cf1238cba1adca0254e84311ea5e46", + "id": "1312302", + "profile": { + "bust": "81", + "height": "157", + "hip": "79", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ネイビーガール", + "alias_name_display": "ネイビーガール", + "hash": "43a8feff01bdd2d27e6a9b38ece36051", + "id": "1217101", + "profile": { + "bust": "81", + "height": "157", + "hip": "79", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ネイビーガール", + "alias_name_display": "ネイビーガール", + "hash": "9a15f28281366f1b094466f327122014", + "id": "1317102", + "profile": { + "bust": "81", + "height": "157", + "hip": "79", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ロワイヤルスタイルND", + "alias_name_display": "ロワイヤルスタイルND", + "event": [ + { + "event_id": 815, + "event_name": "アイドルLIVEロワイヤル クリスマスSP" + } + ], + "hash": "17b23dc00a5f6df6c0a65406ba29b982", + "id": "1225001", + "profile": { + "bust": "81", + "height": "157", + "hip": "79", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ロワイヤルスタイルND", + "alias_name_display": "ロワイヤルスタイルND", + "event": [ + { + "event_id": 815, + "event_name": "アイドルLIVEロワイヤル クリスマスSP" + } + ], + "hash": "01f0b8b40b28f7acc96f23d0fae17d0c", + "id": "1325002", + "profile": { + "bust": "81", + "height": "157", + "hip": "79", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "スクールプール", + "alias_name_display": "スクールプール", + "hash": "7bee54eb6e1aa1151ea8ebb7f5c2491b", + "id": "1228701", + "profile": { + "bust": "81", + "height": "157", + "hip": "79", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "スクールプール", + "alias_name_display": "スクールプール", + "hash": "a55fc181f4a8d7c2a8555a18b04ebbd4", + "id": "1328702", + "profile": { + "bust": "81", + "height": "157", + "hip": "79", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "洒落者レディ", + "alias_name_display": "洒落者レディ", + "hash": "0df2c7da9b7eee56871f4683852d63b8", + "id": "1230901", + "profile": { + "bust": "81", + "height": "157", + "hip": "79", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "洒落者レディ", + "alias_name_display": "洒落者レディ", + "hash": "e35375c6c987105d2a6235df452dc0c4", + "id": "1330902", + "profile": { + "bust": "81", + "height": "157", + "hip": "79", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "大傾奇娘", + "alias_name_display": "大傾奇娘", + "event": [ + { + "event_id": "014", + "event_name": "第14回プロダクションマッチフェスティバル" + } + ], + "hash": "26b2a0c90723a9b074e65e4ecb2c937e", + "id": "1411601", + "profile": { + "bust": "81", + "height": "157", + "hip": "79", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "大傾奇娘", + "alias_name_display": "大傾奇娘", + "event": [ + { + "event_id": "014", + "event_name": "第14回プロダクションマッチフェスティバル" + } + ], + "hash": "f04628745ca35b5896d03126fcdbed8d", + "id": "1511602", + "profile": { + "bust": "81", + "height": "157", + "hip": "79", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "天下御免☆ガール", + "alias_name_display": "天下御免☆ガール", + "hash": "1e02e3b87da7a70d8aa11609c3bbd95d", + "id": "1424001", + "profile": { + "bust": "81", + "height": "157", + "hip": "79", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "天下御免☆ガール", + "alias_name_display": "天下御免☆ガール", + "hash": "9392cd6501637b7e2d621e7459fc742f", + "id": "1524002", + "profile": { + "bust": "81", + "height": "157", + "hip": "79", + "waist": "55", + "weight": "43" + } + } + ], + "idol_id": 40, + "idol_name": "丹羽仁美", + "idol_name_display": "丹羽仁美", + "units": [ + { + "id": "30", + "name": "センゴク☆ランブ" + }, + { + "id": "156", + "name": "センゴク☆華☆ランブ" + }, + { + "id": "161", + "name": "ハロウィンナイト" + }, + { + "id": "210", + "name": "ロワイヤルスタイルND" + } + ] + }, + { + "aliases": [ + { + "hash": "6c298af445eea9e1b73482704eec4924", + "id": "1201401", + "profile": { + "bust": "80", + "height": "155", + "hip": "83", + "waist": "55", + "weight": "43" + } + }, + { + "hash": "d312f7f0f9c305d7a15f822bf8d44705", + "id": "1301402", + "profile": { + "bust": "80", + "height": "155", + "hip": "82", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "新春", + "alias_name_display": "新春", + "event": [ + { + "event_id": 102, + "event_name": "アイドルおもちつき大会" + } + ], + "hash": "e280aa01f99069f3253b0c406eeaa233", + "id": "1202201", + "profile": { + "bust": "80", + "height": "155", + "hip": "83", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "新春", + "alias_name_display": "新春", + "event": [ + { + "event_id": 102, + "event_name": "アイドルおもちつき大会" + } + ], + "hash": "9fd5148925ca5f8523c6187a584da80c", + "id": "1302202", + "profile": { + "bust": "80", + "height": "155", + "hip": "83", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "アニバーサリーピンク", + "alias_name_display": "アニバーサリーピンク", + "event": [ + { + "event_id": 403, + "event_name": "アイドルプロデュース the 1st Anniversary" + } + ], + "hash": "e7c21fde6b9e0665f541deadd30cee5b", + "id": "1206601", + "profile": { + "bust": "80", + "height": "155", + "hip": "82", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "アニバーサリーピンク", + "alias_name_display": "アニバーサリーピンク", + "event": [ + { + "event_id": 403, + "event_name": "アイドルプロデュース the 1st Anniversary" + } + ], + "hash": "080b3fa1b8895f20a4462cba7ca55d44", + "id": "1306602", + "profile": { + "bust": "80", + "height": "155", + "hip": "82", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "新春コレクション", + "alias_name_display": "新春コレクション", + "hash": "9602cd56a0d2dd6fb7c3aa2d911fb95c", + "id": "1214001", + "profile": { + "bust": "80", + "height": "155", + "hip": "82", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "新春コレクション", + "alias_name_display": "新春コレクション", + "hash": "43c772ecc9cc0ac50c0cf5b8705da38a", + "id": "1314002", + "profile": { + "bust": "80", + "height": "155", + "hip": "82", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "勇壮の槍騎士", + "alias_name_display": "勇壮の槍騎士", + "event": [ + { + "event_id": 516, + "event_name": "幻想公演栄光のシュヴァリエ" + } + ], + "hash": "89745565c1ee9c10ebaa7adfbadde425", + "id": "1219501", + "profile": { + "bust": "80", + "height": "155", + "hip": "82", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "勇壮の槍騎士", + "alias_name_display": "勇壮の槍騎士", + "event": [ + { + "event_id": 516, + "event_name": "幻想公演栄光のシュヴァリエ" + } + ], + "hash": "6c2726aaf43a56940326e08fe6d8b098", + "id": "1319502", + "profile": { + "bust": "80", + "height": "155", + "hip": "82", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "コレクションスタイル", + "alias_name_display": "コレクションスタイル", + "event": [ + { + "event_id": 1405, + "event_name": "第5回ぷちデレラコレクション" + } + ], + "hash": "79a9a786007e9b69d544fcf709131652", + "id": "1325902", + "profile": { + "bust": "80", + "height": "155", + "hip": "82", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "ニンジュツI.C", + "alias_name_display": "ニンジュツI.C", + "event": [ + { + "event_id": 1214, + "event_name": "目指せくのいち アイドルチャレンジ" + } + ], + "hash": "b9d96c9cab89a83641b722cc05cc5559", + "id": "1331502", + "profile": { + "bust": "80", + "height": "155", + "hip": "82", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "大器晩成", + "alias_name_display": "大器晩成", + "event": [ + { + "event_id": "002", + "event_name": "第2回プロダクションマッチフェスティバル" + } + ], + "hash": "fb17067100ef5228c4de359c66c27336", + "id": "1401701", + "profile": { + "bust": "80", + "height": "155", + "hip": "83", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "大器晩成", + "alias_name_display": "大器晩成", + "event": [ + { + "event_id": "002", + "event_name": "第2回プロダクションマッチフェスティバル" + } + ], + "hash": "e276c868cb46d0753eb4162eb078acf1", + "id": "1501702", + "profile": { + "bust": "80", + "height": "155", + "hip": "82", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "サンシャインビーチ", + "alias_name_display": "サンシャインビーチ", + "event": [ + { + "event_id": 506, + "event_name": "アイドルLIVEツアーinハワイ" + } + ], + "hash": "0312fa19f6f938e7fe0f6125c9703e04", + "id": "1408201", + "profile": { + "bust": "80", + "height": "155", + "hip": "82", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "サンシャインビーチ", + "alias_name_display": "サンシャインビーチ", + "event": [ + { + "event_id": 506, + "event_name": "アイドルLIVEツアーinハワイ" + } + ], + "hash": "4c8ea91dd2c68daeb6caa2ef85d01325", + "id": "1508202", + "profile": { + "bust": "80", + "height": "155", + "hip": "82", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "おてんば神楽", + "alias_name_display": "おてんば神楽", + "hash": "3188ae6a90fb6b6517c9a2a177c19be7", + "id": "1415701", + "profile": { + "bust": "80", + "height": "155", + "hip": "82", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "おてんば神楽", + "alias_name_display": "おてんば神楽", + "hash": "e542dd24695b0c9853ff72cb182bd32a", + "id": "1515702", + "profile": { + "bust": "80", + "height": "155", + "hip": "82", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "ぴかぴかガール", + "alias_name_display": "ぴかぴかガール", + "hash": "d0d75973eab499695ccec3682febd599", + "id": "1426201", + "profile": { + "bust": "80", + "height": "155", + "hip": "82", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "ぴかぴかガール", + "alias_name_display": "ぴかぴかガール", + "hash": "74120ffd2553011dabfc8baa1c07cb54", + "id": "1526202", + "profile": { + "bust": "80", + "height": "155", + "hip": "82", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "古都の花嫁", + "alias_name_display": "古都の花嫁", + "hash": "41f86f41f533b5dfd2c406298fd4bbd1", + "id": "1433301", + "profile": { + "bust": "80", + "height": "155", + "hip": "82", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "古都の花嫁", + "alias_name_display": "古都の花嫁", + "hash": "2fe37f02176fe6b24e4ecec33318811d", + "id": "1533302", + "profile": { + "bust": "80", + "height": "155", + "hip": "82", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "不屈のくのいち", + "alias_name_display": "不屈のくのいち", + "event": [ + { + "event_id": 1214, + "event_name": "目指せくのいち アイドルチャレンジ" + } + ], + "hash": "eb61ed2c8f8e22bbd115f50600da6c6c", + "id": "1437901", + "profile": { + "bust": "80", + "height": "155", + "hip": "82", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "不屈のくのいち", + "alias_name_display": "不屈のくのいち", + "event": [ + { + "event_id": 1214, + "event_name": "目指せくのいち アイドルチャレンジ" + } + ], + "hash": "679389de74afb22434d01fce5723c3cb", + "id": "1537902", + "profile": { + "bust": "80", + "height": "155", + "hip": "82", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "朗笑のくのいち", + "alias_name_display": "朗笑のくのいち", + "event": [ + { + "event_id": 1214, + "event_name": "目指せくのいち アイドルチャレンジ" + } + ], + "hash": "aa1f7b77aac0449d2c04b32f6b2d72b6", + "id": "1438001", + "profile": { + "bust": "80", + "height": "155", + "hip": "82", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "朗笑のくのいち", + "alias_name_display": "朗笑のくのいち", + "event": [ + { + "event_id": 1214, + "event_name": "目指せくのいち アイドルチャレンジ" + } + ], + "hash": "d9be7d1d689f9e143ff27dd1063a0040", + "id": "1538002", + "profile": { + "bust": "80", + "height": "155", + "hip": "82", + "waist": "55", + "weight": "42" + } + } + ], + "idol_id": 41, + "idol_name": "道明寺歌鈴", + "idol_name_display": "道明寺歌鈴", + "units": [ + { + "id": "5", + "name": "インディゴ・ベル" + }, + { + "id": "179", + "name": "春霞" + } + ] + }, + { + "aliases": [ + { + "hash": "73221b45dc3a76f73b08bb8854191273", + "id": "1201501", + "profile": { + "bust": "74", + "height": "145", + "hip": "78", + "waist": "54", + "weight": "37" + } + }, + { + "hash": "a1dbdfc71c12beaaed6508a7569442ab", + "id": "1301502", + "profile": { + "bust": "74", + "height": "145", + "hip": "78", + "waist": "54", + "weight": "37" + } + }, + { + "alias_name": "制服グリーン", + "alias_name_display": "制服グリーン", + "hash": "155ed2dec00ed07a45f8c784540cb149", + "id": "1203101", + "profile": { + "bust": "74", + "height": "145", + "hip": "78", + "waist": "54", + "weight": "37" + } + }, + { + "alias_name": "制服ブラウン", + "alias_name_display": "制服ブラウン", + "hash": "d157ad4390a55281f9462b8b46ed45ef", + "id": "1203102", + "profile": { + "bust": "74", + "height": "145", + "hip": "78", + "waist": "54", + "weight": "37" + } + }, + { + "alias_name": "制服ブラック", + "alias_name_display": "制服ブラック", + "hash": "35d33f8fd00c39daeef8513a854e44bf", + "id": "1203103", + "profile": { + "bust": "74", + "height": "145", + "hip": "78", + "waist": "54", + "weight": "37" + } + }, + { + "alias_name": "制服ネイビー", + "alias_name_display": "制服ネイビー", + "hash": "167a430223c78828914bedf21a062497", + "id": "1203104", + "profile": { + "bust": "74", + "height": "145", + "hip": "78", + "waist": "54", + "weight": "37" + } + }, + { + "alias_name": "ピンクダイヤモンド765", + "alias_name_display": "ピンクダイヤモンド765", + "hash": "32d74cb0a88ebc1f09461f43f3f96572", + "id": "1303105", + "profile": { + "bust": "74", + "height": "145", + "hip": "78", + "waist": "54", + "weight": "37" + } + }, + { + "alias_name": "エバーグリーンリーブス", + "alias_name_display": "エバーグリーンリーブス", + "hash": "5087a9aa0d84d7a8f29201e635567523", + "id": "1303106", + "profile": { + "bust": "74", + "height": "145", + "hip": "78", + "waist": "54", + "weight": "37" + } + }, + { + "alias_name": "ギルデッドマドモアゼル", + "alias_name_display": "ギルデッドマドモアゼル", + "hash": "a36bba235ac6ac42a80b30fa4bda8119", + "id": "1303107", + "profile": { + "bust": "74", + "height": "145", + "hip": "78", + "waist": "54", + "weight": "37" + } + }, + { + "alias_name": "スカーレットスプライト", + "alias_name_display": "スカーレットスプライト", + "hash": "02405f18ba16f3b333f4de1c9d4860a7", + "id": "1303108", + "profile": { + "bust": "74", + "height": "145", + "hip": "78", + "waist": "54", + "weight": "37" + } + }, + { + "alias_name": "スタイリッシュデニム", + "alias_name_display": "スタイリッシュデニム", + "hash": "732c5c98cdfdb6e0619317091537bc8f", + "id": "1303109", + "profile": { + "bust": "74", + "height": "145", + "hip": "78", + "waist": "54", + "weight": "37" + } + }, + { + "alias_name": "元気120%", + "alias_name_display": "元気120%", + "hash": "d63c76c319fc691da462ea3644e08fac", + "id": "1401010", + "profile": { + "bust": "74", + "height": "145", + "hip": "78", + "waist": "54", + "weight": "37" + } + }, + { + "alias_name": "元気120%", + "alias_name_display": "元気120%", + "hash": "0c964265c9e630ed4e9750660191acea", + "id": "1501011", + "profile": { + "bust": "74", + "height": "145", + "hip": "78", + "waist": "54", + "weight": "37" + } + }, + { + "alias_name": "小さなお姉さん", + "alias_name_display": "小さなお姉さん", + "hash": "64c325a7f50f059665e36c3cc67d33ae", + "id": "1403201", + "profile": { + "bust": "74", + "height": "145", + "hip": "78", + "waist": "54", + "weight": "37" + } + }, + { + "alias_name": "小さなお姉さん", + "alias_name_display": "小さなお姉さん", + "hash": "d0ea18fc5575dd86bc9e9657f0d720c3", + "id": "1503202", + "profile": { + "bust": "74", + "height": "145", + "hip": "78", + "waist": "54", + "weight": "37" + } + }, + { + "alias_name": "オオカミガール", + "alias_name_display": "オオカミガール", + "hash": "404957c126156e54750231e4e58221ad", + "id": "1505302", + "profile": { + "bust": "74", + "height": "145", + "hip": "78", + "waist": "54", + "weight": "37" + } + } + ], + "idol_id": 42, + "idol_name": "高槻やよい", + "idol_name_display": "高槻やよい" + }, + { + "aliases": [ + { + "hash": "7c3cc9c1c697ecc6b62dc2d5a835f534", + "id": "1201601", + "profile": { + "bust": "75", + "height": "159", + "hip": "78", + "waist": "57", + "weight": "44" + } + }, + { + "hash": "ccf8b0fa90c6686cf061bc155458c771", + "id": "1301602", + "profile": { + "bust": "75", + "height": "159", + "hip": "78", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "制服ベージュ", + "alias_name_display": "制服ベージュ", + "hash": "66f955d622985f1bd2d2dfeec8676619", + "id": "1205401", + "profile": { + "bust": "75", + "height": "159", + "hip": "78", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "制服ブルー", + "alias_name_display": "制服ブルー", + "hash": "daa75ed58a88e9a32500dec7290798b0", + "id": "1205402", + "profile": { + "bust": "75", + "height": "159", + "hip": "78", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "制服ブラック", + "alias_name_display": "制服ブラック", + "hash": "e9e704ca90a1625b045a6ee36fddb9c6", + "id": "1205403", + "profile": { + "bust": "75", + "height": "159", + "hip": "78", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "制服ホワイト", + "alias_name_display": "制服ホワイト", + "hash": "77854d40d4d4fb3562a3fe90562fa361", + "id": "1205404", + "profile": { + "bust": "75", + "height": "159", + "hip": "78", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "ピンクダイヤモンド765", + "alias_name_display": "ピンクダイヤモンド765", + "hash": "c7a3954ec5559612549fc074eef50514", + "id": "1305405", + "profile": { + "bust": "75", + "height": "159", + "hip": "78", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "スカーレットスプライト", + "alias_name_display": "スカーレットスプライト", + "hash": "c4edddba0e55fd7db3c62f2adf327c3d", + "id": "1305406", + "profile": { + "bust": "75", + "height": "159", + "hip": "78", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "パウダースノーホワイティ", + "alias_name_display": "パウダースノーホワイティ", + "hash": "aaba42a5b3189a77d67a4fc3c2c01744", + "id": "1305407", + "profile": { + "bust": "75", + "height": "159", + "hip": "78", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "ギルデッドマドモアゼル", + "alias_name_display": "ギルデッドマドモアゼル", + "hash": "ce60d87b5d013cd6f4c2f1cbb330b402", + "id": "1305408", + "profile": { + "bust": "75", + "height": "159", + "hip": "78", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "メイデンインブラック", + "alias_name_display": "メイデンインブラック", + "hash": "16ad0ffc22898e08cca59ba3dba7274b", + "id": "1305409", + "profile": { + "bust": "75", + "height": "159", + "hip": "78", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "王子様な女子", + "alias_name_display": "王子様な女子", + "hash": "d13b3a791d8be0063fb81ab21724aaef", + "id": "1400301", + "profile": { + "bust": "75", + "height": "159", + "hip": "78", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "王子様な女子", + "alias_name_display": "王子様な女子", + "hash": "b50b95609ded8046828f33f9cba3c875", + "id": "1500302", + "profile": { + "bust": "75", + "height": "159", + "hip": "78", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "キューティープリンセス", + "alias_name_display": "キューティープリンセス", + "hash": "20c2b7d34506df953c0adfae8b0073d7", + "id": "1402710", + "profile": { + "bust": "75", + "height": "159", + "hip": "78", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "キューティープリンセス", + "alias_name_display": "キューティープリンセス", + "hash": "d7496c4167acfdfd916f526a3a01f114", + "id": "1502711", + "profile": { + "bust": "75", + "height": "159", + "hip": "78", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "チーム765エンジェルス", + "alias_name_display": "チーム765エンジェルス", + "hash": "2838e5d36d4e11a09fac86270dcf63a4", + "id": "1508902", + "profile": { + "bust": "75", + "height": "159", + "hip": "78", + "waist": "57", + "weight": "44" + } + } + ], + "idol_id": 43, + "idol_name": "菊地真", + "idol_name_display": "菊地真" + }, + { + "aliases": [ + { + "hash": "f8f4c3be1b401f47318d440f2bcf9bec", + "id": "1201701", + "profile": { + "bust": "83", + "height": "152", + "hip": "80", + "waist": "56", + "weight": "41" + } + }, + { + "hash": "bd13be7dd4e65b4b5aa07234c6e80c87", + "id": "1301702", + "profile": { + "bust": "83", + "height": "152", + "hip": "80", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "沖縄元気っ娘", + "alias_name_display": "沖縄元気っ娘", + "hash": "c5e454cbcc691c9e7863eac4fe359e5d", + "id": "1400201", + "profile": { + "bust": "83", + "height": "152", + "hip": "80", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "沖縄元気っ娘", + "alias_name_display": "沖縄元気っ娘", + "hash": "a23658ae02efa72867661794bccf1d28", + "id": "1500202", + "profile": { + "bust": "83", + "height": "152", + "hip": "80", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "1stメモリアル", + "alias_name_display": "1stメモリアル", + "hash": "c5e1fe7ef2b387eb27a9adbb9d9dfa6c", + "id": "1504202", + "profile": { + "bust": "83", + "height": "152", + "hip": "80", + "waist": "56", + "weight": "41" + } + } + ], + "idol_id": 44, + "idol_name": "我那覇響", + "idol_name_display": "我那覇響" + }, + { + "aliases": [ + { + "hash": "0b94e4097c16bce2c2579da0914234c5", + "id": "1201801", + "profile": { + "bust": "85", + "height": "158", + "hip": "86", + "waist": "58", + "weight": "47" + } + }, + { + "hash": "dcd3b9f7c582181235d47dde3b4a0fb5", + "id": "1301802", + "profile": { + "bust": "85", + "height": "158", + "hip": "86", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "デビリッシュゴシック", + "alias_name_display": "デビリッシュゴシック", + "hash": "94c8abcfe804ad7d1ffba83136b21276", + "id": "1209201", + "profile": { + "bust": "85", + "height": "158", + "hip": "86", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "デビリッシュゴシック", + "alias_name_display": "デビリッシュゴシック", + "hash": "02bb974e8ed0f1bcece903d42d309c0f", + "id": "1309202", + "profile": { + "bust": "85", + "height": "158", + "hip": "86", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ウィンタースタイル", + "alias_name_display": "ウィンタースタイル", + "hash": "5a2704f747a6d29b004f47f0ed95a83b", + "id": "1214701", + "profile": { + "bust": "85", + "height": "158", + "hip": "86", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ウィンタースタイル", + "alias_name_display": "ウィンタースタイル", + "hash": "dbae7ad87fe85eafc52397784ba763ed", + "id": "1314702", + "profile": { + "bust": "85", + "height": "158", + "hip": "86", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "黒白微笑", + "alias_name_display": "黒白微笑", + "event": [ + { + "event_id": 514, + "event_name": "功夫公演 香港大決戦" + } + ], + "hash": "a0e2153bde26babe6152d492ec24e1a9", + "id": "1218401", + "profile": { + "bust": "85", + "height": "158", + "hip": "86", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "黒白微笑", + "alias_name_display": "黒白微笑", + "event": [ + { + "event_id": 514, + "event_name": "功夫公演 香港大決戦" + } + ], + "hash": "e12ff3a3ff2743eabeda9478f2a94cc1", + "id": "1318402", + "profile": { + "bust": "85", + "height": "158", + "hip": "86", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "アダルトスタイル", + "alias_name_display": "アダルトスタイル", + "hash": "19b317324b93b4c203f1aa474c8b6143", + "id": "1220001", + "profile": { + "bust": "85", + "height": "158", + "hip": "86", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "アダルトスタイル", + "alias_name_display": "アダルトスタイル", + "hash": "118543d91139af711399d7bb6b029375", + "id": "1320002", + "profile": { + "bust": "85", + "height": "158", + "hip": "86", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "新春レディ", + "alias_name_display": "新春レディ", + "event": [ + { + "event_id": 718, + "event_name": "ドリームLIVEフェスティバル 新春SP" + } + ], + "hash": "71fa9fd263816362735276ee3d1dfc04", + "id": "1225301", + "profile": { + "bust": "85", + "height": "158", + "hip": "86", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "新春レディ", + "alias_name_display": "新春レディ", + "event": [ + { + "event_id": 718, + "event_name": "ドリームLIVEフェスティバル 新春SP" + } + ], + "hash": "ec807ef1db97e4c15ef318f9a6596941", + "id": "1325302", + "profile": { + "bust": "85", + "height": "158", + "hip": "86", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "サバゲーI.C", + "alias_name_display": "サバゲーI.C", + "event": [ + { + "event_id": 1210, + "event_name": "アイドルチャレンジ サバイバルゲーム編" + } + ], + "hash": "15fdd1bf43a64e0bfe2a9f7dc5360e3b", + "id": "1327502", + "profile": { + "bust": "85", + "height": "158", + "hip": "86", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ホーリーコーラス", + "alias_name_display": "ホーリーコーラス", + "hash": "2dc06c7605dee3eafbb4619312238f83", + "id": "1231101", + "profile": { + "bust": "85", + "height": "158", + "hip": "86", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ホーリーコーラス", + "alias_name_display": "ホーリーコーラス", + "hash": "25172c5667ad6f1d3d5989e5aa1fd94e", + "id": "1331102", + "profile": { + "bust": "85", + "height": "158", + "hip": "86", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "二面性の天使", + "alias_name_display": "二面性の天使", + "event": [ + { + "event_id": 703, + "event_name": "第3回ドリームLIVEフェスティバル" + } + ], + "hash": "6d84be33bafbe45f651c50fd5114c4d0", + "id": "1409601", + "profile": { + "bust": "85", + "height": "158", + "hip": "86", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "二面性の天使", + "alias_name_display": "二面性の天使", + "event": [ + { + "event_id": 703, + "event_name": "第3回ドリームLIVEフェスティバル" + } + ], + "hash": "ce10dbc0aa9373a75ec4f514d644f62a", + "id": "1509602", + "profile": { + "bust": "85", + "height": "158", + "hip": "86", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "グラマラス・ロワイヤル", + "alias_name_display": "グラマラス・ロワイヤル", + "event": [ + { + "event_id": 813, + "event_name": "第13回アイドルLIVEロワイヤル" + } + ], + "hash": "de191e77ede324ba840d36ca006d90f1", + "id": "1425701", + "profile": { + "bust": "85", + "height": "158", + "hip": "86", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "グラマラス・ロワイヤル", + "alias_name_display": "グラマラス・ロワイヤル", + "event": [ + { + "event_id": 813, + "event_name": "第13回アイドルLIVEロワイヤル" + } + ], + "hash": "519d323f0a2f06e97bd6af40e79fcb98", + "id": "1525702", + "profile": { + "bust": "85", + "height": "158", + "hip": "86", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "デモニックソルジャー", + "alias_name_display": "デモニックソルジャー", + "event": [ + { + "event_id": 1210, + "event_name": "アイドルチャレンジ サバイバルゲーム編" + } + ], + "hash": "f4de77473b4f78559dc3f8500deee18f", + "id": "1432301", + "profile": { + "bust": "85", + "height": "158", + "hip": "86", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "デモニックソルジャー", + "alias_name_display": "デモニックソルジャー", + "event": [ + { + "event_id": 1210, + "event_name": "アイドルチャレンジ サバイバルゲーム編" + } + ], + "hash": "ae9a28ada0457cda1ba5a199023587d3", + "id": "1532302", + "profile": { + "bust": "85", + "height": "158", + "hip": "86", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "デモニックソルジャー・S", + "alias_name_display": "デモニックソルジャー・S", + "event": [ + { + "event_id": 1210, + "event_name": "アイドルチャレンジ サバイバルゲーム編" + } + ], + "hash": "647923bb59ff1a909f0f52938608227e", + "id": "1432401", + "profile": { + "bust": "85", + "height": "158", + "hip": "86", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "デモニックソルジャー・S", + "alias_name_display": "デモニックソルジャー・S", + "event": [ + { + "event_id": 1210, + "event_name": "アイドルチャレンジ サバイバルゲーム編" + } + ], + "hash": "5889d8f072f2fac046d4e3b55e2ac4ce", + "id": "1532402", + "profile": { + "bust": "85", + "height": "158", + "hip": "86", + "waist": "57", + "weight": "46" + } + } + ], + "idol_id": 45, + "idol_name": "柳清良", + "idol_name_display": "柳清良", + "units": [ + { + "id": "157", + "name": "デビリッシュゴシック" + }, + { + "id": "207", + "name": "ムーランルージュ" + } + ] + }, + { + "aliases": [ + { + "alias_name": "制服ベージュ", + "alias_name_display": "制服ベージュ", + "hash": "85d13609464513894fdecb0baad54c2a", + "id": "1201901", + "profile": { + "bust": "83", + "height": "158", + "hip": "82", + "waist": "56", + "weight": "46" + } + }, + { + "alias_name": "制服グレー", + "alias_name_display": "制服グレー", + "hash": "e5b85211de1d55c40d370545a8d61d7f", + "id": "1201902", + "profile": { + "bust": "83", + "height": "158", + "hip": "82", + "waist": "56", + "weight": "46" + } + }, + { + "alias_name": "制服ピンク", + "alias_name_display": "制服ピンク", + "hash": "8281a506b62578a43608d55490ef4b9d", + "id": "1201903", + "profile": { + "bust": "83", + "height": "158", + "hip": "82", + "waist": "56", + "weight": "46" + } + }, + { + "alias_name": "制服ブラック", + "alias_name_display": "制服ブラック", + "hash": "57c6cb85e692ea03a15052bb1c3bc7d6", + "id": "1201904", + "profile": { + "bust": "83", + "height": "158", + "hip": "82", + "waist": "56", + "weight": "46" + } + }, + { + "alias_name": "ザ☆ワイルドストロベリー", + "alias_name_display": "ザ☆ワイルドストロベリー", + "hash": "5152c6a98ac868d03a15f55534c5a32d", + "id": "1301905", + "profile": { + "bust": "83", + "height": "158", + "hip": "82", + "waist": "56", + "weight": "46" + } + }, + { + "alias_name": "ダリアノワール", + "alias_name_display": "ダリアノワール", + "hash": "e24cfc29ae88b186122cc858d94fe1a7", + "id": "1301906", + "profile": { + "bust": "83", + "height": "158", + "hip": "82", + "waist": "56", + "weight": "46" + } + }, + { + "alias_name": "レイクサイドパンジー", + "alias_name_display": "レイクサイドパンジー", + "hash": "29907bc26188d3171fa0eab89f44b9b7", + "id": "1301907", + "profile": { + "bust": "83", + "height": "158", + "hip": "82", + "waist": "56", + "weight": "46" + } + }, + { + "alias_name": "フォーチューンクローバー", + "alias_name_display": "フォーチューンクローバー", + "hash": "fe2fe78b29c7d4bdc824d820fd130c45", + "id": "1301908", + "profile": { + "bust": "83", + "height": "158", + "hip": "82", + "waist": "56", + "weight": "46" + } + }, + { + "alias_name": "ホットサマーシトラス", + "alias_name_display": "ホットサマーシトラス", + "hash": "75c1d9166fbf0b09e1cbb867000a2556", + "id": "1301909", + "profile": { + "bust": "83", + "height": "158", + "hip": "82", + "waist": "56", + "weight": "46" + } + }, + { + "alias_name": "普通の女の子", + "alias_name_display": "普通の女の子", + "hash": "894f904e12ca1fcf4891b47839c97ab7", + "id": "1400110", + "profile": { + "bust": "83", + "height": "158", + "hip": "82", + "waist": "56", + "weight": "46" + } + }, + { + "alias_name": "普通の女の子", + "alias_name_display": "普通の女の子", + "hash": "e7fe451b0e7483323d10d1c8b038bf94", + "id": "1500111", + "profile": { + "bust": "83", + "height": "158", + "hip": "82", + "waist": "56", + "weight": "46" + } + }, + { + "alias_name": "王道アイドル", + "alias_name_display": "王道アイドル", + "hash": "cbd4d17190b8b2715f502211ec0ededb", + "id": "1401401", + "profile": { + "bust": "83", + "height": "158", + "hip": "82", + "waist": "56", + "weight": "46" + } + }, + { + "alias_name": "王道アイドル", + "alias_name_display": "王道アイドル", + "hash": "fbbab084cf4eee36bb4a708a6d7be8d0", + "id": "1501402", + "profile": { + "bust": "83", + "height": "158", + "hip": "82", + "waist": "56", + "weight": "46" + } + }, + { + "alias_name": "シャイニーフェスタ", + "alias_name_display": "シャイニーフェスタ", + "hash": "3d10639a24d9fb8457ee6352be6922bf", + "id": "1403301", + "profile": { + "bust": "83", + "height": "158", + "hip": "82", + "waist": "56", + "weight": "46" + } + }, + { + "alias_name": "シャイニーフェスタ", + "alias_name_display": "シャイニーフェスタ", + "hash": "3e312f0be1822c45a9f64013e879f7c6", + "id": "1503302", + "profile": { + "bust": "83", + "height": "158", + "hip": "82", + "waist": "56", + "weight": "46" + } + }, + { + "alias_name": "ユカタメイド", + "alias_name_display": "ユカタメイド", + "hash": "e3053b178bab9f6dca92afea00011551", + "id": "1504902", + "profile": { + "bust": "83", + "height": "158", + "hip": "82", + "waist": "56", + "weight": "46" + } + }, + { + "alias_name": "アーリーサマーバカンス", + "alias_name_display": "アーリーサマーバカンス", + "hash": "eb10c4da293f3f132f146989bd997f64", + "id": "1507402", + "profile": { + "bust": "83", + "height": "158", + "hip": "82", + "waist": "56", + "weight": "46" + } + } + ], + "idol_id": 46, + "idol_name": "天海春香", + "idol_name_display": "天海春香" + }, + { + "aliases": [ + { + "event": [ + { + "event_id": 101, + "event_name": "星降るクリスマス" + } + ], + "hash": "e45c0c3027d05bf557aae92dadc353b8", + "id": "1202101", + "profile": { + "bust": "85", + "height": "163", + "hip": "88", + "waist": "60", + "weight": "48" + } + }, + { + "event": [ + { + "event_id": 101, + "event_name": "星降るクリスマス" + } + ], + "hash": "1300313f0ac00ac625a3ab3b05e784f8", + "id": "1302102", + "profile": { + "bust": "85", + "height": "163", + "hip": "88", + "waist": "60", + "weight": "48" + } + }, + { + "alias_name": "コスメティックガール", + "alias_name_display": "コスメティックガール", + "event": [ + { + "event_id": "007", + "event_name": "第7回プロダクションマッチフェスティバル" + } + ], + "hash": "a7c5c0dadc49e8461079d832e96fda8d", + "id": "1207201", + "profile": { + "bust": "85", + "height": "163", + "hip": "88", + "waist": "60", + "weight": "48" + } + }, + { + "alias_name": "コスメティックガール", + "alias_name_display": "コスメティックガール", + "event": [ + { + "event_id": "007", + "event_name": "第7回プロダクションマッチフェスティバル" + } + ], + "hash": "49a867483c6dc78f68b39dd6d12da52c", + "id": "1307202", + "profile": { + "bust": "85", + "height": "163", + "hip": "88", + "waist": "60", + "weight": "48" + } + }, + { + "alias_name": "びっくりウィンク", + "alias_name_display": "びっくりウィンク", + "hash": "baa18ddffaa449e63527a4d6c1103b69", + "id": "1219001", + "profile": { + "bust": "85", + "height": "163", + "hip": "88", + "waist": "60", + "weight": "48" + } + }, + { + "alias_name": "びっくりウィンク", + "alias_name_display": "びっくりウィンク", + "hash": "42572e4f6dd0a720da70c1fe78cc39bf", + "id": "1319002", + "profile": { + "bust": "85", + "height": "163", + "hip": "88", + "waist": "60", + "weight": "48" + } + }, + { + "alias_name": "オータムコレクション", + "alias_name_display": "オータムコレクション", + "hash": "72905292c809034429f21d1ca7a03213", + "id": "1224001", + "profile": { + "bust": "85", + "height": "163", + "hip": "88", + "waist": "60", + "weight": "48" + } + }, + { + "alias_name": "オータムコレクション", + "alias_name_display": "オータムコレクション", + "hash": "ba1e7aa823e2f486bd0b7f8dfa9f92c5", + "id": "1324002", + "profile": { + "bust": "85", + "height": "163", + "hip": "88", + "waist": "60", + "weight": "48" + } + }, + { + "alias_name": "サマービーチ", + "alias_name_display": "サマービーチ", + "hash": "a8af8761f80d9f7e4631228ebc66c583", + "id": "1229301", + "profile": { + "bust": "85", + "height": "163", + "hip": "88", + "waist": "60", + "weight": "48" + } + }, + { + "alias_name": "サマービーチ", + "alias_name_display": "サマービーチ", + "hash": "a584d77ce572744ffc8eeae90e0f7a0b", + "id": "1329302", + "profile": { + "bust": "85", + "height": "163", + "hip": "88", + "waist": "60", + "weight": "48" + } + }, + { + "alias_name": "ロマンチックナイト", + "alias_name_display": "ロマンチックナイト", + "event": [ + { + "event_id": 508, + "event_name": "LIVEツアーカーニバルinスペースワールド" + } + ], + "hash": "9c24447ef9d6a10a524b9de555ecd05a", + "id": "1409901", + "profile": { + "bust": "85", + "height": "163", + "hip": "88", + "waist": "60", + "weight": "48" + } + }, + { + "alias_name": "ロマンチックナイト", + "alias_name_display": "ロマンチックナイト", + "event": [ + { + "event_id": 508, + "event_name": "LIVEツアーカーニバルinスペースワールド" + } + ], + "hash": "1edf266e99871ff9d48d791d03376b23", + "id": "1509902", + "profile": { + "bust": "85", + "height": "163", + "hip": "88", + "waist": "60", + "weight": "48" + } + }, + { + "alias_name": "ビューティーヒール", + "alias_name_display": "ビューティーヒール", + "event": [ + { + "event_id": 523, + "event_name": "鋼鉄公演 きらりんロボ -襲来!コスメティア帝国-" + } + ], + "hash": "7cf80f4e1d6137d41dcb35a1228b2c4f", + "id": "1430501", + "profile": { + "bust": "85", + "height": "163", + "hip": "88", + "waist": "60", + "weight": "48" + } + }, + { + "alias_name": "ビューティーヒール", + "alias_name_display": "ビューティーヒール", + "event": [ + { + "event_id": 523, + "event_name": "鋼鉄公演 きらりんロボ -襲来!コスメティア帝国-" + } + ], + "hash": "33f32d395742c24944d95fdef61b71b3", + "id": "1530502", + "profile": { + "bust": "85", + "height": "163", + "hip": "88", + "waist": "60", + "weight": "48" + } + }, + { + "alias_name": "花畑マキアージュ", + "alias_name_display": "花畑マキアージュ", + "event": [ + { + "event_id": 728, + "event_name": "ドリームLIVEフェスティバル スプリングSP" + } + ], + "hash": "1ded8bab3016b38dff6df60ebf3e2f3c", + "id": "1439401", + "profile": { + "bust": "85", + "height": "163", + "hip": "88", + "waist": "60", + "weight": "48" + } + }, + { + "alias_name": "花畑マキアージュ", + "alias_name_display": "花畑マキアージュ", + "event": [ + { + "event_id": 728, + "event_name": "ドリームLIVEフェスティバル スプリングSP" + } + ], + "hash": "9394a74e8344967cbf42eb20eae12ab5", + "id": "1539402", + "profile": { + "bust": "85", + "height": "163", + "hip": "88", + "waist": "60", + "weight": "48" + } + } + ], + "idol_id": 47, + "idol_name": "井村雪菜", + "idol_name_display": "井村雪菜", + "units": [ + { + "id": "100", + "name": "ハートウォーマー" + } + ] + }, + { + "aliases": [ + { + "hash": "98daacfc83511eb95974e557aaf84caf", + "id": "1202301", + "profile": { + "bust": "77", + "height": "148", + "hip": "78", + "waist": "54", + "weight": "40" + } + }, + { + "hash": "a54ca3ed50318224a01b666b99687d1b", + "id": "1302302", + "profile": { + "bust": "77", + "height": "148", + "hip": "78", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "アニマルパーク", + "alias_name_display": "アニマルパーク", + "event": [ + { + "event_id": 204, + "event_name": "アイドルサバイバルin動物園" + } + ], + "hash": "93e14d9a6e04065bba6cb30745bbedcf", + "id": "1204501", + "profile": { + "bust": "77", + "height": "148", + "hip": "78", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "アニマルパーク", + "alias_name_display": "アニマルパーク", + "event": [ + { + "event_id": 204, + "event_name": "アイドルサバイバルin動物園" + } + ], + "hash": "060a14c59bc2e2373140cdf2a502b689", + "id": "1304502", + "profile": { + "bust": "77", + "height": "148", + "hip": "78", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "サマーバケーション", + "alias_name_display": "サマーバケーション", + "event": [ + { + "event_id": 211, + "event_name": "アイドルサバイバルinサマーバケーション" + } + ], + "hash": "64ce41dc523eb087c5a4d02a52fbc5d8", + "id": "1211401", + "profile": { + "bust": "77", + "height": "148", + "hip": "78", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "サマーバケーション", + "alias_name_display": "サマーバケーション", + "event": [ + { + "event_id": 211, + "event_name": "アイドルサバイバルinサマーバケーション" + } + ], + "hash": "a08838a564ba9bc6bfb9d76e91ab6ce9", + "id": "1311402", + "profile": { + "bust": "77", + "height": "148", + "hip": "78", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "マーチングバンド", + "alias_name_display": "マーチングバンド", + "hash": "41773d24499b3d8e05743752ccd92a1d", + "id": "1219401", + "profile": { + "bust": "77", + "height": "148", + "hip": "78", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "マーチングバンド", + "alias_name_display": "マーチングバンド", + "hash": "295b3b0ae7a4d4af95fff7bea9d5726e", + "id": "1319402", + "profile": { + "bust": "77", + "height": "148", + "hip": "78", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "スマートレディ", + "alias_name_display": "スマートレディ", + "hash": "dcd7d12d16749e4c24cbee10026b28bf", + "id": "1227101", + "profile": { + "bust": "77", + "height": "148", + "hip": "78", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "スマートレディ", + "alias_name_display": "スマートレディ", + "hash": "498690a47ff548be70cddb845339649a", + "id": "1327102", + "profile": { + "bust": "77", + "height": "148", + "hip": "78", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "湯けむり紀行", + "alias_name_display": "湯けむり紀行", + "hash": "e7b4ce48a14dfda28f3a1a116a8ea397", + "id": "1230601", + "profile": { + "bust": "77", + "height": "148", + "hip": "78", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "湯けむり紀行", + "alias_name_display": "湯けむり紀行", + "hash": "a71c410c5dd3fba39e1b1e8c34cf66b7", + "id": "1330602", + "profile": { + "bust": "77", + "height": "148", + "hip": "78", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "ローゼスゴシック", + "alias_name_display": "ローゼスゴシック", + "hash": "7cf6b998042d60ec860faf5e486261dc", + "id": "1405801", + "profile": { + "bust": "77", + "height": "148", + "hip": "78", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "ローゼスゴシック", + "alias_name_display": "ローゼスゴシック", + "hash": "ba8d96eebf33c4e6f9104a6bcb6c5ada", + "id": "1505802", + "profile": { + "bust": "77", + "height": "148", + "hip": "78", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "ロワイヤルリトル", + "alias_name_display": "ロワイヤルリトル", + "event": [ + { + "event_id": 805, + "event_name": "第5回アイドルLIVEロワイヤル" + } + ], + "hash": "9ce8db57726c12bb4d03b7187efd119b", + "id": "1415201", + "profile": { + "bust": "77", + "height": "148", + "hip": "78", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "ロワイヤルリトル", + "alias_name_display": "ロワイヤルリトル", + "event": [ + { + "event_id": 805, + "event_name": "第5回アイドルLIVEロワイヤル" + } + ], + "hash": "53393350148a36019963248cb5fbc2be", + "id": "1515202", + "profile": { + "bust": "77", + "height": "148", + "hip": "78", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "セクシー刑事", + "alias_name_display": "セクシー刑事", + "event": [ + { + "event_id": 521, + "event_name": "怪盗公演 美しき追跡者" + } + ], + "hash": "01cc6f010fdbaf4f9c132a9b17454c8a", + "id": "1427001", + "profile": { + "bust": "77", + "height": "148", + "hip": "78", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "セクシー刑事", + "alias_name_display": "セクシー刑事", + "event": [ + { + "event_id": 521, + "event_name": "怪盗公演 美しき追跡者" + } + ], + "hash": "16b3f7c98071fcc566c63e350f6d6755", + "id": "1527002", + "profile": { + "bust": "77", + "height": "148", + "hip": "78", + "waist": "54", + "weight": "40" + } + } + ], + "idol_id": 48, + "idol_name": "日下部若葉", + "idol_name_display": "日下部若葉", + "units": [ + { + "id": "84", + "name": "アニマルパーク" + }, + { + "id": "214", + "name": "L.M.B.G" + } + ] + }, + { + "aliases": [ + { + "hash": "0a2cb7263e4bab320935782c987b0ed1", + "id": "1202401", + "profile": { + "bust": "91", + "height": "162", + "hip": "86", + "waist": "56", + "weight": "46" + } + }, + { + "hash": "3971354d7c145d26b9e76bcf7ff85203", + "id": "1302402", + "profile": { + "bust": "91", + "height": "162", + "hip": "86", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "イタリアンスタイル", + "alias_name_display": "イタリアンスタイル", + "event": [ + { + "event_id": 503, + "event_name": "アイドルLIVEツアーinイタリア" + } + ], + "hash": "2744cd367edb50ffe7959ba47f5f6afe", + "id": "1208601", + "profile": { + "bust": "91", + "height": "162", + "hip": "86", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "イタリアンスタイル", + "alias_name_display": "イタリアンスタイル", + "event": [ + { + "event_id": 503, + "event_name": "アイドルLIVEツアーinイタリア" + } + ], + "hash": "1a71cce509dbda3f4d3a9d8a7a83b5a8", + "id": "1308602", + "profile": { + "bust": "91", + "height": "162", + "hip": "86", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "メロメロキャンディ", + "alias_name_display": "メロメロキャンディ", + "hash": "43d1d4fc514cdece1a5ae65bc99d480f", + "id": "1210501", + "profile": { + "bust": "91", + "height": "162", + "hip": "86", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "メロメロキャンディ", + "alias_name_display": "メロメロキャンディ", + "hash": "868ad09a014294cd1f31276948b65141", + "id": "1310502", + "profile": { + "bust": "91", + "height": "162", + "hip": "86", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ワーキング・マフィア", + "alias_name_display": "ワーキング・マフィア", + "hash": "6f0e256632a44047e538f5c99fe4fa31", + "id": "1216001", + "profile": { + "bust": "91", + "height": "162", + "hip": "86", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ワーキング・マフィア", + "alias_name_display": "ワーキング・マフィア", + "hash": "c04bfe60da8022fa3fc6561134749b65", + "id": "1316002", + "profile": { + "bust": "91", + "height": "162", + "hip": "86", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "夏祭り", + "alias_name_display": "夏祭り", + "event": [ + { + "event_id": 714, + "event_name": "夏祭りDEドリームLIVEフェスティバル" + } + ], + "hash": "656a5b69d3f81ed6c3f1afc6a294cb71", + "id": "1322402", + "profile": { + "bust": "91", + "height": "162", + "hip": "86", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ラブリーメイド", + "alias_name_display": "ラブリーメイド", + "hash": "08be8e4dcff4f7384656fca3062ccaba", + "id": "1225701", + "profile": { + "bust": "91", + "height": "162", + "hip": "86", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ラブリーメイド", + "alias_name_display": "ラブリーメイド", + "hash": "6993c3919d9955689694fab691b877a4", + "id": "1325702", + "profile": { + "bust": "91", + "height": "162", + "hip": "86", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ふんわりパピヨン", + "alias_name_display": "ふんわりパピヨン", + "hash": "c5f8a51fd468b2d67fbee35744959e59", + "id": "1232501", + "profile": { + "bust": "91", + "height": "162", + "hip": "86", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ふんわりパピヨン", + "alias_name_display": "ふんわりパピヨン", + "hash": "9948c2cc9042b6db538973772ffd6bee", + "id": "1332502", + "profile": { + "bust": "91", + "height": "162", + "hip": "86", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "スプラッシュボディ", + "alias_name_display": "スプラッシュボディ", + "event": [ + { + "event_id": 106, + "event_name": "アイドル水泳大会 水着のシンデレラ" + } + ], + "hash": "665f8311dc5ac353dbab012bdc91f241", + "id": "1402101", + "profile": { + "bust": "91", + "height": "162", + "hip": "86", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "スプラッシュボディ", + "alias_name_display": "スプラッシュボディ", + "event": [ + { + "event_id": 106, + "event_name": "アイドル水泳大会 水着のシンデレラ" + } + ], + "hash": "b188872f23583254256ebb336480a02a", + "id": "1502102", + "profile": { + "bust": "91", + "height": "162", + "hip": "86", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "シュガーリーボディ", + "alias_name_display": "シュガーリーボディ", + "hash": "dfdaeee13d94f788e2301b207dd20c03", + "id": "1410101", + "profile": { + "bust": "91", + "height": "162", + "hip": "86", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "シュガーリーボディ", + "alias_name_display": "シュガーリーボディ", + "hash": "f556daf2e4618d563405a10d77c33a91", + "id": "1510102", + "profile": { + "bust": "91", + "height": "162", + "hip": "86", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "スウィート・ロワイヤル", + "alias_name_display": "スウィート・ロワイヤル", + "event": [ + { + "event_id": 808, + "event_name": "第8回アイドルLIVEロワイヤル" + } + ], + "hash": "d36af7a953650e82735fa3de1fe95bbb", + "id": "1420001", + "profile": { + "bust": "91", + "height": "162", + "hip": "86", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "スウィート・ロワイヤル", + "alias_name_display": "スウィート・ロワイヤル", + "event": [ + { + "event_id": 808, + "event_name": "第8回アイドルLIVEロワイヤル" + } + ], + "hash": "a2014a0c6b69ec002f9f8795e01be8fc", + "id": "1520002", + "profile": { + "bust": "91", + "height": "162", + "hip": "86", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ゆるあまチアー", + "alias_name_display": "ゆるあまチアー", + "event": [ + { + "event_id": 1508, + "event_name": "チーム対抗トークバトルショー in SUMMER" + } + ], + "hash": "190de0bebd3334545f163e7279d80e28", + "id": "1434601", + "profile": { + "bust": "91", + "height": "162", + "hip": "86", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ゆるあまチアー", + "alias_name_display": "ゆるあまチアー", + "event": [ + { + "event_id": 1508, + "event_name": "チーム対抗トークバトルショー in SUMMER" + } + ], + "hash": "f5513ccc6e9fbd159a8a1c770341ca42", + "id": "1534602", + "profile": { + "bust": "91", + "height": "162", + "hip": "86", + "waist": "56", + "weight": "45" + } + } + ], + "idol_id": 49, + "idol_name": "榊原里美", + "idol_name_display": "榊原里美", + "units": [ + { + "id": "86", + "name": "イタリアンスタイル" + }, + { + "id": "128", + "name": "ラビュー☆アイス☆マウンテン" + } + ] + }, + { + "aliases": [ + { + "hash": "c3100ee880e230589036b29a80d7dce3", + "id": "1202501", + "profile": { + "bust": "74", + "height": "142", + "hip": "75", + "waist": "52", + "weight": "37" + } + }, + { + "hash": "44b8189f9d8c3f8c0d03a6759dba6b24", + "id": "1302502", + "profile": { + "bust": "74", + "height": "142", + "hip": "75", + "waist": "52", + "weight": "37" + } + }, + { + "alias_name": "自称・セクシーギャル", + "alias_name_display": "自称・セクシーギャル", + "hash": "119e0da77db1a7a1da32fe66dbb953fc", + "id": "1222101", + "profile": { + "bust": "74", + "height": "142", + "hip": "75", + "waist": "52", + "weight": "37" + } + }, + { + "alias_name": "自称・セクシーギャル", + "alias_name_display": "自称・セクシーギャル", + "hash": "6babab0e7bbff9fbf117cca8a8e30f5f", + "id": "1322102", + "profile": { + "bust": "74", + "height": "142", + "hip": "75", + "waist": "52", + "weight": "37" + } + }, + { + "alias_name": "自称・雪の妖精", + "alias_name_display": "自称・雪の妖精", + "hash": "add3aebe0ee8669d88a68ace3ea9b339", + "id": "1326702", + "profile": { + "bust": "74", + "height": "142", + "hip": "75", + "waist": "52", + "weight": "37" + } + }, + { + "alias_name": "自称・カワイイ雪の妖精", + "alias_name_display": "自称・カワイイ雪の妖精", + "hash": "41d032b770fa6bb15e85a2fd0371035f", + "id": "1326802", + "profile": { + "bust": "74", + "height": "142", + "hip": "75", + "waist": "52", + "weight": "37" + } + }, + { + "alias_name": "自称・カワイイ", + "alias_name_display": "自称・カワイイ", + "hash": "7d90d532451521e9f70c48914eae6de5", + "id": "1401901", + "profile": { + "bust": "74", + "height": "142", + "hip": "75", + "waist": "52", + "weight": "37" + } + }, + { + "alias_name": "自称・カワイイ", + "alias_name_display": "自称・カワイイ", + "hash": "4a02ad7e0335413adce0fdd7724e967c", + "id": "1501902", + "profile": { + "bust": "74", + "height": "142", + "hip": "75", + "waist": "52", + "weight": "37" + } + }, + { + "alias_name": "自称・天使", + "alias_name_display": "自称・天使", + "event": [ + { + "event_id": "006", + "event_name": "第6回プロダクションマッチフェスティバル" + } + ], + "hash": "b7041e1f27f77e00bcb6750a7efe307f", + "id": "1403601", + "profile": { + "bust": "74", + "height": "142", + "hip": "75", + "waist": "52", + "weight": "37" + } + }, + { + "alias_name": "自称・天使", + "alias_name_display": "自称・天使", + "event": [ + { + "event_id": "006", + "event_name": "第6回プロダクションマッチフェスティバル" + } + ], + "hash": "2a35fe0b79df5b24ac0c79bd61a9f05f", + "id": "1503602", + "profile": { + "bust": "74", + "height": "142", + "hip": "75", + "waist": "52", + "weight": "37" + } + }, + { + "alias_name": "自称・セクシー", + "alias_name_display": "自称・セクシー", + "hash": "af9eacda4fd4b4fbc2aaa65014c95ac8", + "id": "1406601", + "profile": { + "bust": "74", + "height": "142", + "hip": "75", + "waist": "52", + "weight": "37" + } + }, + { + "alias_name": "自称・セクシー", + "alias_name_display": "自称・セクシー", + "hash": "550ebee14289128b0ee7750ce580a9ae", + "id": "1506602", + "profile": { + "bust": "74", + "height": "142", + "hip": "75", + "waist": "52", + "weight": "37" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "4cac6cb206bb9a778ec1a0d242185a6e", + "id": "1406801", + "profile": { + "bust": "74", + "height": "142", + "hip": "75", + "waist": "52", + "weight": "37" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "405ead20308c43365ea6b73a1090c23f", + "id": "1506802", + "profile": { + "bust": "74", + "height": "142", + "hip": "75", + "waist": "52", + "weight": "37" + } + }, + { + "alias_name": "自称・プレゼント", + "alias_name_display": "自称・プレゼント", + "hash": "6e5d07375e8d1daf25b6e1138e4c6706", + "id": "1410801", + "profile": { + "bust": "74", + "height": "142", + "hip": "75", + "waist": "52", + "weight": "37" + } + }, + { + "alias_name": "自称・プレゼント", + "alias_name_display": "自称・プレゼント", + "hash": "8c67de4368ba3d1782b67e689190a5a0", + "id": "1510802", + "profile": { + "bust": "74", + "height": "142", + "hip": "75", + "waist": "52", + "weight": "37" + } + }, + { + "alias_name": "自称・マーメイド", + "alias_name_display": "自称・マーメイド", + "hash": "73a87ae220035842c13b47336b8135c2", + "id": "1415501", + "profile": { + "bust": "74", + "height": "142", + "hip": "75", + "waist": "52", + "weight": "37" + } + }, + { + "alias_name": "自称・マーメイド", + "alias_name_display": "自称・マーメイド", + "hash": "4637ded9f824e31f9033e488d3ca4257", + "id": "1515502", + "profile": { + "bust": "74", + "height": "142", + "hip": "75", + "waist": "52", + "weight": "37" + } + }, + { + "alias_name": "自称・幸運", + "alias_name_display": "自称・幸運", + "hash": "052ff3c640cc92727f8bfbc105db54eb", + "id": "1421201", + "profile": { + "bust": "74", + "height": "142", + "hip": "75", + "waist": "52", + "weight": "37" + } + }, + { + "alias_name": "自称・幸運", + "alias_name_display": "自称・幸運", + "hash": "2defe6d72fe38c3d48cb53926d7e9c77", + "id": "1521202", + "profile": { + "bust": "74", + "height": "142", + "hip": "75", + "waist": "52", + "weight": "37" + } + }, + { + "alias_name": "自称・美人の湯", + "alias_name_display": "自称・美人の湯", + "hash": "2756f820564442331dbf44db7f3c3c0f", + "id": "1428701", + "profile": { + "bust": "74", + "height": "142", + "hip": "75", + "waist": "52", + "weight": "37" + } + }, + { + "alias_name": "自称・美人の湯", + "alias_name_display": "自称・美人の湯", + "hash": "9d45a4277d932e0cb08d98d4a2a2b9d1", + "id": "1528702", + "profile": { + "bust": "74", + "height": "142", + "hip": "75", + "waist": "52", + "weight": "37" + } + }, + { + "alias_name": "自称・雪の女王", + "alias_name_display": "自称・雪の女王", + "event": [ + { + "event_id": 1705, + "event_name": "アイドルプロデュース きらめくオーロラ紀行" + } + ], + "hash": "c154615d96a3941b49e103e799e9e6ae", + "id": "1431401", + "profile": { + "bust": "74", + "height": "142", + "hip": "75", + "waist": "52", + "weight": "37" + } + }, + { + "alias_name": "自称・雪の女王", + "alias_name_display": "自称・雪の女王", + "event": [ + { + "event_id": 1705, + "event_name": "アイドルプロデュース きらめくオーロラ紀行" + } + ], + "hash": "933d6fd9a91faf9bd200d9454032857b", + "id": "1531402", + "profile": { + "bust": "74", + "height": "142", + "hip": "75", + "waist": "52", + "weight": "37" + } + }, + { + "alias_name": "自称・愛され系", + "alias_name_display": "自称・愛され系", + "hash": "0a91c9d32bc4dc8c10e2ec537e6403b4", + "id": "1439501", + "profile": { + "bust": "74", + "height": "142", + "hip": "75", + "waist": "52", + "weight": "37" + } + }, + { + "alias_name": "自称・愛され系", + "alias_name_display": "自称・愛され系", + "hash": "6510a11da53b691ab9031a461560116d", + "id": "1539502", + "profile": { + "bust": "74", + "height": "142", + "hip": "75", + "waist": "52", + "weight": "37" + } + } + ], + "idol_id": 50, + "idol_name": "輿水幸子", + "idol_name_display": "輿水幸子", + "units": [ + { + "id": "13", + "name": "カワスウィーティーなボクはぁと(仮)" + }, + { + "id": "90", + "name": "カワイイボクと142's" + }, + { + "id": "131", + "name": "KBYD" + }, + { + "id": "194", + "name": "サクヤヒメ" + }, + { + "id": "212", + "name": "CINDERELLA GIRLS" + } + ] + }, + { + "aliases": [ + { + "event": [ + { + "event_id": 201, + "event_name": "アイドルサバイバル" + } + ], + "hash": "a5a7e280731764ee1d3df5391bd87d43", + "id": "1202601", + "profile": { + "bust": "78", + "height": "156", + "hip": "77", + "waist": "55", + "weight": "41" + } + }, + { + "event": [ + { + "event_id": 201, + "event_name": "アイドルサバイバル" + } + ], + "hash": "4ee4d08e6743566a2417831a32247d1e", + "id": "1302602", + "profile": { + "bust": "78", + "height": "156", + "hip": "77", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "探偵メイドル", + "alias_name_display": "探偵メイドル", + "hash": "a9fd5baeb72c7d476b3e3e506ed7c2ca", + "id": "1208001", + "profile": { + "bust": "78", + "height": "156", + "hip": "77", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "探偵メイドル", + "alias_name_display": "探偵メイドル", + "hash": "c68534fca3fee1974ab2176c0d6f8cd0", + "id": "1308002", + "profile": { + "bust": "78", + "height": "156", + "hip": "77", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "張り込みスタイル", + "alias_name_display": "張り込みスタイル", + "event": [ + { + "event_id": "013", + "event_name": "第13回プロダクションマッチフェスティバル" + } + ], + "hash": "ae20bae6e55d325307f62cdbbcec2290", + "id": "1213001", + "profile": { + "bust": "78", + "height": "156", + "hip": "77", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "張り込みスタイル", + "alias_name_display": "張り込みスタイル", + "event": [ + { + "event_id": "013", + "event_name": "第13回プロダクションマッチフェスティバル" + } + ], + "hash": "ce38afed06051e2c10c439862d774bed", + "id": "1313002", + "profile": { + "bust": "78", + "height": "156", + "hip": "77", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "スクールスタイル", + "alias_name_display": "スクールスタイル", + "hash": "a853b8f786d001834e443816ba4b6d12", + "id": "1215501", + "profile": { + "bust": "78", + "height": "156", + "hip": "77", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "スクールスタイル", + "alias_name_display": "スクールスタイル", + "hash": "09a61fba9005db95a9befb741cbfe896", + "id": "1315502", + "profile": { + "bust": "78", + "height": "156", + "hip": "77", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "カジュアルルック", + "alias_name_display": "カジュアルルック", + "event": [ + { + "event_id": "022", + "event_name": "第22回プロダクションマッチフェスティバル" + } + ], + "hash": "e649afb6962e805a8762e062358a49d8", + "id": "1222201", + "profile": { + "bust": "78", + "height": "156", + "hip": "77", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "カジュアルルック", + "alias_name_display": "カジュアルルック", + "event": [ + { + "event_id": "022", + "event_name": "第22回プロダクションマッチフェスティバル" + } + ], + "hash": "bd5d8e86ac6245cb67e163d806c20cf3", + "id": "1322202", + "profile": { + "bust": "78", + "height": "156", + "hip": "77", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ウィンターコレクション", + "alias_name_display": "ウィンターコレクション", + "hash": "7563f63f96be801e208b41b831e3fb37", + "id": "1226201", + "profile": { + "bust": "78", + "height": "156", + "hip": "77", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ウィンターコレクション", + "alias_name_display": "ウィンターコレクション", + "hash": "d9734c1b775934b22c1bed99f087daab", + "id": "1326202", + "profile": { + "bust": "78", + "height": "156", + "hip": "77", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ゴーフォーヴィクトリー", + "alias_name_display": "ゴーフォーヴィクトリー", + "hash": "1a145e40e005d9c026e00055b86e98fe", + "id": "1232301", + "profile": { + "bust": "78", + "height": "156", + "hip": "77", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ゴーフォーヴィクトリー", + "alias_name_display": "ゴーフォーヴィクトリー", + "hash": "c068a0b85d95161ba617b3169c55918e", + "id": "1332302", + "profile": { + "bust": "78", + "height": "156", + "hip": "77", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "小さな名探偵", + "alias_name_display": "小さな名探偵", + "event": [ + { + "event_id": 701, + "event_name": "ドリームLIVEフェスティバル" + } + ], + "hash": "57a6b520d0c3ca4327c98d306c6ea914", + "id": "1407301", + "profile": { + "bust": "78", + "height": "156", + "hip": "77", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "小さな名探偵", + "alias_name_display": "小さな名探偵", + "event": [ + { + "event_id": 701, + "event_name": "ドリームLIVEフェスティバル" + } + ], + "hash": "63661d287588dd672a4a790c584ac3cc", + "id": "1507302", + "profile": { + "bust": "78", + "height": "156", + "hip": "77", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "聖夜のミステリー", + "alias_name_display": "聖夜のミステリー", + "event": [ + { + "event_id": 710, + "event_name": "サンタDEドリームLIVEフェスティバル" + } + ], + "hash": "6dddae01de63befe4d2aa03275925f12", + "id": "1420501", + "profile": { + "bust": "78", + "height": "156", + "hip": "77", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "聖夜のミステリー", + "alias_name_display": "聖夜のミステリー", + "event": [ + { + "event_id": 710, + "event_name": "サンタDEドリームLIVEフェスティバル" + } + ], + "hash": "b9abe3920c8acc09627f84020f2772ef", + "id": "1520502", + "profile": { + "bust": "78", + "height": "156", + "hip": "77", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ミステリーチアー", + "alias_name_display": "ミステリーチアー", + "event": [ + { + "event_id": 1504, + "event_name": "第4回チーム対抗トークバトルショー" + } + ], + "hash": "bdbb5104e4674a60d58db8d8397dd008", + "id": "1428201", + "profile": { + "bust": "78", + "height": "156", + "hip": "77", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ミステリーチアー", + "alias_name_display": "ミステリーチアー", + "event": [ + { + "event_id": 1504, + "event_name": "第4回チーム対抗トークバトルショー" + } + ], + "hash": "4355175e6d2fdc1aa18f7734cbbd965a", + "id": "1528202", + "profile": { + "bust": "78", + "height": "156", + "hip": "77", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "なぞときツアーズ", + "alias_name_display": "なぞときツアーズ", + "hash": "e6cd8597bd7834403a4199417cbd868e", + "id": "1434901", + "profile": { + "bust": "78", + "height": "156", + "hip": "77", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "なぞときツアーズ", + "alias_name_display": "なぞときツアーズ", + "hash": "0da70e0edc3ce8b0d0fcf9caf198d7d6", + "id": "1534902", + "profile": { + "bust": "78", + "height": "156", + "hip": "77", + "waist": "55", + "weight": "41" + } + } + ], + "idol_id": 51, + "idol_name": "安斎都", + "idol_name_display": "安斎都", + "units": [ + { + "id": "35", + "name": "ディテクティブヴァーサス" + } + ] + }, + { + "aliases": [ + { + "hash": "fa074d5e6fd70b950c77ecb6d0156075", + "id": "1202701", + "profile": { + "bust": "88", + "height": "160", + "hip": "84", + "waist": "59", + "weight": "48" + } + }, + { + "hash": "2692009a1145b12d88f8581a8d2a203e", + "id": "1302702", + "profile": { + "bust": "88", + "height": "160", + "hip": "84", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "テーマパーク", + "alias_name_display": "テーマパーク", + "event": [ + { + "event_id": 210, + "event_name": "アイドルサバイバルinテーマパーク2013" + } + ], + "hash": "35fdd14eb165bc7e6dec5d341e784f07", + "id": "1209501", + "profile": { + "bust": "88", + "height": "160", + "hip": "84", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "テーマパーク", + "alias_name_display": "テーマパーク", + "event": [ + { + "event_id": 210, + "event_name": "アイドルサバイバルinテーマパーク2013" + } + ], + "hash": "41d1d18a55c448cf46c582d1013b39b6", + "id": "1309502", + "profile": { + "bust": "88", + "height": "160", + "hip": "84", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "ピュアリーグラス", + "alias_name_display": "ピュアリーグラス", + "hash": "cf97a7ca4f0e1155ef221621fdf3cfd9", + "id": "1214101", + "profile": { + "bust": "88", + "height": "160", + "hip": "84", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "ピュアリーグラス", + "alias_name_display": "ピュアリーグラス", + "hash": "6fdde1b3e7496a6d33e393841a24b07d", + "id": "1314102", + "profile": { + "bust": "88", + "height": "160", + "hip": "84", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "パラダイスリゾート", + "alias_name_display": "パラダイスリゾート", + "hash": "466452eb133248e509e4fb3f4ebeacd7", + "id": "1217801", + "profile": { + "bust": "88", + "height": "160", + "hip": "84", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "パラダイスリゾート", + "alias_name_display": "パラダイスリゾート", + "hash": "442597c9044dfedfa1349fb2db19196a", + "id": "1317802", + "profile": { + "bust": "88", + "height": "160", + "hip": "84", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "クッキングバラエティ", + "alias_name_display": "クッキングバラエティ", + "event": [ + { + "event_id": 1801, + "event_name": "アイドルバラエティ 究極のショートケーキを作ろう!" + } + ], + "hash": "22c66ce65936f77c353214b025a41e58", + "id": "1323502", + "profile": { + "bust": "88", + "height": "160", + "hip": "84", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "ためらいごころ", + "alias_name_display": "ためらいごころ", + "hash": "e76f9bcd4d328a38a2624f05c28f9674", + "id": "1228001", + "profile": { + "bust": "88", + "height": "160", + "hip": "84", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "ためらいごころ", + "alias_name_display": "ためらいごころ", + "hash": "54ba56acfc2fc2727cf51c97786be2a5", + "id": "1328002", + "profile": { + "bust": "88", + "height": "160", + "hip": "84", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "シークレットクイーン", + "alias_name_display": "シークレットクイーン", + "event": [ + { + "event_id": 507, + "event_name": "LIVEツアーカーニバルinドイツ" + } + ], + "hash": "5f86b28cd88a283adc8408184d57da8d", + "id": "1408701", + "profile": { + "bust": "88", + "height": "160", + "hip": "84", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "シークレットクイーン", + "alias_name_display": "シークレットクイーン", + "event": [ + { + "event_id": 507, + "event_name": "LIVEツアーカーニバルinドイツ" + } + ], + "hash": "6044eaaac63254173edd6e0e2cc419ed", + "id": "1508702", + "profile": { + "bust": "88", + "height": "160", + "hip": "84", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "ランウェイモード", + "alias_name_display": "ランウェイモード", + "event": [ + { + "event_id": 1401, + "event_name": "ぷちデレラコレクション" + } + ], + "hash": "83af98fac0686269e12859012e21238f", + "id": "1422901", + "profile": { + "bust": "88", + "height": "160", + "hip": "84", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "ランウェイモード", + "alias_name_display": "ランウェイモード", + "event": [ + { + "event_id": 1401, + "event_name": "ぷちデレラコレクション" + } + ], + "hash": "6dabe78413e5135e83a9e9709b0665cd", + "id": "1522902", + "profile": { + "bust": "88", + "height": "160", + "hip": "84", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "くつろぎの温度", + "alias_name_display": "くつろぎの温度", + "event": [ + { + "event_id": 726, + "event_name": "ドリームLIVEフェスティバル新春SP" + } + ], + "hash": "c8c73f7e03c72c843e517dd8c759d868", + "id": "1437501", + "profile": { + "bust": "88", + "height": "160", + "hip": "84", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "くつろぎの温度", + "alias_name_display": "くつろぎの温度", + "event": [ + { + "event_id": 726, + "event_name": "ドリームLIVEフェスティバル新春SP" + } + ], + "hash": "3e11cdda3fb461943a95a243ccb16db8", + "id": "1537502", + "profile": { + "bust": "88", + "height": "160", + "hip": "84", + "waist": "59", + "weight": "48" + } + } + ], + "idol_id": 52, + "idol_name": "浅野風香", + "idol_name_display": "浅野風香", + "units": [ + { + "id": "49", + "name": "ピュアリーツイン" + }, + { + "id": "171", + "name": "Black/White-Roses" + }, + { + "id": "211", + "name": "ワンダー・フル" + } + ] + }, + { + "aliases": [ + { + "hash": "380a7a645fe50c52773fd2fceb026002", + "id": "1202801", + "profile": { + "bust": "81", + "height": "156", + "hip": "83", + "waist": "58", + "weight": "44" + } + }, + { + "hash": "057fbfa6eb12d147fe311a18fd6d712d", + "id": "1302802", + "profile": { + "bust": "81", + "height": "156", + "hip": "83", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "メルヘン&ゴシック", + "alias_name_display": "メルヘン&ゴシック", + "hash": "bcd6d181f73266ba4bc8fa827c46af98", + "id": "1208301", + "profile": { + "bust": "81", + "height": "156", + "hip": "83", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "メルヘン&ゴシック", + "alias_name_display": "メルヘン&ゴシック", + "hash": "cebe76011f0156a8ce7f7df691969bd6", + "id": "1308302", + "profile": { + "bust": "81", + "height": "156", + "hip": "83", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "スポーティスタイル", + "alias_name_display": "スポーティスタイル", + "event": [ + { + "event_id": 212, + "event_name": "アイドルサバイバル 秋の大運動会" + } + ], + "hash": "a45d124031fd6c6841aa249d597fc03b", + "id": "1212601", + "profile": { + "bust": "81", + "height": "156", + "hip": "83", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "スポーティスタイル", + "alias_name_display": "スポーティスタイル", + "event": [ + { + "event_id": 212, + "event_name": "アイドルサバイバル 秋の大運動会" + } + ], + "hash": "d0735e0957f993ca0fa4c57b0e8cefc6", + "id": "1312602", + "profile": { + "bust": "81", + "height": "156", + "hip": "83", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "フワフワユリユリ", + "alias_name_display": "フワフワユリユリ", + "hash": "c3c402f325f4d7cdec18af16c702a6a9", + "id": "1219201", + "profile": { + "bust": "81", + "height": "156", + "hip": "83", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "フワフワユリユリ", + "alias_name_display": "フワフワユリユリ", + "hash": "7589f5960cfac28375537d4f51eb58fa", + "id": "1319202", + "profile": { + "bust": "81", + "height": "156", + "hip": "83", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "真夏の誘惑", + "alias_name_display": "真夏の誘惑", + "event": [ + { + "event_id": 723, + "event_name": "水着DEドリームLIVEフェスティバル" + } + ], + "hash": "1249e065132351a934d2f63e9b1cb626", + "id": "1229201", + "profile": { + "bust": "81", + "height": "156", + "hip": "83", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "真夏の誘惑", + "alias_name_display": "真夏の誘惑", + "event": [ + { + "event_id": 723, + "event_name": "水着DEドリームLIVEフェスティバル" + } + ], + "hash": "6eccf22049120fb761a1ffa13bd38e88", + "id": "1329202", + "profile": { + "bust": "81", + "height": "156", + "hip": "83", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "ゴーフォーヴィクトリー", + "alias_name_display": "ゴーフォーヴィクトリー", + "hash": "8a0410a434927708f9fad0e055ec486b", + "id": "1232401", + "profile": { + "bust": "81", + "height": "156", + "hip": "83", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "ゴーフォーヴィクトリー", + "alias_name_display": "ゴーフォーヴィクトリー", + "hash": "ea7e3327461cab7eeea0197ac1bf31e6", + "id": "1332402", + "profile": { + "bust": "81", + "height": "156", + "hip": "83", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "目覚めし淑女", + "alias_name_display": "目覚めし淑女", + "event": [ + { + "event_id": "016", + "event_name": "第16回プロダクションマッチフェスティバル" + } + ], + "hash": "7e80103508171cd695652af2bf4006e5", + "id": "1413701", + "profile": { + "bust": "81", + "height": "156", + "hip": "83", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "目覚めし淑女", + "alias_name_display": "目覚めし淑女", + "event": [ + { + "event_id": "016", + "event_name": "第16回プロダクションマッチフェスティバル" + } + ], + "hash": "098c259560917bb02fc6769b79704b3f", + "id": "1513702", + "profile": { + "bust": "81", + "height": "156", + "hip": "83", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "レディライクバイオレット", + "alias_name_display": "レディライクバイオレット", + "event": [ + { + "event_id": 716, + "event_name": "第16回ドリームLIVEフェスティバル" + } + ], + "hash": "a302d6fc9e81362cc2a9d8a4e32bb8da", + "id": "1427901", + "profile": { + "bust": "81", + "height": "156", + "hip": "83", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "レディライクバイオレット", + "alias_name_display": "レディライクバイオレット", + "event": [ + { + "event_id": 716, + "event_name": "第16回ドリームLIVEフェスティバル" + } + ], + "hash": "493a01e58a43693352fd7343e3987069", + "id": "1527902", + "profile": { + "bust": "81", + "height": "156", + "hip": "83", + "waist": "58", + "weight": "44" + } + } + ], + "idol_id": 53, + "idol_name": "大西由里子", + "idol_name_display": "大西由里子", + "units": [ + { + "id": "12", + "name": "壁サーの花" + }, + { + "id": "165", + "name": "メルヘンゴシック" + } + ] + }, + { + "aliases": [ + { + "hash": "edd3438bd612a333a76edaea0ff73fe7", + "id": "1203001", + "profile": { + "bust": "84", + "height": "146", + "hip": "84", + "waist": "57", + "weight": "40" + } + }, + { + "hash": "6dba97132e9dac789aab3892e1bd89da", + "id": "1303002", + "profile": { + "bust": "84", + "height": "146", + "hip": "84", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "ニューイヤー", + "alias_name_display": "ニューイヤー", + "event": [ + { + "event_id": 404, + "event_name": "新春アイドルプロデュース" + } + ], + "hash": "801a8ecab88ba6aa4104c5704603b2d8", + "id": "1207001", + "profile": { + "bust": "84", + "height": "146", + "hip": "84", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "ニューイヤー", + "alias_name_display": "ニューイヤー", + "event": [ + { + "event_id": 404, + "event_name": "新春アイドルプロデュース" + } + ], + "hash": "2e254b75f29e7a12dd5e5743d061ba1e", + "id": "1307002", + "profile": { + "bust": "84", + "height": "146", + "hip": "84", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "お月見ウサミン", + "alias_name_display": "お月見ウサミン", + "event": [ + { + "event_id": 107, + "event_name": "秋夜のお月見会" + } + ], + "hash": "a8785d3980131a8fa98a30be1c8ee201", + "id": "1402901", + "profile": { + "bust": "84", + "height": "146", + "hip": "84", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "お月見ウサミン", + "alias_name_display": "お月見ウサミン", + "event": [ + { + "event_id": 107, + "event_name": "秋夜のお月見会" + } + ], + "hash": "5b31aabd5be01c365f5f42cc925fe6ef", + "id": "1502902", + "profile": { + "bust": "84", + "height": "146", + "hip": "84", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "制服ウサミン", + "alias_name_display": "制服ウサミン", + "hash": "f4c2b229d5ca32acc3a4505e83a5e746", + "id": "1406101", + "profile": { + "bust": "84", + "height": "146", + "hip": "84", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "制服ウサミン", + "alias_name_display": "制服ウサミン", + "hash": "3cd59eb00788e28e7740052f8b5b2639", + "id": "1506102", + "profile": { + "bust": "84", + "height": "146", + "hip": "84", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "aaccb3f4f6b7c29b28d2e55934c97a4f", + "id": "1406701", + "profile": { + "bust": "84", + "height": "146", + "hip": "84", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "e244b41f4ee149b403eda22f871cf129", + "id": "1506702", + "profile": { + "bust": "84", + "height": "146", + "hip": "84", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "ハッピーニューウサミン", + "alias_name_display": "ハッピーニューウサミン", + "event": [ + { + "event_id": 509, + "event_name": "新春LIVEツアーカーニバル" + } + ], + "hash": "5bc9852cf431141883ad09d3c214e524", + "id": "1411301", + "profile": { + "bust": "84", + "height": "146", + "hip": "84", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "ハッピーニューウサミン", + "alias_name_display": "ハッピーニューウサミン", + "event": [ + { + "event_id": 509, + "event_name": "新春LIVEツアーカーニバル" + } + ], + "hash": "371a0f77436b1f218c8300d50207019e", + "id": "1511302", + "profile": { + "bust": "84", + "height": "146", + "hip": "84", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "スペース☆ウサミン", + "alias_name_display": "スペース☆ウサミン", + "hash": "51c183ef6846a54a06aab46bf0a0fa02", + "id": "1414101", + "profile": { + "bust": "84", + "height": "146", + "hip": "84", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "スペース☆ウサミン", + "alias_name_display": "スペース☆ウサミン", + "hash": "77b6e905cf5dc2c15420c72345efd7b3", + "id": "1514102", + "profile": { + "bust": "84", + "height": "146", + "hip": "84", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "クリスマスウサミン", + "alias_name_display": "クリスマスウサミン", + "hash": "f7ef230f6291157eb6adfcf737d12b43", + "id": "1420401", + "profile": { + "bust": "84", + "height": "146", + "hip": "84", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "クリスマスウサミン", + "alias_name_display": "クリスマスウサミン", + "hash": "781fcb73651a24d165ba0ff488949829", + "id": "1520402", + "profile": { + "bust": "84", + "height": "146", + "hip": "84", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "サマー☆ウサミン", + "alias_name_display": "サマー☆ウサミン", + "hash": "582b54f85fa86da7ef3314d647193092", + "id": "1426501", + "profile": { + "bust": "84", + "height": "146", + "hip": "84", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "サマー☆ウサミン", + "alias_name_display": "サマー☆ウサミン", + "hash": "52fdee6f29f672792d8af79c239ac1fb", + "id": "1526502", + "profile": { + "bust": "84", + "height": "146", + "hip": "84", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "ワンダーランドラビット", + "alias_name_display": "ワンダーランドラビット", + "hash": "3a63db645ce9ee2878d44436a7c45eaa", + "id": "1432001", + "profile": { + "bust": "84", + "height": "146", + "hip": "84", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "ワンダーランドラビット", + "alias_name_display": "ワンダーランドラビット", + "hash": "f5d19805f9164fb58967a338d9a60551", + "id": "1532002", + "profile": { + "bust": "84", + "height": "146", + "hip": "84", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "ぽかぽかウサミン", + "alias_name_display": "ぽかぽかウサミン", + "hash": "d2dad4fd56c9ad3b62a7f34a05024b8b", + "id": "1436301", + "profile": { + "bust": "84", + "height": "146", + "hip": "84", + "waist": "57", + "weight": "40" + } + }, + { + "alias_name": "ぽかぽかウサミン", + "alias_name_display": "ぽかぽかウサミン", + "hash": "4646da2024bcd18a3334ba0c06a7770d", + "id": "1536302", + "profile": { + "bust": "84", + "height": "146", + "hip": "84", + "waist": "57", + "weight": "40" + } + } + ], + "idol_id": 54, + "idol_name": "安部菜々", + "idol_name_display": "安部菜々", + "units": [ + { + "id": "22", + "name": "シャイニー・アーリーデイズ" + }, + { + "id": "23", + "name": "しゅがしゅが☆み~ん" + }, + { + "id": "80", + "name": "P・U" + }, + { + "id": "115", + "name": "虹色ドリーマー" + }, + { + "id": "139", + "name": "397cherry" + }, + { + "id": "168", + "name": "*(Asterisk) with なつなな" + }, + { + "id": "184", + "name": "宵乙女" + }, + { + "id": "195", + "name": "C5" + } + ] + }, + { + "aliases": [ + { + "hash": "1a31c15fa7189284f9df6258d5382de2", + "id": "1203201", + "profile": { + "bust": "78", + "height": "154", + "hip": "81", + "waist": "54", + "weight": "41" + } + }, + { + "hash": "7792ea260d6769bc8ccff47fc2dc5026", + "id": "1303202", + "profile": { + "bust": "78", + "height": "154", + "hip": "81", + "waist": "54", + "weight": "41" + } + }, + { + "alias_name": "学園祭", + "alias_name_display": "学園祭", + "event": [ + { + "event_id": 206, + "event_name": "アイドルサバイバルin学園祭" + } + ], + "hash": "20bb972a45fb705f8e86bdb9f49c9f47", + "id": "1205601", + "profile": { + "bust": "78", + "height": "154", + "hip": "81", + "waist": "54", + "weight": "41" + } + }, + { + "alias_name": "学園祭", + "alias_name_display": "学園祭", + "event": [ + { + "event_id": 206, + "event_name": "アイドルサバイバルin学園祭" + } + ], + "hash": "7748ff72ac51f4cbd33212106e0e77cf", + "id": "1305602", + "profile": { + "bust": "78", + "height": "154", + "hip": "81", + "waist": "54", + "weight": "41" + } + }, + { + "alias_name": "ホワイトドロップ", + "alias_name_display": "ホワイトドロップ", + "hash": "dddf8f15c3a9e438456f8ab55e9b2870", + "id": "1207301", + "profile": { + "bust": "78", + "height": "154", + "hip": "81", + "waist": "54", + "weight": "41" + } + }, + { + "alias_name": "ホワイトドロップ", + "alias_name_display": "ホワイトドロップ", + "hash": "7cf82263a00da42088d07c2d6d9a21b5", + "id": "1307302", + "profile": { + "bust": "78", + "height": "154", + "hip": "81", + "waist": "54", + "weight": "41" + } + }, + { + "alias_name": "スクールスタイル", + "alias_name_display": "スクールスタイル", + "hash": "116fb3717443e8eecda0740a15862a1b", + "id": "1212701", + "profile": { + "bust": "78", + "height": "154", + "hip": "81", + "waist": "54", + "weight": "41" + } + }, + { + "alias_name": "スクールスタイル", + "alias_name_display": "スクールスタイル", + "hash": "17db83ca7e47ff1d1138593fae3a3d29", + "id": "1312702", + "profile": { + "bust": "78", + "height": "154", + "hip": "81", + "waist": "54", + "weight": "41" + } + }, + { + "alias_name": "ロワイヤル・スクエア", + "alias_name_display": "ロワイヤル・スクエア", + "event": [ + { + "event_id": 809, + "event_name": "第9回アイドルLIVEロワイヤル" + } + ], + "hash": "78eeaef914bcff2a04145a36a68f0f16", + "id": "1219901", + "profile": { + "bust": "78", + "height": "154", + "hip": "81", + "waist": "54", + "weight": "41" + } + }, + { + "alias_name": "ロワイヤル・スクエア", + "alias_name_display": "ロワイヤル・スクエア", + "event": [ + { + "event_id": 809, + "event_name": "第9回アイドルLIVEロワイヤル" + } + ], + "hash": "8302466346e62143800b5ac2e2857240", + "id": "1319902", + "profile": { + "bust": "78", + "height": "154", + "hip": "81", + "waist": "54", + "weight": "41" + } + }, + { + "alias_name": "ワーキング・クリーン", + "alias_name_display": "ワーキング・クリーン", + "hash": "f0ae078f852e73caba240b6cb3455cd8", + "id": "1226601", + "profile": { + "bust": "78", + "height": "154", + "hip": "81", + "waist": "54", + "weight": "41" + } + }, + { + "alias_name": "ワーキング・クリーン", + "alias_name_display": "ワーキング・クリーン", + "hash": "326d664c8733fd11eac64a7b69b0a670", + "id": "1326602", + "profile": { + "bust": "78", + "height": "154", + "hip": "81", + "waist": "54", + "weight": "41" + } + }, + { + "alias_name": "ネクストスターI.C", + "alias_name_display": "ネクストスターI.C", + "event": [ + { + "event_id": 1212, + "event_name": "目指せきらきらモデル アイドルチャレンジ(復刻)" + } + ], + "hash": "cf4089838cd7d614b245f82a6e90e084", + "id": "1329802", + "profile": { + "bust": "78", + "height": "154", + "hip": "81", + "waist": "54", + "weight": "41" + } + }, + { + "alias_name": "ハッピーマジシャン", + "alias_name_display": "ハッピーマジシャン", + "hash": "ede6fef2e6f2427e20c5ba19134205a9", + "id": "1406401", + "profile": { + "bust": "78", + "height": "154", + "hip": "81", + "waist": "54", + "weight": "41" + } + }, + { + "alias_name": "ハッピーマジシャン", + "alias_name_display": "ハッピーマジシャン", + "hash": "bf52c02010890d6f6c73481da077c15b", + "id": "1506402", + "profile": { + "bust": "78", + "height": "154", + "hip": "81", + "waist": "54", + "weight": "41" + } + }, + { + "alias_name": "私だけのステージ", + "alias_name_display": "私だけのステージ", + "event": [ + { + "event_id": 806, + "event_name": "アイドルLIVEロワイヤルinSUMMER" + } + ], + "hash": "1c52bde7c700cc558630899d6b10c5e6", + "id": "1417601", + "profile": { + "bust": "78", + "height": "154", + "hip": "81", + "waist": "54", + "weight": "41" + } + }, + { + "alias_name": "私だけのステージ", + "alias_name_display": "私だけのステージ", + "event": [ + { + "event_id": 806, + "event_name": "アイドルLIVEロワイヤルinSUMMER" + } + ], + "hash": "0471abe6c83dd4e955df04e92dc187be", + "id": "1517602", + "profile": { + "bust": "78", + "height": "154", + "hip": "81", + "waist": "54", + "weight": "41" + } + }, + { + "alias_name": "雨の日に", + "alias_name_display": "雨の日に", + "event": [ + { + "event_id": 1502, + "event_name": "チーム対抗雨の日トークバトルショー" + } + ], + "hash": "67a8414c7452e612da41dd0119dd106b", + "id": "1425201", + "profile": { + "bust": "78", + "height": "154", + "hip": "81", + "waist": "54", + "weight": "41" + } + }, + { + "alias_name": "雨の日に", + "alias_name_display": "雨の日に", + "event": [ + { + "event_id": 1502, + "event_name": "チーム対抗雨の日トークバトルショー" + } + ], + "hash": "137a1dcdb35042b1b2ed93dd018e7563", + "id": "1525202", + "profile": { + "bust": "78", + "height": "154", + "hip": "81", + "waist": "54", + "weight": "41" + } + }, + { + "alias_name": "ノスタルジッククォーツ", + "alias_name_display": "ノスタルジッククォーツ", + "hash": "cee63aa3410ac271f9e689e706fed16c", + "id": "1428401", + "profile": { + "bust": "78", + "height": "154", + "hip": "81", + "waist": "54", + "weight": "41" + } + }, + { + "alias_name": "ノスタルジッククォーツ", + "alias_name_display": "ノスタルジッククォーツ", + "hash": "6505d7ec95341d2ea666bce4c4ace347", + "id": "1528402", + "profile": { + "bust": "78", + "height": "154", + "hip": "81", + "waist": "54", + "weight": "41" + } + }, + { + "alias_name": "セクシー☆モデル", + "alias_name_display": "セクシー☆モデル", + "event": [ + { + "event_id": 1212, + "event_name": "目指せきらきらモデル アイドルチャレンジ(復刻)" + } + ], + "hash": "8f2182eb0bd0296d28272849b868c066", + "id": "1435301", + "profile": { + "bust": "78", + "height": "154", + "hip": "81", + "waist": "54", + "weight": "41" + } + }, + { + "alias_name": "セクシー☆モデル", + "alias_name_display": "セクシー☆モデル", + "event": [ + { + "event_id": 1212, + "event_name": "目指せきらきらモデル アイドルチャレンジ(復刻)" + } + ], + "hash": "dd3cbc7d99d27b18163a05c94d5fcbd1", + "id": "1535302", + "profile": { + "bust": "78", + "height": "154", + "hip": "81", + "waist": "54", + "weight": "41" + } + } + ], + "idol_id": 55, + "idol_name": "工藤忍", + "idol_name_display": "工藤忍", + "units": [ + { + "id": "163", + "name": "フリルドスクエア" + } + ] + }, + { + "aliases": [ + { + "hash": "9d98993861fb0959c1f26b591db03133", + "id": "1203301", + "profile": { + "bust": "77", + "height": "161", + "hip": "78", + "waist": "54", + "weight": "44" + } + }, + { + "hash": "1c72cc9daa679ff0461205b58cd658dd", + "id": "1303302", + "profile": { + "bust": "77", + "height": "161", + "hip": "78", + "waist": "54", + "weight": "44" + } + }, + { + "alias_name": "サマーライブ", + "alias_name_display": "サマーライブ", + "event": [ + { + "event_id": 205, + "event_name": "アイドルサバイバルinサマーライブ" + } + ], + "hash": "c939f82122b3992b8503b84d822325bf", + "id": "1205001", + "profile": { + "bust": "77", + "height": "161", + "hip": "78", + "waist": "54", + "weight": "44" + } + }, + { + "alias_name": "サマーライブ", + "alias_name_display": "サマーライブ", + "event": [ + { + "event_id": 205, + "event_name": "アイドルサバイバルinサマーライブ" + } + ], + "hash": "a6a97438fb401f3ba9527fd1a1e9854a", + "id": "1305002", + "profile": { + "bust": "77", + "height": "161", + "hip": "78", + "waist": "54", + "weight": "44" + } + }, + { + "alias_name": "ドキドキの体験", + "alias_name_display": "ドキドキの体験", + "event": [ + { + "event_id": 705, + "event_name": "第5回ドリームLIVEフェスティバル" + } + ], + "hash": "15fa4075fb991dac74c0169d34b75722", + "id": "1214401", + "profile": { + "bust": "77", + "height": "161", + "hip": "78", + "waist": "54", + "weight": "44" + } + }, + { + "alias_name": "ドキドキの体験", + "alias_name_display": "ドキドキの体験", + "event": [ + { + "event_id": 705, + "event_name": "第5回ドリームLIVEフェスティバル" + } + ], + "hash": "8311423f3087e6037c9f3947b25e2fa5", + "id": "1314402", + "profile": { + "bust": "77", + "height": "161", + "hip": "78", + "waist": "54", + "weight": "44" + } + }, + { + "alias_name": "カラダリフレッシュ", + "alias_name_display": "カラダリフレッシュ", + "hash": "976a98cd479d6fee3835551198607d08", + "id": "1221301", + "profile": { + "bust": "77", + "height": "161", + "hip": "78", + "waist": "54", + "weight": "44" + } + }, + { + "alias_name": "カラダリフレッシュ", + "alias_name_display": "カラダリフレッシュ", + "hash": "76f025719c16fbefa7645d13442902a9", + "id": "1321302", + "profile": { + "bust": "77", + "height": "161", + "hip": "78", + "waist": "54", + "weight": "44" + } + }, + { + "alias_name": "ロワイヤルND", + "alias_name_display": "ロワイヤルND", + "event": [ + { + "event_id": 814, + "event_name": "第14回アイドルLIVEロワイヤル" + } + ], + "hash": "72bff87c92c9241d7cbcd6bcbcac4a04", + "id": "1224501", + "profile": { + "bust": "77", + "height": "161", + "hip": "78", + "waist": "54", + "weight": "44" + } + }, + { + "alias_name": "ロワイヤルND", + "alias_name_display": "ロワイヤルND", + "event": [ + { + "event_id": 814, + "event_name": "第14回アイドルLIVEロワイヤル" + } + ], + "hash": "4c324bfd2ba4cf7549b0a42c87afc48d", + "id": "1324502", + "profile": { + "bust": "77", + "height": "161", + "hip": "78", + "waist": "54", + "weight": "44" + } + }, + { + "alias_name": "クール・ミーツ・ガール", + "alias_name_display": "クール・ミーツ・ガール", + "hash": "f0789a5de3fc7098ff85248f3da62600", + "id": "1229101", + "profile": { + "bust": "77", + "height": "161", + "hip": "78", + "waist": "54", + "weight": "44" + } + }, + { + "alias_name": "クール・ミーツ・ガール", + "alias_name_display": "クール・ミーツ・ガール", + "hash": "6e082b744d84ca3cf25e0662ef875acf", + "id": "1329102", + "profile": { + "bust": "77", + "height": "161", + "hip": "78", + "waist": "54", + "weight": "44" + } + }, + { + "alias_name": "水彩の乙姫", + "alias_name_display": "水彩の乙姫", + "hash": "4e33a40fb2614286e18111b184ced78f", + "id": "1404601", + "profile": { + "bust": "77", + "height": "161", + "hip": "78", + "waist": "54", + "weight": "44" + } + }, + { + "alias_name": "水彩の乙姫", + "alias_name_display": "水彩の乙姫", + "hash": "81c21953f0d614e868b6696aa7305141", + "id": "1504602", + "profile": { + "bust": "77", + "height": "161", + "hip": "78", + "waist": "54", + "weight": "44" + } + }, + { + "alias_name": "さざ波の歌姫", + "alias_name_display": "さざ波の歌姫", + "event": [ + { + "event_id": 505, + "event_name": "アイドルLIVEツアーinバリ島" + } + ], + "hash": "262fdd41fdad100b5ce5dfcb04660e43", + "id": "1407501", + "profile": { + "bust": "77", + "height": "161", + "hip": "78", + "waist": "54", + "weight": "44" + } + }, + { + "alias_name": "さざ波の歌姫", + "alias_name_display": "さざ波の歌姫", + "event": [ + { + "event_id": 505, + "event_name": "アイドルLIVEツアーinバリ島" + } + ], + "hash": "de9e3875700d52943c8ff3f36ae03f19", + "id": "1507502", + "profile": { + "bust": "77", + "height": "161", + "hip": "78", + "waist": "54", + "weight": "44" + } + }, + { + "alias_name": "サファリフレンズ", + "alias_name_display": "サファリフレンズ", + "event": [ + { + "event_id": 414, + "event_name": "どうぶつアドベンチャー オーストラリア編" + } + ], + "hash": "8c9125381bc6fac1f4bf22509e1f3d91", + "id": "1418001", + "profile": { + "bust": "77", + "height": "161", + "hip": "78", + "waist": "54", + "weight": "44" + } + }, + { + "alias_name": "サファリフレンズ", + "alias_name_display": "サファリフレンズ", + "event": [ + { + "event_id": 414, + "event_name": "どうぶつアドベンチャー オーストラリア編" + } + ], + "hash": "3948a272d8553ae67d31c24d9227e6ab", + "id": "1518002", + "profile": { + "bust": "77", + "height": "161", + "hip": "78", + "waist": "54", + "weight": "44" + } + }, + { + "alias_name": "サファリフレンズ・S", + "alias_name_display": "サファリフレンズ・S", + "event": [ + { + "event_id": 414, + "event_name": "どうぶつアドベンチャー オーストラリア編" + } + ], + "hash": "88cfe7b18e52bee4621c8215daf8da59", + "id": "1418101", + "profile": { + "bust": "77", + "height": "161", + "hip": "78", + "waist": "54", + "weight": "44" + } + }, + { + "alias_name": "サファリフレンズ・S", + "alias_name_display": "サファリフレンズ・S", + "event": [ + { + "event_id": 414, + "event_name": "どうぶつアドベンチャー オーストラリア編" + } + ], + "hash": "62f0227f670b106cec44eeb1b002a450", + "id": "1518102", + "profile": { + "bust": "77", + "height": "161", + "hip": "78", + "waist": "54", + "weight": "44" + } + }, + { + "alias_name": "淡色の花びら", + "alias_name_display": "淡色の花びら", + "hash": "b4e1af48b2ab90cf2741d4326408ad3c", + "id": "1439301", + "profile": { + "bust": "77", + "height": "161", + "hip": "78", + "waist": "54", + "weight": "44" + } + }, + { + "alias_name": "淡色の花びら", + "alias_name_display": "淡色の花びら", + "hash": "7a9fe2cd8a14757af1ce02c24ab770e4", + "id": "1539302", + "profile": { + "bust": "77", + "height": "161", + "hip": "78", + "waist": "54", + "weight": "44" + } + } + ], + "idol_id": 56, + "idol_name": "栗原ネネ", + "idol_name_display": "栗原ネネ", + "units": [ + { + "id": "93", + "name": "サマーライブセーラー" + }, + { + "id": "121", + "name": "ヘルシーサバイブ" + }, + { + "id": "210", + "name": "ロワイヤルスタイルND" + } + ] + }, + { + "aliases": [ + { + "hash": "f9947ff6fc9c5c580c0f6382c56cccbf", + "id": "1203601", + "profile": { + "bust": "72", + "height": "140", + "hip": "77", + "waist": "54", + "weight": "35" + } + }, + { + "hash": "a958d30cc805b714a494127e990bd867", + "id": "1303602", + "profile": { + "bust": "72", + "height": "140", + "hip": "77", + "waist": "54", + "weight": "35" + } + }, + { + "alias_name": "フリルド☆プリンセス", + "alias_name_display": "フリルド☆プリンセス", + "hash": "2f16bbc923b17cba192b8e631e40f14a", + "id": "1204601", + "profile": { + "bust": "72", + "height": "140", + "hip": "77", + "waist": "54", + "weight": "35" + } + }, + { + "alias_name": "フリルド☆プリンセス", + "alias_name_display": "フリルド☆プリンセス", + "hash": "abb8c88d2d8a4291bf9b718cf403fffb", + "id": "1304602", + "profile": { + "bust": "72", + "height": "140", + "hip": "77", + "waist": "54", + "weight": "35" + } + }, + { + "alias_name": "パジャマブルー", + "alias_name_display": "パジャマブルー", + "hash": "84e9eb47681f127f2f9302022290c6e5", + "id": "1207901", + "profile": { + "bust": "72", + "height": "140", + "hip": "77", + "waist": "54", + "weight": "35" + } + }, + { + "alias_name": "パジャマグリーン", + "alias_name_display": "パジャマグリーン", + "hash": "9c9de39a77a00515630ba298315f9770", + "id": "1207902", + "profile": { + "bust": "72", + "height": "140", + "hip": "77", + "waist": "54", + "weight": "35" + } + }, + { + "alias_name": "パジャマイエロー", + "alias_name_display": "パジャマイエロー", + "hash": "908f82baff4555afab72784e3fa06a76", + "id": "1207903", + "profile": { + "bust": "72", + "height": "140", + "hip": "77", + "waist": "54", + "weight": "35" + } + }, + { + "alias_name": "パジャマピンク", + "alias_name_display": "パジャマピンク", + "hash": "6d66dea9b369b70085809d46e563cdfd", + "id": "1207904", + "profile": { + "bust": "72", + "height": "140", + "hip": "77", + "waist": "54", + "weight": "35" + } + }, + { + "alias_name": "制服☆わくわく", + "alias_name_display": "制服☆わくわく", + "hash": "e88dc87103cc832f9c7da447a09a0dfb", + "id": "1307905", + "profile": { + "bust": "72", + "height": "140", + "hip": "77", + "waist": "54", + "weight": "35" + } + }, + { + "alias_name": "制服&マフラー", + "alias_name_display": "制服&マフラー", + "hash": "12a91027f594548bb27c110247c24a1a", + "id": "1307906", + "profile": { + "bust": "72", + "height": "140", + "hip": "77", + "waist": "54", + "weight": "35" + } + }, + { + "alias_name": "制服&手袋", + "alias_name_display": "制服&手袋", + "hash": "d2b1685306e2ed5a63b4f842d1e6ccc0", + "id": "1307907", + "profile": { + "bust": "72", + "height": "140", + "hip": "77", + "waist": "54", + "weight": "35" + } + }, + { + "alias_name": "制服&ランドセル", + "alias_name_display": "制服&ランドセル", + "hash": "46c0db7ce6d94de5ea0d5f485866a6a5", + "id": "1307908", + "profile": { + "bust": "72", + "height": "140", + "hip": "77", + "waist": "54", + "weight": "35" + } + }, + { + "alias_name": "制服&ヒョウくん", + "alias_name_display": "制服&ヒョウくん", + "hash": "f6913dd02d2b65c487bb089217117909", + "id": "1307909", + "profile": { + "bust": "72", + "height": "140", + "hip": "77", + "waist": "54", + "weight": "35" + } + }, + { + "alias_name": "ロワイヤルスタイル", + "alias_name_display": "ロワイヤルスタイル", + "event": [ + { + "event_id": 803, + "event_name": "第3回アイドルLIVEロワイヤル" + } + ], + "hash": "3ddcab2fd453ac8799225df9ef80955f", + "id": "1214301", + "profile": { + "bust": "72", + "height": "140", + "hip": "77", + "waist": "54", + "weight": "35" + } + }, + { + "alias_name": "ロワイヤルスタイル", + "alias_name_display": "ロワイヤルスタイル", + "event": [ + { + "event_id": 803, + "event_name": "第3回アイドルLIVEロワイヤル" + } + ], + "hash": "3f61d851272435aff56eece251b042b8", + "id": "1314302", + "profile": { + "bust": "72", + "height": "140", + "hip": "77", + "waist": "54", + "weight": "35" + } + }, + { + "alias_name": "マーチングバンド", + "alias_name_display": "マーチングバンド", + "hash": "c1c7ceef7ed0f01ef66002f6a1d559b7", + "id": "1216301", + "profile": { + "bust": "72", + "height": "140", + "hip": "77", + "waist": "54", + "weight": "35" + } + }, + { + "alias_name": "マーチングバンド", + "alias_name_display": "マーチングバンド", + "hash": "f43a06efe71914d7980f6d083f5e4154", + "id": "1316302", + "profile": { + "bust": "72", + "height": "140", + "hip": "77", + "waist": "54", + "weight": "35" + } + }, + { + "alias_name": "ナチュラルハート", + "alias_name_display": "ナチュラルハート", + "event": [ + { + "event_id": "024", + "event_name": "第24回プロダクションマッチフェスティバル" + } + ], + "hash": "9401b97954be6ce2c8b00e83c8a84d00", + "id": "1324202", + "profile": { + "bust": "72", + "height": "140", + "hip": "77", + "waist": "54", + "weight": "35" + } + }, + { + "alias_name": "ファンサーキット", + "alias_name_display": "ファンサーキット", + "hash": "8fcbae7bdef65dba83912049e25b4c68", + "id": "1227801", + "profile": { + "bust": "72", + "height": "140", + "hip": "77", + "waist": "54", + "weight": "35" + } + }, + { + "alias_name": "ファンサーキット", + "alias_name_display": "ファンサーキット", + "hash": "3ca5c74adb44ec35d7f38be469f91279", + "id": "1327802", + "profile": { + "bust": "72", + "height": "140", + "hip": "77", + "waist": "54", + "weight": "35" + } + }, + { + "alias_name": "ふかふかプリンセス", + "alias_name_display": "ふかふかプリンセス", + "hash": "2897b6951c70fbf6ec07bb04be52db1c", + "id": "1405510", + "profile": { + "bust": "72", + "height": "140", + "hip": "77", + "waist": "54", + "weight": "35" + } + }, + { + "alias_name": "ふかふかプリンセス", + "alias_name_display": "ふかふかプリンセス", + "hash": "9e8b0acfe5be8dbcfad65b1ba6924ede", + "id": "1505511", + "profile": { + "bust": "72", + "height": "140", + "hip": "77", + "waist": "54", + "weight": "35" + } + }, + { + "alias_name": "ドリーム☆プリンセス", + "alias_name_display": "ドリーム☆プリンセス", + "hash": "653cf8ab79b929a272572ebfb80e57eb", + "id": "1407201", + "profile": { + "bust": "72", + "height": "140", + "hip": "77", + "waist": "54", + "weight": "35" + } + }, + { + "alias_name": "ドリーム☆プリンセス", + "alias_name_display": "ドリーム☆プリンセス", + "hash": "177e5715b302c70280bcedb94097954d", + "id": "1507202", + "profile": { + "bust": "72", + "height": "140", + "hip": "77", + "waist": "54", + "weight": "35" + } + }, + { + "alias_name": "ファンシーチアー", + "alias_name_display": "ファンシーチアー", + "event": [ + { + "event_id": 1105, + "event_name": "第5回プロダクション対抗トークバトルショー" + } + ], + "hash": "b1326ae64519769176909f8c31b0ece5", + "id": "1418201", + "profile": { + "bust": "72", + "height": "140", + "hip": "77", + "waist": "54", + "weight": "35" + } + }, + { + "alias_name": "ファンシーチアー", + "alias_name_display": "ファンシーチアー", + "event": [ + { + "event_id": 1105, + "event_name": "第5回プロダクション対抗トークバトルショー" + } + ], + "hash": "e83e6fdacc1705cc72c321acf8c53c55", + "id": "1518202", + "profile": { + "bust": "72", + "height": "140", + "hip": "77", + "waist": "54", + "weight": "35" + } + }, + { + "alias_name": "プリンセスコースター", + "alias_name_display": "プリンセスコースター", + "event": [ + { + "event_id": 713, + "event_name": "第13回ドリームLIVEフェスティバル" + } + ], + "hash": "59e784ab13dc54104abc13f42cb007f6", + "id": "1424701", + "profile": { + "bust": "72", + "height": "140", + "hip": "77", + "waist": "54", + "weight": "35" + } + }, + { + "alias_name": "プリンセスコースター", + "alias_name_display": "プリンセスコースター", + "event": [ + { + "event_id": 713, + "event_name": "第13回ドリームLIVEフェスティバル" + } + ], + "hash": "582f24e271bd9b1df18e7806bea31b8f", + "id": "1524702", + "profile": { + "bust": "72", + "height": "140", + "hip": "77", + "waist": "54", + "weight": "35" + } + }, + { + "alias_name": "プリンセス☆レディ", + "alias_name_display": "プリンセス☆レディ", + "hash": "2297f63f27b1a7563bb827fe8a8392d2", + "id": "1435901", + "profile": { + "bust": "72", + "height": "140", + "hip": "77", + "waist": "54", + "weight": "35" + } + }, + { + "alias_name": "プリンセス☆レディ", + "alias_name_display": "プリンセス☆レディ", + "hash": "50a0bb6a83031685c407e03c4bd7d5b1", + "id": "1535902", + "profile": { + "bust": "72", + "height": "140", + "hip": "77", + "waist": "54", + "weight": "35" + } + } + ], + "idol_id": 57, + "idol_name": "古賀小春", + "idol_name_display": "古賀小春", + "units": [ + { + "id": "47", + "name": "ひつじさんとうさぎさん" + }, + { + "id": "59", + "name": "ムシバレイナと小春ちゃん" + }, + { + "id": "114", + "name": "ドリームホープスプリング" + }, + { + "id": "120", + "name": "ブルームジャーニー" + }, + { + "id": "177", + "name": "桜舞隊" + }, + { + "id": "208", + "name": "ロワイヤルスタイル" + }, + { + "id": "214", + "name": "L.M.B.G" + } + ] + }, + { + "aliases": [ + { + "hash": "15bf1c0a280683642827f5f4ef6463fa", + "id": "1204301", + "profile": { + "bust": "80", + "height": "166", + "hip": "82", + "waist": "55", + "weight": "45" + } + }, + { + "hash": "64b7f4bee3dcda84e80a6eb6fd74bed7", + "id": "1304302", + "profile": { + "bust": "80", + "height": "166", + "hip": "82", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "メイドコレクション", + "alias_name_display": "メイドコレクション", + "hash": "f96f386674b8663fb2d0922fb9bb9e2f", + "id": "1205501", + "profile": { + "bust": "80", + "height": "166", + "hip": "82", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "メイドコレクション", + "alias_name_display": "メイドコレクション", + "hash": "a6da3c43dccdc56dedb6e4ef4264b34b", + "id": "1305502", + "profile": { + "bust": "80", + "height": "166", + "hip": "82", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "慈愛の乙女", + "alias_name_display": "慈愛の乙女", + "hash": "5b2a364d0b324b33475a64e41a5481f5", + "id": "1210301", + "profile": { + "bust": "80", + "height": "166", + "hip": "82", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "慈愛の乙女", + "alias_name_display": "慈愛の乙女", + "hash": "c117570c3431e779a82be7645da607a8", + "id": "1310302", + "profile": { + "bust": "80", + "height": "166", + "hip": "82", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "ハッピーウェディング", + "alias_name_display": "ハッピーウェディング", + "hash": "bcae385375507c2e23cff748a71b04e0", + "id": "1216601", + "profile": { + "bust": "80", + "height": "166", + "hip": "82", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "ハッピーウェディング", + "alias_name_display": "ハッピーウェディング", + "hash": "99d87d7d5c512fe9aa88aa51d82a24ce", + "id": "1316602", + "profile": { + "bust": "80", + "height": "166", + "hip": "82", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "ロワイヤルスタイルND", + "alias_name_display": "ロワイヤルスタイルND", + "event": [ + { + "event_id": 812, + "event_name": "第12回アイドルLIVEロワイヤル" + } + ], + "hash": "f756925d3969cd208c9193cfe69a6ebb", + "id": "1221801", + "profile": { + "bust": "80", + "height": "166", + "hip": "82", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "ロワイヤルスタイルND", + "alias_name_display": "ロワイヤルスタイルND", + "event": [ + { + "event_id": 812, + "event_name": "第12回アイドルLIVEロワイヤル" + } + ], + "hash": "9c77a5684cc801ed51be43e8accc7c8d", + "id": "1321802", + "profile": { + "bust": "80", + "height": "166", + "hip": "82", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "純真聖女", + "alias_name_display": "純真聖女", + "hash": "65c278dd35248e03bfab057f151ae7ea", + "id": "1230401", + "profile": { + "bust": "80", + "height": "166", + "hip": "82", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "純真聖女", + "alias_name_display": "純真聖女", + "hash": "75ec6c3138ddc57e94e07cf9dad8eeee", + "id": "1330402", + "profile": { + "bust": "80", + "height": "166", + "hip": "82", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "微笑みの聖女", + "alias_name_display": "微笑みの聖女", + "event": [ + { + "event_id": 208, + "event_name": "アイドルサバイバル聖歌響くクリスマス" + } + ], + "hash": "09335c2b6f8ce37905b310bbeba456a2", + "id": "1404101", + "profile": { + "bust": "80", + "height": "166", + "hip": "82", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "微笑みの聖女", + "alias_name_display": "微笑みの聖女", + "event": [ + { + "event_id": 208, + "event_name": "アイドルサバイバル聖歌響くクリスマス" + } + ], + "hash": "bbc3b96cdd63b04e3f14b622cf9fb0b2", + "id": "1504102", + "profile": { + "bust": "80", + "height": "166", + "hip": "82", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "癒しの贈り主", + "alias_name_display": "癒しの贈り主", + "event": [ + { + "event_id": 1001, + "event_name": "プロダクション対抗ドリームLIVEフェスティバル" + } + ], + "hash": "e8c7a725d6386301ebc1ca860c09aa25", + "id": "1411201", + "profile": { + "bust": "80", + "height": "166", + "hip": "82", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "癒しの贈り主", + "alias_name_display": "癒しの贈り主", + "event": [ + { + "event_id": 1001, + "event_name": "プロダクション対抗ドリームLIVEフェスティバル" + } + ], + "hash": "90ab2e69f7fa23ee5ebebbcbd095ab98", + "id": "1511202", + "profile": { + "bust": "80", + "height": "166", + "hip": "82", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "クリスマスチアー", + "alias_name_display": "クリスマスチアー", + "event": [ + { + "event_id": 1107, + "event_name": "プロダクション対抗トークバトルショー クリスマスSP" + } + ], + "hash": "3bad9526e6a985a2b7857ab330d87849", + "id": "1420601", + "profile": { + "bust": "80", + "height": "166", + "hip": "82", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "クリスマスチアー", + "alias_name_display": "クリスマスチアー", + "event": [ + { + "event_id": 1107, + "event_name": "プロダクション対抗トークバトルショー クリスマスSP" + } + ], + "hash": "e67c46611c81f95a5e971bc09d145ed1", + "id": "1520602", + "profile": { + "bust": "80", + "height": "166", + "hip": "82", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "慈愛のくちどけ", + "alias_name_display": "慈愛のくちどけ", + "event": [ + { + "event_id": 1209, + "event_name": "アイドルチャレンジ チャレンジクッキング バレンタイン編" + } + ], + "hash": "79f78b16dee9f5ee22ea98b1b7444da2", + "id": "1431201", + "profile": { + "bust": "80", + "height": "166", + "hip": "82", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "慈愛のくちどけ", + "alias_name_display": "慈愛のくちどけ", + "event": [ + { + "event_id": 1209, + "event_name": "アイドルチャレンジ チャレンジクッキング バレンタイン編" + } + ], + "hash": "f86f977a29cb9522f4036111e42b68ee", + "id": "1531202", + "profile": { + "bust": "80", + "height": "166", + "hip": "82", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "サンクスクラウン", + "alias_name_display": "サンクスクラウン", + "event": [ + { + "event_id": 1709, + "event_name": "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" + } + ], + "hash": "50a051e89089dec096cf227dc1d90c28", + "id": "1438701", + "profile": { + "bust": "80", + "height": "166", + "hip": "82", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "サンクスクラウン", + "alias_name_display": "サンクスクラウン", + "event": [ + { + "event_id": 1709, + "event_name": "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" + } + ], + "hash": "f109cc5d07d143f89d64cb1e57b17b1f", + "id": "1538702", + "profile": { + "bust": "80", + "height": "166", + "hip": "82", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "スマイリークラウン", + "alias_name_display": "スマイリークラウン", + "event": [ + { + "event_id": 1709, + "event_name": "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" + } + ], + "hash": "87efd3625dad418d48da41787a2b37bb", + "id": "1438801", + "profile": { + "bust": "80", + "height": "166", + "hip": "82", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "スマイリークラウン", + "alias_name_display": "スマイリークラウン", + "event": [ + { + "event_id": 1709, + "event_name": "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" + } + ], + "hash": "982a1fa17a690105cf07772a7d5bc5a4", + "id": "1538802", + "profile": { + "bust": "80", + "height": "166", + "hip": "82", + "waist": "55", + "weight": "45" + } + } + ], + "idol_id": 58, + "idol_name": "クラリス", + "idol_name_display": "クラリス", + "units": [ + { + "id": "183", + "name": "メイドコレクション" + }, + { + "id": "210", + "name": "ロワイヤルスタイルND" + } + ] + }, + { + "aliases": [ + { + "hash": "34b22a25affabfd3160d7d70488f7e0d", + "id": "1204701", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "54", + "weight": "40" + } + }, + { + "hash": "66a161cbf5b2dbef9930d1e66a94353d", + "id": "1304702", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "ハロウィンパーティー", + "alias_name_display": "ハロウィンパーティー", + "hash": "8fbe508ea0cdc7965934226e987f7cf1", + "id": "1205801", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "ハロウィンパーティー", + "alias_name_display": "ハロウィンパーティー", + "hash": "779ae52ef5e88603c9f59a7c4bc9fc2e", + "id": "1305802", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "バレンタインパーティー", + "alias_name_display": "バレンタインパーティー", + "hash": "e992cd82aa6f3cb56778cdf52e6d61a7", + "id": "1207601", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "バレンタインパーティー", + "alias_name_display": "バレンタインパーティー", + "hash": "75dc2d3daa0e13a0a65993dca1ce22e6", + "id": "1307602", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "ミニオンルージュ", + "alias_name_display": "ミニオンルージュ", + "hash": "e25204e06ba87be0ce49d8bae0f75caf", + "id": "1218301", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "ミニオンルージュ", + "alias_name_display": "ミニオンルージュ", + "hash": "6f2093ebbf4a981184e7438c6e9e79ad", + "id": "1318302", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "恋愛シンドローム", + "alias_name_display": "恋愛シンドローム", + "event": [ + { + "event_id": "009", + "event_name": "第9回プロダクションマッチフェスティバル" + } + ], + "hash": "68906c11c99933d9b935559d28564dfb", + "id": "1406201", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "恋愛シンドローム", + "alias_name_display": "恋愛シンドローム", + "event": [ + { + "event_id": "009", + "event_name": "第9回プロダクションマッチフェスティバル" + } + ], + "hash": "94ed4bface9d28f01026c3bd4b37b5b6", + "id": "1506202", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "深紅の絆", + "alias_name_display": "深紅の絆", + "hash": "488b63adfa1f6ee6a8094d896c06a482", + "id": "1410001", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "深紅の絆", + "alias_name_display": "深紅の絆", + "hash": "b5fcc529f14d2af14cc88049959f75e5", + "id": "1510002", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "16b8ab88018ec7d082ed5e30fe919777", + "id": "1410201", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "14945818d71edf6c58aca2f6ac285880", + "id": "1510202", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "永遠のキズナ", + "alias_name_display": "永遠のキズナ", + "hash": "9e9302ef4df411ebec766455d8639829", + "id": "1415001", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "永遠のキズナ", + "alias_name_display": "永遠のキズナ", + "hash": "ee143713daf8980b379fcf4cb0781252", + "id": "1515002", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "夜の一面", + "alias_name_display": "夜の一面", + "hash": "6b05c13dbff446aa54b864db247803bc", + "id": "1422801", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "夜の一面", + "alias_name_display": "夜の一面", + "hash": "65767bfe6dbd99ac9fadfc92b50b8ef4", + "id": "1522802", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "夏の秘めごと", + "alias_name_display": "夏の秘めごと", + "hash": "30108d92501e8c84f060155397d0c3cf", + "id": "1425501", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "夏の秘めごと", + "alias_name_display": "夏の秘めごと", + "hash": "73bf94a283339f78981639b3e49dd978", + "id": "1525502", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "紡ぐ想い", + "alias_name_display": "紡ぐ想い", + "event": [ + { + "event_id": 718, + "event_name": "ドリームLIVEフェスティバル 新春SP" + } + ], + "hash": "82a3479c20cdb541e831b7c4e5545101", + "id": "1430301", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "紡ぐ想い", + "alias_name_display": "紡ぐ想い", + "event": [ + { + "event_id": 718, + "event_name": "ドリームLIVEフェスティバル 新春SP" + } + ], + "hash": "d57410cf13e6180f953b6a74468ce188", + "id": "1530302", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "あいの待ち人", + "alias_name_display": "あいの待ち人", + "hash": "b575c60c5be78090ea7ea898230be35c", + "id": "1433601", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "あいの待ち人", + "alias_name_display": "あいの待ち人", + "hash": "7c594e9d082d82d137aed4b622810830", + "id": "1533602", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "5thアニバーサリー", + "alias_name_display": "5thアニバーサリー", + "event": [ + { + "event_id": 1708, + "event_name": "アイドルプロデュース the 5th Anniversary" + } + ], + "hash": "3778fb8d5f804874476ab09b229a0b02", + "id": "1436701", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "5thアニバーサリー", + "alias_name_display": "5thアニバーサリー", + "event": [ + { + "event_id": 1708, + "event_name": "アイドルプロデュース the 5th Anniversary" + } + ], + "hash": "bbd2f79e3d424243b81065cdb02254b3", + "id": "1536702", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "5thアニバーサリー・S", + "alias_name_display": "5thアニバーサリー・S", + "event": [ + { + "event_id": 1708, + "event_name": "アイドルプロデュース the 5th Anniversary" + } + ], + "hash": "ae5998871579b27a0290534675a8ae45", + "id": "1436801", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "5thアニバーサリー・S", + "alias_name_display": "5thアニバーサリー・S", + "event": [ + { + "event_id": 1708, + "event_name": "アイドルプロデュース the 5th Anniversary" + } + ], + "hash": "992e3ae2a449f25bc4678f9bde5e327d", + "id": "1536802", + "profile": { + "bust": "78", + "height": "153", + "hip": "80", + "waist": "54", + "weight": "40" + } + } + ], + "idol_id": 59, + "idol_name": "佐久間まゆ", + "idol_name_display": "佐久間まゆ", + "units": [ + { + "id": "85", + "name": "アンダーザデスク" + }, + { + "id": "127", + "name": "落花流水" + }, + { + "id": "180", + "name": "ハロウィンパーティー" + }, + { + "id": "192", + "name": "Masque:Rade" + }, + { + "id": "194", + "name": "サクヤヒメ" + }, + { + "id": "212", + "name": "CINDERELLA GIRLS" + } + ] + }, + { + "aliases": [ + { + "alias_name": "ニューウェーブ", + "alias_name_display": "ニューウェーブ", + "event": [ + { + "event_id": 401, + "event_name": "新人アイドルプロデュース" + } + ], + "hash": "cca70f56774507cb696b0e85846a8786", + "id": "1205301", + "profile": { + "bust": "75", + "height": "145", + "hip": "77", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "ニューウェーブ", + "alias_name_display": "ニューウェーブ", + "event": [ + { + "event_id": 401, + "event_name": "新人アイドルプロデュース" + } + ], + "hash": "dd194a0d6c9801be6c7ff8401a9abb6a", + "id": "1305302", + "profile": { + "bust": "75", + "height": "145", + "hip": "77", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "アメリカンスタイル", + "alias_name_display": "アメリカンスタイル", + "event": [ + { + "event_id": 501, + "event_name": "アイドルLIVEツアーinUSA" + } + ], + "hash": "ccd71c6162319419c02c942f9a4fc25b", + "id": "1206501", + "profile": { + "bust": "75", + "height": "145", + "hip": "77", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "アメリカンスタイル", + "alias_name_display": "アメリカンスタイル", + "event": [ + { + "event_id": 501, + "event_name": "アイドルLIVEツアーinUSA" + } + ], + "hash": "5aa6b80bdf46181a90452a7c9a3d63d7", + "id": "1306502", + "profile": { + "bust": "75", + "height": "145", + "hip": "77", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "ジューンブライド", + "alias_name_display": "ジューンブライド", + "hash": "a4d1885668eaa8e900c8f5a23eb08026", + "id": "1210001", + "profile": { + "bust": "75", + "height": "145", + "hip": "77", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "ジューンブライド", + "alias_name_display": "ジューンブライド", + "hash": "6970f984e6d3f291ff2f448a2b1a12d5", + "id": "1310002", + "profile": { + "bust": "75", + "height": "145", + "hip": "77", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "ピーチブライト", + "alias_name_display": "ピーチブライト", + "hash": "6d9e8b1a789c3e37cbe870d637e2b03e", + "id": "1214801", + "profile": { + "bust": "75", + "height": "145", + "hip": "77", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "ピーチブライト", + "alias_name_display": "ピーチブライト", + "hash": "1b806506d65b67adbd6ecd51d47077c3", + "id": "1314802", + "profile": { + "bust": "75", + "height": "145", + "hip": "77", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "振袖まつり", + "alias_name_display": "振袖まつり", + "hash": "eedf6394ca7b88fe4ecad5cced109e30", + "id": "1219801", + "profile": { + "bust": "75", + "height": "145", + "hip": "77", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "振袖まつり", + "alias_name_display": "振袖まつり", + "hash": "e8c9d76c86a5b5fe86e5a1c438acb359", + "id": "1319802", + "profile": { + "bust": "75", + "height": "145", + "hip": "77", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "ラブリーヒーロー", + "alias_name_display": "ラブリーヒーロー", + "event": [ + { + "event_id": 523, + "event_name": "鋼鉄公演 きらりんロボ -襲来!コスメティア帝国-" + } + ], + "hash": "c1c6c25e5dcc6d8645f3646821d62193", + "id": "1325602", + "profile": { + "bust": "75", + "height": "145", + "hip": "77", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "ピーチウェーブ", + "alias_name_display": "ピーチウェーブ", + "event": [ + { + "event_id": 801, + "event_name": "アイドルLIVEロワイヤル" + } + ], + "hash": "66a93f44e6d4ebe903a0d2c9af55fa94", + "id": "1409401", + "profile": { + "bust": "75", + "height": "145", + "hip": "77", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "ピーチウェーブ", + "alias_name_display": "ピーチウェーブ", + "event": [ + { + "event_id": 801, + "event_name": "アイドルLIVEロワイヤル" + } + ], + "hash": "b0e88abd43d2e92070e87345604ba58e", + "id": "1509402", + "profile": { + "bust": "75", + "height": "145", + "hip": "77", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "ももいろはぁと", + "alias_name_display": "ももいろはぁと", + "hash": "cd57db91a5128ab3f53353c546fde622", + "id": "1417701", + "profile": { + "bust": "75", + "height": "145", + "hip": "77", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "ももいろはぁと", + "alias_name_display": "ももいろはぁと", + "hash": "67be2476e6f6f748af508b908680d3a4", + "id": "1517702", + "profile": { + "bust": "75", + "height": "145", + "hip": "77", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "ピンキーサマーガール", + "alias_name_display": "ピンキーサマーガール", + "event": [ + { + "event_id": 714, + "event_name": "夏祭りDEドリームLIVEフェスティバル" + } + ], + "hash": "66505d81c0f3883b0c8cea8b15730a0e", + "id": "1425401", + "profile": { + "bust": "75", + "height": "145", + "hip": "77", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "ピンキーサマーガール", + "alias_name_display": "ピンキーサマーガール", + "event": [ + { + "event_id": 714, + "event_name": "夏祭りDEドリームLIVEフェスティバル" + } + ], + "hash": "aa35983b252aac6dac6946873e8c284c", + "id": "1525402", + "profile": { + "bust": "75", + "height": "145", + "hip": "77", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "ピーチ・ロワイヤル", + "alias_name_display": "ピーチ・ロワイヤル", + "event": [ + { + "event_id": 819, + "event_name": "アイドルLIVEロワイヤル お月見SP" + } + ], + "hash": "26d33e3346c4ddd192d97386d5f6052d", + "id": "1435501", + "profile": { + "bust": "75", + "height": "145", + "hip": "77", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "ピーチ・ロワイヤル", + "alias_name_display": "ピーチ・ロワイヤル", + "event": [ + { + "event_id": 819, + "event_name": "アイドルLIVEロワイヤル お月見SP" + } + ], + "hash": "ebb11271a7d62ddd422485a4f70d346b", + "id": "1535502", + "profile": { + "bust": "75", + "height": "145", + "hip": "77", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "ピンキーチアー", + "alias_name_display": "ピンキーチアー", + "event": [ + { + "event_id": 1512, + "event_name": "第12回チーム対抗トークバトルショー" + } + ], + "hash": "25d4b3908e0cf5edea1c5c3b7dbdc238", + "id": "1439801", + "profile": { + "bust": "75", + "height": "145", + "hip": "77", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "ピンキーチアー", + "alias_name_display": "ピンキーチアー", + "event": [ + { + "event_id": 1512, + "event_name": "第12回チーム対抗トークバトルショー" + } + ], + "hash": "f3a647752b0e6c8f4d4938a2a5bbd308", + "id": "1539802", + "profile": { + "bust": "75", + "height": "145", + "hip": "77", + "waist": "55", + "weight": "38" + } + } + ], + "idol_id": 60, + "idol_name": "村松さくら", + "idol_name_display": "村松さくら", + "units": [ + { + "id": "99", + "name": "ニューウェーブ" + }, + { + "id": "133", + "name": "スケルツォ・プリマヴェーラ" + }, + { + "id": "211", + "name": "ワンダー・フル" + } + ] + }, + { + "aliases": [ + { + "hash": "131e22dcecbfcd1842e42ba64311950f", + "id": "1207401", + "profile": { + "bust": "77", + "height": "156", + "hip": "79", + "waist": "53", + "weight": "42" + } + }, + { + "hash": "ac752be594a7ef6f941afe54b16fb89f", + "id": "1307402", + "profile": { + "bust": "77", + "height": "156", + "hip": "79", + "waist": "53", + "weight": "42" + } + }, + { + "alias_name": "スズランの少女", + "alias_name_display": "スズランの少女", + "hash": "a972c564e643b4fd29062fd793dea518", + "id": "1209101", + "profile": { + "bust": "77", + "height": "156", + "hip": "79", + "waist": "53", + "weight": "42" + } + }, + { + "alias_name": "スズランの少女", + "alias_name_display": "スズランの少女", + "hash": "98f023a92a2325a9d8d8e6792c0fdfc5", + "id": "1309102", + "profile": { + "bust": "77", + "height": "156", + "hip": "79", + "waist": "53", + "weight": "42" + } + }, + { + "alias_name": "クリスマスパーティー", + "alias_name_display": "クリスマスパーティー", + "hash": "696123f234c80f15774af4abddf16b96", + "id": "1213501", + "profile": { + "bust": "77", + "height": "156", + "hip": "79", + "waist": "53", + "weight": "42" + } + }, + { + "alias_name": "クリスマスパーティー", + "alias_name_display": "クリスマスパーティー", + "hash": "58a8fe570f2ff89670664b97f7aa7e3c", + "id": "1313502", + "profile": { + "bust": "77", + "height": "156", + "hip": "79", + "waist": "53", + "weight": "42" + } + }, + { + "alias_name": "ネクストスターI.C", + "alias_name_display": "ネクストスターI.C", + "event": [ + { + "event_id": 1203, + "event_name": "目指せきらきらモデル アイドルチャレンジ" + } + ], + "hash": "d1446ce3ef56732762e0abfd25c5af29", + "id": "1318502", + "profile": { + "bust": "77", + "height": "156", + "hip": "79", + "waist": "53", + "weight": "42" + } + }, + { + "alias_name": "ブライダルセレクション", + "alias_name_display": "ブライダルセレクション", + "hash": "baa3f8a78d448f1a5d92a31fb365d788", + "id": "1221901", + "profile": { + "bust": "77", + "height": "156", + "hip": "79", + "waist": "53", + "weight": "42" + } + }, + { + "alias_name": "ブライダルセレクション", + "alias_name_display": "ブライダルセレクション", + "hash": "e7625d22c7ab7a44501f90367a46f6ce", + "id": "1321902", + "profile": { + "bust": "77", + "height": "156", + "hip": "79", + "waist": "53", + "weight": "42" + } + }, + { + "alias_name": "新春ガール", + "alias_name_display": "新春ガール", + "hash": "0e072ad042d396bdaa534d07b3bff9ce", + "id": "1225501", + "profile": { + "bust": "77", + "height": "156", + "hip": "79", + "waist": "53", + "weight": "42" + } + }, + { + "alias_name": "新春ガール", + "alias_name_display": "新春ガール", + "hash": "9bd07056d855d3a6dec35a7e6892522a", + "id": "1325502", + "profile": { + "bust": "77", + "height": "156", + "hip": "79", + "waist": "53", + "weight": "42" + } + }, + { + "alias_name": "とらわれの少女", + "alias_name_display": "とらわれの少女", + "event": [ + { + "event_id": 1903, + "event_name": "怪奇公演 心霊探偵の事件簿" + } + ], + "hash": "ba6722bb1c6dcdbd1a91709668e646aa", + "id": "1329402", + "profile": { + "bust": "77", + "height": "156", + "hip": "79", + "waist": "53", + "weight": "42" + } + }, + { + "alias_name": "ガーリーホープ", + "alias_name_display": "ガーリーホープ", + "hash": "05647a0c627bedf18e33330d17457248", + "id": "1232201", + "profile": { + "bust": "77", + "height": "156", + "hip": "79", + "waist": "53", + "weight": "42" + } + }, + { + "alias_name": "ガーリーホープ", + "alias_name_display": "ガーリーホープ", + "hash": "48a8bc3f29d0f6ca1d50f2ccc232704d", + "id": "1332202", + "profile": { + "bust": "77", + "height": "156", + "hip": "79", + "waist": "53", + "weight": "42" + } + }, + { + "alias_name": "一輪の幸せ", + "alias_name_display": "一輪の幸せ", + "event": [ + { + "event_id": 408, + "event_name": "アイドルプロデュース 夜空に咲く花火編" + } + ], + "hash": "7366f59d1cb9104aa14408bf6b0a1685", + "id": "1407801", + "profile": { + "bust": "77", + "height": "156", + "hip": "79", + "waist": "53", + "weight": "42" + } + }, + { + "alias_name": "一輪の幸せ", + "alias_name_display": "一輪の幸せ", + "event": [ + { + "event_id": 408, + "event_name": "アイドルプロデュース 夜空に咲く花火編" + } + ], + "hash": "0b0556489f7c356f4f86c7f62c1895fe", + "id": "1507802", + "profile": { + "bust": "77", + "height": "156", + "hip": "79", + "waist": "53", + "weight": "42" + } + }, + { + "alias_name": "一輪の微笑み", + "alias_name_display": "一輪の微笑み", + "event": [ + { + "event_id": 408, + "event_name": "アイドルプロデュース 夜空に咲く花火編" + } + ], + "hash": "6a60f6b5f8784dc117518141ec85d6ce", + "id": "1407901", + "profile": { + "bust": "77", + "height": "156", + "hip": "79", + "waist": "53", + "weight": "42" + } + }, + { + "alias_name": "一輪の微笑み", + "alias_name_display": "一輪の微笑み", + "event": [ + { + "event_id": 408, + "event_name": "アイドルプロデュース 夜空に咲く花火編" + } + ], + "hash": "e9e67aa3048f99a1b6c947420f14fd39", + "id": "1507902", + "profile": { + "bust": "77", + "height": "156", + "hip": "79", + "waist": "53", + "weight": "42" + } + }, + { + "alias_name": "ヴォヤージュ・ブレイバー", + "alias_name_display": "ヴォヤージュ・ブレイバー", + "event": [ + { + "event_id": 511, + "event_name": "幻想公演 黒薔薇姫のヴォヤージュ" + } + ], + "hash": "3951d206a98c01816ea716b884c4493c", + "id": "1413501", + "profile": { + "bust": "77", + "height": "156", + "hip": "79", + "waist": "53", + "weight": "42" + } + }, + { + "alias_name": "ヴォヤージュ・ブレイバー", + "alias_name_display": "ヴォヤージュ・ブレイバー", + "event": [ + { + "event_id": 511, + "event_name": "幻想公演 黒薔薇姫のヴォヤージュ" + } + ], + "hash": "7ee03937f2b9ff863c42b7f56b2e3452", + "id": "1513502", + "profile": { + "bust": "77", + "height": "156", + "hip": "79", + "waist": "53", + "weight": "42" + } + }, + { + "alias_name": "ゴシック・モデル", + "alias_name_display": "ゴシック・モデル", + "event": [ + { + "event_id": 1203, + "event_name": "目指せきらきらモデル アイドルチャレンジ" + } + ], + "hash": "528f78898b64b0cfca21b9b3df92b8f9", + "id": "1418501", + "profile": { + "bust": "77", + "height": "156", + "hip": "79", + "waist": "53", + "weight": "42" + } + }, + { + "alias_name": "ゴシック・モデル", + "alias_name_display": "ゴシック・モデル", + "event": [ + { + "event_id": 1203, + "event_name": "目指せきらきらモデル アイドルチャレンジ" + } + ], + "hash": "60957fb83e61728971e59c3b7d6db824", + "id": "1518502", + "profile": { + "bust": "77", + "height": "156", + "hip": "79", + "waist": "53", + "weight": "42" + } + }, + { + "alias_name": "ゴシック・モデル・S", + "alias_name_display": "ゴシック・モデル・S", + "event": [ + { + "event_id": 1203, + "event_name": "目指せきらきらモデル アイドルチャレンジ" + } + ], + "hash": "34008f666855a0243d603059170c529d", + "id": "1418601", + "profile": { + "bust": "77", + "height": "156", + "hip": "79", + "waist": "53", + "weight": "42" + } + }, + { + "alias_name": "ゴシック・モデル・S", + "alias_name_display": "ゴシック・モデル・S", + "event": [ + { + "event_id": 1203, + "event_name": "目指せきらきらモデル アイドルチャレンジ" + } + ], + "hash": "6368d0388cfd0c45ce09e176b611d5ba", + "id": "1518602", + "profile": { + "bust": "77", + "height": "156", + "hip": "79", + "waist": "53", + "weight": "42" + } + }, + { + "alias_name": "たいせつな言葉", + "alias_name_display": "たいせつな言葉", + "event": [ + { + "event_id": 1108, + "event_name": "第8回プロダクション対抗トークバトルショー" + } + ], + "hash": "138f907e7b673a2da81e05f01255d8d4", + "id": "1421601", + "profile": { + "bust": "77", + "height": "156", + "hip": "79", + "waist": "53", + "weight": "42" + } + }, + { + "alias_name": "たいせつな言葉", + "alias_name_display": "たいせつな言葉", + "event": [ + { + "event_id": 1108, + "event_name": "第8回プロダクション対抗トークバトルショー" + } + ], + "hash": "311b51c7dd9d3484cdc72a6581515137", + "id": "1521602", + "profile": { + "bust": "77", + "height": "156", + "hip": "79", + "waist": "53", + "weight": "42" + } + }, + { + "alias_name": "小さなひかり", + "alias_name_display": "小さなひかり", + "hash": "bdbf0b4f40b07b310430176c7c3fae8a", + "id": "1427401", + "profile": { + "bust": "77", + "height": "156", + "hip": "79", + "waist": "53", + "weight": "42" + } + }, + { + "alias_name": "小さなひかり", + "alias_name_display": "小さなひかり", + "hash": "9024cb32c76078e8f0e4850151c007ba", + "id": "1527402", + "profile": { + "bust": "77", + "height": "156", + "hip": "79", + "waist": "53", + "weight": "42" + } + } + ], + "idol_id": 61, + "idol_name": "白菊ほたる", + "idol_name_display": "白菊ほたる", + "units": [ + { + "id": "58", + "name": "ミス・フォーチュン" + }, + { + "id": "129", + "name": "ワンステップス" + }, + { + "id": "130", + "name": "GIRLS BE" + }, + { + "id": "162", + "name": "ブライダルセレクション" + }, + { + "id": "172", + "name": "GIRLS BE NEXT STEP" + } + ] + }, + { + "aliases": [ + { + "hash": "bad5f37bdb10a4526a1783e377e160ff", + "id": "1208501", + "profile": { + "bust": "75", + "height": "147", + "hip": "77", + "waist": "54", + "weight": "39" + } + }, + { + "hash": "68cea8b7be360ca60cfe489fef72ba4d", + "id": "1308502", + "profile": { + "bust": "75", + "height": "147", + "hip": "77", + "waist": "54", + "weight": "39" + } + }, + { + "alias_name": "ポッピンパンク", + "alias_name_display": "ポッピンパンク", + "hash": "d79fbb722742fb5beb56c15f1c4f103f", + "id": "1209601", + "profile": { + "bust": "75", + "height": "147", + "hip": "77", + "waist": "54", + "weight": "39" + } + }, + { + "alias_name": "ポッピンパンク", + "alias_name_display": "ポッピンパンク", + "hash": "c2b615df454d63ec7b6d75b7764088f0", + "id": "1309602", + "profile": { + "bust": "75", + "height": "147", + "hip": "77", + "waist": "54", + "weight": "39" + } + }, + { + "alias_name": "振袖まつり", + "alias_name_display": "振袖まつり", + "hash": "7a86475ebfdde585eda4c811ec24cbad", + "id": "1219701", + "profile": { + "bust": "75", + "height": "147", + "hip": "77", + "waist": "54", + "weight": "39" + } + }, + { + "alias_name": "振袖まつり", + "alias_name_display": "振袖まつり", + "hash": "bdd3d0105cd1458f0dc2d730aa7d1d7d", + "id": "1319702", + "profile": { + "bust": "75", + "height": "147", + "hip": "77", + "waist": "54", + "weight": "39" + } + }, + { + "alias_name": "春キャンプ", + "alias_name_display": "春キャンプ", + "event": [ + { + "event_id": 1701, + "event_name": "アイドルプロデュース はじめてのキャンプ" + } + ], + "hash": "b371a7c3e8b202a0c678f650caab9648", + "id": "1221401", + "profile": { + "bust": "75", + "height": "147", + "hip": "77", + "waist": "54", + "weight": "39" + } + }, + { + "alias_name": "春キャンプ", + "alias_name_display": "春キャンプ", + "event": [ + { + "event_id": 1701, + "event_name": "アイドルプロデュース はじめてのキャンプ" + } + ], + "hash": "8c64826cbb5c5e106dc37e01b4613eb0", + "id": "1321402", + "profile": { + "bust": "75", + "height": "147", + "hip": "77", + "waist": "54", + "weight": "39" + } + }, + { + "alias_name": "笑顔でキャンプ", + "alias_name_display": "笑顔でキャンプ", + "event": [ + { + "event_id": 1701, + "event_name": "アイドルプロデュース はじめてのキャンプ" + } + ], + "hash": "8641b029a36d30cac2224b3e28374de5", + "id": "1221501", + "profile": { + "bust": "75", + "height": "147", + "hip": "77", + "waist": "54", + "weight": "39" + } + }, + { + "alias_name": "笑顔でキャンプ", + "alias_name_display": "笑顔でキャンプ", + "event": [ + { + "event_id": 1701, + "event_name": "アイドルプロデュース はじめてのキャンプ" + } + ], + "hash": "4aa82a539c35e043008a425cb5500a6d", + "id": "1321502", + "profile": { + "bust": "75", + "height": "147", + "hip": "77", + "waist": "54", + "weight": "39" + } + }, + { + "alias_name": "ドリームトリック", + "alias_name_display": "ドリームトリック", + "event": [ + { + "event_id": 721, + "event_name": "第21回ドリームLIVEフェスティバル" + } + ], + "hash": "fa77d5ee099e6a92a37b073c109a9998", + "id": "1227701", + "profile": { + "bust": "75", + "height": "147", + "hip": "77", + "waist": "54", + "weight": "39" + } + }, + { + "alias_name": "ドリームトリック", + "alias_name_display": "ドリームトリック", + "event": [ + { + "event_id": 721, + "event_name": "第21回ドリームLIVEフェスティバル" + } + ], + "hash": "e976ab9a95755872d16aa104b21250cb", + "id": "1327702", + "profile": { + "bust": "75", + "height": "147", + "hip": "77", + "waist": "54", + "weight": "39" + } + }, + { + "alias_name": "パンクな乙女", + "alias_name_display": "パンクな乙女", + "event": [ + { + "event_id": "012", + "event_name": "第12回プロダクションマッチフェスティバル" + } + ], + "hash": "1b3eb0f6d24358407bf0ae20924dda0f", + "id": "1409001", + "profile": { + "bust": "75", + "height": "147", + "hip": "77", + "waist": "54", + "weight": "39" + } + }, + { + "alias_name": "パンクな乙女", + "alias_name_display": "パンクな乙女", + "event": [ + { + "event_id": "012", + "event_name": "第12回プロダクションマッチフェスティバル" + } + ], + "hash": "1cd236539b1fd894749b204de5366773", + "id": "1509002", + "profile": { + "bust": "75", + "height": "147", + "hip": "77", + "waist": "54", + "weight": "39" + } + }, + { + "alias_name": "タイニーロワイヤル", + "alias_name_display": "タイニーロワイヤル", + "event": [ + { + "event_id": 804, + "event_name": "第4回アイドルLIVEロワイヤル" + } + ], + "hash": "562859c070d8be5fed9ff656590c9130", + "id": "1413101", + "profile": { + "bust": "75", + "height": "147", + "hip": "77", + "waist": "54", + "weight": "39" + } + }, + { + "alias_name": "タイニーロワイヤル", + "alias_name_display": "タイニーロワイヤル", + "event": [ + { + "event_id": 804, + "event_name": "第4回アイドルLIVEロワイヤル" + } + ], + "hash": "a378ecd5a22ee861931d828f3bb9b5c6", + "id": "1513102", + "profile": { + "bust": "75", + "height": "147", + "hip": "77", + "waist": "54", + "weight": "39" + } + }, + { + "alias_name": "ちいさなメイドさん", + "alias_name_display": "ちいさなメイドさん", + "hash": "da000df3ec68bd3bdeb736063003bda4", + "id": "1417501", + "profile": { + "bust": "75", + "height": "147", + "hip": "77", + "waist": "54", + "weight": "39" + } + }, + { + "alias_name": "ちいさなメイドさん", + "alias_name_display": "ちいさなメイドさん", + "hash": "9ab6c26a04dabd10040b29b2743401bf", + "id": "1517502", + "profile": { + "bust": "75", + "height": "147", + "hip": "77", + "waist": "54", + "weight": "39" + } + }, + { + "alias_name": "小悪魔エース", + "alias_name_display": "小悪魔エース", + "hash": "2be0cb2364a23cddd828baa99f2be3af", + "id": "1427801", + "profile": { + "bust": "75", + "height": "147", + "hip": "77", + "waist": "54", + "weight": "39" + } + }, + { + "alias_name": "小悪魔エース", + "alias_name_display": "小悪魔エース", + "hash": "d705eed7b89ddaf08fb7818f0ca2fa0c", + "id": "1527802", + "profile": { + "bust": "75", + "height": "147", + "hip": "77", + "waist": "54", + "weight": "39" + } + }, + { + "alias_name": "スウィートデビル", + "alias_name_display": "スウィートデビル", + "event": [ + { + "event_id": 725, + "event_name": "第25回ドリームLIVEフェスティバル" + } + ], + "hash": "3dacc7a55df85271a71ceada8e29e140", + "id": "1436201", + "profile": { + "bust": "75", + "height": "147", + "hip": "77", + "waist": "54", + "weight": "39" + } + }, + { + "alias_name": "スウィートデビル", + "alias_name_display": "スウィートデビル", + "event": [ + { + "event_id": 725, + "event_name": "第25回ドリームLIVEフェスティバル" + } + ], + "hash": "1aea545811f830d6c6baad2453571a96", + "id": "1536202", + "profile": { + "bust": "75", + "height": "147", + "hip": "77", + "waist": "54", + "weight": "39" + } + } + ], + "idol_id": 62, + "idol_name": "早坂美玲", + "idol_name_display": "早坂美玲", + "units": [ + { + "id": "83", + "name": "Shock'in Pink!" + }, + { + "id": "108", + "name": "individuals" + }, + { + "id": "186", + "name": "LittlePOPS" + } + ] + }, + { + "aliases": [ + { + "hash": "6a5d8d6eb2f6d9d734794f521447d592", + "id": "1212001", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "hash": "c61eed5b951b911628aa095766126575", + "id": "1312002", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "ラブ&ハッピー", + "alias_name_display": "ラブ&ハッピー", + "event": [ + { + "event_id": 1001, + "event_name": "プロダクション対抗ドリームLIVEフェスティバル" + } + ], + "hash": "ca5185ecc1e5ec937692c1fc7c17ea6b", + "id": "1213701", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "ラブ&ハッピー", + "alias_name_display": "ラブ&ハッピー", + "event": [ + { + "event_id": 1001, + "event_name": "プロダクション対抗ドリームLIVEフェスティバル" + } + ], + "hash": "48305cfd4d369af92be35406d600b694", + "id": "1313702", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "グリッターステージ", + "alias_name_display": "グリッターステージ", + "hash": "79a9586c65b68c645c2d4ecc038911dc", + "id": "1215301", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "グリッターステージ", + "alias_name_display": "グリッターステージ", + "hash": "3ed3bde1cf66bc0ed3ab12dd9f35dbd3", + "id": "1315302", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "ラヴスピリッツ", + "alias_name_display": "ラヴスピリッツ", + "hash": "69725122bafcda8e1df0dde17ed22ca6", + "id": "1220101", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "ラヴスピリッツ", + "alias_name_display": "ラヴスピリッツ", + "hash": "897aab97bad314ac6a7299e13eb7fb55", + "id": "1320102", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "シーフパートナー", + "alias_name_display": "シーフパートナー", + "event": [ + { + "event_id": 521, + "event_name": "怪盗公演 美しき追跡者" + } + ], + "hash": "16a509cb6675eac3dd83dfac5743af24", + "id": "1323202", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "ピースフルワールド", + "alias_name_display": "ピースフルワールド", + "event": [ + { + "event_id": "030", + "event_name": "第30回プロダクションマッチフェスティバル" + } + ], + "hash": "f3ba2abe509615506b3d536bb54388d1", + "id": "1228901", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "ピースフルワールド", + "alias_name_display": "ピースフルワールド", + "event": [ + { + "event_id": "030", + "event_name": "第30回プロダクションマッチフェスティバル" + } + ], + "hash": "b3132f8ad6730a31b05e7e51066d8302", + "id": "1328902", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "船上の音楽家", + "alias_name_display": "船上の音楽家", + "event": [ + { + "event_id": 513, + "event_name": "海賊公演 オーシャンクルーズ" + } + ], + "hash": "f7c5267834a12b3aa0bc4601c553e3f3", + "id": "1415601", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "船上の音楽家", + "alias_name_display": "船上の音楽家", + "event": [ + { + "event_id": 513, + "event_name": "海賊公演 オーシャンクルーズ" + } + ], + "hash": "4cfdc9ae4b380127768d15e1988475bc", + "id": "1515602", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "ピースドリーマー", + "alias_name_display": "ピースドリーマー", + "event": [ + { + "event_id": "025", + "event_name": "第25回プロダクションマッチフェスティバル" + } + ], + "hash": "dd3751e2991152c78eed4e4bbc8b2401", + "id": "1430201", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "ピースドリーマー", + "alias_name_display": "ピースドリーマー", + "event": [ + { + "event_id": "025", + "event_name": "第25回プロダクションマッチフェスティバル" + } + ], + "hash": "1dde1350d45ec9d096ef02d5561bec81", + "id": "1530202", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "パワーオブラブ", + "alias_name_display": "パワーオブラブ", + "hash": "d1cf0c8c8e9f653db5555858fcad64d5", + "id": "1438501", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "パワーオブラブ", + "alias_name_display": "パワーオブラブ", + "hash": "23ad85825d08c2b01758a0a95eee45d2", + "id": "1538502", + "profile": { + "bust": "78", + "height": "155", + "hip": "80", + "waist": "57", + "weight": "44" + } + } + ], + "idol_id": 63, + "idol_name": "有浦柑奈", + "idol_name_display": "有浦柑奈", + "units": [ + { + "id": "24", + "name": "シンフォニック・ワールド" + }, + { + "id": "92", + "name": "ゴスペルシスターズ" + }, + { + "id": "132", + "name": "thinE/Dasein" + } + ] + }, + { + "aliases": [ + { + "hash": "5d22c46f3d70b063510b1afdb41faca1", + "id": "1216401", + "profile": { + "bust": "70", + "height": "164", + "hip": "74", + "waist": "53", + "weight": "40" + } + }, + { + "hash": "954b44944c72b799603401083f286017", + "id": "1316402", + "profile": { + "bust": "70", + "height": "164", + "hip": "74", + "waist": "53", + "weight": "40" + } + }, + { + "alias_name": "メルヘンアニマルズ", + "alias_name_display": "メルヘンアニマルズ", + "hash": "65156c8acd72ce0a30ac8cc82eae3922", + "id": "1218101", + "profile": { + "bust": "70", + "height": "164", + "hip": "74", + "waist": "53", + "weight": "40" + } + }, + { + "alias_name": "メルヘンアニマルズ", + "alias_name_display": "メルヘンアニマルズ", + "hash": "44e8a59cac558d9023fe85d39e422b41", + "id": "1318102", + "profile": { + "bust": "70", + "height": "164", + "hip": "74", + "waist": "53", + "weight": "40" + } + }, + { + "alias_name": "新春I.C", + "alias_name_display": "新春I.C", + "event": [ + { + "event_id": 1204, + "event_name": "新年かくし芸SP アイドルチャレンジ" + } + ], + "hash": "6cbba06b6172e63b542c161dda875278", + "id": "1319602", + "profile": { + "bust": "70", + "height": "164", + "hip": "74", + "waist": "53", + "weight": "40" + } + }, + { + "alias_name": "アクティブガール", + "alias_name_display": "アクティブガール", + "hash": "8c20bc6f85beedbeeaafaa2bd426b225", + "id": "1225201", + "profile": { + "bust": "70", + "height": "164", + "hip": "74", + "waist": "53", + "weight": "40" + } + }, + { + "alias_name": "アクティブガール", + "alias_name_display": "アクティブガール", + "hash": "5e93669a32a19d588d7663d863b94028", + "id": "1325202", + "profile": { + "bust": "70", + "height": "164", + "hip": "74", + "waist": "53", + "weight": "40" + } + }, + { + "alias_name": "華傘の芸達者", + "alias_name_display": "華傘の芸達者", + "event": [ + { + "event_id": 1204, + "event_name": "新年かくし芸SP アイドルチャレンジ" + } + ], + "hash": "e43584224d572bfa69384210ecc50cea", + "id": "1421001", + "profile": { + "bust": "70", + "height": "164", + "hip": "74", + "waist": "53", + "weight": "40" + } + }, + { + "alias_name": "華傘の芸達者", + "alias_name_display": "華傘の芸達者", + "event": [ + { + "event_id": 1204, + "event_name": "新年かくし芸SP アイドルチャレンジ" + } + ], + "hash": "660992e6898af963ff6f32f2e1473823", + "id": "1521002", + "profile": { + "bust": "70", + "height": "164", + "hip": "74", + "waist": "53", + "weight": "40" + } + }, + { + "alias_name": "華傘の芸達者・S", + "alias_name_display": "華傘の芸達者・S", + "event": [ + { + "event_id": 1204, + "event_name": "新年かくし芸SP アイドルチャレンジ" + } + ], + "hash": "05585b2d42b3c8fc7da7b2ff930b0511", + "id": "1421101", + "profile": { + "bust": "70", + "height": "164", + "hip": "74", + "waist": "53", + "weight": "40" + } + }, + { + "alias_name": "華傘の芸達者・S", + "alias_name_display": "華傘の芸達者・S", + "event": [ + { + "event_id": 1204, + "event_name": "新年かくし芸SP アイドルチャレンジ" + } + ], + "hash": "2b87ffadfcb99c1f9e6a8b0d13ce2827", + "id": "1521102", + "profile": { + "bust": "70", + "height": "164", + "hip": "74", + "waist": "53", + "weight": "40" + } + }, + { + "alias_name": "春らんまん", + "alias_name_display": "春らんまん", + "event": [ + { + "event_id": 712, + "event_name": "花見DEドリームLIVEフェスティバル" + } + ], + "hash": "4c573ad24433422bc5f9887af463ecd7", + "id": "1423401", + "profile": { + "bust": "70", + "height": "164", + "hip": "74", + "waist": "53", + "weight": "40" + } + }, + { + "alias_name": "春らんまん", + "alias_name_display": "春らんまん", + "event": [ + { + "event_id": 712, + "event_name": "花見DEドリームLIVEフェスティバル" + } + ], + "hash": "faa2ce907ee26f77d26dcbe274eeb3be", + "id": "1523402", + "profile": { + "bust": "70", + "height": "164", + "hip": "74", + "waist": "53", + "weight": "40" + } + }, + { + "alias_name": "秋風乙女", + "alias_name_display": "秋風乙女", + "hash": "91de97f14dbeab0a3ac2c81c8e1de8de", + "id": "1428101", + "profile": { + "bust": "70", + "height": "164", + "hip": "74", + "waist": "53", + "weight": "40" + } + }, + { + "alias_name": "秋風乙女", + "alias_name_display": "秋風乙女", + "hash": "baa712b49bc10f53ede75059dfa577a1", + "id": "1528102", + "profile": { + "bust": "70", + "height": "164", + "hip": "74", + "waist": "53", + "weight": "40" + } + }, + { + "alias_name": "常夏アロハ", + "alias_name_display": "常夏アロハ", + "event": [ + { + "event_id": 1707, + "event_name": "アイドルプロデュース アロハ!常夏の楽園" + } + ], + "hash": "5528621801ae35705602432711607da1", + "id": "1435001", + "profile": { + "bust": "70", + "height": "164", + "hip": "74", + "waist": "53", + "weight": "40" + } + }, + { + "alias_name": "常夏アロハ", + "alias_name_display": "常夏アロハ", + "event": [ + { + "event_id": 1707, + "event_name": "アイドルプロデュース アロハ!常夏の楽園" + } + ], + "hash": "621427e1c27d15a53a285a467de19a74", + "id": "1535002", + "profile": { + "bust": "70", + "height": "164", + "hip": "74", + "waist": "53", + "weight": "40" + } + }, + { + "alias_name": "笑顔でアロハ", + "alias_name_display": "笑顔でアロハ", + "event": [ + { + "event_id": 1707, + "event_name": "アイドルプロデュース アロハ!常夏の楽園" + } + ], + "hash": "3b49dc6079a69a60f31a53c6e1688161", + "id": "1435101", + "profile": { + "bust": "70", + "height": "164", + "hip": "74", + "waist": "53", + "weight": "40" + } + }, + { + "alias_name": "笑顔でアロハ", + "alias_name_display": "笑顔でアロハ", + "event": [ + { + "event_id": 1707, + "event_name": "アイドルプロデュース アロハ!常夏の楽園" + } + ], + "hash": "99f50339aa26af0bb95f0d37c9066bd6", + "id": "1535102", + "profile": { + "bust": "70", + "height": "164", + "hip": "74", + "waist": "53", + "weight": "40" + } + }, + { + "alias_name": "ファインスカイ", + "alias_name_display": "ファインスカイ", + "hash": "093a75688be3f74755f356c07b83bcfa", + "id": "1438901", + "profile": { + "bust": "70", + "height": "164", + "hip": "74", + "waist": "53", + "weight": "40" + } + }, + { + "alias_name": "ファインスカイ", + "alias_name_display": "ファインスカイ", + "hash": "ad1d9695914de9d5464ffe838872530f", + "id": "1538902", + "profile": { + "bust": "70", + "height": "164", + "hip": "74", + "waist": "53", + "weight": "40" + } + } + ], + "idol_id": 64, + "idol_name": "乙倉悠貴", + "idol_name_display": "乙倉悠貴", + "units": [ + { + "id": "166", + "name": "メルヘンアニマルズ" + }, + { + "id": "191", + "name": "Love Yell" + } + ] + }, + { + "aliases": [ + { + "alias_name": "クリスマスパーティー", + "alias_name_display": "クリスマスパーティー", + "hash": "2e36224b97dfdd2701e9803ee789f47d", + "id": "1206701", + "profile": { + "bust": "86", + "height": "163", + "hip": "85", + "waist": "59", + "weight": "46" + } + }, + { + "alias_name": "クリスマスパーティー", + "alias_name_display": "クリスマスパーティー", + "hash": "b2f52e7661963396866c5c8801e3c7a8", + "id": "1306702", + "profile": { + "bust": "86", + "height": "163", + "hip": "85", + "waist": "59", + "weight": "46" + } + }, + { + "alias_name": "レインドロップ", + "alias_name_display": "レインドロップ", + "event": [ + { + "event_id": 407, + "event_name": "アイドルプロデュース 鎌倉あじさい巡り" + } + ], + "hash": "d9e622ccd32e6e70f379da48c416ee10", + "id": "1209801", + "profile": { + "bust": "86", + "height": "163", + "hip": "85", + "waist": "59", + "weight": "46" + } + }, + { + "alias_name": "レインドロップ", + "alias_name_display": "レインドロップ", + "event": [ + { + "event_id": 407, + "event_name": "アイドルプロデュース 鎌倉あじさい巡り" + } + ], + "hash": "d09aeee3ce393112c2532b038367423e", + "id": "1309802", + "profile": { + "bust": "86", + "height": "163", + "hip": "85", + "waist": "59", + "weight": "46" + } + }, + { + "alias_name": "レインドロップスマイル", + "alias_name_display": "レインドロップスマイル", + "event": [ + { + "event_id": 407, + "event_name": "アイドルプロデュース 鎌倉あじさい巡り" + } + ], + "hash": "619ff1724ecbaf11bc00c823d4eea577", + "id": "1209901", + "profile": { + "bust": "86", + "height": "163", + "hip": "85", + "waist": "59", + "weight": "46" + } + }, + { + "alias_name": "レインドロップスマイル", + "alias_name_display": "レインドロップスマイル", + "event": [ + { + "event_id": 407, + "event_name": "アイドルプロデュース 鎌倉あじさい巡り" + } + ], + "hash": "6b357a435e6bc4225e825246e617fe5b", + "id": "1309902", + "profile": { + "bust": "86", + "height": "163", + "hip": "85", + "waist": "59", + "weight": "46" + } + }, + { + "alias_name": "ドライブRQ", + "alias_name_display": "ドライブRQ", + "hash": "219438cc64a62c45381b04498feb51e5", + "id": "1216101", + "profile": { + "bust": "86", + "height": "163", + "hip": "85", + "waist": "59", + "weight": "46" + } + }, + { + "alias_name": "ドライブRQ", + "alias_name_display": "ドライブRQ", + "hash": "3950c0f64d2f068f043545e1f793cad3", + "id": "1316102", + "profile": { + "bust": "86", + "height": "163", + "hip": "85", + "waist": "59", + "weight": "46" + } + }, + { + "alias_name": "ナイトパーティー", + "alias_name_display": "ナイトパーティー", + "hash": "e966697d9927d312afa57c71c74bc204", + "id": "1220701", + "profile": { + "bust": "86", + "height": "163", + "hip": "85", + "waist": "59", + "weight": "46" + } + }, + { + "alias_name": "ナイトパーティー", + "alias_name_display": "ナイトパーティー", + "hash": "07e249cdd43460fc4f8196cf5ca5d81f", + "id": "1320702", + "profile": { + "bust": "86", + "height": "163", + "hip": "85", + "waist": "59", + "weight": "46" + } + }, + { + "alias_name": "秘めた輝き", + "alias_name_display": "秘めた輝き", + "hash": "86f3ff681d40a7f6da7df78c867f6e7c", + "id": "1400501", + "profile": { + "bust": "86", + "height": "163", + "hip": "85", + "waist": "59", + "weight": "46" + } + }, + { + "alias_name": "秘めた輝き", + "alias_name_display": "秘めた輝き", + "hash": "f8db7c518658eac25ae8faf1ccc9eded", + "id": "1500502", + "profile": { + "bust": "86", + "height": "163", + "hip": "85", + "waist": "59", + "weight": "46" + } + }, + { + "alias_name": "ドライブインサマー", + "alias_name_display": "ドライブインサマー", + "event": [ + { + "event_id": 211, + "event_name": "アイドルサバイバルinサマーバケーション" + } + ], + "hash": "d4a273e502c1c75d67f267e6d9e846a0", + "id": "1408601", + "profile": { + "bust": "86", + "height": "163", + "hip": "85", + "waist": "59", + "weight": "46" + } + }, + { + "alias_name": "ドライブインサマー", + "alias_name_display": "ドライブインサマー", + "event": [ + { + "event_id": 211, + "event_name": "アイドルサバイバルinサマーバケーション" + } + ], + "hash": "0bd2ddf631fd26f0da534b0565402077", + "id": "1508602", + "profile": { + "bust": "86", + "height": "163", + "hip": "85", + "waist": "59", + "weight": "46" + } + }, + { + "alias_name": "乙女の素顔", + "alias_name_display": "乙女の素顔", + "event": [ + { + "event_id": "024", + "event_name": "第24回プロダクションマッチフェスティバル" + } + ], + "hash": "54e7f6af667defe6b2ab433271c3fe9d", + "id": "1428301", + "profile": { + "bust": "86", + "height": "163", + "hip": "85", + "waist": "59", + "weight": "46" + } + }, + { + "alias_name": "乙女の素顔", + "alias_name_display": "乙女の素顔", + "event": [ + { + "event_id": "024", + "event_name": "第24回プロダクションマッチフェスティバル" + } + ], + "hash": "51c0da348e4a2dcb10c2488f7baa0a02", + "id": "1528302", + "profile": { + "bust": "86", + "height": "163", + "hip": "85", + "waist": "59", + "weight": "46" + } + }, + { + "alias_name": "ドライブチアー", + "alias_name_display": "ドライブチアー", + "event": [ + { + "event_id": 1507, + "event_name": "チーム対抗トークバトルショー オールスターSP" + } + ], + "hash": "321e95f43feeaba224015b8a9809d180", + "id": "1432801", + "profile": { + "bust": "86", + "height": "163", + "hip": "85", + "waist": "59", + "weight": "46" + } + }, + { + "alias_name": "ドライブチアー", + "alias_name_display": "ドライブチアー", + "event": [ + { + "event_id": 1507, + "event_name": "チーム対抗トークバトルショー オールスターSP" + } + ], + "hash": "c8e0646fdc38f0c2b314ea48b6cf8f18", + "id": "1532802", + "profile": { + "bust": "86", + "height": "163", + "hip": "85", + "waist": "59", + "weight": "46" + } + }, + { + "alias_name": "ウィンターアクセル", + "alias_name_display": "ウィンターアクセル", + "event": [ + { + "event_id": 821, + "event_name": "第21回アイドルLIVEロワイヤル" + } + ], + "hash": "30332395012024d6987aaefddfcd258d", + "id": "1437701", + "profile": { + "bust": "86", + "height": "163", + "hip": "85", + "waist": "59", + "weight": "46" + } + }, + { + "alias_name": "ウィンターアクセル", + "alias_name_display": "ウィンターアクセル", + "event": [ + { + "event_id": 821, + "event_name": "第21回アイドルLIVEロワイヤル" + } + ], + "hash": "1be46e70f136716b759b15340806be70", + "id": "1537702", + "profile": { + "bust": "86", + "height": "163", + "hip": "85", + "waist": "59", + "weight": "46" + } + } + ], + "idol_id": 65, + "idol_name": "原田美世", + "idol_name_display": "原田美世", + "units": [ + { + "id": "87", + "name": "ウィンター・F・ドライバーズ" + }, + { + "id": "106", + "name": "レインドロップ" + } + ] + }, + { + "aliases": [ + { + "alias_name": "ムーンライトバニー", + "alias_name_display": "ムーンライトバニー", + "event": [ + { + "event_id": 107, + "event_name": "秋夜のお月見会" + } + ], + "hash": "bd75cdaf7d77b14fca1d6f6c65dc88da", + "id": "1002201", + "profile": { + "bust": "75", + "height": "148", + "hip": "74", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "ムーンライトバニー", + "alias_name_display": "ムーンライトバニー", + "event": [ + { + "event_id": 107, + "event_name": "秋夜のお月見会" + } + ], + "hash": "697b8f00afc7840f3ab4dccd1a2d1456", + "id": "1102202", + "profile": { + "bust": "75", + "height": "148", + "hip": "74", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "ひな祭り", + "alias_name_display": "ひな祭り", + "event": [ + { + "event_id": 209, + "event_name": "アイドルサバイバルひな祭り2013" + } + ], + "hash": "ed07eefde06a0e74f9ef6a51f097542f", + "id": "1208101", + "profile": { + "bust": "75", + "height": "148", + "hip": "74", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "ひな祭り", + "alias_name_display": "ひな祭り", + "event": [ + { + "event_id": 209, + "event_name": "アイドルサバイバルひな祭り2013" + } + ], + "hash": "ee50c5ea099be8622819ba79974e0227", + "id": "1308102", + "profile": { + "bust": "75", + "height": "148", + "hip": "74", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "ニューイヤースタイル", + "alias_name_display": "ニューイヤースタイル", + "event": [ + { + "event_id": 509, + "event_name": "新春LIVEツアーカーニバル" + } + ], + "hash": "9ee2d80d09ebbb1c2ae6031cc9127cce", + "id": "1213901", + "profile": { + "bust": "75", + "height": "148", + "hip": "74", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "ニューイヤースタイル", + "alias_name_display": "ニューイヤースタイル", + "event": [ + { + "event_id": 509, + "event_name": "新春LIVEツアーカーニバル" + } + ], + "hash": "22a3924b57af6ad84167ec6aab0cff9b", + "id": "1313902", + "profile": { + "bust": "75", + "height": "148", + "hip": "74", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "エレガントI.C", + "alias_name_display": "エレガントI.C", + "event": [ + { + "event_id": 1205, + "event_name": "目指せ優雅なお嬢様 アイドルチャレンジ" + } + ], + "hash": "cd313c43cae82fae20be9a0dc72539e9", + "id": "1320602", + "profile": { + "bust": "75", + "height": "148", + "hip": "74", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "春風スポーツ", + "alias_name_display": "春風スポーツ", + "hash": "ad5ccce9185e2d6423e6a9c36d41a03f", + "id": "1227301", + "profile": { + "bust": "75", + "height": "148", + "hip": "74", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "春風スポーツ", + "alias_name_display": "春風スポーツ", + "hash": "e43755a547736e9b339caa808f96de7f", + "id": "1327302", + "profile": { + "bust": "75", + "height": "148", + "hip": "74", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "ロボティックガール", + "alias_name_display": "ロボティックガール", + "hash": "d3b7cfc6576419c59e677e6cf6067e36", + "id": "1230001", + "profile": { + "bust": "75", + "height": "148", + "hip": "74", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "ロボティックガール", + "alias_name_display": "ロボティックガール", + "hash": "0de2eecb0cc7557f01bc2960c1357848", + "id": "1330002", + "profile": { + "bust": "75", + "height": "148", + "hip": "74", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "天才ロボ少女", + "alias_name_display": "天才ロボ少女", + "event": [ + { + "event_id": 102, + "event_name": "アイドルおもちつき大会" + } + ], + "hash": "53cac9bfd084f9b278d6d1757698f995", + "id": "1400601", + "profile": { + "bust": "75", + "height": "148", + "hip": "74", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "天才ロボ少女", + "alias_name_display": "天才ロボ少女", + "event": [ + { + "event_id": 102, + "event_name": "アイドルおもちつき大会" + } + ], + "hash": "05533b7c1971f954c4ce5d1af1487281", + "id": "1500602", + "profile": { + "bust": "75", + "height": "148", + "hip": "74", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "ハッピー☆ジーニアス", + "alias_name_display": "ハッピー☆ジーニアス", + "hash": "373a25b220a7c12e4bd7c03e550e74b9", + "id": "1408001", + "profile": { + "bust": "75", + "height": "148", + "hip": "74", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "ハッピー☆ジーニアス", + "alias_name_display": "ハッピー☆ジーニアス", + "hash": "3b636158419583d38a6509dc474a955c", + "id": "1508002", + "profile": { + "bust": "75", + "height": "148", + "hip": "74", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "ロボティックチアー", + "alias_name_display": "ロボティックチアー", + "event": [ + { + "event_id": 1103, + "event_name": "第3回プロダクション対抗トークバトルショー" + } + ], + "hash": "50f27e1fb1c584b25268a6cc542b4eee", + "id": "1415301", + "profile": { + "bust": "75", + "height": "148", + "hip": "74", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "ロボティックチアー", + "alias_name_display": "ロボティックチアー", + "event": [ + { + "event_id": 1103, + "event_name": "第3回プロダクション対抗トークバトルショー" + } + ], + "hash": "d26af3a2ad88b76b7f13dfa31e5258c2", + "id": "1515302", + "profile": { + "bust": "75", + "height": "148", + "hip": "74", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "異才のお嬢様", + "alias_name_display": "異才のお嬢様", + "event": [ + { + "event_id": 1205, + "event_name": "目指せ優雅なお嬢様 アイドルチャレンジ" + } + ], + "hash": "2d6b4f52e2a52bce202c7c9913fec8bc", + "id": "1422601", + "profile": { + "bust": "75", + "height": "148", + "hip": "74", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "異才のお嬢様", + "alias_name_display": "異才のお嬢様", + "event": [ + { + "event_id": 1205, + "event_name": "目指せ優雅なお嬢様 アイドルチャレンジ" + } + ], + "hash": "0aae1c480ec4ee5619b67a1a02731bfe", + "id": "1522602", + "profile": { + "bust": "75", + "height": "148", + "hip": "74", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "異才のお嬢様・S", + "alias_name_display": "異才のお嬢様・S", + "event": [ + { + "event_id": 1205, + "event_name": "目指せ優雅なお嬢様 アイドルチャレンジ" + } + ], + "hash": "ff2d88dddcb499d5b89335b94f798535", + "id": "1422701", + "profile": { + "bust": "75", + "height": "148", + "hip": "74", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "異才のお嬢様・S", + "alias_name_display": "異才のお嬢様・S", + "event": [ + { + "event_id": 1205, + "event_name": "目指せ優雅なお嬢様 アイドルチャレンジ" + } + ], + "hash": "a7f7f6600d4db2e4c78e0cf90ff44d43", + "id": "1522702", + "profile": { + "bust": "75", + "height": "148", + "hip": "74", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "ブレイン☆スター", + "alias_name_display": "ブレイン☆スター", + "event": [ + { + "event_id": 1403, + "event_name": "第3回ぷちデレラコレクション" + } + ], + "hash": "d8d9d6c2d5505244c48d772004ffd9e1", + "id": "1426901", + "profile": { + "bust": "75", + "height": "148", + "hip": "74", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "ブレイン☆スター", + "alias_name_display": "ブレイン☆スター", + "event": [ + { + "event_id": 1403, + "event_name": "第3回ぷちデレラコレクション" + } + ], + "hash": "df97d20cf2ca9e3ec842401b5c6c91f7", + "id": "1526902", + "profile": { + "bust": "75", + "height": "148", + "hip": "74", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "機巧の匠", + "alias_name_display": "機巧の匠", + "event": [ + { + "event_id": 1907, + "event_name": "ディアリースタークエスト ~夜桜奇譚~" + } + ], + "hash": "0cf8b99a662d263b1019cfdaca236a25", + "id": "1439601", + "profile": { + "bust": "75", + "height": "148", + "hip": "74", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "機巧の匠", + "alias_name_display": "機巧の匠", + "event": [ + { + "event_id": 1907, + "event_name": "ディアリースタークエスト ~夜桜奇譚~" + } + ], + "hash": "f14270b8f9920a77b665767587d06b48", + "id": "1539602", + "profile": { + "bust": "75", + "height": "148", + "hip": "74", + "waist": "53", + "weight": "39" + } + } + ], + "idol_id": 66, + "idol_name": "池袋晶葉", + "idol_name_display": "池袋晶葉", + "units": [ + { + "id": "68", + "name": "ロボフレンズ" + }, + { + "id": "98", + "name": "ニューイヤースタイル" + }, + { + "id": "102", + "name": "パワフルヒーラーズ" + } + ] + }, + { + "aliases": [ + { + "hash": "8f88bb5ffa40b4935ef04257ba4ba0d1", + "id": "2000101", + "profile": { + "bust": "80", + "height": "165", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "hash": "e275bfe5941fd3959de60c5d5c5cacef", + "id": "2100102", + "profile": { + "bust": "80", + "height": "165", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "2ndアニバーサリー", + "alias_name_display": "2ndアニバーサリー", + "event": [ + { + "event_id": 410, + "event_name": "アイドルプロデュース the 2nd Anniversary" + } + ], + "hash": "ec23ead4dad0294e7f859e7180c216fa", + "id": "2212901", + "profile": { + "bust": "80", + "height": "165", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "2ndアニバーサリー", + "alias_name_display": "2ndアニバーサリー", + "event": [ + { + "event_id": 410, + "event_name": "アイドルプロデュース the 2nd Anniversary" + } + ], + "hash": "7ee306b8ce0265d3797de7fca6e0ee90", + "id": "2312902", + "profile": { + "bust": "80", + "height": "165", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "2ndアニバーサリー・スマイル", + "alias_name_display": "2ndアニバーサリー・スマイル", + "event": [ + { + "event_id": 410, + "event_name": "アイドルプロデュース the 2nd Anniversary" + } + ], + "hash": "a1ed6e1e9fdf5dc0a23d07ce0802f595", + "id": "2213001", + "profile": { + "bust": "80", + "height": "165", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "2ndアニバーサリー・スマイル", + "alias_name_display": "2ndアニバーサリー・スマイル", + "event": [ + { + "event_id": 410, + "event_name": "アイドルプロデュース the 2nd Anniversary" + } + ], + "hash": "4ad2264b26f6edfd36e29e62c0d70e81", + "id": "2313002", + "profile": { + "bust": "80", + "height": "165", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "2ndアニバーサリー・ネコミミ", + "alias_name_display": "2ndアニバーサリー・ネコミミ", + "event": [ + { + "event_id": 410, + "event_name": "アイドルプロデュース the 2nd Anniversary" + } + ], + "hash": "59205400ae6b04749bb99aae38d7cc71", + "id": "2213101", + "profile": { + "bust": "80", + "height": "165", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "2ndアニバーサリー・ネコミミ", + "alias_name_display": "2ndアニバーサリー・ネコミミ", + "event": [ + { + "event_id": 410, + "event_name": "アイドルプロデュース the 2nd Anniversary" + } + ], + "hash": "f48ee90e70c822c07e06aefe3b8ee743", + "id": "2313102", + "profile": { + "bust": "80", + "height": "165", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "ニュージェネレーション", + "alias_name_display": "ニュージェネレーション", + "hash": "f99103eb03994da80bd9b905ca9f0950", + "id": "2400301", + "profile": { + "bust": "80", + "height": "165", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "ニュージェネレーション", + "alias_name_display": "ニュージェネレーション", + "hash": "c44c3c58ab6e06f5068b5c459cc5ecdc", + "id": "2500302", + "profile": { + "bust": "80", + "height": "165", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "4ecccdd4fd25302d228913c62c869991", + "id": "2401501", + "profile": { + "bust": "80", + "height": "165", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "851d41d49c8e138e2818794223d01ab4", + "id": "2501502", + "profile": { + "bust": "80", + "height": "165", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "アイオライトゴシック", + "alias_name_display": "アイオライトゴシック", + "hash": "f7b0292baa798bfe74929c8e7c05092d", + "id": "2503702", + "profile": { + "bust": "80", + "height": "165", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "ピュアバレンタイン", + "alias_name_display": "ピュアバレンタイン", + "hash": "5245301299ebe8e1e0a46ccadf6bb57c", + "id": "2405201", + "profile": { + "bust": "80", + "height": "165", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "ピュアバレンタイン", + "alias_name_display": "ピュアバレンタイン", + "hash": "e0ad66fd1b1f4a0d8793edcfe8b63a1c", + "id": "2505202", + "profile": { + "bust": "80", + "height": "165", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "夜宴の歌姫", + "alias_name_display": "夜宴の歌姫", + "hash": "f95d822e4847009291d67450017969c9", + "id": "2410201", + "profile": { + "bust": "80", + "height": "165", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "夜宴の歌姫", + "alias_name_display": "夜宴の歌姫", + "hash": "5ef4284b0c62f564a54c532512615b11", + "id": "2510202", + "profile": { + "bust": "80", + "height": "165", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "ワンダフルマジック", + "alias_name_display": "ワンダフルマジック", + "hash": "4b2ae0ec6469cc81bc30c1a072ebd791", + "id": "2413501", + "profile": { + "bust": "80", + "height": "165", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "ワンダフルマジック", + "alias_name_display": "ワンダフルマジック", + "hash": "b94a98f20c407684429e56fb7a343797", + "id": "2513502", + "profile": { + "bust": "80", + "height": "165", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "シンデレラガール", + "alias_name_display": "シンデレラガール", + "hash": "c96e0729d1075d90a0dc35b9dc76c3ab", + "id": "2415301", + "profile": { + "bust": "80", + "height": "165", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "シンデレラガール", + "alias_name_display": "シンデレラガール", + "hash": "78dc475f1775fa007c1a659db07a383a", + "id": "2515302", + "profile": { + "bust": "80", + "height": "165", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "クールサマーバケーション", + "alias_name_display": "クールサマーバケーション", + "hash": "9e5333adbd10808d6211cd7e3c3737f8", + "id": "2516702", + "profile": { + "bust": "80", + "height": "165", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "アニバーサリープリンセス", + "alias_name_display": "アニバーサリープリンセス", + "event": [ + { + "event_id": 415, + "event_name": "アイドルプロデュース the 3rd Anniversary" + } + ], + "hash": "fc7743180eca7195b9d2a04b251b3276", + "id": "2419301", + "profile": { + "bust": "80", + "height": "165", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "アニバーサリープリンセス", + "alias_name_display": "アニバーサリープリンセス", + "event": [ + { + "event_id": 415, + "event_name": "アイドルプロデュース the 3rd Anniversary" + } + ], + "hash": "6c854bfa68ef78e7e087c7c5f8a982d4", + "id": "2519302", + "profile": { + "bust": "80", + "height": "165", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "ドリームストーリー", + "alias_name_display": "ドリームストーリー", + "hash": "716d4021bcc8ed6d35c14e54dcd8df3a", + "id": "2521002", + "profile": { + "bust": "80", + "height": "165", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "トラストプレゼント", + "alias_name_display": "トラストプレゼント", + "hash": "ec3d7440265ee3dd41046a803068117f", + "id": "2427301", + "profile": { + "bust": "80", + "height": "165", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "トラストプレゼント", + "alias_name_display": "トラストプレゼント", + "hash": "8830118c3b6b08eb9bed30f5aa4eea50", + "id": "2527302", + "profile": { + "bust": "80", + "height": "165", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "G4U!", + "alias_name_display": "G4U!", + "hash": "0f60bcd6c790b9dd47a8979281d73d82", + "id": "2529702", + "profile": { + "bust": "80", + "height": "165", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "ブルーウィンド", + "alias_name_display": "ブルーウィンド", + "hash": "621bcb5474139a8cbd98232034679147", + "id": "2432001", + "profile": { + "bust": "80", + "height": "165", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "ブルーウィンド", + "alias_name_display": "ブルーウィンド", + "hash": "f38a7d396e4d373572359acd4f1bfecf", + "id": "2532002", + "profile": { + "bust": "80", + "height": "165", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "アニバーサリーウィズメモリー", + "alias_name_display": "アニバーサリーウィズメモリー", + "hash": "3f49451db48570813fd26cec984a44f6", + "id": "2436501", + "profile": { + "bust": "80", + "height": "165", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "アニバーサリーウィズメモリー", + "alias_name_display": "アニバーサリーウィズメモリー", + "hash": "4ebbcc60acba9e2760af8a5be417782d", + "id": "2536502", + "profile": { + "bust": "80", + "height": "165", + "hip": "81", + "waist": "56", + "weight": "44" + } + } + ], + "idol_id": 67, + "idol_name": "渋谷凛", + "idol_name_display": "渋谷凛", + "units": [ + { + "id": "109", + "name": "new generations" + }, + { + "id": "144", + "name": "Triad Primus" + }, + { + "id": "197", + "name": "アズール・ムジカ" + }, + { + "id": "205", + "name": "シンデレラガール" + }, + { + "id": "213", + "name": "CINDERELLA PROJECT" + }, + { + "id": "215", + "name": "Project:Krone" + } + ] + }, + { + "aliases": [ + { + "hash": "4035fd883093767b28d2a539d774e094", + "id": "2000201", + "profile": { + "bust": "86", + "height": "163", + "hip": "86", + "waist": "57", + "weight": "45" + } + }, + { + "hash": "f4d2f1e39a7e01d8274e3a57077f6f85", + "id": "2100202", + "profile": { + "bust": "86", + "height": "163", + "hip": "86", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "パジャマパーティー", + "alias_name_display": "パジャマパーティー", + "hash": "c931ce44e7607eaf6ab795a40dd9ca28", + "id": "2203901", + "profile": { + "bust": "86", + "height": "163", + "hip": "86", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "パジャマパーティー", + "alias_name_display": "パジャマパーティー", + "hash": "a3082a7c51417a1a91c1051b28f8aa9f", + "id": "2303902", + "profile": { + "bust": "86", + "height": "163", + "hip": "86", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "気高きプライド", + "alias_name_display": "気高きプライド", + "hash": "7997704c7956ebe73f2c28697c89dc1a", + "id": "2205501", + "profile": { + "bust": "86", + "height": "163", + "hip": "86", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "気高きプライド", + "alias_name_display": "気高きプライド", + "hash": "5109146ec273c81d59fcae0c97adddf5", + "id": "2305502", + "profile": { + "bust": "86", + "height": "163", + "hip": "86", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "セレクトメイド", + "alias_name_display": "セレクトメイド", + "hash": "02f695d931bff83bdb7771b3b8943f60", + "id": "2214701", + "profile": { + "bust": "86", + "height": "163", + "hip": "86", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "セレクトメイド", + "alias_name_display": "セレクトメイド", + "hash": "1d0d21ccca64a106b500e327a8a61944", + "id": "2314702", + "profile": { + "bust": "86", + "height": "163", + "hip": "86", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ロワイヤルスタイルNP", + "alias_name_display": "ロワイヤルスタイルNP", + "event": [ + { + "event_id": 806, + "event_name": "アイドルLIVEロワイヤルinSUMMER" + } + ], + "hash": "def290c2687249f421d3a0c5639fcf54", + "id": "2217101", + "profile": { + "bust": "86", + "height": "163", + "hip": "86", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ロワイヤルスタイルNP", + "alias_name_display": "ロワイヤルスタイルNP", + "event": [ + { + "event_id": 806, + "event_name": "アイドルLIVEロワイヤルinSUMMER" + } + ], + "hash": "7b992968fa0f058f249b5526ab1b7883", + "id": "2317102", + "profile": { + "bust": "86", + "height": "163", + "hip": "86", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "グロッシースタイル", + "alias_name_display": "グロッシースタイル", + "event": [ + { + "event_id": 715, + "event_name": "第15回ドリームLIVEフェスティバル" + } + ], + "hash": "c1211c36467b2716552c4d1d85e1290d", + "id": "2322902", + "profile": { + "bust": "86", + "height": "163", + "hip": "86", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ウェディングセレモニー", + "alias_name_display": "ウェディングセレモニー", + "hash": "f7d5c0216298dbb7033107930cd977c3", + "id": "2226701", + "profile": { + "bust": "86", + "height": "163", + "hip": "86", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ウェディングセレモニー", + "alias_name_display": "ウェディングセレモニー", + "hash": "85d68eea01b117486b607f455717a906", + "id": "2326702", + "profile": { + "bust": "86", + "height": "163", + "hip": "86", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "黒真珠の輝き", + "alias_name_display": "黒真珠の輝き", + "hash": "cf1a5d3544d33508dec93e2b8a566cce", + "id": "2405701", + "profile": { + "bust": "86", + "height": "163", + "hip": "86", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "黒真珠の輝き", + "alias_name_display": "黒真珠の輝き", + "hash": "6ede07bfc34af81ea373768ee64d3420", + "id": "2505702", + "profile": { + "bust": "86", + "height": "163", + "hip": "86", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "白銀の騎士", + "alias_name_display": "白銀の騎士", + "event": [ + { + "event_id": 516, + "event_name": "幻想公演栄光のシュヴァリエ" + } + ], + "hash": "8c4388028076672a43963f38de32b024", + "id": "2420101", + "profile": { + "bust": "86", + "height": "163", + "hip": "86", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "白銀の騎士", + "alias_name_display": "白銀の騎士", + "event": [ + { + "event_id": 516, + "event_name": "幻想公演栄光のシュヴァリエ" + } + ], + "hash": "024cad24043e3c69d8c4626c91c0b624", + "id": "2520102", + "profile": { + "bust": "86", + "height": "163", + "hip": "86", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "夜を見る淑女", + "alias_name_display": "夜を見る淑女", + "event": [ + { + "event_id": "025", + "event_name": "第25回プロダクションマッチフェスティバル" + } + ], + "hash": "18b11c7c27a2d1fe7ce0181c77596a03", + "id": "2429901", + "profile": { + "bust": "86", + "height": "163", + "hip": "86", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "夜を見る淑女", + "alias_name_display": "夜を見る淑女", + "event": [ + { + "event_id": "025", + "event_name": "第25回プロダクションマッチフェスティバル" + } + ], + "hash": "45dfc7d0f65cd5337cb103b7af3f7dc3", + "id": "2529902", + "profile": { + "bust": "86", + "height": "163", + "hip": "86", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "黒曜の囁き", + "alias_name_display": "黒曜の囁き", + "event": [ + { + "event_id": 1511, + "event_name": "第11回チーム対抗トークバトルショー" + } + ], + "hash": "a0392538ef8042cc44d645fca021bd78", + "id": "2438301", + "profile": { + "bust": "86", + "height": "163", + "hip": "86", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "黒曜の囁き", + "alias_name_display": "黒曜の囁き", + "event": [ + { + "event_id": 1511, + "event_name": "第11回チーム対抗トークバトルショー" + } + ], + "hash": "1b13a47f1e86ec39ecf4974fe3049ff9", + "id": "2538302", + "profile": { + "bust": "86", + "height": "163", + "hip": "86", + "waist": "57", + "weight": "45" + } + } + ], + "idol_id": 68, + "idol_name": "黒川千秋", + "idol_name_display": "黒川千秋", + "units": [ + { + "id": "53", + "name": "ブリヤント・ノワール" + }, + { + "id": "159", + "name": "パステル・カクテル" + }, + { + "id": "199", + "name": "レッドバラード" + }, + { + "id": "209", + "name": "ロワイヤルスタイルNP" + } + ] + }, + { + "aliases": [ + { + "hash": "a30783d170b758c118fd545eec28dfa9", + "id": "2000301", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "58", + "weight": "48" + } + }, + { + "hash": "550e684107f50aa0804d93fe5f11b133", + "id": "2100302", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "58", + "weight": "48" + } + }, + { + "alias_name": "水泳大会", + "alias_name_display": "水泳大会", + "event": [ + { + "event_id": 106, + "event_name": "アイドル水泳大会 水着のシンデレラ" + } + ], + "hash": "4072ebd35377b91af0e4a4f69dafee58", + "id": "2002301", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "58", + "weight": "48" + } + }, + { + "alias_name": "水泳大会", + "alias_name_display": "水泳大会", + "event": [ + { + "event_id": 106, + "event_name": "アイドル水泳大会 水着のシンデレラ" + } + ], + "hash": "42a46e206d59587e6fbaab7bee5b30d3", + "id": "2102302", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "58", + "weight": "48" + } + }, + { + "alias_name": "浴衣祭り", + "alias_name_display": "浴衣祭り", + "hash": "a7df62ab3b2d5dcb35b548557ab11ec5", + "id": "2210701", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "58", + "weight": "48" + } + }, + { + "alias_name": "浴衣祭り", + "alias_name_display": "浴衣祭り", + "hash": "b5e60c6af2179f38b31d551455402347", + "id": "2310702", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "58", + "weight": "48" + } + }, + { + "alias_name": "アップトゥデイト", + "alias_name_display": "アップトゥデイト", + "hash": "0de3d4c8622403e9d7229cd26280c9ef", + "id": "2219801", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "58", + "weight": "48" + } + }, + { + "alias_name": "アップトゥデイト", + "alias_name_display": "アップトゥデイト", + "hash": "6c99150f4022c8120715ed9a739b2489", + "id": "2319802", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "58", + "weight": "48" + } + }, + { + "alias_name": "ロワイヤルスタイルND", + "alias_name_display": "ロワイヤルスタイルND", + "event": [ + { + "event_id": 816, + "event_name": "第16回アイドルLIVEロワイヤル" + } + ], + "hash": "1b9e2b09c150a291f3bfc071abe006d6", + "id": "2225201", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "58", + "weight": "48" + } + }, + { + "alias_name": "ロワイヤルスタイルND", + "alias_name_display": "ロワイヤルスタイルND", + "event": [ + { + "event_id": 816, + "event_name": "第16回アイドルLIVEロワイヤル" + } + ], + "hash": "ce540cea8b2110611377d2d631c3e066", + "id": "2325202", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "58", + "weight": "48" + } + }, + { + "alias_name": "ステイインシェイプ", + "alias_name_display": "ステイインシェイプ", + "hash": "b9ffe5b8b3214774e10fe813a01f4e1a", + "id": "2231301", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "58", + "weight": "48" + } + }, + { + "alias_name": "ステイインシェイプ", + "alias_name_display": "ステイインシェイプ", + "hash": "1f579c998c02a9776400a9f3d43c26ab", + "id": "2331302", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "58", + "weight": "48" + } + }, + { + "alias_name": "セクシービューティー", + "alias_name_display": "セクシービューティー", + "event": [ + { + "event_id": 508, + "event_name": "LIVEツアーカーニバルinスペースワールド" + } + ], + "hash": "45c75bb28f21bddd1ad2738bda5b4d9d", + "id": "2410101", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "58", + "weight": "48" + } + }, + { + "alias_name": "セクシービューティー", + "alias_name_display": "セクシービューティー", + "event": [ + { + "event_id": 508, + "event_name": "LIVEツアーカーニバルinスペースワールド" + } + ], + "hash": "f1452a5449618b73378346046f8a8d68", + "id": "2510102", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "58", + "weight": "48" + } + }, + { + "alias_name": "サンシャインマリナー", + "alias_name_display": "サンシャインマリナー", + "event": [ + { + "event_id": "018", + "event_name": "第18回プロダクションマッチフェスティバル" + } + ], + "hash": "dc3d17ce8827254c7b49e013adfdd7d1", + "id": "2416801", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "58", + "weight": "48" + } + }, + { + "alias_name": "サンシャインマリナー", + "alias_name_display": "サンシャインマリナー", + "event": [ + { + "event_id": "018", + "event_name": "第18回プロダクションマッチフェスティバル" + } + ], + "hash": "d94af1f2bbd1ee5cba11de0029345800", + "id": "2516802", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "58", + "weight": "48" + } + }, + { + "alias_name": "セクシースリル", + "alias_name_display": "セクシースリル", + "event": [ + { + "event_id": 717, + "event_name": "第17回ドリームLIVEフェスティバル" + } + ], + "hash": "37797d5f21558e63d2ddef76ca7754cb", + "id": "2427901", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "58", + "weight": "48" + } + }, + { + "alias_name": "セクシースリル", + "alias_name_display": "セクシースリル", + "event": [ + { + "event_id": 717, + "event_name": "第17回ドリームLIVEフェスティバル" + } + ], + "hash": "667d1ecf34952923ee535605873f44eb", + "id": "2527902", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "58", + "weight": "48" + } + }, + { + "alias_name": "セクシーウィッチ", + "alias_name_display": "セクシーウィッチ", + "event": [ + { + "event_id": 1904, + "event_name": "魔界公演 妖艶魔女と消えたハロウィン" + } + ], + "hash": "9ab933bbf7cd99e54000a4c229b6161f", + "id": "2435201", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "58", + "weight": "48" + } + }, + { + "alias_name": "セクシーウィッチ", + "alias_name_display": "セクシーウィッチ", + "event": [ + { + "event_id": 1904, + "event_name": "魔界公演 妖艶魔女と消えたハロウィン" + } + ], + "hash": "2e3a40d67d49dc6574282976c7ede024", + "id": "2535202", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "58", + "weight": "48" + } + } + ], + "idol_id": 69, + "idol_name": "松本沙理奈", + "idol_name_display": "松本沙理奈", + "units": [ + { + "id": "29", + "name": "セーラーマリナー" + }, + { + "id": "110", + "name": "アップトゥデイト" + }, + { + "id": "198", + "name": "ブルーナポレオン" + }, + { + "id": "206", + "name": "セクシーボンデージ" + }, + { + "id": "210", + "name": "ロワイヤルスタイルND" + } + ] + }, + { + "aliases": [ + { + "hash": "f8edf47fb60a0d249bb979d68211b8be", + "id": "2000401", + "profile": { + "bust": "86", + "height": "160", + "hip": "86", + "waist": "56", + "weight": "43" + } + }, + { + "hash": "d7214775b8ad7a28a6fddcf512e9666c", + "id": "2100402", + "profile": { + "bust": "86", + "height": "160", + "hip": "86", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "スポーツ祭", + "alias_name_display": "スポーツ祭", + "hash": "567ce108edd82a9b613abaa95e94c9a4", + "id": "2204301", + "profile": { + "bust": "86", + "height": "160", + "hip": "86", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "スポーツ祭", + "alias_name_display": "スポーツ祭", + "hash": "2ddcac167adb3e5f1a888b16483b9338", + "id": "2304302", + "profile": { + "bust": "86", + "height": "160", + "hip": "86", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "バリスタイル", + "alias_name_display": "バリスタイル", + "event": [ + { + "event_id": 505, + "event_name": "アイドルLIVEツアーinバリ島" + } + ], + "hash": "7a4ebbaebec98924f539d8b7214af1a4", + "id": "2210601", + "profile": { + "bust": "86", + "height": "160", + "hip": "86", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "バリスタイル", + "alias_name_display": "バリスタイル", + "event": [ + { + "event_id": 505, + "event_name": "アイドルLIVEツアーinバリ島" + } + ], + "hash": "bf0c13ce6019138ebaeff2f13d7ce662", + "id": "2310602", + "profile": { + "bust": "86", + "height": "160", + "hip": "86", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "不意の幸せ", + "alias_name_display": "不意の幸せ", + "hash": "d2346216a10dc027b5ad981febe98200", + "id": "2216801", + "profile": { + "bust": "86", + "height": "160", + "hip": "86", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "不意の幸せ", + "alias_name_display": "不意の幸せ", + "hash": "40302b38b4d6dabceef6db49a6bd646b", + "id": "2316802", + "profile": { + "bust": "86", + "height": "160", + "hip": "86", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "ロワイヤルスタイルNP", + "alias_name_display": "ロワイヤルスタイルNP", + "event": [ + { + "event_id": 811, + "event_name": "第11回アイドルLIVEロワイヤル" + } + ], + "hash": "801604d97e1d78c4f7eac49c159e86a7", + "id": "2220401", + "profile": { + "bust": "86", + "height": "160", + "hip": "86", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "ロワイヤルスタイルNP", + "alias_name_display": "ロワイヤルスタイルNP", + "event": [ + { + "event_id": 811, + "event_name": "第11回アイドルLIVEロワイヤル" + } + ], + "hash": "270f111f0adc50347ba9256756602680", + "id": "2320402", + "profile": { + "bust": "86", + "height": "160", + "hip": "86", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "ブレイクタイム", + "alias_name_display": "ブレイクタイム", + "hash": "87d826bbf263c5ed9692324810ecc77d", + "id": "2223401", + "profile": { + "bust": "86", + "height": "160", + "hip": "86", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "ブレイクタイム", + "alias_name_display": "ブレイクタイム", + "hash": "d182d50be9a4a09ce0ba65b085091f7e", + "id": "2323402", + "profile": { + "bust": "86", + "height": "160", + "hip": "86", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "T.B.チアーズ", + "alias_name_display": "T.B.チアーズ", + "event": [ + { + "event_id": 1509, + "event_name": "第9回チーム対抗トークバトルショー" + } + ], + "hash": "ed6e36f5388cca179f16884e7020f518", + "id": "2229301", + "profile": { + "bust": "86", + "height": "160", + "hip": "86", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "T.B.チアーズ", + "alias_name_display": "T.B.チアーズ", + "event": [ + { + "event_id": 1509, + "event_name": "第9回チーム対抗トークバトルショー" + } + ], + "hash": "9d94602d3641b0c6eede6dd3d1c2ebd3", + "id": "2329302", + "profile": { + "bust": "86", + "height": "160", + "hip": "86", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "エレガントマリオネット", + "alias_name_display": "エレガントマリオネット", + "event": [ + { + "event_id": 804, + "event_name": "第4回アイドルLIVEロワイヤル" + } + ], + "hash": "3dc9f6b43b8f09c2cd14427246204ab7", + "id": "2413201", + "profile": { + "bust": "86", + "height": "160", + "hip": "86", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "エレガントマリオネット", + "alias_name_display": "エレガントマリオネット", + "event": [ + { + "event_id": 804, + "event_name": "第4回アイドルLIVEロワイヤル" + } + ], + "hash": "35fdf29a4ff894128272306654735d50", + "id": "2513202", + "profile": { + "bust": "86", + "height": "160", + "hip": "86", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "オープンスイート", + "alias_name_display": "オープンスイート", + "event": [ + { + "event_id": 1406, + "event_name": "第6回ぷちデレラコレクション" + } + ], + "hash": "45d7e0444687067fe30053e2047bb81d", + "id": "2431701", + "profile": { + "bust": "86", + "height": "160", + "hip": "86", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "オープンスイート", + "alias_name_display": "オープンスイート", + "event": [ + { + "event_id": 1406, + "event_name": "第6回ぷちデレラコレクション" + } + ], + "hash": "81fd47cf40cbfb59f9dc779f0b2e6258", + "id": "2531702", + "profile": { + "bust": "86", + "height": "160", + "hip": "86", + "waist": "56", + "weight": "43" + } + } + ], + "idol_id": 70, + "idol_name": "桐野アヤ", + "idol_name_display": "桐野アヤ", + "units": [ + { + "id": "42", + "name": "バリスタイル" + }, + { + "id": "62", + "name": "ようせいさんとおねえさん" + }, + { + "id": "119", + "name": "フランメ・ルージュ" + }, + { + "id": "181", + "name": "フレッシュアスリーテス" + }, + { + "id": "199", + "name": "レッドバラード" + }, + { + "id": "209", + "name": "ロワイヤルスタイルNP" + } + ] + }, + { + "aliases": [ + { + "hash": "0a608619d8933f94dbf234b16a738cc4", + "id": "2000501", + "profile": { + "bust": "91", + "height": "167", + "hip": "90", + "waist": "62", + "weight": "51" + } + }, + { + "hash": "77bc167a538072243fe4efada302c5dd", + "id": "2100502", + "profile": { + "bust": "91", + "height": "167", + "hip": "90", + "waist": "62", + "weight": "51" + } + }, + { + "alias_name": "湯けむり月夜", + "alias_name_display": "湯けむり月夜", + "hash": "aaf15e170c8e34777956d6e615d7b23d", + "id": "2212601", + "profile": { + "bust": "91", + "height": "167", + "hip": "90", + "waist": "62", + "weight": "51" + } + }, + { + "alias_name": "湯けむり月夜", + "alias_name_display": "湯けむり月夜", + "hash": "7f2f67ea668968a6d17d54ad225de60e", + "id": "2312602", + "profile": { + "bust": "91", + "height": "167", + "hip": "90", + "waist": "62", + "weight": "51" + } + }, + { + "alias_name": "パラダイスリゾート", + "alias_name_display": "パラダイスリゾート", + "hash": "f3785b4e58b357a89d3abc48ae4a25cc", + "id": "2217001", + "profile": { + "bust": "91", + "height": "167", + "hip": "90", + "waist": "62", + "weight": "51" + } + }, + { + "alias_name": "パラダイスリゾート", + "alias_name_display": "パラダイスリゾート", + "hash": "8b93d1e5afa99347a6fcfa8f5a5a8586", + "id": "2317002", + "profile": { + "bust": "91", + "height": "167", + "hip": "90", + "waist": "62", + "weight": "51" + } + }, + { + "alias_name": "インモーション", + "alias_name_display": "インモーション", + "event": [ + { + "event_id": "019", + "event_name": "第19回プロダクションマッチフェスティバル" + } + ], + "hash": "b0daf9e54ee010a9f898f304243bbd06", + "id": "2218801", + "profile": { + "bust": "91", + "height": "167", + "hip": "90", + "waist": "62", + "weight": "51" + } + }, + { + "alias_name": "インモーション", + "alias_name_display": "インモーション", + "event": [ + { + "event_id": "019", + "event_name": "第19回プロダクションマッチフェスティバル" + } + ], + "hash": "3620cdf9b0524f7ffdfeb8e7cfac9400", + "id": "2318802", + "profile": { + "bust": "91", + "height": "167", + "hip": "90", + "waist": "62", + "weight": "51" + } + }, + { + "alias_name": "マダム・マミー", + "alias_name_display": "マダム・マミー", + "event": [ + { + "event_id": 522, + "event_name": "魔界公演 幽鬱女王とハロウィンの祝祭" + } + ], + "hash": "a7fa225473c0d3eac3e226b3d9a5621f", + "id": "2323802", + "profile": { + "bust": "91", + "height": "167", + "hip": "90", + "waist": "62", + "weight": "51" + } + }, + { + "alias_name": "トレランスパンサレス", + "alias_name_display": "トレランスパンサレス", + "hash": "d507a4e135271b117fe48e96f304efdf", + "id": "2226201", + "profile": { + "bust": "91", + "height": "167", + "hip": "90", + "waist": "62", + "weight": "51" + } + }, + { + "alias_name": "トレランスパンサレス", + "alias_name_display": "トレランスパンサレス", + "hash": "044f3dda15df99f500884ebb320467cb", + "id": "2326202", + "profile": { + "bust": "91", + "height": "167", + "hip": "90", + "waist": "62", + "weight": "51" + } + }, + { + "alias_name": "ホーリーコーラス", + "alias_name_display": "ホーリーコーラス", + "hash": "c7fc22efe7292a115f75036198638695", + "id": "2229501", + "profile": { + "bust": "91", + "height": "167", + "hip": "90", + "waist": "62", + "weight": "51" + } + }, + { + "alias_name": "ホーリーコーラス", + "alias_name_display": "ホーリーコーラス", + "hash": "b2649350266c291beb9d570c256463d8", + "id": "2329502", + "profile": { + "bust": "91", + "height": "167", + "hip": "90", + "waist": "62", + "weight": "51" + } + }, + { + "alias_name": "妖しき雌豹", + "alias_name_display": "妖しき雌豹", + "event": [ + { + "event_id": 204, + "event_name": "アイドルサバイバルin動物園" + } + ], + "hash": "039bbb4300c231ff4d9afd4c3d096c52", + "id": "2402101", + "profile": { + "bust": "91", + "height": "167", + "hip": "90", + "waist": "62", + "weight": "51" + } + }, + { + "alias_name": "妖しき雌豹", + "alias_name_display": "妖しき雌豹", + "event": [ + { + "event_id": 204, + "event_name": "アイドルサバイバルin動物園" + } + ], + "hash": "62f5c0944ca2ad486b29b8b913479cf0", + "id": "2502102", + "profile": { + "bust": "91", + "height": "167", + "hip": "90", + "waist": "62", + "weight": "51" + } + }, + { + "alias_name": "魅惑のカクテルレディ", + "alias_name_display": "魅惑のカクテルレディ", + "event": [ + { + "event_id": "009", + "event_name": "第9回プロダクションマッチフェスティバル" + } + ], + "hash": "86c4bdb562fd8e4f75e9f6186bf5f7c7", + "id": "2406101", + "profile": { + "bust": "91", + "height": "167", + "hip": "90", + "waist": "62", + "weight": "51" + } + }, + { + "alias_name": "魅惑のカクテルレディ", + "alias_name_display": "魅惑のカクテルレディ", + "event": [ + { + "event_id": "009", + "event_name": "第9回プロダクションマッチフェスティバル" + } + ], + "hash": "584c3fe5210a9dfbd497c164ee2bb8e6", + "id": "2506102", + "profile": { + "bust": "91", + "height": "167", + "hip": "90", + "waist": "62", + "weight": "51" + } + }, + { + "alias_name": "セクシー・ロワイヤル", + "alias_name_display": "セクシー・ロワイヤル", + "event": [ + { + "event_id": 812, + "event_name": "第12回アイドルLIVEロワイヤル" + } + ], + "hash": "66f6b003936de3d8218ed6d75e7725bf", + "id": "2424201", + "profile": { + "bust": "91", + "height": "167", + "hip": "90", + "waist": "62", + "weight": "51" + } + }, + { + "alias_name": "セクシー・ロワイヤル", + "alias_name_display": "セクシー・ロワイヤル", + "event": [ + { + "event_id": 812, + "event_name": "第12回アイドルLIVEロワイヤル" + } + ], + "hash": "b6f3e564d927a8741fef257195584e32", + "id": "2524202", + "profile": { + "bust": "91", + "height": "167", + "hip": "90", + "waist": "62", + "weight": "51" + } + }, + { + "alias_name": "アモラス・ロワイヤル", + "alias_name_display": "アモラス・ロワイヤル", + "event": [ + { + "event_id": 823, + "event_name": "第23回アイドルLIVEロワイヤル" + } + ], + "hash": "48699172a15eb286179eb1b4daa8c46f", + "id": "2439901", + "profile": { + "bust": "91", + "height": "167", + "hip": "90", + "waist": "62", + "weight": "51" + } + }, + { + "alias_name": "アモラス・ロワイヤル", + "alias_name_display": "アモラス・ロワイヤル", + "event": [ + { + "event_id": 823, + "event_name": "第23回アイドルLIVEロワイヤル" + } + ], + "hash": "79b7221bfb5db0a94baf512abe1eb5eb", + "id": "2539902", + "profile": { + "bust": "91", + "height": "167", + "hip": "90", + "waist": "62", + "weight": "51" + } + } + ], + "idol_id": 71, + "idol_name": "高橋礼子", + "idol_name_display": "高橋礼子", + "units": [ + { + "id": "67", + "name": "レディビースト" + }, + { + "id": "199", + "name": "レッドバラード" + }, + { + "id": "207", + "name": "ムーランルージュ" + } + ] + }, + { + "aliases": [ + { + "hash": "24db8e0436418b7e45715d6330a49056", + "id": "2000601", + "profile": { + "bust": "82", + "height": "161", + "hip": "85", + "waist": "56", + "weight": "43" + } + }, + { + "hash": "bb3b59c3fcb13e67d428def53699f508", + "id": "2100602", + "profile": { + "bust": "82", + "height": "161", + "hip": "85", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "お花見", + "alias_name_display": "お花見", + "event": [ + { + "event_id": 104, + "event_name": "桜舞う花見祭り" + } + ], + "hash": "3839626e54d0ec041b4a9e31daa069e5", + "id": "2002001", + "profile": { + "bust": "82", + "height": "161", + "hip": "85", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "お花見", + "alias_name_display": "お花見", + "event": [ + { + "event_id": 104, + "event_name": "桜舞う花見祭り" + } + ], + "hash": "98a7280ce9e419297d6a0732e1e8be21", + "id": "2102002", + "profile": { + "bust": "82", + "height": "161", + "hip": "85", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "ロワイヤルスタイル", + "alias_name_display": "ロワイヤルスタイル", + "event": [ + { + "event_id": 801, + "event_name": "アイドルLIVEロワイヤル" + } + ], + "hash": "26374e719939476045d5b68cd97bd71b", + "id": "2212101", + "profile": { + "bust": "82", + "height": "161", + "hip": "85", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "ロワイヤルスタイル", + "alias_name_display": "ロワイヤルスタイル", + "event": [ + { + "event_id": 801, + "event_name": "アイドルLIVEロワイヤル" + } + ], + "hash": "5db94845caafaca3cb351938eab38255", + "id": "2312102", + "profile": { + "bust": "82", + "height": "161", + "hip": "85", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "メルヘンアニマルズ", + "alias_name_display": "メルヘンアニマルズ", + "hash": "adcaecd0e24939267f69f3d5ced30f80", + "id": "2217401", + "profile": { + "bust": "82", + "height": "161", + "hip": "85", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "メルヘンアニマルズ", + "alias_name_display": "メルヘンアニマルズ", + "hash": "d605d715d583a542309c21f213131857", + "id": "2317402", + "profile": { + "bust": "82", + "height": "161", + "hip": "85", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "イージーモーメント", + "alias_name_display": "イージーモーメント", + "event": [ + { + "event_id": "021", + "event_name": "第21回プロダクションマッチフェスティバル" + } + ], + "hash": "25d429cfd93ad10bb1f06a997c3f5797", + "id": "2220601", + "profile": { + "bust": "82", + "height": "161", + "hip": "85", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "イージーモーメント", + "alias_name_display": "イージーモーメント", + "event": [ + { + "event_id": "021", + "event_name": "第21回プロダクションマッチフェスティバル" + } + ], + "hash": "259502538c76ba040edf323f08ecf86c", + "id": "2320602", + "profile": { + "bust": "82", + "height": "161", + "hip": "85", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "敏腕刑事", + "alias_name_display": "敏腕刑事", + "event": [ + { + "event_id": 521, + "event_name": "怪盗公演 美しき追跡者" + } + ], + "hash": "af44062383e5a214b5b983e6a037feaa", + "id": "2322802", + "profile": { + "bust": "82", + "height": "161", + "hip": "85", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "秋の学園祭", + "alias_name_display": "秋の学園祭", + "hash": "595943d4eb918aa66cfc1dd92fe8a8b8", + "id": "2228901", + "profile": { + "bust": "82", + "height": "161", + "hip": "85", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "秋の学園祭", + "alias_name_display": "秋の学園祭", + "hash": "03c4a96c5302e9ed2e1d0ffa2cde0140", + "id": "2328902", + "profile": { + "bust": "82", + "height": "161", + "hip": "85", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "ナイトエレガンス", + "alias_name_display": "ナイトエレガンス", + "event": [ + { + "event_id": 803, + "event_name": "第3回アイドルLIVEロワイヤル" + } + ], + "hash": "2e8a72447531178bd7c6b4af5ad3ac65", + "id": "2411901", + "profile": { + "bust": "82", + "height": "161", + "hip": "85", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "ナイトエレガンス", + "alias_name_display": "ナイトエレガンス", + "event": [ + { + "event_id": 803, + "event_name": "第3回アイドルLIVEロワイヤル" + } + ], + "hash": "6005f3a24b6f95a9e6ac20001fccf0a9", + "id": "2511902", + "profile": { + "bust": "82", + "height": "161", + "hip": "85", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "招福萬来", + "alias_name_display": "招福萬来", + "event": [ + { + "event_id": 719, + "event_name": "ドリームLIVEフェスティバル 節分SP" + } + ], + "hash": "d8b2e5540583e671da737c5c832509ce", + "id": "2430501", + "profile": { + "bust": "82", + "height": "161", + "hip": "85", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "招福萬来", + "alias_name_display": "招福萬来", + "event": [ + { + "event_id": 719, + "event_name": "ドリームLIVEフェスティバル 節分SP" + } + ], + "hash": "38623ebf06937afb131651a871925ccd", + "id": "2530502", + "profile": { + "bust": "82", + "height": "161", + "hip": "85", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "モードリーブル", + "alias_name_display": "モードリーブル", + "event": [ + { + "event_id": 1412, + "event_name": "第12回ぷちデレラコレクション" + } + ], + "hash": "b839d7f458db037366fcd9f57ea3137e", + "id": "2439501", + "profile": { + "bust": "82", + "height": "161", + "hip": "85", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "モードリーブル", + "alias_name_display": "モードリーブル", + "event": [ + { + "event_id": 1412, + "event_name": "第12回ぷちデレラコレクション" + } + ], + "hash": "4028037887d8707827e2a749bb925d5d", + "id": "2539502", + "profile": { + "bust": "82", + "height": "161", + "hip": "85", + "waist": "56", + "weight": "43" + } + } + ], + "idol_id": 72, + "idol_name": "相川千夏", + "idol_name_display": "相川千夏", + "units": [ + { + "id": "18", + "name": "サクラブロッサム" + }, + { + "id": "166", + "name": "メルヘンアニマルズ" + }, + { + "id": "199", + "name": "レッドバラード" + }, + { + "id": "208", + "name": "ロワイヤルスタイル" + } + ] + }, + { + "aliases": [ + { + "hash": "40a601df9bea01621e36d1ab686f16e3", + "id": "2000701", + "profile": { + "bust": "87", + "height": "159", + "hip": "85", + "waist": "57", + "weight": "44" + } + }, + { + "hash": "58135fa927f8d12eaa6228dc0bdf62e9", + "id": "2100702", + "profile": { + "bust": "87", + "height": "159", + "hip": "85", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "パジャマパーティー", + "alias_name_display": "パジャマパーティー", + "hash": "209fee1285aed04a5741706a0a566fef", + "id": "2204001", + "profile": { + "bust": "87", + "height": "159", + "hip": "85", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "パジャマパーティー", + "alias_name_display": "パジャマパーティー", + "hash": "c17136265b3240ee66b30f381e3aef56", + "id": "2304002", + "profile": { + "bust": "87", + "height": "159", + "hip": "85", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "花火祭り", + "alias_name_display": "花火祭り", + "event": [ + { + "event_id": 408, + "event_name": "アイドルプロデュース 夜空に咲く花火編" + } + ], + "hash": "99dfa14f926ede47b4fc2cabfd018d75", + "id": "2211001", + "profile": { + "bust": "87", + "height": "159", + "hip": "85", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "花火祭り", + "alias_name_display": "花火祭り", + "event": [ + { + "event_id": 408, + "event_name": "アイドルプロデュース 夜空に咲く花火編" + } + ], + "hash": "daef71058f35b5317a104f0441b71b5e", + "id": "2311002", + "profile": { + "bust": "87", + "height": "159", + "hip": "85", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "花火祭りスマイル", + "alias_name_display": "花火祭りスマイル", + "event": [ + { + "event_id": 408, + "event_name": "アイドルプロデュース 夜空に咲く花火編" + } + ], + "hash": "275711a449400f466b5cf81a50ca258f", + "id": "2211101", + "profile": { + "bust": "87", + "height": "159", + "hip": "85", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "花火祭りスマイル", + "alias_name_display": "花火祭りスマイル", + "event": [ + { + "event_id": 408, + "event_name": "アイドルプロデュース 夜空に咲く花火編" + } + ], + "hash": "8616ac16ec9f6cc1cecbe86f21b144d5", + "id": "2311102", + "profile": { + "bust": "87", + "height": "159", + "hip": "85", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "大人のたしなみ", + "alias_name_display": "大人のたしなみ", + "hash": "7cadb40bf6509955d8d5de4eae76f733", + "id": "2226101", + "profile": { + "bust": "87", + "height": "159", + "hip": "85", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "大人のたしなみ", + "alias_name_display": "大人のたしなみ", + "hash": "3b95f73ab51ad9cd2e2f6a27ea50e9f3", + "id": "2326102", + "profile": { + "bust": "87", + "height": "159", + "hip": "85", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "永遠のプリンセス", + "alias_name_display": "永遠のプリンセス", + "event": [ + { + "event_id": "005", + "event_name": "第5回プロダクションマッチフェスティバル" + } + ], + "hash": "907f18eacc2a5f257dbd4ae077367f90", + "id": "2403401", + "profile": { + "bust": "87", + "height": "159", + "hip": "85", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "永遠のプリンセス", + "alias_name_display": "永遠のプリンセス", + "event": [ + { + "event_id": "005", + "event_name": "第5回プロダクションマッチフェスティバル" + } + ], + "hash": "9d9d9704f3d149c9e1f72a858172a7ae", + "id": "2503402", + "profile": { + "bust": "87", + "height": "159", + "hip": "85", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "麗しき淑女", + "alias_name_display": "麗しき淑女", + "hash": "300832c8e53700a2d11cc55349e63961", + "id": "2404601", + "profile": { + "bust": "87", + "height": "159", + "hip": "85", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "麗しき淑女", + "alias_name_display": "麗しき淑女", + "hash": "551dff4a0a16e66bdf019f55381368ca", + "id": "2504602", + "profile": { + "bust": "87", + "height": "159", + "hip": "85", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "aabab7304c856a8a52ef3c3ec8df7fa7", + "id": "2405101", + "profile": { + "bust": "87", + "height": "159", + "hip": "85", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "9bba87dccca8d68fe3559eeb60a22d51", + "id": "2505102", + "profile": { + "bust": "87", + "height": "159", + "hip": "85", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "クリスマスクイーン", + "alias_name_display": "クリスマスクイーン", + "hash": "1b9b66c042fdaa8e668f198b53947535", + "id": "2410901", + "profile": { + "bust": "87", + "height": "159", + "hip": "85", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "クリスマスクイーン", + "alias_name_display": "クリスマスクイーン", + "hash": "0db6cc006f71e8595c22c1377698ae8f", + "id": "2510902", + "profile": { + "bust": "87", + "height": "159", + "hip": "85", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "熱情の魔女", + "alias_name_display": "熱情の魔女", + "event": [ + { + "event_id": 806, + "event_name": "アイドルLIVEロワイヤルinSUMMER" + } + ], + "hash": "ba03cf985c54861ffdf105a5791a8882", + "id": "2417001", + "profile": { + "bust": "87", + "height": "159", + "hip": "85", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "熱情の魔女", + "alias_name_display": "熱情の魔女", + "event": [ + { + "event_id": 806, + "event_name": "アイドルLIVEロワイヤルinSUMMER" + } + ], + "hash": "393c268bda8bf72c51cf54f6e42acf1c", + "id": "2517002", + "profile": { + "bust": "87", + "height": "159", + "hip": "85", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "夜明けのディーヴァ", + "alias_name_display": "夜明けのディーヴァ", + "hash": "c95a94a687ce72c15e098b2f98b0e4bd", + "id": "2423501", + "profile": { + "bust": "87", + "height": "159", + "hip": "85", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "夜明けのディーヴァ", + "alias_name_display": "夜明けのディーヴァ", + "hash": "f8da33d8e7f6afc951e447ee93b95e33", + "id": "2523502", + "profile": { + "bust": "87", + "height": "159", + "hip": "85", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "タイムゴーズバイ", + "alias_name_display": "タイムゴーズバイ", + "hash": "95216370d68f59ba130fc9030ffcb95c", + "id": "2429101", + "profile": { + "bust": "87", + "height": "159", + "hip": "85", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "タイムゴーズバイ", + "alias_name_display": "タイムゴーズバイ", + "hash": "b8da2dbad3008521edcb8ad261ad0c1d", + "id": "2529102", + "profile": { + "bust": "87", + "height": "159", + "hip": "85", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "シンデレラドリーム", + "alias_name_display": "シンデレラドリーム", + "hash": "3f53b23452b2ad8b1a5a279257023dc1", + "id": "2436001", + "profile": { + "bust": "87", + "height": "159", + "hip": "85", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "シンデレラドリーム", + "alias_name_display": "シンデレラドリーム", + "hash": "f8290c4530003b664115639282feddd3", + "id": "2536002", + "profile": { + "bust": "87", + "height": "159", + "hip": "85", + "waist": "56", + "weight": "44" + } + } + ], + "idol_id": 73, + "idol_name": "川島瑞樹", + "idol_name_display": "川島瑞樹", + "units": [ + { + "id": "52", + "name": "フォーリンシーサイド" + }, + { + "id": "124", + "name": "女神たちの夏宴" + }, + { + "id": "140", + "name": "アイドルミズキ with AS" + }, + { + "id": "190", + "name": "サマプリ" + }, + { + "id": "198", + "name": "ブルーナポレオン" + }, + { + "id": "201", + "name": "Caskets" + }, + { + "id": "212", + "name": "CINDERELLA GIRLS" + } + ] + }, + { + "aliases": [ + { + "hash": "4c54b931268517a3746f98911166b113", + "id": "2000801", + "profile": { + "bust": "83", + "height": "154", + "hip": "81", + "waist": "58", + "weight": "44" + } + }, + { + "hash": "06a7cb5dff7350e37d97e6b9d6207148", + "id": "2100802", + "profile": { + "bust": "83", + "height": "154", + "hip": "81", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "聖夜", + "alias_name_display": "聖夜", + "event": [ + { + "event_id": 101, + "event_name": "星降るクリスマス" + } + ], + "hash": "226ea5730b69cb31b721f24fe9db2ff3", + "id": "2201901", + "profile": { + "bust": "83", + "height": "154", + "hip": "81", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "聖夜", + "alias_name_display": "聖夜", + "event": [ + { + "event_id": 101, + "event_name": "星降るクリスマス" + } + ], + "hash": "d2612b52c629e6a5ffcb5de8c6c77c1f", + "id": "2301902", + "profile": { + "bust": "83", + "height": "154", + "hip": "81", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "京町乙女", + "alias_name_display": "京町乙女", + "event": [ + { + "event_id": 402, + "event_name": "アイドルプロデュース京町編" + } + ], + "hash": "9c9c15601b70b9001c558d79df7f2795", + "id": "2206401", + "profile": { + "bust": "83", + "height": "154", + "hip": "81", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "京町乙女", + "alias_name_display": "京町乙女", + "event": [ + { + "event_id": 402, + "event_name": "アイドルプロデュース京町編" + } + ], + "hash": "5ed8a511f1c7bd01ac963eabd5aaf3f2", + "id": "2306402", + "profile": { + "bust": "83", + "height": "154", + "hip": "81", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "制服コレクション", + "alias_name_display": "制服コレクション", + "hash": "ead31e2aa3a42fd37121ae0e7379cc0d", + "id": "2211901", + "profile": { + "bust": "83", + "height": "154", + "hip": "81", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "制服コレクション", + "alias_name_display": "制服コレクション", + "hash": "dca33b6f2bbf361004273bc203ffeccd", + "id": "2311902", + "profile": { + "bust": "83", + "height": "154", + "hip": "81", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "恥じらい乙女", + "alias_name_display": "恥じらい乙女", + "hash": "2fc4f435264d5f7543ed27ff5bc3b333", + "id": "2401901", + "profile": { + "bust": "83", + "height": "154", + "hip": "81", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "恥じらい乙女", + "alias_name_display": "恥じらい乙女", + "hash": "7e19695143ebd0b2e67b54e212be8cb8", + "id": "2501902", + "profile": { + "bust": "83", + "height": "154", + "hip": "81", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "アトラクトゴシック", + "alias_name_display": "アトラクトゴシック", + "hash": "42ccfcf77765fe187c5b01a39b83b62b", + "id": "2405601", + "profile": { + "bust": "83", + "height": "154", + "hip": "81", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "アトラクトゴシック", + "alias_name_display": "アトラクトゴシック", + "hash": "823b2fe51a82ecb9819b0d8a28cbb05d", + "id": "2505602", + "profile": { + "bust": "83", + "height": "154", + "hip": "81", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "夜宴のメイド", + "alias_name_display": "夜宴のメイド", + "hash": "1eb1e04b6ccae476e2fa494da8dc8d62", + "id": "2412801", + "profile": { + "bust": "83", + "height": "154", + "hip": "81", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "夜宴のメイド", + "alias_name_display": "夜宴のメイド", + "hash": "71f3529076561f0938fcd40266bba205", + "id": "2512802", + "profile": { + "bust": "83", + "height": "154", + "hip": "81", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "64a140b725d7907a0cf8ad1ea556206e", + "id": "2414001", + "profile": { + "bust": "83", + "height": "154", + "hip": "81", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "65c6332be6031ac00cab0de46cd8b679", + "id": "2514002", + "profile": { + "bust": "83", + "height": "154", + "hip": "81", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "魔法のエール", + "alias_name_display": "魔法のエール", + "event": [ + { + "event_id": 1107, + "event_name": "プロダクション対抗トークバトルショー クリスマスSP" + } + ], + "hash": "21db51dfd598fc78744050f3bd726b6c", + "id": "2419901", + "profile": { + "bust": "83", + "height": "154", + "hip": "81", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "魔法のエール", + "alias_name_display": "魔法のエール", + "event": [ + { + "event_id": 1107, + "event_name": "プロダクション対抗トークバトルショー クリスマスSP" + } + ], + "hash": "677c4345a16718726b0fc7fbffbd9181", + "id": "2519902", + "profile": { + "bust": "83", + "height": "154", + "hip": "81", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "純真の花嫁", + "alias_name_display": "純真の花嫁", + "event": [ + { + "event_id": 1206, + "event_name": "目指せウェディングモデル アイドルチャレンジ" + } + ], + "hash": "6605ee3d07ad7a750c55492215c2df86", + "id": "2424501", + "profile": { + "bust": "83", + "height": "154", + "hip": "81", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "純真の花嫁", + "alias_name_display": "純真の花嫁", + "event": [ + { + "event_id": 1206, + "event_name": "目指せウェディングモデル アイドルチャレンジ" + } + ], + "hash": "b3e05599926adc80d58c1ab78e987a78", + "id": "2524502", + "profile": { + "bust": "83", + "height": "154", + "hip": "81", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "トゥプロミス", + "alias_name_display": "トゥプロミス", + "hash": "2c7cf0f30845f13b7794d96367f6f37a", + "id": "2427801", + "profile": { + "bust": "83", + "height": "154", + "hip": "81", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "トゥプロミス", + "alias_name_display": "トゥプロミス", + "hash": "ff60a2cf4d0f69d2c7b34929a354a11b", + "id": "2527802", + "profile": { + "bust": "83", + "height": "154", + "hip": "81", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "夏空サプライズ", + "alias_name_display": "夏空サプライズ", + "hash": "90340a72d8990fb4ae7171feeef246b4", + "id": "2433601", + "profile": { + "bust": "83", + "height": "154", + "hip": "81", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "夏空サプライズ", + "alias_name_display": "夏空サプライズ", + "hash": "d889a0c65040761fe74dae4bd35fc22d", + "id": "2533602", + "profile": { + "bust": "83", + "height": "154", + "hip": "81", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "気まぐれにゃんこ", + "alias_name_display": "気まぐれにゃんこ", + "hash": "224d562032e630fa1cc8d555dbb2c553", + "id": "2438401", + "profile": { + "bust": "83", + "height": "154", + "hip": "81", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "気まぐれにゃんこ", + "alias_name_display": "気まぐれにゃんこ", + "hash": "8511ad8903a41ce65a867c7d1d9fb90a", + "id": "2538402", + "profile": { + "bust": "83", + "height": "154", + "hip": "81", + "waist": "56", + "weight": "42" + } + } + ], + "idol_id": 74, + "idol_name": "神谷奈緒", + "idol_name_display": "神谷奈緒", + "units": [ + { + "id": "91", + "name": "京町乙女" + }, + { + "id": "94", + "name": "シャイニングゴッドチェリー" + }, + { + "id": "115", + "name": "虹色ドリーマー" + }, + { + "id": "144", + "name": "Triad Primus" + }, + { + "id": "187", + "name": "NEX-US" + }, + { + "id": "201", + "name": "Caskets" + }, + { + "id": "215", + "name": "Project:Krone" + } + ] + }, + { + "aliases": [ + { + "hash": "67f718dfb03e338ba76c322b1970258e", + "id": "2000901", + "profile": { + "bust": "79", + "height": "156", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "hash": "c981552913cad2107b2a42c40b42f200", + "id": "2100902", + "profile": { + "bust": "79", + "height": "156", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "眼鏡マジック", + "alias_name_display": "眼鏡マジック", + "event": [ + { + "event_id": "001", + "event_name": "プロダクションマッチフェスティバル" + } + ], + "hash": "30376d9c5c74a63aa62d34b6e5549287", + "id": "2203201", + "profile": { + "bust": "79", + "height": "156", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "眼鏡マジック", + "alias_name_display": "眼鏡マジック", + "event": [ + { + "event_id": "001", + "event_name": "プロダクションマッチフェスティバル" + } + ], + "hash": "4046d2c05a63497e9d6363b8c93131c0", + "id": "2303202", + "profile": { + "bust": "79", + "height": "156", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "アニバーサリーブルー", + "alias_name_display": "アニバーサリーブルー", + "event": [ + { + "event_id": 403, + "event_name": "アイドルプロデュース the 1st Anniversary" + } + ], + "hash": "82d2eab4067f865fdeb3b7bd9f3f1a1c", + "id": "2207001", + "profile": { + "bust": "79", + "height": "156", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "アニバーサリーブルー", + "alias_name_display": "アニバーサリーブルー", + "event": [ + { + "event_id": 403, + "event_name": "アイドルプロデュース the 1st Anniversary" + } + ], + "hash": "90d5b268954cd457fa650376fb7c37fe", + "id": "2307002", + "profile": { + "bust": "79", + "height": "156", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "新春コレクション", + "alias_name_display": "新春コレクション", + "hash": "9ec2e1396e64cbf435a52b7c4f7ff518", + "id": "2213701", + "profile": { + "bust": "79", + "height": "156", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "新春コレクション", + "alias_name_display": "新春コレクション", + "hash": "f4e2b86a14a5136878c169258a0d752d", + "id": "2313702", + "profile": { + "bust": "79", + "height": "156", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "クリスマスプレゼント", + "alias_name_display": "クリスマスプレゼント", + "hash": "f1279cb152f79f39243600a630ba373a", + "id": "2218901", + "profile": { + "bust": "79", + "height": "156", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "クリスマスプレゼント", + "alias_name_display": "クリスマスプレゼント", + "hash": "c7f5f73ba58581b6d42b967bcef3b33b", + "id": "2318902", + "profile": { + "bust": "79", + "height": "156", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "秋の学園祭", + "alias_name_display": "秋の学園祭", + "hash": "1a99e96a10fc8b6aa1d86de6df110900", + "id": "2228801", + "profile": { + "bust": "79", + "height": "156", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "秋の学園祭", + "alias_name_display": "秋の学園祭", + "hash": "32d8b86ecc3590d3d7c24af83676493e", + "id": "2328802", + "profile": { + "bust": "79", + "height": "156", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "眼鏡プリンセス", + "alias_name_display": "眼鏡プリンセス", + "hash": "d4bf3f8607525c3677d202531d6a2b8f", + "id": "2403001", + "profile": { + "bust": "79", + "height": "156", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "眼鏡プリンセス", + "alias_name_display": "眼鏡プリンセス", + "hash": "bbfd336e241f96dcc83e272d597cb3ef", + "id": "2503002", + "profile": { + "bust": "79", + "height": "156", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "ホワイトプリンセス", + "alias_name_display": "ホワイトプリンセス", + "event": [ + { + "event_id": 507, + "event_name": "LIVEツアーカーニバルinドイツ" + } + ], + "hash": "dd7ae2fc2ca09c5c5b4bdc9e3e7697b6", + "id": "2408701", + "profile": { + "bust": "79", + "height": "156", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "ホワイトプリンセス", + "alias_name_display": "ホワイトプリンセス", + "event": [ + { + "event_id": 507, + "event_name": "LIVEツアーカーニバルinドイツ" + } + ], + "hash": "f804a8ac60ea75d39b243b1878fd2e2d", + "id": "2508702", + "profile": { + "bust": "79", + "height": "156", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "眼鏡越しの輝き", + "alias_name_display": "眼鏡越しの輝き", + "event": [ + { + "event_id": 1301, + "event_name": "プロダクションマッチフェスティバルS" + } + ], + "hash": "2fbb5c929f6ac2e9c19a5274ceb055db", + "id": "2415801", + "profile": { + "bust": "79", + "height": "156", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "眼鏡越しの輝き", + "alias_name_display": "眼鏡越しの輝き", + "event": [ + { + "event_id": 1301, + "event_name": "プロダクションマッチフェスティバルS" + } + ], + "hash": "51d10185262f6caafe0355f40b29a286", + "id": "2515802", + "profile": { + "bust": "79", + "height": "156", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "メモリアル・ブルー", + "alias_name_display": "メモリアル・ブルー", + "hash": "18b68bdafe0fbaff1a378cced824f0ff", + "id": "2422101", + "profile": { + "bust": "79", + "height": "156", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "メモリアル・ブルー", + "alias_name_display": "メモリアル・ブルー", + "hash": "33ac3decf73adafad8301c26188e74c8", + "id": "2522102", + "profile": { + "bust": "79", + "height": "156", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "アニマルテイマー", + "alias_name_display": "アニマルテイマー", + "hash": "f809934dbe9b4b0d3549c6716383ebfb", + "id": "2431401", + "profile": { + "bust": "79", + "height": "156", + "hip": "80", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "アニマルテイマー", + "alias_name_display": "アニマルテイマー", + "hash": "895adb42cedd503a357282110c7c92c9", + "id": "2531402", + "profile": { + "bust": "79", + "height": "156", + "hip": "80", + "waist": "56", + "weight": "42" + } + } + ], + "idol_id": 75, + "idol_name": "上条春菜", + "idol_name_display": "上条春菜", + "units": [ + { + "id": "16", + "name": "サイバーグラス" + }, + { + "id": "198", + "name": "ブルーナポレオン" + } + ] + }, + { + "aliases": [ + { + "hash": "15b30810c788f120586bc0916134b1da", + "id": "2001001", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "hash": "1ac3475189f6684094860fa41607cc72", + "id": "2101002", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "サイバーグラス", + "alias_name_display": "サイバーグラス", + "event": [ + { + "event_id": "004", + "event_name": "第4回プロダクションマッチフェスティバル" + } + ], + "hash": "f3fe34f102bcfc79c85c7301729dc3fc", + "id": "2205601", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "サイバーグラス", + "alias_name_display": "サイバーグラス", + "event": [ + { + "event_id": "004", + "event_name": "第4回プロダクションマッチフェスティバル" + } + ], + "hash": "ef0b667927cb970cd8ff1afd0b9b4558", + "id": "2305602", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "クリスマスパーティー", + "alias_name_display": "クリスマスパーティー", + "hash": "7b962529e1266770861d74fdfa9b915d", + "id": "2207101", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "クリスマスパーティー", + "alias_name_display": "クリスマスパーティー", + "hash": "cb32cc18a6a4ddffb5eeea41bb83582e", + "id": "2307102", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "ナイトパーティー", + "alias_name_display": "ナイトパーティー", + "hash": "709707a9d2a67c4371536f7e525f9392", + "id": "2220101", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "ナイトパーティー", + "alias_name_display": "ナイトパーティー", + "hash": "1cddd797664730b9996c24be7647aeef", + "id": "2320102", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "ライトニングモーニング", + "alias_name_display": "ライトニングモーニング", + "hash": "3497634f983f9f98d7d73469c45007f2", + "id": "2225101", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "ライトニングモーニング", + "alias_name_display": "ライトニングモーニング", + "hash": "685e778faec4180be5af8d453a5bdbd8", + "id": "2325102", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "T.B.チアーズ", + "alias_name_display": "T.B.チアーズ", + "event": [ + { + "event_id": 1512, + "event_name": "第12回チーム対抗トークバトルショー" + } + ], + "hash": "cf11785b7891fb42a7d5b75fd7b33723", + "id": "2231701", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "T.B.チアーズ", + "alias_name_display": "T.B.チアーズ", + "event": [ + { + "event_id": 1512, + "event_name": "第12回チーム対抗トークバトルショー" + } + ], + "hash": "0c2ecb19bd0d360cd0e6b00e36b4348d", + "id": "2331702", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "ブルーフロートパーティー", + "alias_name_display": "ブルーフロートパーティー", + "event": [ + { + "event_id": 506, + "event_name": "アイドルLIVEツアーinハワイ" + } + ], + "hash": "cf22d3b6255843c39b54ae310cccc00b", + "id": "2408301", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "ブルーフロートパーティー", + "alias_name_display": "ブルーフロートパーティー", + "event": [ + { + "event_id": 506, + "event_name": "アイドルLIVEツアーinハワイ" + } + ], + "hash": "50b324eef14d2a6f827d1c51538c63cf", + "id": "2508302", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "花咲く舞姿", + "alias_name_display": "花咲く舞姿", + "event": [ + { + "event_id": 510, + "event_name": "ひな祭りLIVEツアーカーニバル" + } + ], + "hash": "aa5df8e05c805eab2ef48d45718fa710", + "id": "2412701", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "花咲く舞姿", + "alias_name_display": "花咲く舞姿", + "event": [ + { + "event_id": 510, + "event_name": "ひな祭りLIVEツアーカーニバル" + } + ], + "hash": "4678637baed65cc724da47c58b5fbeeb", + "id": "2512702", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "夏の思い出", + "alias_name_display": "夏の思い出", + "event": [ + { + "event_id": 413, + "event_name": "みんなのなつやすみ" + } + ], + "hash": "d39d369d246b0ed963bd28f0484c05ce", + "id": "2415901", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "夏の思い出", + "alias_name_display": "夏の思い出", + "event": [ + { + "event_id": 413, + "event_name": "みんなのなつやすみ" + } + ], + "hash": "0681a26986b44e551c2ac9d3f9681014", + "id": "2515902", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "一夏の思い出", + "alias_name_display": "一夏の思い出", + "event": [ + { + "event_id": 413, + "event_name": "みんなのなつやすみ" + } + ], + "hash": "3806edd95899d90efae5a33f742071fe", + "id": "2416001", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "一夏の思い出", + "alias_name_display": "一夏の思い出", + "event": [ + { + "event_id": 413, + "event_name": "みんなのなつやすみ" + } + ], + "hash": "42ca3dd4352298a6655156f141e4e1a9", + "id": "2516002", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "こころペイント", + "alias_name_display": "こころペイント", + "hash": "bad411da0072464e386083dad9d15429", + "id": "2426501", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "こころペイント", + "alias_name_display": "こころペイント", + "hash": "b29bf49901062956bfa1a97d530a1a8c", + "id": "2526502", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "青き日のメモリー", + "alias_name_display": "青き日のメモリー", + "hash": "bc8b2dbbf15ea462967d6052df22acdb", + "id": "2435101", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "青き日のメモリー", + "alias_name_display": "青き日のメモリー", + "hash": "df6fa045d58337acbd9725d8a940d1b4", + "id": "2535102", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "56", + "weight": "42" + } + } + ], + "idol_id": 76, + "idol_name": "荒木比奈", + "idol_name_display": "荒木比奈", + "units": [ + { + "id": "12", + "name": "壁サーの花" + }, + { + "id": "16", + "name": "サイバーグラス" + }, + { + "id": "115", + "name": "虹色ドリーマー" + }, + { + "id": "198", + "name": "ブルーナポレオン" + } + ] + }, + { + "aliases": [ + { + "hash": "74aa09925c2e9f3dfa27f9d6c9043737", + "id": "2001101", + "profile": { + "bust": "82", + "height": "167", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "hash": "a3e6c69d2edf043cfb9c28701375fc34", + "id": "2101102", + "profile": { + "bust": "82", + "height": "167", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "新春", + "alias_name_display": "新春", + "event": [ + { + "event_id": 102, + "event_name": "アイドルおもちつき大会" + } + ], + "hash": "cbe69bd743d9d067fd6b11cc0049a085", + "id": "2202001", + "profile": { + "bust": "82", + "height": "167", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "新春", + "alias_name_display": "新春", + "event": [ + { + "event_id": 102, + "event_name": "アイドルおもちつき大会" + } + ], + "hash": "4a72d18788cce0a7d131aab3752f2c99", + "id": "2302002", + "profile": { + "bust": "82", + "height": "167", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "メイドコレクション", + "alias_name_display": "メイドコレクション", + "hash": "39675e1d3dc31791f353b9e6841ae8d8", + "id": "2205701", + "profile": { + "bust": "82", + "height": "167", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "メイドコレクション", + "alias_name_display": "メイドコレクション", + "hash": "d94d965adfb72f7ef95ac3b77733401a", + "id": "2305702", + "profile": { + "bust": "82", + "height": "167", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "桜祭り", + "alias_name_display": "桜祭り", + "event": [ + { + "event_id": 406, + "event_name": "アイドルプロデュース 春の桜祭り編" + } + ], + "hash": "5ef83cd87feba045f3f187b1762ff6ca", + "id": "2208901", + "profile": { + "bust": "82", + "height": "167", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "桜祭り", + "alias_name_display": "桜祭り", + "event": [ + { + "event_id": 406, + "event_name": "アイドルプロデュース 春の桜祭り編" + } + ], + "hash": "3c1f88d55d79cac9df8e77f18357f902", + "id": "2308902", + "profile": { + "bust": "82", + "height": "167", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "桜祭りスマイル", + "alias_name_display": "桜祭りスマイル", + "event": [ + { + "event_id": 406, + "event_name": "アイドルプロデュース 春の桜祭り編" + } + ], + "hash": "4accecd9f5f759be292a3c85c2ce3918", + "id": "2209001", + "profile": { + "bust": "82", + "height": "167", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "桜祭りスマイル", + "alias_name_display": "桜祭りスマイル", + "event": [ + { + "event_id": 406, + "event_name": "アイドルプロデュース 春の桜祭り編" + } + ], + "hash": "055eb7721bc1270b22d4547cf462a82c", + "id": "2309002", + "profile": { + "bust": "82", + "height": "167", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "エレガントビューティー", + "alias_name_display": "エレガントビューティー", + "hash": "6b328ca71ed9610a04aa38670c9b3166", + "id": "2212801", + "profile": { + "bust": "82", + "height": "167", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "エレガントビューティー", + "alias_name_display": "エレガントビューティー", + "hash": "4d32085d7d14fafb8a406e873442e7b8", + "id": "2312802", + "profile": { + "bust": "82", + "height": "167", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "エレガントI.C", + "alias_name_display": "エレガントI.C", + "event": [ + { + "event_id": 1205, + "event_name": "目指せ優雅なお嬢様 アイドルチャレンジ" + } + ], + "hash": "b44cc7e3317df4588e160990fbfd4d86", + "id": "2320002", + "profile": { + "bust": "82", + "height": "167", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "サマーバケーション", + "alias_name_display": "サマーバケーション", + "hash": "31b37aeecf1445f7e363f3b8b7b6db23", + "id": "2222401", + "profile": { + "bust": "82", + "height": "167", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "サマーバケーション", + "alias_name_display": "サマーバケーション", + "hash": "696c01a795166f331a53c37994b5f7aa", + "id": "2322402", + "profile": { + "bust": "82", + "height": "167", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "美貌の麗女", + "alias_name_display": "美貌の麗女", + "event": [ + { + "event_id": 505, + "event_name": "アイドルLIVEツアーinバリ島" + } + ], + "hash": "e359a699281a6fb7935618fc6358470f", + "id": "2407701", + "profile": { + "bust": "82", + "height": "167", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "美貌の麗女", + "alias_name_display": "美貌の麗女", + "event": [ + { + "event_id": 505, + "event_name": "アイドルLIVEツアーinバリ島" + } + ], + "hash": "96c902ec8911587b338d09528fe19024", + "id": "2507702", + "profile": { + "bust": "82", + "height": "167", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ドライブトゥネクスト", + "alias_name_display": "ドライブトゥネクスト", + "hash": "289a6831a0ad831572b9a7d57a4eb6b2", + "id": "2418301", + "profile": { + "bust": "82", + "height": "167", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ドライブトゥネクスト", + "alias_name_display": "ドライブトゥネクスト", + "hash": "c3fa0697da17804c6fbd18ba99d2c722", + "id": "2518302", + "profile": { + "bust": "82", + "height": "167", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "貫禄のお嬢様", + "alias_name_display": "貫禄のお嬢様", + "event": [ + { + "event_id": 1205, + "event_name": "目指せ優雅なお嬢様 アイドルチャレンジ" + } + ], + "hash": "9a9e72c629933e4ced1d13022e74552f", + "id": "2422201", + "profile": { + "bust": "82", + "height": "167", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "貫禄のお嬢様", + "alias_name_display": "貫禄のお嬢様", + "event": [ + { + "event_id": 1205, + "event_name": "目指せ優雅なお嬢様 アイドルチャレンジ" + } + ], + "hash": "6820ec6d2e126592f9bade2f433bbcc7", + "id": "2522202", + "profile": { + "bust": "82", + "height": "167", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "貫禄のお嬢様・S", + "alias_name_display": "貫禄のお嬢様・S", + "event": [ + { + "event_id": 1205, + "event_name": "目指せ優雅なお嬢様 アイドルチャレンジ" + } + ], + "hash": "3ce11c195914bac2bf7d885ecda38e09", + "id": "2422301", + "profile": { + "bust": "82", + "height": "167", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "貫禄のお嬢様・S", + "alias_name_display": "貫禄のお嬢様・S", + "event": [ + { + "event_id": 1205, + "event_name": "目指せ優雅なお嬢様 アイドルチャレンジ" + } + ], + "hash": "928aa1d8c522c0ce8da26b91bf967cf6", + "id": "2522302", + "profile": { + "bust": "82", + "height": "167", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "夏の戯れ", + "alias_name_display": "夏の戯れ", + "event": [ + { + "event_id": 722, + "event_name": "夏祭りDEドリームLIVEフェスティバル" + } + ], + "hash": "cd2da0337b1ecce664227382948450db", + "id": "2433501", + "profile": { + "bust": "82", + "height": "167", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "夏の戯れ", + "alias_name_display": "夏の戯れ", + "event": [ + { + "event_id": 722, + "event_name": "夏祭りDEドリームLIVEフェスティバル" + } + ], + "hash": "b7e85b995983a4804983f200ce49b269", + "id": "2533502", + "profile": { + "bust": "82", + "height": "167", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "白銀のシュプール", + "alias_name_display": "白銀のシュプール", + "event": [ + { + "event_id": 1410, + "event_name": "第10回ぷちデレラコレクション" + } + ], + "hash": "35a37964b7d42169b3c4cf2f4beffaec", + "id": "2436901", + "profile": { + "bust": "82", + "height": "167", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "白銀のシュプール", + "alias_name_display": "白銀のシュプール", + "event": [ + { + "event_id": 1410, + "event_name": "第10回ぷちデレラコレクション" + } + ], + "hash": "18587c946f96cd9c273730176ecbcec8", + "id": "2536902", + "profile": { + "bust": "82", + "height": "167", + "hip": "83", + "waist": "57", + "weight": "45" + } + } + ], + "idol_id": 77, + "idol_name": "東郷あい", + "idol_name_display": "東郷あい", + "units": [ + { + "id": "10", + "name": "エレガントインモラリスト" + }, + { + "id": "88", + "name": "桜花小町" + }, + { + "id": "140", + "name": "アイドルミズキ with AS" + }, + { + "id": "171", + "name": "Black/White-Roses" + }, + { + "id": "183", + "name": "メイドコレクション" + }, + { + "id": "199", + "name": "レッドバラード" + } + ] + }, + { + "aliases": [ + { + "hash": "914e2e1efbc1f05e987772cc5c925722", + "id": "2001201", + "profile": { + "bust": "80", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "41" + } + }, + { + "hash": "17c1dfda6510677f5a448d951c086d33", + "id": "2101202", + "profile": { + "bust": "80", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "バレンタイン", + "alias_name_display": "バレンタイン", + "event": [ + { + "event_id": 103, + "event_name": "バレンタインパーティー" + } + ], + "hash": "dc90bc1dc7bad8aab44fa134a03bd9c8", + "id": "2202901", + "profile": { + "bust": "80", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "バレンタイン", + "alias_name_display": "バレンタイン", + "event": [ + { + "event_id": 103, + "event_name": "バレンタインパーティー" + } + ], + "hash": "80ebaaa423e960469332d32354761c8e", + "id": "2302902", + "profile": { + "bust": "80", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "制服コレクション", + "alias_name_display": "制服コレクション", + "hash": "aff484871dd61658b8a67676988a0879", + "id": "2203501", + "profile": { + "bust": "80", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "制服コレクション", + "alias_name_display": "制服コレクション", + "hash": "be5b1389c424bdcee5c5267f8f182ef3", + "id": "2303502", + "profile": { + "bust": "80", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ロッキングセッション", + "alias_name_display": "ロッキングセッション", + "event": [ + { + "event_id": 601, + "event_name": "アイドルセッション" + } + ], + "hash": "5c05456fa1975ed8ca50f82258df277d", + "id": "2209301", + "profile": { + "bust": "80", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ロッキングセッション", + "alias_name_display": "ロッキングセッション", + "event": [ + { + "event_id": 601, + "event_name": "アイドルセッション" + } + ], + "hash": "1e607f6df2113c582c0037bf2781bd77", + "id": "2309302", + "profile": { + "bust": "80", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ワーキング・レスキュー", + "alias_name_display": "ワーキング・レスキュー", + "hash": "954eb62b4f0c88fb462862c417243571", + "id": "2225301", + "profile": { + "bust": "80", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ワーキング・レスキュー", + "alias_name_display": "ワーキング・レスキュー", + "hash": "09a091936b403ea2cc9bd3922d47b873", + "id": "2325302", + "profile": { + "bust": "80", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ロッキングフィーバー", + "alias_name_display": "ロッキングフィーバー", + "event": [ + { + "event_id": 1706, + "event_name": "アイドルプロデュース 北の大地と夜さりの祭" + } + ], + "hash": "6b9c3e0ec3b75301341b0071e0c25c47", + "id": "2326802", + "profile": { + "bust": "80", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ロッキングフィーバー・S", + "alias_name_display": "ロッキングフィーバー・S", + "event": [ + { + "event_id": 1706, + "event_name": "アイドルプロデュース 北の大地と夜さりの祭" + } + ], + "hash": "28c80c030dbf6ee57cfd4d69403c0c82", + "id": "2326902", + "profile": { + "bust": "80", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "クリエイティブI.C", + "alias_name_display": "クリエイティブI.C", + "hash": "6082b9c30ed35ed98c89d9f8185ec4ec", + "id": "2331402", + "profile": { + "bust": "80", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ロッキングガール", + "alias_name_display": "ロッキングガール", + "event": [ + { + "event_id": 205, + "event_name": "アイドルサバイバルinサマーライブ" + } + ], + "hash": "20d694b33aff2463098ec53b681c89f8", + "id": "2402501", + "profile": { + "bust": "80", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ロッキングガール", + "alias_name_display": "ロッキングガール", + "event": [ + { + "event_id": 205, + "event_name": "アイドルサバイバルinサマーライブ" + } + ], + "hash": "b2fac50d2d01e350c0555f61bc83a816", + "id": "2502502", + "profile": { + "bust": "80", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "新春ロッカー", + "alias_name_display": "新春ロッカー", + "hash": "48fbeeba8cbf12dba8d2a2b9e46740ff", + "id": "2404801", + "profile": { + "bust": "80", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "新春ロッカー", + "alias_name_display": "新春ロッカー", + "hash": "52279101de31c161d3e328d236b97111", + "id": "2504802", + "profile": { + "bust": "80", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "6c4bcbefec8f70fc06a7825764240138", + "id": "2405001", + "profile": { + "bust": "80", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "b664b9644edb5bb8c0ffb347035c5da3", + "id": "2505002", + "profile": { + "bust": "80", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "エイトビートロッカー", + "alias_name_display": "エイトビートロッカー", + "event": [ + { + "event_id": 601, + "event_name": "アイドルセッション" + } + ], + "hash": "215f8cec62b2aec84c7de6b82196e490", + "id": "2406201", + "profile": { + "bust": "80", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "エイトビートロッカー", + "alias_name_display": "エイトビートロッカー", + "event": [ + { + "event_id": 601, + "event_name": "アイドルセッション" + } + ], + "hash": "cfffdf39e7d42112b6a1c67c066464e9", + "id": "2506202", + "profile": { + "bust": "80", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "シンデレラドリーム", + "alias_name_display": "シンデレラドリーム", + "hash": "b82cc04f383762ad8b17178c4541b612", + "id": "2409101", + "profile": { + "bust": "80", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "シンデレラドリーム", + "alias_name_display": "シンデレラドリーム", + "hash": "fb8d932128418fe65603b3a401df31ec", + "id": "2509102", + "profile": { + "bust": "80", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "フォー・ピース", + "alias_name_display": "フォー・ピース", + "event": [ + { + "event_id": 1202, + "event_name": "目指せロックスター アイドルチャレンジ" + } + ], + "hash": "dd6344a8baf0947d7d8cce141122c052", + "id": "2416201", + "profile": { + "bust": "80", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "フォー・ピース", + "alias_name_display": "フォー・ピース", + "event": [ + { + "event_id": 1202, + "event_name": "目指せロックスター アイドルチャレンジ" + } + ], + "hash": "886f0d64d079d506d97861ff69384628", + "id": "2516202", + "profile": { + "bust": "80", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "パーティーロックアンセム", + "alias_name_display": "パーティーロックアンセム", + "hash": "bf5998ac8491ce18e8d88fcd61237dc1", + "id": "2419601", + "profile": { + "bust": "80", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "パーティーロックアンセム", + "alias_name_display": "パーティーロックアンセム", + "hash": "c7d9ebf06688e4ea6d383039efe538c1", + "id": "2519602", + "profile": { + "bust": "80", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ブルーサンシャインサマー", + "alias_name_display": "ブルーサンシャインサマー", + "hash": "02395469aae2e69c4de945a9b169f4a6", + "id": "2425701", + "profile": { + "bust": "80", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ブルーサンシャインサマー", + "alias_name_display": "ブルーサンシャインサマー", + "hash": "39aed32c6cbcf6adfe89bf505112b35a", + "id": "2525702", + "profile": { + "bust": "80", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "アスタリスク", + "alias_name_display": "アスタリスク", + "hash": "273b1c41db9fcbaefa272d53a6d85400", + "id": "2526302", + "profile": { + "bust": "80", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "オールナイトフィーバー", + "alias_name_display": "オールナイトフィーバー", + "event": [ + { + "event_id": 1706, + "event_name": "アイドルプロデュース 北の大地と夜さりの祭" + } + ], + "hash": "1a0c01326720c0d7ef57912bb86d8578", + "id": "2433001", + "profile": { + "bust": "80", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "オールナイトフィーバー", + "alias_name_display": "オールナイトフィーバー", + "event": [ + { + "event_id": 1706, + "event_name": "アイドルプロデュース 北の大地と夜さりの祭" + } + ], + "hash": "76d21a0867948b21a7f1bf26aee05b5b", + "id": "2533002", + "profile": { + "bust": "80", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "バイオレットディシジョン", + "alias_name_display": "バイオレットディシジョン", + "event": [ + { + "event_id": 1215, + "event_name": "ふたりでアイドルチャレンジ 目指せクールなミュージックビデオ" + } + ], + "hash": "ce6cc64940b1610edfdd5e8486bd0de2", + "id": "2438801", + "profile": { + "bust": "80", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "バイオレットディシジョン", + "alias_name_display": "バイオレットディシジョン", + "event": [ + { + "event_id": 1215, + "event_name": "ふたりでアイドルチャレンジ 目指せクールなミュージックビデオ" + } + ], + "hash": "4a688e97246cf40a0e8850db9199e694", + "id": "2538802", + "profile": { + "bust": "80", + "height": "152", + "hip": "81", + "waist": "55", + "weight": "41" + } + } + ], + "idol_id": 78, + "idol_name": "多田李衣菜", + "idol_name_display": "多田李衣菜", + "units": [ + { + "id": "70", + "name": "*(Asterisk)" + }, + { + "id": "81", + "name": "Rock the Beat" + }, + { + "id": "107", + "name": "ロッキングガール" + }, + { + "id": "168", + "name": "*(Asterisk) with なつなな" + }, + { + "id": "169", + "name": "FOUR PIECE" + }, + { + "id": "192", + "name": "Masque:Rade" + }, + { + "id": "197", + "name": "アズール・ムジカ" + }, + { + "id": "213", + "name": "CINDERELLA PROJECT" + } + ] + }, + { + "aliases": [ + { + "hash": "abc8481a5c280fa3b9f0e214880ee10d", + "id": "2001301", + "profile": { + "bust": "82", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "hash": "1109985f3ac6a0ab92adf1c3136a69af", + "id": "2101302", + "profile": { + "bust": "82", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "お花見", + "alias_name_display": "お花見", + "event": [ + { + "event_id": 104, + "event_name": "桜舞う花見祭り" + } + ], + "hash": "9b24f0f25fd3f4e45306de3a07a50abc", + "id": "2203301", + "profile": { + "bust": "82", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "お花見", + "alias_name_display": "お花見", + "event": [ + { + "event_id": 104, + "event_name": "桜舞う花見祭り" + } + ], + "hash": "998aefcaf91a4c9b6d1cfb5dff235102", + "id": "2303302", + "profile": { + "bust": "82", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "マーメイドパラダイス", + "alias_name_display": "マーメイドパラダイス", + "hash": "431266547e2d69e6b788192f9c9dec3f", + "id": "2205101", + "profile": { + "bust": "82", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "マーメイドパラダイス", + "alias_name_display": "マーメイドパラダイス", + "hash": "b6eaf7aa76eea29848924dc21390f04b", + "id": "2305102", + "profile": { + "bust": "82", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "アップトゥデイト", + "alias_name_display": "アップトゥデイト", + "hash": "ace39a60c5f5dea3c2c5a29eece7a98e", + "id": "2218001", + "profile": { + "bust": "82", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "アップトゥデイト", + "alias_name_display": "アップトゥデイト", + "hash": "726fa7ad55bf434211137953c02e577d", + "id": "2318002", + "profile": { + "bust": "82", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ダンシングガール", + "alias_name_display": "ダンシングガール", + "event": [ + { + "event_id": 1706, + "event_name": "アイドルプロデュース 北の大地と夜さりの祭" + } + ], + "hash": "c2f252167530abf530d24e86c76f3d8e", + "id": "2227001", + "profile": { + "bust": "82", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ダンシングガール", + "alias_name_display": "ダンシングガール", + "event": [ + { + "event_id": 1706, + "event_name": "アイドルプロデュース 北の大地と夜さりの祭" + } + ], + "hash": "e6541e39874ed3fbf45ca0352f7bb63b", + "id": "2327002", + "profile": { + "bust": "82", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ダンシングガール・S", + "alias_name_display": "ダンシングガール・S", + "event": [ + { + "event_id": 1706, + "event_name": "アイドルプロデュース 北の大地と夜さりの祭" + } + ], + "hash": "4d2e522dfd47d84d940d49783c020d74", + "id": "2227101", + "profile": { + "bust": "82", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ダンシングガール・S", + "alias_name_display": "ダンシングガール・S", + "event": [ + { + "event_id": 1706, + "event_name": "アイドルプロデュース 北の大地と夜さりの祭" + } + ], + "hash": "9ed53b79186a805737dd6cb970269ce9", + "id": "2327102", + "profile": { + "bust": "82", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ハートビートUSA", + "alias_name_display": "ハートビートUSA", + "event": [ + { + "event_id": 501, + "event_name": "アイドルLIVEツアーinUSA" + } + ], + "hash": "51c8925b6e5c956b98b83eb20d46040d", + "id": "2403901", + "profile": { + "bust": "82", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ハートビートUSA", + "alias_name_display": "ハートビートUSA", + "event": [ + { + "event_id": 501, + "event_name": "アイドルLIVEツアーinUSA" + } + ], + "hash": "039e4d40a61739c0ea9eee219358547d", + "id": "2503902", + "profile": { + "bust": "82", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "サンライトマリナー", + "alias_name_display": "サンライトマリナー", + "hash": "a91333acf3e8f62c5c089cb9f80cae53", + "id": "2408101", + "profile": { + "bust": "82", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "サンライトマリナー", + "alias_name_display": "サンライトマリナー", + "hash": "92cdfe2c392257dfb9812d16954b02cc", + "id": "2508102", + "profile": { + "bust": "82", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "魅惑のバニー", + "alias_name_display": "魅惑のバニー", + "hash": "32b0b845e8021a8d37704bbd14eb038c", + "id": "2412201", + "profile": { + "bust": "82", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "魅惑のバニー", + "alias_name_display": "魅惑のバニー", + "hash": "457e56799338c978c0da981e40f8ad01", + "id": "2512202", + "profile": { + "bust": "82", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ワンデイマイウェイ", + "alias_name_display": "ワンデイマイウェイ", + "event": [ + { + "event_id": 1501, + "event_name": "チーム対抗トークバトルショー" + } + ], + "hash": "1e18fbe74cb8c0111918b5000b2ae9c7", + "id": "2423401", + "profile": { + "bust": "82", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ワンデイマイウェイ", + "alias_name_display": "ワンデイマイウェイ", + "event": [ + { + "event_id": 1501, + "event_name": "チーム対抗トークバトルショー" + } + ], + "hash": "65566f326cb457b6b0269ce58299d80f", + "id": "2523402", + "profile": { + "bust": "82", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "情熱のゆくえ", + "alias_name_display": "情熱のゆくえ", + "event": [ + { + "event_id": "024", + "event_name": "第24回プロダクションマッチフェスティバル" + } + ], + "hash": "388059213e4526e3198f513dea759229", + "id": "2427601", + "profile": { + "bust": "82", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "情熱のゆくえ", + "alias_name_display": "情熱のゆくえ", + "event": [ + { + "event_id": "024", + "event_name": "第24回プロダクションマッチフェスティバル" + } + ], + "hash": "a6b738ae3dad7422c7b4d0c1681777a8", + "id": "2527602", + "profile": { + "bust": "82", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ライズバイビギン", + "alias_name_display": "ライズバイビギン", + "hash": "c14d72f459f7e1236907cfca8ab14e34", + "id": "2438101", + "profile": { + "bust": "82", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ライズバイビギン", + "alias_name_display": "ライズバイビギン", + "hash": "ba06248f504e77b5b221773f218ea8a2", + "id": "2538102", + "profile": { + "bust": "82", + "height": "155", + "hip": "80", + "waist": "55", + "weight": "43" + } + } + ], + "idol_id": 79, + "idol_name": "水木聖來", + "idol_name_display": "水木聖來", + "units": [ + { + "id": "29", + "name": "セーラーマリナー" + }, + { + "id": "110", + "name": "アップトゥデイト" + }, + { + "id": "111", + "name": "アンチェイン・シグナル" + }, + { + "id": "182", + "name": "マーメイドパラダイス" + } + ] + }, + { + "aliases": [ + { + "hash": "f0c2444b0d413beed830240f57990e26", + "id": "2001401", + "profile": { + "bust": "73", + "height": "139", + "hip": "73", + "waist": "49", + "weight": "33" + } + }, + { + "hash": "05cd6e3d8c261274848e8f1863fb0cff", + "id": "2101402", + "profile": { + "bust": "73", + "height": "139", + "hip": "73", + "waist": "49", + "weight": "33" + } + }, + { + "alias_name": "バレンタイン", + "alias_name_display": "バレンタイン", + "event": [ + { + "event_id": 103, + "event_name": "バレンタインパーティー" + } + ], + "hash": "0f019f7dd04a1b63a1e3825c28a11123", + "id": "2001801", + "profile": { + "bust": "73", + "height": "139", + "hip": "73", + "waist": "49", + "weight": "33" + } + }, + { + "alias_name": "バレンタイン", + "alias_name_display": "バレンタイン", + "event": [ + { + "event_id": 103, + "event_name": "バレンタインパーティー" + } + ], + "hash": "8abda9b19f8a14835bbc821b2507e8ee", + "id": "2101802", + "profile": { + "bust": "73", + "height": "139", + "hip": "73", + "waist": "49", + "weight": "33" + } + }, + { + "alias_name": "デビリッシュゴシック", + "alias_name_display": "デビリッシュゴシック", + "hash": "044f113cdcc7732faf97b6fb1df1d96a", + "id": "2209701", + "profile": { + "bust": "73", + "height": "139", + "hip": "73", + "waist": "49", + "weight": "33" + } + }, + { + "alias_name": "デビリッシュゴシック", + "alias_name_display": "デビリッシュゴシック", + "hash": "a33955d9b6f7d22ebba0cf1073c079a7", + "id": "2309702", + "profile": { + "bust": "73", + "height": "139", + "hip": "73", + "waist": "49", + "weight": "33" + } + }, + { + "alias_name": "スタディ&ステディ", + "alias_name_display": "スタディ&ステディ", + "event": [ + { + "event_id": 706, + "event_name": "第6回ドリームLIVEフェスティバル" + } + ], + "hash": "936c37c079b0126b271f83c7fedef864", + "id": "2215001", + "profile": { + "bust": "73", + "height": "139", + "hip": "73", + "waist": "49", + "weight": "33" + } + }, + { + "alias_name": "スタディ&ステディ", + "alias_name_display": "スタディ&ステディ", + "event": [ + { + "event_id": 706, + "event_name": "第6回ドリームLIVEフェスティバル" + } + ], + "hash": "1abbc5eac07f45dc193afebe5cad86ff", + "id": "2315002", + "profile": { + "bust": "73", + "height": "139", + "hip": "73", + "waist": "49", + "weight": "33" + } + }, + { + "alias_name": "ウェディングI.C", + "alias_name_display": "ウェディングI.C", + "event": [ + { + "event_id": 1206, + "event_name": "目指せウェディングモデル アイドルチャレンジ" + } + ], + "hash": "2554c92dc0e9efd5156764e9481a6cdc", + "id": "2321502", + "profile": { + "bust": "73", + "height": "139", + "hip": "73", + "waist": "49", + "weight": "33" + } + }, + { + "alias_name": "クリスマスナイト", + "alias_name_display": "クリスマスナイト", + "hash": "3d0d69d62b66f7126564592ca5b4c7ad", + "id": "2224201", + "profile": { + "bust": "73", + "height": "139", + "hip": "73", + "waist": "49", + "weight": "33" + } + }, + { + "alias_name": "クリスマスナイト", + "alias_name_display": "クリスマスナイト", + "hash": "fa6a7fdd63649f509943e8ffc48ece69", + "id": "2324202", + "profile": { + "bust": "73", + "height": "139", + "hip": "73", + "waist": "49", + "weight": "33" + } + }, + { + "alias_name": "ガーリードール", + "alias_name_display": "ガーリードール", + "hash": "daac0bd09193284b6e3c1384ad8d6811", + "id": "2227901", + "profile": { + "bust": "73", + "height": "139", + "hip": "73", + "waist": "49", + "weight": "33" + } + }, + { + "alias_name": "ガーリードール", + "alias_name_display": "ガーリードール", + "hash": "32ccc1fd6da96b70e447ea3f2a2186a2", + "id": "2327902", + "profile": { + "bust": "73", + "height": "139", + "hip": "73", + "waist": "49", + "weight": "33" + } + }, + { + "alias_name": "魔法のスマイル", + "alias_name_display": "魔法のスマイル", + "event": [ + { + "event_id": 203, + "event_name": "アイドルサバイバルinテーマパーク" + } + ], + "hash": "7213ea3b2b521bcde53e7146de663446", + "id": "2401701", + "profile": { + "bust": "73", + "height": "139", + "hip": "73", + "waist": "49", + "weight": "33" + } + }, + { + "alias_name": "魔法のスマイル", + "alias_name_display": "魔法のスマイル", + "event": [ + { + "event_id": 203, + "event_name": "アイドルサバイバルinテーマパーク" + } + ], + "hash": "ab92fbb87150467830f12b1c376302d2", + "id": "2501702", + "profile": { + "bust": "73", + "height": "139", + "hip": "73", + "waist": "49", + "weight": "33" + } + }, + { + "alias_name": "色づき紅葉", + "alias_name_display": "色づき紅葉", + "event": [ + { + "event_id": 402, + "event_name": "アイドルプロデュース京町編" + } + ], + "hash": "6f0b70d6ce4852c6e487ad3a32202838", + "id": "2403501", + "profile": { + "bust": "73", + "height": "139", + "hip": "73", + "waist": "49", + "weight": "33" + } + }, + { + "alias_name": "色づき紅葉", + "alias_name_display": "色づき紅葉", + "event": [ + { + "event_id": 402, + "event_name": "アイドルプロデュース京町編" + } + ], + "hash": "7bdb027ba84b1035532d31a6c81decda", + "id": "2503502", + "profile": { + "bust": "73", + "height": "139", + "hip": "73", + "waist": "49", + "weight": "33" + } + }, + { + "alias_name": "マーチング☆メジャー", + "alias_name_display": "マーチング☆メジャー", + "hash": "d2d3857a48dae78a1e24c8c9bda2c751", + "id": "2408901", + "profile": { + "bust": "73", + "height": "139", + "hip": "73", + "waist": "49", + "weight": "33" + } + }, + { + "alias_name": "マーチング☆メジャー", + "alias_name_display": "マーチング☆メジャー", + "hash": "fe0c2ac409bb9eb4b6a8ab5050a6bf0c", + "id": "2508902", + "profile": { + "bust": "73", + "height": "139", + "hip": "73", + "waist": "49", + "weight": "33" + } + }, + { + "alias_name": "色づき紅葉・スマイル", + "alias_name_display": "色づき紅葉・スマイル", + "event": [ + { + "event_id": 402, + "event_name": "アイドルプロデュース京町編" + } + ], + "hash": "7d617c6da4e598221715f638460b14b4", + "id": "2411001", + "profile": { + "bust": "73", + "height": "139", + "hip": "73", + "waist": "49", + "weight": "33" + } + }, + { + "alias_name": "色づき紅葉・スマイル", + "alias_name_display": "色づき紅葉・スマイル", + "event": [ + { + "event_id": 402, + "event_name": "アイドルプロデュース京町編" + } + ], + "hash": "3a2ecda51aca30ae1085bfc8d8ea49a6", + "id": "2511002", + "profile": { + "bust": "73", + "height": "139", + "hip": "73", + "waist": "49", + "weight": "33" + } + }, + { + "alias_name": "チャーミングチアー", + "alias_name_display": "チャーミングチアー", + "event": [ + { + "event_id": 1103, + "event_name": "第3回プロダクション対抗トークバトルショー" + } + ], + "hash": "e8572a72a031ff58788b7cc12fc981a0", + "id": "2415401", + "profile": { + "bust": "73", + "height": "139", + "hip": "73", + "waist": "49", + "weight": "33" + } + }, + { + "alias_name": "チャーミングチアー", + "alias_name_display": "チャーミングチアー", + "event": [ + { + "event_id": 1103, + "event_name": "第3回プロダクション対抗トークバトルショー" + } + ], + "hash": "7d8637027259261ee45c9abc302fa7d6", + "id": "2515402", + "profile": { + "bust": "73", + "height": "139", + "hip": "73", + "waist": "49", + "weight": "33" + } + }, + { + "alias_name": "ちいさな冬のメモリー", + "alias_name_display": "ちいさな冬のメモリー", + "event": [ + { + "event_id": 1303, + "event_name": "第3回プロダクションマッチフェスティバルS" + } + ], + "hash": "7ad729a67d4c59988bfc3776e5150a67", + "id": "2420801", + "profile": { + "bust": "73", + "height": "139", + "hip": "73", + "waist": "49", + "weight": "33" + } + }, + { + "alias_name": "ちいさな冬のメモリー", + "alias_name_display": "ちいさな冬のメモリー", + "event": [ + { + "event_id": 1303, + "event_name": "第3回プロダクションマッチフェスティバルS" + } + ], + "hash": "abb0c6f85275d68dea5608ae344d62ff", + "id": "2520802", + "profile": { + "bust": "73", + "height": "139", + "hip": "73", + "waist": "49", + "weight": "33" + } + }, + { + "alias_name": "おしゃまな花嫁", + "alias_name_display": "おしゃまな花嫁", + "event": [ + { + "event_id": 1206, + "event_name": "目指せウェディングモデル アイドルチャレンジ" + } + ], + "hash": "6072c44e2844c6a34c24e9207ee2c08a", + "id": "2424601", + "profile": { + "bust": "73", + "height": "139", + "hip": "73", + "waist": "49", + "weight": "33" + } + }, + { + "alias_name": "おしゃまな花嫁", + "alias_name_display": "おしゃまな花嫁", + "event": [ + { + "event_id": 1206, + "event_name": "目指せウェディングモデル アイドルチャレンジ" + } + ], + "hash": "7cdbf6e7efde979e4c28518175026446", + "id": "2524602", + "profile": { + "bust": "73", + "height": "139", + "hip": "73", + "waist": "49", + "weight": "33" + } + }, + { + "alias_name": "おしゃまな花嫁・S", + "alias_name_display": "おしゃまな花嫁・S", + "event": [ + { + "event_id": 1206, + "event_name": "目指せウェディングモデル アイドルチャレンジ" + } + ], + "hash": "3998b113aa219043952e20f63b5264f8", + "id": "2424701", + "profile": { + "bust": "73", + "height": "139", + "hip": "73", + "waist": "49", + "weight": "33" + } + }, + { + "alias_name": "おしゃまな花嫁・S", + "alias_name_display": "おしゃまな花嫁・S", + "event": [ + { + "event_id": 1206, + "event_name": "目指せウェディングモデル アイドルチャレンジ" + } + ], + "hash": "8606f7184a98a984dee5cc60cda14bb6", + "id": "2524702", + "profile": { + "bust": "73", + "height": "139", + "hip": "73", + "waist": "49", + "weight": "33" + } + }, + { + "alias_name": "憧れモード", + "alias_name_display": "憧れモード", + "event": [ + { + "event_id": 1411, + "event_name": "第11回ぷちデレラコレクション" + } + ], + "hash": "23b1021bbf8e0387b79db8e5a09417d1", + "id": "2438201", + "profile": { + "bust": "73", + "height": "139", + "hip": "73", + "waist": "49", + "weight": "33" + } + }, + { + "alias_name": "憧れモード", + "alias_name_display": "憧れモード", + "event": [ + { + "event_id": 1411, + "event_name": "第11回ぷちデレラコレクション" + } + ], + "hash": "54022827f6129503d2444697e275e075", + "id": "2538202", + "profile": { + "bust": "73", + "height": "139", + "hip": "73", + "waist": "49", + "weight": "33" + } + } + ], + "idol_id": 80, + "idol_name": "佐々木千枝", + "idol_name_display": "佐々木千枝", + "units": [ + { + "id": "157", + "name": "デビリッシュゴシック" + }, + { + "id": "198", + "name": "ブルーナポレオン" + }, + { + "id": "214", + "name": "L.M.B.G" + } + ] + }, + { + "aliases": [ + { + "event": [ + { + "event_id": 101, + "event_name": "星降るクリスマス" + } + ], + "hash": "c89d54609371818e71836d519b3d404f", + "id": "2001501", + "profile": { + "bust": "85", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "46" + } + }, + { + "event": [ + { + "event_id": 101, + "event_name": "星降るクリスマス" + } + ], + "hash": "f88124b3773ba0ab60c214b9680cfad3", + "id": "2101502", + "profile": { + "bust": "85", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "アニマルパーク", + "alias_name_display": "アニマルパーク", + "event": [ + { + "event_id": 204, + "event_name": "アイドルサバイバルin動物園" + } + ], + "hash": "1a248c4fd99fa2c0f6e7cfd3d38cdec3", + "id": "2204501", + "profile": { + "bust": "85", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "アニマルパーク", + "alias_name_display": "アニマルパーク", + "event": [ + { + "event_id": 204, + "event_name": "アイドルサバイバルin動物園" + } + ], + "hash": "0dc198bc42f2bf127be11bba49ec153d", + "id": "2304502", + "profile": { + "bust": "85", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "クリスマスパーティー", + "alias_name_display": "クリスマスパーティー", + "hash": "708ec9cc3763b594d6601c8d51c5e8c8", + "id": "2207201", + "profile": { + "bust": "85", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "クリスマスパーティー", + "alias_name_display": "クリスマスパーティー", + "hash": "8489c6bf198cd1add92e31214cf1ed3b", + "id": "2307202", + "profile": { + "bust": "85", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "癒しの女神", + "alias_name_display": "癒しの女神", + "event": [ + { + "event_id": 401, + "event_name": "新人アイドルプロデュース" + } + ], + "hash": "e36e7e2c8af815133d20fb841089649f", + "id": "2402901", + "profile": { + "bust": "85", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "癒しの女神", + "alias_name_display": "癒しの女神", + "event": [ + { + "event_id": 401, + "event_name": "新人アイドルプロデュース" + } + ], + "hash": "abbf9be5325779c8ee449c299d4289fb", + "id": "2502902", + "profile": { + "bust": "85", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "ティアドロップ", + "alias_name_display": "ティアドロップ", + "event": [ + { + "event_id": 407, + "event_name": "アイドルプロデュース 鎌倉あじさい巡り" + } + ], + "hash": "ee322ea98eab35f352e5b9c0d060a48e", + "id": "2406901", + "profile": { + "bust": "85", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "ティアドロップ", + "alias_name_display": "ティアドロップ", + "event": [ + { + "event_id": 407, + "event_name": "アイドルプロデュース 鎌倉あじさい巡り" + } + ], + "hash": "97fa2fe3c33deab094d5c2374b9815f0", + "id": "2506902", + "profile": { + "bust": "85", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "ティアドロップスマイル", + "alias_name_display": "ティアドロップスマイル", + "event": [ + { + "event_id": 407, + "event_name": "アイドルプロデュース 鎌倉あじさい巡り" + } + ], + "hash": "a2481e91c759538a71497ff12e668e6e", + "id": "2407001", + "profile": { + "bust": "85", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "ティアドロップスマイル", + "alias_name_display": "ティアドロップスマイル", + "event": [ + { + "event_id": 407, + "event_name": "アイドルプロデュース 鎌倉あじさい巡り" + } + ], + "hash": "d6112289cb47bc2ba05d118737624c87", + "id": "2507002", + "profile": { + "bust": "85", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "エレガントアクトレス", + "alias_name_display": "エレガントアクトレス", + "hash": "cace0e19284699a04378eb8009fa183f", + "id": "2411601", + "profile": { + "bust": "85", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "エレガントアクトレス", + "alias_name_display": "エレガントアクトレス", + "hash": "3f56480abbcb48a95271b953d7622d78", + "id": "2511602", + "profile": { + "bust": "85", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "優美なる花嫁", + "alias_name_display": "優美なる花嫁", + "hash": "cdbb784799d1dba671dfc86bb7c1f793", + "id": "2414901", + "profile": { + "bust": "85", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "優美なる花嫁", + "alias_name_display": "優美なる花嫁", + "hash": "8b2980adb5b283dc25de271784f69137", + "id": "2514902", + "profile": { + "bust": "85", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "ふぁいと一発", + "alias_name_display": "ふぁいと一発", + "event": [ + { + "event_id": 709, + "event_name": "第9回ドリームLIVEフェスティバル" + } + ], + "hash": "4e782e8a138d53a9cc8a6c1e0b4013b5", + "id": "2418701", + "profile": { + "bust": "85", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "ふぁいと一発", + "alias_name_display": "ふぁいと一発", + "event": [ + { + "event_id": 709, + "event_name": "第9回ドリームLIVEフェスティバル" + } + ], + "hash": "fac6d145b1b32c83eb6491ae2d58799e", + "id": "2518702", + "profile": { + "bust": "85", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "繚乱の花人", + "alias_name_display": "繚乱の花人", + "hash": "e427adb35c668971f9dbd359bac19590", + "id": "2423001", + "profile": { + "bust": "85", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "繚乱の花人", + "alias_name_display": "繚乱の花人", + "hash": "5f45af1cc6ce463f760111044680cadc", + "id": "2523002", + "profile": { + "bust": "85", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "ウィンターバカンスヴィーナス", + "alias_name_display": "ウィンターバカンスヴィーナス", + "hash": "db306ac30fb4deb6148f4536444be5b2", + "id": "2429401", + "profile": { + "bust": "85", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "ウィンターバカンスヴィーナス", + "alias_name_display": "ウィンターバカンスヴィーナス", + "hash": "3e94f06dddc6aebc16f6b61d1287bb86", + "id": "2529402", + "profile": { + "bust": "85", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "天藍のカンツォーネ", + "alias_name_display": "天藍のカンツォーネ", + "hash": "80ad5921f5bf1f0e25317eb149aec5b8", + "id": "2434501", + "profile": { + "bust": "85", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "天藍のカンツォーネ", + "alias_name_display": "天藍のカンツォーネ", + "hash": "b6ddd6316b0036bf1bf5d36c8c76a103", + "id": "2534502", + "profile": { + "bust": "85", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "語らいの明眸", + "alias_name_display": "語らいの明眸", + "event": [ + { + "event_id": 1512, + "event_name": "第12回チーム対抗トークバトルショー" + } + ], + "hash": "29fd6073c0fd3f5e6e6ed5c7f034d9d3", + "id": "2439601", + "profile": { + "bust": "85", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "語らいの明眸", + "alias_name_display": "語らいの明眸", + "event": [ + { + "event_id": 1512, + "event_name": "第12回チーム対抗トークバトルショー" + } + ], + "hash": "be6c919489145ab6fcf4735fccad0f5c", + "id": "2539602", + "profile": { + "bust": "85", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "46" + } + } + ], + "idol_id": 81, + "idol_name": "三船美優", + "idol_name_display": "三船美優", + "units": [ + { + "id": "22", + "name": "シャイニー・アーリーデイズ" + }, + { + "id": "84", + "name": "アニマルパーク" + }, + { + "id": "142", + "name": "バレンタイン反省会" + }, + { + "id": "184", + "name": "宵乙女" + } + ] + }, + { + "aliases": [ + { + "event": [ + { + "event_id": 102, + "event_name": "アイドルおもちつき大会" + } + ], + "hash": "35b09bc982525959986d255eba92f6bf", + "id": "2001601", + "profile": { + "bust": "78", + "height": "169", + "hip": "80", + "waist": "57", + "weight": "48" + } + }, + { + "event": [ + { + "event_id": 102, + "event_name": "アイドルおもちつき大会" + } + ], + "hash": "6b061a866178e79570981b8a9bf5544d", + "id": "2101602", + "profile": { + "bust": "78", + "height": "169", + "hip": "80", + "waist": "57", + "weight": "48" + } + }, + { + "alias_name": "新たな一面", + "alias_name_display": "新たな一面", + "hash": "24e21295c6dca652c107bad42d161e3c", + "id": "2208301", + "profile": { + "bust": "78", + "height": "169", + "hip": "80", + "waist": "57", + "weight": "48" + } + }, + { + "alias_name": "新たな一面", + "alias_name_display": "新たな一面", + "hash": "1582d357b84644b66bb3d4db8c88125a", + "id": "2308302", + "profile": { + "bust": "78", + "height": "169", + "hip": "80", + "waist": "57", + "weight": "48" + } + }, + { + "alias_name": "アダルティアニマル", + "alias_name_display": "アダルティアニマル", + "hash": "bae6764236edeb14d146c5ba72311f5e", + "id": "2219901", + "profile": { + "bust": "78", + "height": "169", + "hip": "80", + "waist": "57", + "weight": "48" + } + }, + { + "alias_name": "アダルティアニマル", + "alias_name_display": "アダルティアニマル", + "hash": "41a29dd0318bbc19cde60b68865f0987", + "id": "2319902", + "profile": { + "bust": "78", + "height": "169", + "hip": "80", + "waist": "57", + "weight": "48" + } + }, + { + "alias_name": "ロワイヤルスタイルND", + "alias_name_display": "ロワイヤルスタイルND", + "event": [ + { + "event_id": 813, + "event_name": "第13回アイドルLIVEロワイヤル" + } + ], + "hash": "8b2e579310bd133d0f34f876918ef36f", + "id": "2321902", + "profile": { + "bust": "78", + "height": "169", + "hip": "80", + "waist": "57", + "weight": "48" + } + }, + { + "alias_name": "ゴーフォーヴィクトリー", + "alias_name_display": "ゴーフォーヴィクトリー", + "hash": "2770f9e3f17554d24e74423749631811", + "id": "2231001", + "profile": { + "bust": "78", + "height": "169", + "hip": "80", + "waist": "57", + "weight": "48" + } + }, + { + "alias_name": "ゴーフォーヴィクトリー", + "alias_name_display": "ゴーフォーヴィクトリー", + "hash": "4d9a759a02e8a414f311b3430938d69c", + "id": "2331002", + "profile": { + "bust": "78", + "height": "169", + "hip": "80", + "waist": "57", + "weight": "48" + } + }, + { + "alias_name": "一輪の花", + "alias_name_display": "一輪の花", + "event": [ + { + "event_id": 213, + "event_name": "アイドルサバイバルinフラワーガーデン" + } + ], + "hash": "5c23e5797171e8313c89225c1040289d", + "id": "2413901", + "profile": { + "bust": "78", + "height": "169", + "hip": "80", + "waist": "57", + "weight": "48" + } + }, + { + "alias_name": "一輪の花", + "alias_name_display": "一輪の花", + "event": [ + { + "event_id": 213, + "event_name": "アイドルサバイバルinフラワーガーデン" + } + ], + "hash": "108e6a615a49e2b18ba7c1ba3ddfb383", + "id": "2513902", + "profile": { + "bust": "78", + "height": "169", + "hip": "80", + "waist": "57", + "weight": "48" + } + }, + { + "alias_name": "エターナルホープ", + "alias_name_display": "エターナルホープ", + "event": [ + { + "event_id": "026", + "event_name": "第26回プロダクションマッチフェスティバル" + } + ], + "hash": "72c7f8f3977631a376f9335318ffd01e", + "id": "2430901", + "profile": { + "bust": "78", + "height": "169", + "hip": "80", + "waist": "57", + "weight": "48" + } + }, + { + "alias_name": "エターナルホープ", + "alias_name_display": "エターナルホープ", + "event": [ + { + "event_id": "026", + "event_name": "第26回プロダクションマッチフェスティバル" + } + ], + "hash": "2fc8f01b15ea20a9da1300e11b02650e", + "id": "2530902", + "profile": { + "bust": "78", + "height": "169", + "hip": "80", + "waist": "57", + "weight": "48" + } + }, + { + "alias_name": "ビリービングチアー", + "alias_name_display": "ビリービングチアー", + "event": [ + { + "event_id": 1508, + "event_name": "チーム対抗トークバトルショー in SUMMER" + } + ], + "hash": "e3329e174d1a982ea1caa591aad94568", + "id": "2434301", + "profile": { + "bust": "78", + "height": "169", + "hip": "80", + "waist": "57", + "weight": "48" + } + }, + { + "alias_name": "ビリービングチアー", + "alias_name_display": "ビリービングチアー", + "event": [ + { + "event_id": 1508, + "event_name": "チーム対抗トークバトルショー in SUMMER" + } + ], + "hash": "8c428918c3def67003cdb73be7eb1b85", + "id": "2534302", + "profile": { + "bust": "78", + "height": "169", + "hip": "80", + "waist": "57", + "weight": "48" + } + } + ], + "idol_id": 82, + "idol_name": "服部瞳子", + "idol_name_display": "服部瞳子", + "units": [ + { + "id": "142", + "name": "バレンタイン反省会" + }, + { + "id": "210", + "name": "ロワイヤルスタイルND" + } + ] + }, + { + "aliases": [ + { + "hash": "046cd353c0361020d544e2946f024908", + "id": "2001701", + "profile": { + "bust": "88", + "height": "172", + "hip": "89", + "waist": "60", + "weight": "50" + } + }, + { + "hash": "e020758ea7075bb1602c7350823566c0", + "id": "2101702", + "profile": { + "bust": "88", + "height": "172", + "hip": "89", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "ハロウィンヴァンパイア", + "alias_name_display": "ハロウィンヴァンパイア", + "event": [ + { + "event_id": 207, + "event_name": "アイドルサバイバル ハロウィン編" + } + ], + "hash": "008d9393fd573899800cc63d17cd3881", + "id": "2206501", + "profile": { + "bust": "88", + "height": "172", + "hip": "89", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "ハロウィンヴァンパイア", + "alias_name_display": "ハロウィンヴァンパイア", + "event": [ + { + "event_id": 207, + "event_name": "アイドルサバイバル ハロウィン編" + } + ], + "hash": "fadf4c0567cbc33bd14012d985da6770", + "id": "2306502", + "profile": { + "bust": "88", + "height": "172", + "hip": "89", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "メタリックレディウルフ", + "alias_name_display": "メタリックレディウルフ", + "hash": "6bde4d4ab925d40189957d22816238bc", + "id": "2213301", + "profile": { + "bust": "88", + "height": "172", + "hip": "89", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "メタリックレディウルフ", + "alias_name_display": "メタリックレディウルフ", + "hash": "79b8ba4a1305641121f85c630a187072", + "id": "2313302", + "profile": { + "bust": "88", + "height": "172", + "hip": "89", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "スクールガール", + "alias_name_display": "スクールガール", + "hash": "de63eaf145ae085f3d2ab0ddc6dc00a1", + "id": "2218201", + "profile": { + "bust": "88", + "height": "172", + "hip": "89", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "スクールガール", + "alias_name_display": "スクールガール", + "hash": "0581485c6cb33372d334e567ebc58c2e", + "id": "2318202", + "profile": { + "bust": "88", + "height": "172", + "hip": "89", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "T.B.チアーズ", + "alias_name_display": "T.B.チアーズ", + "event": [ + { + "event_id": 1503, + "event_name": "チーム対抗 夏だ!プールだ!トークバトルショー" + } + ], + "hash": "1c4c8f44d4d2eb0d037645f495fd6c3d", + "id": "2222601", + "profile": { + "bust": "88", + "height": "172", + "hip": "89", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "T.B.チアーズ", + "alias_name_display": "T.B.チアーズ", + "event": [ + { + "event_id": 1503, + "event_name": "チーム対抗 夏だ!プールだ!トークバトルショー" + } + ], + "hash": "e2e0041e12c921fbd33ca51389ec3232", + "id": "2322602", + "profile": { + "bust": "88", + "height": "172", + "hip": "89", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "サンタI.C", + "alias_name_display": "サンタI.C", + "event": [ + { + "event_id": 1208, + "event_name": "目指せサンタクロース アイドルチャレンジ" + } + ], + "hash": "e5834f442f8c686a85b70b8cbcd13e7e", + "id": "2324302", + "profile": { + "bust": "88", + "height": "172", + "hip": "89", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "クライムレディ", + "alias_name_display": "クライムレディ", + "event": [ + { + "event_id": 720, + "event_name": "第20回ドリームLIVEフェスティバル" + } + ], + "hash": "6e339e821d7c05c10d8bde8f6657c7e0", + "id": "2225901", + "profile": { + "bust": "88", + "height": "172", + "hip": "89", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "クライムレディ", + "alias_name_display": "クライムレディ", + "event": [ + { + "event_id": 720, + "event_name": "第20回ドリームLIVEフェスティバル" + } + ], + "hash": "cba13f10079f879dc0fe7fb85aec759c", + "id": "2325902", + "profile": { + "bust": "88", + "height": "172", + "hip": "89", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "湯けむり紀行", + "alias_name_display": "湯けむり紀行", + "hash": "7f23e7d8da712ed26b343f3a1205300f", + "id": "2229201", + "profile": { + "bust": "88", + "height": "172", + "hip": "89", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "湯けむり紀行", + "alias_name_display": "湯けむり紀行", + "hash": "737009be0883399fdd76357c6cde4844", + "id": "2329202", + "profile": { + "bust": "88", + "height": "172", + "hip": "89", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "ビーチクイーン", + "alias_name_display": "ビーチクイーン", + "event": [ + { + "event_id": 506, + "event_name": "アイドルLIVEツアーinハワイ" + } + ], + "hash": "f2a0900bb8db3d317c6177c8b7615909", + "id": "2408201", + "profile": { + "bust": "88", + "height": "172", + "hip": "89", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "ビーチクイーン", + "alias_name_display": "ビーチクイーン", + "event": [ + { + "event_id": 506, + "event_name": "アイドルLIVEツアーinハワイ" + } + ], + "hash": "af080414985fcaca07952697c3fdc545", + "id": "2508202", + "profile": { + "bust": "88", + "height": "172", + "hip": "89", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "鬼に金棒", + "alias_name_display": "鬼に金棒", + "event": [ + { + "event_id": 711, + "event_name": "福は内DEドリームLIVEフェスティバル" + } + ], + "hash": "e084ffca6cc29cfc0d1e0b2e076bb8a6", + "id": "2421101", + "profile": { + "bust": "88", + "height": "172", + "hip": "89", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "鬼に金棒", + "alias_name_display": "鬼に金棒", + "event": [ + { + "event_id": 711, + "event_name": "福は内DEドリームLIVEフェスティバル" + } + ], + "hash": "83e6f15acc7e6807583c92672c4510d4", + "id": "2521102", + "profile": { + "bust": "88", + "height": "172", + "hip": "89", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "迫真のクリスマス", + "alias_name_display": "迫真のクリスマス", + "event": [ + { + "event_id": 1208, + "event_name": "目指せサンタクロース アイドルチャレンジ" + } + ], + "hash": "3d81aebd94a339f3bbbd89c7c943abd7", + "id": "2429501", + "profile": { + "bust": "88", + "height": "172", + "hip": "89", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "迫真のクリスマス", + "alias_name_display": "迫真のクリスマス", + "event": [ + { + "event_id": 1208, + "event_name": "目指せサンタクロース アイドルチャレンジ" + } + ], + "hash": "2b867eb7af72b67dd19a753a7a9c4ed3", + "id": "2529502", + "profile": { + "bust": "88", + "height": "172", + "hip": "89", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "迫真のクリスマス・S", + "alias_name_display": "迫真のクリスマス・S", + "event": [ + { + "event_id": 1208, + "event_name": "目指せサンタクロース アイドルチャレンジ" + } + ], + "hash": "894e65f26343e9084f927cc4dbfaaaf7", + "id": "2429601", + "profile": { + "bust": "88", + "height": "172", + "hip": "89", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "迫真のクリスマス・S", + "alias_name_display": "迫真のクリスマス・S", + "event": [ + { + "event_id": 1208, + "event_name": "目指せサンタクロース アイドルチャレンジ" + } + ], + "hash": "d96b8fa22a51830f67d197909f1c7504", + "id": "2529602", + "profile": { + "bust": "88", + "height": "172", + "hip": "89", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "ワイルドドライブ", + "alias_name_display": "ワイルドドライブ", + "hash": "31fad952a03ad277fa0e3d059b759afb", + "id": "2440201", + "profile": { + "bust": "88", + "height": "172", + "hip": "89", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "ワイルドドライブ", + "alias_name_display": "ワイルドドライブ", + "hash": "a53f598eea9637e74b08e76c96d18d4b", + "id": "2540202", + "profile": { + "bust": "88", + "height": "172", + "hip": "89", + "waist": "60", + "weight": "50" + } + } + ], + "idol_id": 83, + "idol_name": "木場真奈美", + "idol_name_display": "木場真奈美", + "units": [ + { + "id": "67", + "name": "レディビースト" + }, + { + "id": "101", + "name": "ハロウィンヴァンパイア" + }, + { + "id": "111", + "name": "アンチェイン・シグナル" + }, + { + "id": "117", + "name": "ハードメテオライツ" + } + ] + }, + { + "aliases": [ + { + "hash": "50f53b8bae68c432456604aa421dfce9", + "id": "2001901", + "profile": { + "bust": "80", + "height": "161", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "hash": "d7fec18f59ddcee02b344ea8f116fa8e", + "id": "2101902", + "profile": { + "bust": "80", + "height": "161", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "浴衣祭り", + "alias_name_display": "浴衣祭り", + "hash": "6b322b16eccd479ca9f4da4ca08398d7", + "id": "2204801", + "profile": { + "bust": "80", + "height": "161", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "浴衣祭り", + "alias_name_display": "浴衣祭り", + "hash": "4ee7b16973889716589be41a7d7c5735", + "id": "2304802", + "profile": { + "bust": "80", + "height": "161", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ロワイヤルスタイルNP", + "alias_name_display": "ロワイヤルスタイルNP", + "event": [ + { + "event_id": 810, + "event_name": "アイドルLIVEロワイヤル バレンタインSP" + } + ], + "hash": "f64ea05ba41f018d4c5fc08e4e4e0c10", + "id": "2219701", + "profile": { + "bust": "80", + "height": "161", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ロワイヤルスタイルNP", + "alias_name_display": "ロワイヤルスタイルNP", + "event": [ + { + "event_id": 810, + "event_name": "アイドルLIVEロワイヤル バレンタインSP" + } + ], + "hash": "8bd293a18cfa965757d887665dc383b4", + "id": "2319702", + "profile": { + "bust": "80", + "height": "161", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "紅葉温泉", + "alias_name_display": "紅葉温泉", + "hash": "bf005e32b739ebbcd648280ba8050bc1", + "id": "2223901", + "profile": { + "bust": "80", + "height": "161", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "紅葉温泉", + "alias_name_display": "紅葉温泉", + "hash": "46db0d085f1d31bd2f46f794311f1a74", + "id": "2323902", + "profile": { + "bust": "80", + "height": "161", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "夢の使者", + "alias_name_display": "夢の使者", + "hash": "bee91878694ccf9ac29f98bf6b4b5a3e", + "id": "2403601", + "profile": { + "bust": "80", + "height": "161", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "夢の使者", + "alias_name_display": "夢の使者", + "hash": "e523d0a3f90a44554d3702b1320957c5", + "id": "2503602", + "profile": { + "bust": "80", + "height": "161", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "夜桜小町", + "alias_name_display": "夜桜小町", + "event": [ + { + "event_id": 406, + "event_name": "アイドルプロデュース 春の桜祭り編" + } + ], + "hash": "879e77d88385679197491d5ed4ed7e6f", + "id": "2405801", + "profile": { + "bust": "80", + "height": "161", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "夜桜小町", + "alias_name_display": "夜桜小町", + "event": [ + { + "event_id": 406, + "event_name": "アイドルプロデュース 春の桜祭り編" + } + ], + "hash": "5245f9a8bbfc8c00e913bd84078d1947", + "id": "2505802", + "profile": { + "bust": "80", + "height": "161", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "憧憬の絵姿", + "alias_name_display": "憧憬の絵姿", + "event": [ + { + "event_id": 703, + "event_name": "第3回ドリームLIVEフェスティバル" + } + ], + "hash": "979595d903dfaafad36539c8b075f19a", + "id": "2409701", + "profile": { + "bust": "80", + "height": "161", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "憧憬の絵姿", + "alias_name_display": "憧憬の絵姿", + "event": [ + { + "event_id": 703, + "event_name": "第3回ドリームLIVEフェスティバル" + } + ], + "hash": "3167283ee6e0766c23f79d2b0cdf6de6", + "id": "2509702", + "profile": { + "bust": "80", + "height": "161", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "九天の玄女", + "alias_name_display": "九天の玄女", + "hash": "ad166bff62c60b26fa74b6aa60802a77", + "id": "2413801", + "profile": { + "bust": "80", + "height": "161", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "九天の玄女", + "alias_name_display": "九天の玄女", + "hash": "0f422ef5edfbb203d4b3f21da7a62f54", + "id": "2513802", + "profile": { + "bust": "80", + "height": "161", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "新たな色", + "alias_name_display": "新たな色", + "event": [ + { + "event_id": 1302, + "event_name": "第2回プロダクションマッチフェスティバルS" + } + ], + "hash": "4c90bd7715d2326f6029a18a181e2785", + "id": "2418501", + "profile": { + "bust": "80", + "height": "161", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "新たな色", + "alias_name_display": "新たな色", + "event": [ + { + "event_id": 1302, + "event_name": "第2回プロダクションマッチフェスティバルS" + } + ], + "hash": "15cbf467a5c7933a2ec310761b11be7c", + "id": "2518502", + "profile": { + "bust": "80", + "height": "161", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "小さな息吹", + "alias_name_display": "小さな息吹", + "hash": "fdb92acf167d4c4fab46507c6a8ebc87", + "id": "2425501", + "profile": { + "bust": "80", + "height": "161", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "小さな息吹", + "alias_name_display": "小さな息吹", + "hash": "517be5a4998a30862dd638566ca6f499", + "id": "2525502", + "profile": { + "bust": "80", + "height": "161", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ホワイトジャーニー", + "alias_name_display": "ホワイトジャーニー", + "event": [ + { + "event_id": 1705, + "event_name": "アイドルプロデュース きらめくオーロラ紀行" + } + ], + "hash": "67e57c34ab643e525c72ff31317bbe29", + "id": "2431201", + "profile": { + "bust": "80", + "height": "161", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ホワイトジャーニー", + "alias_name_display": "ホワイトジャーニー", + "event": [ + { + "event_id": 1705, + "event_name": "アイドルプロデュース きらめくオーロラ紀行" + } + ], + "hash": "1f2016bdb7310af8adb7149ca0564a23", + "id": "2531202", + "profile": { + "bust": "80", + "height": "161", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ホワイトジャーニー・S", + "alias_name_display": "ホワイトジャーニー・S", + "event": [ + { + "event_id": 1705, + "event_name": "アイドルプロデュース きらめくオーロラ紀行" + } + ], + "hash": "f76606e958186ed0c7abf674357fc6e4", + "id": "2431301", + "profile": { + "bust": "80", + "height": "161", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ホワイトジャーニー・S", + "alias_name_display": "ホワイトジャーニー・S", + "event": [ + { + "event_id": 1705, + "event_name": "アイドルプロデュース きらめくオーロラ紀行" + } + ], + "hash": "017bb5285930bc6789dabf9bd1dde176", + "id": "2531302", + "profile": { + "bust": "80", + "height": "161", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "クワイエット・ズィール", + "alias_name_display": "クワイエット・ズィール", + "hash": "f916a26a64839b6530f579d34dbfd699", + "id": "2436201", + "profile": { + "bust": "80", + "height": "161", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "クワイエット・ズィール", + "alias_name_display": "クワイエット・ズィール", + "hash": "eb1d57f9b906de305439f9ab26c6cdcf", + "id": "2536202", + "profile": { + "bust": "80", + "height": "161", + "hip": "84", + "waist": "55", + "weight": "43" + } + } + ], + "idol_id": 84, + "idol_name": "藤原肇", + "idol_name_display": "藤原肇", + "units": [ + { + "id": "14", + "name": "月下氷姫" + }, + { + "id": "20", + "name": "山紫水明" + }, + { + "id": "103", + "name": "ビビッドカラーエイジ" + }, + { + "id": "209", + "name": "ロワイヤルスタイルNP" + } + ] + }, + { + "aliases": [ + { + "hash": "2bada7af6dfab066132d050923a513eb", + "id": "2002101", + "profile": { + "bust": "82", + "height": "165", + "hip": "85", + "waist": "55", + "weight": "45" + } + }, + { + "hash": "68ed242f80829cdb4072549098177b27", + "id": "2102102", + "profile": { + "bust": "82", + "height": "165", + "hip": "85", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "サマーライブ", + "alias_name_display": "サマーライブ", + "event": [ + { + "event_id": 205, + "event_name": "アイドルサバイバルinサマーライブ" + } + ], + "hash": "54b6b2bbe68eff5cc0a866562daed5a1", + "id": "2205001", + "profile": { + "bust": "82", + "height": "165", + "hip": "85", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "サマーライブ", + "alias_name_display": "サマーライブ", + "event": [ + { + "event_id": 205, + "event_name": "アイドルサバイバルinサマーライブ" + } + ], + "hash": "a580271bf1d560a89be26d09aca1b669", + "id": "2305002", + "profile": { + "bust": "82", + "height": "165", + "hip": "85", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "ハイカラサクラ", + "alias_name_display": "ハイカラサクラ", + "hash": "a8ff862d393e2d5dda368de20fb13201", + "id": "2220501", + "profile": { + "bust": "82", + "height": "165", + "hip": "85", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "ハイカラサクラ", + "alias_name_display": "ハイカラサクラ", + "hash": "1a1fe1f5075423ba48922da4fe12dfe2", + "id": "2320502", + "profile": { + "bust": "82", + "height": "165", + "hip": "85", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "スクールプール", + "alias_name_display": "スクールプール", + "hash": "abe0e1d88e1978ae30fb4e6b60451740", + "id": "2227401", + "profile": { + "bust": "82", + "height": "165", + "hip": "85", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "スクールプール", + "alias_name_display": "スクールプール", + "hash": "e9d2e494154da1e8f2df3c7fbc2bb7ce", + "id": "2327402", + "profile": { + "bust": "82", + "height": "165", + "hip": "85", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "笑顔の女神", + "alias_name_display": "笑顔の女神", + "event": [ + { + "event_id": 404, + "event_name": "新春アイドルプロデュース" + } + ], + "hash": "a0e0bb81d532da3f17e6cec67286b1f4", + "id": "2404701", + "profile": { + "bust": "82", + "height": "165", + "hip": "85", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "笑顔の女神", + "alias_name_display": "笑顔の女神", + "event": [ + { + "event_id": 404, + "event_name": "新春アイドルプロデュース" + } + ], + "hash": "db67fce1ced5a2e2946e3facbd9abe19", + "id": "2504702", + "profile": { + "bust": "82", + "height": "165", + "hip": "85", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "制服の女神", + "alias_name_display": "制服の女神", + "hash": "1009f9985fad285ed98d06fcc23cea57", + "id": "2405901", + "profile": { + "bust": "82", + "height": "165", + "hip": "85", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "制服の女神", + "alias_name_display": "制服の女神", + "hash": "906e36ae3310e4ca2451e0d6c4df7b42", + "id": "2505902", + "profile": { + "bust": "82", + "height": "165", + "hip": "85", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "4273df53ba2ef652513e682bd7c7229a", + "id": "2406701", + "profile": { + "bust": "82", + "height": "165", + "hip": "85", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "299fe393f6c7c239a989db503ba3b462", + "id": "2506702", + "profile": { + "bust": "82", + "height": "165", + "hip": "85", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "眠れる小悪魔", + "alias_name_display": "眠れる小悪魔", + "hash": "f14e96d527c85980c994a8e0234afb58", + "id": "2409801", + "profile": { + "bust": "82", + "height": "165", + "hip": "85", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "眠れる小悪魔", + "alias_name_display": "眠れる小悪魔", + "hash": "0982b1f6992128e2a7a6668b5f306cb7", + "id": "2509802", + "profile": { + "bust": "82", + "height": "165", + "hip": "85", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "シンデレラドリーム", + "alias_name_display": "シンデレラドリーム", + "hash": "1da9783f4db2e0d170433ff25e97f064", + "id": "2412501", + "profile": { + "bust": "82", + "height": "165", + "hip": "85", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "シンデレラドリーム", + "alias_name_display": "シンデレラドリーム", + "hash": "ed35c60eef3f13be50edee7dfee4523d", + "id": "2512502", + "profile": { + "bust": "82", + "height": "165", + "hip": "85", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "レディアントヴィーナス", + "alias_name_display": "レディアントヴィーナス", + "hash": "33d51a091cde3faf6392a9ce3ba46102", + "id": "2416901", + "profile": { + "bust": "82", + "height": "165", + "hip": "85", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "レディアントヴィーナス", + "alias_name_display": "レディアントヴィーナス", + "hash": "fe5e70f0df196ae8e84391062564ad33", + "id": "2516902", + "profile": { + "bust": "82", + "height": "165", + "hip": "85", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "3rdアニバーサリー", + "alias_name_display": "3rdアニバーサリー", + "event": [ + { + "event_id": 415, + "event_name": "アイドルプロデュース the 3rd Anniversary" + } + ], + "hash": "7d83a3bcc9cfc6da0e3f8381c0c3b585", + "id": "2419401", + "profile": { + "bust": "82", + "height": "165", + "hip": "85", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "3rdアニバーサリー", + "alias_name_display": "3rdアニバーサリー", + "event": [ + { + "event_id": 415, + "event_name": "アイドルプロデュース the 3rd Anniversary" + } + ], + "hash": "ce21537c19faa7c7b6ae4b5c8defb324", + "id": "2519402", + "profile": { + "bust": "82", + "height": "165", + "hip": "85", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "3rdアニバーサリー・S", + "alias_name_display": "3rdアニバーサリー・S", + "event": [ + { + "event_id": 415, + "event_name": "アイドルプロデュース the 3rd Anniversary" + } + ], + "hash": "5f5daadbc3fadef1cca713f6e9e05255", + "id": "2419501", + "profile": { + "bust": "82", + "height": "165", + "hip": "85", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "3rdアニバーサリー・S", + "alias_name_display": "3rdアニバーサリー・S", + "event": [ + { + "event_id": 415, + "event_name": "アイドルプロデュース the 3rd Anniversary" + } + ], + "hash": "b20006cdb511c392497e750074e6be96", + "id": "2519502", + "profile": { + "bust": "82", + "height": "165", + "hip": "85", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "ラブライカ", + "alias_name_display": "ラブライカ", + "hash": "906abd014daf85c1ed5b45f4f9e19c05", + "id": "2521902", + "profile": { + "bust": "82", + "height": "165", + "hip": "85", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "アディクティブメイド", + "alias_name_display": "アディクティブメイド", + "hash": "b3a0aede00bbe1146a472828895912dd", + "id": "2426701", + "profile": { + "bust": "82", + "height": "165", + "hip": "85", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "アディクティブメイド", + "alias_name_display": "アディクティブメイド", + "hash": "ca97decc65659e09550943d2766e5d3e", + "id": "2526702", + "profile": { + "bust": "82", + "height": "165", + "hip": "85", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "スイートグラティチュード", + "alias_name_display": "スイートグラティチュード", + "hash": "b391620fec4da6f7bef081f4823d39ab", + "id": "2438001", + "profile": { + "bust": "82", + "height": "165", + "hip": "85", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "スイートグラティチュード", + "alias_name_display": "スイートグラティチュード", + "hash": "05967e0044c4828455e8547b98df1d06", + "id": "2538002", + "profile": { + "bust": "82", + "height": "165", + "hip": "85", + "waist": "55", + "weight": "45" + } + } + ], + "idol_id": 85, + "idol_name": "新田美波", + "idol_name_display": "新田美波", + "units": [ + { + "id": "34", + "name": "デア・アウローラ" + }, + { + "id": "78", + "name": "LOVE LAIKA" + }, + { + "id": "93", + "name": "サマーライブセーラー" + }, + { + "id": "145", + "name": "LOVE LAIKA with Rosenburg Engel" + }, + { + "id": "158", + "name": "ハイカラサクラ" + }, + { + "id": "189", + "name": "アインフェリア" + }, + { + "id": "197", + "name": "アズール・ムジカ" + }, + { + "id": "213", + "name": "CINDERELLA PROJECT" + } + ] + }, + { + "aliases": [ + { + "hash": "b72a61e46933108a7e0ecbcd37bcc461", + "id": "2002201", + "profile": { + "bust": "80", + "height": "164", + "hip": "81", + "waist": "54", + "weight": "47" + } + }, + { + "hash": "0a91b0a75ea811b3ea5533fe284cfb38", + "id": "2102202", + "profile": { + "bust": "80", + "height": "164", + "hip": "81", + "waist": "54", + "weight": "47" + } + }, + { + "alias_name": "純真子女", + "alias_name_display": "純真子女", + "hash": "d5bed54544fc77c024920b06eefcae1c", + "id": "2206101", + "profile": { + "bust": "80", + "height": "164", + "hip": "81", + "waist": "54", + "weight": "47" + } + }, + { + "alias_name": "純真子女", + "alias_name_display": "純真子女", + "hash": "69d297f1b6fb812bf26843f0d76ff50f", + "id": "2306102", + "profile": { + "bust": "80", + "height": "164", + "hip": "81", + "waist": "54", + "weight": "47" + } + }, + { + "alias_name": "ビーチサイド", + "alias_name_display": "ビーチサイド", + "hash": "0a48ebcb12a416c18d6b1bbac33cee1c", + "id": "2216601", + "profile": { + "bust": "80", + "height": "164", + "hip": "81", + "waist": "54", + "weight": "47" + } + }, + { + "alias_name": "ビーチサイド", + "alias_name_display": "ビーチサイド", + "hash": "b1121186a42a0d42c89ecf10be529b52", + "id": "2316602", + "profile": { + "bust": "80", + "height": "164", + "hip": "81", + "waist": "54", + "weight": "47" + } + }, + { + "alias_name": "スマートスタイル", + "alias_name_display": "スマートスタイル", + "event": [ + { + "event_id": "023", + "event_name": "第23回プロダクションマッチフェスティバル" + } + ], + "hash": "197ed6234c6ed8842ff1d7c5ea8aec6b", + "id": "2323102", + "profile": { + "bust": "80", + "height": "164", + "hip": "81", + "waist": "54", + "weight": "47" + } + }, + { + "alias_name": "真心の射手", + "alias_name_display": "真心の射手", + "hash": "560834b8207166222b10eb2590a1e099", + "id": "2404001", + "profile": { + "bust": "80", + "height": "164", + "hip": "81", + "waist": "54", + "weight": "47" + } + }, + { + "alias_name": "真心の射手", + "alias_name_display": "真心の射手", + "hash": "c19da47ce6c5ffd3c89c606af52fe802", + "id": "2504002", + "profile": { + "bust": "80", + "height": "164", + "hip": "81", + "waist": "54", + "weight": "47" + } + }, + { + "alias_name": "流麗な令嬢", + "alias_name_display": "流麗な令嬢", + "hash": "02f4259ef8e4cfbf3ecaa1d68d99df20", + "id": "2407901", + "profile": { + "bust": "80", + "height": "164", + "hip": "81", + "waist": "54", + "weight": "47" + } + }, + { + "alias_name": "流麗な令嬢", + "alias_name_display": "流麗な令嬢", + "hash": "9243275ee7e036423573a40b857fdac8", + "id": "2507902", + "profile": { + "bust": "80", + "height": "164", + "hip": "81", + "waist": "54", + "weight": "47" + } + }, + { + "alias_name": "光彩の華", + "alias_name_display": "光彩の華", + "hash": "f0c170150ebc829334e052ad02f684df", + "id": "2419101", + "profile": { + "bust": "80", + "height": "164", + "hip": "81", + "waist": "54", + "weight": "47" + } + }, + { + "alias_name": "光彩の華", + "alias_name_display": "光彩の華", + "hash": "9503529972d8ccb6ca6ea419abd1820d", + "id": "2519102", + "profile": { + "bust": "80", + "height": "164", + "hip": "81", + "waist": "54", + "weight": "47" + } + }, + { + "alias_name": "グルメジャッジメント", + "alias_name_display": "グルメジャッジメント", + "event": [ + { + "event_id": 519, + "event_name": "美食公演 女神に捧ぐ御馳走" + } + ], + "hash": "7a73cd330d410ac8d07b1fd19fbe2ff6", + "id": "2423901", + "profile": { + "bust": "80", + "height": "164", + "hip": "81", + "waist": "54", + "weight": "47" + } + }, + { + "alias_name": "グルメジャッジメント", + "alias_name_display": "グルメジャッジメント", + "event": [ + { + "event_id": 519, + "event_name": "美食公演 女神に捧ぐ御馳走" + } + ], + "hash": "e07a8e6fc6082559aeb12e34d3fa941a", + "id": "2523902", + "profile": { + "bust": "80", + "height": "164", + "hip": "81", + "waist": "54", + "weight": "47" + } + }, + { + "alias_name": "ブライト・ロワイヤル", + "alias_name_display": "ブライト・ロワイヤル", + "event": [ + { + "event_id": 817, + "event_name": "アイドルLIVEロワイヤル お花見SP" + } + ], + "hash": "b6e88f29f51360f5246ef97d39b3aa9b", + "id": "2432101", + "profile": { + "bust": "80", + "height": "164", + "hip": "81", + "waist": "54", + "weight": "47" + } + }, + { + "alias_name": "ブライト・ロワイヤル", + "alias_name_display": "ブライト・ロワイヤル", + "event": [ + { + "event_id": 817, + "event_name": "アイドルLIVEロワイヤル お花見SP" + } + ], + "hash": "64be6676bdf303ee26c8b5cf28a04ac1", + "id": "2532102", + "profile": { + "bust": "80", + "height": "164", + "hip": "81", + "waist": "54", + "weight": "47" + } + }, + { + "alias_name": "宴のマジストレイト", + "alias_name_display": "宴のマジストレイト", + "event": [ + { + "event_id": 820, + "event_name": "第20回アイドルLIVEロワイヤル" + } + ], + "hash": "dfaf8718bb2640e34528b866c667312e", + "id": "2436101", + "profile": { + "bust": "80", + "height": "164", + "hip": "81", + "waist": "54", + "weight": "47" + } + }, + { + "alias_name": "宴のマジストレイト", + "alias_name_display": "宴のマジストレイト", + "event": [ + { + "event_id": 820, + "event_name": "第20回アイドルLIVEロワイヤル" + } + ], + "hash": "cff720f0338a7ae16dc936a802809a2f", + "id": "2536102", + "profile": { + "bust": "80", + "height": "164", + "hip": "81", + "waist": "54", + "weight": "47" + } + } + ], + "idol_id": 86, + "idol_name": "水野翠", + "idol_name_display": "水野翠", + "units": [ + { + "id": "53", + "name": "ブリヤント・ノワール" + }, + { + "id": "207", + "name": "ムーランルージュ" + } + ] + }, + { + "aliases": [ + { + "alias_name": "ムーンライトバニー", + "alias_name_display": "ムーンライトバニー", + "event": [ + { + "event_id": 107, + "event_name": "秋夜のお月見会" + } + ], + "hash": "a93f91d99fbc2f134011e4fdf38e49bb", + "id": "2002401", + "profile": { + "bust": "81", + "height": "166", + "hip": "83", + "waist": "59", + "weight": "45" + } + }, + { + "alias_name": "ムーンライトバニー", + "alias_name_display": "ムーンライトバニー", + "event": [ + { + "event_id": 107, + "event_name": "秋夜のお月見会" + } + ], + "hash": "0d1b35fad868c671e2d8b58842279076", + "id": "2102402", + "profile": { + "bust": "81", + "height": "166", + "hip": "83", + "waist": "59", + "weight": "45" + } + }, + { + "alias_name": "幕間のひととき", + "alias_name_display": "幕間のひととき", + "hash": "ce06f399bc842655c0b9ea49fc9cca4a", + "id": "2211201", + "profile": { + "bust": "81", + "height": "166", + "hip": "83", + "waist": "59", + "weight": "45" + } + }, + { + "alias_name": "幕間のひととき", + "alias_name_display": "幕間のひととき", + "hash": "4d843f1c3131ffcda576eb50ac401e06", + "id": "2311202", + "profile": { + "bust": "81", + "height": "166", + "hip": "83", + "waist": "59", + "weight": "45" + } + }, + { + "alias_name": "憩いのひととき", + "alias_name_display": "憩いのひととき", + "event": [ + { + "event_id": 707, + "event_name": "第7回ドリームLIVEフェスティバル" + } + ], + "hash": "e953b61de50dd7879353f130a39e8cba", + "id": "2216501", + "profile": { + "bust": "81", + "height": "166", + "hip": "83", + "waist": "59", + "weight": "45" + } + }, + { + "alias_name": "憩いのひととき", + "alias_name_display": "憩いのひととき", + "event": [ + { + "event_id": 707, + "event_name": "第7回ドリームLIVEフェスティバル" + } + ], + "hash": "766958eefb94c4c0837e3ae954170467", + "id": "2316502", + "profile": { + "bust": "81", + "height": "166", + "hip": "83", + "waist": "59", + "weight": "45" + } + }, + { + "alias_name": "ロコガール", + "alias_name_display": "ロコガール", + "event": [ + { + "event_id": 1707, + "event_name": "アイドルプロデュース アロハ!常夏の楽園" + } + ], + "hash": "e120bef59049701c084e9bc9f3e90084", + "id": "2228001", + "profile": { + "bust": "81", + "height": "166", + "hip": "83", + "waist": "59", + "weight": "45" + } + }, + { + "alias_name": "ロコガール", + "alias_name_display": "ロコガール", + "event": [ + { + "event_id": 1707, + "event_name": "アイドルプロデュース アロハ!常夏の楽園" + } + ], + "hash": "50774bacbeae5d09201b91b16f98c262", + "id": "2328002", + "profile": { + "bust": "81", + "height": "166", + "hip": "83", + "waist": "59", + "weight": "45" + } + }, + { + "alias_name": "オリ・ロコガール", + "alias_name_display": "オリ・ロコガール", + "event": [ + { + "event_id": 1707, + "event_name": "アイドルプロデュース アロハ!常夏の楽園" + } + ], + "hash": "c477e1693bc9e6f1865117ac944cc87b", + "id": "2228101", + "profile": { + "bust": "81", + "height": "166", + "hip": "83", + "waist": "59", + "weight": "45" + } + }, + { + "alias_name": "オリ・ロコガール", + "alias_name_display": "オリ・ロコガール", + "event": [ + { + "event_id": 1707, + "event_name": "アイドルプロデュース アロハ!常夏の楽園" + } + ], + "hash": "fc3e8210b81af75d60a3ad891c10abfb", + "id": "2328102", + "profile": { + "bust": "81", + "height": "166", + "hip": "83", + "waist": "59", + "weight": "45" + } + }, + { + "alias_name": "ロワイヤルスタイルND", + "alias_name_display": "ロワイヤルスタイルND", + "event": [ + { + "event_id": 822, + "event_name": "第22回アイドルLIVEロワイヤル" + } + ], + "hash": "f862e42981eef571d6420636d5035b46", + "id": "2231101", + "profile": { + "bust": "81", + "height": "166", + "hip": "83", + "waist": "59", + "weight": "45" + } + }, + { + "alias_name": "ロワイヤルスタイルND", + "alias_name_display": "ロワイヤルスタイルND", + "event": [ + { + "event_id": 822, + "event_name": "第22回アイドルLIVEロワイヤル" + } + ], + "hash": "5efcadb4c0499c22d70657bc5f2e0609", + "id": "2331102", + "profile": { + "bust": "81", + "height": "166", + "hip": "83", + "waist": "59", + "weight": "45" + } + }, + { + "alias_name": "博識子女", + "alias_name_display": "博識子女", + "hash": "23240cbaa429c06b5834dab70e2468db", + "id": "2400401", + "profile": { + "bust": "80", + "height": "165", + "hip": "83", + "waist": "59", + "weight": "45" + } + }, + { + "alias_name": "博識子女", + "alias_name_display": "博識子女", + "hash": "a99c2ef0bb60c2fb792940844c5ce231", + "id": "2500402", + "profile": { + "bust": "81", + "height": "166", + "hip": "83", + "waist": "59", + "weight": "45" + } + }, + { + "alias_name": "クラシカルエレガント", + "alias_name_display": "クラシカルエレガント", + "event": [ + { + "event_id": "020", + "event_name": "第20回プロダクションマッチフェスティバル" + } + ], + "hash": "4f9408e5e8319f71d87a88be473f9fc5", + "id": "2421801", + "profile": { + "bust": "81", + "height": "166", + "hip": "83", + "waist": "59", + "weight": "45" + } + }, + { + "alias_name": "クラシカルエレガント", + "alias_name_display": "クラシカルエレガント", + "event": [ + { + "event_id": "020", + "event_name": "第20回プロダクションマッチフェスティバル" + } + ], + "hash": "a4df63531be7d6b41ed4a895781be32a", + "id": "2521802", + "profile": { + "bust": "81", + "height": "166", + "hip": "83", + "waist": "59", + "weight": "45" + } + }, + { + "alias_name": "未来の風向き", + "alias_name_display": "未来の風向き", + "hash": "63e8236c873d25762b04042fb1cf84e0", + "id": "2430401", + "profile": { + "bust": "81", + "height": "166", + "hip": "83", + "waist": "59", + "weight": "45" + } + }, + { + "alias_name": "未来の風向き", + "alias_name_display": "未来の風向き", + "hash": "0fdb985e97611cb4df916563d6e7a27b", + "id": "2530402", + "profile": { + "bust": "81", + "height": "166", + "hip": "83", + "waist": "59", + "weight": "45" + } + } + ], + "idol_id": 87, + "idol_name": "古澤頼子", + "idol_name_display": "古澤頼子", + "units": [ + { + "id": "35", + "name": "ディテクティブヴァーサス" + }, + { + "id": "210", + "name": "ロワイヤルスタイルND" + } + ] + }, + { + "aliases": [ + { + "hash": "4712d374c30554718ed4dcafc5edfd1c", + "id": "2002501", + "profile": { + "bust": "68", + "height": "141", + "hip": "67", + "waist": "52", + "weight": "34" + } + }, + { + "hash": "e7fd238953443b47d44bc0286af52fdc", + "id": "2102502", + "profile": { + "bust": "68", + "height": "141", + "hip": "67", + "waist": "52", + "weight": "34" + } + }, + { + "alias_name": "ジューンブライド", + "alias_name_display": "ジューンブライド", + "hash": "83367926ad9733a555d3b86da3460ecd", + "id": "2210401", + "profile": { + "bust": "68", + "height": "141", + "hip": "67", + "waist": "52", + "weight": "34" + } + }, + { + "alias_name": "ジューンブライド", + "alias_name_display": "ジューンブライド", + "hash": "499395a4c349f7e9c6ba022ec748290e", + "id": "2310402", + "profile": { + "bust": "68", + "height": "141", + "hip": "67", + "waist": "52", + "weight": "34" + } + }, + { + "alias_name": "マーチングバンド", + "alias_name_display": "マーチングバンド", + "hash": "929f0e7a77f38b0f931453c9fa0625e0", + "id": "2216301", + "profile": { + "bust": "68", + "height": "141", + "hip": "67", + "waist": "52", + "weight": "34" + } + }, + { + "alias_name": "マーチングバンド", + "alias_name_display": "マーチングバンド", + "hash": "83cf1de1cf5f82a9c2619cbcf6ba9e76", + "id": "2316302", + "profile": { + "bust": "68", + "height": "141", + "hip": "67", + "waist": "52", + "weight": "34" + } + }, + { + "alias_name": "小さな妖精", + "alias_name_display": "小さな妖精", + "event": [ + { + "event_id": "008", + "event_name": "第8回プロダクションマッチフェスティバル" + } + ], + "hash": "75e8d17c795363782be0abbd2e7cb34d", + "id": "2405401", + "profile": { + "bust": "68", + "height": "141", + "hip": "67", + "waist": "52", + "weight": "34" + } + }, + { + "alias_name": "小さな妖精", + "alias_name_display": "小さな妖精", + "event": [ + { + "event_id": "008", + "event_name": "第8回プロダクションマッチフェスティバル" + } + ], + "hash": "9b68a0c0aad45fc4de9e74efb4c2d359", + "id": "2505402", + "profile": { + "bust": "68", + "height": "141", + "hip": "67", + "waist": "52", + "weight": "34" + } + }, + { + "alias_name": "ストロベリーチャレンジ", + "alias_name_display": "ストロベリーチャレンジ", + "event": [ + { + "event_id": 409, + "event_name": "アイドルプロデュース チャレンジクッキング イタリアン編" + } + ], + "hash": "113455b137b7d4af1dd75f60e1d937d9", + "id": "2409201", + "profile": { + "bust": "68", + "height": "141", + "hip": "67", + "waist": "52", + "weight": "34" + } + }, + { + "alias_name": "ストロベリーチャレンジ", + "alias_name_display": "ストロベリーチャレンジ", + "event": [ + { + "event_id": 409, + "event_name": "アイドルプロデュース チャレンジクッキング イタリアン編" + } + ], + "hash": "9cb0324f6f2e51e41510e4681c3c2dcf", + "id": "2509202", + "profile": { + "bust": "68", + "height": "141", + "hip": "67", + "waist": "52", + "weight": "34" + } + }, + { + "alias_name": "ストロベリー・スマイル", + "alias_name_display": "ストロベリー・スマイル", + "event": [ + { + "event_id": 409, + "event_name": "アイドルプロデュース チャレンジクッキング イタリアン編" + } + ], + "hash": "09eb6357231c0ad505269065dd5f469e", + "id": "2409301", + "profile": { + "bust": "68", + "height": "141", + "hip": "67", + "waist": "52", + "weight": "34" + } + }, + { + "alias_name": "ストロベリー・スマイル", + "alias_name_display": "ストロベリー・スマイル", + "event": [ + { + "event_id": 409, + "event_name": "アイドルプロデュース チャレンジクッキング イタリアン編" + } + ], + "hash": "312fba03b9b1fa9da6bc1ca66a87aa35", + "id": "2509302", + "profile": { + "bust": "68", + "height": "141", + "hip": "67", + "waist": "52", + "weight": "34" + } + }, + { + "alias_name": "夢見る妖精", + "alias_name_display": "夢見る妖精", + "event": [ + { + "event_id": 1105, + "event_name": "第5回プロダクション対抗トークバトルショー" + } + ], + "hash": "6404bdcf1fde67a168754b53d26bf98b", + "id": "2417601", + "profile": { + "bust": "68", + "height": "141", + "hip": "67", + "waist": "52", + "weight": "34" + } + }, + { + "alias_name": "夢見る妖精", + "alias_name_display": "夢見る妖精", + "event": [ + { + "event_id": 1105, + "event_name": "第5回プロダクション対抗トークバトルショー" + } + ], + "hash": "0e9b883a9b56ff98281ed61f9871e298", + "id": "2517602", + "profile": { + "bust": "68", + "height": "141", + "hip": "67", + "waist": "52", + "weight": "34" + } + }, + { + "alias_name": "今日だけの告白", + "alias_name_display": "今日だけの告白", + "hash": "d518b52022b6db64879b5f1153990a0a", + "id": "2421701", + "profile": { + "bust": "68", + "height": "141", + "hip": "67", + "waist": "52", + "weight": "34" + } + }, + { + "alias_name": "今日だけの告白", + "alias_name_display": "今日だけの告白", + "hash": "f8ae27e268a4708fcc2ad84da0ff47fa", + "id": "2521702", + "profile": { + "bust": "68", + "height": "141", + "hip": "67", + "waist": "52", + "weight": "34" + } + }, + { + "alias_name": "夏宵の記憶", + "alias_name_display": "夏宵の記憶", + "event": [ + { + "event_id": 714, + "event_name": "夏祭りDEドリームLIVEフェスティバル" + } + ], + "hash": "60b3bdf29948bf80b9ab4e6e93fe6c2a", + "id": "2425201", + "profile": { + "bust": "68", + "height": "141", + "hip": "67", + "waist": "52", + "weight": "34" + } + }, + { + "alias_name": "夏宵の記憶", + "alias_name_display": "夏宵の記憶", + "event": [ + { + "event_id": 714, + "event_name": "夏祭りDEドリームLIVEフェスティバル" + } + ], + "hash": "45d500ed4651e7b65d3f222cbe4285e4", + "id": "2525202", + "profile": { + "bust": "68", + "height": "141", + "hip": "67", + "waist": "52", + "weight": "34" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "236415897f28c0017593bed0bb0cc583", + "id": "2428401", + "profile": { + "bust": "68", + "height": "141", + "hip": "67", + "waist": "52", + "weight": "34" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "771bc083c125b56ee8a4d44cc15368a1", + "id": "2528402", + "profile": { + "bust": "68", + "height": "141", + "hip": "67", + "waist": "52", + "weight": "34" + } + }, + { + "alias_name": "聖夜の願い", + "alias_name_display": "聖夜の願い", + "hash": "62655a7717c27b92b531b9ac9b78b502", + "id": "2429201", + "profile": { + "bust": "68", + "height": "141", + "hip": "67", + "waist": "52", + "weight": "34" + } + }, + { + "alias_name": "聖夜の願い", + "alias_name_display": "聖夜の願い", + "hash": "50d5232b15631b34fa082829882e26d6", + "id": "2529202", + "profile": { + "bust": "68", + "height": "141", + "hip": "67", + "waist": "52", + "weight": "34" + } + }, + { + "alias_name": "ひかりの創り手", + "alias_name_display": "ひかりの創り手", + "hash": "69c24144c925ad86e1c405c9ca8c6240", + "id": "2433401", + "profile": { + "bust": "68", + "height": "141", + "hip": "67", + "waist": "52", + "weight": "34" + } + }, + { + "alias_name": "ひかりの創り手", + "alias_name_display": "ひかりの創り手", + "hash": "405d2d25977932dbb393803b6f5a37d9", + "id": "2533402", + "profile": { + "bust": "68", + "height": "141", + "hip": "67", + "waist": "52", + "weight": "34" + } + }, + { + "alias_name": "賢者の翼", + "alias_name_display": "賢者の翼", + "hash": "ba20403f63fe0861d9a8a47126a91955", + "id": "2439101", + "profile": { + "bust": "68", + "height": "141", + "hip": "67", + "waist": "52", + "weight": "34" + } + }, + { + "alias_name": "賢者の翼", + "alias_name_display": "賢者の翼", + "hash": "abfa3a0acdc184e3339b139c308eef21", + "id": "2539102", + "profile": { + "bust": "68", + "height": "141", + "hip": "67", + "waist": "52", + "weight": "34" + } + } + ], + "idol_id": 88, + "idol_name": "橘ありす", + "idol_name_display": "橘ありす", + "units": [ + { + "id": "61", + "name": "ももべりー" + }, + { + "id": "66", + "name": "レッドベリィズ" + }, + { + "id": "96", + "name": "チャレンジクッキング" + }, + { + "id": "104", + "name": "ももぺあべりー" + }, + { + "id": "189", + "name": "アインフェリア" + }, + { + "id": "200", + "name": "CAERULA" + }, + { + "id": "214", + "name": "L.M.B.G" + }, + { + "id": "215", + "name": "Project:Krone" + } + ] + }, + { + "aliases": [ + { + "hash": "cf0f5af872286b4401c644ad570b1401", + "id": "2002601", + "profile": { + "bust": "84", + "height": "162", + "hip": "81", + "waist": "54", + "weight": "45" + } + }, + { + "hash": "7e5915c0369bb67f9240d3b0a501a2e5", + "id": "2102602", + "profile": { + "bust": "84", + "height": "162", + "hip": "81", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "新たな一歩", + "alias_name_display": "新たな一歩", + "hash": "ced7d4f37c325fd9e001d90e359b17b1", + "id": "2212001", + "profile": { + "bust": "84", + "height": "162", + "hip": "81", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "新たな一歩", + "alias_name_display": "新たな一歩", + "hash": "b6d1d6f360b6bc3660dc54fbc3fe7df0", + "id": "2312002", + "profile": { + "bust": "84", + "height": "162", + "hip": "81", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "紙背の想い人", + "alias_name_display": "紙背の想い人", + "event": [ + { + "event_id": 705, + "event_name": "第5回ドリームLIVEフェスティバル" + } + ], + "hash": "ce511e82689c364d20fec5608adc6cf3", + "id": "2412001", + "profile": { + "bust": "84", + "height": "162", + "hip": "81", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "紙背の想い人", + "alias_name_display": "紙背の想い人", + "event": [ + { + "event_id": 705, + "event_name": "第5回ドリームLIVEフェスティバル" + } + ], + "hash": "5a726b8a757f4b8cf9119dfa675816b5", + "id": "2512002", + "profile": { + "bust": "84", + "height": "162", + "hip": "81", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "紺碧の境界", + "alias_name_display": "紺碧の境界", + "hash": "96b6a60c3303906015d4032211e4b079", + "id": "2416501", + "profile": { + "bust": "84", + "height": "162", + "hip": "81", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "紺碧の境界", + "alias_name_display": "紺碧の境界", + "hash": "ea4fe8c4505af919b7191de04b281b93", + "id": "2516502", + "profile": { + "bust": "84", + "height": "162", + "hip": "81", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "一瞬の誘惑", + "alias_name_display": "一瞬の誘惑", + "hash": "1106c281db2655156a8e08432d9ab567", + "id": "2421201", + "profile": { + "bust": "84", + "height": "162", + "hip": "81", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "一瞬の誘惑", + "alias_name_display": "一瞬の誘惑", + "hash": "d6cce24ee78944325364cd30bd20fdf5", + "id": "2521202", + "profile": { + "bust": "84", + "height": "162", + "hip": "81", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "8e7cde57106b127e4b8fc0970cb6d65d", + "id": "2421301", + "profile": { + "bust": "84", + "height": "162", + "hip": "81", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "5f4cadb282c332c2de83ff248ce9bb37", + "id": "2521302", + "profile": { + "bust": "84", + "height": "162", + "hip": "81", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "美粧の煌めき", + "alias_name_display": "美粧の煌めき", + "hash": "a883d6a1227bd31f1677b3b616b2c285", + "id": "2431101", + "profile": { + "bust": "84", + "height": "162", + "hip": "81", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "美粧の煌めき", + "alias_name_display": "美粧の煌めき", + "hash": "f9bd60aeeb955a43395e2383c6cde17f", + "id": "2531102", + "profile": { + "bust": "84", + "height": "162", + "hip": "81", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "幽玄の馨香", + "alias_name_display": "幽玄の馨香", + "hash": "fd0a7dfded17e71db2b50a36b4fbfd59", + "id": "2434001", + "profile": { + "bust": "84", + "height": "162", + "hip": "81", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "幽玄の馨香", + "alias_name_display": "幽玄の馨香", + "hash": "1070f27d097b076cfb92c9f35232b43e", + "id": "2534002", + "profile": { + "bust": "84", + "height": "162", + "hip": "81", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "5thアニバーサリー", + "alias_name_display": "5thアニバーサリー", + "event": [ + { + "event_id": 1708, + "event_name": "アイドルプロデュース the 5th Anniversary" + } + ], + "hash": "6e063bdc942ad4b54e2bbca4a78c8954", + "id": "2436301", + "profile": { + "bust": "84", + "height": "162", + "hip": "81", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "5thアニバーサリー", + "alias_name_display": "5thアニバーサリー", + "event": [ + { + "event_id": 1708, + "event_name": "アイドルプロデュース the 5th Anniversary" + } + ], + "hash": "9da100987158cfe8ebba9397d3a982a5", + "id": "2536302", + "profile": { + "bust": "84", + "height": "162", + "hip": "81", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "5thアニバーサリー・S", + "alias_name_display": "5thアニバーサリー・S", + "event": [ + { + "event_id": 1708, + "event_name": "アイドルプロデュース the 5th Anniversary" + } + ], + "hash": "611fb0f2780409db7dd4c429850216dd", + "id": "2436401", + "profile": { + "bust": "84", + "height": "162", + "hip": "81", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "5thアニバーサリー・S", + "alias_name_display": "5thアニバーサリー・S", + "event": [ + { + "event_id": 1708, + "event_name": "アイドルプロデュース the 5th Anniversary" + } + ], + "hash": "bd02113f22c12494c713a43bcc0c8e90", + "id": "2536402", + "profile": { + "bust": "84", + "height": "162", + "hip": "81", + "waist": "54", + "weight": "45" + } + } + ], + "idol_id": 89, + "idol_name": "鷺沢文香", + "idol_name_display": "鷺沢文香", + "units": [ + { + "id": "14", + "name": "月下氷姫" + }, + { + "id": "141", + "name": "トランクィル・ウィスパー" + }, + { + "id": "189", + "name": "アインフェリア" + }, + { + "id": "200", + "name": "CAERULA" + }, + { + "id": "215", + "name": "Project:Krone" + } + ] + }, + { + "aliases": [ + { + "hash": "3ae96bc5997dd574e80cdcac87d694c2", + "id": "2002701", + "profile": { + "bust": "85", + "height": "160", + "hip": "83", + "waist": "56", + "weight": "45" + } + }, + { + "hash": "27510dbd766f2e9408fb6b05d91764a1", + "id": "2102702", + "profile": { + "bust": "85", + "height": "160", + "hip": "83", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "スポーティスタイル", + "alias_name_display": "スポーティスタイル", + "event": [ + { + "event_id": 212, + "event_name": "アイドルサバイバル 秋の大運動会" + } + ], + "hash": "62bcced9a07ecf9df301f5c2b4e105bf", + "id": "2212401", + "profile": { + "bust": "85", + "height": "160", + "hip": "83", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "スポーティスタイル", + "alias_name_display": "スポーティスタイル", + "event": [ + { + "event_id": 212, + "event_name": "アイドルサバイバル 秋の大運動会" + } + ], + "hash": "acb305526999e1b7c54b53323f668bb8", + "id": "2312402", + "profile": { + "bust": "85", + "height": "160", + "hip": "83", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "学園の生徒", + "alias_name_display": "学園の生徒", + "event": [ + { + "event_id": 412, + "event_name": "聖靴学園の七不思議" + } + ], + "hash": "3043e305efbdf3ff8342c59044ee665c", + "id": "2215401", + "profile": { + "bust": "85", + "height": "160", + "hip": "83", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "学園の生徒", + "alias_name_display": "学園の生徒", + "event": [ + { + "event_id": 412, + "event_name": "聖靴学園の七不思議" + } + ], + "hash": "4c4c56b98f1f364f93fe0216268d1660", + "id": "2315402", + "profile": { + "bust": "85", + "height": "160", + "hip": "83", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "学園の生徒・H", + "alias_name_display": "学園の生徒・H", + "event": [ + { + "event_id": 412, + "event_name": "聖靴学園の七不思議" + } + ], + "hash": "a406823b39606adb4354565b01bff9fa", + "id": "2215501", + "profile": { + "bust": "85", + "height": "160", + "hip": "83", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "学園の生徒・H", + "alias_name_display": "学園の生徒・H", + "event": [ + { + "event_id": 412, + "event_name": "聖靴学園の七不思議" + } + ], + "hash": "5a21f9f09b9988b7515d8f47bc9e2359", + "id": "2315502", + "profile": { + "bust": "85", + "height": "160", + "hip": "83", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "秋色温泉", + "alias_name_display": "秋色温泉", + "hash": "b3791226c1a2f96b7cba3a7df7e652ee", + "id": "2218601", + "profile": { + "bust": "85", + "height": "160", + "hip": "83", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "秋色温泉", + "alias_name_display": "秋色温泉", + "hash": "bfe83ddb2201ea21bafb1abb53946e55", + "id": "2318602", + "profile": { + "bust": "85", + "height": "160", + "hip": "83", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ロワイヤルスタイルND", + "alias_name_display": "ロワイヤルスタイルND", + "event": [ + { + "event_id": 818, + "event_name": "アイドルLIVEロワイヤル 雨の日SP" + } + ], + "hash": "5237b11dced2bb4f4e34ce15ba3f584c", + "id": "2227201", + "profile": { + "bust": "85", + "height": "160", + "hip": "83", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ロワイヤルスタイルND", + "alias_name_display": "ロワイヤルスタイルND", + "event": [ + { + "event_id": 818, + "event_name": "アイドルLIVEロワイヤル 雨の日SP" + } + ], + "hash": "9ba2e2f6ffa97f877ba9e7ed81fa0e3d", + "id": "2327202", + "profile": { + "bust": "85", + "height": "160", + "hip": "83", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ワイルドフレンズ", + "alias_name_display": "ワイルドフレンズ", + "hash": "85b14867dbae15eda96607c230a961f1", + "id": "2231501", + "profile": { + "bust": "85", + "height": "160", + "hip": "83", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ワイルドフレンズ", + "alias_name_display": "ワイルドフレンズ", + "hash": "8c23ba46ce84b6f62c65bfc36b35bae3", + "id": "2331502", + "profile": { + "bust": "85", + "height": "160", + "hip": "83", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "シークレットナイト", + "alias_name_display": "シークレットナイト", + "hash": "a7b45e7ba33a0c677cc254a7ea905032", + "id": "2411801", + "profile": { + "bust": "85", + "height": "160", + "hip": "83", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "シークレットナイト", + "alias_name_display": "シークレットナイト", + "hash": "a1c20f3bdb91545ae7d704e5be568d0a", + "id": "2511802", + "profile": { + "bust": "85", + "height": "160", + "hip": "83", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ハイ・リベレーション", + "alias_name_display": "ハイ・リベレーション", + "event": [ + { + "event_id": 811, + "event_name": "第11回アイドルLIVEロワイヤル" + } + ], + "hash": "f7ced8439833097f85a863260ccf10aa", + "id": "2422901", + "profile": { + "bust": "85", + "height": "160", + "hip": "83", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ハイ・リベレーション", + "alias_name_display": "ハイ・リベレーション", + "event": [ + { + "event_id": 811, + "event_name": "第11回アイドルLIVEロワイヤル" + } + ], + "hash": "ca04cfd1a0a7a89bb9890e61953e5623", + "id": "2522902", + "profile": { + "bust": "85", + "height": "160", + "hip": "83", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "静寂のひととき", + "alias_name_display": "静寂のひととき", + "hash": "0af6c0578c3277b6cb7f183ae9cbb267", + "id": "2428001", + "profile": { + "bust": "85", + "height": "160", + "hip": "83", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "静寂のひととき", + "alias_name_display": "静寂のひととき", + "hash": "615b301570633d1f4eeb36d15fa9c890", + "id": "2528002", + "profile": { + "bust": "85", + "height": "160", + "hip": "83", + "waist": "56", + "weight": "45" + } + } + ], + "idol_id": 90, + "idol_name": "八神マキノ", + "idol_name_display": "八神マキノ", + "units": [ + { + "id": "143", + "name": "ファタ・モルガーナ" + }, + { + "id": "154", + "name": "秋色温泉" + }, + { + "id": "210", + "name": "ロワイヤルスタイルND" + } + ] + }, + { + "aliases": [ + { + "hash": "3fd787fa963d607b8b8a5686e59f5b29", + "id": "2002801", + "profile": { + "bust": "75", + "height": "150", + "hip": "78", + "waist": "54", + "weight": "40" + } + }, + { + "hash": "a7890d1785a7965cbf8fbb305cba821a", + "id": "2102802", + "profile": { + "bust": "75", + "height": "150", + "hip": "78", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "ニューイヤースタイル", + "alias_name_display": "ニューイヤースタイル", + "event": [ + { + "event_id": 509, + "event_name": "新春LIVEツアーカーニバル" + } + ], + "hash": "51c0525ec41be4004e36833ae561a3c8", + "id": "2213601", + "profile": { + "bust": "75", + "height": "150", + "hip": "78", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "ニューイヤースタイル", + "alias_name_display": "ニューイヤースタイル", + "event": [ + { + "event_id": 509, + "event_name": "新春LIVEツアーカーニバル" + } + ], + "hash": "aeac456b247d2e9074034bcd6b3a8aff", + "id": "2313602", + "profile": { + "bust": "75", + "height": "150", + "hip": "78", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "ロックI.C", + "alias_name_display": "ロックI.C", + "event": [ + { + "event_id": 1202, + "event_name": "目指せロックスター アイドルチャレンジ" + } + ], + "hash": "6f8adbc17fd343e56d1bc5fe47bb72de", + "id": "2316902", + "profile": { + "bust": "75", + "height": "150", + "hip": "78", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "クリスマスプレゼント", + "alias_name_display": "クリスマスプレゼント", + "hash": "96ac982bc7ce504882361acfcefae89c", + "id": "2219001", + "profile": { + "bust": "75", + "height": "150", + "hip": "78", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "クリスマスプレゼント", + "alias_name_display": "クリスマスプレゼント", + "hash": "caf416dcfcab3698f017ed2b1de72c43", + "id": "2319002", + "profile": { + "bust": "75", + "height": "150", + "hip": "78", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "ナチュラルハート", + "alias_name_display": "ナチュラルハート", + "hash": "a17821cdbc53f0db2717bbe7e45e74c4", + "id": "2225801", + "profile": { + "bust": "75", + "height": "150", + "hip": "78", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "ナチュラルハート", + "alias_name_display": "ナチュラルハート", + "hash": "12bf848ee659aa5553744ee513f0e8b7", + "id": "2325802", + "profile": { + "bust": "75", + "height": "150", + "hip": "78", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "ミステリアスシエラザード", + "alias_name_display": "ミステリアスシエラザード", + "hash": "d3fc8f9b8afc44254988cc535a1264b1", + "id": "2413401", + "profile": { + "bust": "75", + "height": "150", + "hip": "78", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "ミステリアスシエラザード", + "alias_name_display": "ミステリアスシエラザード", + "hash": "3060ec3d09520102c7f6b50765d784d4", + "id": "2513402", + "profile": { + "bust": "75", + "height": "150", + "hip": "78", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "ガールズロッカー", + "alias_name_display": "ガールズロッカー", + "event": [ + { + "event_id": 1202, + "event_name": "目指せロックスター アイドルチャレンジ" + } + ], + "hash": "f26ef223586e5490260270a39bb5fa31", + "id": "2416301", + "profile": { + "bust": "75", + "height": "150", + "hip": "78", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "ガールズロッカー", + "alias_name_display": "ガールズロッカー", + "event": [ + { + "event_id": 1202, + "event_name": "目指せロックスター アイドルチャレンジ" + } + ], + "hash": "980400c2b1acc1508f6d67e7ac6d1f6e", + "id": "2516302", + "profile": { + "bust": "75", + "height": "150", + "hip": "78", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "ガールズロッカー・S", + "alias_name_display": "ガールズロッカー・S", + "event": [ + { + "event_id": 1202, + "event_name": "目指せロックスター アイドルチャレンジ" + } + ], + "hash": "8dc670968a6e919d6dce89641929090f", + "id": "2416401", + "profile": { + "bust": "75", + "height": "150", + "hip": "78", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "ガールズロッカー・S", + "alias_name_display": "ガールズロッカー・S", + "event": [ + { + "event_id": 1202, + "event_name": "目指せロックスター アイドルチャレンジ" + } + ], + "hash": "e57ab2575397046065c160f0d2c53cbb", + "id": "2516402", + "profile": { + "bust": "75", + "height": "150", + "hip": "78", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "みんなとキャンプ", + "alias_name_display": "みんなとキャンプ", + "event": [ + { + "event_id": 1701, + "event_name": "アイドルプロデュース はじめてのキャンプ" + } + ], + "hash": "4affe65c63072cef2dc3890af05eba67", + "id": "2423601", + "profile": { + "bust": "75", + "height": "150", + "hip": "78", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "みんなとキャンプ", + "alias_name_display": "みんなとキャンプ", + "event": [ + { + "event_id": 1701, + "event_name": "アイドルプロデュース はじめてのキャンプ" + } + ], + "hash": "a122383313a4c8d66d98ea71f6505a26", + "id": "2523602", + "profile": { + "bust": "75", + "height": "150", + "hip": "78", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "うれしいキャンプ", + "alias_name_display": "うれしいキャンプ", + "event": [ + { + "event_id": 1701, + "event_name": "アイドルプロデュース はじめてのキャンプ" + } + ], + "hash": "c8c7f7f51c1fc53cd47bd499b0c9b05c", + "id": "2423701", + "profile": { + "bust": "75", + "height": "150", + "hip": "78", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "うれしいキャンプ", + "alias_name_display": "うれしいキャンプ", + "event": [ + { + "event_id": 1701, + "event_name": "アイドルプロデュース はじめてのキャンプ" + } + ], + "hash": "74ec8a61bbb3c3b2d031f676d1287cf4", + "id": "2523702", + "profile": { + "bust": "75", + "height": "150", + "hip": "78", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "寂寥のアズラク", + "alias_name_display": "寂寥のアズラク", + "hash": "e01c7d5a98d641813f37d6598a51e0c4", + "id": "2427501", + "profile": { + "bust": "75", + "height": "150", + "hip": "78", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "寂寥のアズラク", + "alias_name_display": "寂寥のアズラク", + "hash": "9960752141b9ff3b336b4a990351dfb0", + "id": "2527502", + "profile": { + "bust": "75", + "height": "150", + "hip": "78", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "太陽の歌姫", + "alias_name_display": "太陽の歌姫", + "event": [ + { + "event_id": "029", + "event_name": "第29回プロダクションマッチフェスティバル" + } + ], + "hash": "fa9965fce6b39f63942891b5f91b323b", + "id": "2433301", + "profile": { + "bust": "75", + "height": "150", + "hip": "78", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "太陽の歌姫", + "alias_name_display": "太陽の歌姫", + "event": [ + { + "event_id": "029", + "event_name": "第29回プロダクションマッチフェスティバル" + } + ], + "hash": "c938a92ffa13dbb1932456bec25bef1e", + "id": "2533302", + "profile": { + "bust": "75", + "height": "150", + "hip": "78", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "デザートマミー", + "alias_name_display": "デザートマミー", + "hash": "c05efe35b1a2bbf741f9ca90818585c2", + "id": "2437601", + "profile": { + "bust": "75", + "height": "150", + "hip": "78", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "デザートマミー", + "alias_name_display": "デザートマミー", + "hash": "d5736287d3ece82c8ab060128aeceaeb", + "id": "2537602", + "profile": { + "bust": "75", + "height": "150", + "hip": "78", + "waist": "54", + "weight": "40" + } + } + ], + "idol_id": 91, + "idol_name": "ライラ", + "idol_name_display": "ライラ", + "units": [ + { + "id": "31", + "name": "ソル・カマル" + }, + { + "id": "68", + "name": "ロボフレンズ" + }, + { + "id": "98", + "name": "ニューイヤースタイル" + }, + { + "id": "169", + "name": "FOUR PIECE" + } + ] + }, + { + "aliases": [ + { + "hash": "fbd7e64d96b438e45db27f0392b08a06", + "id": "2002901", + "profile": { + "bust": "78", + "height": "151", + "hip": "77", + "waist": "55", + "weight": "41" + } + }, + { + "hash": "5395fd824474ffe5d08eb56efafccff0", + "id": "2102902", + "profile": { + "bust": "78", + "height": "151", + "hip": "77", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ワーキング・シー", + "alias_name_display": "ワーキング・シー", + "hash": "634592fc7441fccfaa2653bda666460e", + "id": "2215601", + "profile": { + "bust": "78", + "height": "151", + "hip": "77", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ワーキング・シー", + "alias_name_display": "ワーキング・シー", + "hash": "f078bb2a8d09c75f4ae06e3a659f814c", + "id": "2315602", + "profile": { + "bust": "78", + "height": "151", + "hip": "77", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ナイトパーティー", + "alias_name_display": "ナイトパーティー", + "hash": "6960c9142018589d4bb627b688e7581f", + "id": "2220201", + "profile": { + "bust": "78", + "height": "151", + "hip": "77", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ナイトパーティー", + "alias_name_display": "ナイトパーティー", + "hash": "d59a5d065863cd6c391532b32cb33433", + "id": "2320202", + "profile": { + "bust": "78", + "height": "151", + "hip": "77", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "エンゼルフィッシュ", + "alias_name_display": "エンゼルフィッシュ", + "hash": "8026b66e97fce87009b127ea8e4f5638", + "id": "2223701", + "profile": { + "bust": "78", + "height": "151", + "hip": "77", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "エンゼルフィッシュ", + "alias_name_display": "エンゼルフィッシュ", + "hash": "a5a7eac755571cf89d6e63834a41c2b2", + "id": "2323702", + "profile": { + "bust": "78", + "height": "151", + "hip": "77", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "バレンタインI.C", + "alias_name_display": "バレンタインI.C", + "event": [ + { + "event_id": 1209, + "event_name": "アイドルチャレンジ チャレンジクッキング バレンタイン編" + } + ], + "hash": "521e105840ac8d626c9a5e3f05f3b20c", + "id": "2325002", + "profile": { + "bust": "78", + "height": "151", + "hip": "77", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ぴちぴちショコラティエ", + "alias_name_display": "ぴちぴちショコラティエ", + "event": [ + { + "event_id": 1906, + "event_name": "ディアリースターハート ~ラブキュンバレンタイン~" + } + ], + "hash": "3714561ec869554fdc672d9c792f71fe", + "id": "2330402", + "profile": { + "bust": "78", + "height": "151", + "hip": "77", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "シーサイドチアー", + "alias_name_display": "シーサイドチアー", + "event": [ + { + "event_id": 1104, + "event_name": "プロダクション対抗トークバトルショーinSUMMER" + } + ], + "hash": "71d62a972ec5e1ed2959e6ce43c9b60c", + "id": "2416601", + "profile": { + "bust": "78", + "height": "151", + "hip": "77", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "シーサイドチアー", + "alias_name_display": "シーサイドチアー", + "event": [ + { + "event_id": 1104, + "event_name": "プロダクション対抗トークバトルショーinSUMMER" + } + ], + "hash": "64691a86814fdcf3818572ed7a67fbcf", + "id": "2516602", + "profile": { + "bust": "78", + "height": "151", + "hip": "77", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "いきものがかり", + "alias_name_display": "いきものがかり", + "event": [ + { + "event_id": "022", + "event_name": "第22回プロダクションマッチフェスティバル" + } + ], + "hash": "9bc92b6f7e0699258e78f8cad8449778", + "id": "2424901", + "profile": { + "bust": "78", + "height": "151", + "hip": "77", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "いきものがかり", + "alias_name_display": "いきものがかり", + "event": [ + { + "event_id": "022", + "event_name": "第22回プロダクションマッチフェスティバル" + } + ], + "hash": "e86688b7a544dfa38a8b1f939061162d", + "id": "2524902", + "profile": { + "bust": "78", + "height": "151", + "hip": "77", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "るんるんクッキング", + "alias_name_display": "るんるんクッキング", + "event": [ + { + "event_id": 1209, + "event_name": "アイドルチャレンジ チャレンジクッキング バレンタイン編" + } + ], + "hash": "43239b593293aa795a1b4375ca800967", + "id": "2430701", + "profile": { + "bust": "78", + "height": "151", + "hip": "77", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "るんるんクッキング", + "alias_name_display": "るんるんクッキング", + "event": [ + { + "event_id": 1209, + "event_name": "アイドルチャレンジ チャレンジクッキング バレンタイン編" + } + ], + "hash": "8b764d55696b882d6791b7a723bc88e1", + "id": "2530702", + "profile": { + "bust": "78", + "height": "151", + "hip": "77", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "るんるんクッキング・S", + "alias_name_display": "るんるんクッキング・S", + "event": [ + { + "event_id": 1209, + "event_name": "アイドルチャレンジ チャレンジクッキング バレンタイン編" + } + ], + "hash": "a33b7181a7202f0873a00ccba8392539", + "id": "2430801", + "profile": { + "bust": "78", + "height": "151", + "hip": "77", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "るんるんクッキング・S", + "alias_name_display": "るんるんクッキング・S", + "event": [ + { + "event_id": 1209, + "event_name": "アイドルチャレンジ チャレンジクッキング バレンタイン編" + } + ], + "hash": "bc6e9c5a4b28b1669ceb394193011235", + "id": "2530802", + "profile": { + "bust": "78", + "height": "151", + "hip": "77", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "幻視霊縛", + "alias_name_display": "幻視霊縛", + "event": [ + { + "event_id": 1903, + "event_name": "怪奇公演 心霊探偵の事件簿" + } + ], + "hash": "e9a1335372f00626a11dcee9481389e6", + "id": "2434401", + "profile": { + "bust": "78", + "height": "151", + "hip": "77", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "幻視霊縛", + "alias_name_display": "幻視霊縛", + "event": [ + { + "event_id": 1903, + "event_name": "怪奇公演 心霊探偵の事件簿" + } + ], + "hash": "3680d1991b44b9d38b902639964525ed", + "id": "2534402", + "profile": { + "bust": "78", + "height": "151", + "hip": "77", + "waist": "55", + "weight": "41" + } + } + ], + "idol_id": 92, + "idol_name": "浅利七海", + "idol_name_display": "浅利七海", + "units": [ + { + "id": "143", + "name": "ファタ・モルガーナ" + } + ] + }, + { + "aliases": [ + { + "hash": "7213b5c8bf9bcf2661deeed916c04839", + "id": "2200101", + "profile": { + "bust": "90", + "height": "158", + "hip": "81", + "waist": "58", + "weight": "46" + } + }, + { + "hash": "f46be86c4472b60b8db9adabf5a4ed8c", + "id": "2300102", + "profile": { + "bust": "90", + "height": "158", + "hip": "81", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "イタリアンスタイル", + "alias_name_display": "イタリアンスタイル", + "event": [ + { + "event_id": 503, + "event_name": "アイドルLIVEツアーinイタリア" + } + ], + "hash": "f97e412122f73ccd9b6b44d7d60b19ba", + "id": "2208701", + "profile": { + "bust": "90", + "height": "158", + "hip": "81", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "イタリアンスタイル", + "alias_name_display": "イタリアンスタイル", + "event": [ + { + "event_id": 503, + "event_name": "アイドルLIVEツアーinイタリア" + } + ], + "hash": "a1432f07870b768fbb65fac3fb044ccd", + "id": "2308702", + "profile": { + "bust": "90", + "height": "158", + "hip": "81", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "バニーガール", + "alias_name_display": "バニーガール", + "hash": "fe622a9df6d27c14fe21f524b0814f93", + "id": "2211701", + "profile": { + "bust": "90", + "height": "158", + "hip": "81", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "バニーガール", + "alias_name_display": "バニーガール", + "hash": "56032e82e99af67ca89d0cc1e1760238", + "id": "2311702", + "profile": { + "bust": "90", + "height": "158", + "hip": "81", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "T.B.チアーズ", + "alias_name_display": "T.B.チアーズ", + "event": [ + { + "event_id": 1102, + "event_name": "第2回プロダクション対抗トークバトルショー" + } + ], + "hash": "6c847b7c95a48dab0fc61b45b6c66522", + "id": "2215701", + "profile": { + "bust": "90", + "height": "158", + "hip": "81", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "T.B.チアーズ", + "alias_name_display": "T.B.チアーズ", + "event": [ + { + "event_id": 1102, + "event_name": "第2回プロダクション対抗トークバトルショー" + } + ], + "hash": "c6e605ee7213927f28a0fe609ecaed58", + "id": "2315702", + "profile": { + "bust": "90", + "height": "158", + "hip": "81", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "SUHADAスタイル", + "alias_name_display": "SUHADAスタイル", + "hash": "d66165c8ec5795a58dfddd75ea490ce4", + "id": "2219101", + "profile": { + "bust": "90", + "height": "158", + "hip": "81", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "SUHADAスタイル", + "alias_name_display": "SUHADAスタイル", + "hash": "c2c0c4be7dd2a5321b7d31af6e510da6", + "id": "2319102", + "profile": { + "bust": "90", + "height": "158", + "hip": "81", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "ビター&スウィート", + "alias_name_display": "ビター&スウィート", + "hash": "0cd05f44a7645e7e5226505b77095927", + "id": "2224901", + "profile": { + "bust": "90", + "height": "158", + "hip": "81", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "ビター&スウィート", + "alias_name_display": "ビター&スウィート", + "hash": "82c55a45c33211e07f84a2194e7c37c1", + "id": "2324902", + "profile": { + "bust": "90", + "height": "158", + "hip": "81", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "ヴィクトリアの微笑", + "alias_name_display": "ヴィクトリアの微笑", + "hash": "79df8bef976ffbffa161c1640c2e5f54", + "id": "2229701", + "profile": { + "bust": "90", + "height": "158", + "hip": "81", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "ヴィクトリアの微笑", + "alias_name_display": "ヴィクトリアの微笑", + "hash": "6a82c3aa225dd4352788e2c9edff4933", + "id": "2329702", + "profile": { + "bust": "90", + "height": "158", + "hip": "81", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "ワールドイズマイン", + "alias_name_display": "ワールドイズマイン", + "event": [ + { + "event_id": 704, + "event_name": "第4回ドリームLIVEフェスティバル" + } + ], + "hash": "695cc79fac96163d7f505021b1824512", + "id": "2410701", + "profile": { + "bust": "90", + "height": "158", + "hip": "81", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "ワールドイズマイン", + "alias_name_display": "ワールドイズマイン", + "event": [ + { + "event_id": 704, + "event_name": "第4回ドリームLIVEフェスティバル" + } + ], + "hash": "7175e4b23da69f4db80c2721b4010a14", + "id": "2510702", + "profile": { + "bust": "90", + "height": "158", + "hip": "81", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "パーフェクトティーチャー", + "alias_name_display": "パーフェクトティーチャー", + "event": [ + { + "event_id": 520, + "event_name": "青春公演 シング・ア・ソング" + } + ], + "hash": "0706adc16bd17b7911c6f0c486c9288b", + "id": "2425401", + "profile": { + "bust": "90", + "height": "158", + "hip": "81", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "パーフェクトティーチャー", + "alias_name_display": "パーフェクトティーチャー", + "event": [ + { + "event_id": 520, + "event_name": "青春公演 シング・ア・ソング" + } + ], + "hash": "6a2e07a28b5eb41aba421027c684c0dc", + "id": "2525402", + "profile": { + "bust": "90", + "height": "158", + "hip": "81", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "飽くなき挑戦者", + "alias_name_display": "飽くなき挑戦者", + "event": [ + { + "event_id": 1211, + "event_name": "目指せ山頂! アイドルチャレンジ" + } + ], + "hash": "af4ef2fa96ffca2a1b2747a49dd05f04", + "id": "2433901", + "profile": { + "bust": "90", + "height": "158", + "hip": "81", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "飽くなき挑戦者", + "alias_name_display": "飽くなき挑戦者", + "event": [ + { + "event_id": 1211, + "event_name": "目指せ山頂! アイドルチャレンジ" + } + ], + "hash": "cc0698a6cf2cb1334013fe8b8ade9708", + "id": "2533902", + "profile": { + "bust": "90", + "height": "158", + "hip": "81", + "waist": "58", + "weight": "46" + } + } + ], + "idol_id": 93, + "idol_name": "ヘレン", + "idol_name_display": "ヘレン", + "units": [ + { + "id": "86", + "name": "イタリアンスタイル" + } + ] + }, + { + "aliases": [ + { + "hash": "259ea6a1a4bfe54feafe3adea84e09fc", + "id": "2200201", + "profile": { + "bust": "90", + "height": "160", + "hip": "86", + "waist": "56", + "weight": "47" + } + }, + { + "hash": "79439fa45b259cec8e53788c227f295d", + "id": "2300202", + "profile": { + "bust": "90", + "height": "160", + "hip": "86", + "waist": "56", + "weight": "47" + } + }, + { + "alias_name": "テーマパーク", + "alias_name_display": "テーマパーク", + "event": [ + { + "event_id": 203, + "event_name": "アイドルサバイバルinテーマパーク" + } + ], + "hash": "980b9cd09101e0ace7a9a9a8a7025643", + "id": "2203801", + "profile": { + "bust": "90", + "height": "160", + "hip": "86", + "waist": "56", + "weight": "47" + } + }, + { + "alias_name": "テーマパーク", + "alias_name_display": "テーマパーク", + "event": [ + { + "event_id": 203, + "event_name": "アイドルサバイバルinテーマパーク" + } + ], + "hash": "d925b1db151da01b386045506ea410bf", + "id": "2303802", + "profile": { + "bust": "90", + "height": "160", + "hip": "86", + "waist": "56", + "weight": "47" + } + }, + { + "alias_name": "ハロウィンパーティー", + "alias_name_display": "ハロウィンパーティー", + "hash": "db6604d22bb5f0f5dc9debc86ffd2c0e", + "id": "2206201", + "profile": { + "bust": "90", + "height": "160", + "hip": "86", + "waist": "56", + "weight": "47" + } + }, + { + "alias_name": "ハロウィンパーティー", + "alias_name_display": "ハロウィンパーティー", + "hash": "4f126d663ceb6c43a28ea7b8ca06698c", + "id": "2306202", + "profile": { + "bust": "90", + "height": "160", + "hip": "86", + "waist": "56", + "weight": "47" + } + }, + { + "alias_name": "ロッキンヴォーカル", + "alias_name_display": "ロッキンヴォーカル", + "event": [ + { + "event_id": "011", + "event_name": "第11回プロダクションマッチフェスティバル" + } + ], + "hash": "81d108a67d9d1c4e1d850886c8b4e5f6", + "id": "2210901", + "profile": { + "bust": "90", + "height": "160", + "hip": "86", + "waist": "56", + "weight": "47" + } + }, + { + "alias_name": "ロッキンヴォーカル", + "alias_name_display": "ロッキンヴォーカル", + "event": [ + { + "event_id": "011", + "event_name": "第11回プロダクションマッチフェスティバル" + } + ], + "hash": "8de0a568c134685e6c62b1c1ce5904fe", + "id": "2310902", + "profile": { + "bust": "90", + "height": "160", + "hip": "86", + "waist": "56", + "weight": "47" + } + }, + { + "alias_name": "熱気の中で", + "alias_name_display": "熱気の中で", + "hash": "01c2160e64c52a3951f9beb6bd18b7ae", + "id": "2217201", + "profile": { + "bust": "90", + "height": "160", + "hip": "86", + "waist": "56", + "weight": "47" + } + }, + { + "alias_name": "熱気の中で", + "alias_name_display": "熱気の中で", + "hash": "631a32c8f240c49e29c4c8ca97c92a8d", + "id": "2317202", + "profile": { + "bust": "90", + "height": "160", + "hip": "86", + "waist": "56", + "weight": "47" + } + }, + { + "alias_name": "さわやかスポーツ", + "alias_name_display": "さわやかスポーツ", + "hash": "bf035f7688283058e98bcf8488a05dcc", + "id": "2220901", + "profile": { + "bust": "90", + "height": "160", + "hip": "86", + "waist": "56", + "weight": "47" + } + }, + { + "alias_name": "さわやかスポーツ", + "alias_name_display": "さわやかスポーツ", + "hash": "5dd271c659752103724376c0a30163ce", + "id": "2320902", + "profile": { + "bust": "90", + "height": "160", + "hip": "86", + "waist": "56", + "weight": "47" + } + }, + { + "alias_name": "イカした帽子屋", + "alias_name_display": "イカした帽子屋", + "event": [ + { + "event_id": 1901, + "event_name": "童話公演 気まぐれアリスと不思議の国" + } + ], + "hash": "e4f66d8edf006f5f00a7098cadc49f7a", + "id": "2325702", + "profile": { + "bust": "90", + "height": "160", + "hip": "86", + "waist": "56", + "weight": "47" + } + }, + { + "alias_name": "サマービーチ", + "alias_name_display": "サマービーチ", + "hash": "bb8965c51ea8824c9ed23b586af4c99e", + "id": "2227801", + "profile": { + "bust": "90", + "height": "160", + "hip": "86", + "waist": "56", + "weight": "47" + } + }, + { + "alias_name": "サマービーチ", + "alias_name_display": "サマービーチ", + "hash": "f8b86ed000791b83276ea40a9e06916a", + "id": "2327802", + "profile": { + "bust": "90", + "height": "160", + "hip": "86", + "waist": "56", + "weight": "47" + } + }, + { + "alias_name": "ロッキンヴォーカリスト", + "alias_name_display": "ロッキンヴォーカリスト", + "event": [ + { + "event_id": 1001, + "event_name": "プロダクション対抗ドリームLIVEフェスティバル" + } + ], + "hash": "a30f4d848b8bef6dfe1da50c4358f73a", + "id": "2411301", + "profile": { + "bust": "90", + "height": "160", + "hip": "86", + "waist": "56", + "weight": "47" + } + }, + { + "alias_name": "ロッキンヴォーカリスト", + "alias_name_display": "ロッキンヴォーカリスト", + "event": [ + { + "event_id": 1001, + "event_name": "プロダクション対抗ドリームLIVEフェスティバル" + } + ], + "hash": "84e0685b558f54a0d3e2633da07cd8e6", + "id": "2511302", + "profile": { + "bust": "90", + "height": "160", + "hip": "86", + "waist": "56", + "weight": "47" + } + }, + { + "alias_name": "ミュージックスクリーム", + "alias_name_display": "ミュージックスクリーム", + "event": [ + { + "event_id": 715, + "event_name": "第15回ドリームLIVEフェスティバル" + } + ], + "hash": "c6803990cf321f09db09d1270f3e7141", + "id": "2426601", + "profile": { + "bust": "90", + "height": "160", + "hip": "86", + "waist": "56", + "weight": "47" + } + }, + { + "alias_name": "ミュージックスクリーム", + "alias_name_display": "ミュージックスクリーム", + "event": [ + { + "event_id": 715, + "event_name": "第15回ドリームLIVEフェスティバル" + } + ], + "hash": "9c7924540506c8bb3a815a165f9ee1f5", + "id": "2526602", + "profile": { + "bust": "90", + "height": "160", + "hip": "86", + "waist": "56", + "weight": "47" + } + }, + { + "alias_name": "セトルダウンソウル", + "alias_name_display": "セトルダウンソウル", + "hash": "55fe8f7624359d534974ec4f3bac7ea9", + "id": "2437001", + "profile": { + "bust": "90", + "height": "160", + "hip": "86", + "waist": "56", + "weight": "47" + } + }, + { + "alias_name": "セトルダウンソウル", + "alias_name_display": "セトルダウンソウル", + "hash": "7c6d691dff4f6353fdf2ab67ccea3e35", + "id": "2537002", + "profile": { + "bust": "90", + "height": "160", + "hip": "86", + "waist": "56", + "weight": "47" + } + } + ], + "idol_id": 94, + "idol_name": "松永涼", + "idol_name_display": "松永涼", + "units": [ + { + "id": "9", + "name": "エルドリッチ・ロアテラー" + }, + { + "id": "176", + "name": "炎陣" + }, + { + "id": "180", + "name": "ハロウィンパーティー" + } + ] + }, + { + "aliases": [ + { + "hash": "052c63f721faba1ce3c0ee0b14c45bb4", + "id": "2200301", + "profile": { + "bust": "84", + "height": "164", + "hip": "82", + "waist": "56", + "weight": "45" + } + }, + { + "hash": "e33f0418d795637c98fb9997ef090cb1", + "id": "2300302", + "profile": { + "bust": "84", + "height": "164", + "hip": "82", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "スポーツ祭", + "alias_name_display": "スポーツ祭", + "hash": "eee398b4bef19b879c761dd2c7bc3723", + "id": "2204401", + "profile": { + "bust": "84", + "height": "164", + "hip": "82", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "スポーツ祭", + "alias_name_display": "スポーツ祭", + "hash": "5880ef8815cbbc4493ef5d6ce5c3e6d0", + "id": "2304402", + "profile": { + "bust": "84", + "height": "164", + "hip": "82", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "セレブレティJKT", + "alias_name_display": "セレブレティJKT", + "hash": "5d5e16f335315c45d1854ad76f7a86e9", + "id": "2215301", + "profile": { + "bust": "84", + "height": "164", + "hip": "82", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "セレブレティJKT", + "alias_name_display": "セレブレティJKT", + "hash": "e07ba1df924d713909c3e34b14cf279a", + "id": "2315302", + "profile": { + "bust": "84", + "height": "164", + "hip": "82", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ブライダルセレクション", + "alias_name_display": "ブライダルセレクション", + "hash": "27fac6d6c916869f2ebf1b5dfd28e9eb", + "id": "2221401", + "profile": { + "bust": "84", + "height": "164", + "hip": "82", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ブライダルセレクション", + "alias_name_display": "ブライダルセレクション", + "hash": "fa39ed43012f2f2da72464c7f1438169", + "id": "2321402", + "profile": { + "bust": "84", + "height": "164", + "hip": "82", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ファンサーキット", + "alias_name_display": "ファンサーキット", + "hash": "91c81b332d95258dbe1ba94bbfd74d12", + "id": "2226401", + "profile": { + "bust": "84", + "height": "164", + "hip": "82", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ファンサーキット", + "alias_name_display": "ファンサーキット", + "hash": "f49aaf4a024810dd9fa9ab09a70e9d72", + "id": "2326402", + "profile": { + "bust": "84", + "height": "164", + "hip": "82", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ステージディーヴァ", + "alias_name_display": "ステージディーヴァ", + "hash": "b3f7ea5dd24289a103d9f2968646218c", + "id": "2407410", + "profile": { + "bust": "84", + "height": "164", + "hip": "82", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ステージディーヴァ", + "alias_name_display": "ステージディーヴァ", + "hash": "0535db74b682fd7e4e479ea31d42c440", + "id": "2507411", + "profile": { + "bust": "84", + "height": "164", + "hip": "82", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "美しき品位", + "alias_name_display": "美しき品位", + "event": [ + { + "event_id": 708, + "event_name": "第8回ドリームLIVEフェスティバル" + } + ], + "hash": "58f99d1d3a87002b47bd50d93fd5bb7d", + "id": "2417101", + "profile": { + "bust": "84", + "height": "164", + "hip": "82", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "美しき品位", + "alias_name_display": "美しき品位", + "event": [ + { + "event_id": 708, + "event_name": "第8回ドリームLIVEフェスティバル" + } + ], + "hash": "751eac81ec20fef9cb7f5ee42102d579", + "id": "2517102", + "profile": { + "bust": "84", + "height": "164", + "hip": "82", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ビューティーハーベスト", + "alias_name_display": "ビューティーハーベスト", + "event": [ + { + "event_id": 1801, + "event_name": "アイドルバラエティ 究極のショートケーキを作ろう!" + } + ], + "hash": "f0f4465ce296a72ddb0dafc12a069467", + "id": "2426901", + "profile": { + "bust": "84", + "height": "164", + "hip": "82", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ビューティーハーベスト", + "alias_name_display": "ビューティーハーベスト", + "event": [ + { + "event_id": 1801, + "event_name": "アイドルバラエティ 究極のショートケーキを作ろう!" + } + ], + "hash": "6bce57ed40bb3f7a5ccd19cd679a0a66", + "id": "2526902", + "profile": { + "bust": "84", + "height": "164", + "hip": "82", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "スパークルオブプライド", + "alias_name_display": "スパークルオブプライド", + "hash": "f4a1f0573cf0bc83790d5e89511ec5ba", + "id": "2437801", + "profile": { + "bust": "84", + "height": "164", + "hip": "82", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "スパークルオブプライド", + "alias_name_display": "スパークルオブプライド", + "hash": "5adfeb655cf51c970156064c22dfb037", + "id": "2537802", + "profile": { + "bust": "84", + "height": "164", + "hip": "82", + "waist": "56", + "weight": "45" + } + } + ], + "idol_id": 95, + "idol_name": "小室千奈美", + "idol_name_display": "小室千奈美", + "units": [ + { + "id": "118", + "name": "ビューティーアリュール" + }, + { + "id": "162", + "name": "ブライダルセレクション" + }, + { + "id": "181", + "name": "フレッシュアスリーテス" + } + ] + }, + { + "aliases": [ + { + "hash": "fa2dec52d070ce84f31fe991bd02a9f4", + "id": "2200401", + "profile": { + "bust": "87", + "height": "168", + "hip": "86", + "waist": "55", + "weight": "48" + } + }, + { + "hash": "601fe50f575ef26e92fdf9c2d6536286", + "id": "2300402", + "profile": { + "bust": "87", + "height": "168", + "hip": "86", + "waist": "55", + "weight": "48" + } + }, + { + "alias_name": "サイバネティックビューティー", + "alias_name_display": "サイバネティックビューティー", + "event": [ + { + "event_id": 207, + "event_name": "アイドルサバイバル ハロウィン編" + } + ], + "hash": "df24296562d7ff98a40501958c234758", + "id": "2206601", + "profile": { + "bust": "87", + "height": "168", + "hip": "86", + "waist": "55", + "weight": "48" + } + }, + { + "alias_name": "サイバネティックビューティー", + "alias_name_display": "サイバネティックビューティー", + "event": [ + { + "event_id": 207, + "event_name": "アイドルサバイバル ハロウィン編" + } + ], + "hash": "0512fbcece083f4b2077d3ba763bfc59", + "id": "2306602", + "profile": { + "bust": "87", + "height": "168", + "hip": "86", + "waist": "55", + "weight": "48" + } + }, + { + "alias_name": "全味万能", + "alias_name_display": "全味万能", + "event": [ + { + "event_id": 519, + "event_name": "美食公演 女神に捧ぐ御馳走" + } + ], + "hash": "22cd8051835cfd6702d130844565c9a4", + "id": "2321002", + "profile": { + "bust": "87", + "height": "168", + "hip": "86", + "waist": "55", + "weight": "48" + } + }, + { + "alias_name": "定常の薄片", + "alias_name_display": "定常の薄片", + "hash": "080ff95ef15907ec9dde885760b35ca5", + "id": "2230201", + "profile": { + "bust": "87", + "height": "168", + "hip": "86", + "waist": "55", + "weight": "48" + } + }, + { + "alias_name": "定常の薄片", + "alias_name_display": "定常の薄片", + "hash": "dc44f2b08fa035521ae2c420f188395f", + "id": "2330202", + "profile": { + "bust": "87", + "height": "168", + "hip": "86", + "waist": "55", + "weight": "48" + } + }, + { + "alias_name": "寡黙の女王", + "alias_name_display": "寡黙の女王", + "event": [ + { + "event_id": 202, + "event_name": "アイドルサバイバルひな祭り編" + } + ], + "hash": "5318a142d7ac9c1442963b5a74114a12", + "id": "2401201", + "profile": { + "bust": "87", + "height": "168", + "hip": "86", + "waist": "55", + "weight": "48" + } + }, + { + "alias_name": "寡黙の女王", + "alias_name_display": "寡黙の女王", + "event": [ + { + "event_id": 202, + "event_name": "アイドルサバイバルひな祭り編" + } + ], + "hash": "e5e24d0c31229301ba067bd7b55c07f1", + "id": "2501202", + "profile": { + "bust": "87", + "height": "168", + "hip": "86", + "waist": "55", + "weight": "48" + } + }, + { + "alias_name": "ミステリアスメイド", + "alias_name_display": "ミステリアスメイド", + "hash": "9e4f24a0d5ffb26f7c9c24c818ba09df", + "id": "2405301", + "profile": { + "bust": "87", + "height": "168", + "hip": "86", + "waist": "55", + "weight": "48" + } + }, + { + "alias_name": "ミステリアスメイド", + "alias_name_display": "ミステリアスメイド", + "hash": "5e07fd98a4bc380a8fa8a54bb0fc8402", + "id": "2505302", + "profile": { + "bust": "87", + "height": "168", + "hip": "86", + "waist": "55", + "weight": "48" + } + }, + { + "alias_name": "トランセンドバニー", + "alias_name_display": "トランセンドバニー", + "hash": "eb19babf3f607140e5e7729c2c7bd063", + "id": "2408801", + "profile": { + "bust": "87", + "height": "168", + "hip": "86", + "waist": "55", + "weight": "48" + } + }, + { + "alias_name": "トランセンドバニー", + "alias_name_display": "トランセンドバニー", + "hash": "e48b28d85c30e5e1beb133623913e970", + "id": "2508802", + "profile": { + "bust": "87", + "height": "168", + "hip": "86", + "waist": "55", + "weight": "48" + } + }, + { + "alias_name": "銀弾の射手", + "alias_name_display": "銀弾の射手", + "event": [ + { + "event_id": 512, + "event_name": "西部公演 ガンスリンガージャーニー" + } + ], + "hash": "ebeffaed713567cdde72ef9093f78574", + "id": "2414801", + "profile": { + "bust": "87", + "height": "168", + "hip": "86", + "waist": "55", + "weight": "48" + } + }, + { + "alias_name": "銀弾の射手", + "alias_name_display": "銀弾の射手", + "event": [ + { + "event_id": 512, + "event_name": "西部公演 ガンスリンガージャーニー" + } + ], + "hash": "50b4f24a6dad70b40a3aa9084cd1440f", + "id": "2514802", + "profile": { + "bust": "87", + "height": "168", + "hip": "86", + "waist": "55", + "weight": "48" + } + }, + { + "alias_name": "イグナイトアビリティーズ", + "alias_name_display": "イグナイトアビリティーズ", + "event": [ + { + "event_id": "023", + "event_name": "第23回プロダクションマッチフェスティバル" + } + ], + "hash": "4eb2a1368c3fd86ecc07cab40f40e1ad", + "id": "2426801", + "profile": { + "bust": "87", + "height": "168", + "hip": "86", + "waist": "55", + "weight": "48" + } + }, + { + "alias_name": "イグナイトアビリティーズ", + "alias_name_display": "イグナイトアビリティーズ", + "event": [ + { + "event_id": "023", + "event_name": "第23回プロダクションマッチフェスティバル" + } + ], + "hash": "90e8bb440dc7b7d442a7e0a54a5a159c", + "id": "2526802", + "profile": { + "bust": "87", + "height": "168", + "hip": "86", + "waist": "55", + "weight": "48" + } + }, + { + "alias_name": "インスペクトコンコルディア", + "alias_name_display": "インスペクトコンコルディア", + "hash": "eb6c39fd1f1cc9a59cb18cab01f5cf01", + "id": "2432901", + "profile": { + "bust": "87", + "height": "168", + "hip": "86", + "waist": "55", + "weight": "48" + } + }, + { + "alias_name": "インスペクトコンコルディア", + "alias_name_display": "インスペクトコンコルディア", + "hash": "eacc9bc4fe9128ac315bf016a2c356c4", + "id": "2532902", + "profile": { + "bust": "87", + "height": "168", + "hip": "86", + "waist": "55", + "weight": "48" + } + } + ], + "idol_id": 96, + "idol_name": "高峯のあ", + "idol_name_display": "高峯のあ", + "units": [ + { + "id": "116", + "name": "にゃん・にゃん・にゃん" + } + ] + }, + { + "aliases": [ + { + "hash": "1f62eb063030ed5083b0e7826245d3af", + "id": "2200501", + "profile": { + "bust": "81", + "height": "171", + "hip": "83", + "waist": "57", + "weight": "49" + } + }, + { + "hash": "2cc6e90536c27201a4042b1bc3aa7a4b", + "id": "2300502", + "profile": { + "bust": "81", + "height": "171", + "hip": "83", + "waist": "57", + "weight": "49" + } + }, + { + "alias_name": "神秘の女神", + "alias_name_display": "神秘の女神", + "hash": "0c4e761bc05c904c8d1d80ae19f55042", + "id": "2401401", + "profile": { + "bust": "81", + "height": "171", + "hip": "83", + "waist": "57", + "weight": "49" + } + }, + { + "alias_name": "神秘の女神", + "alias_name_display": "神秘の女神", + "hash": "a79b80569b0b237c0e63751cca452632", + "id": "2501402", + "profile": { + "bust": "81", + "height": "171", + "hip": "83", + "waist": "57", + "weight": "49" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "0902f546ad623f9ea9743f549991ca4a", + "id": "2401601", + "profile": { + "bust": "81", + "height": "171", + "hip": "83", + "waist": "57", + "weight": "49" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "81f39e1cf11b678f12a090a23726925d", + "id": "2501602", + "profile": { + "bust": "81", + "height": "171", + "hip": "83", + "waist": "57", + "weight": "49" + } + }, + { + "alias_name": "湯けむり女神", + "alias_name_display": "湯けむり女神", + "hash": "a9058c6198b35b7282ff3694c1177b66", + "id": "2403801", + "profile": { + "bust": "81", + "height": "171", + "hip": "83", + "waist": "57", + "weight": "49" + } + }, + { + "alias_name": "湯けむり女神", + "alias_name_display": "湯けむり女神", + "hash": "ffde517a1d2a3fdb6900d97eefb33ac4", + "id": "2503802", + "profile": { + "bust": "81", + "height": "171", + "hip": "83", + "waist": "57", + "weight": "49" + } + }, + { + "alias_name": "新緑の淑女", + "alias_name_display": "新緑の淑女", + "hash": "9a77b70cbfa5519c355bec95e1dd93c6", + "id": "2406601", + "profile": { + "bust": "81", + "height": "171", + "hip": "83", + "waist": "57", + "weight": "49" + } + }, + { + "alias_name": "新緑の淑女", + "alias_name_display": "新緑の淑女", + "hash": "6d1df5bc4e0f9a31473c1aa86414f6ae", + "id": "2506602", + "profile": { + "bust": "81", + "height": "171", + "hip": "83", + "waist": "57", + "weight": "49" + } + }, + { + "alias_name": "甘美なる姫君", + "alias_name_display": "甘美なる姫君", + "hash": "976b76648428ec1dbb7f5250e79a7a23", + "id": "2412101", + "profile": { + "bust": "81", + "height": "171", + "hip": "83", + "waist": "57", + "weight": "49" + } + }, + { + "alias_name": "甘美なる姫君", + "alias_name_display": "甘美なる姫君", + "hash": "02766491016ecc94d2cc339c3a2d2dd6", + "id": "2512102", + "profile": { + "bust": "81", + "height": "171", + "hip": "83", + "waist": "57", + "weight": "49" + } + }, + { + "alias_name": "ワンダフルマジック", + "alias_name_display": "ワンダフルマジック", + "hash": "b2962e6246b90fa8843eb06722614ff3", + "id": "2413301", + "profile": { + "bust": "81", + "height": "171", + "hip": "83", + "waist": "57", + "weight": "49" + } + }, + { + "alias_name": "ワンダフルマジック", + "alias_name_display": "ワンダフルマジック", + "hash": "b4022ee73d439603da996d48bbc302a8", + "id": "2513302", + "profile": { + "bust": "81", + "height": "171", + "hip": "83", + "waist": "57", + "weight": "49" + } + }, + { + "alias_name": "謹賀新年", + "alias_name_display": "謹賀新年", + "hash": "1b961de171c55574e471134ad28f883f", + "id": "2420501", + "profile": { + "bust": "81", + "height": "171", + "hip": "83", + "waist": "57", + "weight": "49" + } + }, + { + "alias_name": "謹賀新年", + "alias_name_display": "謹賀新年", + "hash": "9daca9b18b0acbe7a315daee7b7a8fed", + "id": "2520502", + "profile": { + "bust": "81", + "height": "171", + "hip": "83", + "waist": "57", + "weight": "49" + } + }, + { + "alias_name": "白南風の淑女", + "alias_name_display": "白南風の淑女", + "hash": "2e54872e35ff6ae1e3b8db794325ebdc", + "id": "2425301", + "profile": { + "bust": "81", + "height": "171", + "hip": "83", + "waist": "57", + "weight": "49" + } + }, + { + "alias_name": "白南風の淑女", + "alias_name_display": "白南風の淑女", + "hash": "3549cd6ea8a118812832841f4dbbac61", + "id": "2525302", + "profile": { + "bust": "81", + "height": "171", + "hip": "83", + "waist": "57", + "weight": "49" + } + }, + { + "alias_name": "幸福のひととき", + "alias_name_display": "幸福のひととき", + "hash": "81b0bcb1a5d9b6463f17eef50387d30c", + "id": "2433201", + "profile": { + "bust": "81", + "height": "171", + "hip": "83", + "waist": "57", + "weight": "49" + } + }, + { + "alias_name": "幸福のひととき", + "alias_name_display": "幸福のひととき", + "hash": "188262224c3c9e6dd3b291c111101d72", + "id": "2533202", + "profile": { + "bust": "81", + "height": "171", + "hip": "83", + "waist": "57", + "weight": "49" + } + }, + { + "alias_name": "聖夜の祝宴", + "alias_name_display": "聖夜の祝宴", + "hash": "7918df8e9ee92c02ea13b4fef6e6448f", + "id": "2436601", + "profile": { + "bust": "81", + "height": "171", + "hip": "83", + "waist": "57", + "weight": "49" + } + }, + { + "alias_name": "聖夜の祝宴", + "alias_name_display": "聖夜の祝宴", + "hash": "70e5c843c758082e2ff927eb38cf943b", + "id": "2536602", + "profile": { + "bust": "81", + "height": "171", + "hip": "83", + "waist": "57", + "weight": "49" + } + }, + { + "alias_name": "優艶の花尽し", + "alias_name_display": "優艶の花尽し", + "hash": "5e013960c6ecd88627148666b8fb215c", + "id": "2439801", + "profile": { + "bust": "81", + "height": "171", + "hip": "83", + "waist": "57", + "weight": "49" + } + }, + { + "alias_name": "優艶の花尽し", + "alias_name_display": "優艶の花尽し", + "hash": "8f043af6f6c5ee0f0e01cd50a36a2f66", + "id": "2539802", + "profile": { + "bust": "81", + "height": "171", + "hip": "83", + "waist": "57", + "weight": "49" + } + } + ], + "idol_id": 97, + "idol_name": "高垣楓", + "idol_name_display": "高垣楓", + "units": [ + { + "id": "55", + "name": "ミステリアスアイズ" + }, + { + "id": "63", + "name": "ラブリーダイナーズ" + }, + { + "id": "124", + "name": "女神たちの夏宴" + }, + { + "id": "141", + "name": "トランクィル・ウィスパー" + }, + { + "id": "184", + "name": "宵乙女" + }, + { + "id": "197", + "name": "アズール・ムジカ" + }, + { + "id": "212", + "name": "CINDERELLA GIRLS" + } + ] + }, + { + "aliases": [ + { + "hash": "b7999fc204ef28323b6b656f66d46c42", + "id": "2200601", + "profile": { + "bust": "81", + "height": "156", + "hip": "80", + "waist": "57", + "weight": "41" + } + }, + { + "hash": "7b71466acb0f40616f8cf2fff65736e7", + "id": "2300602", + "profile": { + "bust": "81", + "height": "156", + "hip": "80", + "waist": "57", + "weight": "41" + } + }, + { + "alias_name": "天使な堕天使", + "alias_name_display": "天使な堕天使", + "hash": "c340069fa99350b0a29508ddf3392a44", + "id": "2401101", + "profile": { + "bust": "81", + "height": "156", + "hip": "80", + "waist": "57", + "weight": "41" + } + }, + { + "alias_name": "天使な堕天使", + "alias_name_display": "天使な堕天使", + "hash": "be29acd9c1b205a8c69f4fd5b8763b1d", + "id": "2501102", + "profile": { + "bust": "81", + "height": "156", + "hip": "80", + "waist": "57", + "weight": "41" + } + }, + { + "alias_name": "渚の天使", + "alias_name_display": "渚の天使", + "hash": "78ba6d819af44ef169d32cc6685541a1", + "id": "2402601", + "profile": { + "bust": "81", + "height": "156", + "hip": "80", + "waist": "57", + "weight": "41" + } + }, + { + "alias_name": "渚の天使", + "alias_name_display": "渚の天使", + "hash": "d1052359816fb13ba2b87fc90abccf00", + "id": "2502602", + "profile": { + "bust": "81", + "height": "156", + "hip": "80", + "waist": "57", + "weight": "41" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "070ed187236849ff082bcab7fde5af4c", + "id": "2402701", + "profile": { + "bust": "81", + "height": "156", + "hip": "80", + "waist": "57", + "weight": "41" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "b68433f5242f9a792a023ec1ad6e53fd", + "id": "2502702", + "profile": { + "bust": "81", + "height": "156", + "hip": "80", + "waist": "57", + "weight": "41" + } + }, + { + "alias_name": "覚醒魔王", + "alias_name_display": "覚醒魔王", + "hash": "5062961868cf70cc24fdb4fe6d319c14", + "id": "2406401", + "profile": { + "bust": "81", + "height": "156", + "hip": "80", + "waist": "57", + "weight": "41" + } + }, + { + "alias_name": "覚醒魔王", + "alias_name_display": "覚醒魔王", + "hash": "a8e4b70fb957baaeb029f6e09fb0965c", + "id": "2506402", + "profile": { + "bust": "81", + "height": "156", + "hip": "80", + "waist": "57", + "weight": "41" + } + }, + { + "alias_name": "シンデレラガール", + "alias_name_display": "シンデレラガール", + "hash": "f3f87f1ea01adffba286106b365275a8", + "id": "2407301", + "profile": { + "bust": "81", + "height": "156", + "hip": "80", + "waist": "57", + "weight": "41" + } + }, + { + "alias_name": "シンデレラガール", + "alias_name_display": "シンデレラガール", + "hash": "85fc0f386df052f15d27adcb09354ebc", + "id": "2507302", + "profile": { + "bust": "81", + "height": "156", + "hip": "80", + "waist": "57", + "weight": "41" + } + }, + { + "alias_name": "アニバーサリープリンセス", + "alias_name_display": "アニバーサリープリンセス", + "event": [ + { + "event_id": 410, + "event_name": "アイドルプロデュース the 2nd Anniversary" + } + ], + "hash": "2843d6da5edda215be6641a742189bbd", + "id": "2410801", + "profile": { + "bust": "81", + "height": "156", + "hip": "80", + "waist": "57", + "weight": "41" + } + }, + { + "alias_name": "アニバーサリープリンセス", + "alias_name_display": "アニバーサリープリンセス", + "event": [ + { + "event_id": 410, + "event_name": "アイドルプロデュース the 2nd Anniversary" + } + ], + "hash": "2fc7aaa1afffe3a797b9f64b8fac0a1e", + "id": "2510802", + "profile": { + "bust": "81", + "height": "156", + "hip": "80", + "waist": "57", + "weight": "41" + } + }, + { + "alias_name": "ワンダフルマジック", + "alias_name_display": "ワンダフルマジック", + "hash": "f8b9134d6146874bad5933a284a3d760", + "id": "2413101", + "profile": { + "bust": "81", + "height": "156", + "hip": "80", + "waist": "57", + "weight": "41" + } + }, + { + "alias_name": "ワンダフルマジック", + "alias_name_display": "ワンダフルマジック", + "hash": "d712a295960479bc715630e80c819f69", + "id": "2513102", + "profile": { + "bust": "81", + "height": "156", + "hip": "80", + "waist": "57", + "weight": "41" + } + }, + { + "alias_name": "紅蓮の夜姫", + "alias_name_display": "紅蓮の夜姫", + "hash": "9ed747defd1c6c795859a5170f375893", + "id": "2418801", + "profile": { + "bust": "81", + "height": "156", + "hip": "80", + "waist": "57", + "weight": "41" + } + }, + { + "alias_name": "紅蓮の夜姫", + "alias_name_display": "紅蓮の夜姫", + "hash": "29805f362930be2c4ad6c790285184c0", + "id": "2518802", + "profile": { + "bust": "81", + "height": "156", + "hip": "80", + "waist": "57", + "weight": "41" + } + }, + { + "alias_name": "ローゼンブルクエンゲル", + "alias_name_display": "ローゼンブルクエンゲル", + "hash": "a8966398cde53faf1eea3197d044fa09", + "id": "2522502", + "profile": { + "bust": "81", + "height": "156", + "hip": "80", + "waist": "57", + "weight": "41" + } + }, + { + "alias_name": "魔界の花嫁", + "alias_name_display": "魔界の花嫁", + "hash": "0cf0c9dda3969d5e0849f82ef76e3316", + "id": "2424401", + "profile": { + "bust": "81", + "height": "156", + "hip": "80", + "waist": "57", + "weight": "41" + } + }, + { + "alias_name": "魔界の花嫁", + "alias_name_display": "魔界の花嫁", + "hash": "3986012e2714597c8db0358919b7fcbf", + "id": "2524402", + "profile": { + "bust": "81", + "height": "156", + "hip": "80", + "waist": "57", + "weight": "41" + } + }, + { + "alias_name": "G4U!", + "alias_name_display": "G4U!", + "hash": "46d53903234e41082a542084e262e4ba", + "id": "2528702", + "profile": { + "bust": "81", + "height": "156", + "hip": "80", + "waist": "57", + "weight": "41" + } + }, + { + "alias_name": "春暁の紅姫", + "alias_name_display": "春暁の紅姫", + "hash": "fd87367a4c86b934f53471b7127afba7", + "id": "2430101", + "profile": { + "bust": "81", + "height": "156", + "hip": "80", + "waist": "57", + "weight": "41" + } + }, + { + "alias_name": "春暁の紅姫", + "alias_name_display": "春暁の紅姫", + "hash": "6782836a094a5ce9e71cdbf4d658fa90", + "id": "2530102", + "profile": { + "bust": "81", + "height": "156", + "hip": "80", + "waist": "57", + "weight": "41" + } + }, + { + "alias_name": "聖剣の救世主", + "alias_name_display": "聖剣の救世主", + "hash": "44f5225bbe4ef204a0840a870fb8604c", + "id": "2434701", + "profile": { + "bust": "81", + "height": "156", + "hip": "80", + "waist": "57", + "weight": "41" + } + }, + { + "alias_name": "聖剣の救世主", + "alias_name_display": "聖剣の救世主", + "hash": "3b9d6ba1ef0523d273c0203b04eb9400", + "id": "2534702", + "profile": { + "bust": "81", + "height": "156", + "hip": "80", + "waist": "57", + "weight": "41" + } + }, + { + "alias_name": "戦女神の先導", + "alias_name_display": "戦女神の先導", + "hash": "c96e33b66c7d171dee121d2438fac8f9", + "id": "2438501", + "profile": { + "bust": "81", + "height": "156", + "hip": "80", + "waist": "57", + "weight": "41" + } + }, + { + "alias_name": "戦女神の先導", + "alias_name_display": "戦女神の先導", + "hash": "5f1dd0a32dcb32f9b8e3ea9aa58a1e40", + "id": "2538502", + "profile": { + "bust": "81", + "height": "156", + "hip": "80", + "waist": "57", + "weight": "41" + } + } + ], + "idol_id": 98, + "idol_name": "神崎蘭子", + "idol_name_display": "神崎蘭子", + "units": [ + { + "id": "1", + "name": "Rosenburg Engel" + }, + { + "id": "32", + "name": "ダークイルミネイト" + }, + { + "id": "82", + "name": "Rosenburg Alptraum" + }, + { + "id": "145", + "name": "LOVE LAIKA with Rosenburg Engel" + }, + { + "id": "197", + "name": "アズール・ムジカ" + }, + { + "id": "205", + "name": "シンデレラガール" + }, + { + "id": "213", + "name": "CINDERELLA PROJECT" + } + ] + }, + { + "aliases": [ + { + "hash": "cdd97d8779d5ae35b16aa32bf8172e9f", + "id": "2200701", + "profile": { + "bust": "86", + "height": "160", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "hash": "f195a81a91c75e9d98525f587f6e5e56", + "id": "2300702", + "profile": { + "bust": "86", + "height": "160", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "ドイツスタイル", + "alias_name_display": "ドイツスタイル", + "event": [ + { + "event_id": 507, + "event_name": "LIVEツアーカーニバルinドイツ" + } + ], + "hash": "21af17a4bb477771fb3703e37057ab2b", + "id": "2211501", + "profile": { + "bust": "86", + "height": "160", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "ドイツスタイル", + "alias_name_display": "ドイツスタイル", + "event": [ + { + "event_id": 507, + "event_name": "LIVEツアーカーニバルinドイツ" + } + ], + "hash": "8a7a51f05959f050fc08990b8fe0bf00", + "id": "2311502", + "profile": { + "bust": "86", + "height": "160", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "トキメキバレンタイン", + "alias_name_display": "トキメキバレンタイン", + "hash": "d2fcb5170107ae3baf66c07e64409aeb", + "id": "2214201", + "profile": { + "bust": "86", + "height": "160", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "トキメキバレンタイン", + "alias_name_display": "トキメキバレンタイン", + "hash": "49ec3fa6693f3812579564738780bb08", + "id": "2314202", + "profile": { + "bust": "86", + "height": "160", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "旅の相棒", + "alias_name_display": "旅の相棒", + "hash": "81ca74ea273f671e22a08f61fa2578ab", + "id": "2220301", + "profile": { + "bust": "86", + "height": "160", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "旅の相棒", + "alias_name_display": "旅の相棒", + "hash": "cec4772afa818025f97cf2cad08688ba", + "id": "2320302", + "profile": { + "bust": "86", + "height": "160", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "レヴリーエトランゼ", + "alias_name_display": "レヴリーエトランゼ", + "hash": "3a226e6ae482ebdf9debda9cc66fe2e3", + "id": "2230601", + "profile": { + "bust": "86", + "height": "160", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "レヴリーエトランゼ", + "alias_name_display": "レヴリーエトランゼ", + "hash": "3268dec7a8de3f1191ef4709ba9cbf17", + "id": "2330602", + "profile": { + "bust": "86", + "height": "160", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "悠久の旅人", + "alias_name_display": "悠久の旅人", + "event": [ + { + "event_id": 512, + "event_name": "西部公演 ガンスリンガージャーニー" + } + ], + "hash": "4543c56aa20c9a1c2e6143b3e3044721", + "id": "2415001", + "profile": { + "bust": "86", + "height": "160", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "悠久の旅人", + "alias_name_display": "悠久の旅人", + "event": [ + { + "event_id": 512, + "event_name": "西部公演 ガンスリンガージャーニー" + } + ], + "hash": "5603dd64eec2f5217be0ec6c4d7e7b5d", + "id": "2515002", + "profile": { + "bust": "86", + "height": "160", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "トラベル・ロワイヤル", + "alias_name_display": "トラベル・ロワイヤル", + "event": [ + { + "event_id": 814, + "event_name": "第14回アイドルLIVEロワイヤル" + } + ], + "hash": "375bd729a614047d02d20c4ad6e211e1", + "id": "2428101", + "profile": { + "bust": "86", + "height": "160", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "トラベル・ロワイヤル", + "alias_name_display": "トラベル・ロワイヤル", + "event": [ + { + "event_id": 814, + "event_name": "第14回アイドルLIVEロワイヤル" + } + ], + "hash": "4edd386fb6e33c087895ed627fea7eaa", + "id": "2528102", + "profile": { + "bust": "86", + "height": "160", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "夏の一瞬", + "alias_name_display": "夏の一瞬", + "event": [ + { + "event_id": 723, + "event_name": "水着DEドリームLIVEフェスティバル" + } + ], + "hash": "8b202b6cb4600cd6d956973ea303bed9", + "id": "2434101", + "profile": { + "bust": "86", + "height": "160", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "夏の一瞬", + "alias_name_display": "夏の一瞬", + "event": [ + { + "event_id": 723, + "event_name": "水着DEドリームLIVEフェスティバル" + } + ], + "hash": "2b04d07128e9d3935b7505599d21f522", + "id": "2534102", + "profile": { + "bust": "86", + "height": "160", + "hip": "81", + "waist": "56", + "weight": "44" + } + } + ], + "idol_id": 99, + "idol_name": "伊集院惠", + "idol_name_display": "伊集院惠", + "units": [ + { + "id": "37", + "name": "ナイトブルーレザー" + }, + { + "id": "97", + "name": "ドイツスタイル" + }, + { + "id": "167", + "name": "ロマンティックツアーズ" + } + ] + }, + { + "aliases": [ + { + "hash": "e8a68de320c6b9d699b376a3893c9eeb", + "id": "2200801", + "profile": { + "bust": "84", + "height": "167", + "hip": "83", + "waist": "54", + "weight": "43" + } + }, + { + "hash": "2015f0f8b5bd2bc1495307c22000397e", + "id": "2300802", + "profile": { + "bust": "84", + "height": "167", + "hip": "83", + "waist": "54", + "weight": "43" + } + }, + { + "alias_name": "湯けむり温泉", + "alias_name_display": "湯けむり温泉", + "hash": "4f99fef782ecceda83db3254f236bcd0", + "id": "2206701", + "profile": { + "bust": "84", + "height": "167", + "hip": "83", + "waist": "54", + "weight": "43" + } + }, + { + "alias_name": "湯けむり温泉", + "alias_name_display": "湯けむり温泉", + "hash": "aae21e3bdfa77ef0d2dd17459f21b6d3", + "id": "2306702", + "profile": { + "bust": "84", + "height": "167", + "hip": "83", + "waist": "54", + "weight": "43" + } + }, + { + "alias_name": "セクシーグレープ", + "alias_name_display": "セクシーグレープ", + "hash": "74418998e04b4f684cd4033ff4f446ca", + "id": "2211401", + "profile": { + "bust": "84", + "height": "167", + "hip": "83", + "waist": "54", + "weight": "43" + } + }, + { + "alias_name": "セクシーグレープ", + "alias_name_display": "セクシーグレープ", + "hash": "376eec8a0c1cdbeb4f8f9df252c3b885", + "id": "2311402", + "profile": { + "bust": "84", + "height": "167", + "hip": "83", + "waist": "54", + "weight": "43" + } + }, + { + "alias_name": "新春コレクション", + "alias_name_display": "新春コレクション", + "hash": "ba0b7d351ead3ab555661e0809c99dfc", + "id": "2213801", + "profile": { + "bust": "84", + "height": "167", + "hip": "83", + "waist": "54", + "weight": "43" + } + }, + { + "alias_name": "新春コレクション", + "alias_name_display": "新春コレクション", + "hash": "096ce8e1c6c74d2224659f4cd525613f", + "id": "2313802", + "profile": { + "bust": "84", + "height": "167", + "hip": "83", + "waist": "54", + "weight": "43" + } + }, + { + "alias_name": "ルアードレディ", + "alias_name_display": "ルアードレディ", + "hash": "cb7e7c77ba31e6603cfdba7e39c0631e", + "id": "2221101", + "profile": { + "bust": "84", + "height": "167", + "hip": "83", + "waist": "54", + "weight": "43" + } + }, + { + "alias_name": "ルアードレディ", + "alias_name_display": "ルアードレディ", + "hash": "0f6a6629245897604e27472f913f5629", + "id": "2321102", + "profile": { + "bust": "84", + "height": "167", + "hip": "83", + "waist": "54", + "weight": "43" + } + }, + { + "alias_name": "スクールプール", + "alias_name_display": "スクールプール", + "hash": "93e784df4ef0fafec8220d0a5e2e529e", + "id": "2227501", + "profile": { + "bust": "84", + "height": "167", + "hip": "83", + "waist": "54", + "weight": "43" + } + }, + { + "alias_name": "スクールプール", + "alias_name_display": "スクールプール", + "hash": "ca3f01b1c48fa13d98db5adfab3f8794", + "id": "2327502", + "profile": { + "bust": "84", + "height": "167", + "hip": "83", + "waist": "54", + "weight": "43" + } + }, + { + "alias_name": "T.B.チアーズ", + "alias_name_display": "T.B.チアーズ", + "event": [ + { + "event_id": 1511, + "event_name": "第11回チーム対抗トークバトルショー" + } + ], + "hash": "4fb9bd8fbdc077a3c0eda99f05484416", + "id": "2230701", + "profile": { + "bust": "84", + "height": "167", + "hip": "83", + "waist": "54", + "weight": "43" + } + }, + { + "alias_name": "T.B.チアーズ", + "alias_name_display": "T.B.チアーズ", + "event": [ + { + "event_id": 1511, + "event_name": "第11回チーム対抗トークバトルショー" + } + ], + "hash": "daf82424b3ded489e757ac9bb5246cd5", + "id": "2330702", + "profile": { + "bust": "84", + "height": "167", + "hip": "83", + "waist": "54", + "weight": "43" + } + }, + { + "alias_name": "ほろ酔い艶美", + "alias_name_display": "ほろ酔い艶美", + "event": [ + { + "event_id": 104, + "event_name": "桜舞う花見祭り" + } + ], + "hash": "5b83e49adcfae4f92a483276ce2874b9", + "id": "2401301", + "profile": { + "bust": "84", + "height": "167", + "hip": "83", + "waist": "54", + "weight": "43" + } + }, + { + "alias_name": "ほろ酔い艶美", + "alias_name_display": "ほろ酔い艶美", + "event": [ + { + "event_id": 104, + "event_name": "桜舞う花見祭り" + } + ], + "hash": "9ddc388fb6bd94b4ada76f35ff491b89", + "id": "2501302", + "profile": { + "bust": "84", + "height": "167", + "hip": "83", + "waist": "54", + "weight": "43" + } + }, + { + "alias_name": "ドランカーパイレーツ", + "alias_name_display": "ドランカーパイレーツ", + "event": [ + { + "event_id": 513, + "event_name": "海賊公演 オーシャンクルーズ" + } + ], + "hash": "bea24ae5a00b7dcbc889143658508c41", + "id": "2415701", + "profile": { + "bust": "84", + "height": "167", + "hip": "83", + "waist": "54", + "weight": "43" + } + }, + { + "alias_name": "ドランカーパイレーツ", + "alias_name_display": "ドランカーパイレーツ", + "event": [ + { + "event_id": 513, + "event_name": "海賊公演 オーシャンクルーズ" + } + ], + "hash": "5fc1f15a4e70c64c6578984d141fc9c5", + "id": "2515702", + "profile": { + "bust": "84", + "height": "167", + "hip": "83", + "waist": "54", + "weight": "43" + } + }, + { + "alias_name": "ドランク・ロワイヤル", + "alias_name_display": "ドランク・ロワイヤル", + "event": [ + { + "event_id": 815, + "event_name": "アイドルLIVEロワイヤル クリスマスSP" + } + ], + "hash": "2d02c06b0e7b8281e28f470dfece9075", + "id": "2429301", + "profile": { + "bust": "84", + "height": "167", + "hip": "83", + "waist": "54", + "weight": "43" + } + }, + { + "alias_name": "ドランク・ロワイヤル", + "alias_name_display": "ドランク・ロワイヤル", + "event": [ + { + "event_id": 815, + "event_name": "アイドルLIVEロワイヤル クリスマスSP" + } + ], + "hash": "eebf9cbe74825c11552fc61be114e2cc", + "id": "2529302", + "profile": { + "bust": "84", + "height": "167", + "hip": "83", + "waist": "54", + "weight": "43" + } + } + ], + "idol_id": 100, + "idol_name": "柊志乃", + "idol_name_display": "柊志乃", + "units": [ + { + "id": "207", + "name": "ムーランルージュ" + } + ] + }, + { + "aliases": [ + { + "hash": "d3e95e1ca3c7b346535ad23e8619ec7e", + "id": "2200901", + "profile": { + "bust": "83", + "height": "155", + "hip": "81", + "waist": "55", + "weight": "42" + } + }, + { + "hash": "341cefa6c1f43b09054cabc7f0b0c93b", + "id": "2300902", + "profile": { + "bust": "83", + "height": "155", + "hip": "81", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "制服コレクション", + "alias_name_display": "制服コレクション", + "hash": "cdcd2f0aba695f13e4fd8c1fe7eeacfd", + "id": "2203401", + "profile": { + "bust": "83", + "height": "155", + "hip": "81", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "制服コレクション", + "alias_name_display": "制服コレクション", + "hash": "4b1040a6e8b8397273697cf5c3201554", + "id": "2303402", + "profile": { + "bust": "83", + "height": "155", + "hip": "81", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "煌めきの乙女", + "alias_name_display": "煌めきの乙女", + "hash": "855d33d77752c725474da494a0e9e239", + "id": "2402801", + "profile": { + "bust": "83", + "height": "155", + "hip": "81", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "煌めきの乙女", + "alias_name_display": "煌めきの乙女", + "hash": "7d8203e3cc992b16c5308358601375ea", + "id": "2502802", + "profile": { + "bust": "83", + "height": "155", + "hip": "81", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "アニバーサリーゴシック", + "alias_name_display": "アニバーサリーゴシック", + "event": [ + { + "event_id": 403, + "event_name": "アイドルプロデュース the 1st Anniversary" + } + ], + "hash": "475dcbd4ce790875aa25b1580d0ba63a", + "id": "2404201", + "profile": { + "bust": "83", + "height": "155", + "hip": "81", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "アニバーサリーゴシック", + "alias_name_display": "アニバーサリーゴシック", + "event": [ + { + "event_id": 403, + "event_name": "アイドルプロデュース the 1st Anniversary" + } + ], + "hash": "dd74a48fb25bdfe6d21f2a9efc24962f", + "id": "2504202", + "profile": { + "bust": "83", + "height": "155", + "hip": "81", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "純白の花嫁", + "alias_name_display": "純白の花嫁", + "hash": "897d188e373b0578baf1aeae8632ae2b", + "id": "2407101", + "profile": { + "bust": "83", + "height": "155", + "hip": "81", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "純白の花嫁", + "alias_name_display": "純白の花嫁", + "hash": "d5875dd6bd8f6aac5806e34d8528cd9f", + "id": "2507102", + "profile": { + "bust": "83", + "height": "155", + "hip": "81", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "アニバーサリーゴシック・S", + "alias_name_display": "アニバーサリーゴシック・S", + "event": [ + { + "event_id": 403, + "event_name": "アイドルプロデュース the 1st Anniversary" + } + ], + "hash": "0c58246fd64877bd1dce7795bcabf67a", + "id": "2411101", + "profile": { + "bust": "83", + "height": "155", + "hip": "81", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "アニバーサリーゴシック・S", + "alias_name_display": "アニバーサリーゴシック・S", + "event": [ + { + "event_id": 403, + "event_name": "アイドルプロデュース the 1st Anniversary" + } + ], + "hash": "8b6b38f0b127fe5a28fca3a8f7956f5c", + "id": "2511102", + "profile": { + "bust": "83", + "height": "155", + "hip": "81", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "7ee6439b7345b1a66cafe6a16b5bdc0e", + "id": "2414101", + "profile": { + "bust": "83", + "height": "155", + "hip": "81", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "322825cf0a562732b6c7b4dad80044c1", + "id": "2514102", + "profile": { + "bust": "83", + "height": "155", + "hip": "81", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "夜宴の白芙蓉", + "alias_name_display": "夜宴の白芙蓉", + "hash": "9dd0ceb4c25a93738fd68e7abe04ed50", + "id": "2414301", + "profile": { + "bust": "83", + "height": "155", + "hip": "81", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "夜宴の白芙蓉", + "alias_name_display": "夜宴の白芙蓉", + "hash": "733b81fd13ee7e9487977db31dae2e81", + "id": "2514302", + "profile": { + "bust": "83", + "height": "155", + "hip": "81", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "希望の聖夜", + "alias_name_display": "希望の聖夜", + "hash": "e3f8f4bf12f8b4d77ff1cec13f3d1cc6", + "id": "2419701", + "profile": { + "bust": "83", + "height": "155", + "hip": "81", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "希望の聖夜", + "alias_name_display": "希望の聖夜", + "hash": "c9f0d361ba7ba794be9a0870b20dfa93", + "id": "2519702", + "profile": { + "bust": "83", + "height": "155", + "hip": "81", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "トゥルーフレーズ", + "alias_name_display": "トゥルーフレーズ", + "event": [ + { + "event_id": 716, + "event_name": "第16回ドリームLIVEフェスティバル" + } + ], + "hash": "16fb8740d56d5bd611a39d3b34f68dc1", + "id": "2427201", + "profile": { + "bust": "83", + "height": "155", + "hip": "81", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "トゥルーフレーズ", + "alias_name_display": "トゥルーフレーズ", + "event": [ + { + "event_id": 716, + "event_name": "第16回ドリームLIVEフェスティバル" + } + ], + "hash": "680a961819a3b3abdbc4bff8e775f77c", + "id": "2527202", + "profile": { + "bust": "83", + "height": "155", + "hip": "81", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "シンデレラドリーム", + "alias_name_display": "シンデレラドリーム", + "hash": "69b474b2a628832f1417e240ae75d852", + "id": "2432401", + "profile": { + "bust": "83", + "height": "155", + "hip": "81", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "シンデレラドリーム", + "alias_name_display": "シンデレラドリーム", + "hash": "bfe0a1bc64586ae1ea9b4c596760ffe1", + "id": "2532402", + "profile": { + "bust": "83", + "height": "155", + "hip": "81", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "きらめく夏色", + "alias_name_display": "きらめく夏色", + "hash": "01d63e58192a6deee186a9f9d3bce2d9", + "id": "2434201", + "profile": { + "bust": "83", + "height": "155", + "hip": "81", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "きらめく夏色", + "alias_name_display": "きらめく夏色", + "hash": "dbf0e5fc40f2d08121adcb97cfe013d8", + "id": "2534202", + "profile": { + "bust": "83", + "height": "155", + "hip": "81", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "テンダークリスタル", + "alias_name_display": "テンダークリスタル", + "hash": "df7e2cdb0ec4b9b67f8718568e62641b", + "id": "2436801", + "profile": { + "bust": "83", + "height": "155", + "hip": "81", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "テンダークリスタル", + "alias_name_display": "テンダークリスタル", + "hash": "846cbe9ab87264c80ab22de8776c78a9", + "id": "2536802", + "profile": { + "bust": "83", + "height": "155", + "hip": "81", + "waist": "55", + "weight": "42" + } + } + ], + "idol_id": 101, + "idol_name": "北条加蓮", + "idol_name_display": "北条加蓮", + "units": [ + { + "id": "60", + "name": "モノクロームリリィ" + }, + { + "id": "127", + "name": "落花流水" + }, + { + "id": "144", + "name": "Triad Primus" + }, + { + "id": "192", + "name": "Masque:Rade" + }, + { + "id": "201", + "name": "Caskets" + }, + { + "id": "215", + "name": "Project:Krone" + } + ] + }, + { + "aliases": [ + { + "hash": "583f455902cb4a78514d6eae2037e178", + "id": "2201001", + "profile": { + "bust": "83", + "height": "157", + "hip": "85", + "waist": "59", + "weight": "45" + } + }, + { + "hash": "e9dc3020f7c0a9b17cd4fe81e2b19c06", + "id": "2301002", + "profile": { + "bust": "83", + "height": "157", + "hip": "85", + "waist": "59", + "weight": "45" + } + }, + { + "alias_name": "UKスタイル", + "alias_name_display": "UKスタイル", + "event": [ + { + "event_id": 502, + "event_name": "アイドルLIVEツアーinイギリス" + } + ], + "hash": "ce89872af095d6d542918865737692d0", + "id": "2207801", + "profile": { + "bust": "83", + "height": "157", + "hip": "85", + "waist": "59", + "weight": "45" + } + }, + { + "alias_name": "UKスタイル", + "alias_name_display": "UKスタイル", + "event": [ + { + "event_id": 502, + "event_name": "アイドルLIVEツアーinイギリス" + } + ], + "hash": "0018fa3e6f76077d742f60a71ae9d9ae", + "id": "2307802", + "profile": { + "bust": "83", + "height": "157", + "hip": "85", + "waist": "59", + "weight": "45" + } + }, + { + "alias_name": "ピッチピチ☆ピーチ", + "alias_name_display": "ピッチピチ☆ピーチ", + "hash": "813ab4f5eb52eaa3d7e228cfe1ee06c3", + "id": "2216001", + "profile": { + "bust": "83", + "height": "157", + "hip": "85", + "waist": "59", + "weight": "45" + } + }, + { + "alias_name": "ピッチピチ☆ピーチ", + "alias_name_display": "ピッチピチ☆ピーチ", + "hash": "f1cec9f8d3be0ecae1393821e4246fad", + "id": "2316002", + "profile": { + "bust": "83", + "height": "157", + "hip": "85", + "waist": "59", + "weight": "45" + } + }, + { + "alias_name": "バレンタインデビル", + "alias_name_display": "バレンタインデビル", + "hash": "856f71d876bf6d3ad2fe96c51095397e", + "id": "2219601", + "profile": { + "bust": "83", + "height": "157", + "hip": "85", + "waist": "59", + "weight": "45" + } + }, + { + "alias_name": "バレンタインデビル", + "alias_name_display": "バレンタインデビル", + "hash": "4b1fa677378483b3a62a6aa8acd8720b", + "id": "2319602", + "profile": { + "bust": "83", + "height": "157", + "hip": "85", + "waist": "59", + "weight": "45" + } + }, + { + "alias_name": "紅葉温泉", + "alias_name_display": "紅葉温泉", + "hash": "8a35c69116be6ae367c4f422bedcfec5", + "id": "2224001", + "profile": { + "bust": "83", + "height": "157", + "hip": "85", + "waist": "59", + "weight": "45" + } + }, + { + "alias_name": "紅葉温泉", + "alias_name_display": "紅葉温泉", + "hash": "42bc768dec405b1c0a70c399638efdaf", + "id": "2324002", + "profile": { + "bust": "83", + "height": "157", + "hip": "85", + "waist": "59", + "weight": "45" + } + }, + { + "alias_name": "リラックスプレイス", + "alias_name_display": "リラックスプレイス", + "event": [ + { + "event_id": "027", + "event_name": "第27回プロダクションマッチフェスティバル" + } + ], + "hash": "c9bfbeec109cbeaca409a2b420dbb865", + "id": "2226301", + "profile": { + "bust": "83", + "height": "157", + "hip": "85", + "waist": "59", + "weight": "45" + } + }, + { + "alias_name": "リラックスプレイス", + "alias_name_display": "リラックスプレイス", + "event": [ + { + "event_id": "027", + "event_name": "第27回プロダクションマッチフェスティバル" + } + ], + "hash": "336d185e08236f2f1a1aca4b54705398", + "id": "2326302", + "profile": { + "bust": "83", + "height": "157", + "hip": "85", + "waist": "59", + "weight": "45" + } + }, + { + "alias_name": "迎春神楽", + "alias_name_display": "迎春神楽", + "hash": "4a24ef82ffe14e9063b5732f80a4de5b", + "id": "2229901", + "profile": { + "bust": "83", + "height": "157", + "hip": "85", + "waist": "59", + "weight": "45" + } + }, + { + "alias_name": "迎春神楽", + "alias_name_display": "迎春神楽", + "hash": "0a07e2a4bba52f714420ba5947665f25", + "id": "2329902", + "profile": { + "bust": "83", + "height": "157", + "hip": "85", + "waist": "59", + "weight": "45" + } + }, + { + "alias_name": "スプラッシュビューティー", + "alias_name_display": "スプラッシュビューティー", + "event": [ + { + "event_id": 211, + "event_name": "アイドルサバイバルinサマーバケーション" + } + ], + "hash": "aa5bfe6bacceda82855bfd67597c8461", + "id": "2408601", + "profile": { + "bust": "83", + "height": "157", + "hip": "85", + "waist": "59", + "weight": "45" + } + }, + { + "alias_name": "スプラッシュビューティー", + "alias_name_display": "スプラッシュビューティー", + "event": [ + { + "event_id": 211, + "event_name": "アイドルサバイバルinサマーバケーション" + } + ], + "hash": "1ab901851235156066b6c8d1ab519f22", + "id": "2508602", + "profile": { + "bust": "83", + "height": "157", + "hip": "85", + "waist": "59", + "weight": "45" + } + }, + { + "alias_name": "シャッターチャンス", + "alias_name_display": "シャッターチャンス", + "event": [ + { + "event_id": 1402, + "event_name": "第2回ぷちデレラコレクション" + } + ], + "hash": "1a8e02458666accbaf80da3020365ab5", + "id": "2424001", + "profile": { + "bust": "83", + "height": "157", + "hip": "85", + "waist": "59", + "weight": "45" + } + }, + { + "alias_name": "シャッターチャンス", + "alias_name_display": "シャッターチャンス", + "event": [ + { + "event_id": 1402, + "event_name": "第2回ぷちデレラコレクション" + } + ], + "hash": "e931ed75eb91bcd9735bc590a92c07d6", + "id": "2524002", + "profile": { + "bust": "83", + "height": "157", + "hip": "85", + "waist": "59", + "weight": "45" + } + } + ], + "idol_id": 102, + "idol_name": "ケイト", + "idol_name_display": "ケイト", + "units": [ + { + "id": "37", + "name": "ナイトブルーレザー" + }, + { + "id": "125", + "name": "ユア・フレンズ" + }, + { + "id": "170", + "name": "UKスタイル" + } + ] + }, + { + "aliases": [ + { + "hash": "fff13e1315d12b403dc3d4e0d29f55eb", + "id": "2201101", + "profile": { + "bust": "85", + "height": "165", + "hip": "83", + "waist": "58", + "weight": "48" + } + }, + { + "hash": "034a9852b29dbc0b2308204b575a6bbd", + "id": "2301102", + "profile": { + "bust": "85", + "height": "165", + "hip": "83", + "waist": "58", + "weight": "48" + } + }, + { + "alias_name": "マーメイドパラダイス", + "alias_name_display": "マーメイドパラダイス", + "hash": "70cdd1add523e358191d5af81ed40a2d", + "id": "2205201", + "profile": { + "bust": "85", + "height": "165", + "hip": "83", + "waist": "58", + "weight": "48" + } + }, + { + "alias_name": "マーメイドパラダイス", + "alias_name_display": "マーメイドパラダイス", + "hash": "3bfdd43bed9438273cd3e7018e9cdd12", + "id": "2305202", + "profile": { + "bust": "85", + "height": "165", + "hip": "83", + "waist": "58", + "weight": "48" + } + }, + { + "alias_name": "ハッピーウェディング", + "alias_name_display": "ハッピーウェディング", + "hash": "c5fe53e9e75145b9e155df1133f562b9", + "id": "2216201", + "profile": { + "bust": "85", + "height": "165", + "hip": "83", + "waist": "58", + "weight": "48" + } + }, + { + "alias_name": "ハッピーウェディング", + "alias_name_display": "ハッピーウェディング", + "hash": "1b4fccc2662d8ffbb0e171e6ed088f08", + "id": "2316202", + "profile": { + "bust": "85", + "height": "165", + "hip": "83", + "waist": "58", + "weight": "48" + } + }, + { + "alias_name": "レディロッサ", + "alias_name_display": "レディロッサ", + "event": [ + { + "event_id": 1304, + "event_name": "第4回プロダクションマッチフェスティバルS" + } + ], + "hash": "7e27f0eb3f898113a98097901e421c25", + "id": "2322002", + "profile": { + "bust": "85", + "height": "165", + "hip": "83", + "waist": "58", + "weight": "48" + } + }, + { + "alias_name": "メイクオーバー", + "alias_name_display": "メイクオーバー", + "hash": "405d9f977eb9e5ae55806f8681022813", + "id": "2229401", + "profile": { + "bust": "85", + "height": "165", + "hip": "83", + "waist": "58", + "weight": "48" + } + }, + { + "alias_name": "メイクオーバー", + "alias_name_display": "メイクオーバー", + "hash": "3baa4206d90f9d4411968bd934e8cb91", + "id": "2329402", + "profile": { + "bust": "85", + "height": "165", + "hip": "83", + "waist": "58", + "weight": "48" + } + }, + { + "alias_name": "オーシャンズギフト", + "alias_name_display": "オーシャンズギフト", + "hash": "2f1fec2362b65429cfbdbfa86c0e4fc6", + "id": "2232201", + "profile": { + "bust": "85", + "height": "165", + "hip": "83", + "waist": "58", + "weight": "48" + } + }, + { + "alias_name": "オーシャンズギフト", + "alias_name_display": "オーシャンズギフト", + "hash": "d645469362599b364cefb3ec192bc716", + "id": "2332202", + "profile": { + "bust": "85", + "height": "165", + "hip": "83", + "waist": "58", + "weight": "48" + } + }, + { + "alias_name": "白波の歌姫", + "alias_name_display": "白波の歌姫", + "hash": "1bc4222250340e81704f822d87ef28ee", + "id": "2407601", + "profile": { + "bust": "85", + "height": "165", + "hip": "83", + "waist": "58", + "weight": "48" + } + }, + { + "alias_name": "白波の歌姫", + "alias_name_display": "白波の歌姫", + "hash": "492654aed867cdcad6f852b3f2c644ea", + "id": "2507602", + "profile": { + "bust": "85", + "height": "165", + "hip": "83", + "waist": "58", + "weight": "48" + } + }, + { + "alias_name": "ラッシュ・ロワイヤル", + "alias_name_display": "ラッシュ・ロワイヤル", + "event": [ + { + "event_id": 807, + "event_name": "第7回アイドルLIVEロワイヤル" + } + ], + "hash": "c2b247795dc4ab5555062010e1f49218", + "id": "2418401", + "profile": { + "bust": "85", + "height": "165", + "hip": "83", + "waist": "58", + "weight": "48" + } + }, + { + "alias_name": "ラッシュ・ロワイヤル", + "alias_name_display": "ラッシュ・ロワイヤル", + "event": [ + { + "event_id": 807, + "event_name": "第7回アイドルLIVEロワイヤル" + } + ], + "hash": "12327daf4fd261820750b0cdd031c72f", + "id": "2518402", + "profile": { + "bust": "85", + "height": "165", + "hip": "83", + "waist": "58", + "weight": "48" + } + }, + { + "alias_name": "ドリームブライト", + "alias_name_display": "ドリームブライト", + "event": [ + { + "event_id": 721, + "event_name": "第21回ドリームLIVEフェスティバル" + } + ], + "hash": "4298819e543828c4fe4d52415ce2b7a2", + "id": "2432501", + "profile": { + "bust": "85", + "height": "165", + "hip": "83", + "waist": "58", + "weight": "48" + } + }, + { + "alias_name": "ドリームブライト", + "alias_name_display": "ドリームブライト", + "event": [ + { + "event_id": 721, + "event_name": "第21回ドリームLIVEフェスティバル" + } + ], + "hash": "8518eb7db20611b6e579e44780f6fe24", + "id": "2532502", + "profile": { + "bust": "85", + "height": "165", + "hip": "83", + "waist": "58", + "weight": "48" + } + } + ], + "idol_id": 103, + "idol_name": "瀬名詩織", + "idol_name_display": "瀬名詩織", + "units": [ + { + "id": "132", + "name": "thinE/Dasein" + }, + { + "id": "171", + "name": "Black/White-Roses" + }, + { + "id": "182", + "name": "マーメイドパラダイス" + } + ] + }, + { + "aliases": [ + { + "hash": "86972ac887ef7cdbd493b5c04cdfd8ae", + "id": "2201201", + "profile": { + "bust": "85", + "height": "161", + "hip": "84", + "waist": "57", + "weight": "46" + } + }, + { + "hash": "829397535a2dda749dc533961eae03e1", + "id": "2301202", + "profile": { + "bust": "85", + "height": "161", + "hip": "84", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "制服コレクション", + "alias_name_display": "制服コレクション", + "hash": "e2fa19e51b793a88860a1fa01d773b5d", + "id": "2209101", + "profile": { + "bust": "85", + "height": "161", + "hip": "84", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "制服コレクション", + "alias_name_display": "制服コレクション", + "hash": "ef5260d9e7b2be838b8fe51c98a17dea", + "id": "2309102", + "profile": { + "bust": "85", + "height": "161", + "hip": "84", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "プリマ・ガール", + "alias_name_display": "プリマ・ガール", + "hash": "65aa48277443a7498e3181e6ded0f4bd", + "id": "2212501", + "profile": { + "bust": "85", + "height": "161", + "hip": "84", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "プリマ・ガール", + "alias_name_display": "プリマ・ガール", + "hash": "a5794d6e6f993dad76d41c59f7564169", + "id": "2312502", + "profile": { + "bust": "85", + "height": "161", + "hip": "84", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "夏祭り", + "alias_name_display": "夏祭り", + "event": [ + { + "event_id": 714, + "event_name": "夏祭りDEドリームLIVEフェスティバル" + } + ], + "hash": "b87250559476bd36e7a4edd44b2eb222", + "id": "2321702", + "profile": { + "bust": "85", + "height": "161", + "hip": "84", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "努力のメソッド", + "alias_name_display": "努力のメソッド", + "hash": "0ad081c3907847d493a7affac9507fe7", + "id": "2226601", + "profile": { + "bust": "85", + "height": "161", + "hip": "84", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "努力のメソッド", + "alias_name_display": "努力のメソッド", + "hash": "49cc7476bd18bdeef7db013a4800066e", + "id": "2326602", + "profile": { + "bust": "85", + "height": "161", + "hip": "84", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "迎春神楽", + "alias_name_display": "迎春神楽", + "hash": "89abb5eb2a87fa7139ae8a92c5d53de3", + "id": "2229801", + "profile": { + "bust": "85", + "height": "161", + "hip": "84", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "迎春神楽", + "alias_name_display": "迎春神楽", + "hash": "b94589aec610282ec14866f5256f6d69", + "id": "2329802", + "profile": { + "bust": "85", + "height": "161", + "hip": "84", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ベーカリーI.C", + "alias_name_display": "ベーカリーI.C", + "hash": "acfd757cd1d818e44a257bab42cbc34f", + "id": "2332102", + "profile": { + "bust": "85", + "height": "161", + "hip": "84", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ピュアハート", + "alias_name_display": "ピュアハート", + "event": [ + { + "event_id": 103, + "event_name": "バレンタインパーティー" + } + ], + "hash": "9bd2a6f5cc1748d651d0e2ecf34b0b37", + "id": "2401001", + "profile": { + "bust": "85", + "height": "161", + "hip": "84", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ピュアハート", + "alias_name_display": "ピュアハート", + "event": [ + { + "event_id": 103, + "event_name": "バレンタインパーティー" + } + ], + "hash": "381325f3180288e9b294f4fe6895063c", + "id": "2501002", + "profile": { + "bust": "85", + "height": "161", + "hip": "84", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ドキドキ☆チャレンジ", + "alias_name_display": "ドキドキ☆チャレンジ", + "hash": "99fbb3e80d42f6a456d1f1dbbfbe2ad9", + "id": "2412601", + "profile": { + "bust": "85", + "height": "161", + "hip": "84", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ドキドキ☆チャレンジ", + "alias_name_display": "ドキドキ☆チャレンジ", + "hash": "cf78a1a8fa2662da9903e87ff7fc35cd", + "id": "2512602", + "profile": { + "bust": "85", + "height": "161", + "hip": "84", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "クロネコチアー", + "alias_name_display": "クロネコチアー", + "event": [ + { + "event_id": 1106, + "event_name": "プロダクション対抗トークバトルショー ハロウィンSP" + } + ], + "hash": "9165c2689a8b2dc898abea7c588bf4fb", + "id": "2418601", + "profile": { + "bust": "85", + "height": "161", + "hip": "84", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "クロネコチアー", + "alias_name_display": "クロネコチアー", + "event": [ + { + "event_id": 1106, + "event_name": "プロダクション対抗トークバトルショー ハロウィンSP" + } + ], + "hash": "4c7ad97f4e839bcc5a54b54bd69b731b", + "id": "2518602", + "profile": { + "bust": "85", + "height": "161", + "hip": "84", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ロワイヤル・スクエア", + "alias_name_display": "ロワイヤル・スクエア", + "event": [ + { + "event_id": 809, + "event_name": "第9回アイドルLIVEロワイヤル" + } + ], + "hash": "f7cf30adf9a3efe1c1994729fb9e5d2a", + "id": "2420601", + "profile": { + "bust": "85", + "height": "161", + "hip": "84", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ロワイヤル・スクエア", + "alias_name_display": "ロワイヤル・スクエア", + "event": [ + { + "event_id": 809, + "event_name": "第9回アイドルLIVEロワイヤル" + } + ], + "hash": "582c4b7e8369b6f5cb65c7a949a59d98", + "id": "2520602", + "profile": { + "bust": "85", + "height": "161", + "hip": "84", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "クーリッシュラブリー", + "alias_name_display": "クーリッシュラブリー", + "event": [ + { + "event_id": 1404, + "event_name": "第4回ぷちデレラコレクション" + } + ], + "hash": "735912142ede0bd3c2379e81506ebf51", + "id": "2428201", + "profile": { + "bust": "85", + "height": "161", + "hip": "84", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "クーリッシュラブリー", + "alias_name_display": "クーリッシュラブリー", + "event": [ + { + "event_id": 1404, + "event_name": "第4回ぷちデレラコレクション" + } + ], + "hash": "64be02ca19b0210c83956d56b53baa98", + "id": "2528202", + "profile": { + "bust": "85", + "height": "161", + "hip": "84", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "慕われベーカー", + "alias_name_display": "慕われベーカー", + "event": [ + { + "event_id": 1216, + "event_name": "先生と一緒に♪目指せおいしいパン作り アイドルチャレンジ" + } + ], + "hash": "de632bfbfe98d8ca7dff701c187659b9", + "id": "2440001", + "profile": { + "bust": "85", + "height": "161", + "hip": "84", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "慕われベーカー", + "alias_name_display": "慕われベーカー", + "event": [ + { + "event_id": 1216, + "event_name": "先生と一緒に♪目指せおいしいパン作り アイドルチャレンジ" + } + ], + "hash": "6e75966bbcafc0541424c8d8f7b4fcd6", + "id": "2540002", + "profile": { + "bust": "85", + "height": "161", + "hip": "84", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ほほえみベーカー", + "alias_name_display": "ほほえみベーカー", + "hash": "b5e8d9784a291c73d1d7dedf4596a79c", + "id": "2440101", + "profile": { + "bust": "85", + "height": "161", + "hip": "84", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ほほえみベーカー", + "alias_name_display": "ほほえみベーカー", + "hash": "2c7b6d96a1fb1e0ca98ca465fa67c848", + "id": "2540102", + "profile": { + "bust": "85", + "height": "161", + "hip": "84", + "waist": "57", + "weight": "46" + } + } + ], + "idol_id": 104, + "idol_name": "綾瀬穂乃香", + "idol_name_display": "綾瀬穂乃香", + "units": [ + { + "id": "163", + "name": "フリルドスクエア" + } + ] + }, + { + "aliases": [ + { + "hash": "ea5f708af5590fa7d0ae03018ef7c4fd", + "id": "2201301", + "profile": { + "bust": "63", + "height": "137", + "hip": "65", + "waist": "47", + "weight": "30" + } + }, + { + "hash": "3722850cc72d17384b34480a8430cac6", + "id": "2301302", + "profile": { + "bust": "63", + "height": "137", + "hip": "65", + "waist": "47", + "weight": "30" + } + }, + { + "alias_name": "セレクトメイド", + "alias_name_display": "セレクトメイド", + "hash": "3f951d9ae741667ca9f12e59abda200d", + "id": "2214601", + "profile": { + "bust": "63", + "height": "137", + "hip": "65", + "waist": "47", + "weight": "30" + } + }, + { + "alias_name": "セレクトメイド", + "alias_name_display": "セレクトメイド", + "hash": "ac248d004a5dd805137fdc498e3e7727", + "id": "2314602", + "profile": { + "bust": "63", + "height": "137", + "hip": "65", + "waist": "47", + "weight": "30" + } + }, + { + "alias_name": "T.B.チアーズ", + "alias_name_display": "T.B.チアーズ", + "event": [ + { + "event_id": 1105, + "event_name": "第5回プロダクション対抗トークバトルショー" + } + ], + "hash": "7733b9b3450c4ec115f67d4f00c15a76", + "id": "2217801", + "profile": { + "bust": "63", + "height": "137", + "hip": "65", + "waist": "47", + "weight": "30" + } + }, + { + "alias_name": "T.B.チアーズ", + "alias_name_display": "T.B.チアーズ", + "event": [ + { + "event_id": 1105, + "event_name": "第5回プロダクション対抗トークバトルショー" + } + ], + "hash": "57b35cdd62ee9d80eac805a4d238e032", + "id": "2317802", + "profile": { + "bust": "63", + "height": "137", + "hip": "65", + "waist": "47", + "weight": "30" + } + }, + { + "alias_name": "新春ガール", + "alias_name_display": "新春ガール", + "hash": "c65bf606e70d6198e249127bd4bfeceb", + "id": "2224501", + "profile": { + "bust": "63", + "height": "137", + "hip": "65", + "waist": "47", + "weight": "30" + } + }, + { + "alias_name": "新春ガール", + "alias_name_display": "新春ガール", + "hash": "0be443f0e1a964e0a77940d87b72089f", + "id": "2324502", + "profile": { + "bust": "63", + "height": "137", + "hip": "65", + "waist": "47", + "weight": "30" + } + }, + { + "alias_name": "プチ・マドモアゼル", + "alias_name_display": "プチ・マドモアゼル", + "event": [ + { + "event_id": "003", + "event_name": "第3回プロダクションマッチフェスティバル" + } + ], + "hash": "b765e76345cd9a4fa8b071a3e5764e96", + "id": "2402401", + "profile": { + "bust": "63", + "height": "137", + "hip": "65", + "waist": "47", + "weight": "30" + } + }, + { + "alias_name": "プチ・マドモアゼル", + "alias_name_display": "プチ・マドモアゼル", + "event": [ + { + "event_id": "003", + "event_name": "第3回プロダクションマッチフェスティバル" + } + ], + "hash": "d1867fe96fed3771cbbf73cc35af08ea", + "id": "2502402", + "profile": { + "bust": "63", + "height": "137", + "hip": "65", + "waist": "47", + "weight": "30" + } + }, + { + "alias_name": "クリスマスドール", + "alias_name_display": "クリスマスドール", + "hash": "f3393d71e257bdf3a2e4ca51772ef2be", + "id": "2404301", + "profile": { + "bust": "63", + "height": "137", + "hip": "65", + "waist": "47", + "weight": "30" + } + }, + { + "alias_name": "クリスマスドール", + "alias_name_display": "クリスマスドール", + "hash": "b41f85ebc71b158b26cbddfde963c525", + "id": "2504302", + "profile": { + "bust": "63", + "height": "137", + "hip": "65", + "waist": "47", + "weight": "30" + } + }, + { + "alias_name": "夏宵のお嬢様", + "alias_name_display": "夏宵のお嬢様", + "event": [ + { + "event_id": 408, + "event_name": "アイドルプロデュース 夜空に咲く花火編" + } + ], + "hash": "1b14103e8c942735e3f68012c1bceee4", + "id": "2408001", + "profile": { + "bust": "63", + "height": "137", + "hip": "65", + "waist": "47", + "weight": "30" + } + }, + { + "alias_name": "夏宵のお嬢様", + "alias_name_display": "夏宵のお嬢様", + "event": [ + { + "event_id": 408, + "event_name": "アイドルプロデュース 夜空に咲く花火編" + } + ], + "hash": "1ebec92842779992268a13bd4a21bdb2", + "id": "2508002", + "profile": { + "bust": "63", + "height": "137", + "hip": "65", + "waist": "47", + "weight": "30" + } + }, + { + "alias_name": "マーチング☆メロディー", + "alias_name_display": "マーチング☆メロディー", + "hash": "4d4711956ba85d9c8fcbb4b0fe2f9fe8", + "id": "2422701", + "profile": { + "bust": "63", + "height": "137", + "hip": "65", + "waist": "47", + "weight": "30" + } + }, + { + "alias_name": "マーチング☆メロディー", + "alias_name_display": "マーチング☆メロディー", + "hash": "0f9faea779c6b958772df3beae2c0969", + "id": "2522702", + "profile": { + "bust": "63", + "height": "137", + "hip": "65", + "waist": "47", + "weight": "30" + } + }, + { + "alias_name": "小さなドキドキ", + "alias_name_display": "小さなドキドキ", + "event": [ + { + "event_id": 1403, + "event_name": "第3回ぷちデレラコレクション" + } + ], + "hash": "b2a4e884c5dea362551b34d22975a824", + "id": "2426201", + "profile": { + "bust": "63", + "height": "137", + "hip": "65", + "waist": "47", + "weight": "30" + } + }, + { + "alias_name": "小さなドキドキ", + "alias_name_display": "小さなドキドキ", + "event": [ + { + "event_id": 1403, + "event_name": "第3回ぷちデレラコレクション" + } + ], + "hash": "368396982ecee85ed01ac8aae39086b1", + "id": "2526202", + "profile": { + "bust": "63", + "height": "137", + "hip": "65", + "waist": "47", + "weight": "30" + } + }, + { + "alias_name": "紺青のゆらめき", + "alias_name_display": "紺青のゆらめき", + "hash": "a72b17701c91600e7de7ad03eaacb779", + "id": "2432301", + "profile": { + "bust": "63", + "height": "137", + "hip": "65", + "waist": "47", + "weight": "30" + } + }, + { + "alias_name": "紺青のゆらめき", + "alias_name_display": "紺青のゆらめき", + "hash": "cbbfe22229dab51ecdb033d78869a359", + "id": "2532302", + "profile": { + "bust": "63", + "height": "137", + "hip": "65", + "waist": "47", + "weight": "30" + } + }, + { + "alias_name": "ドーリー・ロワイヤル", + "alias_name_display": "ドーリー・ロワイヤル", + "event": [ + { + "event_id": 821, + "event_name": "第21回アイドルLIVEロワイヤル" + } + ], + "hash": "bac71801e52aed85607e0ac568eedb15", + "id": "2437301", + "profile": { + "bust": "63", + "height": "137", + "hip": "65", + "waist": "47", + "weight": "30" + } + }, + { + "alias_name": "ドーリー・ロワイヤル", + "alias_name_display": "ドーリー・ロワイヤル", + "event": [ + { + "event_id": 821, + "event_name": "第21回アイドルLIVEロワイヤル" + } + ], + "hash": "674f4cb361e967bca336653539ed6613", + "id": "2537302", + "profile": { + "bust": "63", + "height": "137", + "hip": "65", + "waist": "47", + "weight": "30" + } + } + ], + "idol_id": 105, + "idol_name": "佐城雪美", + "idol_name_display": "佐城雪美", + "units": [ + { + "id": "211", + "name": "ワンダー・フル" + }, + { + "id": "214", + "name": "L.M.B.G" + } + ] + }, + { + "aliases": [ + { + "hash": "6266f471377bc1698b58ddd4638ead09", + "id": "2201401", + "profile": { + "bust": "72", + "height": "162", + "hip": "78", + "waist": "55", + "weight": "41" + } + }, + { + "hash": "9c713eb6f7e6bab427ce008655b9e9a9", + "id": "2301402", + "profile": { + "bust": "72", + "height": "162", + "hip": "78", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "制服ブルー", + "alias_name_display": "制服ブルー", + "hash": "d01c7b35bb21f8e63a8410fc4c644ce4", + "id": "2202601", + "profile": { + "bust": "72", + "height": "162", + "hip": "78", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "制服ベージュ", + "alias_name_display": "制服ベージュ", + "hash": "7b80fbc184731895e18d4d04b69d4af5", + "id": "2202602", + "profile": { + "bust": "72", + "height": "162", + "hip": "78", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "制服レッド", + "alias_name_display": "制服レッド", + "hash": "d7732a8d0a3fdfc3060ca2897187f188", + "id": "2202603", + "profile": { + "bust": "72", + "height": "162", + "hip": "78", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "制服グリーン", + "alias_name_display": "制服グリーン", + "hash": "3d78511d3da1db3fb51a938c8dd968d1", + "id": "2202604", + "profile": { + "bust": "72", + "height": "162", + "hip": "78", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ピンクダイヤモンド765", + "alias_name_display": "ピンクダイヤモンド765", + "hash": "306b770ebb8f0cf8f990c4d7e3720910", + "id": "2302605", + "profile": { + "bust": "72", + "height": "162", + "hip": "78", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "パウダースノーホワイティ", + "alias_name_display": "パウダースノーホワイティ", + "hash": "c486d656f7e2b62acee082e7311ab881", + "id": "2302606", + "profile": { + "bust": "72", + "height": "162", + "hip": "78", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ファイアオパール76ct", + "alias_name_display": "ファイアオパール76ct", + "hash": "91f73d36b69535cd4578ec74637c6059", + "id": "2302607", + "profile": { + "bust": "72", + "height": "162", + "hip": "78", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "レザードクィーン", + "alias_name_display": "レザードクィーン", + "hash": "c8f06e16aaa220f282b912a6b05ff4d7", + "id": "2302608", + "profile": { + "bust": "72", + "height": "162", + "hip": "78", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ハイネスルージュ", + "alias_name_display": "ハイネスルージュ", + "hash": "f68f6ba5aaa28606a5d9290ea4e7db4d", + "id": "2302609", + "profile": { + "bust": "72", + "height": "162", + "hip": "78", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "孤高の歌姫", + "alias_name_display": "孤高の歌姫", + "hash": "0d39c65b94d1a11cae537f6886dbb97a", + "id": "2400101", + "profile": { + "bust": "72", + "height": "162", + "hip": "78", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "孤高の歌姫", + "alias_name_display": "孤高の歌姫", + "hash": "d2b23ca96d8ec3e6e9d06a33fc2ab472", + "id": "2500102", + "profile": { + "bust": "72", + "height": "162", + "hip": "78", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "瑠璃の歌姫", + "alias_name_display": "瑠璃の歌姫", + "hash": "5b51c5da302fb24a3a7af06ba2df4b1e", + "id": "2400910", + "profile": { + "bust": "72", + "height": "162", + "hip": "78", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "瑠璃の歌姫", + "alias_name_display": "瑠璃の歌姫", + "hash": "333569a4bc55998dc01ad3a8a2f91cc3", + "id": "2500911", + "profile": { + "bust": "72", + "height": "162", + "hip": "78", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "スクーリッシュガール", + "alias_name_display": "スクーリッシュガール", + "hash": "6825521e806675ddeb47bc1fce922ed7", + "id": "2501802", + "profile": { + "bust": "72", + "height": "162", + "hip": "78", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "アーリーサマーバカンス", + "alias_name_display": "アーリーサマーバカンス", + "hash": "dfe34529a4dc472ca44c6ad923e44b5b", + "id": "2507502", + "profile": { + "bust": "72", + "height": "162", + "hip": "78", + "waist": "55", + "weight": "41" + } + } + ], + "idol_id": 106, + "idol_name": "如月千早", + "idol_name_display": "如月千早" + }, + { + "aliases": [ + { + "hash": "70716895c47fcf16e1441bb913c05bb8", + "id": "2201501", + "profile": { + "bust": "91", + "height": "168", + "hip": "86", + "waist": "59", + "weight": "48" + } + }, + { + "hash": "17994e5072cc7b760383dda8e199ada2", + "id": "2301502", + "profile": { + "bust": "91", + "height": "168", + "hip": "86", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "皆のお姉さん", + "alias_name_display": "皆のお姉さん", + "hash": "84b97983ec5badf26de49cc9f4a9a14f", + "id": "2400201", + "profile": { + "bust": "91", + "height": "168", + "hip": "86", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "皆のお姉さん", + "alias_name_display": "皆のお姉さん", + "hash": "e2580dce271a51554eb13c46c36d2adc", + "id": "2500202", + "profile": { + "bust": "91", + "height": "168", + "hip": "86", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "エステル衣装", + "alias_name_display": "エステル衣装", + "hash": "035141c2768cddbab1153b2dcbcb3013", + "id": "2500602", + "profile": { + "bust": "91", + "height": "168", + "hip": "86", + "waist": "59", + "weight": "48" + } + } + ], + "idol_id": 107, + "idol_name": "三浦あずさ", + "idol_name_display": "三浦あずさ" + }, + { + "aliases": [ + { + "hash": "30a17a9dccef3c222df1abb5ffcd7a01", + "id": "2201601", + "profile": { + "bust": "85", + "height": "156", + "hip": "85", + "waist": "57", + "weight": "43" + } + }, + { + "hash": "945ac71535e44e4a84b49f9ff08ae9df", + "id": "2301602", + "profile": { + "bust": "85", + "height": "156", + "hip": "85", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "プロデューサーアイドル", + "alias_name_display": "プロデューサーアイドル", + "hash": "6561a1f85b71bd4a9d8777ce46ea3cb4", + "id": "2402301", + "profile": { + "bust": "85", + "height": "156", + "hip": "85", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "プロデューサーアイドル", + "alias_name_display": "プロデューサーアイドル", + "hash": "1b3a397157d4c390983480f0b8ebb2a1", + "id": "2502302", + "profile": { + "bust": "85", + "height": "156", + "hip": "85", + "waist": "57", + "weight": "43" + } + } + ], + "idol_id": 108, + "idol_name": "秋月律子", + "idol_name_display": "秋月律子" + }, + { + "aliases": [ + { + "hash": "ecc6dd0013d9d3d8ae24947d77a78192", + "id": "2201701", + "profile": { + "bust": "90", + "height": "169", + "hip": "92", + "waist": "62", + "weight": "49" + } + }, + { + "hash": "ef24b54f844eae492aa0c8b4c7b2e0b1", + "id": "2301702", + "profile": { + "bust": "90", + "height": "169", + "hip": "92", + "waist": "62", + "weight": "49" + } + }, + { + "alias_name": "デビュタントピンク", + "alias_name_display": "デビュタントピンク", + "hash": "6969734196b2f2b3875802f7057d9a46", + "id": "2204701", + "profile": { + "bust": "90", + "height": "169", + "hip": "92", + "waist": "62", + "weight": "49" + } + }, + { + "alias_name": "デビュタントブルー", + "alias_name_display": "デビュタントブルー", + "hash": "a2ce78a81c9ec000846083b74c110f15", + "id": "2204702", + "profile": { + "bust": "90", + "height": "169", + "hip": "92", + "waist": "62", + "weight": "49" + } + }, + { + "alias_name": "デビュタントブラック", + "alias_name_display": "デビュタントブラック", + "hash": "690c223b272695a6d34dc486d2afde95", + "id": "2204703", + "profile": { + "bust": "90", + "height": "169", + "hip": "92", + "waist": "62", + "weight": "49" + } + }, + { + "alias_name": "デビュタントホワイト", + "alias_name_display": "デビュタントホワイト", + "hash": "50fa6a567d514c9179aa866da882f542", + "id": "2204704", + "profile": { + "bust": "90", + "height": "169", + "hip": "92", + "waist": "62", + "weight": "49" + } + }, + { + "alias_name": "ピンクダイヤモンド765", + "alias_name_display": "ピンクダイヤモンド765", + "hash": "87c822ee1ff22341326235a223f61a3d", + "id": "2304705", + "profile": { + "bust": "90", + "height": "169", + "hip": "92", + "waist": "62", + "weight": "49" + } + }, + { + "alias_name": "スカイパズラー", + "alias_name_display": "スカイパズラー", + "hash": "6e808ea3c7b1ba70625f267cabaa8008", + "id": "2304706", + "profile": { + "bust": "90", + "height": "169", + "hip": "92", + "waist": "62", + "weight": "49" + } + }, + { + "alias_name": "メイデンインブラック", + "alias_name_display": "メイデンインブラック", + "hash": "84b5d07825dcc54fcfb3fdb71c1ee3e6", + "id": "2304707", + "profile": { + "bust": "90", + "height": "169", + "hip": "92", + "waist": "62", + "weight": "49" + } + }, + { + "alias_name": "スカーレットスプライト", + "alias_name_display": "スカーレットスプライト", + "hash": "13b52bd8c6be2d03f0a1125160c38620", + "id": "2304708", + "profile": { + "bust": "90", + "height": "169", + "hip": "92", + "waist": "62", + "weight": "49" + } + }, + { + "alias_name": "ギルデッドマドモアゼル", + "alias_name_display": "ギルデッドマドモアゼル", + "hash": "7e3688a45dcde6ac996e300c046e8df6", + "id": "2304709", + "profile": { + "bust": "90", + "height": "169", + "hip": "92", + "waist": "62", + "weight": "49" + } + }, + { + "alias_name": "銀色の王女", + "alias_name_display": "銀色の王女", + "hash": "ce4bd80928c636bf1dc75260f561f97a", + "id": "2400801", + "profile": { + "bust": "90", + "height": "169", + "hip": "92", + "waist": "62", + "weight": "49" + } + }, + { + "alias_name": "銀色の王女", + "alias_name_display": "銀色の王女", + "hash": "07e8a45d27c4a45e2c271aeaa5b38c91", + "id": "2500802", + "profile": { + "bust": "90", + "height": "169", + "hip": "92", + "waist": "62", + "weight": "49" + } + }, + { + "alias_name": "鏡花水月", + "alias_name_display": "鏡花水月", + "hash": "828a4a1ec46c8d6deb0eba32090ba9cb", + "id": "2402210", + "profile": { + "bust": "90", + "height": "169", + "hip": "92", + "waist": "62", + "weight": "49" + } + }, + { + "alias_name": "鏡花水月", + "alias_name_display": "鏡花水月", + "hash": "6957fb77f5d5d67695e7f50dbfa36ab0", + "id": "2502211", + "profile": { + "bust": "90", + "height": "169", + "hip": "92", + "waist": "62", + "weight": "49" + } + }, + { + "alias_name": "1stアニバーサリー", + "alias_name_display": "1stアニバーサリー", + "hash": "166fb623aae4d975387c3fbc8770a099", + "id": "2504102", + "profile": { + "bust": "90", + "height": "169", + "hip": "92", + "waist": "62", + "weight": "49" + } + } + ], + "idol_id": 109, + "idol_name": "四条貴音", + "idol_name_display": "四条貴音" + }, + { + "aliases": [ + { + "hash": "0279e0bfe3a06fed6d20b88fea031a7a", + "id": "2201801", + "profile": { + "bust": "93", + "height": "171", + "hip": "88", + "waist": "58", + "weight": "49" + } + }, + { + "hash": "7cd1a870c72ca2735908ddd66f81810b", + "id": "2301802", + "profile": { + "bust": "93", + "height": "171", + "hip": "88", + "waist": "58", + "weight": "49" + } + }, + { + "alias_name": "ハロウィンナイト", + "alias_name_display": "ハロウィンナイト", + "hash": "8879f0329b71adf6b1abf6fb9d6a5bb6", + "id": "2212301", + "profile": { + "bust": "93", + "height": "171", + "hip": "88", + "waist": "58", + "weight": "49" + } + }, + { + "alias_name": "ハロウィンナイト", + "alias_name_display": "ハロウィンナイト", + "hash": "e81e141fc2930933396e6f82f3752454", + "id": "2312302", + "profile": { + "bust": "93", + "height": "171", + "hip": "88", + "waist": "58", + "weight": "49" + } + }, + { + "alias_name": "美の商人", + "alias_name_display": "美の商人", + "hash": "fb122260ba37bf6f6f32f4f022ed1057", + "id": "2219301", + "profile": { + "bust": "93", + "height": "171", + "hip": "88", + "waist": "58", + "weight": "49" + } + }, + { + "alias_name": "美の商人", + "alias_name_display": "美の商人", + "hash": "546e3e4addf32b2699b404b4a31986e7", + "id": "2319302", + "profile": { + "bust": "93", + "height": "171", + "hip": "88", + "waist": "58", + "weight": "49" + } + }, + { + "alias_name": "サポートレディ", + "alias_name_display": "サポートレディ", + "event": [ + { + "event_id": 523, + "event_name": "鋼鉄公演 きらりんロボ -襲来!コスメティア帝国-" + } + ], + "hash": "11af6a1079aed45abb135d98fe6f2845", + "id": "2324702", + "profile": { + "bust": "93", + "height": "171", + "hip": "88", + "waist": "58", + "weight": "49" + } + }, + { + "alias_name": "ロワイヤルスタイルND", + "alias_name_display": "ロワイヤルスタイルND", + "event": [ + { + "event_id": 819, + "event_name": "アイドルLIVEロワイヤル お月見SP" + } + ], + "hash": "365839f8844308b4839461dd4a306d93", + "id": "2228701", + "profile": { + "bust": "93", + "height": "171", + "hip": "88", + "waist": "58", + "weight": "49" + } + }, + { + "alias_name": "ロワイヤルスタイルND", + "alias_name_display": "ロワイヤルスタイルND", + "event": [ + { + "event_id": 819, + "event_name": "アイドルLIVEロワイヤル お月見SP" + } + ], + "hash": "87d0eaea9cf36828555acb4e6d2bc8dd", + "id": "2328702", + "profile": { + "bust": "93", + "height": "171", + "hip": "88", + "waist": "58", + "weight": "49" + } + }, + { + "alias_name": "意外な一面", + "alias_name_display": "意外な一面", + "event": [ + { + "event_id": 707, + "event_name": "第7回ドリームLIVEフェスティバル" + } + ], + "hash": "6ec5a36a72a58e3a52a59bfd4c82c30a", + "id": "2415501", + "profile": { + "bust": "93", + "height": "171", + "hip": "88", + "waist": "58", + "weight": "49" + } + }, + { + "alias_name": "意外な一面", + "alias_name_display": "意外な一面", + "event": [ + { + "event_id": 707, + "event_name": "第7回ドリームLIVEフェスティバル" + } + ], + "hash": "8866ceff2565f6f6d52ad2a6e7a3fa24", + "id": "2515502", + "profile": { + "bust": "93", + "height": "171", + "hip": "88", + "waist": "58", + "weight": "49" + } + }, + { + "alias_name": "アトラクティブレディ", + "alias_name_display": "アトラクティブレディ", + "event": [ + { + "event_id": 713, + "event_name": "第13回ドリームLIVEフェスティバル" + } + ], + "hash": "1b18dca284fedc5a3a8f048920f28a1c", + "id": "2424301", + "profile": { + "bust": "93", + "height": "171", + "hip": "88", + "waist": "58", + "weight": "49" + } + }, + { + "alias_name": "アトラクティブレディ", + "alias_name_display": "アトラクティブレディ", + "event": [ + { + "event_id": 713, + "event_name": "第13回ドリームLIVEフェスティバル" + } + ], + "hash": "084e23921a2680662428a561923bb395", + "id": "2524302", + "profile": { + "bust": "93", + "height": "171", + "hip": "88", + "waist": "58", + "weight": "49" + } + } + ], + "idol_id": 110, + "idol_name": "篠原礼", + "idol_name_display": "篠原礼", + "units": [ + { + "id": "161", + "name": "ハロウィンナイト" + }, + { + "id": "206", + "name": "セクシーボンデージ" + }, + { + "id": "210", + "name": "ロワイヤルスタイルND" + } + ] + }, + { + "aliases": [ + { + "hash": "b73e3bd3f986371ca390c06539f30f2e", + "id": "2202101", + "profile": { + "bust": "81", + "height": "168", + "hip": "86", + "waist": "60", + "weight": "49" + } + }, + { + "hash": "b1cc240b628c799f43e40e3187fe854d", + "id": "2302102", + "profile": { + "bust": "82", + "height": "168", + "hip": "86", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "オフスタイルネイビー", + "alias_name_display": "オフスタイルネイビー", + "event": [ + { + "event_id": 105, + "event_name": "きらめくブライダルショー" + } + ], + "hash": "e00193ce7e4fb576c82d218d2b18b733", + "id": "2204201", + "profile": { + "bust": "82", + "height": "168", + "hip": "86", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "オフスタイルグリーン", + "alias_name_display": "オフスタイルグリーン", + "event": [ + { + "event_id": 105, + "event_name": "きらめくブライダルショー" + } + ], + "hash": "2382d33c9aed1fd427050e60d36da85a", + "id": "2204202", + "profile": { + "bust": "82", + "height": "168", + "hip": "86", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "オフスタイルブラウン", + "alias_name_display": "オフスタイルブラウン", + "event": [ + { + "event_id": 105, + "event_name": "きらめくブライダルショー" + } + ], + "hash": "c22a01b2e037f0c682b49529075995cb", + "id": "2204203", + "profile": { + "bust": "82", + "height": "168", + "hip": "86", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "オフスタイルローズグレイ", + "alias_name_display": "オフスタイルローズグレイ", + "event": [ + { + "event_id": 105, + "event_name": "きらめくブライダルショー" + } + ], + "hash": "36981cf43b6efc635d83a00cf1907580", + "id": "2204204", + "profile": { + "bust": "82", + "height": "168", + "hip": "86", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "ドレスアップパープル", + "alias_name_display": "ドレスアップパープル", + "event": [ + { + "event_id": 105, + "event_name": "きらめくブライダルショー" + } + ], + "hash": "314c5bfcaeecf15de958fd77d49740f2", + "id": "2304205", + "profile": { + "bust": "82", + "height": "168", + "hip": "86", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "ドレスアップレッド", + "alias_name_display": "ドレスアップレッド", + "event": [ + { + "event_id": 105, + "event_name": "きらめくブライダルショー" + } + ], + "hash": "5f8a3f98486604275267c877b9905349", + "id": "2304206", + "profile": { + "bust": "82", + "height": "168", + "hip": "86", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "ドレスアップホワイト", + "alias_name_display": "ドレスアップホワイト", + "event": [ + { + "event_id": 105, + "event_name": "きらめくブライダルショー" + } + ], + "hash": "a313a6d6050a1e06b6087b272789f86a", + "id": "2304207", + "profile": { + "bust": "82", + "height": "168", + "hip": "86", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "ドレスアップボルドー", + "alias_name_display": "ドレスアップボルドー", + "event": [ + { + "event_id": 105, + "event_name": "きらめくブライダルショー" + } + ], + "hash": "b15320c5e2f4786b0ff458609a6d2635", + "id": "2304208", + "profile": { + "bust": "82", + "height": "168", + "hip": "86", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "ドレスアップゴールド", + "alias_name_display": "ドレスアップゴールド", + "event": [ + { + "event_id": 105, + "event_name": "きらめくブライダルショー" + } + ], + "hash": "fcaecc5aba2427916914caa943a2e751", + "id": "2304209", + "profile": { + "bust": "82", + "height": "168", + "hip": "86", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "静かな努力家", + "alias_name_display": "静かな努力家", + "hash": "cd9c8866ec5bbc25600c8509b7e23ee1", + "id": "2208801", + "profile": { + "bust": "82", + "height": "168", + "hip": "86", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "静かな努力家", + "alias_name_display": "静かな努力家", + "hash": "854aecfaa588047988fcbd1d58f24b39", + "id": "2308802", + "profile": { + "bust": "82", + "height": "168", + "hip": "86", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "ビーチパラダイス", + "alias_name_display": "ビーチパラダイス", + "hash": "7f2b355d90da1b40b701278e3685134b", + "id": "2211301", + "profile": { + "bust": "82", + "height": "168", + "hip": "86", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "ビーチパラダイス", + "alias_name_display": "ビーチパラダイス", + "hash": "269d6c6828618794868c7036ec3476f8", + "id": "2311302", + "profile": { + "bust": "82", + "height": "168", + "hip": "86", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "湯けむり月夜", + "alias_name_display": "湯けむり月夜", + "hash": "ff373239ccc29ac4931e2c645f76f6c9", + "id": "2215201", + "profile": { + "bust": "82", + "height": "168", + "hip": "86", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "湯けむり月夜", + "alias_name_display": "湯けむり月夜", + "hash": "02cb84e31df0077d2e0ecdb68ba667cb", + "id": "2315202", + "profile": { + "bust": "82", + "height": "168", + "hip": "86", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "T.B.キャット", + "alias_name_display": "T.B.キャット", + "event": [ + { + "event_id": 1501, + "event_name": "チーム対抗トークバトルショー" + } + ], + "hash": "8ac440b6a9ec7028274817475b72998c", + "id": "2220701", + "profile": { + "bust": "82", + "height": "168", + "hip": "86", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "T.B.キャット", + "alias_name_display": "T.B.キャット", + "event": [ + { + "event_id": 1501, + "event_name": "チーム対抗トークバトルショー" + } + ], + "hash": "e0f1d6dfebca5b8e5d9df02af727c034", + "id": "2320702", + "profile": { + "bust": "82", + "height": "168", + "hip": "86", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "デイワークビューティー", + "alias_name_display": "デイワークビューティー", + "hash": "5ab4472580be930b8105563d3c6a11ef", + "id": "2227701", + "profile": { + "bust": "82", + "height": "168", + "hip": "86", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "デイワークビューティー", + "alias_name_display": "デイワークビューティー", + "hash": "38107f446aa746865421aa8269aa0ac4", + "id": "2327702", + "profile": { + "bust": "82", + "height": "168", + "hip": "86", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "サーカスパフォーマー", + "alias_name_display": "サーカスパフォーマー", + "event": [ + { + "event_id": 1709, + "event_name": "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" + } + ], + "hash": "bfde9af8b334a1f4a1e1d938ded92205", + "id": "2230801", + "profile": { + "bust": "82", + "height": "168", + "hip": "86", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "サーカスパフォーマー", + "alias_name_display": "サーカスパフォーマー", + "event": [ + { + "event_id": 1709, + "event_name": "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" + } + ], + "hash": "bbcde289f3d87a0c962fc15b1a974d97", + "id": "2330802", + "profile": { + "bust": "82", + "height": "168", + "hip": "86", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "スマイリーパフォーマー", + "alias_name_display": "スマイリーパフォーマー", + "event": [ + { + "event_id": 1709, + "event_name": "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" + } + ], + "hash": "3172ddc229fc3bb9fac024eb306f9b9c", + "id": "2230901", + "profile": { + "bust": "82", + "height": "168", + "hip": "86", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "スマイリーパフォーマー", + "alias_name_display": "スマイリーパフォーマー", + "event": [ + { + "event_id": 1709, + "event_name": "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" + } + ], + "hash": "34b7996576f65254b70545f0354fa9b9", + "id": "2330902", + "profile": { + "bust": "82", + "height": "168", + "hip": "86", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "麗しの花嫁", + "alias_name_display": "麗しの花嫁", + "event": [ + { + "event_id": 105, + "event_name": "きらめくブライダルショー" + } + ], + "hash": "71ace62d52bc64c427809bd37d63ab73", + "id": "2402001", + "profile": { + "bust": "82", + "height": "168", + "hip": "86", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "麗しの花嫁", + "alias_name_display": "麗しの花嫁", + "event": [ + { + "event_id": 105, + "event_name": "きらめくブライダルショー" + } + ], + "hash": "178e02295da98410b3d89ee67ff59085", + "id": "2502002", + "profile": { + "bust": "82", + "height": "168", + "hip": "86", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "ミスティックブルー", + "alias_name_display": "ミスティックブルー", + "event": [ + { + "event_id": 802, + "event_name": "第2回アイドルLIVEロワイヤル" + } + ], + "hash": "9c8cd39caf884771877dd30d6d567a6e", + "id": "2411201", + "profile": { + "bust": "82", + "height": "168", + "hip": "86", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "ミスティックブルー", + "alias_name_display": "ミスティックブルー", + "event": [ + { + "event_id": 802, + "event_name": "第2回アイドルLIVEロワイヤル" + } + ], + "hash": "d9bb8ac767435a8c90758e5b78eb982a", + "id": "2511202", + "profile": { + "bust": "82", + "height": "168", + "hip": "86", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "貴婦人のたしなみ", + "alias_name_display": "貴婦人のたしなみ", + "hash": "8b426648033650a8b6f0ea72f9d48b9e", + "id": "2417501", + "profile": { + "bust": "82", + "height": "168", + "hip": "86", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "貴婦人のたしなみ", + "alias_name_display": "貴婦人のたしなみ", + "hash": "ad621fe47393a5bcba98b5729077ac4e", + "id": "2517502", + "profile": { + "bust": "82", + "height": "168", + "hip": "86", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "ダークネスクイーン", + "alias_name_display": "ダークネスクイーン", + "event": [ + { + "event_id": 522, + "event_name": "魔界公演 幽鬱女王とハロウィンの祝祭" + } + ], + "hash": "975f3cb8d1472238c39f2fff0c7b43aa", + "id": "2427701", + "profile": { + "bust": "82", + "height": "168", + "hip": "86", + "waist": "60", + "weight": "50" + } + }, + { + "alias_name": "ダークネスクイーン", + "alias_name_display": "ダークネスクイーン", + "event": [ + { + "event_id": 522, + "event_name": "魔界公演 幽鬱女王とハロウィンの祝祭" + } + ], + "hash": "303643dbb839ee0d48bfb7def91c193f", + "id": "2527702", + "profile": { + "bust": "82", + "height": "168", + "hip": "86", + "waist": "60", + "weight": "50" + } + } + ], + "idol_id": 111, + "idol_name": "和久井留美", + "idol_name_display": "和久井留美", + "units": [ + { + "id": "10", + "name": "エレガントインモラリスト" + }, + { + "id": "142", + "name": "バレンタイン反省会" + } + ] + }, + { + "aliases": [ + { + "hash": "0f37976821af0722871ecf50938c7ddf", + "id": "2202201", + "profile": { + "bust": "86", + "height": "166", + "hip": "85", + "waist": "60", + "weight": "43" + } + }, + { + "hash": "7ef2544b02c9736db8d008c4f17b7e5b", + "id": "2302202", + "profile": { + "bust": "86", + "height": "166", + "hip": "85", + "waist": "60", + "weight": "43" + } + }, + { + "alias_name": "学園祭", + "alias_name_display": "学園祭", + "event": [ + { + "event_id": 206, + "event_name": "アイドルサバイバルin学園祭" + } + ], + "hash": "ac0b2131e6f7eaf2723a2ade75928495", + "id": "2206001", + "profile": { + "bust": "86", + "height": "166", + "hip": "85", + "waist": "60", + "weight": "43" + } + }, + { + "alias_name": "学園祭", + "alias_name_display": "学園祭", + "event": [ + { + "event_id": 206, + "event_name": "アイドルサバイバルin学園祭" + } + ], + "hash": "1e410552f7955af4fe1b69477d8b43f5", + "id": "2306002", + "profile": { + "bust": "86", + "height": "166", + "hip": "85", + "waist": "60", + "weight": "43" + } + }, + { + "alias_name": "スペーススタイル", + "alias_name_display": "スペーススタイル", + "event": [ + { + "event_id": 508, + "event_name": "LIVEツアーカーニバルinスペースワールド" + } + ], + "hash": "b20a29ffa2a750c5b4cd9d81b3bbc9e5", + "id": "2212701", + "profile": { + "bust": "86", + "height": "166", + "hip": "85", + "waist": "60", + "weight": "43" + } + }, + { + "alias_name": "スペーススタイル", + "alias_name_display": "スペーススタイル", + "event": [ + { + "event_id": 508, + "event_name": "LIVEツアーカーニバルinスペースワールド" + } + ], + "hash": "8bcd14c592bd07ef8fd285826b3cc7c9", + "id": "2312702", + "profile": { + "bust": "86", + "height": "166", + "hip": "85", + "waist": "60", + "weight": "43" + } + }, + { + "alias_name": "ロワイヤルスタイルNP", + "alias_name_display": "ロワイヤルスタイルNP", + "event": [ + { + "event_id": 805, + "event_name": "第5回アイドルLIVEロワイヤル" + } + ], + "hash": "07c40e49cccf9ee5f745371d6765771f", + "id": "2216401", + "profile": { + "bust": "86", + "height": "166", + "hip": "85", + "waist": "60", + "weight": "43" + } + }, + { + "alias_name": "ロワイヤルスタイルNP", + "alias_name_display": "ロワイヤルスタイルNP", + "event": [ + { + "event_id": 805, + "event_name": "第5回アイドルLIVEロワイヤル" + } + ], + "hash": "e607ec174fa5ea275f7191310a0f77ca", + "id": "2316402", + "profile": { + "bust": "86", + "height": "166", + "hip": "85", + "waist": "60", + "weight": "43" + } + }, + { + "alias_name": "グラッドチョイス", + "alias_name_display": "グラッドチョイス", + "hash": "0434189262b7766edcc7b1491a046d2f", + "id": "2221201", + "profile": { + "bust": "86", + "height": "166", + "hip": "85", + "waist": "60", + "weight": "43" + } + }, + { + "alias_name": "グラッドチョイス", + "alias_name_display": "グラッドチョイス", + "hash": "3fb35c1361dd289f9eefa90cd530b673", + "id": "2321202", + "profile": { + "bust": "86", + "height": "166", + "hip": "85", + "waist": "60", + "weight": "43" + } + }, + { + "alias_name": "オータムコレクション", + "alias_name_display": "オータムコレクション", + "hash": "3dc82db81712eb3b82c990cba0a79445", + "id": "2223601", + "profile": { + "bust": "86", + "height": "166", + "hip": "85", + "waist": "60", + "weight": "43" + } + }, + { + "alias_name": "オータムコレクション", + "alias_name_display": "オータムコレクション", + "hash": "af93b43c6c0f650d536f3f54a4a9fcf3", + "id": "2323602", + "profile": { + "bust": "86", + "height": "166", + "hip": "85", + "waist": "60", + "weight": "43" + } + }, + { + "alias_name": "ニンジュツI.C", + "alias_name_display": "ニンジュツI.C", + "event": [ + { + "event_id": 1214, + "event_name": "目指せくのいち アイドルチャレンジ" + } + ], + "hash": "56f24e0254e2641e6d33e184044a44ad", + "id": "2330102", + "profile": { + "bust": "86", + "height": "166", + "hip": "85", + "waist": "60", + "weight": "43" + } + }, + { + "alias_name": "ボーイッシュエレガント", + "alias_name_display": "ボーイッシュエレガント", + "event": [ + { + "event_id": 210, + "event_name": "アイドルサバイバルinテーマパーク2013" + } + ], + "hash": "0ca31e6713d9778cce09548060c5b987", + "id": "2406501", + "profile": { + "bust": "86", + "height": "166", + "hip": "85", + "waist": "60", + "weight": "43" + } + }, + { + "alias_name": "ボーイッシュエレガント", + "alias_name_display": "ボーイッシュエレガント", + "event": [ + { + "event_id": 210, + "event_name": "アイドルサバイバルinテーマパーク2013" + } + ], + "hash": "426a1c8445a2f2a1f1109d383cac3cae", + "id": "2506502", + "profile": { + "bust": "86", + "height": "166", + "hip": "85", + "waist": "60", + "weight": "43" + } + }, + { + "alias_name": "アーティスティックチアー", + "alias_name_display": "アーティスティックチアー", + "event": [ + { + "event_id": 1108, + "event_name": "第8回プロダクション対抗トークバトルショー" + } + ], + "hash": "6f94c84a133c5c6ff24dc90d31692786", + "id": "2420901", + "profile": { + "bust": "86", + "height": "166", + "hip": "85", + "waist": "60", + "weight": "43" + } + }, + { + "alias_name": "アーティスティックチアー", + "alias_name_display": "アーティスティックチアー", + "event": [ + { + "event_id": 1108, + "event_name": "第8回プロダクション対抗トークバトルショー" + } + ], + "hash": "981490772e3d268a8af831a339a9c56d", + "id": "2520902", + "profile": { + "bust": "86", + "height": "166", + "hip": "85", + "waist": "60", + "weight": "43" + } + }, + { + "alias_name": "ジャパニーズアート", + "alias_name_display": "ジャパニーズアート", + "event": [ + { + "event_id": 718, + "event_name": "ドリームLIVEフェスティバル 新春SP" + } + ], + "hash": "f4b3a3a0844450d52613698c6ce1a699", + "id": "2430001", + "profile": { + "bust": "86", + "height": "166", + "hip": "85", + "waist": "60", + "weight": "43" + } + }, + { + "alias_name": "ジャパニーズアート", + "alias_name_display": "ジャパニーズアート", + "event": [ + { + "event_id": 718, + "event_name": "ドリームLIVEフェスティバル 新春SP" + } + ], + "hash": "a964e412394600f1eae51eb0a573a59e", + "id": "2530002", + "profile": { + "bust": "86", + "height": "166", + "hip": "85", + "waist": "60", + "weight": "43" + } + }, + { + "alias_name": "弦月のアラジン", + "alias_name_display": "弦月のアラジン", + "event": [ + { + "event_id": 1902, + "event_name": "御伽公演 おてんば姫とまぢヤバな魔法のランプ" + } + ], + "hash": "9f1e3889ba04bc06e21bc8d5e7eddf21", + "id": "2433701", + "profile": { + "bust": "86", + "height": "166", + "hip": "85", + "waist": "60", + "weight": "43" + } + }, + { + "alias_name": "弦月のアラジン", + "alias_name_display": "弦月のアラジン", + "event": [ + { + "event_id": 1902, + "event_name": "御伽公演 おてんば姫とまぢヤバな魔法のランプ" + } + ], + "hash": "420232dfc6e81e86bc345cc36f4b443a", + "id": "2533702", + "profile": { + "bust": "86", + "height": "166", + "hip": "85", + "waist": "60", + "weight": "43" + } + }, + { + "alias_name": "心惑のくのいち", + "alias_name_display": "心惑のくのいち", + "event": [ + { + "event_id": 1214, + "event_name": "目指せくのいち アイドルチャレンジ" + } + ], + "hash": "f9dda0f6634f12d18c16e41ceb47a7d6", + "id": "2437401", + "profile": { + "bust": "86", + "height": "166", + "hip": "85", + "waist": "60", + "weight": "43" + } + }, + { + "alias_name": "心惑のくのいち", + "alias_name_display": "心惑のくのいち", + "event": [ + { + "event_id": 1214, + "event_name": "目指せくのいち アイドルチャレンジ" + } + ], + "hash": "a67ad2aba4cda4cb8822e8cba9be9e72", + "id": "2537402", + "profile": { + "bust": "86", + "height": "166", + "hip": "85", + "waist": "60", + "weight": "43" + } + }, + { + "alias_name": "嬌笑のくのいち", + "alias_name_display": "嬌笑のくのいち", + "event": [ + { + "event_id": 1214, + "event_name": "目指せくのいち アイドルチャレンジ" + } + ], + "hash": "6ce938c8766b918d2f6b7c9cf6689b61", + "id": "2437501", + "profile": { + "bust": "86", + "height": "166", + "hip": "85", + "waist": "60", + "weight": "43" + } + }, + { + "alias_name": "嬌笑のくのいち", + "alias_name_display": "嬌笑のくのいち", + "event": [ + { + "event_id": 1214, + "event_name": "目指せくのいち アイドルチャレンジ" + } + ], + "hash": "c3a21b688770def90cda930429d9d580", + "id": "2537502", + "profile": { + "bust": "86", + "height": "166", + "hip": "85", + "waist": "60", + "weight": "43" + } + } + ], + "idol_id": 112, + "idol_name": "吉岡沙紀", + "idol_name_display": "吉岡沙紀", + "units": [ + { + "id": "2", + "name": "アーティスター" + }, + { + "id": "40", + "name": "ハートハーモナイズ" + }, + { + "id": "95", + "name": "スペーススタイル" + }, + { + "id": "117", + "name": "ハードメテオライツ" + }, + { + "id": "122", + "name": "ホットアートジャンピン" + }, + { + "id": "140", + "name": "アイドルミズキ with AS" + }, + { + "id": "209", + "name": "ロワイヤルスタイルNP" + } + ] + }, + { + "aliases": [ + { + "hash": "8b7fce105c3d588ac3f32396be6d63a9", + "id": "2202301", + "profile": { + "bust": "86", + "height": "172", + "hip": "85", + "waist": "58", + "weight": "49" + } + }, + { + "hash": "a774d41a69eb44d15423615658b97bb3", + "id": "2302302", + "profile": { + "bust": "86", + "height": "172", + "hip": "85", + "waist": "58", + "weight": "49" + } + }, + { + "alias_name": "ハロウィンパーティー", + "alias_name_display": "ハロウィンパーティー", + "hash": "a9139d337cb8743a5af6036957432d2a", + "id": "2206301", + "profile": { + "bust": "86", + "height": "172", + "hip": "85", + "waist": "58", + "weight": "49" + } + }, + { + "alias_name": "ハロウィンパーティー", + "alias_name_display": "ハロウィンパーティー", + "hash": "fc9e599c52e561c8376c92aa9bf3f76b", + "id": "2306302", + "profile": { + "bust": "86", + "height": "172", + "hip": "85", + "waist": "58", + "weight": "49" + } + }, + { + "alias_name": "春風の使者", + "alias_name_display": "春風の使者", + "event": [ + { + "event_id": 504, + "event_name": "アイドルLIVEツアーinスペイン" + } + ], + "hash": "d5a7bb3feb7b36be43c88f12a22ab0ed", + "id": "2209501", + "profile": { + "bust": "86", + "height": "172", + "hip": "85", + "waist": "58", + "weight": "49" + } + }, + { + "alias_name": "春風の使者", + "alias_name_display": "春風の使者", + "event": [ + { + "event_id": 504, + "event_name": "アイドルLIVEツアーinスペイン" + } + ], + "hash": "cdcf96c094a50a50e60362c02f4dfa50", + "id": "2309502", + "profile": { + "bust": "86", + "height": "172", + "hip": "85", + "waist": "58", + "weight": "49" + } + }, + { + "alias_name": "風の語り手", + "alias_name_display": "風の語り手", + "hash": "f436a23041b6b2dfce6c7487572b39d2", + "id": "2215901", + "profile": { + "bust": "86", + "height": "172", + "hip": "85", + "waist": "58", + "weight": "49" + } + }, + { + "alias_name": "風の語り手", + "alias_name_display": "風の語り手", + "hash": "83836550ad64aaa3694b396d5d3fdacb", + "id": "2315902", + "profile": { + "bust": "86", + "height": "172", + "hip": "85", + "waist": "58", + "weight": "49" + } + }, + { + "alias_name": "春色温泉", + "alias_name_display": "春色温泉", + "hash": "767925f33c033fafccf24de1a5270440", + "id": "2225601", + "profile": { + "bust": "86", + "height": "172", + "hip": "85", + "waist": "58", + "weight": "49" + } + }, + { + "alias_name": "春色温泉", + "alias_name_display": "春色温泉", + "hash": "9ae3b84090af8490fa4d771857a708b6", + "id": "2325602", + "profile": { + "bust": "86", + "height": "172", + "hip": "85", + "waist": "58", + "weight": "49" + } + }, + { + "alias_name": "涼風のミンストレル", + "alias_name_display": "涼風のミンストレル", + "event": [ + { + "event_id": 702, + "event_name": "水着DEドリームLIVEフェスティバル" + } + ], + "hash": "83e5007f4db7e14f5fd0dc9e5de94648", + "id": "2408501", + "profile": { + "bust": "86", + "height": "172", + "hip": "85", + "waist": "58", + "weight": "49" + } + }, + { + "alias_name": "涼風のミンストレル", + "alias_name_display": "涼風のミンストレル", + "event": [ + { + "event_id": 702, + "event_name": "水着DEドリームLIVEフェスティバル" + } + ], + "hash": "7a01f73afd6bf9881c91b0a2d4a37280", + "id": "2508502", + "profile": { + "bust": "86", + "height": "172", + "hip": "85", + "waist": "58", + "weight": "49" + } + }, + { + "alias_name": "メロディ・ロワイヤル", + "alias_name_display": "メロディ・ロワイヤル", + "event": [ + { + "event_id": 808, + "event_name": "第8回アイドルLIVEロワイヤル" + } + ], + "hash": "537a96cd9851d6296f5116956034fa64", + "id": "2419201", + "profile": { + "bust": "86", + "height": "172", + "hip": "85", + "waist": "58", + "weight": "49" + } + }, + { + "alias_name": "メロディ・ロワイヤル", + "alias_name_display": "メロディ・ロワイヤル", + "event": [ + { + "event_id": 808, + "event_name": "第8回アイドルLIVEロワイヤル" + } + ], + "hash": "72869a0f6b17cf9ae3770b0b2cbdcb01", + "id": "2519202", + "profile": { + "bust": "86", + "height": "172", + "hip": "85", + "waist": "58", + "weight": "49" + } + }, + { + "alias_name": "ダークバトラー", + "alias_name_display": "ダークバトラー", + "event": [ + { + "event_id": 521, + "event_name": "怪盗公演 美しき追跡者" + } + ], + "hash": "df2c2bd1d61b057e0bce6f34d13e5b09", + "id": "2426401", + "profile": { + "bust": "86", + "height": "172", + "hip": "85", + "waist": "58", + "weight": "49" + } + }, + { + "alias_name": "ダークバトラー", + "alias_name_display": "ダークバトラー", + "event": [ + { + "event_id": 521, + "event_name": "怪盗公演 美しき追跡者" + } + ], + "hash": "e46c9723e0af70b50cea3bbf1af79359", + "id": "2526402", + "profile": { + "bust": "86", + "height": "172", + "hip": "85", + "waist": "58", + "weight": "49" + } + }, + { + "alias_name": "メロディアスワールド", + "alias_name_display": "メロディアスワールド", + "hash": "b55aedfa29207ec7783d03157a425dc0", + "id": "2434901", + "profile": { + "bust": "86", + "height": "172", + "hip": "85", + "waist": "58", + "weight": "49" + } + }, + { + "alias_name": "メロディアスワールド", + "alias_name_display": "メロディアスワールド", + "hash": "5e21903192e2179e480b0684afc509ed", + "id": "2534902", + "profile": { + "bust": "86", + "height": "172", + "hip": "85", + "waist": "58", + "weight": "49" + } + }, + { + "alias_name": "新芽の調べ", + "alias_name_display": "新芽の調べ", + "event": [ + { + "event_id": 729, + "event_name": "ドリームLIVEフェスティバル ゴールデンウィークSP" + } + ], + "hash": "a4823a0b9ffad08844c7e603e69013cd", + "id": "2439701", + "profile": { + "bust": "86", + "height": "172", + "hip": "85", + "waist": "58", + "weight": "49" + } + }, + { + "alias_name": "新芽の調べ", + "alias_name_display": "新芽の調べ", + "event": [ + { + "event_id": 729, + "event_name": "ドリームLIVEフェスティバル ゴールデンウィークSP" + } + ], + "hash": "725a7367f2c8c08fa9f88fb14c58786a", + "id": "2539702", + "profile": { + "bust": "86", + "height": "172", + "hip": "85", + "waist": "58", + "weight": "49" + } + } + ], + "idol_id": 113, + "idol_name": "梅木音葉", + "idol_name_display": "梅木音葉", + "units": [ + { + "id": "24", + "name": "シンフォニック・ワールド" + }, + { + "id": "180", + "name": "ハロウィンパーティー" + } + ] + }, + { + "aliases": [ + { + "hash": "5fe1faaee0a52e41f24eea585a682df5", + "id": "2202401", + "profile": { + "bust": "65", + "height": "142", + "hip": "70", + "waist": "50", + "weight": "34" + } + }, + { + "hash": "ae2faa4771c040ad14953055cdba97c0", + "id": "2302402", + "profile": { + "bust": "66", + "height": "142", + "hip": "70", + "waist": "51", + "weight": "35" + } + }, + { + "alias_name": "メイドコレクション", + "alias_name_display": "メイドコレクション", + "hash": "3636752aaa4fff30e038839aa6121adf", + "id": "2205801", + "profile": { + "bust": "66", + "height": "142", + "hip": "70", + "waist": "51", + "weight": "35" + } + }, + { + "alias_name": "メイドコレクション", + "alias_name_display": "メイドコレクション", + "hash": "9fd88c297854635eaed7f81eaeef6204", + "id": "2305802", + "profile": { + "bust": "66", + "height": "142", + "hip": "70", + "waist": "51", + "weight": "35" + } + }, + { + "alias_name": "ウィンターホラーグリーン", + "alias_name_display": "ウィンターホラーグリーン", + "hash": "9589583b3b1c0c6854df218d00a720cb", + "id": "2207301", + "profile": { + "bust": "66", + "height": "142", + "hip": "70", + "waist": "51", + "weight": "35" + } + }, + { + "alias_name": "ウィンターホラーネイビー", + "alias_name_display": "ウィンターホラーネイビー", + "hash": "7a1a52d2d04ab51452a17d8a0fa13deb", + "id": "2207302", + "profile": { + "bust": "66", + "height": "142", + "hip": "70", + "waist": "51", + "weight": "35" + } + }, + { + "alias_name": "ウィンターホラーボルドー", + "alias_name_display": "ウィンターホラーボルドー", + "hash": "6dbdb5e600214a62be8c86a4ce119358", + "id": "2207303", + "profile": { + "bust": "66", + "height": "142", + "hip": "70", + "waist": "51", + "weight": "35" + } + }, + { + "alias_name": "ウィンターホラーブルー", + "alias_name_display": "ウィンターホラーブルー", + "hash": "387ff8f96121c16b6c70a997e51649b4", + "id": "2207304", + "profile": { + "bust": "66", + "height": "142", + "hip": "70", + "waist": "51", + "weight": "35" + } + }, + { + "alias_name": "ウィンタースタイル", + "alias_name_display": "ウィンタースタイル", + "hash": "c8dd511c09612e82ebe3ccfed4c80e16", + "id": "2307305", + "profile": { + "bust": "66", + "height": "142", + "hip": "70", + "waist": "51", + "weight": "35" + } + }, + { + "alias_name": "ウィンタースタイルマフラー", + "alias_name_display": "ウィンタースタイルマフラー", + "hash": "45b845227aa7ff52c176905bee731373", + "id": "2307306", + "profile": { + "bust": "66", + "height": "142", + "hip": "70", + "waist": "51", + "weight": "35" + } + }, + { + "alias_name": "ウィンタースタイルイヤーマフ", + "alias_name_display": "ウィンタースタイルイヤーマフ", + "hash": "b298709e4e9b623a243f4c260ce67039", + "id": "2307307", + "profile": { + "bust": "66", + "height": "142", + "hip": "70", + "waist": "51", + "weight": "35" + } + }, + { + "alias_name": "ウィンタースタイルバッグ", + "alias_name_display": "ウィンタースタイルバッグ", + "hash": "f885b02cf61af65fe2bb964902ff5e6c", + "id": "2307308", + "profile": { + "bust": "66", + "height": "142", + "hip": "70", + "waist": "51", + "weight": "35" + } + }, + { + "alias_name": "ウィンタースタイルカート", + "alias_name_display": "ウィンタースタイルカート", + "hash": "8c3580e5bfcdfaf62ab2f06659f809d2", + "id": "2307309", + "profile": { + "bust": "66", + "height": "142", + "hip": "70", + "waist": "51", + "weight": "35" + } + }, + { + "alias_name": "ダークインバイト", + "alias_name_display": "ダークインバイト", + "hash": "47bb0f13767275f0599acc5296d466c7", + "id": "2227301", + "profile": { + "bust": "66", + "height": "142", + "hip": "70", + "waist": "51", + "weight": "35" + } + }, + { + "alias_name": "ダークインバイト", + "alias_name_display": "ダークインバイト", + "hash": "1faeb39c919ef3f1aaf5d2031b85caeb", + "id": "2327302", + "profile": { + "bust": "66", + "height": "142", + "hip": "70", + "waist": "51", + "weight": "35" + } + }, + { + "alias_name": "ハロウィンナイトメア", + "alias_name_display": "ハロウィンナイトメア", + "hash": "44f2da3a9c5beecfda2bfddae84a1153", + "id": "2403301", + "profile": { + "bust": "66", + "height": "142", + "hip": "70", + "waist": "51", + "weight": "35" + } + }, + { + "alias_name": "ハロウィンナイトメア", + "alias_name_display": "ハロウィンナイトメア", + "hash": "f05381161e3760b235eece970659c13c", + "id": "2503302", + "profile": { + "bust": "66", + "height": "142", + "hip": "70", + "waist": "51", + "weight": "35" + } + }, + { + "alias_name": "ホワイトナイトメア", + "alias_name_display": "ホワイトナイトメア", + "hash": "5078a4011745218d0c969cad3bf3c169", + "id": "2404410", + "profile": { + "bust": "66", + "height": "142", + "hip": "70", + "waist": "51", + "weight": "35" + } + }, + { + "alias_name": "ホワイトナイトメア", + "alias_name_display": "ホワイトナイトメア", + "hash": "a24533b9f3185e3735b81abe720ccefa", + "id": "2504411", + "profile": { + "bust": "66", + "height": "142", + "hip": "70", + "waist": "51", + "weight": "35" + } + }, + { + "alias_name": "納涼浴衣娘", + "alias_name_display": "納涼浴衣娘", + "hash": "5cb519e64701c15572f2f51981c79ac7", + "id": "2407801", + "profile": { + "bust": "66", + "height": "142", + "hip": "70", + "waist": "51", + "weight": "35" + } + }, + { + "alias_name": "納涼浴衣娘", + "alias_name_display": "納涼浴衣娘", + "hash": "54627202ea402abc86e37147cea9c2ea", + "id": "2507802", + "profile": { + "bust": "66", + "height": "142", + "hip": "70", + "waist": "51", + "weight": "35" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "040042fc1ca9ce2681ec5db9997d39c1", + "id": "2410301", + "profile": { + "bust": "66", + "height": "142", + "hip": "70", + "waist": "51", + "weight": "35" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "6f3c920d53e4f0ed7eb1cbe9482cd7d3", + "id": "2510302", + "profile": { + "bust": "66", + "height": "142", + "hip": "70", + "waist": "51", + "weight": "35" + } + }, + { + "alias_name": "ゴシックホラーナイトメア", + "alias_name_display": "ゴシックホラーナイトメア", + "event": [ + { + "event_id": "013", + "event_name": "第13回プロダクションマッチフェスティバル" + } + ], + "hash": "f74c99a3dba8770ce827fd3ceee60a10", + "id": "2410501", + "profile": { + "bust": "66", + "height": "142", + "hip": "70", + "waist": "51", + "weight": "35" + } + }, + { + "alias_name": "ゴシックホラーナイトメア", + "alias_name_display": "ゴシックホラーナイトメア", + "event": [ + { + "event_id": "013", + "event_name": "第13回プロダクションマッチフェスティバル" + } + ], + "hash": "2af32ad71bbed8be247e01b670d051a9", + "id": "2510502", + "profile": { + "bust": "66", + "height": "142", + "hip": "70", + "waist": "51", + "weight": "35" + } + }, + { + "alias_name": "学園のヒロイン", + "alias_name_display": "学園のヒロイン", + "event": [ + { + "event_id": 412, + "event_name": "聖靴学園の七不思議" + } + ], + "hash": "14f7e77a84e8f89398274d5e9ff63c3f", + "id": "2414201", + "profile": { + "bust": "66", + "height": "142", + "hip": "70", + "waist": "51", + "weight": "35" + } + }, + { + "alias_name": "学園のヒロイン", + "alias_name_display": "学園のヒロイン", + "event": [ + { + "event_id": 412, + "event_name": "聖靴学園の七不思議" + } + ], + "hash": "72301fc6b66e10af7b057d56155ceaa5", + "id": "2514202", + "profile": { + "bust": "66", + "height": "142", + "hip": "70", + "waist": "51", + "weight": "35" + } + }, + { + "alias_name": "シンデレラドリーム", + "alias_name_display": "シンデレラドリーム", + "hash": "d380946c0a53f37c0d8fccc405fa343f", + "id": "2417701", + "profile": { + "bust": "66", + "height": "142", + "hip": "70", + "waist": "51", + "weight": "35" + } + }, + { + "alias_name": "シンデレラドリーム", + "alias_name_display": "シンデレラドリーム", + "hash": "7784c97bce5a0e14bcd3d9aa63cb3ecf", + "id": "2517702", + "profile": { + "bust": "66", + "height": "142", + "hip": "70", + "waist": "51", + "weight": "35" + } + }, + { + "alias_name": "ステップバイステップ", + "alias_name_display": "ステップバイステップ", + "hash": "7efa533684a2dd156d50e2ce4a59136d", + "id": "2423801", + "profile": { + "bust": "66", + "height": "142", + "hip": "70", + "waist": "51", + "weight": "35" + } + }, + { + "alias_name": "ステップバイステップ", + "alias_name_display": "ステップバイステップ", + "hash": "46884da8ea8a4a9e6d66c1c7ae4fc974", + "id": "2523802", + "profile": { + "bust": "66", + "height": "142", + "hip": "70", + "waist": "51", + "weight": "35" + } + }, + { + "alias_name": "4thアニバーサリー", + "alias_name_display": "4thアニバーサリー", + "event": [ + { + "event_id": 1704, + "event_name": "アイドルプロデュース the 4th Anniversary" + } + ], + "hash": "3677958390fba4828e21cad9bbfc30b4", + "id": "2428901", + "profile": { + "bust": "66", + "height": "142", + "hip": "70", + "waist": "51", + "weight": "35" + } + }, + { + "alias_name": "4thアニバーサリー", + "alias_name_display": "4thアニバーサリー", + "event": [ + { + "event_id": 1704, + "event_name": "アイドルプロデュース the 4th Anniversary" + } + ], + "hash": "39fddacadc87a87a49aa2ad95731d1b8", + "id": "2528902", + "profile": { + "bust": "66", + "height": "142", + "hip": "70", + "waist": "51", + "weight": "35" + } + }, + { + "alias_name": "4thアニバーサリー・S", + "alias_name_display": "4thアニバーサリー・S", + "event": [ + { + "event_id": 1704, + "event_name": "アイドルプロデュース the 4th Anniversary" + } + ], + "hash": "8bf75ee15f38e8cb455b551604b503e5", + "id": "2429001", + "profile": { + "bust": "66", + "height": "142", + "hip": "70", + "waist": "51", + "weight": "35" + } + }, + { + "alias_name": "4thアニバーサリー・S", + "alias_name_display": "4thアニバーサリー・S", + "event": [ + { + "event_id": 1704, + "event_name": "アイドルプロデュース the 4th Anniversary" + } + ], + "hash": "da1764a3a75a36f036c830770c0fa508", + "id": "2529002", + "profile": { + "bust": "66", + "height": "142", + "hip": "70", + "waist": "51", + "weight": "35" + } + }, + { + "alias_name": "ツナガルウワサ", + "alias_name_display": "ツナガルウワサ", + "event": [ + { + "event_id": 1509, + "event_name": "第9回チーム対抗トークバトルショー" + } + ], + "hash": "58b52532b2a4c66aae460c87e2f19a7f", + "id": "2435901", + "profile": { + "bust": "66", + "height": "142", + "hip": "70", + "waist": "51", + "weight": "35" + } + }, + { + "alias_name": "ツナガルウワサ", + "alias_name_display": "ツナガルウワサ", + "event": [ + { + "event_id": 1509, + "event_name": "第9回チーム対抗トークバトルショー" + } + ], + "hash": "8760de4f1ffcd5454f63f3332535bb24", + "id": "2535902", + "profile": { + "bust": "66", + "height": "142", + "hip": "70", + "waist": "51", + "weight": "35" + } + } + ], + "idol_id": 114, + "idol_name": "白坂小梅", + "idol_name_display": "白坂小梅", + "units": [ + { + "id": "9", + "name": "エルドリッチ・ロアテラー" + }, + { + "id": "77", + "name": "Jumpin'Joker" + }, + { + "id": "79", + "name": "NiGHT ENCOUNTER" + }, + { + "id": "82", + "name": "Rosenburg Alptraum" + }, + { + "id": "90", + "name": "カワイイボクと142's" + }, + { + "id": "127", + "name": "落花流水" + }, + { + "id": "183", + "name": "メイドコレクション" + }, + { + "id": "186", + "name": "LittlePOPS" + }, + { + "id": "201", + "name": "Caskets" + }, + { + "id": "212", + "name": "CINDERELLA GIRLS" + } + ] + }, + { + "aliases": [ + { + "event": [ + { + "event_id": 201, + "event_name": "アイドルサバイバル" + } + ], + "hash": "c73b4dc40685bc50d331c9f32d1b91fb", + "id": "2202501", + "profile": { + "bust": "89", + "height": "162", + "hip": "85", + "waist": "59", + "weight": "46" + } + }, + { + "event": [ + { + "event_id": 201, + "event_name": "アイドルサバイバル" + } + ], + "hash": "28bb1de41fcfabcb5d2ba1d3870c121b", + "id": "2302502", + "profile": { + "bust": "89", + "height": "162", + "hip": "85", + "waist": "59", + "weight": "46" + } + }, + { + "alias_name": "バレンタインパーティー", + "alias_name_display": "バレンタインパーティー", + "hash": "031476bad3baae90639d1aa438801e77", + "id": "2208001", + "profile": { + "bust": "89", + "height": "162", + "hip": "85", + "waist": "59", + "weight": "46" + } + }, + { + "alias_name": "バレンタインパーティー", + "alias_name_display": "バレンタインパーティー", + "hash": "e715a9ad30451fd62a269fb9a888c330", + "id": "2308002", + "profile": { + "bust": "89", + "height": "162", + "hip": "85", + "waist": "59", + "weight": "46" + } + }, + { + "alias_name": "リーブルパピヨン", + "alias_name_display": "リーブルパピヨン", + "hash": "ccc7d18edcfe645bd67a10ee9418a1a3", + "id": "2211801", + "profile": { + "bust": "89", + "height": "162", + "hip": "85", + "waist": "59", + "weight": "46" + } + }, + { + "alias_name": "リーブルパピヨン", + "alias_name_display": "リーブルパピヨン", + "hash": "038dbf3dcf6ba83def688acc1d3a51b8", + "id": "2311802", + "profile": { + "bust": "89", + "height": "162", + "hip": "85", + "waist": "59", + "weight": "46" + } + }, + { + "alias_name": "ドゥーマリアージュ", + "alias_name_display": "ドゥーマリアージュ", + "hash": "67c5c09da322da1f45a594ffb616516a", + "id": "2218301", + "profile": { + "bust": "89", + "height": "162", + "hip": "85", + "waist": "59", + "weight": "46" + } + }, + { + "alias_name": "ドゥーマリアージュ", + "alias_name_display": "ドゥーマリアージュ", + "hash": "55ae486ac1f7dd977dad78e87069e444", + "id": "2318302", + "profile": { + "bust": "89", + "height": "162", + "hip": "85", + "waist": "59", + "weight": "46" + } + }, + { + "alias_name": "サマーシーズン", + "alias_name_display": "サマーシーズン", + "hash": "3dc8352d84780b94599f2f28c3cb1b08", + "id": "2221801", + "profile": { + "bust": "89", + "height": "162", + "hip": "85", + "waist": "59", + "weight": "46" + } + }, + { + "alias_name": "サマーシーズン", + "alias_name_display": "サマーシーズン", + "hash": "720ef57f0103eee721a8021066c3b34d", + "id": "2321802", + "profile": { + "bust": "89", + "height": "162", + "hip": "85", + "waist": "59", + "weight": "46" + } + }, + { + "alias_name": "レディスタイル", + "alias_name_display": "レディスタイル", + "hash": "ec4525fd83e7bb622de501a3920e4658", + "id": "2224801", + "profile": { + "bust": "89", + "height": "162", + "hip": "85", + "waist": "59", + "weight": "46" + } + }, + { + "alias_name": "レディスタイル", + "alias_name_display": "レディスタイル", + "hash": "3ecd3524410cf349b532c7017d061c96", + "id": "2324802", + "profile": { + "bust": "89", + "height": "162", + "hip": "85", + "waist": "59", + "weight": "46" + } + }, + { + "alias_name": "マイデコラティブ", + "alias_name_display": "マイデコラティブ", + "hash": "d6aad9209b558bbe367ce9f4a68ee90a", + "id": "2232001", + "profile": { + "bust": "89", + "height": "162", + "hip": "85", + "waist": "59", + "weight": "46" + } + }, + { + "alias_name": "マイデコラティブ", + "alias_name_display": "マイデコラティブ", + "hash": "7a9fa317e0b7b733838a7bbb4a71f5d1", + "id": "2332002", + "profile": { + "bust": "89", + "height": "162", + "hip": "85", + "waist": "59", + "weight": "46" + } + }, + { + "alias_name": "ゴージャスチアー", + "alias_name_display": "ゴージャスチアー", + "event": [ + { + "event_id": 1102, + "event_name": "第2回プロダクション対抗トークバトルショー" + } + ], + "hash": "babca7b72ad285377f19363a451e9a6d", + "id": "2414501", + "profile": { + "bust": "89", + "height": "162", + "hip": "85", + "waist": "59", + "weight": "46" + } + }, + { + "alias_name": "ゴージャスチアー", + "alias_name_display": "ゴージャスチアー", + "event": [ + { + "event_id": 1102, + "event_name": "第2回プロダクション対抗トークバトルショー" + } + ], + "hash": "d41291b48e8a5e5c6db1ddfd3adac08e", + "id": "2514502", + "profile": { + "bust": "89", + "height": "162", + "hip": "85", + "waist": "59", + "weight": "46" + } + }, + { + "alias_name": "マジモード", + "alias_name_display": "マジモード", + "event": [ + { + "event_id": 725, + "event_name": "第25回ドリームLIVEフェスティバル" + } + ], + "hash": "94ac010e58c3c7e7e3e4978efa06ae25", + "id": "2435701", + "profile": { + "bust": "89", + "height": "162", + "hip": "85", + "waist": "59", + "weight": "46" + } + }, + { + "alias_name": "マジモード", + "alias_name_display": "マジモード", + "event": [ + { + "event_id": 725, + "event_name": "第25回ドリームLIVEフェスティバル" + } + ], + "hash": "2c67e5e41d85f043ffc99b92a4873ae1", + "id": "2535702", + "profile": { + "bust": "89", + "height": "162", + "hip": "85", + "waist": "59", + "weight": "46" + } + } + ], + "idol_id": 115, + "idol_name": "岸部彩華", + "idol_name_display": "岸部彩華", + "units": [ + { + "id": "89", + "name": "ガールズ・パワー" + } + ] + }, + { + "aliases": [ + { + "hash": "9cdd818a009f19eab8c73cc845175ee6", + "id": "2202701", + "profile": { + "bust": "78", + "height": "152", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "hash": "ba921b7605a9080d619152c0a64d2169", + "id": "2302702", + "profile": { + "bust": "78", + "height": "152", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "ノベルスパイレーツ", + "alias_name_display": "ノベルスパイレーツ", + "hash": "77c702153a1dcb38c773b94dea0b2628", + "id": "2207901", + "profile": { + "bust": "78", + "height": "152", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "ノベルスパイレーツ", + "alias_name_display": "ノベルスパイレーツ", + "hash": "f2a042e9aace39492a5e28e4d14d8715", + "id": "2307902", + "profile": { + "bust": "78", + "height": "152", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "スパニッシュスタイル", + "alias_name_display": "スパニッシュスタイル", + "event": [ + { + "event_id": 504, + "event_name": "アイドルLIVEツアーinスペイン" + } + ], + "hash": "809a05d98209abdd96028110f37c46f6", + "id": "2209401", + "profile": { + "bust": "78", + "height": "152", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "スパニッシュスタイル", + "alias_name_display": "スパニッシュスタイル", + "event": [ + { + "event_id": 504, + "event_name": "アイドルLIVEツアーinスペイン" + } + ], + "hash": "47d7ba193b349e7bd1dc3f1a03a599c8", + "id": "2309402", + "profile": { + "bust": "78", + "height": "152", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "ひな祭り", + "alias_name_display": "ひな祭り", + "event": [ + { + "event_id": 510, + "event_name": "ひな祭りLIVEツアーカーニバル" + } + ], + "hash": "70c15775d5cabd419c8a1397115799aa", + "id": "2214801", + "profile": { + "bust": "78", + "height": "152", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "ひな祭り", + "alias_name_display": "ひな祭り", + "event": [ + { + "event_id": 510, + "event_name": "ひな祭りLIVEツアーカーニバル" + } + ], + "hash": "f8f7b051faa13e961bed26cc460ad90c", + "id": "2314802", + "profile": { + "bust": "78", + "height": "152", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "ブレイブハート", + "alias_name_display": "ブレイブハート", + "hash": "f834f89f345e42c99a1a433007dab3d4", + "id": "2222101", + "profile": { + "bust": "78", + "height": "152", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "ブレイブハート", + "alias_name_display": "ブレイブハート", + "hash": "b2b25e4024fc6ea72ef15cf163013db6", + "id": "2322102", + "profile": { + "bust": "78", + "height": "152", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "ファンサーキット", + "alias_name_display": "ファンサーキット", + "hash": "323630ff5d66437d6b8e66b0b763c0cb", + "id": "2228501", + "profile": { + "bust": "78", + "height": "152", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "ファンサーキット", + "alias_name_display": "ファンサーキット", + "hash": "8a5a9f14e183e6a73639a965955129a7", + "id": "2328502", + "profile": { + "bust": "78", + "height": "152", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "ワイルドフレンズ", + "alias_name_display": "ワイルドフレンズ", + "hash": "ea24a69654f849a122461782a256f4cc", + "id": "2231601", + "profile": { + "bust": "78", + "height": "152", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "ワイルドフレンズ", + "alias_name_display": "ワイルドフレンズ", + "hash": "70a62d93285f5c7e10b9e127db9bf8a0", + "id": "2331602", + "profile": { + "bust": "78", + "height": "152", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "ロワイヤルガール", + "alias_name_display": "ロワイヤルガール", + "event": [ + { + "event_id": 801, + "event_name": "アイドルLIVEロワイヤル" + } + ], + "hash": "a26c6d59e649ff57a0dd34b5df7ea154", + "id": "2409401", + "profile": { + "bust": "78", + "height": "152", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "ロワイヤルガール", + "alias_name_display": "ロワイヤルガール", + "event": [ + { + "event_id": 801, + "event_name": "アイドルLIVEロワイヤル" + } + ], + "hash": "c92e027bebf2bd47e39256c706f5b123", + "id": "2509402", + "profile": { + "bust": "78", + "height": "152", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "冒険竜", + "alias_name_display": "冒険竜", + "event": [ + { + "event_id": 515, + "event_name": "戦国公演 天魔の乱" + } + ], + "hash": "8330c93dc6430067c4c1ec6922e3290e", + "id": "2419001", + "profile": { + "bust": "78", + "height": "152", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "冒険竜", + "alias_name_display": "冒険竜", + "event": [ + { + "event_id": 515, + "event_name": "戦国公演 天魔の乱" + } + ], + "hash": "a6ae3f65caf2cc10d44c0a64f2f1191e", + "id": "2519002", + "profile": { + "bust": "78", + "height": "152", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "アドベントチアー", + "alias_name_display": "アドベントチアー", + "event": [ + { + "event_id": 1505, + "event_name": "チーム対抗トークバトルショー ウィンターSP" + } + ], + "hash": "a909e3bf82a215f7974d46400d71f959", + "id": "2430201", + "profile": { + "bust": "78", + "height": "152", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "アドベントチアー", + "alias_name_display": "アドベントチアー", + "event": [ + { + "event_id": 1505, + "event_name": "チーム対抗トークバトルショー ウィンターSP" + } + ], + "hash": "b0a88d8ab733b0a8b4603a9ed1905b9a", + "id": "2530202", + "profile": { + "bust": "78", + "height": "152", + "hip": "80", + "waist": "57", + "weight": "42" + } + } + ], + "idol_id": 116, + "idol_name": "氏家むつみ", + "idol_name_display": "氏家むつみ", + "units": [ + { + "id": "28", + "name": "スパニッシュスタイル" + }, + { + "id": "120", + "name": "ブルームジャーニー" + } + ] + }, + { + "aliases": [ + { + "hash": "1458f727e92427dcc643e35e6e09eb2e", + "id": "2202801", + "profile": { + "bust": "88", + "height": "155", + "hip": "86", + "waist": "60", + "weight": "55" + } + }, + { + "hash": "c7dfaedfd194df0dc4bff0674dc56760", + "id": "2302802", + "profile": { + "bust": "88", + "height": "155", + "hip": "87", + "waist": "61", + "weight": "56" + } + }, + { + "alias_name": "湯けむり温泉", + "alias_name_display": "湯けむり温泉", + "hash": "108a9a1a26e4f1559940f92990e53402", + "id": "2209201", + "profile": { + "bust": "88", + "height": "155", + "hip": "87", + "waist": "61", + "weight": "56" + } + }, + { + "alias_name": "湯けむり温泉", + "alias_name_display": "湯けむり温泉", + "hash": "69a68f545b404d2d285734d3f819d93e", + "id": "2309202", + "profile": { + "bust": "88", + "height": "155", + "hip": "87", + "waist": "61", + "weight": "56" + } + }, + { + "alias_name": "クラシカルフリル", + "alias_name_display": "クラシカルフリル", + "event": [ + { + "event_id": "014", + "event_name": "第14回プロダクションマッチフェスティバル" + } + ], + "hash": "1f174baf73bc3e258534284fab04df73", + "id": "2213901", + "profile": { + "bust": "88", + "height": "155", + "hip": "87", + "waist": "61", + "weight": "56" + } + }, + { + "alias_name": "クラシカルフリル", + "alias_name_display": "クラシカルフリル", + "event": [ + { + "event_id": "014", + "event_name": "第14回プロダクションマッチフェスティバル" + } + ], + "hash": "837d83bc33174cc52c2d0c0e35fba135", + "id": "2313902", + "profile": { + "bust": "88", + "height": "155", + "hip": "87", + "waist": "61", + "weight": "56" + } + }, + { + "alias_name": "白き女傑", + "alias_name_display": "白き女傑", + "hash": "c53f9a86b6b7484381e566ced779b7a1", + "id": "2218701", + "profile": { + "bust": "88", + "height": "155", + "hip": "87", + "waist": "61", + "weight": "56" + } + }, + { + "alias_name": "白き女傑", + "alias_name_display": "白き女傑", + "hash": "86d9836742784446627e9796766a8bd1", + "id": "2318702", + "profile": { + "bust": "88", + "height": "155", + "hip": "87", + "waist": "61", + "weight": "56" + } + }, + { + "alias_name": "ワーキング・ロード", + "alias_name_display": "ワーキング・ロード", + "hash": "fd2c868d155fde4a8b033854eea4a809", + "id": "2225401", + "profile": { + "bust": "88", + "height": "155", + "hip": "87", + "waist": "61", + "weight": "56" + } + }, + { + "alias_name": "ワーキング・ロード", + "alias_name_display": "ワーキング・ロード", + "hash": "251069b6aa9c8f8f8992ff851f1dd51b", + "id": "2325402", + "profile": { + "bust": "88", + "height": "155", + "hip": "87", + "waist": "61", + "weight": "56" + } + }, + { + "alias_name": "まごころメイド", + "alias_name_display": "まごころメイド", + "hash": "132f8d1774a7420805decc458a0beb71", + "id": "2231901", + "profile": { + "bust": "88", + "height": "155", + "hip": "87", + "waist": "61", + "weight": "56" + } + }, + { + "alias_name": "まごころメイド", + "alias_name_display": "まごころメイド", + "hash": "3a60e9a4a39020d28e9988a0878c1106", + "id": "2331902", + "profile": { + "bust": "88", + "height": "155", + "hip": "87", + "waist": "61", + "weight": "56" + } + }, + { + "alias_name": "麗しきプリマドンナ", + "alias_name_display": "麗しきプリマドンナ", + "event": [ + { + "event_id": "017", + "event_name": "第17回プロダクションマッチフェスティバル" + } + ], + "hash": "a69ce5cc09555d49bae51a33a292b4a3", + "id": "2415101", + "profile": { + "bust": "88", + "height": "155", + "hip": "87", + "waist": "61", + "weight": "56" + } + }, + { + "alias_name": "麗しきプリマドンナ", + "alias_name_display": "麗しきプリマドンナ", + "event": [ + { + "event_id": "017", + "event_name": "第17回プロダクションマッチフェスティバル" + } + ], + "hash": "7c0fc03e0f012ea2ebb7787795f84eef", + "id": "2515102", + "profile": { + "bust": "88", + "height": "155", + "hip": "87", + "waist": "61", + "weight": "56" + } + }, + { + "alias_name": "シンシアチアー", + "alias_name_display": "シンシアチアー", + "event": [ + { + "event_id": 1502, + "event_name": "チーム対抗雨の日トークバトルショー" + } + ], + "hash": "dd88e2e9285553c7ad6b9fcfd066ccd7", + "id": "2425001", + "profile": { + "bust": "88", + "height": "155", + "hip": "87", + "waist": "61", + "weight": "56" + } + }, + { + "alias_name": "シンシアチアー", + "alias_name_display": "シンシアチアー", + "event": [ + { + "event_id": 1502, + "event_name": "チーム対抗雨の日トークバトルショー" + } + ], + "hash": "a478ca3a4093095341230dd3a5a4af2b", + "id": "2525002", + "profile": { + "bust": "88", + "height": "155", + "hip": "87", + "waist": "61", + "weight": "56" + } + }, + { + "alias_name": "ビューティアスヴォーチェ", + "alias_name_display": "ビューティアスヴォーチェ", + "event": [ + { + "event_id": 724, + "event_name": "第24回ドリームLIVEフェスティバル" + } + ], + "hash": "c99ae6e79c74a49e4d0ecbfa5ec125e3", + "id": "2435001", + "profile": { + "bust": "88", + "height": "155", + "hip": "87", + "waist": "61", + "weight": "56" + } + }, + { + "alias_name": "ビューティアスヴォーチェ", + "alias_name_display": "ビューティアスヴォーチェ", + "event": [ + { + "event_id": 724, + "event_name": "第24回ドリームLIVEフェスティバル" + } + ], + "hash": "148c761bd9f2699953da23d185cfed2b", + "id": "2535002", + "profile": { + "bust": "88", + "height": "155", + "hip": "87", + "waist": "61", + "weight": "56" + } + } + ], + "idol_id": 117, + "idol_name": "西川保奈美", + "idol_name_display": "西川保奈美", + "units": [ + { + "id": "206", + "name": "セクシーボンデージ" + } + ] + }, + { + "aliases": [ + { + "hash": "b9c6ac643c09462bf81ce0377506d23c", + "id": "2203001", + "profile": { + "bust": "72", + "height": "150", + "hip": "73", + "waist": "51", + "weight": "40" + } + }, + { + "hash": "4ba43b47803b72a5f49a9bcb8616d0e8", + "id": "2303002", + "profile": { + "bust": "72", + "height": "150", + "hip": "73", + "waist": "51", + "weight": "40" + } + }, + { + "alias_name": "浴衣祭り", + "alias_name_display": "浴衣祭り", + "hash": "3b22401aac95c2a8d36f95d2f2121ef6", + "id": "2204901", + "profile": { + "bust": "72", + "height": "150", + "hip": "73", + "waist": "51", + "weight": "40" + } + }, + { + "alias_name": "浴衣祭り", + "alias_name_display": "浴衣祭り", + "hash": "9bd73a611f0150483ba1443b89157678", + "id": "2304902", + "profile": { + "bust": "72", + "height": "150", + "hip": "73", + "waist": "51", + "weight": "40" + } + }, + { + "alias_name": "新春コレクション", + "alias_name_display": "新春コレクション", + "hash": "ab3ffe2f96c8fd1ff009d0ad90fb66fd", + "id": "2207601", + "profile": { + "bust": "72", + "height": "150", + "hip": "73", + "waist": "51", + "weight": "40" + } + }, + { + "alias_name": "新春コレクション", + "alias_name_display": "新春コレクション", + "hash": "876f0ea90c8c4243592c3bd1e801ad98", + "id": "2307602", + "profile": { + "bust": "72", + "height": "150", + "hip": "73", + "waist": "51", + "weight": "40" + } + }, + { + "alias_name": "クリスマスパーティー", + "alias_name_display": "クリスマスパーティー", + "hash": "7a61bf64e0b426923bb45b941bd7c90a", + "id": "2213201", + "profile": { + "bust": "72", + "height": "150", + "hip": "73", + "waist": "51", + "weight": "40" + } + }, + { + "alias_name": "クリスマスパーティー", + "alias_name_display": "クリスマスパーティー", + "hash": "3ade0c25bce649c62eb1f444cf449f01", + "id": "2313202", + "profile": { + "bust": "72", + "height": "150", + "hip": "73", + "waist": "51", + "weight": "40" + } + }, + { + "alias_name": "魔女っ娘I.C", + "alias_name_display": "魔女っ娘I.C", + "event": [ + { + "event_id": 1201, + "event_name": "目指せ魔女っ娘 アイドルチャレンジ" + } + ], + "hash": "216acd7a27e04ba268e35d2966e681af", + "id": "2315802", + "profile": { + "bust": "72", + "height": "150", + "hip": "73", + "waist": "51", + "weight": "40" + } + }, + { + "alias_name": "マーチングバンド", + "alias_name_display": "マーチングバンド", + "hash": "220429110c5cf2fbaa7580fa256063c4", + "id": "2218401", + "profile": { + "bust": "72", + "height": "150", + "hip": "73", + "waist": "51", + "weight": "40" + } + }, + { + "alias_name": "マーチングバンド", + "alias_name_display": "マーチングバンド", + "hash": "78246cc890dc9be62b96ca43c065bfbe", + "id": "2318402", + "profile": { + "bust": "72", + "height": "150", + "hip": "73", + "waist": "51", + "weight": "40" + } + }, + { + "alias_name": "カインドハート", + "alias_name_display": "カインドハート", + "event": [ + { + "event_id": 716, + "event_name": "第16回ドリームLIVEフェスティバル" + } + ], + "hash": "783e73d2983bbfa46d1df677f56b8ee9", + "id": "2323502", + "profile": { + "bust": "72", + "height": "150", + "hip": "73", + "waist": "51", + "weight": "40" + } + }, + { + "alias_name": "タラン・リュタン", + "alias_name_display": "タラン・リュタン", + "hash": "8202dd0badfaaca173a78ece8775c418", + "id": "2230001", + "profile": { + "bust": "72", + "height": "150", + "hip": "73", + "waist": "51", + "weight": "40" + } + }, + { + "alias_name": "タラン・リュタン", + "alias_name_display": "タラン・リュタン", + "hash": "d7536b080af66bef1964c44f102c1394", + "id": "2330002", + "profile": { + "bust": "72", + "height": "150", + "hip": "73", + "waist": "51", + "weight": "40" + } + }, + { + "alias_name": "リトルプリーステス", + "alias_name_display": "リトルプリーステス", + "event": [ + { + "event_id": 504, + "event_name": "アイドルLIVEツアーinスペイン" + } + ], + "hash": "d2df4cba6a3e68031193dc3dba693f2f", + "id": "2406301", + "profile": { + "bust": "72", + "height": "150", + "hip": "73", + "waist": "51", + "weight": "40" + } + }, + { + "alias_name": "リトルプリーステス", + "alias_name_display": "リトルプリーステス", + "event": [ + { + "event_id": 504, + "event_name": "アイドルLIVEツアーinスペイン" + } + ], + "hash": "b523fbaa59e1e8df3ad3e299ae4737da", + "id": "2506302", + "profile": { + "bust": "72", + "height": "150", + "hip": "73", + "waist": "51", + "weight": "40" + } + }, + { + "alias_name": "マジカルガール・リーフ", + "alias_name_display": "マジカルガール・リーフ", + "event": [ + { + "event_id": 1201, + "event_name": "目指せ魔女っ娘 アイドルチャレンジ" + } + ], + "hash": "f5c7d9885d3ef621bb3817c499315657", + "id": "2414601", + "profile": { + "bust": "72", + "height": "150", + "hip": "73", + "waist": "51", + "weight": "40" + } + }, + { + "alias_name": "マジカルガール・リーフ", + "alias_name_display": "マジカルガール・リーフ", + "event": [ + { + "event_id": 1201, + "event_name": "目指せ魔女っ娘 アイドルチャレンジ" + } + ], + "hash": "25de5c4589c6fd4c321306f534e8daec", + "id": "2514602", + "profile": { + "bust": "72", + "height": "150", + "hip": "73", + "waist": "51", + "weight": "40" + } + }, + { + "alias_name": "マジカルガールS・リーフ", + "alias_name_display": "マジカルガールS・リーフ", + "event": [ + { + "event_id": 1201, + "event_name": "目指せ魔女っ娘 アイドルチャレンジ" + } + ], + "hash": "f155c28fb82fb025607d07c733cc53b2", + "id": "2414701", + "profile": { + "bust": "72", + "height": "150", + "hip": "73", + "waist": "51", + "weight": "40" + } + }, + { + "alias_name": "マジカルガールS・リーフ", + "alias_name_display": "マジカルガールS・リーフ", + "event": [ + { + "event_id": 1201, + "event_name": "目指せ魔女っ娘 アイドルチャレンジ" + } + ], + "hash": "2987b2a345ae850352027f252ba50359", + "id": "2514702", + "profile": { + "bust": "72", + "height": "150", + "hip": "73", + "waist": "51", + "weight": "40" + } + }, + { + "alias_name": "エアリアルフェアリー", + "alias_name_display": "エアリアルフェアリー", + "hash": "1b1ee82db7a9842317010a4dcf5878f2", + "id": "2424101", + "profile": { + "bust": "72", + "height": "150", + "hip": "73", + "waist": "51", + "weight": "40" + } + }, + { + "alias_name": "エアリアルフェアリー", + "alias_name_display": "エアリアルフェアリー", + "hash": "f9e301f6b1445bcc65500175036e4f1d", + "id": "2524102", + "profile": { + "bust": "72", + "height": "150", + "hip": "73", + "waist": "51", + "weight": "40" + } + }, + { + "alias_name": "ゆめの大空", + "alias_name_display": "ゆめの大空", + "event": [ + { + "event_id": 1803, + "event_name": "アイドルバラエティ 大空への挑戦 ~Fly me to the Sky~" + } + ], + "hash": "b29c370ccee401411077c3ac897b457b", + "id": "2432801", + "profile": { + "bust": "72", + "height": "150", + "hip": "73", + "waist": "51", + "weight": "40" + } + }, + { + "alias_name": "ゆめの大空", + "alias_name_display": "ゆめの大空", + "event": [ + { + "event_id": 1803, + "event_name": "アイドルバラエティ 大空への挑戦 ~Fly me to the Sky~" + } + ], + "hash": "3a91b3c21892380bf9febb395bf4baa5", + "id": "2532802", + "profile": { + "bust": "72", + "height": "150", + "hip": "73", + "waist": "51", + "weight": "40" + } + } + ], + "idol_id": 118, + "idol_name": "成宮由愛", + "idol_name_display": "成宮由愛", + "units": [ + { + "id": "114", + "name": "ドリームホープスプリング" + }, + { + "id": "120", + "name": "ブルームジャーニー" + }, + { + "id": "164", + "name": "マジカルテット" + }, + { + "id": "214", + "name": "L.M.B.G" + } + ] + }, + { + "aliases": [ + { + "alias_name": "ひな祭り", + "alias_name_display": "ひな祭り", + "event": [ + { + "event_id": 202, + "event_name": "アイドルサバイバルひな祭り編" + } + ], + "hash": "ada1f3044f16789d41715c19836867d2", + "id": "2203101", + "profile": { + "bust": "78", + "height": "163", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ひな祭り", + "alias_name_display": "ひな祭り", + "event": [ + { + "event_id": 202, + "event_name": "アイドルサバイバルひな祭り編" + } + ], + "hash": "92eb0189eff8cc013115f02a1bad963c", + "id": "2303102", + "profile": { + "bust": "78", + "height": "163", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ゴスペルドレス", + "alias_name_display": "ゴスペルドレス", + "event": [ + { + "event_id": 208, + "event_name": "アイドルサバイバル聖歌響くクリスマス" + } + ], + "hash": "a2eb76bbccb00f2f5ffe37499f31af41", + "id": "2207401", + "profile": { + "bust": "78", + "height": "163", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ゴスペルドレス", + "alias_name_display": "ゴスペルドレス", + "event": [ + { + "event_id": 208, + "event_name": "アイドルサバイバル聖歌響くクリスマス" + } + ], + "hash": "1ecb11582b98c1a39816444772f3a0f3", + "id": "2307402", + "profile": { + "bust": "78", + "height": "163", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ラッキーフォーチュン", + "alias_name_display": "ラッキーフォーチュン", + "hash": "7294157f71abf9196c9229a87fe5fdb6", + "id": "2210001", + "profile": { + "bust": "78", + "height": "163", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ラッキーフォーチュン", + "alias_name_display": "ラッキーフォーチュン", + "hash": "8a007e260d74c773aa6a389556cf2ca2", + "id": "2310002", + "profile": { + "bust": "78", + "height": "163", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "スピリチュアルガール", + "alias_name_display": "スピリチュアルガール", + "hash": "9c51aff31404021b1c109fe993cc2753", + "id": "2216701", + "profile": { + "bust": "78", + "height": "163", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "スピリチュアルガール", + "alias_name_display": "スピリチュアルガール", + "hash": "9d45daaf1e78b11e1297d7f33e08770c", + "id": "2316702", + "profile": { + "bust": "78", + "height": "163", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ビーチガール", + "alias_name_display": "ビーチガール", + "event": [ + { + "event_id": 1703, + "event_name": "アイドルプロデュース おいでよ!海の家" + } + ], + "hash": "8b04d6339e2e106de0498f5eb986260d", + "id": "2222201", + "profile": { + "bust": "78", + "height": "163", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ビーチガール", + "alias_name_display": "ビーチガール", + "event": [ + { + "event_id": 1703, + "event_name": "アイドルプロデュース おいでよ!海の家" + } + ], + "hash": "7dcecec11834d30adfabe86d7edb44a6", + "id": "2322202", + "profile": { + "bust": "78", + "height": "163", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ビーチガール・S", + "alias_name_display": "ビーチガール・S", + "event": [ + { + "event_id": 1703, + "event_name": "アイドルプロデュース おいでよ!海の家" + } + ], + "hash": "f8381257fc2199e90429d3c75708a1e8", + "id": "2222301", + "profile": { + "bust": "78", + "height": "163", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ビーチガール・S", + "alias_name_display": "ビーチガール・S", + "event": [ + { + "event_id": 1703, + "event_name": "アイドルプロデュース おいでよ!海の家" + } + ], + "hash": "c8d97b51b309b87a36bcdfcc0a767566", + "id": "2322302", + "profile": { + "bust": "78", + "height": "163", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "フォーチュンヒーロー", + "alias_name_display": "フォーチュンヒーロー", + "event": [ + { + "event_id": 523, + "event_name": "鋼鉄公演 きらりんロボ -襲来!コスメティア帝国-" + } + ], + "hash": "0a98b80bbf63c91923a8edf62a448434", + "id": "2324602", + "profile": { + "bust": "78", + "height": "163", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "タラン・ミュジーク", + "alias_name_display": "タラン・ミュジーク", + "hash": "45443770e7bb8295e479ab17be49edba", + "id": "2228201", + "profile": { + "bust": "78", + "height": "163", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "タラン・ミュジーク", + "alias_name_display": "タラン・ミュジーク", + "hash": "d2eacbc1164672558526bff76d8995b0", + "id": "2328202", + "profile": { + "bust": "78", + "height": "163", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "フォーチュン★スター", + "alias_name_display": "フォーチュン★スター", + "hash": "206de916e07f5839c754f6d3be15ee29", + "id": "2409901", + "profile": { + "bust": "78", + "height": "163", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "フォーチュン★スター", + "alias_name_display": "フォーチュン★スター", + "hash": "77f55e048e90970b0d994f245ef32d2b", + "id": "2509902", + "profile": { + "bust": "78", + "height": "163", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "フォーチュンチアー", + "alias_name_display": "フォーチュンチアー", + "event": [ + { + "event_id": 1109, + "event_name": "第9回プロダクション対抗トークバトルショー" + } + ], + "hash": "f6b9c94dd166ad83ccfaf4f85de47c66", + "id": "2422801", + "profile": { + "bust": "78", + "height": "163", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "フォーチュンチアー", + "alias_name_display": "フォーチュンチアー", + "event": [ + { + "event_id": 1109, + "event_name": "第9回プロダクション対抗トークバトルショー" + } + ], + "hash": "e2bde5d2aa1f5aab95c8bb9251ab2af9", + "id": "2522802", + "profile": { + "bust": "78", + "height": "163", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ピックアップフォーチュン", + "alias_name_display": "ピックアップフォーチュン", + "event": [ + { + "event_id": 728, + "event_name": "ドリームLIVEフェスティバル スプリングSP" + } + ], + "hash": "40ac8ff64cd19e3e12fe831d0da0c22a", + "id": "2439001", + "profile": { + "bust": "78", + "height": "163", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ピックアップフォーチュン", + "alias_name_display": "ピックアップフォーチュン", + "event": [ + { + "event_id": 728, + "event_name": "ドリームLIVEフェスティバル スプリングSP" + } + ], + "hash": "cc04b9fd7b06293b952152aef32f4561", + "id": "2539002", + "profile": { + "bust": "78", + "height": "163", + "hip": "83", + "waist": "57", + "weight": "45" + } + } + ], + "idol_id": 119, + "idol_name": "藤居朋", + "idol_name_display": "藤居朋", + "units": [ + { + "id": "56", + "name": "ミステリアスガールズ" + }, + { + "id": "92", + "name": "ゴスペルシスターズ" + }, + { + "id": "100", + "name": "ハートウォーマー" + } + ] + }, + { + "aliases": [ + { + "hash": "e44e7611282f6c57fea4ab3fc18d6519", + "id": "2203601", + "profile": { + "bust": "82", + "height": "163", + "hip": "81", + "waist": "56", + "weight": "45" + } + }, + { + "hash": "ed3863e909c00d702b232b25c6f1633a", + "id": "2303602", + "profile": { + "bust": "82", + "height": "163", + "hip": "81", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "クーリッシュピクシー", + "alias_name_display": "クーリッシュピクシー", + "event": [ + { + "event_id": 204, + "event_name": "アイドルサバイバルin動物園" + } + ], + "hash": "a6c0eff1e5c7ad9397cda888d0a3536c", + "id": "2204601", + "profile": { + "bust": "82", + "height": "163", + "hip": "81", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "クーリッシュピクシー", + "alias_name_display": "クーリッシュピクシー", + "event": [ + { + "event_id": 204, + "event_name": "アイドルサバイバルin動物園" + } + ], + "hash": "8d468d9e16245baa83cff879b722782e", + "id": "2304602", + "profile": { + "bust": "82", + "height": "163", + "hip": "81", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ニューイヤー", + "alias_name_display": "ニューイヤー", + "event": [ + { + "event_id": 404, + "event_name": "新春アイドルプロデュース" + } + ], + "hash": "82b476bcab7ef6f64617900a063971c3", + "id": "2207501", + "profile": { + "bust": "82", + "height": "163", + "hip": "81", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ニューイヤー", + "alias_name_display": "ニューイヤー", + "event": [ + { + "event_id": 404, + "event_name": "新春アイドルプロデュース" + } + ], + "hash": "7414eee0038d5be21fb8b12014d6bd02", + "id": "2307502", + "profile": { + "bust": "82", + "height": "163", + "hip": "81", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ビーチスタイル", + "alias_name_display": "ビーチスタイル", + "hash": "5a0ea0a69a45d7d201112ed7b15e3e19", + "id": "2214001", + "profile": { + "bust": "82", + "height": "163", + "hip": "81", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ビーチスタイル", + "alias_name_display": "ビーチスタイル", + "hash": "cae2e7f102323cdbf0a2493dad6dce60", + "id": "2314002", + "profile": { + "bust": "82", + "height": "163", + "hip": "81", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ミッドナイトフェアリー", + "alias_name_display": "ミッドナイトフェアリー", + "hash": "f3c0fc3102be01d6f7ae5f3b0c40f647", + "id": "2403201", + "profile": { + "bust": "82", + "height": "163", + "hip": "81", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ミッドナイトフェアリー", + "alias_name_display": "ミッドナイトフェアリー", + "hash": "718611eef304cc92ed0363ef1632ce08", + "id": "2503202", + "profile": { + "bust": "82", + "height": "163", + "hip": "81", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "あやかし京娘", + "alias_name_display": "あやかし京娘", + "event": [ + { + "event_id": 701, + "event_name": "ドリームLIVEフェスティバル" + } + ], + "hash": "4a3edc8d2d1db05a999c497b87898bc4", + "id": "2407201", + "profile": { + "bust": "82", + "height": "163", + "hip": "81", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "あやかし京娘", + "alias_name_display": "あやかし京娘", + "event": [ + { + "event_id": 701, + "event_name": "ドリームLIVEフェスティバル" + } + ], + "hash": "954f509fc6b0bb872d155c824336ca48", + "id": "2507202", + "profile": { + "bust": "82", + "height": "163", + "hip": "81", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ブルーサマーヘブン", + "alias_name_display": "ブルーサマーヘブン", + "hash": "d2573b1a26b8652a0ea85b0bb574b48d", + "id": "2415601", + "profile": { + "bust": "82", + "height": "163", + "hip": "81", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ブルーサマーヘブン", + "alias_name_display": "ブルーサマーヘブン", + "hash": "02e831b53db390644097ce0541e224d7", + "id": "2515602", + "profile": { + "bust": "82", + "height": "163", + "hip": "81", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "想いひとひら", + "alias_name_display": "想いひとひら", + "hash": "9b78b0d2576534f5ac5977120d760159", + "id": "2423201", + "profile": { + "bust": "82", + "height": "163", + "hip": "81", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "想いひとひら", + "alias_name_display": "想いひとひら", + "hash": "a0dbd59124757f6c961c5320d9ff2450", + "id": "2523202", + "profile": { + "bust": "82", + "height": "163", + "hip": "81", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "シンデレラガール", + "alias_name_display": "シンデレラガール", + "hash": "c62f2df674d821857397b2b62371012e", + "id": "2424801", + "profile": { + "bust": "82", + "height": "163", + "hip": "81", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "シンデレラガール", + "alias_name_display": "シンデレラガール", + "hash": "a7886ce9ac3c5eafd81f8b14cee2d2fc", + "id": "2524802", + "profile": { + "bust": "82", + "height": "163", + "hip": "81", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "fb292dd3c101e5c65d16c5e4467cf434", + "id": "2428501", + "profile": { + "bust": "82", + "height": "163", + "hip": "81", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "26f9c950a0f6085e83da36f350d0851f", + "id": "2528502", + "profile": { + "bust": "82", + "height": "163", + "hip": "81", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "アニバーサリープリンセス", + "alias_name_display": "アニバーサリープリンセス", + "event": [ + { + "event_id": 1704, + "event_name": "アイドルプロデュース the 4th Anniversary" + } + ], + "hash": "4539562c95ef1000bcc72e8a50d1e00f", + "id": "2428801", + "profile": { + "bust": "82", + "height": "163", + "hip": "81", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "アニバーサリープリンセス", + "alias_name_display": "アニバーサリープリンセス", + "event": [ + { + "event_id": 1704, + "event_name": "アイドルプロデュース the 4th Anniversary" + } + ], + "hash": "89c64f8de6b5d1a9711d943eb66e1478", + "id": "2528802", + "profile": { + "bust": "82", + "height": "163", + "hip": "81", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "シンデレラドリーム", + "alias_name_display": "シンデレラドリーム", + "hash": "0098b967f649fc47bdc99feefbedb9fc", + "id": "2433801", + "profile": { + "bust": "82", + "height": "163", + "hip": "81", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "シンデレラドリーム", + "alias_name_display": "シンデレラドリーム", + "hash": "624e30edd0c2d459e2c70b2ef491cab0", + "id": "2533802", + "profile": { + "bust": "82", + "height": "163", + "hip": "81", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "湯けむり舞娘", + "alias_name_display": "湯けむり舞娘", + "hash": "71e4c4b47b167ba9e37188547a8a9678", + "id": "2435801", + "profile": { + "bust": "82", + "height": "163", + "hip": "81", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "湯けむり舞娘", + "alias_name_display": "湯けむり舞娘", + "hash": "ffd90fbb737f2862939442ffc009a270", + "id": "2535802", + "profile": { + "bust": "82", + "height": "163", + "hip": "81", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "花明り夜風", + "alias_name_display": "花明り夜風", + "event": [ + { + "event_id": 1907, + "event_name": "ディアリースタークエスト ~夜桜奇譚~" + } + ], + "hash": "6a1356d5eb2db0859810887e0eb46deb", + "id": "2439201", + "profile": { + "bust": "82", + "height": "163", + "hip": "81", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "花明り夜風", + "alias_name_display": "花明り夜風", + "event": [ + { + "event_id": 1907, + "event_name": "ディアリースタークエスト ~夜桜奇譚~" + } + ], + "hash": "e02867846f13e03eb619cb5e9bddae89", + "id": "2539202", + "profile": { + "bust": "82", + "height": "163", + "hip": "81", + "waist": "56", + "weight": "45" + } + } + ], + "idol_id": 120, + "idol_name": "塩見周子", + "idol_name_display": "塩見周子", + "units": [ + { + "id": "36", + "name": "テンプテーション・アイズ" + }, + { + "id": "41", + "name": "羽衣小町" + }, + { + "id": "126", + "name": "誘惑イビル" + }, + { + "id": "185", + "name": "LiPPS" + }, + { + "id": "200", + "name": "CAERULA" + }, + { + "id": "205", + "name": "シンデレラガール" + }, + { + "id": "215", + "name": "Project:Krone" + } + ] + }, + { + "aliases": [ + { + "hash": "e679dff816d61f7dde0816dd34799270", + "id": "2203701", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "38" + } + }, + { + "hash": "965021a44894a7832a1f88f0e9f742d4", + "id": "2303702", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "38" + } + }, + { + "alias_name": "レインドロップ", + "alias_name_display": "レインドロップ", + "event": [ + { + "event_id": 407, + "event_name": "アイドルプロデュース 鎌倉あじさい巡り" + } + ], + "hash": "ca4d85ca12153e208803d8380c003580", + "id": "2210101", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "38" + } + }, + { + "alias_name": "レインドロップ", + "alias_name_display": "レインドロップ", + "event": [ + { + "event_id": 407, + "event_name": "アイドルプロデュース 鎌倉あじさい巡り" + } + ], + "hash": "851c54b6959c755c24deec013072c3c5", + "id": "2310102", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "38" + } + }, + { + "alias_name": "レインドロップスマイル", + "alias_name_display": "レインドロップスマイル", + "event": [ + { + "event_id": 407, + "event_name": "アイドルプロデュース 鎌倉あじさい巡り" + } + ], + "hash": "78caf5509e0af127c00a4c5f1a3cf2ef", + "id": "2210201", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "38" + } + }, + { + "alias_name": "レインドロップスマイル", + "alias_name_display": "レインドロップスマイル", + "event": [ + { + "event_id": 407, + "event_name": "アイドルプロデュース 鎌倉あじさい巡り" + } + ], + "hash": "c49ce83bd2e36615d94720836a96f4e2", + "id": "2310202", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "38" + } + }, + { + "alias_name": "ハッピーウェディング", + "alias_name_display": "ハッピーウェディング", + "hash": "9c15bd84b69f2ff6921fc3320f180f98", + "id": "2216101", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "38" + } + }, + { + "alias_name": "ハッピーウェディング", + "alias_name_display": "ハッピーウェディング", + "hash": "68fa76ac2cf3a756f256ef50f76f6d76", + "id": "2316102", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "38" + } + }, + { + "alias_name": "ちいさなドキドキ", + "alias_name_display": "ちいさなドキドキ", + "event": [ + { + "event_id": 709, + "event_name": "第9回ドリームLIVEフェスティバル" + } + ], + "hash": "eb3b7cb3832c161a6ec05b130551948c", + "id": "2218501", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "38" + } + }, + { + "alias_name": "ちいさなドキドキ", + "alias_name_display": "ちいさなドキドキ", + "event": [ + { + "event_id": 709, + "event_name": "第9回ドリームLIVEフェスティバル" + } + ], + "hash": "0e03f797721d272186d8d21000d3e10a", + "id": "2318502", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "38" + } + }, + { + "alias_name": "サマーバケーション", + "alias_name_display": "サマーバケーション", + "hash": "0600b0149f228d1f7c2eed9406b975f1", + "id": "2222501", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "38" + } + }, + { + "alias_name": "サマーバケーション", + "alias_name_display": "サマーバケーション", + "hash": "3f093aa4e427556cc8add03178529d7d", + "id": "2322502", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "38" + } + }, + { + "alias_name": "ハロウィンI.C", + "alias_name_display": "ハロウィンI.C", + "event": [ + { + "event_id": 1213, + "event_name": "目指せお菓子なハロウィン アイドルチャレンジ" + } + ], + "hash": "d351c995d88a79e786bfea5fca55bf01", + "id": "2329002", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "38" + } + }, + { + "alias_name": "ポテンシャルグリーン", + "alias_name_display": "ポテンシャルグリーン", + "hash": "d7c92c9ee05cf097efaed72d317144e9", + "id": "2231801", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "38" + } + }, + { + "alias_name": "ポテンシャルグリーン", + "alias_name_display": "ポテンシャルグリーン", + "hash": "f3966391a56ee9d7c15aefdd73303927", + "id": "2331802", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "38" + } + }, + { + "alias_name": "ちびっこステージ", + "alias_name_display": "ちびっこステージ", + "event": [ + { + "event_id": 206, + "event_name": "アイドルサバイバルin学園祭" + } + ], + "hash": "aa0172e7bb70b19bf3262e2fd7c776e1", + "id": "2403101", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "38" + } + }, + { + "alias_name": "ちびっこステージ", + "alias_name_display": "ちびっこステージ", + "event": [ + { + "event_id": 206, + "event_name": "アイドルサバイバルin学園祭" + } + ], + "hash": "6400e8cfc48ab3bf8553c16279686a85", + "id": "2503102", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "38" + } + }, + { + "alias_name": "小さな自信家", + "alias_name_display": "小さな自信家", + "hash": "a69caf59d09fb1d64d1495c825a62464", + "id": "2409501", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "38" + } + }, + { + "alias_name": "小さな自信家", + "alias_name_display": "小さな自信家", + "hash": "e485b6a3355e84d67d7a4302ff960aa0", + "id": "2509502", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "38" + } + }, + { + "alias_name": "流浪の剣客", + "alias_name_display": "流浪の剣客", + "event": [ + { + "event_id": 517, + "event_name": "戦国公演 風来剣客伝" + } + ], + "hash": "373e3e361b193fe691d59bb6e07508df", + "id": "2422001", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "38" + } + }, + { + "alias_name": "流浪の剣客", + "alias_name_display": "流浪の剣客", + "event": [ + { + "event_id": 517, + "event_name": "戦国公演 風来剣客伝" + } + ], + "hash": "9e486396d32ff068967105a1eb7cd139", + "id": "2522002", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "38" + } + }, + { + "alias_name": "ちびっこファッショニスタ", + "alias_name_display": "ちびっこファッショニスタ", + "event": [ + { + "event_id": 1802, + "event_name": "アイドルバラエティ 手作りライブプロジェクト!" + } + ], + "hash": "65496c8b5da8e7501713aa5d91bf38e2", + "id": "2428601", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "38" + } + }, + { + "alias_name": "ちびっこファッショニスタ", + "alias_name_display": "ちびっこファッショニスタ", + "event": [ + { + "event_id": 1802, + "event_name": "アイドルバラエティ 手作りライブプロジェクト!" + } + ], + "hash": "7242cb9dead449c0145bd41cfa681235", + "id": "2528602", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "38" + } + }, + { + "alias_name": "グローイングガール", + "alias_name_display": "グローイングガール", + "event": [ + { + "event_id": 816, + "event_name": "第16回アイドルLIVEロワイヤル" + } + ], + "hash": "d7fc5ac332b63b8bb29aaf81d686fa68", + "id": "2431001", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "38" + } + }, + { + "alias_name": "グローイングガール", + "alias_name_display": "グローイングガール", + "event": [ + { + "event_id": 816, + "event_name": "第16回アイドルLIVEロワイヤル" + } + ], + "hash": "082b1e80f7cbee317080ad10e2c9ca89", + "id": "2531002", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "38" + } + }, + { + "alias_name": "ちびっこヴァンパイア", + "alias_name_display": "ちびっこヴァンパイア", + "event": [ + { + "event_id": 1213, + "event_name": "目指せお菓子なハロウィン アイドルチャレンジ" + } + ], + "hash": "581612c7e3065718170759e2cebb1041", + "id": "2435401", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "38" + } + }, + { + "alias_name": "ちびっこヴァンパイア", + "alias_name_display": "ちびっこヴァンパイア", + "event": [ + { + "event_id": 1213, + "event_name": "目指せお菓子なハロウィン アイドルチャレンジ" + } + ], + "hash": "bebc047b25dc019ba8a1e6f4e03f675c", + "id": "2535402", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "38" + } + }, + { + "alias_name": "せくしーヴァンパイア", + "alias_name_display": "せくしーヴァンパイア", + "event": [ + { + "event_id": 1213, + "event_name": "目指せお菓子なハロウィン アイドルチャレンジ" + } + ], + "hash": "900261437894a61053e9aa69940c9615", + "id": "2435501", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "38" + } + }, + { + "alias_name": "せくしーヴァンパイア", + "alias_name_display": "せくしーヴァンパイア", + "event": [ + { + "event_id": 1213, + "event_name": "目指せお菓子なハロウィン アイドルチャレンジ" + } + ], + "hash": "65c1d041ea9ed32748e96188870b56f5", + "id": "2535502", + "profile": { + "bust": "72", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "38" + } + } + ], + "idol_id": 121, + "idol_name": "脇山珠美", + "idol_name_display": "脇山珠美", + "units": [ + { + "id": "38", + "name": "忍武☆繚乱" + }, + { + "id": "106", + "name": "レインドロップ" + }, + { + "id": "156", + "name": "センゴク☆華☆ランブ" + }, + { + "id": "178", + "name": "からぱれ" + }, + { + "id": "179", + "name": "春霞" + } + ] + }, + { + "aliases": [ + { + "hash": "b57af23a2c131cc8b45dd49a20f76df0", + "id": "2204101", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "hash": "ddf08d575bf37d507eebd3a6150ac8a7", + "id": "2304102", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "小さな一歩", + "alias_name_display": "小さな一歩", + "event": [ + { + "event_id": 701, + "event_name": "ドリームLIVEフェスティバル" + } + ], + "hash": "9a8a08cb1cc77514779a32341079588e", + "id": "2210501", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "小さな一歩", + "alias_name_display": "小さな一歩", + "event": [ + { + "event_id": 701, + "event_name": "ドリームLIVEフェスティバル" + } + ], + "hash": "8b2b5aaf046e3c52c73b3993fea37768", + "id": "2310502", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ショコラフレーバー", + "alias_name_display": "ショコラフレーバー", + "event": [ + { + "event_id": 411, + "event_name": "アイドルプロデュース チョコレートフォーユー!" + } + ], + "hash": "788177b829cd93ef13581f7db56bdf15", + "id": "2214301", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ショコラフレーバー", + "alias_name_display": "ショコラフレーバー", + "event": [ + { + "event_id": 411, + "event_name": "アイドルプロデュース チョコレートフォーユー!" + } + ], + "hash": "50f794509606aab019899e5112533408", + "id": "2314302", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ショコラフレーバー・S", + "alias_name_display": "ショコラフレーバー・S", + "event": [ + { + "event_id": 411, + "event_name": "アイドルプロデュース チョコレートフォーユー!" + } + ], + "hash": "69ce323535350959960d423371d20bcc", + "id": "2214401", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ショコラフレーバー・S", + "alias_name_display": "ショコラフレーバー・S", + "event": [ + { + "event_id": 411, + "event_name": "アイドルプロデュース チョコレートフォーユー!" + } + ], + "hash": "d23dc2cedc767125189e31dd34e486a0", + "id": "2314402", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "メルヘンアニマルズ", + "alias_name_display": "メルヘンアニマルズ", + "hash": "88ff421d2eca339de73a627e8292fb27", + "id": "2217301", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "メルヘンアニマルズ", + "alias_name_display": "メルヘンアニマルズ", + "hash": "12b90def5bb388a39679557f35ecca52", + "id": "2317302", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "新春I.C", + "alias_name_display": "新春I.C", + "event": [ + { + "event_id": 1204, + "event_name": "新年かくし芸SP アイドルチャレンジ" + } + ], + "hash": "53d7f758c8a85691276337c98d0df6d1", + "id": "2319402", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "さわやかスポーツ", + "alias_name_display": "さわやかスポーツ", + "hash": "e509f8e6dcb2719a45e65af224a5a2cb", + "id": "2223301", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "さわやかスポーツ", + "alias_name_display": "さわやかスポーツ", + "hash": "032a8edcd9d3d015114934eb0a0e0279", + "id": "2323302", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "T.B.チアーズ", + "alias_name_display": "T.B.チアーズ", + "event": [ + { + "event_id": 1506, + "event_name": "第6回チーム対抗トークバトルショー" + } + ], + "hash": "23f7344f24328f4e3686cfb2e115bb94", + "id": "2225501", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "T.B.チアーズ", + "alias_name_display": "T.B.チアーズ", + "event": [ + { + "event_id": 1506, + "event_name": "第6回チーム対抗トークバトルショー" + } + ], + "hash": "ea8b4ce81f9c11e52f0032daf3388ffa", + "id": "2325502", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ガーリーポッシブ", + "alias_name_display": "ガーリーポッシブ", + "hash": "868dc6accad9dfd7b5f3192a7e989345", + "id": "2228601", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ガーリーポッシブ", + "alias_name_display": "ガーリーポッシブ", + "hash": "ba758417f5b2c50e967f9fe9fe245a1e", + "id": "2328602", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "爛漫ひな娘", + "alias_name_display": "爛漫ひな娘", + "event": [ + { + "event_id": 209, + "event_name": "アイドルサバイバルひな祭り2013" + } + ], + "hash": "7e8f66cd2d59a765f82207a6979ece5d", + "id": "2405501", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "爛漫ひな娘", + "alias_name_display": "爛漫ひな娘", + "event": [ + { + "event_id": 209, + "event_name": "アイドルサバイバルひな祭り2013" + } + ], + "hash": "da50d7db5e589095e50bec4974577e56", + "id": "2505502", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "プラネットスター", + "alias_name_display": "プラネットスター", + "event": [ + { + "event_id": 508, + "event_name": "LIVEツアーカーニバルinスペースワールド" + } + ], + "hash": "1f750bf1abbc39aa6fef137dc0e075b4", + "id": "2410001", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "プラネットスター", + "alias_name_display": "プラネットスター", + "event": [ + { + "event_id": 508, + "event_name": "LIVEツアーカーニバルinスペースワールド" + } + ], + "hash": "40d987790b986b93a47f6c14168a07c3", + "id": "2510002", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "独楽の芸達者", + "alias_name_display": "独楽の芸達者", + "event": [ + { + "event_id": 1204, + "event_name": "新年かくし芸SP アイドルチャレンジ" + } + ], + "hash": "d776b25c39a73d32904c274ec212f8fc", + "id": "2420301", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "独楽の芸達者", + "alias_name_display": "独楽の芸達者", + "event": [ + { + "event_id": 1204, + "event_name": "新年かくし芸SP アイドルチャレンジ" + } + ], + "hash": "7defc5e1e4339bada951464376ef1b9f", + "id": "2520302", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "独楽の芸達者・S", + "alias_name_display": "独楽の芸達者・S", + "event": [ + { + "event_id": 1204, + "event_name": "新年かくし芸SP アイドルチャレンジ" + } + ], + "hash": "1f0d0f8e9901e4e581e87542c3d50973", + "id": "2420401", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "独楽の芸達者・S", + "alias_name_display": "独楽の芸達者・S", + "event": [ + { + "event_id": 1204, + "event_name": "新年かくし芸SP アイドルチャレンジ" + } + ], + "hash": "9b560fdd5e7ff78136a79a64ca2858af", + "id": "2520402", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ワンモアステップ", + "alias_name_display": "ワンモアステップ", + "hash": "14a6958b5ab32a6ac74fea57e084f78f", + "id": "2428301", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ワンモアステップ", + "alias_name_display": "ワンモアステップ", + "hash": "fcd7b0930fa988a3c24a261c466e03bd", + "id": "2528302", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "トラストテイマー", + "alias_name_display": "トラストテイマー", + "event": [ + { + "event_id": 1709, + "event_name": "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" + } + ], + "hash": "4c7df96d323e08125163cc5bc0a232ea", + "id": "2438601", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "トラストテイマー", + "alias_name_display": "トラストテイマー", + "event": [ + { + "event_id": 1709, + "event_name": "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" + } + ], + "hash": "093d3b30bcfa6e493d00a8985b8066fe", + "id": "2538602", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "スマイリーテイマー", + "alias_name_display": "スマイリーテイマー", + "event": [ + { + "event_id": 1709, + "event_name": "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" + } + ], + "hash": "b3aae663a3c87f949805746c7ac66b2b", + "id": "2438701", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "スマイリーテイマー", + "alias_name_display": "スマイリーテイマー", + "event": [ + { + "event_id": 1709, + "event_name": "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" + } + ], + "hash": "4753beff820055994390f5d38cd6c31e", + "id": "2538702", + "profile": { + "bust": "79", + "height": "153", + "hip": "80", + "waist": "55", + "weight": "43" + } + } + ], + "idol_id": 122, + "idol_name": "岡崎泰葉", + "idol_name_display": "岡崎泰葉", + "units": [ + { + "id": "102", + "name": "パワフルヒーラーズ" + }, + { + "id": "105", + "name": "リトルチェリーブロッサム" + }, + { + "id": "166", + "name": "メルヘンアニマルズ" + }, + { + "id": "172", + "name": "GIRLS BE NEXT STEP" + } + ] + }, + { + "aliases": [ + { + "hash": "e50a31a7e529103da461ae20d1da2140", + "id": "2205301", + "profile": { + "bust": "86", + "height": "162", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "hash": "63f9b6f318bddcb60af2cf3e621f2175", + "id": "2305302", + "profile": { + "bust": "86", + "height": "162", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ハッピーバレンタイン", + "alias_name_display": "ハッピーバレンタイン", + "event": [ + { + "event_id": 405, + "event_name": "アイドルプロデュース バレンタイン編" + } + ], + "hash": "5d859042cb0d19e91ac36d75a8211c6b", + "id": "2208101", + "profile": { + "bust": "86", + "height": "162", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ハッピーバレンタイン", + "alias_name_display": "ハッピーバレンタイン", + "event": [ + { + "event_id": 405, + "event_name": "アイドルプロデュース バレンタイン編" + } + ], + "hash": "cbb8818bd27d3391e77bbff12bd978cd", + "id": "2308102", + "profile": { + "bust": "86", + "height": "162", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "スマイルバレンタイン", + "alias_name_display": "スマイルバレンタイン", + "event": [ + { + "event_id": 405, + "event_name": "アイドルプロデュース バレンタイン編" + } + ], + "hash": "a388f7b32e253232d63b6b39fa9d6e6a", + "id": "2208201", + "profile": { + "bust": "86", + "height": "162", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "スマイルバレンタイン", + "alias_name_display": "スマイルバレンタイン", + "event": [ + { + "event_id": 405, + "event_name": "アイドルプロデュース バレンタイン編" + } + ], + "hash": "3f837080e8800fbbe6c85258f40dab97", + "id": "2308202", + "profile": { + "bust": "86", + "height": "162", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "セレクテッド", + "alias_name_display": "セレクテッド", + "hash": "2c187df2b259b1e01d46c2868304cd17", + "id": "2222701", + "profile": { + "bust": "86", + "height": "162", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "セレクテッド", + "alias_name_display": "セレクテッド", + "hash": "ab4dfb0bebdc39a536b7f008fa041052", + "id": "2322702", + "profile": { + "bust": "86", + "height": "162", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "蒼翼の乙女", + "alias_name_display": "蒼翼の乙女", + "hash": "6975e9bc563b357783e3314efec0bef9", + "id": "2406001", + "profile": { + "bust": "86", + "height": "162", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "蒼翼の乙女", + "alias_name_display": "蒼翼の乙女", + "hash": "bcabb6bef0c899516b59ab44dc701efa", + "id": "2506002", + "profile": { + "bust": "86", + "height": "162", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "夜色の花嫁", + "alias_name_display": "夜色の花嫁", + "hash": "0231e453de83dea96397acc7f45b7731", + "id": "2410601", + "profile": { + "bust": "86", + "height": "162", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "夜色の花嫁", + "alias_name_display": "夜色の花嫁", + "hash": "bed2e9671e9378d70ba5e073180c7adc", + "id": "2510602", + "profile": { + "bust": "86", + "height": "162", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "チアリングスター", + "alias_name_display": "チアリングスター", + "event": [ + { + "event_id": 1101, + "event_name": "プロダクション対抗トークバトルショー" + } + ], + "hash": "9f20eaddbc42ec976f862e83d7d6cf5d", + "id": "2413001", + "profile": { + "bust": "86", + "height": "162", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "チアリングスター", + "alias_name_display": "チアリングスター", + "event": [ + { + "event_id": 1101, + "event_name": "プロダクション対抗トークバトルショー" + } + ], + "hash": "d96d08d63893c62dde9015bf1efe1554", + "id": "2513002", + "profile": { + "bust": "86", + "height": "162", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "追憶のヴァニタス", + "alias_name_display": "追憶のヴァニタス", + "hash": "a528c4946a755e454146149b4c5afc34", + "id": "2417801", + "profile": { + "bust": "86", + "height": "162", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "追憶のヴァニタス", + "alias_name_display": "追憶のヴァニタス", + "hash": "0b292926907dd6bbc279f1e6be1f5fd6", + "id": "2517802", + "profile": { + "bust": "86", + "height": "162", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "9db93440a6646d776844ea187394870a", + "id": "2421401", + "profile": { + "bust": "86", + "height": "162", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "c7fecadb9feb6558ebe7320a7fbaa902", + "id": "2521402", + "profile": { + "bust": "86", + "height": "162", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ミッドナイトレイヴ", + "alias_name_display": "ミッドナイトレイヴ", + "hash": "4c75721b64da4ee43ab0a67e51e394b6", + "id": "2422401", + "profile": { + "bust": "86", + "height": "162", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ミッドナイトレイヴ", + "alias_name_display": "ミッドナイトレイヴ", + "hash": "8b1c20dd3e050fb08648f0216adf4186", + "id": "2522402", + "profile": { + "bust": "86", + "height": "162", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "カタルシスの華", + "alias_name_display": "カタルシスの華", + "hash": "48dcab45161233389d47851fafcf7de3", + "id": "2432601", + "profile": { + "bust": "86", + "height": "162", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "カタルシスの華", + "alias_name_display": "カタルシスの華", + "hash": "81143e7454524921e1cacdcc3913dc00", + "id": "2532602", + "profile": { + "bust": "86", + "height": "162", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "天光の乙女", + "alias_name_display": "天光の乙女", + "hash": "738af1adc4839585781bb40c338ad956", + "id": "2435601", + "profile": { + "bust": "86", + "height": "162", + "hip": "84", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "天光の乙女", + "alias_name_display": "天光の乙女", + "hash": "95d9d50a1d7378f34aaa25491b1fd0ec", + "id": "2535602", + "profile": { + "bust": "86", + "height": "162", + "hip": "84", + "waist": "55", + "weight": "43" + } + } + ], + "idol_id": 123, + "idol_name": "速水奏", + "idol_name_display": "速水奏", + "units": [ + { + "id": "34", + "name": "デア・アウローラ" + }, + { + "id": "55", + "name": "ミステリアスアイズ" + }, + { + "id": "60", + "name": "モノクロームリリィ" + }, + { + "id": "74", + "name": "FrenchKisS" + }, + { + "id": "155", + "name": "セレクテッド" + }, + { + "id": "160", + "name": "ハッピーバレンタイン" + }, + { + "id": "185", + "name": "LiPPS" + }, + { + "id": "200", + "name": "CAERULA" + }, + { + "id": "215", + "name": "Project:Krone" + } + ] + }, + { + "aliases": [ + { + "alias_name": "ニューウェーブ", + "alias_name_display": "ニューウェーブ", + "event": [ + { + "event_id": 401, + "event_name": "新人アイドルプロデュース" + } + ], + "hash": "26a9c568028c41a7a3d8b6877284ab46", + "id": "2205401", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ニューウェーブ", + "alias_name_display": "ニューウェーブ", + "event": [ + { + "event_id": 401, + "event_name": "新人アイドルプロデュース" + } + ], + "hash": "d110327ad8d38b3fe5a40a3a85447ca1", + "id": "2305402", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "アメリカンスタイル", + "alias_name_display": "アメリカンスタイル", + "event": [ + { + "event_id": 501, + "event_name": "アイドルLIVEツアーinUSA" + } + ], + "hash": "ea14850708aa5d446ecdc704d76097d1", + "id": "2206901", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "アメリカンスタイル", + "alias_name_display": "アメリカンスタイル", + "event": [ + { + "event_id": 501, + "event_name": "アイドルLIVEツアーinUSA" + } + ], + "hash": "7ac782754fe5a12b39d256706d2c022c", + "id": "2306902", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ジューンブライド", + "alias_name_display": "ジューンブライド", + "hash": "daf0bbc66713287cb5cb51a87f150c55", + "id": "2210301", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ジューンブライド", + "alias_name_display": "ジューンブライド", + "hash": "97419715f045627f679d352844628405", + "id": "2310302", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ネイビーブライト", + "alias_name_display": "ネイビーブライト", + "hash": "077042da4ad562035613b4d1a8f18583", + "id": "2214501", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ネイビーブライト", + "alias_name_display": "ネイビーブライト", + "hash": "d4499b213a934c5c68333cd2c839b1f0", + "id": "2314502", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "振袖まつり", + "alias_name_display": "振袖まつり", + "hash": "cc71652b5fa848c9c53c6c9aa661afc4", + "id": "2219501", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "振袖まつり", + "alias_name_display": "振袖まつり", + "hash": "abe79791b4e165347c3372ad6557774b", + "id": "2319502", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "コンストラクタヴォイス", + "alias_name_display": "コンストラクタヴォイス", + "event": [ + { + "event_id": "028", + "event_name": "第28回プロダクションマッチフェスティバル" + } + ], + "hash": "abb47054d1c415287ac5a9aa3ebb9f02", + "id": "2226501", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "コンストラクタヴォイス", + "alias_name_display": "コンストラクタヴォイス", + "event": [ + { + "event_id": "028", + "event_name": "第28回プロダクションマッチフェスティバル" + } + ], + "hash": "c0500e82db55d8753ff92b9cdb8cb895", + "id": "2326502", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ネイビーウェーブ", + "alias_name_display": "ネイビーウェーブ", + "event": [ + { + "event_id": "012", + "event_name": "第12回プロダクションマッチフェスティバル" + } + ], + "hash": "7d9e8adf8a5a5b22d5219e08745affb5", + "id": "2409001", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ネイビーウェーブ", + "alias_name_display": "ネイビーウェーブ", + "event": [ + { + "event_id": "012", + "event_name": "第12回プロダクションマッチフェスティバル" + } + ], + "hash": "27bae0d4009a858d08dced42005cdf25", + "id": "2509002", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ビット・パフォーマー", + "alias_name_display": "ビット・パフォーマー", + "hash": "944d9e23c5292a2b993eb3b753c12a88", + "id": "2416101", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "ビット・パフォーマー", + "alias_name_display": "ビット・パフォーマー", + "hash": "40b76c19f4311be43df320a7c739b4d9", + "id": "2516102", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "スプラッシュマーメイド", + "alias_name_display": "スプラッシュマーメイド", + "event": [ + { + "event_id": 1503, + "event_name": "チーム対抗 夏だ!プールだ!トークバトルショー" + } + ], + "hash": "ab95b7d7c331f74a0617f279f24d3c41", + "id": "2426001", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "スプラッシュマーメイド", + "alias_name_display": "スプラッシュマーメイド", + "event": [ + { + "event_id": 1503, + "event_name": "チーム対抗 夏だ!プールだ!トークバトルショー" + } + ], + "hash": "7935b5bc00980c3d280da85664b33eb0", + "id": "2526002", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "アンブレーク", + "alias_name_display": "アンブレーク", + "event": [ + { + "event_id": 727, + "event_name": "第27回ドリームLIVEフェスティバル" + } + ], + "hash": "ea4e42907f60a55e13f16bcce3df0922", + "id": "2437901", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "55", + "weight": "41" + } + }, + { + "alias_name": "アンブレーク", + "alias_name_display": "アンブレーク", + "event": [ + { + "event_id": 727, + "event_name": "第27回ドリームLIVEフェスティバル" + } + ], + "hash": "ea24d74d3d4603863842d1464a3f82dd", + "id": "2537902", + "profile": { + "bust": "83", + "height": "157", + "hip": "82", + "waist": "55", + "weight": "41" + } + } + ], + "idol_id": 124, + "idol_name": "大石泉", + "idol_name_display": "大石泉", + "units": [ + { + "id": "99", + "name": "ニューウェーブ" + }, + { + "id": "143", + "name": "ファタ・モルガーナ" + } + ] + }, + { + "aliases": [ + { + "hash": "5868502dd8fba8f476fdbc8db146dbb8", + "id": "2205901", + "profile": { + "bust": "78", + "height": "161", + "hip": "81", + "waist": "54", + "weight": "45" + } + }, + { + "hash": "c934cdde656ee3dd7456abbffdcc16f7", + "id": "2305902", + "profile": { + "bust": "78", + "height": "161", + "hip": "81", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "ひな祭り", + "alias_name_display": "ひな祭り", + "event": [ + { + "event_id": 209, + "event_name": "アイドルサバイバルひな祭り2013" + } + ], + "hash": "91a50215ae0c4f7b16ca3e5bfb97fb42", + "id": "2208401", + "profile": { + "bust": "78", + "height": "161", + "hip": "81", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "ひな祭り", + "alias_name_display": "ひな祭り", + "event": [ + { + "event_id": 209, + "event_name": "アイドルサバイバルひな祭り2013" + } + ], + "hash": "0a427058cd1884ae4b9bea994d4460f2", + "id": "2308402", + "profile": { + "bust": "78", + "height": "161", + "hip": "81", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "不器用少女", + "alias_name_display": "不器用少女", + "event": [ + { + "event_id": 505, + "event_name": "アイドルLIVEツアーinバリ島" + } + ], + "hash": "e3ea1ea710dcf9dc5d40b48e62266b8c", + "id": "2210801", + "profile": { + "bust": "78", + "height": "161", + "hip": "81", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "不器用少女", + "alias_name_display": "不器用少女", + "event": [ + { + "event_id": 505, + "event_name": "アイドルLIVEツアーinバリ島" + } + ], + "hash": "766ebc989270280df6d71abeaf6c1a21", + "id": "2310802", + "profile": { + "bust": "78", + "height": "161", + "hip": "81", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "ネクストスターI.C", + "alias_name_display": "ネクストスターI.C", + "event": [ + { + "event_id": 1203, + "event_name": "目指せきらきらモデル アイドルチャレンジ" + } + ], + "hash": "5fa39e583d32f69301740b638da55ccd", + "id": "2318102", + "profile": { + "bust": "78", + "height": "161", + "hip": "81", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "ステキなお手本", + "alias_name_display": "ステキなお手本", + "hash": "ec3a589a41c66f9918793604494c3712", + "id": "2220801", + "profile": { + "bust": "78", + "height": "161", + "hip": "81", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "ステキなお手本", + "alias_name_display": "ステキなお手本", + "hash": "9e96cd2d370b50c67771f9b742f212fa", + "id": "2320802", + "profile": { + "bust": "78", + "height": "161", + "hip": "81", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "ラブリーメイド", + "alias_name_display": "ラブリーメイド", + "hash": "eebfb715a3029f2e64c7127188fe05a8", + "id": "2223001", + "profile": { + "bust": "78", + "height": "161", + "hip": "81", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "ラブリーメイド", + "alias_name_display": "ラブリーメイド", + "hash": "7a9ba0f7ded5e0bfd49c5ce5f7190ce7", + "id": "2323002", + "profile": { + "bust": "78", + "height": "161", + "hip": "81", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "フェリーチェ・チョコラータ", + "alias_name_display": "フェリーチェ・チョコラータ", + "hash": "af9bfa83d7b23c199747d652a625b6fb", + "id": "2230301", + "profile": { + "bust": "78", + "height": "161", + "hip": "81", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "フェリーチェ・チョコラータ", + "alias_name_display": "フェリーチェ・チョコラータ", + "hash": "e7dd22bc2f19ee2b07e113894d4c8605", + "id": "2330302", + "profile": { + "bust": "78", + "height": "161", + "hip": "81", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "素顔の幸せ", + "alias_name_display": "素顔の幸せ", + "event": [ + { + "event_id": 509, + "event_name": "新春LIVEツアーカーニバル" + } + ], + "hash": "d79715c5a47f812c15d888e6edc2099d", + "id": "2411501", + "profile": { + "bust": "78", + "height": "161", + "hip": "81", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "素顔の幸せ", + "alias_name_display": "素顔の幸せ", + "event": [ + { + "event_id": 509, + "event_name": "新春LIVEツアーカーニバル" + } + ], + "hash": "6be36c841286361dee0ab1ec7aabe3e0", + "id": "2511502", + "profile": { + "bust": "78", + "height": "161", + "hip": "81", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "乙女の晴れ舞台", + "alias_name_display": "乙女の晴れ舞台", + "hash": "d886ae7d2ee6c6e75d64f0cac3395f1a", + "id": "2414401", + "profile": { + "bust": "78", + "height": "161", + "hip": "81", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "乙女の晴れ舞台", + "alias_name_display": "乙女の晴れ舞台", + "hash": "7d1819de186cf8f9528fca6f1d4aa39a", + "id": "2514402", + "profile": { + "bust": "78", + "height": "161", + "hip": "81", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "ポップ・モデル", + "alias_name_display": "ポップ・モデル", + "event": [ + { + "event_id": 1203, + "event_name": "目指せきらきらモデル アイドルチャレンジ" + } + ], + "hash": "c462145536f0ea29247d2fcdca22d5f0", + "id": "2418001", + "profile": { + "bust": "78", + "height": "161", + "hip": "81", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "ポップ・モデル", + "alias_name_display": "ポップ・モデル", + "event": [ + { + "event_id": 1203, + "event_name": "目指せきらきらモデル アイドルチャレンジ" + } + ], + "hash": "2fc6d78808a0fc99c2f87af1b407a0bc", + "id": "2518002", + "profile": { + "bust": "78", + "height": "161", + "hip": "81", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "ポップ・モデル・S", + "alias_name_display": "ポップ・モデル・S", + "event": [ + { + "event_id": 1203, + "event_name": "目指せきらきらモデル アイドルチャレンジ" + } + ], + "hash": "1f12deed69f1ec3e24042945968de5bf", + "id": "2418101", + "profile": { + "bust": "78", + "height": "161", + "hip": "81", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "ポップ・モデル・S", + "alias_name_display": "ポップ・モデル・S", + "event": [ + { + "event_id": 1203, + "event_name": "目指せきらきらモデル アイドルチャレンジ" + } + ], + "hash": "44a8cbbd7175a5031b9c5d5a1b8df1e4", + "id": "2518102", + "profile": { + "bust": "78", + "height": "161", + "hip": "81", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "一心入魂", + "alias_name_display": "一心入魂", + "event": [ + { + "event_id": 1507, + "event_name": "チーム対抗トークバトルショー オールスターSP" + } + ], + "hash": "c614169557b2369b2eaa6a9b1c2bf286", + "id": "2432701", + "profile": { + "bust": "78", + "height": "161", + "hip": "81", + "waist": "54", + "weight": "45" + } + }, + { + "alias_name": "一心入魂", + "alias_name_display": "一心入魂", + "event": [ + { + "event_id": 1507, + "event_name": "チーム対抗トークバトルショー オールスターSP" + } + ], + "hash": "49313322c5fd3c9bed6e752b20b7dcd9", + "id": "2532702", + "profile": { + "bust": "78", + "height": "161", + "hip": "81", + "waist": "54", + "weight": "45" + } + } + ], + "idol_id": 125, + "idol_name": "松尾千鶴", + "idol_name_display": "松尾千鶴", + "units": [ + { + "id": "130", + "name": "GIRLS BE" + }, + { + "id": "172", + "name": "GIRLS BE NEXT STEP" + } + ] + }, + { + "aliases": [ + { + "hash": "5e2ce56ce241f77692f5ba6723149452", + "id": "2206801", + "profile": { + "bust": "73", + "height": "149", + "hip": "76", + "waist": "55", + "weight": "38" + } + }, + { + "hash": "9c09179c9e3691aad4af06c0d33fa5bc", + "id": "2306802", + "profile": { + "bust": "73", + "height": "149", + "hip": "76", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "メルヘン&ゴシック", + "alias_name_display": "メルヘン&ゴシック", + "hash": "560577bc6c3151c185624adb2d10b427", + "id": "2208501", + "profile": { + "bust": "73", + "height": "149", + "hip": "76", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "メルヘン&ゴシック", + "alias_name_display": "メルヘン&ゴシック", + "hash": "d3596c108c2e5d1a2c5fba20653d3964", + "id": "2308502", + "profile": { + "bust": "73", + "height": "149", + "hip": "76", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "ハロウィンナイト", + "alias_name_display": "ハロウィンナイト", + "hash": "4a12dd2f01f425e3ac788cbf487dccd2", + "id": "2212201", + "profile": { + "bust": "73", + "height": "149", + "hip": "76", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "ハロウィンナイト", + "alias_name_display": "ハロウィンナイト", + "hash": "47a8929ca558f11bb722ddd61658aa92", + "id": "2312202", + "profile": { + "bust": "73", + "height": "149", + "hip": "76", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "メルヘンブック", + "alias_name_display": "メルヘンブック", + "hash": "91c804725622c458fb9ab4978c12c0f2", + "id": "2224401", + "profile": { + "bust": "73", + "height": "149", + "hip": "76", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "メルヘンブック", + "alias_name_display": "メルヘンブック", + "hash": "15444a20ee24d046fb2ee462fe82fbfd", + "id": "2324402", + "profile": { + "bust": "73", + "height": "149", + "hip": "76", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "ネガティヴ乙女", + "alias_name_display": "ネガティヴ乙女", + "event": [ + { + "event_id": "010", + "event_name": "第10回プロダクションマッチフェスティバル" + } + ], + "hash": "c9e92786947e1a2ae30990d7696c8345", + "id": "2406801", + "profile": { + "bust": "73", + "height": "149", + "hip": "76", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "ネガティヴ乙女", + "alias_name_display": "ネガティヴ乙女", + "event": [ + { + "event_id": "010", + "event_name": "第10回プロダクションマッチフェスティバル" + } + ], + "hash": "1ec11feb35f4b8aa22a14e8fd8763a96", + "id": "2506802", + "profile": { + "bust": "73", + "height": "149", + "hip": "76", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "ショコラバレンタイン", + "alias_name_display": "ショコラバレンタイン", + "event": [ + { + "event_id": 411, + "event_name": "アイドルプロデュース チョコレートフォーユー!" + } + ], + "hash": "2ff046908bbb217d3032a291e9ce7b50", + "id": "2412301", + "profile": { + "bust": "73", + "height": "149", + "hip": "76", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "ショコラバレンタイン", + "alias_name_display": "ショコラバレンタイン", + "event": [ + { + "event_id": 411, + "event_name": "アイドルプロデュース チョコレートフォーユー!" + } + ], + "hash": "cec8ca056124d304b5e6b55824ff2f1e", + "id": "2512302", + "profile": { + "bust": "73", + "height": "149", + "hip": "76", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "ショコラ・スマイル", + "alias_name_display": "ショコラ・スマイル", + "event": [ + { + "event_id": 411, + "event_name": "アイドルプロデュース チョコレートフォーユー!" + } + ], + "hash": "79e7740f472cd2c8bb682acd39749e35", + "id": "2412401", + "profile": { + "bust": "73", + "height": "149", + "hip": "76", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "ショコラ・スマイル", + "alias_name_display": "ショコラ・スマイル", + "event": [ + { + "event_id": 411, + "event_name": "アイドルプロデュース チョコレートフォーユー!" + } + ], + "hash": "6430f72f3cbf56e0e3d2fd4245e18c14", + "id": "2512402", + "profile": { + "bust": "73", + "height": "149", + "hip": "76", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "困惑の小リス", + "alias_name_display": "困惑の小リス", + "hash": "b88133ff50c072f82fd693cd978fb5b1", + "id": "2417201", + "profile": { + "bust": "73", + "height": "149", + "hip": "76", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "困惑の小リス", + "alias_name_display": "困惑の小リス", + "hash": "d1b146a936a57f7226f823a8168bc63d", + "id": "2517202", + "profile": { + "bust": "73", + "height": "149", + "hip": "76", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "おどおど狩人", + "alias_name_display": "おどおど狩人", + "event": [ + { + "event_id": 518, + "event_name": "御伽公演 ふれあい狼と小さな赤ずきんちゃん" + } + ], + "hash": "3c540d8876286f851cd0094779fff4f3", + "id": "2423301", + "profile": { + "bust": "73", + "height": "149", + "hip": "76", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "おどおど狩人", + "alias_name_display": "おどおど狩人", + "event": [ + { + "event_id": 518, + "event_name": "御伽公演 ふれあい狼と小さな赤ずきんちゃん" + } + ], + "hash": "41149651c1bab97e7affc92db00e41a8", + "id": "2523302", + "profile": { + "bust": "73", + "height": "149", + "hip": "76", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "迷々エスケープ", + "alias_name_display": "迷々エスケープ", + "event": [ + { + "event_id": 813, + "event_name": "第13回アイドルLIVEロワイヤル" + } + ], + "hash": "b8f74bf0a450467938b45e0bb1886615", + "id": "2425601", + "profile": { + "bust": "73", + "height": "149", + "hip": "76", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "迷々エスケープ", + "alias_name_display": "迷々エスケープ", + "event": [ + { + "event_id": 813, + "event_name": "第13回アイドルLIVEロワイヤル" + } + ], + "hash": "8272eb1670965488afb2cec0ff3ad314", + "id": "2525602", + "profile": { + "bust": "73", + "height": "149", + "hip": "76", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "イースターハプニング", + "alias_name_display": "イースターハプニング", + "event": [ + { + "event_id": 720, + "event_name": "第20回ドリームLIVEフェスティバル" + } + ], + "hash": "e15ddf799ec1549fa0c5da5c387bbac3", + "id": "2431901", + "profile": { + "bust": "73", + "height": "149", + "hip": "76", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "イースターハプニング", + "alias_name_display": "イースターハプニング", + "event": [ + { + "event_id": 720, + "event_name": "第20回ドリームLIVEフェスティバル" + } + ], + "hash": "8843edbf60141fe58688c10800de5de5", + "id": "2531902", + "profile": { + "bust": "73", + "height": "149", + "hip": "76", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "エスケープブライド", + "alias_name_display": "エスケープブライド", + "hash": "56f0586ed2e674e1f29e4b001bf2184a", + "id": "2435301", + "profile": { + "bust": "73", + "height": "149", + "hip": "76", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "エスケープブライド", + "alias_name_display": "エスケープブライド", + "hash": "a55383925d3c72058386acb662f47aa2", + "id": "2535302", + "profile": { + "bust": "73", + "height": "149", + "hip": "76", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "小さなかくれんぼ", + "alias_name_display": "小さなかくれんぼ", + "hash": "fe787e19422e90f906eb7776da2f8615", + "id": "2439401", + "profile": { + "bust": "73", + "height": "149", + "hip": "76", + "waist": "55", + "weight": "38" + } + }, + { + "alias_name": "小さなかくれんぼ", + "alias_name_display": "小さなかくれんぼ", + "hash": "323901218db4adb11070ca80dbaa2339", + "id": "2539402", + "profile": { + "bust": "73", + "height": "149", + "hip": "76", + "waist": "55", + "weight": "38" + } + } + ], + "idol_id": 126, + "idol_name": "森久保乃々", + "idol_name_display": "森久保乃々", + "units": [ + { + "id": "17", + "name": "サイレントスクリーマー" + }, + { + "id": "85", + "name": "アンダーザデスク" + }, + { + "id": "108", + "name": "individuals" + }, + { + "id": "129", + "name": "ワンステップス" + }, + { + "id": "161", + "name": "ハロウィンナイト" + }, + { + "id": "165", + "name": "メルヘンゴシック" + }, + { + "id": "188", + "name": "Sweetches" + } + ] + }, + { + "aliases": [ + { + "hash": "a0104e1ecbb0a22937e3465955d57a8e", + "id": "2207701", + "profile": { + "bust": "80", + "height": "165", + "hip": "80", + "waist": "54", + "weight": "43" + } + }, + { + "hash": "27158f6d1fc32593699b521aa1101f83", + "id": "2307702", + "profile": { + "bust": "80", + "height": "165", + "hip": "80", + "waist": "54", + "weight": "43" + } + }, + { + "alias_name": "スターユニバース", + "alias_name_display": "スターユニバース", + "hash": "6ed6b0f5c83df2e71e99998dbafe53fc", + "id": "2209601", + "profile": { + "bust": "80", + "height": "165", + "hip": "80", + "waist": "54", + "weight": "43" + } + }, + { + "alias_name": "スターユニバース", + "alias_name_display": "スターユニバース", + "hash": "229936ccad688e2a935d33dee89fcd56", + "id": "2309602", + "profile": { + "bust": "80", + "height": "165", + "hip": "80", + "waist": "54", + "weight": "43" + } + }, + { + "alias_name": "スターリービーチ", + "alias_name_display": "スターリービーチ", + "hash": "4cf046b2e4af1a4be1528e73de51c253", + "id": "2408401", + "profile": { + "bust": "80", + "height": "165", + "hip": "80", + "waist": "54", + "weight": "43" + } + }, + { + "alias_name": "スターリービーチ", + "alias_name_display": "スターリービーチ", + "hash": "1434c2b1e8ac2b9526af0dbc0be53e53", + "id": "2508402", + "profile": { + "bust": "80", + "height": "165", + "hip": "80", + "waist": "54", + "weight": "43" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "46785dbdd571559db51149de02e3337e", + "id": "2410401", + "profile": { + "bust": "80", + "height": "165", + "hip": "80", + "waist": "54", + "weight": "43" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "8f65c4a7c44238a8c40c97bb372de437", + "id": "2510402", + "profile": { + "bust": "80", + "height": "165", + "hip": "80", + "waist": "54", + "weight": "43" + } + }, + { + "alias_name": "スノーフェアリー", + "alias_name_display": "スノーフェアリー", + "hash": "53fcb80b6fc212d322bdf05f433d3bce", + "id": "2411401", + "profile": { + "bust": "80", + "height": "165", + "hip": "80", + "waist": "54", + "weight": "43" + } + }, + { + "alias_name": "スノーフェアリー", + "alias_name_display": "スノーフェアリー", + "hash": "815728ce55ae99bd7b40a1d229133dad", + "id": "2511402", + "profile": { + "bust": "80", + "height": "165", + "hip": "80", + "waist": "54", + "weight": "43" + } + }, + { + "alias_name": "ワンダフルマジック", + "alias_name_display": "ワンダフルマジック", + "hash": "36b6b86a58b5c91a83b3912f744f5cef", + "id": "2412901", + "profile": { + "bust": "80", + "height": "165", + "hip": "80", + "waist": "54", + "weight": "43" + } + }, + { + "alias_name": "ワンダフルマジック", + "alias_name_display": "ワンダフルマジック", + "hash": "7b34edac94a0b9ac186db1cef78e6566", + "id": "2512902", + "profile": { + "bust": "80", + "height": "165", + "hip": "80", + "waist": "54", + "weight": "43" + } + }, + { + "alias_name": "スターライトスクール", + "alias_name_display": "スターライトスクール", + "hash": "c882ebcbdd8a554dcd903c1db47972b2", + "id": "2418201", + "profile": { + "bust": "80", + "height": "165", + "hip": "80", + "waist": "54", + "weight": "43" + } + }, + { + "alias_name": "スターライトスクール", + "alias_name_display": "スターライトスクール", + "hash": "4597cb9d276c25fe9f6bde7354a1edef", + "id": "2518202", + "profile": { + "bust": "80", + "height": "165", + "hip": "80", + "waist": "54", + "weight": "43" + } + }, + { + "alias_name": "ラブライカ", + "alias_name_display": "ラブライカ", + "hash": "a24996fcc1421174481c3333b8ea5218", + "id": "2521502", + "profile": { + "bust": "80", + "height": "165", + "hip": "80", + "waist": "54", + "weight": "43" + } + }, + { + "alias_name": "G4U!", + "alias_name_display": "G4U!", + "hash": "72fd3eb6b6c8a3b1755193c55760938d", + "id": "2525102", + "profile": { + "bust": "80", + "height": "165", + "hip": "80", + "waist": "54", + "weight": "43" + } + }, + { + "alias_name": "宿星ロマネスク", + "alias_name_display": "宿星ロマネスク", + "hash": "00d81330baf84ea61b34e6d88f8bd8a3", + "id": "2426101", + "profile": { + "bust": "80", + "height": "165", + "hip": "80", + "waist": "54", + "weight": "43" + } + }, + { + "alias_name": "宿星ロマネスク", + "alias_name_display": "宿星ロマネスク", + "hash": "cea357fbbe19630ed0a4cbb91a582717", + "id": "2526102", + "profile": { + "bust": "80", + "height": "165", + "hip": "80", + "waist": "54", + "weight": "43" + } + }, + { + "alias_name": "スターリーブライド", + "alias_name_display": "スターリーブライド", + "hash": "48ccc17ef34d4336900f4d2a61b16df8", + "id": "2433101", + "profile": { + "bust": "80", + "height": "165", + "hip": "80", + "waist": "54", + "weight": "43" + } + }, + { + "alias_name": "スターリーブライド", + "alias_name_display": "スターリーブライド", + "hash": "d731e86015162f4f2f1bc8d2fb4aa7f9", + "id": "2533102", + "profile": { + "bust": "80", + "height": "165", + "hip": "80", + "waist": "54", + "weight": "43" + } + }, + { + "alias_name": "雪梅の羽衣", + "alias_name_display": "雪梅の羽衣", + "hash": "1afd8342d44293052f586fcf12e4eb8d", + "id": "2437201", + "profile": { + "bust": "80", + "height": "165", + "hip": "80", + "waist": "54", + "weight": "43" + } + }, + { + "alias_name": "雪梅の羽衣", + "alias_name_display": "雪梅の羽衣", + "hash": "c0e1d6f4481ba3fabd64f9c6c9675156", + "id": "2537202", + "profile": { + "bust": "80", + "height": "165", + "hip": "80", + "waist": "54", + "weight": "43" + } + } + ], + "idol_id": 127, + "idol_name": "アナスタシア", + "idol_name_display": "アナスタシア", + "units": [ + { + "id": "3", + "name": "あーにゃんみくにゃん" + }, + { + "id": "78", + "name": "LOVE LAIKA" + }, + { + "id": "116", + "name": "にゃん・にゃん・にゃん" + }, + { + "id": "141", + "name": "トランクィル・ウィスパー" + }, + { + "id": "145", + "name": "LOVE LAIKA with Rosenburg Engel" + }, + { + "id": "155", + "name": "セレクテッド" + }, + { + "id": "187", + "name": "NEX-US" + }, + { + "id": "201", + "name": "Caskets" + }, + { + "id": "213", + "name": "CINDERELLA PROJECT" + }, + { + "id": "215", + "name": "Project:Krone" + } + ] + }, + { + "aliases": [ + { + "hash": "bdd75aa4670e84394fa074885329d353", + "id": "2208601", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "51" + } + }, + { + "hash": "66f5d69f9648c1bcd8f0cf357cb804ff", + "id": "2308602", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "51" + } + }, + { + "alias_name": "テーマパーク", + "alias_name_display": "テーマパーク", + "event": [ + { + "event_id": 210, + "event_name": "アイドルサバイバルinテーマパーク2013" + } + ], + "hash": "d4ed74985e0e90e83c8e6e9829e06ca2", + "id": "2209801", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "51" + } + }, + { + "alias_name": "テーマパーク", + "alias_name_display": "テーマパーク", + "event": [ + { + "event_id": 210, + "event_name": "アイドルサバイバルinテーマパーク2013" + } + ], + "hash": "77ab277a285478ee92643668e4d320f4", + "id": "2309802", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "51" + } + }, + { + "alias_name": "ロワイヤルスタイル", + "alias_name_display": "ロワイヤルスタイル", + "event": [ + { + "event_id": 803, + "event_name": "第3回アイドルLIVEロワイヤル" + } + ], + "hash": "5ea595f4fea9bde7543b507bb9a53b13", + "id": "2214101", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "51" + } + }, + { + "alias_name": "ロワイヤルスタイル", + "alias_name_display": "ロワイヤルスタイル", + "event": [ + { + "event_id": 803, + "event_name": "第3回アイドルLIVEロワイヤル" + } + ], + "hash": "21adbd340e60c5982af18b580d87049d", + "id": "2314102", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "51" + } + }, + { + "alias_name": "バディズボンズ", + "alias_name_display": "バディズボンズ", + "hash": "b309e13986724c2a213d606c19a82ed2", + "id": "2221601", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "51" + } + }, + { + "alias_name": "バディズボンズ", + "alias_name_display": "バディズボンズ", + "hash": "5b501a4c1349d198b2b9ee5f0a03aed3", + "id": "2321602", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "51" + } + }, + { + "alias_name": "ハロウィンガンナー", + "alias_name_display": "ハロウィンガンナー", + "hash": "541d4ff6ae2186367610013d4a5b966b", + "id": "2409601", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "51" + } + }, + { + "alias_name": "ハロウィンガンナー", + "alias_name_display": "ハロウィンガンナー", + "hash": "ada388db99b4fce828433ebe3e0e5833", + "id": "2509602", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "51" + } + }, + { + "alias_name": "ヴォヤージュ・グラップラー", + "alias_name_display": "ヴォヤージュ・グラップラー", + "hash": "507ff18b613c769ad6af2e41c6ffd7d9", + "id": "2413601", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "51" + } + }, + { + "alias_name": "ヴォヤージュ・グラップラー", + "alias_name_display": "ヴォヤージュ・グラップラー", + "hash": "64f9f11efe3ea3e156d089af6383daf5", + "id": "2513602", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "51" + } + }, + { + "alias_name": "峻烈闘技", + "alias_name_display": "峻烈闘技", + "event": [ + { + "event_id": 514, + "event_name": "功夫公演 香港大決戦" + } + ], + "hash": "d4f4da3d57f9fa884b57215a5dacccbb", + "id": "2417901", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "51" + } + }, + { + "alias_name": "峻烈闘技", + "alias_name_display": "峻烈闘技", + "event": [ + { + "event_id": 514, + "event_name": "功夫公演 香港大決戦" + } + ], + "hash": "14b55a84faefe92d20fef54ae6dfd19d", + "id": "2517902", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "51" + } + }, + { + "alias_name": "V・ジェネラル", + "alias_name_display": "V・ジェネラル", + "event": [ + { + "event_id": 810, + "event_name": "アイドルLIVEロワイヤル バレンタインSP" + } + ], + "hash": "07acb4080f5ab49d5e122849994e21ec", + "id": "2421601", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "51" + } + }, + { + "alias_name": "V・ジェネラル", + "alias_name_display": "V・ジェネラル", + "event": [ + { + "event_id": 810, + "event_name": "アイドルLIVEロワイヤル バレンタインSP" + } + ], + "hash": "827a6122f087530b62b045dd10e1024a", + "id": "2521602", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "51" + } + }, + { + "alias_name": "フォワードチアー", + "alias_name_display": "フォワードチアー", + "event": [ + { + "event_id": 1504, + "event_name": "第4回チーム対抗トークバトルショー" + } + ], + "hash": "3e53dc3355ec6ba2d0e7ade9878ea440", + "id": "2427401", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "51" + } + }, + { + "alias_name": "フォワードチアー", + "alias_name_display": "フォワードチアー", + "event": [ + { + "event_id": 1504, + "event_name": "第4回チーム対抗トークバトルショー" + } + ], + "hash": "f4edb567d2d54063babfa277b6716e8c", + "id": "2527402", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "51" + } + }, + { + "alias_name": "パーフェクトプレデター", + "alias_name_display": "パーフェクトプレデター", + "event": [ + { + "event_id": 1210, + "event_name": "アイドルチャレンジ サバイバルゲーム編" + } + ], + "hash": "dd4b44c6df0f6e78a9c10459a4101093", + "id": "2432201", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "51" + } + }, + { + "alias_name": "パーフェクトプレデター", + "alias_name_display": "パーフェクトプレデター", + "event": [ + { + "event_id": 1210, + "event_name": "アイドルチャレンジ サバイバルゲーム編" + } + ], + "hash": "f6c27f4e984ec5c984d985b61c05d58a", + "id": "2532202", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "51" + } + }, + { + "alias_name": "煩悩ビートアウト", + "alias_name_display": "煩悩ビートアウト", + "event": [ + { + "event_id": 726, + "event_name": "ドリームLIVEフェスティバル新春SP" + } + ], + "hash": "f575c75aca75758a1c6505917a35300d", + "id": "2437101", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "51" + } + }, + { + "alias_name": "煩悩ビートアウト", + "alias_name_display": "煩悩ビートアウト", + "event": [ + { + "event_id": 726, + "event_name": "ドリームLIVEフェスティバル新春SP" + } + ], + "hash": "3fd70cf35e090606cfb1d891b35fb013", + "id": "2537102", + "profile": { + "bust": "92", + "height": "165", + "hip": "85", + "waist": "60", + "weight": "51" + } + } + ], + "idol_id": 128, + "idol_name": "大和亜季", + "idol_name_display": "大和亜季", + "units": [ + { + "id": "121", + "name": "ヘルシーサバイブ" + }, + { + "id": "176", + "name": "炎陣" + }, + { + "id": "208", + "name": "ロワイヤルスタイル" + } + ] + }, + { + "aliases": [ + { + "hash": "dfa875a32faa00241a4fbe09310f9c7f", + "id": "2209901", + "profile": { + "bust": "74", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "37" + } + }, + { + "hash": "2568eae8707de2024d268ec56e553adf", + "id": "2309902", + "profile": { + "bust": "74", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "37" + } + }, + { + "alias_name": "バニーガール", + "alias_name_display": "バニーガール", + "hash": "a013ffd163e3c20a807def1b83c0a6b1", + "id": "2211601", + "profile": { + "bust": "74", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "37" + } + }, + { + "alias_name": "バニーガール", + "alias_name_display": "バニーガール", + "hash": "1ac8bfee87f2f11f3e9dd0c54ca3e953", + "id": "2311602", + "profile": { + "bust": "74", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "37" + } + }, + { + "alias_name": "ロワイヤルスタイルNP", + "alias_name_display": "ロワイヤルスタイルNP", + "event": [ + { + "event_id": 804, + "event_name": "第4回アイドルLIVEロワイヤル" + } + ], + "hash": "f0b8b5cf58bb8c5406140058f5a849f0", + "id": "2214901", + "profile": { + "bust": "74", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "37" + } + }, + { + "alias_name": "ロワイヤルスタイルNP", + "alias_name_display": "ロワイヤルスタイルNP", + "event": [ + { + "event_id": 804, + "event_name": "第4回アイドルLIVEロワイヤル" + } + ], + "hash": "29d1a6d210cf95036da6ba9a48c052e0", + "id": "2314902", + "profile": { + "bust": "74", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "37" + } + }, + { + "alias_name": "ブライダルセレクション", + "alias_name_display": "ブライダルセレクション", + "hash": "4d145211fe71e1d11c6d7a44d1cb8c76", + "id": "2221301", + "profile": { + "bust": "74", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "37" + } + }, + { + "alias_name": "ブライダルセレクション", + "alias_name_display": "ブライダルセレクション", + "hash": "88d2abc4439dbca86dc9f64c50df81e1", + "id": "2321302", + "profile": { + "bust": "74", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "37" + } + }, + { + "alias_name": "ナデシコI.C", + "alias_name_display": "ナデシコI.C", + "event": [ + { + "event_id": 1207, + "event_name": "目指せ大和撫子 アイドルチャレンジ" + } + ], + "hash": "0912cff2743a72d74ddb27ba6c759520", + "id": "2323202", + "profile": { + "bust": "74", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "37" + } + }, + { + "alias_name": "フレッシュセレクト", + "alias_name_display": "フレッシュセレクト", + "hash": "917f4d4ef32fcbc618912ad79a662509", + "id": "2229101", + "profile": { + "bust": "74", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "37" + } + }, + { + "alias_name": "フレッシュセレクト", + "alias_name_display": "フレッシュセレクト", + "hash": "71bf409f7e131f628bf16f7293a10259", + "id": "2329102", + "profile": { + "bust": "74", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "37" + } + }, + { + "alias_name": "疾風のストライカー", + "alias_name_display": "疾風のストライカー", + "event": [ + { + "event_id": "016", + "event_name": "第16回プロダクションマッチフェスティバル" + } + ], + "hash": "555e09e17e8b0478cc9cb34ade964e83", + "id": "2413701", + "profile": { + "bust": "74", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "37" + } + }, + { + "alias_name": "疾風のストライカー", + "alias_name_display": "疾風のストライカー", + "event": [ + { + "event_id": "016", + "event_name": "第16回プロダクションマッチフェスティバル" + } + ], + "hash": "33d5c2fed58080ff247e88e4419b23ce", + "id": "2513702", + "profile": { + "bust": "74", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "37" + } + }, + { + "alias_name": "アクティブサファリ", + "alias_name_display": "アクティブサファリ", + "event": [ + { + "event_id": 414, + "event_name": "どうぶつアドベンチャー オーストラリア編" + } + ], + "hash": "8265ddc15288685c6669e162918d54f2", + "id": "2417301", + "profile": { + "bust": "74", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "37" + } + }, + { + "alias_name": "アクティブサファリ", + "alias_name_display": "アクティブサファリ", + "event": [ + { + "event_id": 414, + "event_name": "どうぶつアドベンチャー オーストラリア編" + } + ], + "hash": "3cf4089b1a845917321f864469eb6a8d", + "id": "2517302", + "profile": { + "bust": "74", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "37" + } + }, + { + "alias_name": "アクティブサファリ・S", + "alias_name_display": "アクティブサファリ・S", + "event": [ + { + "event_id": 414, + "event_name": "どうぶつアドベンチャー オーストラリア編" + } + ], + "hash": "dbdcdaef80cb0747871a76a00a9cf06f", + "id": "2417401", + "profile": { + "bust": "74", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "37" + } + }, + { + "alias_name": "アクティブサファリ・S", + "alias_name_display": "アクティブサファリ・S", + "event": [ + { + "event_id": 414, + "event_name": "どうぶつアドベンチャー オーストラリア編" + } + ], + "hash": "a912cbee230c6437054c1bd1cdbac479", + "id": "2517402", + "profile": { + "bust": "74", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "37" + } + }, + { + "alias_name": "明日へのフラッグ", + "alias_name_display": "明日へのフラッグ", + "hash": "f47b91503aa66413e527bf7e34845455", + "id": "2420701", + "profile": { + "bust": "74", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "37" + } + }, + { + "alias_name": "明日へのフラッグ", + "alias_name_display": "明日へのフラッグ", + "hash": "0c05a80b08b4ea53fbe226641f38f233", + "id": "2520702", + "profile": { + "bust": "74", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "37" + } + }, + { + "alias_name": "茶道の大和撫子", + "alias_name_display": "茶道の大和撫子", + "event": [ + { + "event_id": 1207, + "event_name": "目指せ大和撫子 アイドルチャレンジ" + } + ], + "hash": "2aa881f4aaa87e622b49619067103762", + "id": "2427001", + "profile": { + "bust": "74", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "37" + } + }, + { + "alias_name": "茶道の大和撫子", + "alias_name_display": "茶道の大和撫子", + "event": [ + { + "event_id": 1207, + "event_name": "目指せ大和撫子 アイドルチャレンジ" + } + ], + "hash": "577d0df4271b8ca7f326c2b1410f3d42", + "id": "2527002", + "profile": { + "bust": "74", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "37" + } + }, + { + "alias_name": "茶道の大和撫子・S", + "alias_name_display": "茶道の大和撫子・S", + "event": [ + { + "event_id": 1207, + "event_name": "目指せ大和撫子 アイドルチャレンジ" + } + ], + "hash": "2c92874d2faf8cd7055d13af5a3ccdbb", + "id": "2427101", + "profile": { + "bust": "74", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "37" + } + }, + { + "alias_name": "茶道の大和撫子・S", + "alias_name_display": "茶道の大和撫子・S", + "event": [ + { + "event_id": 1207, + "event_name": "目指せ大和撫子 アイドルチャレンジ" + } + ], + "hash": "54d00470533b80a1184cd2e4ea96b829", + "id": "2527102", + "profile": { + "bust": "74", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "37" + } + }, + { + "alias_name": "オーバーラップ", + "alias_name_display": "オーバーラップ", + "event": [ + { + "event_id": 1506, + "event_name": "第6回チーム対抗トークバトルショー" + } + ], + "hash": "e343237e1ccc77a8f1c45944d61916f6", + "id": "2431601", + "profile": { + "bust": "74", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "37" + } + }, + { + "alias_name": "オーバーラップ", + "alias_name_display": "オーバーラップ", + "event": [ + { + "event_id": 1506, + "event_name": "第6回チーム対抗トークバトルショー" + } + ], + "hash": "f3b9ea014c6bc64c930947cc9221d3c9", + "id": "2531602", + "profile": { + "bust": "74", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "37" + } + } + ], + "idol_id": 129, + "idol_name": "結城晴", + "idol_name_display": "結城晴", + "units": [ + { + "id": "45", + "name": "ビートシューター" + }, + { + "id": "47", + "name": "ひつじさんとうさぎさん" + }, + { + "id": "54", + "name": "ボール・フレンズ" + }, + { + "id": "162", + "name": "ブライダルセレクション" + }, + { + "id": "177", + "name": "桜舞隊" + }, + { + "id": "209", + "name": "ロワイヤルスタイルNP" + } + ] + }, + { + "aliases": [ + { + "hash": "4631474fd525ac81e51808b0bface6a2", + "id": "2213501", + "profile": { + "bust": "75", + "height": "154", + "hip": "78", + "waist": "55", + "weight": "42" + } + }, + { + "hash": "7ca085178b2e427f1840e2ba4ea64319", + "id": "2313502", + "profile": { + "bust": "75", + "height": "154", + "hip": "78", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "グリッターステージ", + "alias_name_display": "グリッターステージ", + "hash": "eb23608b1c3bdac0aa81a981e8336178", + "id": "2215101", + "profile": { + "bust": "75", + "height": "154", + "hip": "78", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "グリッターステージ", + "alias_name_display": "グリッターステージ", + "hash": "f84359de4c315c3ca147d07099e188ed", + "id": "2315102", + "profile": { + "bust": "75", + "height": "154", + "hip": "78", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "サファリアドベンチャー", + "alias_name_display": "サファリアドベンチャー", + "event": [ + { + "event_id": 414, + "event_name": "どうぶつアドベンチャー オーストラリア編" + } + ], + "hash": "826f2cb1d85e56e5a5c3c1cea0bbb4a3", + "id": "2217601", + "profile": { + "bust": "75", + "height": "154", + "hip": "78", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "サファリアドベンチャー", + "alias_name_display": "サファリアドベンチャー", + "event": [ + { + "event_id": 414, + "event_name": "どうぶつアドベンチャー オーストラリア編" + } + ], + "hash": "76de9e9451a8de5a9ffb41c3e52c9ba6", + "id": "2317602", + "profile": { + "bust": "75", + "height": "154", + "hip": "78", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "サファリアドベンチャー・S", + "alias_name_display": "サファリアドベンチャー・S", + "event": [ + { + "event_id": 414, + "event_name": "どうぶつアドベンチャー オーストラリア編" + } + ], + "hash": "862d52f01e41b00da8b5e28509617ab4", + "id": "2217701", + "profile": { + "bust": "75", + "height": "154", + "hip": "78", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "サファリアドベンチャー・S", + "alias_name_display": "サファリアドベンチャー・S", + "event": [ + { + "event_id": 414, + "event_name": "どうぶつアドベンチャー オーストラリア編" + } + ], + "hash": "1bcb8bfa56a99fdaabd33c1657a492bd", + "id": "2317702", + "profile": { + "bust": "75", + "height": "154", + "hip": "78", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "ロコガール", + "alias_name_display": "ロコガール", + "event": [ + { + "event_id": 1707, + "event_name": "アイドルプロデュース アロハ!常夏の楽園" + } + ], + "hash": "4b2a471b95bdaa8f7618eb7c4fd9c9d3", + "id": "2328302", + "profile": { + "bust": "75", + "height": "154", + "hip": "78", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "オリ・ロコガール", + "alias_name_display": "オリ・ロコガール", + "event": [ + { + "event_id": 1707, + "event_name": "アイドルプロデュース アロハ!常夏の楽園" + } + ], + "hash": "0007e6f742de588da035f27181ba2b70", + "id": "2328402", + "profile": { + "bust": "75", + "height": "154", + "hip": "78", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "ミッシング・ピース", + "alias_name_display": "ミッシング・ピース", + "event": [ + { + "event_id": 805, + "event_name": "第5回アイドルLIVEロワイヤル" + } + ], + "hash": "42027e0a6ed923a0b6bb8eb4b8e5eff3", + "id": "2415201", + "profile": { + "bust": "75", + "height": "154", + "hip": "78", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "ミッシング・ピース", + "alias_name_display": "ミッシング・ピース", + "event": [ + { + "event_id": 805, + "event_name": "第5回アイドルLIVEロワイヤル" + } + ], + "hash": "2c156cdf5c956999318cf46708f1fad0", + "id": "2515202", + "profile": { + "bust": "75", + "height": "154", + "hip": "78", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "アブソリュート・ゼロ", + "alias_name_display": "アブソリュート・ゼロ", + "hash": "aff88d81c2ac012a0e9beca15e36200f", + "id": "2420001", + "profile": { + "bust": "75", + "height": "154", + "hip": "78", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "アブソリュート・ゼロ", + "alias_name_display": "アブソリュート・ゼロ", + "hash": "f029377df33b0c281856b7e879be1c96", + "id": "2520002", + "profile": { + "bust": "75", + "height": "154", + "hip": "78", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "桜風リフレイン", + "alias_name_display": "桜風リフレイン", + "event": [ + { + "event_id": 712, + "event_name": "花見DEドリームLIVEフェスティバル" + } + ], + "hash": "1114c352cd5b0ad6e635009fb34808cb", + "id": "2423101", + "profile": { + "bust": "75", + "height": "154", + "hip": "78", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "桜風リフレイン", + "alias_name_display": "桜風リフレイン", + "event": [ + { + "event_id": 712, + "event_name": "花見DEドリームLIVEフェスティバル" + } + ], + "hash": "14d9fc31f58df5da5bbddc246775e1bd", + "id": "2523102", + "profile": { + "bust": "75", + "height": "154", + "hip": "78", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "ロスト・バレンタイン", + "alias_name_display": "ロスト・バレンタイン", + "hash": "1a62a0aeafb9ded1cc66e67f3ce178db", + "id": "2430601", + "profile": { + "bust": "75", + "height": "154", + "hip": "78", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "ロスト・バレンタイン", + "alias_name_display": "ロスト・バレンタイン", + "hash": "ba8a9663527dafc77bf3e9ac4615c3cf", + "id": "2530602", + "profile": { + "bust": "75", + "height": "154", + "hip": "78", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "29578016c7ff21a9d85eef32ab93e0bb", + "id": "2431501", + "profile": { + "bust": "75", + "height": "154", + "hip": "78", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "b1bed12bc96443d7f3906f35594cbedd", + "id": "2531502", + "profile": { + "bust": "75", + "height": "154", + "hip": "78", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "楽園-エデン-の入口", + "alias_name_display": "楽園-エデン-の入口", + "event": [ + { + "event_id": 1707, + "event_name": "アイドルプロデュース アロハ!常夏の楽園" + } + ], + "hash": "5bbad382b5722462d5c5dd5fe6926a51", + "id": "2434601", + "profile": { + "bust": "75", + "height": "154", + "hip": "78", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "楽園-エデン-の入口", + "alias_name_display": "楽園-エデン-の入口", + "event": [ + { + "event_id": 1707, + "event_name": "アイドルプロデュース アロハ!常夏の楽園" + } + ], + "hash": "58efb2db39c23d19a4c7dca78d31edbc", + "id": "2534602", + "profile": { + "bust": "75", + "height": "154", + "hip": "78", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "碧落のリベレイター", + "alias_name_display": "碧落のリベレイター", + "hash": "f069c36e4de862aadd81791d55f1f7d8", + "id": "2438901", + "profile": { + "bust": "75", + "height": "154", + "hip": "78", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "碧落のリベレイター", + "alias_name_display": "碧落のリベレイター", + "hash": "3f93733e01fed8506d57f0c5894586f6", + "id": "2538902", + "profile": { + "bust": "75", + "height": "154", + "hip": "78", + "waist": "55", + "weight": "42" + } + } + ], + "idol_id": 130, + "idol_name": "二宮飛鳥", + "idol_name_display": "二宮飛鳥", + "units": [ + { + "id": "32", + "name": "ダークイルミネイト" + }, + { + "id": "57", + "name": "ミステリックガーデン" + }, + { + "id": "72", + "name": "Dimension-3" + }, + { + "id": "132", + "name": "thinE/Dasein" + }, + { + "id": "186", + "name": "LittlePOPS" + }, + { + "id": "200", + "name": "CAERULA" + } + ] + }, + { + "aliases": [ + { + "hash": "dc80aeb410e6c893f6af62cc1ffe68f3", + "id": "2217901", + "profile": { + "bust": "83", + "height": "164", + "hip": "82", + "waist": "55", + "weight": "45" + } + }, + { + "hash": "77c0f72b9219350c3fa2d00d5f4f3c4c", + "id": "2317902", + "profile": { + "bust": "83", + "height": "164", + "hip": "82", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "T.B.クリスマス", + "alias_name_display": "T.B.クリスマス", + "event": [ + { + "event_id": 1107, + "event_name": "プロダクション対抗トークバトルショー クリスマスSP" + } + ], + "hash": "2a56bce05d5590dd7d4630bc252a6076", + "id": "2219201", + "profile": { + "bust": "83", + "height": "164", + "hip": "82", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "T.B.クリスマス", + "alias_name_display": "T.B.クリスマス", + "event": [ + { + "event_id": 1107, + "event_name": "プロダクション対抗トークバトルショー クリスマスSP" + } + ], + "hash": "3f8e0ebb0b19b25180d60f57b4a97eec", + "id": "2319202", + "profile": { + "bust": "83", + "height": "164", + "hip": "82", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "春風スポーツ", + "alias_name_display": "春風スポーツ", + "hash": "39e3a2e8c3faf52a81febbe19413a13b", + "id": "2226001", + "profile": { + "bust": "83", + "height": "164", + "hip": "82", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "春風スポーツ", + "alias_name_display": "春風スポーツ", + "hash": "06e6725192ffdda60204d7066a031dfb", + "id": "2326002", + "profile": { + "bust": "83", + "height": "164", + "hip": "82", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "イノベーションマインド", + "alias_name_display": "イノベーションマインド", + "event": [ + { + "event_id": "034", + "event_name": "第34回プロダクションマッチフェスティバル" + } + ], + "hash": "967bde64d2f177461d1fba733587bf71", + "id": "2231201", + "profile": { + "bust": "83", + "height": "164", + "hip": "82", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "イノベーションマインド", + "alias_name_display": "イノベーションマインド", + "event": [ + { + "event_id": "034", + "event_name": "第34回プロダクションマッチフェスティバル" + } + ], + "hash": "c0dedc58fa9d81976f14db357913cf88", + "id": "2331202", + "profile": { + "bust": "83", + "height": "164", + "hip": "82", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "ランウェイのカリスマ", + "alias_name_display": "ランウェイのカリスマ", + "event": [ + { + "event_id": 1401, + "event_name": "ぷちデレラコレクション" + } + ], + "hash": "c09af8c69550dce67368fec799fc8cf9", + "id": "2422601", + "profile": { + "bust": "83", + "height": "164", + "hip": "82", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "ランウェイのカリスマ", + "alias_name_display": "ランウェイのカリスマ", + "event": [ + { + "event_id": 1401, + "event_name": "ぷちデレラコレクション" + } + ], + "hash": "be9198891b0b4e32e52a0fb5f0a26224", + "id": "2522602", + "profile": { + "bust": "83", + "height": "164", + "hip": "82", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "とれたてビーチガール", + "alias_name_display": "とれたてビーチガール", + "event": [ + { + "event_id": 1703, + "event_name": "アイドルプロデュース おいでよ!海の家" + } + ], + "hash": "75b94970d1a2a451d6e4b563371179f9", + "id": "2425801", + "profile": { + "bust": "83", + "height": "164", + "hip": "82", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "とれたてビーチガール", + "alias_name_display": "とれたてビーチガール", + "event": [ + { + "event_id": 1703, + "event_name": "アイドルプロデュース おいでよ!海の家" + } + ], + "hash": "2df32585bb5807a6778123c82c94b2a2", + "id": "2525802", + "profile": { + "bust": "83", + "height": "164", + "hip": "82", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "きらめきビーチガール", + "alias_name_display": "きらめきビーチガール", + "event": [ + { + "event_id": 1703, + "event_name": "アイドルプロデュース おいでよ!海の家" + } + ], + "hash": "ea898cb5f33356dbdea348b45156f50a", + "id": "2425901", + "profile": { + "bust": "83", + "height": "164", + "hip": "82", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "きらめきビーチガール", + "alias_name_display": "きらめきビーチガール", + "event": [ + { + "event_id": 1703, + "event_name": "アイドルプロデュース おいでよ!海の家" + } + ], + "hash": "6bf84171cae8136e5629734a962e1381", + "id": "2525902", + "profile": { + "bust": "83", + "height": "164", + "hip": "82", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "やさしいプライド", + "alias_name_display": "やさしいプライド", + "hash": "60f958aa7043601e4707a7e49e01fd84", + "id": "2429801", + "profile": { + "bust": "83", + "height": "164", + "hip": "82", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "やさしいプライド", + "alias_name_display": "やさしいプライド", + "hash": "9088aa0659ca2239587d146841870c97", + "id": "2529802", + "profile": { + "bust": "83", + "height": "164", + "hip": "82", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "ロングオータムナイト", + "alias_name_display": "ロングオータムナイト", + "event": [ + { + "event_id": "031", + "event_name": "第31回プロダクションマッチフェスティバル" + } + ], + "hash": "632b7acafc87d967835ee98f06e16b75", + "id": "2434801", + "profile": { + "bust": "83", + "height": "164", + "hip": "82", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "ロングオータムナイト", + "alias_name_display": "ロングオータムナイト", + "event": [ + { + "event_id": "031", + "event_name": "第31回プロダクションマッチフェスティバル" + } + ], + "hash": "bf5c1105baa37c752c0733f015513f75", + "id": "2534802", + "profile": { + "bust": "83", + "height": "164", + "hip": "82", + "waist": "55", + "weight": "45" + } + } + ], + "idol_id": 131, + "idol_name": "桐生つかさ", + "idol_name_display": "桐生つかさ" + }, + { + "aliases": [ + { + "alias_name": "白き少女", + "alias_name_display": "白き少女", + "hash": "45979186701f234bab59226a89c062aa", + "id": "2213401", + "profile": { + "bust": "82", + "height": "150", + "hip": "86", + "waist": "59", + "weight": "37" + } + }, + { + "alias_name": "白き少女", + "alias_name_display": "白き少女", + "hash": "aaaafaec6c1d24fd4fd70b687e924323", + "id": "2313402", + "profile": { + "bust": "82", + "height": "150", + "hip": "86", + "waist": "59", + "weight": "37" + } + }, + { + "alias_name": "オータムバケーション", + "alias_name_display": "オータムバケーション", + "hash": "f0515ad075fac44cb443e3212a4d26e1", + "id": "2224101", + "profile": { + "bust": "82", + "height": "150", + "hip": "86", + "waist": "59", + "weight": "37" + } + }, + { + "alias_name": "オータムバケーション", + "alias_name_display": "オータムバケーション", + "hash": "374ec3840963828acbcf06855e0fe040", + "id": "2324102", + "profile": { + "bust": "82", + "height": "150", + "hip": "86", + "waist": "59", + "weight": "37" + } + }, + { + "alias_name": "聖なる乙女", + "alias_name_display": "聖なる乙女", + "event": [ + { + "event_id": 101, + "event_name": "星降るクリスマス" + } + ], + "hash": "8cae26d0d27003747bc45772fe2394fe", + "id": "2400501", + "profile": { + "bust": "82", + "height": "150", + "hip": "86", + "waist": "59", + "weight": "37" + } + }, + { + "alias_name": "聖なる乙女", + "alias_name_display": "聖なる乙女", + "event": [ + { + "event_id": 101, + "event_name": "星降るクリスマス" + } + ], + "hash": "5b28de5e600e64bf58b9c0b0a1451c32", + "id": "2500502", + "profile": { + "bust": "82", + "height": "150", + "hip": "86", + "waist": "59", + "weight": "37" + } + }, + { + "alias_name": "清白の乙女", + "alias_name_display": "清白の乙女", + "event": [ + { + "event_id": 208, + "event_name": "アイドルサバイバル聖歌響くクリスマス" + } + ], + "hash": "5d55c5a3466041effb10209d4fe173e1", + "id": "2404501", + "profile": { + "bust": "82", + "height": "150", + "hip": "86", + "waist": "59", + "weight": "37" + } + }, + { + "alias_name": "清白の乙女", + "alias_name_display": "清白の乙女", + "event": [ + { + "event_id": 208, + "event_name": "アイドルサバイバル聖歌響くクリスマス" + } + ], + "hash": "fdcdab7adbaa2afbb76be984e650de0e", + "id": "2504502", + "profile": { + "bust": "82", + "height": "150", + "hip": "86", + "waist": "59", + "weight": "37" + } + }, + { + "alias_name": "白き細雪", + "alias_name_display": "白き細雪", + "event": [ + { + "event_id": 710, + "event_name": "サンタDEドリームLIVEフェスティバル" + } + ], + "hash": "5b09b56806ee072b6137f2e42fd8fc04", + "id": "2419801", + "profile": { + "bust": "82", + "height": "150", + "hip": "86", + "waist": "59", + "weight": "37" + } + }, + { + "alias_name": "白き細雪", + "alias_name_display": "白き細雪", + "event": [ + { + "event_id": 710, + "event_name": "サンタDEドリームLIVEフェスティバル" + } + ], + "hash": "7c18ddc33c71d6822f17d7bd39c58e36", + "id": "2519802", + "profile": { + "bust": "82", + "height": "150", + "hip": "86", + "waist": "59", + "weight": "37" + } + }, + { + "alias_name": "純真少女", + "alias_name_display": "純真少女", + "hash": "38cad77b3a0f525ddcc4365b08e13549", + "id": "2431801", + "profile": { + "bust": "82", + "height": "150", + "hip": "86", + "waist": "59", + "weight": "37" + } + }, + { + "alias_name": "純真少女", + "alias_name_display": "純真少女", + "hash": "4d605668f2238435747000680b3e9d59", + "id": "2531802", + "profile": { + "bust": "82", + "height": "150", + "hip": "86", + "waist": "59", + "weight": "37" + } + }, + { + "alias_name": "ひびきあう雪花", + "alias_name_display": "ひびきあう雪花", + "event": [ + { + "event_id": 1905, + "event_name": "ディアリースターナイト ~聖夜のキセキ~" + } + ], + "hash": "e60367a2486c6bb3fb16e369d6796307", + "id": "2436701", + "profile": { + "bust": "82", + "height": "150", + "hip": "86", + "waist": "59", + "weight": "37" + } + }, + { + "alias_name": "ひびきあう雪花", + "alias_name_display": "ひびきあう雪花", + "event": [ + { + "event_id": 1905, + "event_name": "ディアリースターナイト ~聖夜のキセキ~" + } + ], + "hash": "3e6deec005701d78f54d7108ff35df41", + "id": "2536702", + "profile": { + "bust": "82", + "height": "150", + "hip": "86", + "waist": "59", + "weight": "37" + } + } + ], + "idol_id": 132, + "idol_name": "望月聖", + "idol_name_display": "望月聖", + "units": [ + { + "id": "114", + "name": "ドリームホープスプリング" + } + ] + }, + { + "aliases": [ + { + "alias_name": "運気上昇", + "alias_name_display": "運気上昇", + "hash": "d7dec3c58513c892ae28ce692f1d9c06", + "id": "2227601", + "profile": { + "bust": "88", + "height": "160", + "hip": "88", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "運気上昇", + "alias_name_display": "運気上昇", + "hash": "89bfa866799f61e56ef2e9ad90df0abd", + "id": "2327602", + "profile": { + "bust": "88", + "height": "160", + "hip": "88", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "幸運の女神", + "alias_name_display": "幸運の女神", + "event": [ + { + "event_id": 102, + "event_name": "アイドルおもちつき大会" + } + ], + "hash": "bf1cee7c5f1620d1328b295abb2b3573", + "id": "2400701", + "profile": { + "bust": "88", + "height": "160", + "hip": "88", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "幸運の女神", + "alias_name_display": "幸運の女神", + "event": [ + { + "event_id": 102, + "event_name": "アイドルおもちつき大会" + } + ], + "hash": "6b856c4fa2d4b26fd50a8169f19ebb51", + "id": "2500702", + "profile": { + "bust": "88", + "height": "160", + "hip": "88", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "強運の才女", + "alias_name_display": "強運の才女", + "hash": "5b1bae277355a1691544753b57fac1d0", + "id": "2404901", + "profile": { + "bust": "88", + "height": "160", + "hip": "88", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "強運の才女", + "alias_name_display": "強運の才女", + "hash": "358368dbd0dc56c11cf93069d1d75911", + "id": "2504902", + "profile": { + "bust": "88", + "height": "160", + "hip": "88", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "謹賀新年", + "alias_name_display": "謹賀新年", + "hash": "17a125ea352bda654afef2d07eb1ebc7", + "id": "2411701", + "profile": { + "bust": "88", + "height": "160", + "hip": "88", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "謹賀新年", + "alias_name_display": "謹賀新年", + "hash": "88f8892b760b11a663e8403c3870763a", + "id": "2511702", + "profile": { + "bust": "88", + "height": "160", + "hip": "88", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "多芸の才女", + "alias_name_display": "多芸の才女", + "event": [ + { + "event_id": 1204, + "event_name": "新年かくし芸SP アイドルチャレンジ" + } + ], + "hash": "98f83a297189bc85c6b368df4c369af8", + "id": "2420201", + "profile": { + "bust": "88", + "height": "160", + "hip": "88", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "多芸の才女", + "alias_name_display": "多芸の才女", + "event": [ + { + "event_id": 1204, + "event_name": "新年かくし芸SP アイドルチャレンジ" + } + ], + "hash": "46fc14a63a4822541cca86f95ea2cf76", + "id": "2520202", + "profile": { + "bust": "88", + "height": "160", + "hip": "88", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "雪月花", + "alias_name_display": "雪月花", + "event": [ + { + "event_id": 1405, + "event_name": "第5回ぷちデレラコレクション" + } + ], + "hash": "132ee5e2eafd0c8749ff85a491297a42", + "id": "2430301", + "profile": { + "bust": "88", + "height": "160", + "hip": "88", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "雪月花", + "alias_name_display": "雪月花", + "event": [ + { + "event_id": 1405, + "event_name": "第5回ぷちデレラコレクション" + } + ], + "hash": "f6b971137b54ffdbd6f9b1671ccdb7bc", + "id": "2530302", + "profile": { + "bust": "88", + "height": "160", + "hip": "88", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "慶福の雪路", + "alias_name_display": "慶福の雪路", + "event": [ + { + "event_id": "033", + "event_name": "第33回プロダクションマッチフェスティバル" + } + ], + "hash": "a6becd927cf9c07c6f8a3a0675cb5eee", + "id": "2437701", + "profile": { + "bust": "88", + "height": "160", + "hip": "88", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "慶福の雪路", + "alias_name_display": "慶福の雪路", + "event": [ + { + "event_id": "033", + "event_name": "第33回プロダクションマッチフェスティバル" + } + ], + "hash": "715b793aa4d3b15051658c0100f70bde", + "id": "2537702", + "profile": { + "bust": "88", + "height": "160", + "hip": "88", + "waist": "57", + "weight": "43" + } + } + ], + "idol_id": 133, + "idol_name": "鷹富士茄子", + "idol_name_display": "鷹富士茄子", + "units": [ + { + "id": "58", + "name": "ミス・フォーチュン" + }, + { + "id": "87", + "name": "ウィンター・F・ドライバーズ" + } + ] + }, + { + "aliases": [ + { + "hash": "3a15a87af190354ae89fca368b35b69e", + "id": "3000101", + "profile": { + "bust": "84", + "height": "161", + "hip": "87", + "waist": "58", + "weight": "46" + } + }, + { + "hash": "ce6baca22d2efbb08703302ef088640d", + "id": "3100102", + "profile": { + "bust": "84", + "height": "161", + "hip": "87", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "2ndアニバーサリー", + "alias_name_display": "2ndアニバーサリー", + "event": [ + { + "event_id": 410, + "event_name": "アイドルプロデュース the 2nd Anniversary" + } + ], + "hash": "dfea059243990fd0d1902e55aefda8ea", + "id": "3214101", + "profile": { + "bust": "84", + "height": "161", + "hip": "87", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "2ndアニバーサリー", + "alias_name_display": "2ndアニバーサリー", + "event": [ + { + "event_id": 410, + "event_name": "アイドルプロデュース the 2nd Anniversary" + } + ], + "hash": "5bc8615e9e1c4d44265bd5e804fb30da", + "id": "3314102", + "profile": { + "bust": "84", + "height": "161", + "hip": "87", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "2ndアニバーサリー・スマイル", + "alias_name_display": "2ndアニバーサリー・スマイル", + "event": [ + { + "event_id": 410, + "event_name": "アイドルプロデュース the 2nd Anniversary" + } + ], + "hash": "47b205617b851c0339d5d48feef363a8", + "id": "3214201", + "profile": { + "bust": "84", + "height": "161", + "hip": "87", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "2ndアニバーサリー・スマイル", + "alias_name_display": "2ndアニバーサリー・スマイル", + "event": [ + { + "event_id": 410, + "event_name": "アイドルプロデュース the 2nd Anniversary" + } + ], + "hash": "59e76dff218b3cfd6f752c96020b77b9", + "id": "3314202", + "profile": { + "bust": "84", + "height": "161", + "hip": "87", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "2ndアニバーサリー・ネコミミ", + "alias_name_display": "2ndアニバーサリー・ネコミミ", + "event": [ + { + "event_id": 410, + "event_name": "アイドルプロデュース the 2nd Anniversary" + } + ], + "hash": "f30ed6c8625b249877623ce153a6ee42", + "id": "3214301", + "profile": { + "bust": "84", + "height": "161", + "hip": "87", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "2ndアニバーサリー・ネコミミ", + "alias_name_display": "2ndアニバーサリー・ネコミミ", + "event": [ + { + "event_id": 410, + "event_name": "アイドルプロデュース the 2nd Anniversary" + } + ], + "hash": "a5c1e539fc8decf8bc8344d4da523d75", + "id": "3314302", + "profile": { + "bust": "84", + "height": "161", + "hip": "87", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "ニュージェネレーション", + "alias_name_display": "ニュージェネレーション", + "hash": "91fcfc8ea99e57db7e57a9c254399d1e", + "id": "3404001", + "profile": { + "bust": "84", + "height": "161", + "hip": "87", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "ニュージェネレーション", + "alias_name_display": "ニュージェネレーション", + "hash": "ac84c61ce8af6cbd8ecdb3099e87b29f", + "id": "3504002", + "profile": { + "bust": "84", + "height": "161", + "hip": "87", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "b9e3d2ab769bbd4f02d9a86aa4963480", + "id": "3404901", + "profile": { + "bust": "84", + "height": "161", + "hip": "87", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "36c8ad2730641ca613e6bce46f958c86", + "id": "3504902", + "profile": { + "bust": "84", + "height": "161", + "hip": "87", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "パーフェクトスター", + "alias_name_display": "パーフェクトスター", + "hash": "3f0e274eb39fa06ec90066815ebcce3f", + "id": "3408201", + "profile": { + "bust": "84", + "height": "161", + "hip": "87", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "パーフェクトスター", + "alias_name_display": "パーフェクトスター", + "hash": "d70342d50a456e6ea28c793fd32fded8", + "id": "3508202", + "profile": { + "bust": "84", + "height": "161", + "hip": "87", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "ワンダフルマジック", + "alias_name_display": "ワンダフルマジック", + "hash": "b10e7156c968f1c10e931fb39437b555", + "id": "3413001", + "profile": { + "bust": "84", + "height": "161", + "hip": "87", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "ワンダフルマジック", + "alias_name_display": "ワンダフルマジック", + "hash": "728ea914619eaaaf809574f0134816ee", + "id": "3513002", + "profile": { + "bust": "84", + "height": "161", + "hip": "87", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "放課後パーティー", + "alias_name_display": "放課後パーティー", + "hash": "837e90baff2cb4e1b8d83b52bd204974", + "id": "3417901", + "profile": { + "bust": "84", + "height": "161", + "hip": "87", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "放課後パーティー", + "alias_name_display": "放課後パーティー", + "hash": "ef8c42dd6a0e040d19677ae449f1c61e", + "id": "3517902", + "profile": { + "bust": "84", + "height": "161", + "hip": "87", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "ドリームストーリー", + "alias_name_display": "ドリームストーリー", + "hash": "20d57207fb5680675a1ee2c01974781a", + "id": "3520702", + "profile": { + "bust": "84", + "height": "161", + "hip": "87", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "G4U!", + "alias_name_display": "G4U!", + "hash": "7686210ae4c41b15170fb51774c0a19b", + "id": "3526502", + "profile": { + "bust": "84", + "height": "161", + "hip": "87", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "秋夜の乙女", + "alias_name_display": "秋夜の乙女", + "hash": "6ff727545e998f9425485bf823dc8225", + "id": "3427501", + "profile": { + "bust": "84", + "height": "161", + "hip": "87", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "秋夜の乙女", + "alias_name_display": "秋夜の乙女", + "hash": "b1a3cc28c90185948cc52fd0031c95dc", + "id": "3527502", + "profile": { + "bust": "84", + "height": "161", + "hip": "87", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "アニバーサリースター", + "alias_name_display": "アニバーサリースター", + "hash": "87958f4f873116edfb0a6ea544368e75", + "id": "3428201", + "profile": { + "bust": "84", + "height": "161", + "hip": "87", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "アニバーサリースター", + "alias_name_display": "アニバーサリースター", + "hash": "e8e30ac23663842999f4057639a470fb", + "id": "3528202", + "profile": { + "bust": "84", + "height": "161", + "hip": "87", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "オンリーマイスター", + "alias_name_display": "オンリーマイスター", + "hash": "753de37bd2cf3a4f2c089eeaa9d1bd78", + "id": "3431801", + "profile": { + "bust": "84", + "height": "161", + "hip": "87", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "オンリーマイスター", + "alias_name_display": "オンリーマイスター", + "hash": "873323df410644a760d965d7ece54bd7", + "id": "3531802", + "profile": { + "bust": "84", + "height": "161", + "hip": "87", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "チャームフォーハピネス", + "alias_name_display": "チャームフォーハピネス", + "hash": "3ac0d8a5dbef390ae80d5055585ff040", + "id": "3437301", + "profile": { + "bust": "84", + "height": "161", + "hip": "87", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "チャームフォーハピネス", + "alias_name_display": "チャームフォーハピネス", + "hash": "fdda617ed4a59a8d1127c50336535a52", + "id": "3537302", + "profile": { + "bust": "84", + "height": "161", + "hip": "87", + "waist": "58", + "weight": "46" + } + } + ], + "idol_id": 134, + "idol_name": "本田未央", + "idol_name_display": "本田未央", + "units": [ + { + "id": "21", + "name": "ジェネレーションオブサマー" + }, + { + "id": "109", + "name": "new generations" + }, + { + "id": "146", + "name": "サンセットノスタルジー" + }, + { + "id": "153", + "name": "Positive Passion" + }, + { + "id": "204", + "name": "トロピカル☆スターズ" + }, + { + "id": "213", + "name": "CINDERELLA PROJECT" + } + ] + }, + { + "aliases": [ + { + "hash": "25ea7fdd66fc6bd8e7209a4c0d2ba00c", + "id": "3000201", + "profile": { + "bust": "74", + "height": "155", + "hip": "79", + "waist": "60", + "weight": "42" + } + }, + { + "hash": "57bfd18f73cf672d05643716f74bbc48", + "id": "3100202", + "profile": { + "bust": "74", + "height": "155", + "hip": "79", + "waist": "60", + "weight": "42" + } + }, + { + "alias_name": "バレンタイン", + "alias_name_display": "バレンタイン", + "event": [ + { + "event_id": 103, + "event_name": "バレンタインパーティー" + } + ], + "hash": "8406433757bac86ef8134cd59ed4cd3b", + "id": "3002101", + "profile": { + "bust": "74", + "height": "155", + "hip": "79", + "waist": "60", + "weight": "42" + } + }, + { + "alias_name": "バレンタイン", + "alias_name_display": "バレンタイン", + "event": [ + { + "event_id": 103, + "event_name": "バレンタインパーティー" + } + ], + "hash": "55f34023e9d773f97afde9bb99574843", + "id": "3102102", + "profile": { + "bust": "74", + "height": "155", + "hip": "79", + "waist": "60", + "weight": "42" + } + }, + { + "alias_name": "ふんわりガール", + "alias_name_display": "ふんわりガール", + "event": [ + { + "event_id": "002", + "event_name": "第2回プロダクションマッチフェスティバル" + } + ], + "hash": "f70f143d7bb856a67cb7bbd175dc7829", + "id": "3204601", + "profile": { + "bust": "74", + "height": "155", + "hip": "79", + "waist": "60", + "weight": "42" + } + }, + { + "alias_name": "ふんわりガール", + "alias_name_display": "ふんわりガール", + "event": [ + { + "event_id": "002", + "event_name": "第2回プロダクションマッチフェスティバル" + } + ], + "hash": "d6dbb1e8e2c5e452026e993c5a8fde56", + "id": "3304602", + "profile": { + "bust": "74", + "height": "155", + "hip": "79", + "waist": "60", + "weight": "42" + } + }, + { + "alias_name": "アニバーサリーイエロー", + "alias_name_display": "アニバーサリーイエロー", + "event": [ + { + "event_id": 403, + "event_name": "アイドルプロデュース the 1st Anniversary" + } + ], + "hash": "a14b13704b20edf9834c27832fd1670f", + "id": "3207601", + "profile": { + "bust": "74", + "height": "155", + "hip": "79", + "waist": "60", + "weight": "42" + } + }, + { + "alias_name": "アニバーサリーイエロー", + "alias_name_display": "アニバーサリーイエロー", + "event": [ + { + "event_id": 403, + "event_name": "アイドルプロデュース the 1st Anniversary" + } + ], + "hash": "d0289c681ff7668957a4d7a4198b61aa", + "id": "3307602", + "profile": { + "bust": "74", + "height": "155", + "hip": "79", + "waist": "60", + "weight": "42" + } + }, + { + "alias_name": "新春ガール", + "alias_name_display": "新春ガール", + "hash": "ca354dc7b9ffa3261b69dfbcb633c162", + "id": "3227201", + "profile": { + "bust": "74", + "height": "155", + "hip": "79", + "waist": "60", + "weight": "42" + } + }, + { + "alias_name": "新春ガール", + "alias_name_display": "新春ガール", + "hash": "d3fa350883bd59a8245cef6a04319057", + "id": "3327202", + "profile": { + "bust": "74", + "height": "155", + "hip": "79", + "waist": "60", + "weight": "42" + } + }, + { + "alias_name": "ゆるふわ乙女", + "alias_name_display": "ゆるふわ乙女", + "hash": "6efffe43696b87d64380769c40a3f12d", + "id": "3405201", + "profile": { + "bust": "74", + "height": "155", + "hip": "79", + "waist": "60", + "weight": "42" + } + }, + { + "alias_name": "ゆるふわ乙女", + "alias_name_display": "ゆるふわ乙女", + "hash": "0321c8e5bf54a3c4602ee87bac727750", + "id": "3505202", + "profile": { + "bust": "74", + "height": "155", + "hip": "79", + "waist": "60", + "weight": "42" + } + }, + { + "alias_name": "深緑の魔女", + "alias_name_display": "深緑の魔女", + "hash": "b9c843a22dc3445a53c384de9948be97", + "id": "3409001", + "profile": { + "bust": "74", + "height": "155", + "hip": "79", + "waist": "60", + "weight": "42" + } + }, + { + "alias_name": "深緑の魔女", + "alias_name_display": "深緑の魔女", + "hash": "dab9960d2db1424d77af7ba448c77039", + "id": "3509002", + "profile": { + "bust": "74", + "height": "155", + "hip": "79", + "waist": "60", + "weight": "42" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "696e63ecba110164d3740efd5dab872a", + "id": "3409701", + "profile": { + "bust": "74", + "height": "155", + "hip": "79", + "waist": "60", + "weight": "42" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "e3d9a2ea1b5c8caec4250f08f4f5cc95", + "id": "3509702", + "profile": { + "bust": "74", + "height": "155", + "hip": "79", + "waist": "60", + "weight": "42" + } + }, + { + "alias_name": "シンデレラドリーム", + "alias_name_display": "シンデレラドリーム", + "hash": "a6a1581237e6048bae08c63a85e50e87", + "id": "3411301", + "profile": { + "bust": "74", + "height": "155", + "hip": "79", + "waist": "60", + "weight": "42" + } + }, + { + "alias_name": "シンデレラドリーム", + "alias_name_display": "シンデレラドリーム", + "hash": "77828bac52f87e72db028e70a0338c11", + "id": "3511302", + "profile": { + "bust": "74", + "height": "155", + "hip": "79", + "waist": "60", + "weight": "42" + } + }, + { + "alias_name": "おさんぽ日和", + "alias_name_display": "おさんぽ日和", + "hash": "e82199f18a2886519aa98a1a5ef46043", + "id": "3413101", + "profile": { + "bust": "74", + "height": "155", + "hip": "79", + "waist": "60", + "weight": "42" + } + }, + { + "alias_name": "おさんぽ日和", + "alias_name_display": "おさんぽ日和", + "hash": "1a30af5fa8c952b1424a1dbb60269ff0", + "id": "3513102", + "profile": { + "bust": "74", + "height": "155", + "hip": "79", + "waist": "60", + "weight": "42" + } + }, + { + "alias_name": "まごころプレゼント", + "alias_name_display": "まごころプレゼント", + "hash": "39c5e502a5ec2c962e1610098b6317cc", + "id": "3419801", + "profile": { + "bust": "74", + "height": "155", + "hip": "79", + "waist": "60", + "weight": "42" + } + }, + { + "alias_name": "まごころプレゼント", + "alias_name_display": "まごころプレゼント", + "hash": "0e80e42aa03acf28172a86a6113212e5", + "id": "3519802", + "profile": { + "bust": "74", + "height": "155", + "hip": "79", + "waist": "60", + "weight": "42" + } + }, + { + "alias_name": "放課後サマー", + "alias_name_display": "放課後サマー", + "hash": "775f8939d540b7b1c169ba72be9ca25e", + "id": "3425901", + "profile": { + "bust": "74", + "height": "155", + "hip": "79", + "waist": "60", + "weight": "42" + } + }, + { + "alias_name": "放課後サマー", + "alias_name_display": "放課後サマー", + "hash": "c2f3cd2bd710cebb14c84f6a64d9949a", + "id": "3525902", + "profile": { + "bust": "74", + "height": "155", + "hip": "79", + "waist": "60", + "weight": "42" + } + }, + { + "alias_name": "駿風のバンデット", + "alias_name_display": "駿風のバンデット", + "hash": "96372916d89edc657240f71836f7dbb9", + "id": "3434701", + "profile": { + "bust": "74", + "height": "155", + "hip": "79", + "waist": "60", + "weight": "42" + } + }, + { + "alias_name": "駿風のバンデット", + "alias_name_display": "駿風のバンデット", + "hash": "cd741e8ee6028bb578bcbc5d55475390", + "id": "3534702", + "profile": { + "bust": "74", + "height": "155", + "hip": "79", + "waist": "60", + "weight": "42" + } + }, + { + "alias_name": "ちいさなともだち", + "alias_name_display": "ちいさなともだち", + "hash": "55ef16cfd44a6fdfb3709337f27e595f", + "id": "3439301", + "profile": { + "bust": "74", + "height": "155", + "hip": "79", + "waist": "60", + "weight": "42" + } + }, + { + "alias_name": "ちいさなともだち", + "alias_name_display": "ちいさなともだち", + "hash": "4d91dd57c123958c50421bb04076c240", + "id": "3539302", + "profile": { + "bust": "74", + "height": "155", + "hip": "79", + "waist": "60", + "weight": "42" + } + } + ], + "idol_id": 135, + "idol_name": "高森藍子", + "idol_name_display": "高森藍子", + "units": [ + { + "id": "5", + "name": "インディゴ・ベル" + }, + { + "id": "69", + "name": "Ai's" + }, + { + "id": "75", + "name": "Flowery" + }, + { + "id": "103", + "name": "ビビッドカラーエイジ" + }, + { + "id": "153", + "name": "Positive Passion" + }, + { + "id": "189", + "name": "アインフェリア" + }, + { + "id": "203", + "name": "ゼッケンズ" + } + ] + }, + { + "aliases": [ + { + "hash": "dd7b4d4e1769b447ee6fc98e317fb666", + "id": "3000301", + "profile": { + "bust": "80", + "height": "160", + "hip": "82", + "waist": "57", + "weight": "44" + } + }, + { + "hash": "d88a41865dc231e4770c0d915f2cd17a", + "id": "3100302", + "profile": { + "bust": "80", + "height": "160", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "メイドコレクション", + "alias_name_display": "メイドコレクション", + "hash": "2be497b9005c4c64d25ff518339cc6a6", + "id": "3206001", + "profile": { + "bust": "80", + "height": "160", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "メイドコレクション", + "alias_name_display": "メイドコレクション", + "hash": "847a362d9e6e286f93132c02c8f44c64", + "id": "3306002", + "profile": { + "bust": "80", + "height": "160", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "トラベル☆ガール", + "alias_name_display": "トラベル☆ガール", + "event": [ + { + "event_id": "009", + "event_name": "第9回プロダクションマッチフェスティバル" + } + ], + "hash": "b84dce89a3a135fcb166cb2639ff184e", + "id": "3209801", + "profile": { + "bust": "80", + "height": "160", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "トラベル☆ガール", + "alias_name_display": "トラベル☆ガール", + "event": [ + { + "event_id": "009", + "event_name": "第9回プロダクションマッチフェスティバル" + } + ], + "hash": "db0cdefb3e1d797d392546c121df8aa3", + "id": "3309802", + "profile": { + "bust": "80", + "height": "160", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "ワンダーバニー", + "alias_name_display": "ワンダーバニー", + "hash": "4e273575f8490fbb863c2dbe132ab673", + "id": "3215501", + "profile": { + "bust": "80", + "height": "160", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "ワンダーバニー", + "alias_name_display": "ワンダーバニー", + "hash": "b40d53ca759a5c49e316149907b16324", + "id": "3315502", + "profile": { + "bust": "80", + "height": "160", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "めろめろココメロン", + "alias_name_display": "めろめろココメロン", + "hash": "6aa24dae832c588c383c1699d97f19b6", + "id": "3219501", + "profile": { + "bust": "80", + "height": "160", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "めろめろココメロン", + "alias_name_display": "めろめろココメロン", + "hash": "0398b0c40f4c26e445c17dad6f18d6e2", + "id": "3319502", + "profile": { + "bust": "80", + "height": "160", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "さわやかスポーツ", + "alias_name_display": "さわやかスポーツ", + "hash": "fe782525f82eec7f9c6c2f39ad51207c", + "id": "3222801", + "profile": { + "bust": "80", + "height": "160", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "さわやかスポーツ", + "alias_name_display": "さわやかスポーツ", + "hash": "18478a5af695d30770b15fe0d47c6643", + "id": "3322802", + "profile": { + "bust": "80", + "height": "160", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "フレッシュガール", + "alias_name_display": "フレッシュガール", + "event": [ + { + "event_id": "023", + "event_name": "第23回プロダクションマッチフェスティバル" + } + ], + "hash": "ef03539e18ee2eaa6cf1fd87bf04a0f6", + "id": "3325102", + "profile": { + "bust": "80", + "height": "160", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "トラベルレター", + "alias_name_display": "トラベルレター", + "hash": "798448d3e64f5cc1fff7179d377471fd", + "id": "3227001", + "profile": { + "bust": "80", + "height": "160", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "トラベルレター", + "alias_name_display": "トラベルレター", + "hash": "e3926356fb48d480b2f2f25b4c74ce70", + "id": "3327002", + "profile": { + "bust": "80", + "height": "160", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "ハロウィンI.C", + "alias_name_display": "ハロウィンI.C", + "event": [ + { + "event_id": 1213, + "event_name": "目指せお菓子なハロウィン アイドルチャレンジ" + } + ], + "hash": "463d606a3dc453aa44e9db6bb70852a9", + "id": "3331202", + "profile": { + "bust": "80", + "height": "160", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "トラベルダンサー", + "alias_name_display": "トラベルダンサー", + "event": [ + { + "event_id": 507, + "event_name": "LIVEツアーカーニバルinドイツ" + } + ], + "hash": "7695d88a4ae65b8c0ed64f30f3601790", + "id": "3408601", + "profile": { + "bust": "80", + "height": "160", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "トラベルダンサー", + "alias_name_display": "トラベルダンサー", + "event": [ + { + "event_id": 507, + "event_name": "LIVEツアーカーニバルinドイツ" + } + ], + "hash": "99bb88ff7b093701659eabbb897808e4", + "id": "3508602", + "profile": { + "bust": "80", + "height": "160", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "秋色のお出かけ", + "alias_name_display": "秋色のお出かけ", + "event": [ + { + "event_id": 808, + "event_name": "第8回アイドルLIVEロワイヤル" + } + ], + "hash": "738ddb49940e93f41f7c650b90dcee4a", + "id": "3419101", + "profile": { + "bust": "80", + "height": "160", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "秋色のお出かけ", + "alias_name_display": "秋色のお出かけ", + "event": [ + { + "event_id": 808, + "event_name": "第8回アイドルLIVEロワイヤル" + } + ], + "hash": "81730ca2c7a398b66e1ff4693de7f751", + "id": "3519102", + "profile": { + "bust": "80", + "height": "160", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "カントリーロード", + "alias_name_display": "カントリーロード", + "hash": "c51198aab9b189eb750ee55fb5902d3b", + "id": "3432201", + "profile": { + "bust": "80", + "height": "160", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "カントリーロード", + "alias_name_display": "カントリーロード", + "hash": "42484da391a105442dc3523e303fff9d", + "id": "3532202", + "profile": { + "bust": "80", + "height": "160", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "おめかしウィッチ", + "alias_name_display": "おめかしウィッチ", + "event": [ + { + "event_id": 1213, + "event_name": "目指せお菓子なハロウィン アイドルチャレンジ" + } + ], + "hash": "c2f06ed8aee7c5930381f61ed9988a6b", + "id": "3435401", + "profile": { + "bust": "80", + "height": "160", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "おめかしウィッチ", + "alias_name_display": "おめかしウィッチ", + "event": [ + { + "event_id": 1213, + "event_name": "目指せお菓子なハロウィン アイドルチャレンジ" + } + ], + "hash": "bce23786ce8903092e17371ca5003061", + "id": "3535402", + "profile": { + "bust": "80", + "height": "160", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "にっこりウィッチ", + "alias_name_display": "にっこりウィッチ", + "event": [ + { + "event_id": 1213, + "event_name": "目指せお菓子なハロウィン アイドルチャレンジ" + } + ], + "hash": "b94786b47c7d37e1c02f31aa0cadbd4b", + "id": "3435501", + "profile": { + "bust": "80", + "height": "160", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "にっこりウィッチ", + "alias_name_display": "にっこりウィッチ", + "event": [ + { + "event_id": 1213, + "event_name": "目指せお菓子なハロウィン アイドルチャレンジ" + } + ], + "hash": "0184568340dc8bef2245fde0b9423019", + "id": "3535502", + "profile": { + "bust": "80", + "height": "160", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "トラベルチアー", + "alias_name_display": "トラベルチアー", + "event": [ + { + "event_id": 1512, + "event_name": "第12回チーム対抗トークバトルショー" + } + ], + "hash": "01169e17d4d7c870bd60b0454d091706", + "id": "3439601", + "profile": { + "bust": "80", + "height": "160", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "トラベルチアー", + "alias_name_display": "トラベルチアー", + "event": [ + { + "event_id": 1512, + "event_name": "第12回チーム対抗トークバトルショー" + } + ], + "hash": "9a07422c4498c97ae7b7a9d9117fe9fd", + "id": "3539602", + "profile": { + "bust": "80", + "height": "160", + "hip": "82", + "waist": "56", + "weight": "43" + } + } + ], + "idol_id": 136, + "idol_name": "並木芽衣子", + "idol_name_display": "並木芽衣子", + "units": [ + { + "id": "63", + "name": "ラブリーダイナーズ" + }, + { + "id": "167", + "name": "ロマンティックツアーズ" + }, + { + "id": "183", + "name": "メイドコレクション" + } + ] + }, + { + "aliases": [ + { + "hash": "6bd01496d9b00da9563c7e92b6a40257", + "id": "3000401", + "profile": { + "bust": "65", + "height": "132", + "hip": "70", + "waist": "51", + "weight": "32" + } + }, + { + "hash": "ce9be94eb3291a7f91c73a7824eb388c", + "id": "3100402", + "profile": { + "bust": "67", + "height": "133", + "hip": "72", + "waist": "52", + "weight": "33" + } + }, + { + "alias_name": "新春", + "alias_name_display": "新春", + "event": [ + { + "event_id": 102, + "event_name": "アイドルおもちつき大会" + } + ], + "hash": "5be9bf88188f36e181fbe96ea1341c41", + "id": "3202301", + "profile": { + "bust": "65", + "height": "132", + "hip": "70", + "waist": "51", + "weight": "32" + } + }, + { + "alias_name": "新春", + "alias_name_display": "新春", + "event": [ + { + "event_id": 102, + "event_name": "アイドルおもちつき大会" + } + ], + "hash": "446514874e3c985fa57d6447cdd803d1", + "id": "3302302", + "profile": { + "bust": "67", + "height": "133", + "hip": "69", + "waist": "52", + "weight": "33" + } + }, + { + "alias_name": "ゴスペルドレス", + "alias_name_display": "ゴスペルドレス", + "event": [ + { + "event_id": 208, + "event_name": "アイドルサバイバル聖歌響くクリスマス" + } + ], + "hash": "c5cfd776209d261d147d40a122fbce6d", + "id": "3207801", + "profile": { + "bust": "68", + "height": "135", + "hip": "70", + "waist": "53", + "weight": "34" + } + }, + { + "alias_name": "ゴスペルドレス", + "alias_name_display": "ゴスペルドレス", + "event": [ + { + "event_id": 208, + "event_name": "アイドルサバイバル聖歌響くクリスマス" + } + ], + "hash": "386eb2f9064e3658c5de712c36f4b685", + "id": "3307802", + "profile": { + "bust": "68", + "height": "135", + "hip": "70", + "waist": "53", + "weight": "34" + } + }, + { + "alias_name": "マーチングバンド", + "alias_name_display": "マーチングバンド", + "hash": "39647db5da91cae2322aafcfb93b2832", + "id": "3216601", + "profile": { + "bust": "68", + "height": "135", + "hip": "70", + "waist": "53", + "weight": "34" + } + }, + { + "alias_name": "マーチングバンド", + "alias_name_display": "マーチングバンド", + "hash": "c468fb201eda84cf94cd2ddca45ea09f", + "id": "3316602", + "profile": { + "bust": "68", + "height": "135", + "hip": "70", + "waist": "53", + "weight": "34" + } + }, + { + "alias_name": "エレガントI.C", + "alias_name_display": "エレガントI.C", + "event": [ + { + "event_id": 1205, + "event_name": "目指せ優雅なお嬢様 アイドルチャレンジ" + } + ], + "hash": "eb7c81a65fd7e6298c860ee07e8d3d97", + "id": "3321802", + "profile": { + "bust": "68", + "height": "135", + "hip": "70", + "waist": "53", + "weight": "34" + } + }, + { + "alias_name": "ウィンターバカンス", + "alias_name_display": "ウィンターバカンス", + "hash": "3c64d5dad75b33a0fb0cc5d12e4d8505", + "id": "3226801", + "profile": { + "bust": "68", + "height": "135", + "hip": "70", + "waist": "53", + "weight": "34" + } + }, + { + "alias_name": "ウィンターバカンス", + "alias_name_display": "ウィンターバカンス", + "hash": "0bf03f5221911fc5b1abf9eb9f296865", + "id": "3326802", + "profile": { + "bust": "68", + "height": "135", + "hip": "70", + "waist": "53", + "weight": "34" + } + }, + { + "alias_name": "フェリーチェ・チョコラータ", + "alias_name_display": "フェリーチェ・チョコラータ", + "hash": "68fa645bdf7cb21a74bcacc5987d31c7", + "id": "3232501", + "profile": { + "bust": "68", + "height": "135", + "hip": "70", + "waist": "53", + "weight": "34" + } + }, + { + "alias_name": "フェリーチェ・チョコラータ", + "alias_name_display": "フェリーチェ・チョコラータ", + "hash": "4260fa0cfa9d7f4580c26b03aeeba068", + "id": "3332502", + "profile": { + "bust": "68", + "height": "135", + "hip": "70", + "waist": "53", + "weight": "34" + } + }, + { + "alias_name": "サンフラワーイエロー", + "alias_name_display": "サンフラワーイエロー", + "event": [ + { + "event_id": "004", + "event_name": "第4回プロダクションマッチフェスティバル" + } + ], + "hash": "ae3ba85f888597f52c2744eeac3d9ace", + "id": "3402901", + "profile": { + "bust": "67", + "height": "134", + "hip": "69", + "waist": "52", + "weight": "33" + } + }, + { + "alias_name": "サンフラワーイエロー", + "alias_name_display": "サンフラワーイエロー", + "event": [ + { + "event_id": "004", + "event_name": "第4回プロダクションマッチフェスティバル" + } + ], + "hash": "2175109269fe3e11706218748d8a2d9a", + "id": "3502902", + "profile": { + "bust": "68", + "height": "135", + "hip": "70", + "waist": "53", + "weight": "34" + } + }, + { + "alias_name": "桜色少女", + "alias_name_display": "桜色少女", + "event": [ + { + "event_id": 406, + "event_name": "アイドルプロデュース 春の桜祭り編" + } + ], + "hash": "8c37d3680b260969d28f66934d928c0a", + "id": "3405701", + "profile": { + "bust": "68", + "height": "135", + "hip": "70", + "waist": "53", + "weight": "34" + } + }, + { + "alias_name": "桜色少女", + "alias_name_display": "桜色少女", + "event": [ + { + "event_id": 406, + "event_name": "アイドルプロデュース 春の桜祭り編" + } + ], + "hash": "51a61c8fc7c098dd3f0c4c9ed938e1a8", + "id": "3505702", + "profile": { + "bust": "68", + "height": "135", + "hip": "70", + "waist": "53", + "weight": "34" + } + }, + { + "alias_name": "桜色スマイル", + "alias_name_display": "桜色スマイル", + "event": [ + { + "event_id": 406, + "event_name": "アイドルプロデュース 春の桜祭り編" + } + ], + "hash": "e15258ec31bbcad88a7ea2a78b25be11", + "id": "3405801", + "profile": { + "bust": "68", + "height": "135", + "hip": "70", + "waist": "53", + "weight": "34" + } + }, + { + "alias_name": "桜色スマイル", + "alias_name_display": "桜色スマイル", + "event": [ + { + "event_id": 406, + "event_name": "アイドルプロデュース 春の桜祭り編" + } + ], + "hash": "effb92325b6736f30e59c8ca440592d8", + "id": "3505802", + "profile": { + "bust": "68", + "height": "135", + "hip": "70", + "waist": "53", + "weight": "34" + } + }, + { + "alias_name": "ちびっこポリス", + "alias_name_display": "ちびっこポリス", + "hash": "94f468204a314b13c221bc2ff351a15a", + "id": "3410001", + "profile": { + "bust": "68", + "height": "135", + "hip": "70", + "waist": "53", + "weight": "34" + } + }, + { + "alias_name": "ちびっこポリス", + "alias_name_display": "ちびっこポリス", + "hash": "b7bb5571402b624ffde22149b35d812c", + "id": "3510002", + "profile": { + "bust": "68", + "height": "135", + "hip": "70", + "waist": "53", + "weight": "34" + } + }, + { + "alias_name": "ハピネスチアー", + "alias_name_display": "ハピネスチアー", + "event": [ + { + "event_id": 1105, + "event_name": "第5回プロダクション対抗トークバトルショー" + } + ], + "hash": "ca52997de1baa2ce1074885bf86e0124", + "id": "3417301", + "profile": { + "bust": "68", + "height": "135", + "hip": "70", + "waist": "53", + "weight": "34" + } + }, + { + "alias_name": "ハピネスチアー", + "alias_name_display": "ハピネスチアー", + "event": [ + { + "event_id": 1105, + "event_name": "第5回プロダクション対抗トークバトルショー" + } + ], + "hash": "e31308f0895ca49eed17a2418b4533b1", + "id": "3517302", + "profile": { + "bust": "68", + "height": "135", + "hip": "70", + "waist": "53", + "weight": "34" + } + }, + { + "alias_name": "ハツラツお嬢様", + "alias_name_display": "ハツラツお嬢様", + "event": [ + { + "event_id": 1205, + "event_name": "目指せ優雅なお嬢様 アイドルチャレンジ" + } + ], + "hash": "7ac839de7d770abf38f7c1980d26faaa", + "id": "3421801", + "profile": { + "bust": "68", + "height": "135", + "hip": "70", + "waist": "53", + "weight": "34" + } + }, + { + "alias_name": "ハツラツお嬢様", + "alias_name_display": "ハツラツお嬢様", + "event": [ + { + "event_id": 1205, + "event_name": "目指せ優雅なお嬢様 アイドルチャレンジ" + } + ], + "hash": "344f0b05bd380ef7190f06c0bc636968", + "id": "3521802", + "profile": { + "bust": "68", + "height": "135", + "hip": "70", + "waist": "53", + "weight": "34" + } + }, + { + "alias_name": "ハツラツお嬢様・S", + "alias_name_display": "ハツラツお嬢様・S", + "event": [ + { + "event_id": 1205, + "event_name": "目指せ優雅なお嬢様 アイドルチャレンジ" + } + ], + "hash": "16879ab349989f30795c5a4aaf1f5b24", + "id": "3421901", + "profile": { + "bust": "68", + "height": "135", + "hip": "70", + "waist": "53", + "weight": "34" + } + }, + { + "alias_name": "ハツラツお嬢様・S", + "alias_name_display": "ハツラツお嬢様・S", + "event": [ + { + "event_id": 1205, + "event_name": "目指せ優雅なお嬢様 アイドルチャレンジ" + } + ], + "hash": "8eff69e4d99a16ba0ab8d8808b1dcfce", + "id": "3521902", + "profile": { + "bust": "68", + "height": "135", + "hip": "70", + "waist": "53", + "weight": "34" + } + }, + { + "alias_name": "元気のみなもと", + "alias_name_display": "元気のみなもと", + "event": [ + { + "event_id": 715, + "event_name": "第15回ドリームLIVEフェスティバル" + } + ], + "hash": "d98c949abd856585767f36e80ae36d61", + "id": "3426101", + "profile": { + "bust": "68", + "height": "135", + "hip": "70", + "waist": "53", + "weight": "34" + } + }, + { + "alias_name": "元気のみなもと", + "alias_name_display": "元気のみなもと", + "event": [ + { + "event_id": 715, + "event_name": "第15回ドリームLIVEフェスティバル" + } + ], + "hash": "db033d61f283a9b24cd8fb229961d6e4", + "id": "3526102", + "profile": { + "bust": "68", + "height": "135", + "hip": "70", + "waist": "53", + "weight": "34" + } + }, + { + "alias_name": "じょいふるステップ", + "alias_name_display": "じょいふるステップ", + "hash": "b30dceee4b25e7fac98eb13236b79333", + "id": "3433201", + "profile": { + "bust": "68", + "height": "135", + "hip": "70", + "waist": "53", + "weight": "34" + } + }, + { + "alias_name": "じょいふるステップ", + "alias_name_display": "じょいふるステップ", + "hash": "3d60bd5856309ade51e8d694c9ce0f57", + "id": "3533202", + "profile": { + "bust": "68", + "height": "135", + "hip": "70", + "waist": "53", + "weight": "34" + } + } + ], + "idol_id": 137, + "idol_name": "龍崎薫", + "idol_name_display": "龍崎薫", + "units": [ + { + "id": "92", + "name": "ゴスペルシスターズ" + }, + { + "id": "105", + "name": "リトルチェリーブロッサム" + }, + { + "id": "174", + "name": "カナリアサマー" + }, + { + "id": "214", + "name": "L.M.B.G" + } + ] + }, + { + "aliases": [ + { + "hash": "0534bded8c74fa792bde6f3c5692c187", + "id": "3000501", + "profile": { + "bust": "82", + "height": "159", + "hip": "83", + "waist": "57", + "weight": "41" + } + }, + { + "hash": "66db6412d0f716cebdb923136609e6ff", + "id": "3100502", + "profile": { + "bust": "83", + "height": "159", + "hip": "85", + "waist": "57", + "weight": "41" + } + }, + { + "alias_name": "制服コレクション", + "alias_name_display": "制服コレクション", + "hash": "d1ed6ed8f4ef807bff62625a579c2d27", + "id": "3204001", + "profile": { + "bust": "82", + "height": "159", + "hip": "83", + "waist": "57", + "weight": "41" + } + }, + { + "alias_name": "制服コレクション", + "alias_name_display": "制服コレクション", + "hash": "770f6f299f10bbe5d17ef25bd8db5ee9", + "id": "3304002", + "profile": { + "bust": "83", + "height": "159", + "hip": "85", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ロッキングスタイル", + "alias_name_display": "ロッキングスタイル", + "hash": "49f37294a7107e3ed3ff3ad620ab8f9e", + "id": "3205601", + "profile": { + "bust": "83", + "height": "159", + "hip": "85", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ロッキングスタイル", + "alias_name_display": "ロッキングスタイル", + "hash": "fd6f806676ee2bd496b0be0c5e660e28", + "id": "3305602", + "profile": { + "bust": "83", + "height": "159", + "hip": "85", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "新春コレクション", + "alias_name_display": "新春コレクション", + "hash": "9bdac3127034352eeb54915995ed2be4", + "id": "3208201", + "profile": { + "bust": "83", + "height": "159", + "hip": "85", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "新春コレクション", + "alias_name_display": "新春コレクション", + "hash": "2b66d0a66eaefce284d6ff1724116cda", + "id": "3308202", + "profile": { + "bust": "83", + "height": "159", + "hip": "85", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ロッキングセッション", + "alias_name_display": "ロッキングセッション", + "event": [ + { + "event_id": 601, + "event_name": "アイドルセッション" + } + ], + "hash": "dfb6cfa4b823cae2b1e3347f16dcbafc", + "id": "3209901", + "profile": { + "bust": "83", + "height": "159", + "hip": "85", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ロッキングセッション", + "alias_name_display": "ロッキングセッション", + "event": [ + { + "event_id": 601, + "event_name": "アイドルセッション" + } + ], + "hash": "b72b7f9db952c2c0581b218fa61a73bb", + "id": "3309902", + "profile": { + "bust": "83", + "height": "159", + "hip": "85", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ヴォヤージュ・シーフ", + "alias_name_display": "ヴォヤージュ・シーフ", + "event": [ + { + "event_id": 511, + "event_name": "幻想公演 黒薔薇姫のヴォヤージュ" + } + ], + "hash": "33a9936da2d8a89bf45c8c247667da3b", + "id": "3216501", + "profile": { + "bust": "83", + "height": "159", + "hip": "85", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ヴォヤージュ・シーフ", + "alias_name_display": "ヴォヤージュ・シーフ", + "event": [ + { + "event_id": 511, + "event_name": "幻想公演 黒薔薇姫のヴォヤージュ" + } + ], + "hash": "8c3374d0b42f60c4f071ebd612f6c93f", + "id": "3316502", + "profile": { + "bust": "83", + "height": "159", + "hip": "85", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ロックウィズユー", + "alias_name_display": "ロックウィズユー", + "hash": "90d71c799279b69652448cb13a8c46c4", + "id": "3220501", + "profile": { + "bust": "83", + "height": "159", + "hip": "85", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ロックウィズユー", + "alias_name_display": "ロックウィズユー", + "hash": "5036702242079676623aab404c834930", + "id": "3320502", + "profile": { + "bust": "83", + "height": "159", + "hip": "85", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "クリスマスナイト", + "alias_name_display": "クリスマスナイト", + "hash": "8a7f88c33ed6f745ff82a214a58fbf6c", + "id": "3226601", + "profile": { + "bust": "83", + "height": "159", + "hip": "85", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "クリスマスナイト", + "alias_name_display": "クリスマスナイト", + "hash": "eb50645fe29a490498a1cc937acd9bdf", + "id": "3326602", + "profile": { + "bust": "83", + "height": "159", + "hip": "85", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "夏風スポーツ", + "alias_name_display": "夏風スポーツ", + "hash": "c1f7f8f5ef1cba3392af0e747b26fc9d", + "id": "3230301", + "profile": { + "bust": "83", + "height": "159", + "hip": "85", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "夏風スポーツ", + "alias_name_display": "夏風スポーツ", + "hash": "299fef4852147871cdd00ca8c0124599", + "id": "3330302", + "profile": { + "bust": "83", + "height": "159", + "hip": "85", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "クリエイティブI.C", + "alias_name_display": "クリエイティブI.C", + "event": [ + { + "event_id": 1215, + "event_name": "ふたりでアイドルチャレンジ 目指せクールなミュージックビデオ" + } + ], + "hash": "39ec2283379f1fd2d494ba14b6addbc6", + "id": "3333402", + "profile": { + "bust": "83", + "height": "159", + "hip": "85", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ハートビートロッカー", + "alias_name_display": "ハートビートロッカー", + "event": [ + { + "event_id": 601, + "event_name": "アイドルセッション" + } + ], + "hash": "49bbaee0b5da4e747f6a30f047aa53a3", + "id": "3406101", + "profile": { + "bust": "83", + "height": "159", + "hip": "85", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ハートビートロッカー", + "alias_name_display": "ハートビートロッカー", + "event": [ + { + "event_id": 601, + "event_name": "アイドルセッション" + } + ], + "hash": "a7a8fdea40caf917c330796c9d55da16", + "id": "3506102", + "profile": { + "bust": "83", + "height": "159", + "hip": "85", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ロッキングラヴァー", + "alias_name_display": "ロッキングラヴァー", + "hash": "b732fa6c81f1f4a53dd0f3eaf9573b0e", + "id": "3408901", + "profile": { + "bust": "83", + "height": "159", + "hip": "85", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ロッキングラヴァー", + "alias_name_display": "ロッキングラヴァー", + "hash": "fd399f8c029ebfb373556f8a66d4d0a6", + "id": "3508902", + "profile": { + "bust": "83", + "height": "159", + "hip": "85", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ラギッドチアー", + "alias_name_display": "ラギッドチアー", + "event": [ + { + "event_id": 1104, + "event_name": "プロダクション対抗トークバトルショーinSUMMER" + } + ], + "hash": "f66b8072a4bde3415f62c74ec5991d05", + "id": "3416501", + "profile": { + "bust": "83", + "height": "159", + "hip": "85", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ラギッドチアー", + "alias_name_display": "ラギッドチアー", + "event": [ + { + "event_id": 1104, + "event_name": "プロダクション対抗トークバトルショーinSUMMER" + } + ], + "hash": "d53f71d5d96617cb898d079671603d0c", + "id": "3516502", + "profile": { + "bust": "83", + "height": "159", + "hip": "85", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "華夜紅炎", + "alias_name_display": "華夜紅炎", + "event": [ + { + "event_id": 1702, + "event_name": "アイドルプロデュース京町編(復刻)" + } + ], + "hash": "ad4aeac42d563895be2f638167d74b79", + "id": "3424901", + "profile": { + "bust": "83", + "height": "159", + "hip": "85", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "華夜紅炎", + "alias_name_display": "華夜紅炎", + "event": [ + { + "event_id": 1702, + "event_name": "アイドルプロデュース京町編(復刻)" + } + ], + "hash": "03b304d0171758d025ed2dd02bd01c28", + "id": "3524902", + "profile": { + "bust": "83", + "height": "159", + "hip": "85", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ロッキングメイド", + "alias_name_display": "ロッキングメイド", + "hash": "27d5c3b652aa05efe6e8c3400a3294ea", + "id": "3429201", + "profile": { + "bust": "83", + "height": "159", + "hip": "85", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ロッキングメイド", + "alias_name_display": "ロッキングメイド", + "hash": "e6d82a7805702869c9beb24e37d66411", + "id": "3529202", + "profile": { + "bust": "83", + "height": "159", + "hip": "85", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ベニトアイトロンギング", + "alias_name_display": "ベニトアイトロンギング", + "event": [ + { + "event_id": 1215, + "event_name": "ふたりでアイドルチャレンジ 目指せクールなミュージックビデオ" + } + ], + "hash": "cb5056ce89a2e9060f6d411eebdfbe30", + "id": "3439001", + "profile": { + "bust": "83", + "height": "159", + "hip": "85", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ベニトアイトロンギング", + "alias_name_display": "ベニトアイトロンギング", + "event": [ + { + "event_id": 1215, + "event_name": "ふたりでアイドルチャレンジ 目指せクールなミュージックビデオ" + } + ], + "hash": "468cdc31777a7a884927fb3ca0db52f5", + "id": "3539002", + "profile": { + "bust": "83", + "height": "159", + "hip": "85", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ベニトアイトロンギング・S", + "alias_name_display": "ベニトアイトロンギング・S", + "event": [ + { + "event_id": 1215, + "event_name": "ふたりでアイドルチャレンジ 目指せクールなミュージックビデオ" + } + ], + "hash": "59af084173d77dc7657f85e162dbc4b6", + "id": "3439101", + "profile": { + "bust": "83", + "height": "159", + "hip": "85", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ベニトアイトロンギング・S", + "alias_name_display": "ベニトアイトロンギング・S", + "event": [ + { + "event_id": 1215, + "event_name": "ふたりでアイドルチャレンジ 目指せクールなミュージックビデオ" + } + ], + "hash": "f3a9f6ffd1b7e0ed7bad2d27cb3604af", + "id": "3539102", + "profile": { + "bust": "83", + "height": "159", + "hip": "85", + "waist": "57", + "weight": "45" + } + } + ], + "idol_id": 138, + "idol_name": "木村夏樹", + "idol_name_display": "木村夏樹", + "units": [ + { + "id": "81", + "name": "Rock the Beat" + }, + { + "id": "117", + "name": "ハードメテオライツ" + }, + { + "id": "123", + "name": "マッシブライダース" + }, + { + "id": "168", + "name": "*(Asterisk) with なつなな" + }, + { + "id": "175", + "name": "ライトグリーンセーフ" + }, + { + "id": "176", + "name": "炎陣" + } + ] + }, + { + "aliases": [ + { + "hash": "7674301daa6c75a7321b726f9571ead2", + "id": "3000601", + "profile": { + "bust": "81", + "height": "161", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "hash": "f69052165dc006c8bc15558a299ef1b7", + "id": "3100602", + "profile": { + "bust": "81", + "height": "161", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "ジューンブライド", + "alias_name_display": "ジューンブライド", + "event": [ + { + "event_id": 105, + "event_name": "きらめくブライダルショー" + } + ], + "hash": "604b434174cd1f069de9b869d0448554", + "id": "3002701", + "profile": { + "bust": "81", + "height": "161", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "ジューンブライド", + "alias_name_display": "ジューンブライド", + "event": [ + { + "event_id": 105, + "event_name": "きらめくブライダルショー" + } + ], + "hash": "8711647291f4ed0a44bea640aa273a4e", + "id": "3102702", + "profile": { + "bust": "81", + "height": "161", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "プリムラブルーム", + "alias_name_display": "プリムラブルーム", + "event": [ + { + "event_id": 703, + "event_name": "第3回ドリームLIVEフェスティバル" + } + ], + "hash": "b5ec0f44a42c1c9f6ced51deeb325d43", + "id": "3213201", + "profile": { + "bust": "81", + "height": "161", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "プリムラブルーム", + "alias_name_display": "プリムラブルーム", + "event": [ + { + "event_id": 703, + "event_name": "第3回ドリームLIVEフェスティバル" + } + ], + "hash": "e64ebec9e56c38e90e5d327430fbeced", + "id": "3313202", + "profile": { + "bust": "81", + "height": "161", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "フレッシュJKT", + "alias_name_display": "フレッシュJKT", + "hash": "1f906f0ee9f495fda81757e9ebabbc6b", + "id": "3217001", + "profile": { + "bust": "81", + "height": "161", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "フレッシュJKT", + "alias_name_display": "フレッシュJKT", + "hash": "dc863484f599dc76a895efecf840298f", + "id": "3317002", + "profile": { + "bust": "81", + "height": "161", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "バレンタインデビル", + "alias_name_display": "バレンタインデビル", + "hash": "dc08ed4d9a27c637264bf09fbafb4325", + "id": "3221501", + "profile": { + "bust": "81", + "height": "161", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "バレンタインデビル", + "alias_name_display": "バレンタインデビル", + "hash": "1cf3856ba48a3db590710a6fe6906ccb", + "id": "3321502", + "profile": { + "bust": "81", + "height": "161", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "やわらかな音", + "alias_name_display": "やわらかな音", + "hash": "b766fb82f395cb35df7d159a0888dc78", + "id": "3226001", + "profile": { + "bust": "81", + "height": "161", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "やわらかな音", + "alias_name_display": "やわらかな音", + "hash": "56359b75053466aeeeb9e8f91719ef5a", + "id": "3326002", + "profile": { + "bust": "81", + "height": "161", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "美しき挑戦", + "alias_name_display": "美しき挑戦", + "event": [ + { + "event_id": 1905, + "event_name": "ディアリースターナイト ~聖夜のキセキ~" + } + ], + "hash": "c023aaab4cb1a06929ef073eef6321b9", + "id": "3331802", + "profile": { + "bust": "81", + "height": "161", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "南国の舞姫", + "alias_name_display": "南国の舞姫", + "hash": "fde6b9e07ded5dfe6b368d37d4e5df8b", + "id": "3406201", + "profile": { + "bust": "81", + "height": "161", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "南国の舞姫", + "alias_name_display": "南国の舞姫", + "hash": "61987ec6972c1ac539f65eb25e89e97a", + "id": "3506202", + "profile": { + "bust": "81", + "height": "161", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "アレグロ気分", + "alias_name_display": "アレグロ気分", + "event": [ + { + "event_id": 708, + "event_name": "第8回ドリームLIVEフェスティバル" + } + ], + "hash": "565af6911e5cf6ba5de1e56023e00349", + "id": "3416901", + "profile": { + "bust": "81", + "height": "161", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "アレグロ気分", + "alias_name_display": "アレグロ気分", + "event": [ + { + "event_id": 708, + "event_name": "第8回ドリームLIVEフェスティバル" + } + ], + "hash": "1a5d7692d328fa114b177ebe5c427d0b", + "id": "3516902", + "profile": { + "bust": "81", + "height": "161", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "フライハイ!", + "alias_name_display": "フライハイ!", + "event": [ + { + "event_id": 1803, + "event_name": "アイドルバラエティ 大空への挑戦 ~Fly me to the Sky~" + } + ], + "hash": "624fd0a55c5e957c9634dd6e2188f7ce", + "id": "3432501", + "profile": { + "bust": "81", + "height": "161", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "フライハイ!", + "alias_name_display": "フライハイ!", + "event": [ + { + "event_id": 1803, + "event_name": "アイドルバラエティ 大空への挑戦 ~Fly me to the Sky~" + } + ], + "hash": "3fc83fbe66b63aaff06e8c8d1bf27da5", + "id": "3532502", + "profile": { + "bust": "81", + "height": "161", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "心吹き抜ける風", + "alias_name_display": "心吹き抜ける風", + "hash": "478e26b19bf1a88474dc0ffb92717954", + "id": "3440501", + "profile": { + "bust": "81", + "height": "161", + "hip": "81", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "心吹き抜ける風", + "alias_name_display": "心吹き抜ける風", + "hash": "e23409154c61e745d3e92fe075d8d7e8", + "id": "3540502", + "profile": { + "bust": "81", + "height": "161", + "hip": "81", + "waist": "56", + "weight": "44" + } + } + ], + "idol_id": 139, + "idol_name": "松山久美子", + "idol_name_display": "松山久美子", + "units": [ + { + "id": "118", + "name": "ビューティーアリュール" + }, + { + "id": "146", + "name": "サンセットノスタルジー" + } + ] + }, + { + "aliases": [ + { + "hash": "a264ec914168a4e0fa2be2774b4213f5", + "id": "3000701", + "profile": { + "bust": "85", + "height": "157", + "hip": "82", + "waist": "57", + "weight": "46" + } + }, + { + "hash": "e24e9a4d94ecff4e3b24d87642d54ca4", + "id": "3100702", + "profile": { + "bust": "85", + "height": "157", + "hip": "82", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "テーマパーク", + "alias_name_display": "テーマパーク", + "event": [ + { + "event_id": 203, + "event_name": "アイドルサバイバルinテーマパーク" + } + ], + "hash": "bbb2c000d43ea2a15adbed784595add3", + "id": "3204401", + "profile": { + "bust": "85", + "height": "157", + "hip": "82", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "テーマパーク", + "alias_name_display": "テーマパーク", + "event": [ + { + "event_id": 203, + "event_name": "アイドルサバイバルinテーマパーク" + } + ], + "hash": "e02a44f2de1e821a4dfff0b3d3db681f", + "id": "3304402", + "profile": { + "bust": "85", + "height": "157", + "hip": "82", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "湯けむり月夜", + "alias_name_display": "湯けむり月夜", + "hash": "d96ef4cbddf04a780a4af8082a4081e2", + "id": "3213701", + "profile": { + "bust": "85", + "height": "157", + "hip": "82", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "湯けむり月夜", + "alias_name_display": "湯けむり月夜", + "hash": "d3b714b42d67360598b8c8c9a28d3ef1", + "id": "3313702", + "profile": { + "bust": "85", + "height": "157", + "hip": "82", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "アクティブチアー", + "alias_name_display": "アクティブチアー", + "event": [ + { + "event_id": "015", + "event_name": "第15回プロダクションマッチフェスティバル" + } + ], + "hash": "aa81549cf0a3cee335c64d20e9386635", + "id": "3215701", + "profile": { + "bust": "85", + "height": "157", + "hip": "82", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "アクティブチアー", + "alias_name_display": "アクティブチアー", + "event": [ + { + "event_id": "015", + "event_name": "第15回プロダクションマッチフェスティバル" + } + ], + "hash": "60d7e7fa4af2462132d22b339b0df55e", + "id": "3315702", + "profile": { + "bust": "85", + "height": "157", + "hip": "82", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ナイトパーティー", + "alias_name_display": "ナイトパーティー", + "hash": "40ac7b999dd928719947512fff5f57fd", + "id": "3221901", + "profile": { + "bust": "85", + "height": "157", + "hip": "82", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ナイトパーティー", + "alias_name_display": "ナイトパーティー", + "hash": "a5f88f3476beafef8c1fbd491bdf167b", + "id": "3321902", + "profile": { + "bust": "85", + "height": "157", + "hip": "82", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ウェルネスデイズ", + "alias_name_display": "ウェルネスデイズ", + "hash": "9086b74e92fcb074c154a8aa5ad516d2", + "id": "3229301", + "profile": { + "bust": "85", + "height": "157", + "hip": "82", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ウェルネスデイズ", + "alias_name_display": "ウェルネスデイズ", + "hash": "645befcc6e4768dd22934277bd7e98cf", + "id": "3329302", + "profile": { + "bust": "85", + "height": "157", + "hip": "82", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "フェリーチェ・チョコラータ", + "alias_name_display": "フェリーチェ・チョコラータ", + "hash": "8010afc200495c069ca1c340ec365798", + "id": "3232601", + "profile": { + "bust": "85", + "height": "157", + "hip": "82", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "フェリーチェ・チョコラータ", + "alias_name_display": "フェリーチェ・チョコラータ", + "hash": "ca815683f4f6629bb6bf302a75e56d55", + "id": "3332602", + "profile": { + "bust": "85", + "height": "157", + "hip": "82", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "アクティブビューティー", + "alias_name_display": "アクティブビューティー", + "hash": "6493f1eb3bfcb583cff1e74961039d42", + "id": "3406301", + "profile": { + "bust": "85", + "height": "157", + "hip": "82", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "アクティブビューティー", + "alias_name_display": "アクティブビューティー", + "hash": "f8ba08532e70a89d22a0b58a01cedd4a", + "id": "3506302", + "profile": { + "bust": "85", + "height": "157", + "hip": "82", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ロワイヤルサマー", + "alias_name_display": "ロワイヤルサマー", + "event": [ + { + "event_id": 806, + "event_name": "アイドルLIVEロワイヤルinSUMMER" + } + ], + "hash": "d86f212dc2bd0b2aff150597954ae65c", + "id": "3416801", + "profile": { + "bust": "85", + "height": "157", + "hip": "82", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ロワイヤルサマー", + "alias_name_display": "ロワイヤルサマー", + "event": [ + { + "event_id": 806, + "event_name": "アイドルLIVEロワイヤルinSUMMER" + } + ], + "hash": "6d7bec74730f62497406933a724deeb7", + "id": "3516802", + "profile": { + "bust": "85", + "height": "157", + "hip": "82", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "パンプアップ", + "alias_name_display": "パンプアップ", + "event": [ + { + "event_id": 1304, + "event_name": "第4回プロダクションマッチフェスティバルS" + } + ], + "hash": "87ddcb0644b65e0e0f77a0b8b40e2e9e", + "id": "3425201", + "profile": { + "bust": "85", + "height": "157", + "hip": "82", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "パンプアップ", + "alias_name_display": "パンプアップ", + "event": [ + { + "event_id": 1304, + "event_name": "第4回プロダクションマッチフェスティバルS" + } + ], + "hash": "6404ed97807a171fa347f103f3a1ed80", + "id": "3525202", + "profile": { + "bust": "85", + "height": "157", + "hip": "82", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "アクティブ・ロワイヤル", + "alias_name_display": "アクティブ・ロワイヤル", + "event": [ + { + "event_id": 816, + "event_name": "第16回アイドルLIVEロワイヤル" + } + ], + "hash": "63e3fed9d083a1311df1964f1095b84c", + "id": "3430401", + "profile": { + "bust": "85", + "height": "157", + "hip": "82", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "アクティブ・ロワイヤル", + "alias_name_display": "アクティブ・ロワイヤル", + "event": [ + { + "event_id": 816, + "event_name": "第16回アイドルLIVEロワイヤル" + } + ], + "hash": "1013f20a456ce20449239b3e587bb424", + "id": "3530402", + "profile": { + "bust": "85", + "height": "157", + "hip": "82", + "waist": "57", + "weight": "46" + } + } + ], + "idol_id": 140, + "idol_name": "斉藤洋子", + "idol_name_display": "斉藤洋子", + "units": [ + { + "id": "150", + "name": "ヒートアップ☆チアーズ" + }, + { + "id": "175", + "name": "ライトグリーンセーフ" + }, + { + "id": "207", + "name": "ムーランルージュ" + } + ] + }, + { + "aliases": [ + { + "hash": "52a617fd8f60c1aec0b3d22d3cb1c944", + "id": "3000801", + "profile": { + "bust": "87", + "height": "166", + "hip": "87", + "waist": "57", + "weight": "47" + } + }, + { + "hash": "a68bf3cebca5cf13cc7612b3a352049a", + "id": "3100802", + "profile": { + "bust": "87", + "height": "166", + "hip": "87", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "スポーツ祭", + "alias_name_display": "スポーツ祭", + "hash": "9a0f0835a438f5d4013a84b532afe2e2", + "id": "3204801", + "profile": { + "bust": "87", + "height": "166", + "hip": "87", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "スポーツ祭", + "alias_name_display": "スポーツ祭", + "hash": "2f9882ba5bf9bf2a98e4c9f6be3bb4d0", + "id": "3304802", + "profile": { + "bust": "87", + "height": "166", + "hip": "87", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "素顔のお姉さん", + "alias_name_display": "素顔のお姉さん", + "event": [ + { + "event_id": 704, + "event_name": "第4回ドリームLIVEフェスティバル" + } + ], + "hash": "0fa2b130740aac2e0c2a03514c384087", + "id": "3214001", + "profile": { + "bust": "87", + "height": "166", + "hip": "87", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "素顔のお姉さん", + "alias_name_display": "素顔のお姉さん", + "event": [ + { + "event_id": 704, + "event_name": "第4回ドリームLIVEフェスティバル" + } + ], + "hash": "6bc46ded8c72c0dcf0c755cf1030fd32", + "id": "3314002", + "profile": { + "bust": "87", + "height": "166", + "hip": "87", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "ハッピーウェディング", + "alias_name_display": "ハッピーウェディング", + "hash": "ca24c8bd42c3d13dbfa7557b1c1372eb", + "id": "3217201", + "profile": { + "bust": "87", + "height": "166", + "hip": "87", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "ハッピーウェディング", + "alias_name_display": "ハッピーウェディング", + "hash": "f0454c235c5f433fcda6b03cb620ceed", + "id": "3317202", + "profile": { + "bust": "87", + "height": "166", + "hip": "87", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "ウォーミーリップル", + "alias_name_display": "ウォーミーリップル", + "hash": "7a53b24d9a77a46b09d23ffea844c323", + "id": "3223501", + "profile": { + "bust": "87", + "height": "166", + "hip": "87", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "ウォーミーリップル", + "alias_name_display": "ウォーミーリップル", + "hash": "96d272441983405ba34c23b46e6c2227", + "id": "3323502", + "profile": { + "bust": "87", + "height": "166", + "hip": "87", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "ファンサーキット", + "alias_name_display": "ファンサーキット", + "hash": "15ee9f0c9ebcc5d43e060efb4cc379df", + "id": "3228801", + "profile": { + "bust": "87", + "height": "166", + "hip": "87", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "ファンサーキット", + "alias_name_display": "ファンサーキット", + "hash": "2c3ff03cbadf8efa3f71ad6b7612ca08", + "id": "3328802", + "profile": { + "bust": "87", + "height": "166", + "hip": "87", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "セクシーサーファー", + "alias_name_display": "セクシーサーファー", + "event": [ + { + "event_id": "010", + "event_name": "第10回プロダクションマッチフェスティバル" + } + ], + "hash": "742203c0a8436f9ff6bdee1a338d0347", + "id": "3407001", + "profile": { + "bust": "87", + "height": "166", + "hip": "87", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "セクシーサーファー", + "alias_name_display": "セクシーサーファー", + "event": [ + { + "event_id": "010", + "event_name": "第10回プロダクションマッチフェスティバル" + } + ], + "hash": "f1d924650d28a57e713a8bf1acacaa54", + "id": "3507002", + "profile": { + "bust": "87", + "height": "166", + "hip": "87", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "グルービー・ロワイヤル", + "alias_name_display": "グルービー・ロワイヤル", + "event": [ + { + "event_id": 808, + "event_name": "第8回アイドルLIVEロワイヤル" + } + ], + "hash": "c908f6fbdc042fbc50430d13a69a3057", + "id": "3419301", + "profile": { + "bust": "87", + "height": "166", + "hip": "87", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "グルービー・ロワイヤル", + "alias_name_display": "グルービー・ロワイヤル", + "event": [ + { + "event_id": 808, + "event_name": "第8回アイドルLIVEロワイヤル" + } + ], + "hash": "7ad648beefa0778eae89938851dc6e61", + "id": "3519302", + "profile": { + "bust": "87", + "height": "166", + "hip": "87", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "祝餐の淑女", + "alias_name_display": "祝餐の淑女", + "event": [ + { + "event_id": 718, + "event_name": "ドリームLIVEフェスティバル 新春SP" + } + ], + "hash": "3c1312246f7720032341d4e19c526125", + "id": "3428901", + "profile": { + "bust": "87", + "height": "166", + "hip": "87", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "祝餐の淑女", + "alias_name_display": "祝餐の淑女", + "event": [ + { + "event_id": 718, + "event_name": "ドリームLIVEフェスティバル 新春SP" + } + ], + "hash": "ae593e0a2d8887e74430c883147e51f5", + "id": "3528902", + "profile": { + "bust": "87", + "height": "166", + "hip": "87", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "フローズンダンサー", + "alias_name_display": "フローズンダンサー", + "event": [ + { + "event_id": 727, + "event_name": "第27回ドリームLIVEフェスティバル" + } + ], + "hash": "e27a43d681805008f55469904c953aca", + "id": "3437801", + "profile": { + "bust": "87", + "height": "166", + "hip": "87", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "フローズンダンサー", + "alias_name_display": "フローズンダンサー", + "event": [ + { + "event_id": 727, + "event_name": "第27回ドリームLIVEフェスティバル" + } + ], + "hash": "1714cda17ded0f8215ee4c0f217a2c91", + "id": "3537802", + "profile": { + "bust": "87", + "height": "166", + "hip": "87", + "waist": "57", + "weight": "47" + } + } + ], + "idol_id": 141, + "idol_name": "沢田麻理菜", + "idol_name_display": "沢田麻理菜", + "units": [ + { + "id": "7", + "name": "エターナルレディエイト" + }, + { + "id": "159", + "name": "パステル・カクテル" + }, + { + "id": "175", + "name": "ライトグリーンセーフ" + }, + { + "id": "181", + "name": "フレッシュアスリーテス" + } + ] + }, + { + "aliases": [ + { + "hash": "d7eb1b97b7cc5d256ceb95118ffae977", + "id": "3000901", + "profile": { + "bust": "81", + "height": "150", + "hip": "80", + "waist": "56", + "weight": "41" + } + }, + { + "hash": "cd29b7fda8167b0f4dbd63f347c1e961", + "id": "3100902", + "profile": { + "bust": "81", + "height": "150", + "hip": "80", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "制服コレクション", + "alias_name_display": "制服コレクション", + "hash": "8cf81b294f2bd48461e6630ce3ca6be1", + "id": "3204101", + "profile": { + "bust": "81", + "height": "150", + "hip": "80", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "制服コレクション", + "alias_name_display": "制服コレクション", + "hash": "ac83a1675befe192bae8063a8862af2c", + "id": "3304102", + "profile": { + "bust": "81", + "height": "150", + "hip": "80", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "ハワイアンスタイル", + "alias_name_display": "ハワイアンスタイル", + "event": [ + { + "event_id": 506, + "event_name": "アイドルLIVEツアーinハワイ" + } + ], + "hash": "85ef52af1f2d9996d4b0a3f46b3df7fe", + "id": "3211901", + "profile": { + "bust": "81", + "height": "150", + "hip": "80", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "ハワイアンスタイル", + "alias_name_display": "ハワイアンスタイル", + "event": [ + { + "event_id": 506, + "event_name": "アイドルLIVEツアーinハワイ" + } + ], + "hash": "14cc48fd8eb6548c8dcfb39dfc1d7bbc", + "id": "3311902", + "profile": { + "bust": "81", + "height": "150", + "hip": "80", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "トキメキバレンタイン", + "alias_name_display": "トキメキバレンタイン", + "hash": "532af3fcc507a3fb7951ad57b0761e90", + "id": "3215201", + "profile": { + "bust": "81", + "height": "150", + "hip": "80", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "トキメキバレンタイン", + "alias_name_display": "トキメキバレンタイン", + "hash": "104ec8d4883bf49b54e2c41340624341", + "id": "3315202", + "profile": { + "bust": "81", + "height": "150", + "hip": "80", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "フラワーガーデン", + "alias_name_display": "フラワーガーデン", + "event": [ + { + "event_id": 213, + "event_name": "アイドルサバイバルinフラワーガーデン" + } + ], + "hash": "2afe4a5af0037435ffd47489846a4701", + "id": "3216801", + "profile": { + "bust": "81", + "height": "150", + "hip": "80", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "フラワーガーデン", + "alias_name_display": "フラワーガーデン", + "event": [ + { + "event_id": 213, + "event_name": "アイドルサバイバルinフラワーガーデン" + } + ], + "hash": "b332fa15c09b8ef0f2946c26b9a128e4", + "id": "3316802", + "profile": { + "bust": "81", + "height": "150", + "hip": "80", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "T.B.チアーズ", + "alias_name_display": "T.B.チアーズ", + "event": [ + { + "event_id": 1109, + "event_name": "第9回プロダクション対抗トークバトルショー" + } + ], + "hash": "1c8a014993aeb9b2090aef102b3017da", + "id": "3222101", + "profile": { + "bust": "81", + "height": "150", + "hip": "80", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "T.B.チアーズ", + "alias_name_display": "T.B.チアーズ", + "event": [ + { + "event_id": 1109, + "event_name": "第9回プロダクション対抗トークバトルショー" + } + ], + "hash": "3c57816bba9f19f1f2071a0676b369ff", + "id": "3322102", + "profile": { + "bust": "81", + "height": "150", + "hip": "80", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "クリスマスナイト", + "alias_name_display": "クリスマスナイト", + "hash": "2986dbc55d810b89275600447c9369af", + "id": "3226701", + "profile": { + "bust": "81", + "height": "150", + "hip": "80", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "クリスマスナイト", + "alias_name_display": "クリスマスナイト", + "hash": "36563d1fcd7ab0070dbd2ca0a269e380", + "id": "3326702", + "profile": { + "bust": "81", + "height": "150", + "hip": "80", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "オータムタイム", + "alias_name_display": "オータムタイム", + "event": [ + { + "event_id": 724, + "event_name": "第24回ドリームLIVEフェスティバル" + } + ], + "hash": "45be8be35629c6e28aabb419da97dd2f", + "id": "3230901", + "profile": { + "bust": "81", + "height": "150", + "hip": "80", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "オータムタイム", + "alias_name_display": "オータムタイム", + "event": [ + { + "event_id": 724, + "event_name": "第24回ドリームLIVEフェスティバル" + } + ], + "hash": "57bb56d1f69582541a8010dd167d8889", + "id": "3330902", + "profile": { + "bust": "81", + "height": "150", + "hip": "80", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "ワイルドフレンズ", + "alias_name_display": "ワイルドフレンズ", + "hash": "f04dac9c82d71a897241138a4f42caec", + "id": "3233701", + "profile": { + "bust": "81", + "height": "150", + "hip": "80", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "ワイルドフレンズ", + "alias_name_display": "ワイルドフレンズ", + "hash": "4d8997fc3f94ac70311fa9f92408655a", + "id": "3333702", + "profile": { + "bust": "81", + "height": "150", + "hip": "80", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "悩めるお年頃", + "alias_name_display": "悩めるお年頃", + "event": [ + { + "event_id": 207, + "event_name": "アイドルサバイバル ハロウィン編" + } + ], + "hash": "f8c0017a5ca2ef4fc7cd0d07151994ac", + "id": "3403601", + "profile": { + "bust": "81", + "height": "150", + "hip": "80", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "悩めるお年頃", + "alias_name_display": "悩めるお年頃", + "event": [ + { + "event_id": 207, + "event_name": "アイドルサバイバル ハロウィン編" + } + ], + "hash": "d24774d9639553e63860f5b854d944a4", + "id": "3503602", + "profile": { + "bust": "81", + "height": "150", + "hip": "80", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "楽しい夏休み", + "alias_name_display": "楽しい夏休み", + "event": [ + { + "event_id": 413, + "event_name": "みんなのなつやすみ" + } + ], + "hash": "b72ccff36b410011b79a299f01d25674", + "id": "3415901", + "profile": { + "bust": "81", + "height": "150", + "hip": "80", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "楽しい夏休み", + "alias_name_display": "楽しい夏休み", + "event": [ + { + "event_id": 413, + "event_name": "みんなのなつやすみ" + } + ], + "hash": "3e8e8f242d248978458d505a2edad10a", + "id": "3515902", + "profile": { + "bust": "81", + "height": "150", + "hip": "80", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "賑やか夏休み", + "alias_name_display": "賑やか夏休み", + "event": [ + { + "event_id": 413, + "event_name": "みんなのなつやすみ" + } + ], + "hash": "4b273e3aaed3bafe748f94c4a850f230", + "id": "3416001", + "profile": { + "bust": "81", + "height": "150", + "hip": "80", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "賑やか夏休み", + "alias_name_display": "賑やか夏休み", + "event": [ + { + "event_id": 413, + "event_name": "みんなのなつやすみ" + } + ], + "hash": "5b073af22fb3cd6adcc1e9e319fa67f6", + "id": "3516002", + "profile": { + "bust": "81", + "height": "150", + "hip": "80", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "天魔降臨", + "alias_name_display": "天魔降臨", + "event": [ + { + "event_id": 515, + "event_name": "戦国公演 天魔の乱" + } + ], + "hash": "68b35585d39dafaba5d9cf38c0b9f083", + "id": "3418701", + "profile": { + "bust": "81", + "height": "150", + "hip": "80", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "天魔降臨", + "alias_name_display": "天魔降臨", + "event": [ + { + "event_id": 515, + "event_name": "戦国公演 天魔の乱" + } + ], + "hash": "d2170d41b184072934a9fff773547cd0", + "id": "3518702", + "profile": { + "bust": "81", + "height": "150", + "hip": "80", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "ふわふわファクトリー", + "alias_name_display": "ふわふわファクトリー", + "hash": "ea0d9e48afcf9f896c208b1540efd59f", + "id": "3431401", + "profile": { + "bust": "81", + "height": "150", + "hip": "80", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "ふわふわファクトリー", + "alias_name_display": "ふわふわファクトリー", + "hash": "c0bb1ce2f048f36f6397fc8dd094cc23", + "id": "3531402", + "profile": { + "bust": "81", + "height": "150", + "hip": "80", + "waist": "56", + "weight": "41" + } + } + ], + "idol_id": 142, + "idol_name": "矢口美羽", + "idol_name_display": "矢口美羽", + "units": [ + { + "id": "26", + "name": "スクールガールフレンズ" + }, + { + "id": "44", + "name": "ハワイアンツイン" + }, + { + "id": "146", + "name": "サンセットノスタルジー" + }, + { + "id": "151", + "name": "ブエナ・スエルテ" + } + ] + }, + { + "aliases": [ + { + "hash": "6ef2cd5ef498c7caaea87f7d89340110", + "id": "3001001", + "profile": { + "bust": "75", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "36" + } + }, + { + "hash": "e0b836342a1aee295a7ccbab0a16fd87", + "id": "3101002", + "profile": { + "bust": "75", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "36" + } + }, + { + "alias_name": "バレンタイン", + "alias_name_display": "バレンタイン", + "event": [ + { + "event_id": 103, + "event_name": "バレンタインパーティー" + } + ], + "hash": "10da168b4b369bc6ffa72e78e93071be", + "id": "3203201", + "profile": { + "bust": "75", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "36" + } + }, + { + "alias_name": "バレンタイン", + "alias_name_display": "バレンタイン", + "event": [ + { + "event_id": 103, + "event_name": "バレンタインパーティー" + } + ], + "hash": "9b08de504854ac1df4fd5dc76a9a5ac1", + "id": "3303202", + "profile": { + "bust": "75", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "36" + } + }, + { + "alias_name": "ポッピンポップ", + "alias_name_display": "ポッピンポップ", + "hash": "92a5705c0b6de55d2f168f9bd29a3edb", + "id": "3220801", + "profile": { + "bust": "75", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "36" + } + }, + { + "alias_name": "ポッピンポップ", + "alias_name_display": "ポッピンポップ", + "hash": "8a7f7bead0878b56904f736f4421253d", + "id": "3320802", + "profile": { + "bust": "75", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "36" + } + }, + { + "alias_name": "マーチングバンド", + "alias_name_display": "マーチングバンド", + "hash": "89e9e5b0a1b6e15b0fff88744901f461", + "id": "3231101", + "profile": { + "bust": "75", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "36" + } + }, + { + "alias_name": "マーチングバンド", + "alias_name_display": "マーチングバンド", + "hash": "0f1b57bb36e56e4ecfb13b3e1954b368", + "id": "3331102", + "profile": { + "bust": "75", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "36" + } + }, + { + "alias_name": "サーカスパフォーマー", + "alias_name_display": "サーカスパフォーマー", + "event": [ + { + "event_id": 1709, + "event_name": "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" + } + ], + "hash": "b579c840179644a36de6fa1c133671cf", + "id": "3333102", + "profile": { + "bust": "75", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "36" + } + }, + { + "alias_name": "スマイリーパフォーマー", + "alias_name_display": "スマイリーパフォーマー", + "event": [ + { + "event_id": 1709, + "event_name": "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" + } + ], + "hash": "8109a4ac1c65efa9906f314f523b9916", + "id": "3333202", + "profile": { + "bust": "75", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "36" + } + }, + { + "alias_name": "しっぽもふもふ", + "alias_name_display": "しっぽもふもふ", + "event": [ + { + "event_id": 204, + "event_name": "アイドルサバイバルin動物園" + } + ], + "hash": "c674c58bab136ff597a815671bb1892b", + "id": "3402001", + "profile": { + "bust": "75", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "36" + } + }, + { + "alias_name": "しっぽもふもふ", + "alias_name_display": "しっぽもふもふ", + "event": [ + { + "event_id": 204, + "event_name": "アイドルサバイバルin動物園" + } + ], + "hash": "cfb03542cf02bdeb2401a33d0d86daeb", + "id": "3502002", + "profile": { + "bust": "75", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "36" + } + }, + { + "alias_name": "ニュースマイル", + "alias_name_display": "ニュースマイル", + "event": [ + { + "event_id": 404, + "event_name": "新春アイドルプロデュース" + } + ], + "hash": "b6c652c77203c6836a0489af5a37662c", + "id": "3404301", + "profile": { + "bust": "75", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "36" + } + }, + { + "alias_name": "ニュースマイル", + "alias_name_display": "ニュースマイル", + "event": [ + { + "event_id": 404, + "event_name": "新春アイドルプロデュース" + } + ], + "hash": "d44aa4f47e363eea2e35a73f54fc6379", + "id": "3504302", + "profile": { + "bust": "75", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "36" + } + }, + { + "alias_name": "ちびっこアクマ", + "alias_name_display": "ちびっこアクマ", + "hash": "0793eaf891f21d96424137f2fb375650", + "id": "3406501", + "profile": { + "bust": "75", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "36" + } + }, + { + "alias_name": "ちびっこアクマ", + "alias_name_display": "ちびっこアクマ", + "hash": "ef781662f1714c3f272954635d794a5f", + "id": "3506502", + "profile": { + "bust": "75", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "36" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "b1189784b88e5fd4438eebc83b08daad", + "id": "3406801", + "profile": { + "bust": "75", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "36" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "b408f15906c6b54d17985d285f98dee7", + "id": "3506802", + "profile": { + "bust": "75", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "36" + } + }, + { + "alias_name": "シンデレラドリーム", + "alias_name_display": "シンデレラドリーム", + "hash": "52ac8b4cab7ec3e61bd7468381f76495", + "id": "3408701", + "profile": { + "bust": "75", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "36" + } + }, + { + "alias_name": "シンデレラドリーム", + "alias_name_display": "シンデレラドリーム", + "hash": "ec0b6fa7958a83eb2e758c36dd8fc26b", + "id": "3508702", + "profile": { + "bust": "75", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "36" + } + }, + { + "alias_name": "ニュースマイル・S", + "alias_name_display": "ニュースマイル・S", + "hash": "4292b737c6a1afdcb237a28c36cc2e9c", + "id": "3410301", + "profile": { + "bust": "75", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "36" + } + }, + { + "alias_name": "ニュースマイル・S", + "alias_name_display": "ニュースマイル・S", + "hash": "6ac6ac48ba9f668c30c8e267633b4860", + "id": "3510302", + "profile": { + "bust": "75", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "36" + } + }, + { + "alias_name": "キラキラ☆ジャンプ", + "alias_name_display": "キラキラ☆ジャンプ", + "hash": "f9823071fb73c76c8e0ad947e4374c76", + "id": "3414201", + "profile": { + "bust": "75", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "36" + } + }, + { + "alias_name": "キラキラ☆ジャンプ", + "alias_name_display": "キラキラ☆ジャンプ", + "hash": "35951a39f9d4e99402bbb2d9c5f5335d", + "id": "3514202", + "profile": { + "bust": "75", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "36" + } + }, + { + "alias_name": "ないしょのステップ", + "alias_name_display": "ないしょのステップ", + "hash": "4868d8e9411de3f444c270c04bcaec1a", + "id": "3423801", + "profile": { + "bust": "75", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "36" + } + }, + { + "alias_name": "ないしょのステップ", + "alias_name_display": "ないしょのステップ", + "hash": "2186837114eebf98ae667f26f0e5a79c", + "id": "3523802", + "profile": { + "bust": "75", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "36" + } + }, + { + "alias_name": "凸レーション", + "alias_name_display": "凸レーション", + "hash": "03160f702f45fbdd3c17d910d80306d6", + "id": "3525002", + "profile": { + "bust": "75", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "36" + } + }, + { + "alias_name": "ちびっこナース", + "alias_name_display": "ちびっこナース", + "hash": "98c52238c3f897072403599574115094", + "id": "3427901", + "profile": { + "bust": "75", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "36" + } + }, + { + "alias_name": "ちびっこナース", + "alias_name_display": "ちびっこナース", + "hash": "68acef995b160d04df9bb1173d1e25e7", + "id": "3527902", + "profile": { + "bust": "75", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "36" + } + }, + { + "alias_name": "お花のプリンセス", + "alias_name_display": "お花のプリンセス", + "event": [ + { + "event_id": "027", + "event_name": "第27回プロダクションマッチフェスティバル" + } + ], + "hash": "3e573ed0cc4873adfe4b882e4330bd7f", + "id": "3432101", + "profile": { + "bust": "75", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "36" + } + }, + { + "alias_name": "お花のプリンセス", + "alias_name_display": "お花のプリンセス", + "event": [ + { + "event_id": "027", + "event_name": "第27回プロダクションマッチフェスティバル" + } + ], + "hash": "daeb66a45687cdd22c51c70df1daa6c3", + "id": "3532102", + "profile": { + "bust": "75", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "36" + } + }, + { + "alias_name": "おてんばピエレッタ", + "alias_name_display": "おてんばピエレッタ", + "event": [ + { + "event_id": 1709, + "event_name": "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" + } + ], + "hash": "98925b626042078c4a1ecc8aad8cc7c0", + "id": "3438401", + "profile": { + "bust": "75", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "36" + } + }, + { + "alias_name": "おてんばピエレッタ", + "alias_name_display": "おてんばピエレッタ", + "event": [ + { + "event_id": 1709, + "event_name": "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" + } + ], + "hash": "f2713603ccfb1afc09437a853b864ccd", + "id": "3538402", + "profile": { + "bust": "75", + "height": "140", + "hip": "78", + "waist": "55", + "weight": "36" + } + } + ], + "idol_id": 143, + "idol_name": "赤城みりあ", + "idol_name_display": "赤城みりあ", + "units": [ + { + "id": "77", + "name": "Jumpin'Joker" + }, + { + "id": "149", + "name": "凸レーション" + }, + { + "id": "204", + "name": "トロピカル☆スターズ" + }, + { + "id": "213", + "name": "CINDERELLA PROJECT" + }, + { + "id": "214", + "name": "L.M.B.G" + } + ] + }, + { + "aliases": [ + { + "hash": "63fd3fcbc361ec10820d32bf513be16e", + "id": "3001101", + "profile": { + "bust": "84", + "height": "163", + "hip": "85", + "waist": "58", + "weight": "47" + } + }, + { + "hash": "3353660bfbeee7d2f221c98611512242", + "id": "3101102", + "profile": { + "bust": "84", + "height": "163", + "hip": "85", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "明朗☆快活", + "alias_name_display": "明朗☆快活", + "event": [ + { + "event_id": "008", + "event_name": "第8回プロダクションマッチフェスティバル" + } + ], + "hash": "8f2beaf70b437880a985f8b8f79114a0", + "id": "3208901", + "profile": { + "bust": "84", + "height": "163", + "hip": "85", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "明朗☆快活", + "alias_name_display": "明朗☆快活", + "event": [ + { + "event_id": "008", + "event_name": "第8回プロダクションマッチフェスティバル" + } + ], + "hash": "d3d9f4a27caef8301249c341b4e19998", + "id": "3308902", + "profile": { + "bust": "84", + "height": "163", + "hip": "85", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "スポーティスタイル", + "alias_name_display": "スポーティスタイル", + "event": [ + { + "event_id": 212, + "event_name": "アイドルサバイバル 秋の大運動会" + } + ], + "hash": "dfbdd61be4ccdc68e525717d0bac2587", + "id": "3213401", + "profile": { + "bust": "84", + "height": "163", + "hip": "85", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "スポーティスタイル", + "alias_name_display": "スポーティスタイル", + "event": [ + { + "event_id": 212, + "event_name": "アイドルサバイバル 秋の大運動会" + } + ], + "hash": "ceef2d2586809b80112bc40b23069aca", + "id": "3313402", + "profile": { + "bust": "84", + "height": "163", + "hip": "85", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "豪放の鬼人", + "alias_name_display": "豪放の鬼人", + "event": [ + { + "event_id": 515, + "event_name": "戦国公演 天魔の乱" + } + ], + "hash": "a598244c502625e88e206b64f2a6f248", + "id": "3220201", + "profile": { + "bust": "84", + "height": "163", + "hip": "85", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "豪放の鬼人", + "alias_name_display": "豪放の鬼人", + "event": [ + { + "event_id": 515, + "event_name": "戦国公演 天魔の乱" + } + ], + "hash": "8bbfb3b8fbec2518b6fb12050c9933f9", + "id": "3320202", + "profile": { + "bust": "84", + "height": "163", + "hip": "85", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "エナジーフィール", + "alias_name_display": "エナジーフィール", + "hash": "46dfaa3309c9fc33443b0cc627912f13", + "id": "3222401", + "profile": { + "bust": "84", + "height": "163", + "hip": "85", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "エナジーフィール", + "alias_name_display": "エナジーフィール", + "hash": "2b0e2716c03031eaaeb29a09d61e75aa", + "id": "3322402", + "profile": { + "bust": "84", + "height": "163", + "hip": "85", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "迎春神楽", + "alias_name_display": "迎春神楽", + "hash": "4e760adc4e6919f6f358270b34455820", + "id": "3232201", + "profile": { + "bust": "84", + "height": "163", + "hip": "85", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "迎春神楽", + "alias_name_display": "迎春神楽", + "hash": "001d10686845cdce26772524579a982d", + "id": "3332202", + "profile": { + "bust": "84", + "height": "163", + "hip": "85", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "センター・キャプテン", + "alias_name_display": "センター・キャプテン", + "hash": "868c92e18aa41e24a61546b2100548b5", + "id": "3413401", + "profile": { + "bust": "84", + "height": "163", + "hip": "85", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "センター・キャプテン", + "alias_name_display": "センター・キャプテン", + "hash": "701f66d34f5d7d58aa7d977ca3450565", + "id": "3513402", + "profile": { + "bust": "84", + "height": "163", + "hip": "85", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "シューティングチアー", + "alias_name_display": "シューティングチアー", + "event": [ + { + "event_id": 1503, + "event_name": "チーム対抗 夏だ!プールだ!トークバトルショー" + } + ], + "hash": "13c7561bc0a40734ac98f74b94414a5c", + "id": "3425601", + "profile": { + "bust": "84", + "height": "163", + "hip": "85", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "シューティングチアー", + "alias_name_display": "シューティングチアー", + "event": [ + { + "event_id": 1503, + "event_name": "チーム対抗 夏だ!プールだ!トークバトルショー" + } + ], + "hash": "82117663678e1ecd83cac4b74970f7e3", + "id": "3525602", + "profile": { + "bust": "84", + "height": "163", + "hip": "85", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ドリームアドベント", + "alias_name_display": "ドリームアドベント", + "event": [ + { + "event_id": 721, + "event_name": "第21回ドリームLIVEフェスティバル" + } + ], + "hash": "0b015e960d21bb82468304a236db2719", + "id": "3432301", + "profile": { + "bust": "84", + "height": "163", + "hip": "85", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ドリームアドベント", + "alias_name_display": "ドリームアドベント", + "event": [ + { + "event_id": 721, + "event_name": "第21回ドリームLIVEフェスティバル" + } + ], + "hash": "b3c0ab815b7dae87ea9a636433655d89", + "id": "3532302", + "profile": { + "bust": "84", + "height": "163", + "hip": "85", + "waist": "56", + "weight": "45" + } + } + ], + "idol_id": 144, + "idol_name": "愛野渚", + "idol_name_display": "愛野渚", + "units": [ + { + "id": "122", + "name": "ホットアートジャンピン" + }, + { + "id": "174", + "name": "カナリアサマー" + } + ] + }, + { + "aliases": [ + { + "hash": "b209c422b7346f1d4d69feda95318a5f", + "id": "3001201", + "profile": { + "bust": "85", + "height": "165", + "hip": "83", + "waist": "57", + "weight": "46" + } + }, + { + "hash": "9e3bbf542345ebed15fb2032e1c837d7", + "id": "3101202", + "profile": { + "bust": "85", + "height": "165", + "hip": "83", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "レッスン&チャレンジ", + "alias_name_display": "レッスン&チャレンジ", + "hash": "66a6a21d46da643503586a7a22df87dd", + "id": "3207501", + "profile": { + "bust": "85", + "height": "165", + "hip": "83", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "レッスン&チャレンジ", + "alias_name_display": "レッスン&チャレンジ", + "hash": "de348637cc18a3f5e4c81fa791580495", + "id": "3307502", + "profile": { + "bust": "85", + "height": "165", + "hip": "83", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "カジュアルスタイル", + "alias_name_display": "カジュアルスタイル", + "hash": "2432eb32593381cfec0f4f599fec4f36", + "id": "3213801", + "profile": { + "bust": "85", + "height": "165", + "hip": "83", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "カジュアルスタイル", + "alias_name_display": "カジュアルスタイル", + "hash": "c002a51fc066d05b168e709c067abd3b", + "id": "3313802", + "profile": { + "bust": "85", + "height": "165", + "hip": "83", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "カジュアルチアー", + "alias_name_display": "カジュアルチアー", + "event": [ + { + "event_id": "016", + "event_name": "第16回プロダクションマッチフェスティバル" + } + ], + "hash": "2b41c4a4cb28d37563feb07668337853", + "id": "3216701", + "profile": { + "bust": "85", + "height": "165", + "hip": "83", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "カジュアルチアー", + "alias_name_display": "カジュアルチアー", + "event": [ + { + "event_id": "016", + "event_name": "第16回プロダクションマッチフェスティバル" + } + ], + "hash": "ce408b02973567997eb52f3e61c8bfec", + "id": "3316702", + "profile": { + "bust": "85", + "height": "165", + "hip": "83", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ガーリースタイル", + "alias_name_display": "ガーリースタイル", + "hash": "0b1e16ffc8a773f87a5ad8cc7f8bf0f8", + "id": "3222001", + "profile": { + "bust": "85", + "height": "165", + "hip": "83", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ガーリースタイル", + "alias_name_display": "ガーリースタイル", + "hash": "a5f4297b7066dfc5f18b8542bc15c08a", + "id": "3322002", + "profile": { + "bust": "85", + "height": "165", + "hip": "83", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "シェイプアップ", + "alias_name_display": "シェイプアップ", + "hash": "6b37e98cb7731439ed6f3cae9fee2306", + "id": "3224801", + "profile": { + "bust": "85", + "height": "165", + "hip": "83", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "シェイプアップ", + "alias_name_display": "シェイプアップ", + "hash": "b3d0922a9fd538b1d6503904d0defc49", + "id": "3324802", + "profile": { + "bust": "85", + "height": "165", + "hip": "83", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "節分豆撒", + "alias_name_display": "節分豆撒", + "event": [ + { + "event_id": 719, + "event_name": "ドリームLIVEフェスティバル 節分SP" + } + ], + "hash": "ff9f17efbe7d2c3470f6a0c7c8e7f54b", + "id": "3227401", + "profile": { + "bust": "85", + "height": "165", + "hip": "83", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "節分豆撒", + "alias_name_display": "節分豆撒", + "event": [ + { + "event_id": 719, + "event_name": "ドリームLIVEフェスティバル 節分SP" + } + ], + "hash": "3ccaaf0d3541e34f974b94e453c6a19f", + "id": "3327402", + "profile": { + "bust": "85", + "height": "165", + "hip": "83", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "サーカスパフォーマー", + "alias_name_display": "サーカスパフォーマー", + "event": [ + { + "event_id": 1709, + "event_name": "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" + } + ], + "hash": "77dbd0fac660c71139ab3a8a1e93cfae", + "id": "3232801", + "profile": { + "bust": "85", + "height": "165", + "hip": "83", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "サーカスパフォーマー", + "alias_name_display": "サーカスパフォーマー", + "event": [ + { + "event_id": 1709, + "event_name": "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" + } + ], + "hash": "6327296e1442dcf684f2454f116b4d0f", + "id": "3332802", + "profile": { + "bust": "85", + "height": "165", + "hip": "83", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "スマイリーパフォーマー", + "alias_name_display": "スマイリーパフォーマー", + "event": [ + { + "event_id": 1709, + "event_name": "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" + } + ], + "hash": "47e364881876ef5d26ff179d2e0a1ae2", + "id": "3232901", + "profile": { + "bust": "85", + "height": "165", + "hip": "83", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "スマイリーパフォーマー", + "alias_name_display": "スマイリーパフォーマー", + "event": [ + { + "event_id": 1709, + "event_name": "アイドルプロデュース きらめきサーカス ~Cirque du Clair~" + } + ], + "hash": "ff4d10646fd683720b03ba75ee2ac087", + "id": "3332902", + "profile": { + "bust": "85", + "height": "165", + "hip": "83", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ハッピープレジャー", + "alias_name_display": "ハッピープレジャー", + "event": [ + { + "event_id": 210, + "event_name": "アイドルサバイバルinテーマパーク2013" + } + ], + "hash": "7f9a18fa7616eb1439f038c58b02f983", + "id": "3406601", + "profile": { + "bust": "85", + "height": "165", + "hip": "83", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ハッピープレジャー", + "alias_name_display": "ハッピープレジャー", + "event": [ + { + "event_id": 210, + "event_name": "アイドルサバイバルinテーマパーク2013" + } + ], + "hash": "a4f446a8b78c3ea7fdbafe5866892169", + "id": "3506602", + "profile": { + "bust": "85", + "height": "165", + "hip": "83", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "拳舞酔客", + "alias_name_display": "拳舞酔客", + "event": [ + { + "event_id": 514, + "event_name": "功夫公演 香港大決戦" + } + ], + "hash": "6af497e47078dc8ea2c6691297cc7300", + "id": "3417401", + "profile": { + "bust": "85", + "height": "165", + "hip": "83", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "拳舞酔客", + "alias_name_display": "拳舞酔客", + "event": [ + { + "event_id": 514, + "event_name": "功夫公演 香港大決戦" + } + ], + "hash": "5ed37ce77056ed6867c6d70631496a34", + "id": "3517402", + "profile": { + "bust": "85", + "height": "165", + "hip": "83", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ふるき待ち人", + "alias_name_display": "ふるき待ち人", + "event": [ + { + "event_id": 1903, + "event_name": "怪奇公演 心霊探偵の事件簿" + } + ], + "hash": "ce4ea40b0df3c2d7af34153ff9d00a69", + "id": "3434401", + "profile": { + "bust": "85", + "height": "165", + "hip": "83", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ふるき待ち人", + "alias_name_display": "ふるき待ち人", + "event": [ + { + "event_id": 1903, + "event_name": "怪奇公演 心霊探偵の事件簿" + } + ], + "hash": "83aa3c1928c1a0b2055c71ccd32ef090", + "id": "3534402", + "profile": { + "bust": "85", + "height": "165", + "hip": "83", + "waist": "57", + "weight": "46" + } + } + ], + "idol_id": 145, + "idol_name": "真鍋いつき", + "idol_name_display": "真鍋いつき", + "units": [ + { + "id": "150", + "name": "ヒートアップ☆チアーズ" + }, + { + "id": "175", + "name": "ライトグリーンセーフ" + } + ] + }, + { + "aliases": [ + { + "hash": "1515860fd22175a20c99d8007cf8faae", + "id": "3001301", + "profile": { + "bust": "84", + "height": "155", + "hip": "83", + "waist": "56", + "weight": "42" + } + }, + { + "hash": "120b0acaa2c1419c3de79c1e6ef6890a", + "id": "3101302", + "profile": { + "bust": "84", + "height": "155", + "hip": "83", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "お花見", + "alias_name_display": "お花見", + "event": [ + { + "event_id": 104, + "event_name": "桜舞う花見祭り" + } + ], + "hash": "212bb3e0d7f2ba5bcdeced90bf48561b", + "id": "3002301", + "profile": { + "bust": "84", + "height": "155", + "hip": "83", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "お花見", + "alias_name_display": "お花見", + "event": [ + { + "event_id": 104, + "event_name": "桜舞う花見祭り" + } + ], + "hash": "c8e7deaf2263a700b6f7d41902770f41", + "id": "3102302", + "profile": { + "bust": "84", + "height": "155", + "hip": "83", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "サマーガールオレンジ", + "alias_name_display": "サマーガールオレンジ", + "event": [ + { + "event_id": 106, + "event_name": "アイドル水泳大会 水着のシンデレラ" + } + ], + "hash": "9a21c3eaede2b44ea3fbeb6c46f631f5", + "id": "3205401", + "profile": { + "bust": "84", + "height": "155", + "hip": "83", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "サマーガールグリーン", + "alias_name_display": "サマーガールグリーン", + "event": [ + { + "event_id": 106, + "event_name": "アイドル水泳大会 水着のシンデレラ" + } + ], + "hash": "01501d1215a4b5d6a9260a2a13acd4cf", + "id": "3205402", + "profile": { + "bust": "84", + "height": "155", + "hip": "83", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "サマーガールブルー", + "alias_name_display": "サマーガールブルー", + "event": [ + { + "event_id": 106, + "event_name": "アイドル水泳大会 水着のシンデレラ" + } + ], + "hash": "bdfb3cab23611b7efcf2a0d26d6241c0", + "id": "3205403", + "profile": { + "bust": "84", + "height": "155", + "hip": "83", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "サマーガールイエロー", + "alias_name_display": "サマーガールイエロー", + "event": [ + { + "event_id": 106, + "event_name": "アイドル水泳大会 水着のシンデレラ" + } + ], + "hash": "f4f935084bfe52e387f6bd30ce760ad0", + "id": "3205404", + "profile": { + "bust": "84", + "height": "155", + "hip": "83", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "サマーショッピングイエロー", + "alias_name_display": "サマーショッピングイエロー", + "event": [ + { + "event_id": 106, + "event_name": "アイドル水泳大会 水着のシンデレラ" + } + ], + "hash": "653b7a8fbbfbad90d029a8ab600f056b", + "id": "3305405", + "profile": { + "bust": "84", + "height": "155", + "hip": "83", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "サマーショッピンググリーン", + "alias_name_display": "サマーショッピンググリーン", + "event": [ + { + "event_id": 106, + "event_name": "アイドル水泳大会 水着のシンデレラ" + } + ], + "hash": "69c82c51bd137b4225908435cb8455e4", + "id": "3305406", + "profile": { + "bust": "84", + "height": "155", + "hip": "83", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "サマーショッピングピンク", + "alias_name_display": "サマーショッピングピンク", + "event": [ + { + "event_id": 106, + "event_name": "アイドル水泳大会 水着のシンデレラ" + } + ], + "hash": "9929a169843d9f7e7312eca020caf3cc", + "id": "3305407", + "profile": { + "bust": "84", + "height": "155", + "hip": "83", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "サマーショッピングブラウン", + "alias_name_display": "サマーショッピングブラウン", + "event": [ + { + "event_id": 106, + "event_name": "アイドル水泳大会 水着のシンデレラ" + } + ], + "hash": "df467ee38a2c1a4b771029f24a419529", + "id": "3305408", + "profile": { + "bust": "84", + "height": "155", + "hip": "83", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "サマーショッピングアメリカン", + "alias_name_display": "サマーショッピングアメリカン", + "event": [ + { + "event_id": 106, + "event_name": "アイドル水泳大会 水着のシンデレラ" + } + ], + "hash": "5cc4622076643ca2818b7793393fc531", + "id": "3305409", + "profile": { + "bust": "84", + "height": "155", + "hip": "83", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "レインドロップ", + "alias_name_display": "レインドロップ", + "event": [ + { + "event_id": 407, + "event_name": "アイドルプロデュース 鎌倉あじさい巡り" + } + ], + "hash": "0dcfcc73c8e1fe5f8c2afded0838cff5", + "id": "3210601", + "profile": { + "bust": "84", + "height": "155", + "hip": "83", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "レインドロップ", + "alias_name_display": "レインドロップ", + "event": [ + { + "event_id": 407, + "event_name": "アイドルプロデュース 鎌倉あじさい巡り" + } + ], + "hash": "aa671e6aed1e53e554f9b9589de70d48", + "id": "3310602", + "profile": { + "bust": "84", + "height": "155", + "hip": "83", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "レインドロップスマイル", + "alias_name_display": "レインドロップスマイル", + "event": [ + { + "event_id": 407, + "event_name": "アイドルプロデュース 鎌倉あじさい巡り" + } + ], + "hash": "91f1b140eec2747dd2a2cb31c005d37f", + "id": "3210701", + "profile": { + "bust": "84", + "height": "155", + "hip": "83", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "レインドロップスマイル", + "alias_name_display": "レインドロップスマイル", + "event": [ + { + "event_id": 407, + "event_name": "アイドルプロデュース 鎌倉あじさい巡り" + } + ], + "hash": "915507cb01b608f92add67390ad849c3", + "id": "3310702", + "profile": { + "bust": "84", + "height": "155", + "hip": "83", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "バレンタインデビル", + "alias_name_display": "バレンタインデビル", + "hash": "79b5a5fe045e3d04bd7fe1045a280011", + "id": "3221401", + "profile": { + "bust": "84", + "height": "155", + "hip": "83", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "バレンタインデビル", + "alias_name_display": "バレンタインデビル", + "hash": "bda80f1fe71cef7ba31a51521b1ec5dc", + "id": "3321402", + "profile": { + "bust": "84", + "height": "155", + "hip": "83", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "セレクテッド", + "alias_name_display": "セレクテッド", + "hash": "589a124c4fa6098a722264d6e676341a", + "id": "3228901", + "profile": { + "bust": "84", + "height": "155", + "hip": "83", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "セレクテッド", + "alias_name_display": "セレクテッド", + "hash": "b6d13d92ef2602a297f285d0b08fdead", + "id": "3328902", + "profile": { + "bust": "84", + "height": "155", + "hip": "83", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "サマースプラッシュ", + "alias_name_display": "サマースプラッシュ", + "event": [ + { + "event_id": 106, + "event_name": "アイドル水泳大会 水着のシンデレラ" + } + ], + "hash": "252492330a944c5dcb457bb2683c07dc", + "id": "3402101", + "profile": { + "bust": "84", + "height": "155", + "hip": "83", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "サマースプラッシュ", + "alias_name_display": "サマースプラッシュ", + "event": [ + { + "event_id": 106, + "event_name": "アイドル水泳大会 水着のシンデレラ" + } + ], + "hash": "161aba59d0e7079677a6344345b890a1", + "id": "3502102", + "profile": { + "bust": "84", + "height": "155", + "hip": "83", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "湯けむりギャル", + "alias_name_display": "湯けむりギャル", + "hash": "b1d4347b0562c9b9257a1bbfe8007256", + "id": "3403801", + "profile": { + "bust": "84", + "height": "155", + "hip": "83", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "湯けむりギャル", + "alias_name_display": "湯けむりギャル", + "hash": "e2e85e351b7f8739d4c1f2f132ef2ef3", + "id": "3503802", + "profile": { + "bust": "84", + "height": "155", + "hip": "83", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "クリスマス☆ギャル", + "alias_name_display": "クリスマス☆ギャル", + "hash": "9894ac29d3d2f85e6a8e9a2975710ede", + "id": "3410601", + "profile": { + "bust": "84", + "height": "155", + "hip": "83", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "クリスマス☆ギャル", + "alias_name_display": "クリスマス☆ギャル", + "hash": "cc195ea8b89a4c42db5db2054f3e512f", + "id": "3510602", + "profile": { + "bust": "84", + "height": "155", + "hip": "83", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "自由の海姫", + "alias_name_display": "自由の海姫", + "event": [ + { + "event_id": 513, + "event_name": "海賊公演 オーシャンクルーズ" + } + ], + "hash": "0cb4c2a94c73c4dee9e2911ae33b9349", + "id": "3415701", + "profile": { + "bust": "84", + "height": "155", + "hip": "83", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "自由の海姫", + "alias_name_display": "自由の海姫", + "event": [ + { + "event_id": 513, + "event_name": "海賊公演 オーシャンクルーズ" + } + ], + "hash": "50e4cbc50998270b16051eb4c3eb98aa", + "id": "3515702", + "profile": { + "bust": "84", + "height": "155", + "hip": "83", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "きまぐれアラカルト", + "alias_name_display": "きまぐれアラカルト", + "hash": "c77f15a9ae5b41cab5c25dd81fc8b439", + "id": "3422901", + "profile": { + "bust": "84", + "height": "155", + "hip": "83", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "きまぐれアラカルト", + "alias_name_display": "きまぐれアラカルト", + "hash": "5be7e798333d3df7bae2151d64547659", + "id": "3522902", + "profile": { + "bust": "84", + "height": "155", + "hip": "83", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "フリーダムノーツ", + "alias_name_display": "フリーダムノーツ", + "event": [ + { + "event_id": 1504, + "event_name": "第4回チーム対抗トークバトルショー" + } + ], + "hash": "d98730214d1599bdf4c6da1e9baeb783", + "id": "3427101", + "profile": { + "bust": "84", + "height": "155", + "hip": "83", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "フリーダムノーツ", + "alias_name_display": "フリーダムノーツ", + "event": [ + { + "event_id": 1504, + "event_name": "第4回チーム対抗トークバトルショー" + } + ], + "hash": "7b4aaee0f26206451ecfa1d472badb1a", + "id": "3527102", + "profile": { + "bust": "84", + "height": "155", + "hip": "83", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "958ee39a6a98210ef9e12bb51af82a99", + "id": "3430701", + "profile": { + "bust": "84", + "height": "155", + "hip": "83", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "6e869ad95d0b0c12b200342730b0c8d2", + "id": "3530702", + "profile": { + "bust": "84", + "height": "155", + "hip": "83", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "5thアニバーサリー", + "alias_name_display": "5thアニバーサリー", + "event": [ + { + "event_id": 1708, + "event_name": "アイドルプロデュース the 5th Anniversary" + } + ], + "hash": "16bc1b80f078bbbcee22f54b02ffde34", + "id": "3436701", + "profile": { + "bust": "84", + "height": "155", + "hip": "83", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "5thアニバーサリー", + "alias_name_display": "5thアニバーサリー", + "event": [ + { + "event_id": 1708, + "event_name": "アイドルプロデュース the 5th Anniversary" + } + ], + "hash": "d8d934b5f927a10360e68a68f0ebe00b", + "id": "3536702", + "profile": { + "bust": "84", + "height": "155", + "hip": "83", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "5thアニバーサリー・S", + "alias_name_display": "5thアニバーサリー・S", + "event": [ + { + "event_id": 1708, + "event_name": "アイドルプロデュース the 5th Anniversary" + } + ], + "hash": "a8285d3a36a915d9d87530d72a4d7f03", + "id": "3436801", + "profile": { + "bust": "84", + "height": "155", + "hip": "83", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "5thアニバーサリー・S", + "alias_name_display": "5thアニバーサリー・S", + "event": [ + { + "event_id": 1708, + "event_name": "アイドルプロデュース the 5th Anniversary" + } + ], + "hash": "ebd89ca488c46fd5f7ffcae59c61f2e0", + "id": "3536802", + "profile": { + "bust": "84", + "height": "155", + "hip": "83", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "おねだりサボタージュ", + "alias_name_display": "おねだりサボタージュ", + "hash": "7d61e916c1009fe5c94281bb2804ca3b", + "id": "3439901", + "profile": { + "bust": "84", + "height": "155", + "hip": "83", + "waist": "56", + "weight": "41" + } + }, + { + "alias_name": "おねだりサボタージュ", + "alias_name_display": "おねだりサボタージュ", + "hash": "3989619894f357d64debb55929ca0edc", + "id": "3539902", + "profile": { + "bust": "84", + "height": "155", + "hip": "83", + "waist": "56", + "weight": "41" + } + } + ], + "idol_id": 146, + "idol_name": "大槻唯", + "idol_name_display": "大槻唯", + "units": [ + { + "id": "18", + "name": "サクラブロッサム" + }, + { + "id": "106", + "name": "レインドロップ" + }, + { + "id": "112", + "name": "ギャルズパーティー" + }, + { + "id": "113", + "name": "セクシーギャルズ" + }, + { + "id": "155", + "name": "セレクテッド" + }, + { + "id": "174", + "name": "カナリアサマー" + }, + { + "id": "202", + "name": "サンフラワー" + }, + { + "id": "215", + "name": "Project:Krone" + } + ] + }, + { + "aliases": [ + { + "hash": "70e2c81b06c8865ca2b615df8ee4ff93", + "id": "3001401", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "hash": "d3b1f19515db0f6b68de3891bca053aa", + "id": "3101402", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "お花見", + "alias_name_display": "お花見", + "event": [ + { + "event_id": 104, + "event_name": "桜舞う花見祭り" + } + ], + "hash": "e1d1e2125f47a113e3f713279449b89f", + "id": "3203801", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "お花見", + "alias_name_display": "お花見", + "event": [ + { + "event_id": 104, + "event_name": "桜舞う花見祭り" + } + ], + "hash": "49596a983a3633415ef8bc526bc3bf87", + "id": "3303802", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "クッキングチャレンジ", + "alias_name_display": "クッキングチャレンジ", + "event": [ + { + "event_id": 409, + "event_name": "アイドルプロデュース チャレンジクッキング イタリアン編" + } + ], + "hash": "0a909c1a66f53d5148005a8a8d9f8ac2", + "id": "3212701", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "クッキングチャレンジ", + "alias_name_display": "クッキングチャレンジ", + "event": [ + { + "event_id": 409, + "event_name": "アイドルプロデュース チャレンジクッキング イタリアン編" + } + ], + "hash": "1e7a035696e095ced606582c232843aa", + "id": "3312702", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "クッキング・スマイル", + "alias_name_display": "クッキング・スマイル", + "event": [ + { + "event_id": 409, + "event_name": "アイドルプロデュース チャレンジクッキング イタリアン編" + } + ], + "hash": "3ff62a9466016547f90ed44c7840c560", + "id": "3212801", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "クッキング・スマイル", + "alias_name_display": "クッキング・スマイル", + "event": [ + { + "event_id": 409, + "event_name": "アイドルプロデュース チャレンジクッキング イタリアン編" + } + ], + "hash": "2fad2373d17b2e6470454b2469c9161a", + "id": "3312802", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "サマーシーズン", + "alias_name_display": "サマーシーズン", + "hash": "c629d8330bbadfcaab5de5b4b1613e6b", + "id": "3223701", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "サマーシーズン", + "alias_name_display": "サマーシーズン", + "hash": "9cc97855d3b407da47211b55983dfed2", + "id": "3323702", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "全力インタビュー", + "alias_name_display": "全力インタビュー", + "hash": "ee335947e8e5c66353550496c1ef76a9", + "id": "3230801", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "全力インタビュー", + "alias_name_display": "全力インタビュー", + "hash": "6f1244bd2e41ac322ca9b745556c1dea", + "id": "3330802", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "全力チアガール", + "alias_name_display": "全力チアガール", + "event": [ + { + "event_id": 206, + "event_name": "アイドルサバイバルin学園祭" + } + ], + "hash": "346a8fe47bf44812289254630a3246d7", + "id": "3403301", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "全力チアガール", + "alias_name_display": "全力チアガール", + "event": [ + { + "event_id": 206, + "event_name": "アイドルサバイバルin学園祭" + } + ], + "hash": "74de50d140d29d3775b7b4d9b7dab726", + "id": "3503302", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "チアフルエース", + "alias_name_display": "チアフルエース", + "hash": "244571d79f62f7e92f4864005d0c5b7f", + "id": "3406901", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "チアフルエース", + "alias_name_display": "チアフルエース", + "hash": "bec7aaa5a179f7543cd32b81ee1791b1", + "id": "3506902", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "ユッキ☆レボリューション", + "alias_name_display": "ユッキ☆レボリューション", + "event": [ + { + "event_id": 804, + "event_name": "第4回アイドルLIVEロワイヤル" + } + ], + "hash": "b54d7f133cee9d01ae67eff3ba70d9ad", + "id": "3412501", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "ユッキ☆レボリューション", + "alias_name_display": "ユッキ☆レボリューション", + "event": [ + { + "event_id": 804, + "event_name": "第4回アイドルLIVEロワイヤル" + } + ], + "hash": "be2d31e96f2501ddf6cca066da9a35f3", + "id": "3512502", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "ハッピーホームラン", + "alias_name_display": "ハッピーホームラン", + "hash": "36e3f8bdb6303b5bba63e1d38d487c44", + "id": "3414801", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "ハッピーホームラン", + "alias_name_display": "ハッピーホームラン", + "hash": "f7f85a3949cd94e6fe04a9b30189eb57", + "id": "3514802", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "12954acb6219dd4841a6d1f7f57d3f0a", + "id": "3421301", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "5b885f6976141113bc26b21c5a61ef35", + "id": "3521302", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "1番センター", + "alias_name_display": "1番センター", + "hash": "6f6a927a66ac554f5e790bcfe480f5ca", + "id": "3421701", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "1番センター", + "alias_name_display": "1番センター", + "hash": "9cf7b202de8b66500945e79e2860f412", + "id": "3521702", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "秋色センター", + "alias_name_display": "秋色センター", + "hash": "9ff71f444262cc7258e36d981c1ac617", + "id": "3427001", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "秋色センター", + "alias_name_display": "秋色センター", + "hash": "732db8a3c5364c55fba41ccba39ae41e", + "id": "3527002", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "GO!GO!レッツゴー", + "alias_name_display": "GO!GO!レッツゴー", + "hash": "e4ca80856602723aa2498d0322c09d4a", + "id": "3431601", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "GO!GO!レッツゴー", + "alias_name_display": "GO!GO!レッツゴー", + "hash": "634e9b498ffbbf3083d18df6f99e012f", + "id": "3531602", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "満塁バレンタイン", + "alias_name_display": "満塁バレンタイン", + "event": [ + { + "event_id": 1906, + "event_name": "ディアリースターハート ~ラブキュンバレンタイン~" + } + ], + "hash": "93e98bdad1fea731728b2c13f79782be", + "id": "3438001", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "44" + } + }, + { + "alias_name": "満塁バレンタイン", + "alias_name_display": "満塁バレンタイン", + "event": [ + { + "event_id": 1906, + "event_name": "ディアリースターハート ~ラブキュンバレンタイン~" + } + ], + "hash": "85688ae1cb65177f8acc8c407901267b", + "id": "3538002", + "profile": { + "bust": "80", + "height": "161", + "hip": "80", + "waist": "57", + "weight": "44" + } + } + ], + "idol_id": 147, + "idol_name": "姫川友紀", + "idol_name_display": "姫川友紀", + "units": [ + { + "id": "54", + "name": "ボール・フレンズ" + }, + { + "id": "87", + "name": "ウィンター・F・ドライバーズ" + }, + { + "id": "96", + "name": "チャレンジクッキング" + }, + { + "id": "131", + "name": "KBYD" + }, + { + "id": "148", + "name": "チアフルボンバーズ" + }, + { + "id": "152", + "name": "B.B.ロワイヤル" + }, + { + "id": "174", + "name": "カナリアサマー" + }, + { + "id": "191", + "name": "Love Yell" + }, + { + "id": "202", + "name": "サンフラワー" + } + ] + }, + { + "aliases": [ + { + "event": [ + { + "event_id": 303, + "event_name": "アイドル強化合宿" + } + ], + "hash": "a398078875ab4c504e9a1bf8881f1611", + "id": "3001501", + "profile": { + "bust": "84", + "height": "160", + "hip": "85", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "聖夜", + "alias_name_display": "聖夜", + "hash": "a7673fe01d9509ff3e9aba10cb5b2cb2", + "id": "3001701", + "profile": { + "bust": "84", + "height": "160", + "hip": "85", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "新春", + "alias_name_display": "新春", + "hash": "e1bcd7081670a0d4d323c29a7027f790", + "id": "3001901", + "profile": { + "bust": "84", + "height": "160", + "hip": "85", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "バレンタイン", + "alias_name_display": "バレンタイン", + "hash": "d33a56bef548f47c75d4b9a857031ceb", + "id": "3002201", + "profile": { + "bust": "84", + "height": "160", + "hip": "85", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "サマースタイル", + "alias_name_display": "サマースタイル", + "hash": "b20beba7135aeafec64debff48a007d6", + "id": "3002801", + "profile": { + "bust": "84", + "height": "160", + "hip": "85", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "スイミングレッスン", + "alias_name_display": "スイミングレッスン", + "hash": "35298581105317744d50303a73e59816", + "id": "3212201", + "profile": { + "bust": "84", + "height": "160", + "hip": "85", + "waist": "56", + "weight": "45" + } + } + ], + "idol_id": 148, + "idol_name": "トレーナー", + "idol_name_display": "トレーナー" + }, + { + "aliases": [ + { + "event": [ + { + "event_id": 101, + "event_name": "星降るクリスマス" + } + ], + "hash": "76e94c283b186a3461922f4ec21881ea", + "id": "3001601", + "profile": { + "bust": "82", + "height": "156", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "event": [ + { + "event_id": 101, + "event_name": "星降るクリスマス" + } + ], + "hash": "9ddb7f0e4c699e93d3735c56d163bc1b", + "id": "3101602", + "profile": { + "bust": "82", + "height": "156", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "ハロウィンヴァンパイア", + "alias_name_display": "ハロウィンヴァンパイア", + "event": [ + { + "event_id": 207, + "event_name": "アイドルサバイバル ハロウィン編" + } + ], + "hash": "a64fe8b98f2e7b40a6a342368f412450", + "id": "3207001", + "profile": { + "bust": "82", + "height": "156", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "ハロウィンヴァンパイア", + "alias_name_display": "ハロウィンヴァンパイア", + "event": [ + { + "event_id": 207, + "event_name": "アイドルサバイバル ハロウィン編" + } + ], + "hash": "100cd905a11b9720c2c2900c2d29cd24", + "id": "3307002", + "profile": { + "bust": "82", + "height": "156", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "制服コレクション", + "alias_name_display": "制服コレクション", + "hash": "9ff651d605c80ce711f075fac892e4ba", + "id": "3209701", + "profile": { + "bust": "82", + "height": "156", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "制服コレクション", + "alias_name_display": "制服コレクション", + "hash": "ca525a89021186705bef26286ca60aa0", + "id": "3309702", + "profile": { + "bust": "82", + "height": "156", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "イノセントカジュアル", + "alias_name_display": "イノセントカジュアル", + "event": [ + { + "event_id": 210, + "event_name": "アイドルサバイバルinテーマパーク2013" + } + ], + "hash": "43dc4ab01d267de125f55814e78d562d", + "id": "3210301", + "profile": { + "bust": "82", + "height": "156", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "イノセントカジュアル", + "alias_name_display": "イノセントカジュアル", + "event": [ + { + "event_id": 210, + "event_name": "アイドルサバイバルinテーマパーク2013" + } + ], + "hash": "6c5ed46ea8e57d875cee7a9a156f94dd", + "id": "3310302", + "profile": { + "bust": "82", + "height": "156", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "フレンズホリデー", + "alias_name_display": "フレンズホリデー", + "hash": "96aaa980d88be40c137aba05e087cf31", + "id": "3218801", + "profile": { + "bust": "82", + "height": "156", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "フレンズホリデー", + "alias_name_display": "フレンズホリデー", + "hash": "0981d408ac65375660c7f0e6e9c9aacb", + "id": "3318802", + "profile": { + "bust": "82", + "height": "156", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "お転婆ひな娘", + "alias_name_display": "お転婆ひな娘", + "event": [ + { + "event_id": 202, + "event_name": "アイドルサバイバルひな祭り編" + } + ], + "hash": "f6f5df7f8023462cfbe413c9ffe6b0e6", + "id": "3401201", + "profile": { + "bust": "82", + "height": "156", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "お転婆ひな娘", + "alias_name_display": "お転婆ひな娘", + "event": [ + { + "event_id": 202, + "event_name": "アイドルサバイバルひな祭り編" + } + ], + "hash": "fccbc1e099783725061730d71f4f3c7f", + "id": "3501202", + "profile": { + "bust": "82", + "height": "156", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "フード☆メイド", + "alias_name_display": "フード☆メイド", + "event": [ + { + "event_id": 409, + "event_name": "アイドルプロデュース チャレンジクッキング イタリアン編" + } + ], + "hash": "6784ca2ff27361baf60e5656d41aa7b3", + "id": "3408801", + "profile": { + "bust": "82", + "height": "156", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "フード☆メイド", + "alias_name_display": "フード☆メイド", + "event": [ + { + "event_id": 409, + "event_name": "アイドルプロデュース チャレンジクッキング イタリアン編" + } + ], + "hash": "c2cc3cb89e8a952d912ac52cc4ea29ea", + "id": "3508802", + "profile": { + "bust": "82", + "height": "156", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "無防備☆ガール", + "alias_name_display": "無防備☆ガール", + "hash": "0bd28c1f2662bd35b68a149c97b2dc9d", + "id": "3411601", + "profile": { + "bust": "82", + "height": "156", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "無防備☆ガール", + "alias_name_display": "無防備☆ガール", + "hash": "1c54bb41c531be11a13a01ab43943f85", + "id": "3511602", + "profile": { + "bust": "82", + "height": "156", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "ロワイヤル・スクエア", + "alias_name_display": "ロワイヤル・スクエア", + "event": [ + { + "event_id": 809, + "event_name": "第9回アイドルLIVEロワイヤル" + } + ], + "hash": "e64f42e43c60813b610e0629287cf330", + "id": "3420501", + "profile": { + "bust": "82", + "height": "156", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "ロワイヤル・スクエア", + "alias_name_display": "ロワイヤル・スクエア", + "event": [ + { + "event_id": 809, + "event_name": "第9回アイドルLIVEロワイヤル" + } + ], + "hash": "688a91e414403d1ce4dca71260eef0e1", + "id": "3520502", + "profile": { + "bust": "82", + "height": "156", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "ホップステップサマー", + "alias_name_display": "ホップステップサマー", + "hash": "3d198b386e57e5d7982ef82b7347f39a", + "id": "3424701", + "profile": { + "bust": "82", + "height": "156", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "ホップステップサマー", + "alias_name_display": "ホップステップサマー", + "hash": "266fa426c7b00f75b3148cb82ad3ec05", + "id": "3524702", + "profile": { + "bust": "82", + "height": "156", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "桃園花娘", + "alias_name_display": "桃園花娘", + "hash": "201c8374336e2c79188ec5840052aecb", + "id": "3431001", + "profile": { + "bust": "82", + "height": "156", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "桃園花娘", + "alias_name_display": "桃園花娘", + "hash": "4b14cd287e67145814d5ddb0c187ae8a", + "id": "3531002", + "profile": { + "bust": "82", + "height": "156", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "ひらめき☆アンサー", + "alias_name_display": "ひらめき☆アンサー", + "hash": "93008f94a5c66e998d1a0e45e7bab89a", + "id": "3434901", + "profile": { + "bust": "82", + "height": "156", + "hip": "82", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "ひらめき☆アンサー", + "alias_name_display": "ひらめき☆アンサー", + "hash": "d2f0b1423a844ac537fa255c1e383b22", + "id": "3534902", + "profile": { + "bust": "82", + "height": "156", + "hip": "82", + "waist": "57", + "weight": "43" + } + } + ], + "idol_id": 149, + "idol_name": "喜多見柚", + "idol_name_display": "喜多見柚", + "units": [ + { + "id": "101", + "name": "ハロウィンヴァンパイア" + }, + { + "id": "163", + "name": "フリルドスクエア" + } + ] + }, + { + "aliases": [ + { + "event": [ + { + "event_id": 102, + "event_name": "アイドルおもちつき大会" + } + ], + "hash": "d20b8ca340a2b6ee42797c966f3a79b3", + "id": "3001801", + "profile": { + "bust": "76", + "height": "156", + "hip": "79", + "waist": "55", + "weight": "42" + } + }, + { + "event": [ + { + "event_id": 102, + "event_name": "アイドルおもちつき大会" + } + ], + "hash": "8c704c3ba88575367b7800a88e72eb9a", + "id": "3101802", + "profile": { + "bust": "76", + "height": "156", + "hip": "79", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "ひな祭り", + "alias_name_display": "ひな祭り", + "event": [ + { + "event_id": 202, + "event_name": "アイドルサバイバルひな祭り編" + } + ], + "hash": "c21299fa797c699cd1962bfc3803e736", + "id": "3203601", + "profile": { + "bust": "76", + "height": "156", + "hip": "79", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "ひな祭り", + "alias_name_display": "ひな祭り", + "event": [ + { + "event_id": 202, + "event_name": "アイドルサバイバルひな祭り編" + } + ], + "hash": "fc4b2b4edf58524ab549dc95abef1c44", + "id": "3303602", + "profile": { + "bust": "76", + "height": "156", + "hip": "79", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "ハロウィンパーティー", + "alias_name_display": "ハロウィンパーティー", + "hash": "e6e361376fc4005af6546bf627d8cdfe", + "id": "3206501", + "profile": { + "bust": "76", + "height": "156", + "hip": "79", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "ハロウィンパーティー", + "alias_name_display": "ハロウィンパーティー", + "hash": "6157e73a9eb2323a89bc9948fe7e5aa9", + "id": "3306502", + "profile": { + "bust": "76", + "height": "156", + "hip": "79", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "テーマパーク", + "alias_name_display": "テーマパーク", + "event": [ + { + "event_id": 210, + "event_name": "アイドルサバイバルinテーマパーク2013" + } + ], + "hash": "99f4555961526cda5c748127bef7870e", + "id": "3210201", + "profile": { + "bust": "76", + "height": "156", + "hip": "79", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "テーマパーク", + "alias_name_display": "テーマパーク", + "event": [ + { + "event_id": 210, + "event_name": "アイドルサバイバルinテーマパーク2013" + } + ], + "hash": "15b1e56e15dc511c428b7ef1b46ea4c9", + "id": "3310202", + "profile": { + "bust": "76", + "height": "156", + "hip": "79", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "ハロウィンナイト", + "alias_name_display": "ハロウィンナイト", + "hash": "c038a0397e933eae426c272eff7f482e", + "id": "3213101", + "profile": { + "bust": "76", + "height": "156", + "hip": "79", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "ハロウィンナイト", + "alias_name_display": "ハロウィンナイト", + "hash": "258fd3521d2a8454f156a30388a15342", + "id": "3313102", + "profile": { + "bust": "76", + "height": "156", + "hip": "79", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "食えないスタイル", + "alias_name_display": "食えないスタイル", + "event": [ + { + "event_id": 710, + "event_name": "サンタDEドリームLIVEフェスティバル" + } + ], + "hash": "63b4835e9f506fd149e300b69c640ed1", + "id": "3220701", + "profile": { + "bust": "76", + "height": "156", + "hip": "79", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "食えないスタイル", + "alias_name_display": "食えないスタイル", + "event": [ + { + "event_id": 710, + "event_name": "サンタDEドリームLIVEフェスティバル" + } + ], + "hash": "a8f9ae620ce05852ae3e99e6540dd062", + "id": "3320702", + "profile": { + "bust": "76", + "height": "156", + "hip": "79", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "メデタイガール", + "alias_name_display": "メデタイガール", + "hash": "6d67f83eba3d6fe3c8831b9f6767b518", + "id": "3225201", + "profile": { + "bust": "76", + "height": "156", + "hip": "79", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "メデタイガール", + "alias_name_display": "メデタイガール", + "hash": "fd402f4d39b07f0d650348588df99235", + "id": "3325202", + "profile": { + "bust": "76", + "height": "156", + "hip": "79", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "ホーリーコーラス", + "alias_name_display": "ホーリーコーラス", + "hash": "f6a5cf105b88bd60cc66bb32499f6895", + "id": "3231701", + "profile": { + "bust": "76", + "height": "156", + "hip": "79", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "ホーリーコーラス", + "alias_name_display": "ホーリーコーラス", + "hash": "d0d0373d0b07622c508aa5eeee1cc1f4", + "id": "3331702", + "profile": { + "bust": "76", + "height": "156", + "hip": "79", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "ジ・アース", + "alias_name_display": "ジ・アース", + "hash": "c8bd49d003289cdd8def158eb3588760", + "id": "3234401", + "profile": { + "bust": "76", + "height": "156", + "hip": "79", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "ジ・アース", + "alias_name_display": "ジ・アース", + "hash": "6f796b27b0eab4db53272233989c4a30", + "id": "3334402", + "profile": { + "bust": "76", + "height": "156", + "hip": "79", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "みんなの太陽", + "alias_name_display": "みんなの太陽", + "hash": "2c81a2d0f28abd511851284ad313c915", + "id": "3415501", + "profile": { + "bust": "76", + "height": "156", + "hip": "79", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "みんなの太陽", + "alias_name_display": "みんなの太陽", + "hash": "4c250678e7988d72cd313a1a87e5c3de", + "id": "3515502", + "profile": { + "bust": "76", + "height": "156", + "hip": "79", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "ファッション☆モンスター", + "alias_name_display": "ファッション☆モンスター", + "event": [ + { + "event_id": 1402, + "event_name": "第2回ぷちデレラコレクション" + } + ], + "hash": "0eed071ca9aabe1e0dc62630767ae5f8", + "id": "3423601", + "profile": { + "bust": "76", + "height": "156", + "hip": "79", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "ファッション☆モンスター", + "alias_name_display": "ファッション☆モンスター", + "event": [ + { + "event_id": 1402, + "event_name": "第2回ぷちデレラコレクション" + } + ], + "hash": "8ac2145403872fa99ee3b074be4c4dc6", + "id": "3523602", + "profile": { + "bust": "76", + "height": "156", + "hip": "79", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "ファニー・ロワイヤル", + "alias_name_display": "ファニー・ロワイヤル", + "event": [ + { + "event_id": 818, + "event_name": "アイドルLIVEロワイヤル 雨の日SP" + } + ], + "hash": "61fe8ff699e7e51036c0faf6f85f7d57", + "id": "3433101", + "profile": { + "bust": "76", + "height": "156", + "hip": "79", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "ファニー・ロワイヤル", + "alias_name_display": "ファニー・ロワイヤル", + "event": [ + { + "event_id": 818, + "event_name": "アイドルLIVEロワイヤル 雨の日SP" + } + ], + "hash": "ddf643f7944b7f55b9867bb33c17e9c6", + "id": "3533102", + "profile": { + "bust": "76", + "height": "156", + "hip": "79", + "waist": "55", + "weight": "42" + } + } + ], + "idol_id": 150, + "idol_name": "上田鈴帆", + "idol_name_display": "上田鈴帆", + "units": [ + { + "id": "6", + "name": "笑美と鈴帆の爆笑エブリデイ" + }, + { + "id": "161", + "name": "ハロウィンナイト" + }, + { + "id": "180", + "name": "ハロウィンパーティー" + }, + { + "id": "190", + "name": "サマプリ" + }, + { + "id": "211", + "name": "ワンダー・フル" + } + ] + }, + { + "aliases": [ + { + "hash": "f11481993da76a38d7f289c35cae41f5", + "id": "3002001", + "profile": { + "bust": "92", + "height": "162", + "hip": "93", + "waist": "65", + "weight": "58" + } + }, + { + "hash": "6393963b2feeb36881d4263c72bfa0cd", + "id": "3102002", + "profile": { + "bust": "92", + "height": "162", + "hip": "93", + "waist": "67", + "weight": "59" + } + }, + { + "alias_name": "浴衣祭り", + "alias_name_display": "浴衣祭り", + "hash": "a9b3485ee109892c4a263b990ed57be6", + "id": "3205201", + "profile": { + "bust": "92", + "height": "162", + "hip": "93", + "waist": "67", + "weight": "59" + } + }, + { + "alias_name": "浴衣祭り", + "alias_name_display": "浴衣祭り", + "hash": "882d09cd56864c6f8e27e24437215b42", + "id": "3305202", + "profile": { + "bust": "92", + "height": "162", + "hip": "93", + "waist": "67", + "weight": "59" + } + }, + { + "alias_name": "デビリッシュゴシック", + "alias_name_display": "デビリッシュゴシック", + "hash": "99a8eba4e46f0b16a51a372d4a4dc565", + "id": "3210101", + "profile": { + "bust": "92", + "height": "162", + "hip": "93", + "waist": "67", + "weight": "59" + } + }, + { + "alias_name": "デビリッシュゴシック", + "alias_name_display": "デビリッシュゴシック", + "hash": "721088da0e9e7de67a903eea16dd5b4c", + "id": "3310102", + "profile": { + "bust": "92", + "height": "162", + "hip": "93", + "waist": "67", + "weight": "59" + } + }, + { + "alias_name": "ぷにぷにサマー", + "alias_name_display": "ぷにぷにサマー", + "event": [ + { + "event_id": 506, + "event_name": "アイドルLIVEツアーinハワイ" + } + ], + "hash": "393c6cafd2d14a97c4949f0bf386bb03", + "id": "3212101", + "profile": { + "bust": "92", + "height": "162", + "hip": "93", + "waist": "67", + "weight": "59" + } + }, + { + "alias_name": "ぷにぷにサマー", + "alias_name_display": "ぷにぷにサマー", + "event": [ + { + "event_id": 506, + "event_name": "アイドルLIVEツアーinハワイ" + } + ], + "hash": "ad08ca71aac4affbd98e2c8613e2ef72", + "id": "3312102", + "profile": { + "bust": "92", + "height": "162", + "hip": "93", + "waist": "67", + "weight": "59" + } + }, + { + "alias_name": "あまあまボディ", + "alias_name_display": "あまあまボディ", + "event": [ + { + "event_id": 1301, + "event_name": "プロダクションマッチフェスティバルS" + } + ], + "hash": "5feee873f7f71f93bc9c64f7488223ee", + "id": "3218001", + "profile": { + "bust": "92", + "height": "162", + "hip": "93", + "waist": "67", + "weight": "59" + } + }, + { + "alias_name": "あまあまボディ", + "alias_name_display": "あまあまボディ", + "event": [ + { + "event_id": 1301, + "event_name": "プロダクションマッチフェスティバルS" + } + ], + "hash": "1606de8faf4939054583ca16ef1d834e", + "id": "3318002", + "profile": { + "bust": "92", + "height": "162", + "hip": "93", + "waist": "67", + "weight": "59" + } + }, + { + "alias_name": "自慢の一皿", + "alias_name_display": "自慢の一皿", + "event": [ + { + "event_id": 519, + "event_name": "美食公演 女神に捧ぐ御馳走" + } + ], + "hash": "2801a1e061cc7bd20fd826efef86e591", + "id": "3323002", + "profile": { + "bust": "92", + "height": "162", + "hip": "93", + "waist": "67", + "weight": "59" + } + }, + { + "alias_name": "紅葉温泉", + "alias_name_display": "紅葉温泉", + "hash": "a0d8f9c70a90965f5383f23fc9297e73", + "id": "3226201", + "profile": { + "bust": "92", + "height": "162", + "hip": "93", + "waist": "67", + "weight": "59" + } + }, + { + "alias_name": "紅葉温泉", + "alias_name_display": "紅葉温泉", + "hash": "edc726ca8c756384a88415b7a3caf667", + "id": "3326202", + "profile": { + "bust": "92", + "height": "162", + "hip": "93", + "waist": "67", + "weight": "59" + } + }, + { + "alias_name": "ランプの魔神", + "alias_name_display": "ランプの魔神", + "event": [ + { + "event_id": 1902, + "event_name": "御伽公演 おてんば姫とまぢヤバな魔法のランプ" + } + ], + "hash": "07db6378f0e35643cac8d82235b68123", + "id": "3329702", + "profile": { + "bust": "92", + "height": "162", + "hip": "93", + "waist": "67", + "weight": "59" + } + }, + { + "alias_name": "プニョフワ乙女", + "alias_name_display": "プニョフワ乙女", + "event": [ + { + "event_id": 704, + "event_name": "第4回ドリームLIVEフェスティバル" + } + ], + "hash": "c86d7c82683d60607bc5d143515334af", + "id": "3409901", + "profile": { + "bust": "92", + "height": "162", + "hip": "93", + "waist": "67", + "weight": "59" + } + }, + { + "alias_name": "プニョフワ乙女", + "alias_name_display": "プニョフワ乙女", + "event": [ + { + "event_id": 704, + "event_name": "第4回ドリームLIVEフェスティバル" + } + ], + "hash": "63bca4c7ba8800505ce5a061d4aee09c", + "id": "3509902", + "profile": { + "bust": "92", + "height": "162", + "hip": "93", + "waist": "67", + "weight": "59" + } + }, + { + "alias_name": "ぷにむにフィーリング", + "alias_name_display": "ぷにむにフィーリング", + "event": [ + { + "event_id": "019", + "event_name": "第19回プロダクションマッチフェスティバル" + } + ], + "hash": "322962fdcf32dd19ff02fc6cb50077a8", + "id": "3418901", + "profile": { + "bust": "92", + "height": "162", + "hip": "93", + "waist": "67", + "weight": "59" + } + }, + { + "alias_name": "ぷにむにフィーリング", + "alias_name_display": "ぷにむにフィーリング", + "event": [ + { + "event_id": "019", + "event_name": "第19回プロダクションマッチフェスティバル" + } + ], + "hash": "b469418a2073c780c8641fe2a23c7224", + "id": "3518902", + "profile": { + "bust": "92", + "height": "162", + "hip": "93", + "waist": "67", + "weight": "59" + } + }, + { + "alias_name": "ぷにっとチアー", + "alias_name_display": "ぷにっとチアー", + "event": [ + { + "event_id": 1506, + "event_name": "第6回チーム対抗トークバトルショー" + } + ], + "hash": "4b48f10d4de9328c9c106f9077981894", + "id": "3430901", + "profile": { + "bust": "92", + "height": "162", + "hip": "93", + "waist": "67", + "weight": "59" + } + }, + { + "alias_name": "ぷにっとチアー", + "alias_name_display": "ぷにっとチアー", + "event": [ + { + "event_id": 1506, + "event_name": "第6回チーム対抗トークバトルショー" + } + ], + "hash": "82e103ab4c545dc25fd404a6ff80ba59", + "id": "3530902", + "profile": { + "bust": "92", + "height": "162", + "hip": "93", + "waist": "67", + "weight": "59" + } + }, + { + "alias_name": "ふわっと艶乙女", + "alias_name_display": "ふわっと艶乙女", + "hash": "6561e1ef73f3ae607ff507d0cb6596c6", + "id": "3437601", + "profile": { + "bust": "92", + "height": "162", + "hip": "93", + "waist": "67", + "weight": "59" + } + }, + { + "alias_name": "ふわっと艶乙女", + "alias_name_display": "ふわっと艶乙女", + "hash": "f918315bf0b28276e87d685d545c8145", + "id": "3537602", + "profile": { + "bust": "92", + "height": "162", + "hip": "93", + "waist": "67", + "weight": "59" + } + } + ], + "idol_id": 151, + "idol_name": "海老原菜帆", + "idol_name_display": "海老原菜帆", + "units": [ + { + "id": "157", + "name": "デビリッシュゴシック" + }, + { + "id": "178", + "name": "からぱれ" + }, + { + "id": "206", + "name": "セクシーボンデージ" + } + ] + }, + { + "aliases": [ + { + "event": [ + { + "event_id": 303, + "event_name": "アイドル強化合宿" + } + ], + "hash": "9d8f7ddf9814571ec92baa652f20ead5", + "id": "3002401", + "profile": { + "bust": "77", + "height": "157", + "hip": "82", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "バレンタイン", + "alias_name_display": "バレンタイン", + "hash": "36e37884b950605dc92c789b5b270b37", + "id": "3003701", + "profile": { + "bust": "77", + "height": "157", + "hip": "82", + "waist": "56", + "weight": "45" + } + } + ], + "idol_id": 152, + "idol_name": "ルーキートレーナー", + "idol_name_display": "ルーキートレーナー" + }, + { + "aliases": [ + { + "hash": "66fbc3ffdc1d467d4656be4e6a806c8d", + "id": "3002501", + "profile": { + "bust": "105", + "height": "170", + "hip": "92", + "waist": "64", + "weight": "56" + } + }, + { + "hash": "73887de78a57a5c49170947f2b83c81b", + "id": "3102502", + "profile": { + "bust": "105", + "height": "170", + "hip": "92", + "waist": "64", + "weight": "56" + } + }, + { + "alias_name": "マーメイドパラダイス", + "alias_name_display": "マーメイドパラダイス", + "hash": "07d404f5b5197204f9664334fa255730", + "id": "3205801", + "profile": { + "bust": "105", + "height": "170", + "hip": "92", + "waist": "64", + "weight": "56" + } + }, + { + "alias_name": "マーメイドパラダイス", + "alias_name_display": "マーメイドパラダイス", + "hash": "69a5fd83ed2443c3bd79c2cc133c6334", + "id": "3305802", + "profile": { + "bust": "105", + "height": "170", + "hip": "92", + "waist": "64", + "weight": "56" + } + }, + { + "alias_name": "浴衣祭り", + "alias_name_display": "浴衣祭り", + "hash": "6e35b42e385c8c1ba43173498fb1e76f", + "id": "3211301", + "profile": { + "bust": "105", + "height": "170", + "hip": "92", + "waist": "64", + "weight": "56" + } + }, + { + "alias_name": "浴衣祭り", + "alias_name_display": "浴衣祭り", + "hash": "88101417f347a5f1a8f3eb488c36e8d2", + "id": "3311302", + "profile": { + "bust": "105", + "height": "170", + "hip": "92", + "waist": "64", + "weight": "56" + } + }, + { + "alias_name": "ミルキーB.B", + "alias_name_display": "ミルキーB.B", + "hash": "77aa04216bfb980d6a349ebc31f297f5", + "id": "3221601", + "profile": { + "bust": "105", + "height": "170", + "hip": "92", + "waist": "64", + "weight": "56" + } + }, + { + "alias_name": "ミルキーB.B", + "alias_name_display": "ミルキーB.B", + "hash": "bb05e3e826f6b264c9b9fab8920f40ca", + "id": "3321602", + "profile": { + "bust": "105", + "height": "170", + "hip": "92", + "waist": "64", + "weight": "56" + } + }, + { + "alias_name": "ビーチガール", + "alias_name_display": "ビーチガール", + "event": [ + { + "event_id": 1703, + "event_name": "アイドルプロデュース おいでよ!海の家" + } + ], + "hash": "a9916b3a3bfdeee7e137a0fe098260bc", + "id": "3224101", + "profile": { + "bust": "105", + "height": "170", + "hip": "92", + "waist": "64", + "weight": "56" + } + }, + { + "alias_name": "ビーチガール", + "alias_name_display": "ビーチガール", + "event": [ + { + "event_id": 1703, + "event_name": "アイドルプロデュース おいでよ!海の家" + } + ], + "hash": "cb6e0046c38105c34bf814d7de9faf54", + "id": "3324102", + "profile": { + "bust": "105", + "height": "170", + "hip": "92", + "waist": "64", + "weight": "56" + } + }, + { + "alias_name": "ビーチガール・S", + "alias_name_display": "ビーチガール・S", + "event": [ + { + "event_id": 1703, + "event_name": "アイドルプロデュース おいでよ!海の家" + } + ], + "hash": "f3339d2dacbd08cab3248fed296c152e", + "id": "3224201", + "profile": { + "bust": "105", + "height": "170", + "hip": "92", + "waist": "64", + "weight": "56" + } + }, + { + "alias_name": "ビーチガール・S", + "alias_name_display": "ビーチガール・S", + "event": [ + { + "event_id": 1703, + "event_name": "アイドルプロデュース おいでよ!海の家" + } + ], + "hash": "330125851af71481cec10cd6c08ead5d", + "id": "3324202", + "profile": { + "bust": "105", + "height": "170", + "hip": "92", + "waist": "64", + "weight": "56" + } + }, + { + "alias_name": "バレンタインI.C", + "alias_name_display": "バレンタインI.C", + "event": [ + { + "event_id": 1209, + "event_name": "アイドルチャレンジ チャレンジクッキング バレンタイン編" + } + ], + "hash": "64a0bb938d41f1029525df2e503ac1c4", + "id": "3327702", + "profile": { + "bust": "105", + "height": "170", + "hip": "92", + "waist": "64", + "weight": "56" + } + }, + { + "alias_name": "コロッセオクイーン", + "alias_name_display": "コロッセオクイーン", + "event": [ + { + "event_id": 503, + "event_name": "アイドルLIVEツアーinイタリア" + } + ], + "hash": "e70d367d497a566cf2c90eba7cf20acc", + "id": "3405401", + "profile": { + "bust": "105", + "height": "170", + "hip": "92", + "waist": "64", + "weight": "56" + } + }, + { + "alias_name": "コロッセオクイーン", + "alias_name_display": "コロッセオクイーン", + "event": [ + { + "event_id": 503, + "event_name": "アイドルLIVEツアーinイタリア" + } + ], + "hash": "0037cb7e98c14596a6eb124788dfb080", + "id": "3505402", + "profile": { + "bust": "105", + "height": "170", + "hip": "92", + "waist": "64", + "weight": "56" + } + }, + { + "alias_name": "愛の癒し系", + "alias_name_display": "愛の癒し系", + "hash": "aa3c25c011a1152a9af8e920df5533c5", + "id": "3411001", + "profile": { + "bust": "105", + "height": "170", + "hip": "92", + "waist": "64", + "weight": "56" + } + }, + { + "alias_name": "愛の癒し系", + "alias_name_display": "愛の癒し系", + "hash": "7ce85c1cb569dab668f55c5019084f36", + "id": "3511002", + "profile": { + "bust": "105", + "height": "170", + "hip": "92", + "waist": "64", + "weight": "56" + } + }, + { + "alias_name": "癒しの満月", + "alias_name_display": "癒しの満月", + "hash": "04b085f6025a0db0dd34223ff1ecefbd", + "id": "3413301", + "profile": { + "bust": "105", + "height": "170", + "hip": "92", + "waist": "64", + "weight": "56" + } + }, + { + "alias_name": "癒しの満月", + "alias_name_display": "癒しの満月", + "hash": "198d50500bd1408485c99c5a33719597", + "id": "3513302", + "profile": { + "bust": "105", + "height": "170", + "hip": "92", + "waist": "64", + "weight": "56" + } + }, + { + "alias_name": "真夏の果実", + "alias_name_display": "真夏の果実", + "event": [ + { + "event_id": "018", + "event_name": "第18回プロダクションマッチフェスティバル" + } + ], + "hash": "3b35a7be62c1baf6d0320e704af57c35", + "id": "3416601", + "profile": { + "bust": "105", + "height": "170", + "hip": "92", + "waist": "64", + "weight": "56" + } + }, + { + "alias_name": "真夏の果実", + "alias_name_display": "真夏の果実", + "event": [ + { + "event_id": "018", + "event_name": "第18回プロダクションマッチフェスティバル" + } + ], + "hash": "b0b2836b44bcc84f30cb2a0b4ee95811", + "id": "3516602", + "profile": { + "bust": "105", + "height": "170", + "hip": "92", + "waist": "64", + "weight": "56" + } + }, + { + "alias_name": "たっぷりクッキング", + "alias_name_display": "たっぷりクッキング", + "event": [ + { + "event_id": 1209, + "event_name": "アイドルチャレンジ チャレンジクッキング バレンタイン編" + } + ], + "hash": "429bd4b9d09119bf50561fd585ff2a03", + "id": "3429901", + "profile": { + "bust": "105", + "height": "170", + "hip": "92", + "waist": "64", + "weight": "56" + } + }, + { + "alias_name": "たっぷりクッキング", + "alias_name_display": "たっぷりクッキング", + "event": [ + { + "event_id": 1209, + "event_name": "アイドルチャレンジ チャレンジクッキング バレンタイン編" + } + ], + "hash": "06eb2a01d94dbc499b79359b3cff0fea", + "id": "3529902", + "profile": { + "bust": "105", + "height": "170", + "hip": "92", + "waist": "64", + "weight": "56" + } + }, + { + "alias_name": "たっぷりクッキング・S", + "alias_name_display": "たっぷりクッキング・S", + "event": [ + { + "event_id": 1209, + "event_name": "アイドルチャレンジ チャレンジクッキング バレンタイン編" + } + ], + "hash": "559790e9b6e4de4ac9449d337663ddbb", + "id": "3430001", + "profile": { + "bust": "105", + "height": "170", + "hip": "92", + "waist": "64", + "weight": "56" + } + }, + { + "alias_name": "たっぷりクッキング・S", + "alias_name_display": "たっぷりクッキング・S", + "event": [ + { + "event_id": 1209, + "event_name": "アイドルチャレンジ チャレンジクッキング バレンタイン編" + } + ], + "hash": "14c5a8ec192752cbd093a8f6273d2b1e", + "id": "3530002", + "profile": { + "bust": "105", + "height": "170", + "hip": "92", + "waist": "64", + "weight": "56" + } + }, + { + "alias_name": "実りの季節", + "alias_name_display": "実りの季節", + "event": [ + { + "event_id": 724, + "event_name": "第24回ドリームLIVEフェスティバル" + } + ], + "hash": "bbbfa253851f09e73d360a8d7e870e8c", + "id": "3435101", + "profile": { + "bust": "105", + "height": "170", + "hip": "92", + "waist": "64", + "weight": "56" + } + }, + { + "alias_name": "実りの季節", + "alias_name_display": "実りの季節", + "event": [ + { + "event_id": 724, + "event_name": "第24回ドリームLIVEフェスティバル" + } + ], + "hash": "c68c5ef6c59aa24884cab075a33569cc", + "id": "3535102", + "profile": { + "bust": "105", + "height": "170", + "hip": "92", + "waist": "64", + "weight": "56" + } + }, + { + "alias_name": "バウンシーラウンド", + "alias_name_display": "バウンシーラウンド", + "hash": "bc1a87fb25e1da16048f98be8a1d3610", + "id": "3438501", + "profile": { + "bust": "105", + "height": "170", + "hip": "92", + "waist": "64", + "weight": "56" + } + }, + { + "alias_name": "バウンシーラウンド", + "alias_name_display": "バウンシーラウンド", + "hash": "8f67ec464f14c69c9abff99d4e5c4eae", + "id": "3538502", + "profile": { + "bust": "105", + "height": "170", + "hip": "92", + "waist": "64", + "weight": "56" + } + } + ], + "idol_id": 153, + "idol_name": "及川雫", + "idol_name_display": "及川雫", + "units": [ + { + "id": "71", + "name": "B.B" + }, + { + "id": "147", + "name": "セクシーギルティ" + }, + { + "id": "182", + "name": "マーメイドパラダイス" + }, + { + "id": "188", + "name": "Sweetches" + } + ] + }, + { + "aliases": [ + { + "hash": "95dfef96c030c77201ff9ed0faa2077f", + "id": "3002601", + "profile": { + "bust": "75", + "height": "148", + "hip": "77", + "waist": "50", + "weight": "41" + } + }, + { + "hash": "78df21dcef6a0526a64a6d9cac16b48c", + "id": "3102602", + "profile": { + "bust": "75", + "height": "148", + "hip": "77", + "waist": "50", + "weight": "41" + } + }, + { + "alias_name": "イタズラっ子", + "alias_name_display": "イタズラっ子", + "event": [ + { + "event_id": 205, + "event_name": "アイドルサバイバルinサマーライブ" + } + ], + "hash": "14a463ebd0706f1db075f8cccb392178", + "id": "3205701", + "profile": { + "bust": "75", + "height": "148", + "hip": "77", + "waist": "50", + "weight": "41" + } + }, + { + "alias_name": "イタズラっ子", + "alias_name_display": "イタズラっ子", + "event": [ + { + "event_id": 205, + "event_name": "アイドルサバイバルinサマーライブ" + } + ], + "hash": "20500acb55c3d5d486308c993316b64a", + "id": "3305702", + "profile": { + "bust": "75", + "height": "148", + "hip": "77", + "waist": "50", + "weight": "41" + } + }, + { + "alias_name": "イタズラゴシック", + "alias_name_display": "イタズラゴシック", + "hash": "37709b95b40e62f7d715e388278a899c", + "id": "3212301", + "profile": { + "bust": "75", + "height": "148", + "hip": "77", + "waist": "50", + "weight": "41" + } + }, + { + "alias_name": "イタズラゴシック", + "alias_name_display": "イタズラゴシック", + "hash": "d89af5643544548c921520265fa69492", + "id": "3312302", + "profile": { + "bust": "75", + "height": "148", + "hip": "77", + "waist": "50", + "weight": "41" + } + }, + { + "alias_name": "魔女っ娘I.C", + "alias_name_display": "魔女っ娘I.C", + "event": [ + { + "event_id": 1201, + "event_name": "目指せ魔女っ娘 アイドルチャレンジ" + } + ], + "hash": "c48cd2738311b6a1f088e92adb23dab6", + "id": "3317102", + "profile": { + "bust": "75", + "height": "148", + "hip": "77", + "waist": "50", + "weight": "41" + } + }, + { + "alias_name": "秋色温泉", + "alias_name_display": "秋色温泉", + "hash": "8cb9abd592c10bbf1255a9d404541b5b", + "id": "3220001", + "profile": { + "bust": "75", + "height": "148", + "hip": "77", + "waist": "50", + "weight": "41" + } + }, + { + "alias_name": "秋色温泉", + "alias_name_display": "秋色温泉", + "hash": "48121be6ac23c40b833653f041f850e6", + "id": "3320002", + "profile": { + "bust": "75", + "height": "148", + "hip": "77", + "waist": "50", + "weight": "41" + } + }, + { + "alias_name": "ノルウェー紀行", + "alias_name_display": "ノルウェー紀行", + "event": [ + { + "event_id": 1705, + "event_name": "アイドルプロデュース きらめくオーロラ紀行" + } + ], + "hash": "3b1f8e51a11ceb203de8a734f9f7dd35", + "id": "3228001", + "profile": { + "bust": "75", + "height": "148", + "hip": "77", + "waist": "50", + "weight": "41" + } + }, + { + "alias_name": "ノルウェー紀行", + "alias_name_display": "ノルウェー紀行", + "event": [ + { + "event_id": 1705, + "event_name": "アイドルプロデュース きらめくオーロラ紀行" + } + ], + "hash": "822067804b45cef47ecf9c2a870d2338", + "id": "3328002", + "profile": { + "bust": "75", + "height": "148", + "hip": "77", + "waist": "50", + "weight": "41" + } + }, + { + "alias_name": "ノルウェー紀行・S", + "alias_name_display": "ノルウェー紀行・S", + "event": [ + { + "event_id": 1705, + "event_name": "アイドルプロデュース きらめくオーロラ紀行" + } + ], + "hash": "b8546cf7912612caf25933c15242f9e1", + "id": "3228101", + "profile": { + "bust": "75", + "height": "148", + "hip": "77", + "waist": "50", + "weight": "41" + } + }, + { + "alias_name": "ノルウェー紀行・S", + "alias_name_display": "ノルウェー紀行・S", + "event": [ + { + "event_id": 1705, + "event_name": "アイドルプロデュース きらめくオーロラ紀行" + } + ], + "hash": "3a09dcfe3af2d7bfba567bb4d0eba840", + "id": "3328102", + "profile": { + "bust": "75", + "height": "148", + "hip": "77", + "waist": "50", + "weight": "41" + } + }, + { + "alias_name": "スライリーボス", + "alias_name_display": "スライリーボス", + "hash": "1450cb40e9291f7b9da2581ab121abd3", + "id": "3234101", + "profile": { + "bust": "75", + "height": "148", + "hip": "77", + "waist": "50", + "weight": "41" + } + }, + { + "alias_name": "スライリーボス", + "alias_name_display": "スライリーボス", + "hash": "037fba15808ccc155155baa5294fc88b", + "id": "3334102", + "profile": { + "bust": "75", + "height": "148", + "hip": "77", + "waist": "50", + "weight": "41" + } + }, + { + "alias_name": "スクールデビル", + "alias_name_display": "スクールデビル", + "hash": "0fcdc2e5ed21fa7c29cc526213ddf9f7", + "id": "3405901", + "profile": { + "bust": "75", + "height": "148", + "hip": "77", + "waist": "50", + "weight": "41" + } + }, + { + "alias_name": "スクールデビル", + "alias_name_display": "スクールデビル", + "hash": "cf9738e0a6277c8199423e64327f9a0b", + "id": "3505902", + "profile": { + "bust": "75", + "height": "148", + "hip": "77", + "waist": "50", + "weight": "41" + } + }, + { + "alias_name": "ロワイヤルジョーカー", + "alias_name_display": "ロワイヤルジョーカー", + "event": [ + { + "event_id": 803, + "event_name": "第3回アイドルLIVEロワイヤル" + } + ], + "hash": "1ea77064b2e69011cac2b271cea19e49", + "id": "3411101", + "profile": { + "bust": "75", + "height": "148", + "hip": "77", + "waist": "50", + "weight": "41" + } + }, + { + "alias_name": "ロワイヤルジョーカー", + "alias_name_display": "ロワイヤルジョーカー", + "event": [ + { + "event_id": 803, + "event_name": "第3回アイドルLIVEロワイヤル" + } + ], + "hash": "de341f17a3de36ce56f9ed87c89942be", + "id": "3511102", + "profile": { + "bust": "75", + "height": "148", + "hip": "77", + "waist": "50", + "weight": "41" + } + }, + { + "alias_name": "マジカルガール・フレイム", + "alias_name_display": "マジカルガール・フレイム", + "event": [ + { + "event_id": 1201, + "event_name": "目指せ魔女っ娘 アイドルチャレンジ" + } + ], + "hash": "89154211f3d3df8c15937f18b01c8641", + "id": "3414401", + "profile": { + "bust": "75", + "height": "148", + "hip": "77", + "waist": "50", + "weight": "41" + } + }, + { + "alias_name": "マジカルガール・フレイム", + "alias_name_display": "マジカルガール・フレイム", + "event": [ + { + "event_id": 1201, + "event_name": "目指せ魔女っ娘 アイドルチャレンジ" + } + ], + "hash": "f1bdc15bec53fd74b3e11de6e3a77eab", + "id": "3514402", + "profile": { + "bust": "75", + "height": "148", + "hip": "77", + "waist": "50", + "weight": "41" + } + }, + { + "alias_name": "マジカルガールS・フレイム", + "alias_name_display": "マジカルガールS・フレイム", + "event": [ + { + "event_id": 1201, + "event_name": "目指せ魔女っ娘 アイドルチャレンジ" + } + ], + "hash": "aeaa5782beec126061a02b18ddb73d77", + "id": "3414501", + "profile": { + "bust": "75", + "height": "148", + "hip": "77", + "waist": "50", + "weight": "41" + } + }, + { + "alias_name": "マジカルガールS・フレイム", + "alias_name_display": "マジカルガールS・フレイム", + "event": [ + { + "event_id": 1201, + "event_name": "目指せ魔女っ娘 アイドルチャレンジ" + } + ], + "hash": "c8bfa6571c1447a4a3eacf97e2233006", + "id": "3514502", + "profile": { + "bust": "75", + "height": "148", + "hip": "77", + "waist": "50", + "weight": "41" + } + }, + { + "alias_name": "イタズラ☆クイーン", + "alias_name_display": "イタズラ☆クイーン", + "event": [ + { + "event_id": "020", + "event_name": "第20回プロダクションマッチフェスティバル" + } + ], + "hash": "e2a0fb6aa0a659039f7f426e68ba3d5b", + "id": "3421601", + "profile": { + "bust": "75", + "height": "148", + "hip": "77", + "waist": "50", + "weight": "41" + } + }, + { + "alias_name": "イタズラ☆クイーン", + "alias_name_display": "イタズラ☆クイーン", + "event": [ + { + "event_id": "020", + "event_name": "第20回プロダクションマッチフェスティバル" + } + ], + "hash": "3c37b1a01265b61ac9fe41f006a58536", + "id": "3521602", + "profile": { + "bust": "75", + "height": "148", + "hip": "77", + "waist": "50", + "weight": "41" + } + }, + { + "alias_name": "マーチング☆ラウド", + "alias_name_display": "マーチング☆ラウド", + "hash": "6f4015168a5dd90b7c312c398ea46a7b", + "id": "3424401", + "profile": { + "bust": "75", + "height": "148", + "hip": "77", + "waist": "50", + "weight": "41" + } + }, + { + "alias_name": "マーチング☆ラウド", + "alias_name_display": "マーチング☆ラウド", + "hash": "6ebb6a6bb44de19413523eb7e59051b7", + "id": "3524402", + "profile": { + "bust": "75", + "height": "148", + "hip": "77", + "waist": "50", + "weight": "41" + } + }, + { + "alias_name": "ライブリージョーカー", + "alias_name_display": "ライブリージョーカー", + "event": [ + { + "event_id": 725, + "event_name": "第25回ドリームLIVEフェスティバル" + } + ], + "hash": "2c28f7721ac9396626a999e6339b2c88", + "id": "3435801", + "profile": { + "bust": "75", + "height": "148", + "hip": "77", + "waist": "50", + "weight": "41" + } + }, + { + "alias_name": "ライブリージョーカー", + "alias_name_display": "ライブリージョーカー", + "event": [ + { + "event_id": 725, + "event_name": "第25回ドリームLIVEフェスティバル" + } + ], + "hash": "f6119202da4cb7287258017f533e28a7", + "id": "3535802", + "profile": { + "bust": "75", + "height": "148", + "hip": "77", + "waist": "50", + "weight": "41" + } + } + ], + "idol_id": 154, + "idol_name": "小関麗奈", + "idol_name_display": "小関麗奈", + "units": [ + { + "id": "46", + "name": "ヒーローヴァーサス" + }, + { + "id": "59", + "name": "ムシバレイナと小春ちゃん" + }, + { + "id": "154", + "name": "秋色温泉" + }, + { + "id": "164", + "name": "マジカルテット" + }, + { + "id": "214", + "name": "L.M.B.G" + } + ] + }, + { + "aliases": [ + { + "hash": "ce41501e26f10c602104c8ea99058fac", + "id": "3002901", + "profile": { + "bust": "84", + "height": "160", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "hash": "9b84bbcea8121a56969c15b2173a4e41", + "id": "3102902", + "profile": { + "bust": "84", + "height": "160", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ショービズガール", + "alias_name_display": "ショービズガール", + "hash": "d080f0c1cd8fe5edd66a70752ad330f9", + "id": "3207401", + "profile": { + "bust": "84", + "height": "160", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ショービズガール", + "alias_name_display": "ショービズガール", + "hash": "11c15104d7999e6f18f959a5959525c1", + "id": "3307402", + "profile": { + "bust": "84", + "height": "160", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "エレガントスタイル", + "alias_name_display": "エレガントスタイル", + "event": [ + { + "event_id": "012", + "event_name": "第12回プロダクションマッチフェスティバル" + } + ], + "hash": "7397b8aef0b374bfda98b7585fa5975a", + "id": "3212601", + "profile": { + "bust": "84", + "height": "160", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "エレガントスタイル", + "alias_name_display": "エレガントスタイル", + "event": [ + { + "event_id": "012", + "event_name": "第12回プロダクションマッチフェスティバル" + } + ], + "hash": "2fcfc69158f584eda0c93f680cea3b9c", + "id": "3312602", + "profile": { + "bust": "84", + "height": "160", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "セレクトメイド", + "alias_name_display": "セレクトメイド", + "hash": "77254317d91c39c769bb9ea89a4dd7a9", + "id": "3216001", + "profile": { + "bust": "84", + "height": "160", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "セレクトメイド", + "alias_name_display": "セレクトメイド", + "hash": "eccdb961c4d022c046a8769df1db6ebb", + "id": "3316002", + "profile": { + "bust": "84", + "height": "160", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "シーパイレーツ", + "alias_name_display": "シーパイレーツ", + "event": [ + { + "event_id": 513, + "event_name": "海賊公演 オーシャンクルーズ" + } + ], + "hash": "78f0e9e484234a2349b36a911138382b", + "id": "3217901", + "profile": { + "bust": "84", + "height": "160", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "シーパイレーツ", + "alias_name_display": "シーパイレーツ", + "event": [ + { + "event_id": 513, + "event_name": "海賊公演 オーシャンクルーズ" + } + ], + "hash": "2140acc12cf828a2f2a3edb5d5b8c6fa", + "id": "3317902", + "profile": { + "bust": "84", + "height": "160", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ガールズモード", + "alias_name_display": "ガールズモード", + "event": [ + { + "event_id": 713, + "event_name": "第13回ドリームLIVEフェスティバル" + } + ], + "hash": "ed18ec00d1882aab7d3bffd12eeb6ff7", + "id": "3223201", + "profile": { + "bust": "84", + "height": "160", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ガールズモード", + "alias_name_display": "ガールズモード", + "event": [ + { + "event_id": 713, + "event_name": "第13回ドリームLIVEフェスティバル" + } + ], + "hash": "6a45bdcaacbacf08ace0cdf463f8564c", + "id": "3323202", + "profile": { + "bust": "84", + "height": "160", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ナデシコI.C", + "alias_name_display": "ナデシコI.C", + "event": [ + { + "event_id": 1207, + "event_name": "目指せ大和撫子 アイドルチャレンジ" + } + ], + "hash": "45d8d8a1d481ed88a1b379ae38724496", + "id": "3325402", + "profile": { + "bust": "84", + "height": "160", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "フレッシュPG", + "alias_name_display": "フレッシュPG", + "hash": "c1de4993ff2cb610b6bb1df718fac98c", + "id": "3227801", + "profile": { + "bust": "84", + "height": "160", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "フレッシュPG", + "alias_name_display": "フレッシュPG", + "hash": "af02f2cc9eff0cc1b65cdfb25c4d7e46", + "id": "3327802", + "profile": { + "bust": "84", + "height": "160", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ビターバレンタイン", + "alias_name_display": "ビターバレンタイン", + "hash": "5d714716503f34d64e3793fd1a2f3d16", + "id": "3405001", + "profile": { + "bust": "84", + "height": "160", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ビターバレンタイン", + "alias_name_display": "ビターバレンタイン", + "hash": "3d652688429abc27f23dfe08203c0a2c", + "id": "3505002", + "profile": { + "bust": "84", + "height": "160", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "あたしの磨き方", + "alias_name_display": "あたしの磨き方", + "event": [ + { + "event_id": 1302, + "event_name": "第2回プロダクションマッチフェスティバルS" + } + ], + "hash": "6c2a19b5543568e87ea94e385348ae09", + "id": "3418101", + "profile": { + "bust": "84", + "height": "160", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "あたしの磨き方", + "alias_name_display": "あたしの磨き方", + "event": [ + { + "event_id": 1302, + "event_name": "第2回プロダクションマッチフェスティバルS" + } + ], + "hash": "80d9025585c14a2d82acfed3696ed523", + "id": "3518102", + "profile": { + "bust": "84", + "height": "160", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "華道の大和撫子", + "alias_name_display": "華道の大和撫子", + "event": [ + { + "event_id": 1207, + "event_name": "目指せ大和撫子 アイドルチャレンジ" + } + ], + "hash": "c3dee40a36c07b80e0ac30fc33656961", + "id": "3426601", + "profile": { + "bust": "84", + "height": "160", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "華道の大和撫子", + "alias_name_display": "華道の大和撫子", + "event": [ + { + "event_id": 1207, + "event_name": "目指せ大和撫子 アイドルチャレンジ" + } + ], + "hash": "d13a2d0afa9cf52d1649abe6cfb8d90c", + "id": "3526602", + "profile": { + "bust": "84", + "height": "160", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "華道の大和撫子・S", + "alias_name_display": "華道の大和撫子・S", + "event": [ + { + "event_id": 1207, + "event_name": "目指せ大和撫子 アイドルチャレンジ" + } + ], + "hash": "a7a27109f7578b5ce87588c613000daf", + "id": "3426701", + "profile": { + "bust": "84", + "height": "160", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "華道の大和撫子・S", + "alias_name_display": "華道の大和撫子・S", + "event": [ + { + "event_id": 1207, + "event_name": "目指せ大和撫子 アイドルチャレンジ" + } + ], + "hash": "1bf6398daee19fd22d81891ea63f807d", + "id": "3526702", + "profile": { + "bust": "84", + "height": "160", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ガールズアドバンス", + "alias_name_display": "ガールズアドバンス", + "event": [ + { + "event_id": 1408, + "event_name": "第8回ぷちデレラコレクション" + } + ], + "hash": "2dc7b60647c7602b90c9424e99a4e8a2", + "id": "3434601", + "profile": { + "bust": "84", + "height": "160", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ガールズアドバンス", + "alias_name_display": "ガールズアドバンス", + "event": [ + { + "event_id": 1408, + "event_name": "第8回ぷちデレラコレクション" + } + ], + "hash": "a0a4ffd9f9b3ccef042c60afb65fcf16", + "id": "3534602", + "profile": { + "bust": "84", + "height": "160", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "フェミニンチアー", + "alias_name_display": "フェミニンチアー", + "event": [ + { + "event_id": 1511, + "event_name": "第11回チーム対抗トークバトルショー" + } + ], + "hash": "b52cc985711baa1789287d1e8aa54152", + "id": "3438301", + "profile": { + "bust": "84", + "height": "160", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "フェミニンチアー", + "alias_name_display": "フェミニンチアー", + "event": [ + { + "event_id": 1511, + "event_name": "第11回チーム対抗トークバトルショー" + } + ], + "hash": "7b95eee4202b9c3265ba5a41194b1d34", + "id": "3538302", + "profile": { + "bust": "84", + "height": "160", + "hip": "80", + "waist": "56", + "weight": "45" + } + } + ], + "idol_id": 155, + "idol_name": "衛藤美紗希", + "idol_name_display": "衛藤美紗希", + "units": [ + { + "id": "89", + "name": "ガールズ・パワー" + }, + { + "id": "210", + "name": "ロワイヤルスタイルND" + } + ] + }, + { + "aliases": [ + { + "hash": "f07c10e7c7e68491371b5c0b6fcbf1a6", + "id": "3003101", + "profile": { + "bust": "73", + "height": "142", + "hip": "75", + "waist": "53", + "weight": "35" + } + }, + { + "hash": "efa9219cd5f005681c2c8f35faf2b281", + "id": "3103102", + "profile": { + "bust": "73", + "height": "142", + "hip": "75", + "waist": "53", + "weight": "35" + } + }, + { + "alias_name": "クリスマスパーティー", + "alias_name_display": "クリスマスパーティー", + "hash": "1970c0edfde84ab46dac71b558e1b491", + "id": "3207701", + "profile": { + "bust": "73", + "height": "142", + "hip": "75", + "waist": "53", + "weight": "35" + } + }, + { + "alias_name": "クリスマスパーティー", + "alias_name_display": "クリスマスパーティー", + "hash": "0fd92436ed9230b2eb474918832a34bf", + "id": "3307702", + "profile": { + "bust": "73", + "height": "142", + "hip": "75", + "waist": "53", + "weight": "35" + } + }, + { + "alias_name": "絶叫★ヴァンパイア", + "alias_name_display": "絶叫★ヴァンパイア", + "hash": "34bf5a625a64f94a63b733219a6a5552", + "id": "3405501", + "profile": { + "bust": "73", + "height": "142", + "hip": "75", + "waist": "53", + "weight": "35" + } + }, + { + "alias_name": "絶叫★ヴァンパイア", + "alias_name_display": "絶叫★ヴァンパイア", + "hash": "e6f94f2ab308857c0c0bb39db6f8b44b", + "id": "3505502", + "profile": { + "bust": "73", + "height": "142", + "hip": "75", + "waist": "53", + "weight": "35" + } + }, + { + "alias_name": "あやしい少女", + "alias_name_display": "あやしい少女", + "event": [ + { + "event_id": "011", + "event_name": "第11回プロダクションマッチフェスティバル" + } + ], + "hash": "0a7f97b5a04101aaf4c0f079bb970612", + "id": "3407801", + "profile": { + "bust": "73", + "height": "142", + "hip": "75", + "waist": "53", + "weight": "35" + } + }, + { + "alias_name": "あやしい少女", + "alias_name_display": "あやしい少女", + "event": [ + { + "event_id": "011", + "event_name": "第11回プロダクションマッチフェスティバル" + } + ], + "hash": "68cf9aa71ce3ce45e7b62eceec103417", + "id": "3507802", + "profile": { + "bust": "73", + "height": "142", + "hip": "75", + "waist": "53", + "weight": "35" + } + }, + { + "alias_name": "ブラックバレンタイン", + "alias_name_display": "ブラックバレンタイン", + "hash": "f86bda677cae35d624ba494f3bb55b5c", + "id": "3411401", + "profile": { + "bust": "73", + "height": "142", + "hip": "75", + "waist": "53", + "weight": "35" + } + }, + { + "alias_name": "ブラックバレンタイン", + "alias_name_display": "ブラックバレンタイン", + "hash": "70b15d671e957c51bbcf418fab66baef", + "id": "3511402", + "profile": { + "bust": "73", + "height": "142", + "hip": "75", + "waist": "53", + "weight": "35" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "5c0203a4bfdf4ee9d147a04274cfa231", + "id": "3413601", + "profile": { + "bust": "73", + "height": "142", + "hip": "75", + "waist": "53", + "weight": "35" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "069ce3db030a5ee081a1fa53626e4e30", + "id": "3513602", + "profile": { + "bust": "73", + "height": "142", + "hip": "75", + "waist": "53", + "weight": "35" + } + }, + { + "alias_name": "ラブ☆キノコ", + "alias_name_display": "ラブ☆キノコ", + "hash": "7ffa484262f73c8a238d9246cf1b0814", + "id": "3415001", + "profile": { + "bust": "73", + "height": "142", + "hip": "75", + "waist": "53", + "weight": "35" + } + }, + { + "alias_name": "ラブ☆キノコ", + "alias_name_display": "ラブ☆キノコ", + "hash": "981498bd59de8a3b833367e486c09b1a", + "id": "3515002", + "profile": { + "bust": "73", + "height": "142", + "hip": "75", + "waist": "53", + "weight": "35" + } + }, + { + "alias_name": "ナイトメア・キノコ", + "alias_name_display": "ナイトメア・キノコ", + "hash": "e94008cbc6d10fcb7568c0350661979d", + "id": "3422001", + "profile": { + "bust": "73", + "height": "142", + "hip": "75", + "waist": "53", + "weight": "35" + } + }, + { + "alias_name": "ナイトメア・キノコ", + "alias_name_display": "ナイトメア・キノコ", + "hash": "bf8d8709702aeee5c69ae801d11edd37", + "id": "3522002", + "profile": { + "bust": "73", + "height": "142", + "hip": "75", + "waist": "53", + "weight": "35" + } + }, + { + "alias_name": "爆発★キノコ", + "alias_name_display": "爆発★キノコ", + "hash": "3f7874784573946c967d1fb2056dbeae", + "id": "3428801", + "profile": { + "bust": "73", + "height": "142", + "hip": "75", + "waist": "53", + "weight": "35" + } + }, + { + "alias_name": "爆発★キノコ", + "alias_name_display": "爆発★キノコ", + "hash": "122c028d272b414af53fb6331e1e1408", + "id": "3528802", + "profile": { + "bust": "73", + "height": "142", + "hip": "75", + "waist": "53", + "weight": "35" + } + }, + { + "alias_name": "熱風★マーメイド", + "alias_name_display": "熱風★マーメイド", + "hash": "d923a0d3e684bbc79bdb9c76538e3f27", + "id": "3433501", + "profile": { + "bust": "73", + "height": "142", + "hip": "75", + "waist": "53", + "weight": "35" + } + }, + { + "alias_name": "熱風★マーメイド", + "alias_name_display": "熱風★マーメイド", + "hash": "1f8420bcda1dbe084bb88738dfb8ebee", + "id": "3533502", + "profile": { + "bust": "73", + "height": "142", + "hip": "75", + "waist": "53", + "weight": "35" + } + }, + { + "alias_name": "5thアニバーサリー", + "alias_name_display": "5thアニバーサリー", + "event": [ + { + "event_id": 1708, + "event_name": "アイドルプロデュース the 5th Anniversary" + } + ], + "hash": "6c3cedcaf10692458192b79ba6324334", + "id": "3436401", + "profile": { + "bust": "73", + "height": "142", + "hip": "75", + "waist": "53", + "weight": "35" + } + }, + { + "alias_name": "5thアニバーサリー", + "alias_name_display": "5thアニバーサリー", + "event": [ + { + "event_id": 1708, + "event_name": "アイドルプロデュース the 5th Anniversary" + } + ], + "hash": "957dfa01a9625ff274c6d7d600d5e163", + "id": "3536402", + "profile": { + "bust": "73", + "height": "142", + "hip": "75", + "waist": "53", + "weight": "35" + } + }, + { + "alias_name": "5thアニバーサリー・S", + "alias_name_display": "5thアニバーサリー・S", + "event": [ + { + "event_id": 1708, + "event_name": "アイドルプロデュース the 5th Anniversary" + } + ], + "hash": "965ed7a9106c0c6e8ffe951bbabbd530", + "id": "3436501", + "profile": { + "bust": "73", + "height": "142", + "hip": "75", + "waist": "53", + "weight": "35" + } + }, + { + "alias_name": "5thアニバーサリー・S", + "alias_name_display": "5thアニバーサリー・S", + "event": [ + { + "event_id": 1708, + "event_name": "アイドルプロデュース the 5th Anniversary" + } + ], + "hash": "22aced971fa5898c838516e6f15fe27d", + "id": "3536502", + "profile": { + "bust": "73", + "height": "142", + "hip": "75", + "waist": "53", + "weight": "35" + } + } + ], + "idol_id": 156, + "idol_name": "星輝子", + "idol_name_display": "星輝子", + "units": [ + { + "id": "17", + "name": "サイレントスクリーマー" + }, + { + "id": "79", + "name": "NiGHT ENCOUNTER" + }, + { + "id": "85", + "name": "アンダーザデスク" + }, + { + "id": "90", + "name": "カワイイボクと142's" + }, + { + "id": "94", + "name": "シャイニングゴッドチェリー" + }, + { + "id": "108", + "name": "individuals" + }, + { + "id": "111", + "name": "アンチェイン・シグナル" + }, + { + "id": "187", + "name": "NEX-US" + }, + { + "id": "203", + "name": "ゼッケンズ" + } + ] + }, + { + "aliases": [ + { + "hash": "b87dd23cc34603944cd75e87db7435d8", + "id": "3003201", + "profile": { + "bust": "92", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "47" + } + }, + { + "hash": "fbc70efe03d1bd54fbd28175460510a8", + "id": "3103202", + "profile": { + "bust": "92", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "47" + } + }, + { + "alias_name": "ハイレグマーメイド", + "alias_name_display": "ハイレグマーメイド", + "hash": "ecffbe70cac95bf6992918d5e652a8f7", + "id": "3208301", + "profile": { + "bust": "92", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "47" + } + }, + { + "alias_name": "ハイレグマーメイド", + "alias_name_display": "ハイレグマーメイド", + "hash": "d5622930911cee8dfb082a6144ab24b9", + "id": "3308302", + "profile": { + "bust": "92", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "47" + } + }, + { + "alias_name": "桜祭り", + "alias_name_display": "桜祭り", + "event": [ + { + "event_id": 406, + "event_name": "アイドルプロデュース 春の桜祭り編" + } + ], + "hash": "e9f5d3a721a4e8b8dbbbab8eb237d7de", + "id": "3209401", + "profile": { + "bust": "92", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "47" + } + }, + { + "alias_name": "桜祭り", + "alias_name_display": "桜祭り", + "event": [ + { + "event_id": 406, + "event_name": "アイドルプロデュース 春の桜祭り編" + } + ], + "hash": "86dab11a4ee3cf83fe7e3e3a5372fc09", + "id": "3309402", + "profile": { + "bust": "92", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "47" + } + }, + { + "alias_name": "桜祭りスマイル", + "alias_name_display": "桜祭りスマイル", + "event": [ + { + "event_id": 406, + "event_name": "アイドルプロデュース 春の桜祭り編" + } + ], + "hash": "377fbdfb1d83aa9567368f6f6859ba59", + "id": "3209501", + "profile": { + "bust": "92", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "47" + } + }, + { + "alias_name": "桜祭りスマイル", + "alias_name_display": "桜祭りスマイル", + "event": [ + { + "event_id": 406, + "event_name": "アイドルプロデュース 春の桜祭り編" + } + ], + "hash": "d721cc2ce2e66a6b1e23fce55363a5cf", + "id": "3309502", + "profile": { + "bust": "92", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "47" + } + }, + { + "alias_name": "ワーキング・ダーティ", + "alias_name_display": "ワーキング・ダーティ", + "hash": "d9dd32e691096c60b1c0601c95925066", + "id": "3216901", + "profile": { + "bust": "92", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "47" + } + }, + { + "alias_name": "ワーキング・ダーティ", + "alias_name_display": "ワーキング・ダーティ", + "hash": "ef3322348ca2d2ea6fe9667562652fbd", + "id": "3316902", + "profile": { + "bust": "92", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "47" + } + }, + { + "alias_name": "ウェディングI.C", + "alias_name_display": "ウェディングI.C", + "event": [ + { + "event_id": 1206, + "event_name": "目指せウェディングモデル アイドルチャレンジ" + } + ], + "hash": "e752c3b2e14d3d50dce6c8218aa6e1a7", + "id": "3323402", + "profile": { + "bust": "92", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "47" + } + }, + { + "alias_name": "デンジャーフレッシュ", + "alias_name_display": "デンジャーフレッシュ", + "hash": "41828c6114091713176d8f841add07d0", + "id": "3225701", + "profile": { + "bust": "92", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "47" + } + }, + { + "alias_name": "デンジャーフレッシュ", + "alias_name_display": "デンジャーフレッシュ", + "hash": "411086d51c041d47c644c4acb2bcbb8f", + "id": "3325702", + "profile": { + "bust": "92", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "47" + } + }, + { + "alias_name": "酔いどれお姉さん", + "alias_name_display": "酔いどれお姉さん", + "hash": "f0c2e711d5f1c4d49bfcd612c0903e33", + "id": "3407501", + "profile": { + "bust": "92", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "47" + } + }, + { + "alias_name": "酔いどれお姉さん", + "alias_name_display": "酔いどれお姉さん", + "hash": "698e43a20181b5d63fde302f85247b21", + "id": "3507502", + "profile": { + "bust": "92", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "47" + } + }, + { + "alias_name": "やりすぎお姉さん", + "alias_name_display": "やりすぎお姉さん", + "event": [ + { + "event_id": 212, + "event_name": "アイドルサバイバル 秋の大運動会" + } + ], + "hash": "0dbb918c0150f688583630318d8e5cf0", + "id": "3409301", + "profile": { + "bust": "92", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "47" + } + }, + { + "alias_name": "やりすぎお姉さん", + "alias_name_display": "やりすぎお姉さん", + "event": [ + { + "event_id": 212, + "event_name": "アイドルサバイバル 秋の大運動会" + } + ], + "hash": "bccea5972ad490da05d26a045a2f988f", + "id": "3509302", + "profile": { + "bust": "92", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "47" + } + }, + { + "alias_name": "デンジャラスアダルティ", + "alias_name_display": "デンジャラスアダルティ", + "hash": "60f7cf692d9c64ad96e43a115b9e9a76", + "id": "3416401", + "profile": { + "bust": "92", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "47" + } + }, + { + "alias_name": "デンジャラスアダルティ", + "alias_name_display": "デンジャラスアダルティ", + "hash": "7f6090794a05cb3592915bf8b5be2d6a", + "id": "3516402", + "profile": { + "bust": "92", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "47" + } + }, + { + "alias_name": "ボンバー・ロワイヤル", + "alias_name_display": "ボンバー・ロワイヤル", + "event": [ + { + "event_id": 810, + "event_name": "アイドルLIVEロワイヤル バレンタインSP" + } + ], + "hash": "9205795bcfa72efcbaf3fbc3d3ed2507", + "id": "3421501", + "profile": { + "bust": "92", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "47" + } + }, + { + "alias_name": "ボンバー・ロワイヤル", + "alias_name_display": "ボンバー・ロワイヤル", + "event": [ + { + "event_id": 810, + "event_name": "アイドルLIVEロワイヤル バレンタインSP" + } + ], + "hash": "5c6a7d91faf763f00693b4571c4ea210", + "id": "3521502", + "profile": { + "bust": "92", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "47" + } + }, + { + "alias_name": "はりきり花嫁", + "alias_name_display": "はりきり花嫁", + "event": [ + { + "event_id": 1206, + "event_name": "目指せウェディングモデル アイドルチャレンジ" + } + ], + "hash": "1683444bf90b1c5b16e8d8cf56a46191", + "id": "3424101", + "profile": { + "bust": "92", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "47" + } + }, + { + "alias_name": "はりきり花嫁", + "alias_name_display": "はりきり花嫁", + "event": [ + { + "event_id": 1206, + "event_name": "目指せウェディングモデル アイドルチャレンジ" + } + ], + "hash": "570d11792a06edcd84948256ea98650c", + "id": "3524102", + "profile": { + "bust": "92", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "47" + } + }, + { + "alias_name": "はりきり花嫁・S", + "alias_name_display": "はりきり花嫁・S", + "event": [ + { + "event_id": 1206, + "event_name": "目指せウェディングモデル アイドルチャレンジ" + } + ], + "hash": "549cdd87b8efe48b3bc5de9aff27424c", + "id": "3424201", + "profile": { + "bust": "92", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "47" + } + }, + { + "alias_name": "はりきり花嫁・S", + "alias_name_display": "はりきり花嫁・S", + "event": [ + { + "event_id": 1206, + "event_name": "目指せウェディングモデル アイドルチャレンジ" + } + ], + "hash": "8d93c8ee952ca04150a7dd645b4be51f", + "id": "3524202", + "profile": { + "bust": "92", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "47" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "40e5ce644fe9b9d8d4db3797c8df1636", + "id": "3427701", + "profile": { + "bust": "92", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "47" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "6967d76548f6c4bcefbdea44d9f0058a", + "id": "3527702", + "profile": { + "bust": "92", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "47" + } + }, + { + "alias_name": "極楽お姉さん", + "alias_name_display": "極楽お姉さん", + "hash": "bf738f2f9689ce80fd3c885b1baf80f7", + "id": "3432601", + "profile": { + "bust": "92", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "47" + } + }, + { + "alias_name": "極楽お姉さん", + "alias_name_display": "極楽お姉さん", + "hash": "c0b85368c419f35c0f544181e7b07d0c", + "id": "3532602", + "profile": { + "bust": "92", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "47" + } + }, + { + "alias_name": "深秋いろは", + "alias_name_display": "深秋いろは", + "hash": "d6f4c8132723e974386c6f16355d77b3", + "id": "3435901", + "profile": { + "bust": "92", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "47" + } + }, + { + "alias_name": "深秋いろは", + "alias_name_display": "深秋いろは", + "hash": "5d00b2bc12676b4ae3679763dab02d1c", + "id": "3535902", + "profile": { + "bust": "92", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "47" + } + }, + { + "alias_name": "ギルティグローリー", + "alias_name_display": "ギルティグローリー", + "hash": "6d97cb9bb465d14cde626b232bb59928", + "id": "3439701", + "profile": { + "bust": "92", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "47" + } + }, + { + "alias_name": "ギルティグローリー", + "alias_name_display": "ギルティグローリー", + "hash": "c28e1707af95249b5b67568cfb748a50", + "id": "3539702", + "profile": { + "bust": "92", + "height": "152", + "hip": "84", + "waist": "58", + "weight": "47" + } + } + ], + "idol_id": 157, + "idol_name": "片桐早苗", + "idol_name_display": "片桐早苗", + "units": [ + { + "id": "8", + "name": "越後小町" + }, + { + "id": "19", + "name": "さつきの頃" + }, + { + "id": "88", + "name": "桜花小町" + }, + { + "id": "124", + "name": "女神たちの夏宴" + }, + { + "id": "147", + "name": "セクシーギルティ" + }, + { + "id": "184", + "name": "宵乙女" + }, + { + "id": "202", + "name": "サンフラワー" + } + ] + }, + { + "aliases": [ + { + "hash": "c55d799ec6a7189b86c2c61309ff705e", + "id": "3003301", + "profile": { + "bust": "81", + "height": "157", + "hip": "80", + "waist": "58", + "weight": "44" + } + }, + { + "hash": "af03f83edd3f6081e7a94f7dee76c69c", + "id": "3103302", + "profile": { + "bust": "81", + "height": "157", + "hip": "80", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "スパニッシュスタイル", + "alias_name_display": "スパニッシュスタイル", + "event": [ + { + "event_id": 504, + "event_name": "アイドルLIVEツアーinスペイン" + } + ], + "hash": "366697976ec9eadf5d9af8aa05627c06", + "id": "3210001", + "profile": { + "bust": "81", + "height": "157", + "hip": "80", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "スパニッシュスタイル", + "alias_name_display": "スパニッシュスタイル", + "event": [ + { + "event_id": 504, + "event_name": "アイドルLIVEツアーinスペイン" + } + ], + "hash": "0704a849a66af4661b4b5fca9bdd29d8", + "id": "3310002", + "profile": { + "bust": "81", + "height": "157", + "hip": "80", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "おちゃめなサイキッカー", + "alias_name_display": "おちゃめなサイキッカー", + "hash": "8e63cd4a640f8f1d81aa58b0f5b965e1", + "id": "3211801", + "profile": { + "bust": "81", + "height": "157", + "hip": "80", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "おちゃめなサイキッカー", + "alias_name_display": "おちゃめなサイキッカー", + "hash": "206627c86b320778aa94bb336021a57f", + "id": "3311802", + "profile": { + "bust": "81", + "height": "157", + "hip": "80", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "ビター&スウィート", + "alias_name_display": "ビター&スウィート", + "hash": "ffb2c98591b0c9c025db8d210b9eceb7", + "id": "3227501", + "profile": { + "bust": "81", + "height": "157", + "hip": "80", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "ビター&スウィート", + "alias_name_display": "ビター&スウィート", + "hash": "1bad11e08f6d67660858e2a625af9706", + "id": "3327502", + "profile": { + "bust": "81", + "height": "157", + "hip": "80", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "湯けむりサイキッカー", + "alias_name_display": "湯けむりサイキッカー", + "hash": "0662af7af3c7bf97ba34266f06737dd4", + "id": "3409501", + "profile": { + "bust": "81", + "height": "157", + "hip": "80", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "湯けむりサイキッカー", + "alias_name_display": "湯けむりサイキッカー", + "hash": "756110c37e69d992aa3a8d4ba539f3e8", + "id": "3509502", + "profile": { + "bust": "81", + "height": "157", + "hip": "80", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "3d3269835487382b0df4e3c8579bb76a", + "id": "3413701", + "profile": { + "bust": "81", + "height": "157", + "hip": "80", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "753c417a7ec341db7cea1b1310039afe", + "id": "3513702", + "profile": { + "bust": "81", + "height": "157", + "hip": "80", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "サイキックマジシャン", + "alias_name_display": "サイキックマジシャン", + "hash": "6b9c0707971d95fd191fea1138c10722", + "id": "3414001", + "profile": { + "bust": "81", + "height": "157", + "hip": "80", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "サイキックマジシャン", + "alias_name_display": "サイキックマジシャン", + "hash": "cab748d4dfb5cbe80afb594b3c3f3a2c", + "id": "3514002", + "profile": { + "bust": "81", + "height": "157", + "hip": "80", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "大地のぱわー☆", + "alias_name_display": "大地のぱわー☆", + "event": [ + { + "event_id": 414, + "event_name": "どうぶつアドベンチャー オーストラリア編" + } + ], + "hash": "99264bf5143c8ef20d5799bcee877921", + "id": "3417101", + "profile": { + "bust": "81", + "height": "157", + "hip": "80", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "大地のぱわー☆", + "alias_name_display": "大地のぱわー☆", + "event": [ + { + "event_id": 414, + "event_name": "どうぶつアドベンチャー オーストラリア編" + } + ], + "hash": "9549306aa4c5394f93ee2eb93809485d", + "id": "3517102", + "profile": { + "bust": "81", + "height": "157", + "hip": "80", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "さいきっく☆ボイス", + "alias_name_display": "さいきっく☆ボイス", + "hash": "4d914ac85a06f7643c5b327242a6c30b", + "id": "3422201", + "profile": { + "bust": "81", + "height": "157", + "hip": "80", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "さいきっく☆ボイス", + "alias_name_display": "さいきっく☆ボイス", + "hash": "210300780515553e62e96bea844e9a8d", + "id": "3522202", + "profile": { + "bust": "81", + "height": "157", + "hip": "80", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "ミラクルパティシエール☆", + "alias_name_display": "ミラクルパティシエール☆", + "event": [ + { + "event_id": 1801, + "event_name": "アイドルバラエティ 究極のショートケーキを作ろう!" + } + ], + "hash": "e60c6c9469235806c84c200bd1336dc6", + "id": "3426301", + "profile": { + "bust": "81", + "height": "157", + "hip": "80", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "ミラクルパティシエール☆", + "alias_name_display": "ミラクルパティシエール☆", + "event": [ + { + "event_id": 1801, + "event_name": "アイドルバラエティ 究極のショートケーキを作ろう!" + } + ], + "hash": "cd82605167df5280f7a1496dfb819801", + "id": "3526302", + "profile": { + "bust": "81", + "height": "157", + "hip": "80", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "海のぱわー☆", + "alias_name_display": "海のぱわー☆", + "event": [ + { + "event_id": 1508, + "event_name": "チーム対抗トークバトルショー in SUMMER" + } + ], + "hash": "fcadcbebe66c5cbafbfcda3fde7aed3c", + "id": "3434301", + "profile": { + "bust": "81", + "height": "157", + "hip": "80", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "海のぱわー☆", + "alias_name_display": "海のぱわー☆", + "event": [ + { + "event_id": 1508, + "event_name": "チーム対抗トークバトルショー in SUMMER" + } + ], + "hash": "c45a6475300f696474afa6e473eaef75", + "id": "3534302", + "profile": { + "bust": "81", + "height": "157", + "hip": "80", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "夕焼けテレパシー", + "alias_name_display": "夕焼けテレパシー", + "hash": "b0c6e9c33f363fe1bfea05c3d007983c", + "id": "3438201", + "profile": { + "bust": "81", + "height": "157", + "hip": "80", + "waist": "58", + "weight": "44" + } + }, + { + "alias_name": "夕焼けテレパシー", + "alias_name_display": "夕焼けテレパシー", + "hash": "64bfd146a17bcae9c53f47b939d3199a", + "id": "3538202", + "profile": { + "bust": "81", + "height": "157", + "hip": "80", + "waist": "58", + "weight": "44" + } + } + ], + "idol_id": 158, + "idol_name": "堀裕子", + "idol_name_display": "堀裕子", + "units": [ + { + "id": "15", + "name": "サイキックヒーツ" + }, + { + "id": "28", + "name": "スパニッシュスタイル" + }, + { + "id": "56", + "name": "ミステリアスガールズ" + }, + { + "id": "80", + "name": "P・U" + }, + { + "id": "147", + "name": "セクシーギルティ" + }, + { + "id": "190", + "name": "サマプリ" + }, + { + "id": "203", + "name": "ゼッケンズ" + } + ] + }, + { + "aliases": [ + { + "hash": "90e1a482a68770c0117ff910db7209c2", + "id": "3003401", + "profile": { + "bust": "86", + "height": "172", + "hip": "83", + "waist": "59", + "weight": "49" + } + }, + { + "hash": "2deaaf0de326f04174e4c0187d20d1e2", + "id": "3103402", + "profile": { + "bust": "86", + "height": "172", + "hip": "83", + "waist": "59", + "weight": "49" + } + }, + { + "alias_name": "浴衣祭り", + "alias_name_display": "浴衣祭り", + "hash": "9d3b68f92212bd2b95d73a5ba2358b4e", + "id": "3211201", + "profile": { + "bust": "86", + "height": "172", + "hip": "83", + "waist": "59", + "weight": "49" + } + }, + { + "alias_name": "浴衣祭り", + "alias_name_display": "浴衣祭り", + "hash": "bb91c7a10a12b5a3ed01557f161ba4a1", + "id": "3311202", + "profile": { + "bust": "86", + "height": "172", + "hip": "83", + "waist": "59", + "weight": "49" + } + }, + { + "alias_name": "スペーススタイル", + "alias_name_display": "スペーススタイル", + "event": [ + { + "event_id": 508, + "event_name": "LIVEツアーカーニバルinスペースワールド" + } + ], + "hash": "c996e8c27de072d99879b307e536a874", + "id": "3213501", + "profile": { + "bust": "86", + "height": "172", + "hip": "83", + "waist": "59", + "weight": "49" + } + }, + { + "alias_name": "スペーススタイル", + "alias_name_display": "スペーススタイル", + "event": [ + { + "event_id": 508, + "event_name": "LIVEツアーカーニバルinスペースワールド" + } + ], + "hash": "d84b4a1cfb08637667606e72446d417b", + "id": "3313502", + "profile": { + "bust": "86", + "height": "172", + "hip": "83", + "waist": "59", + "weight": "49" + } + }, + { + "alias_name": "パラダイスリゾート", + "alias_name_display": "パラダイスリゾート", + "hash": "115667c89bcb3a1e593ccddf15bb1709", + "id": "3218501", + "profile": { + "bust": "86", + "height": "172", + "hip": "83", + "waist": "59", + "weight": "49" + } + }, + { + "alias_name": "パラダイスリゾート", + "alias_name_display": "パラダイスリゾート", + "hash": "d3a6e3bf2a9fa94c1acfb5b91dccce53", + "id": "3318502", + "profile": { + "bust": "86", + "height": "172", + "hip": "83", + "waist": "59", + "weight": "49" + } + }, + { + "alias_name": "セルフセレクト", + "alias_name_display": "セルフセレクト", + "hash": "6d5fe6750042dc9c21589f254b91e1e5", + "id": "3220301", + "profile": { + "bust": "86", + "height": "172", + "hip": "83", + "waist": "59", + "weight": "49" + } + }, + { + "alias_name": "セルフセレクト", + "alias_name_display": "セルフセレクト", + "hash": "0ed637b2de3041121021c52989c82533", + "id": "3320302", + "profile": { + "bust": "86", + "height": "172", + "hip": "83", + "waist": "59", + "weight": "49" + } + }, + { + "alias_name": "人狼将軍", + "alias_name_display": "人狼将軍", + "event": [ + { + "event_id": 522, + "event_name": "魔界公演 幽鬱女王とハロウィンの祝祭" + } + ], + "hash": "2dd54667369628560e906717044d5d92", + "id": "3325902", + "profile": { + "bust": "86", + "height": "172", + "hip": "83", + "waist": "59", + "weight": "49" + } + }, + { + "alias_name": "人波のスイマー", + "alias_name_display": "人波のスイマー", + "hash": "1f39f1a654d566d8bf94dda9cc0d54f6", + "id": "3412101", + "profile": { + "bust": "86", + "height": "172", + "hip": "83", + "waist": "59", + "weight": "49" + } + }, + { + "alias_name": "人波のスイマー", + "alias_name_display": "人波のスイマー", + "hash": "3615fdeb23d847c39fb844c9bf446ff9", + "id": "3512102", + "profile": { + "bust": "86", + "height": "172", + "hip": "83", + "waist": "59", + "weight": "49" + } + }, + { + "alias_name": "ドルフィンチアー", + "alias_name_display": "ドルフィンチアー", + "event": [ + { + "event_id": 1501, + "event_name": "チーム対抗トークバトルショー" + } + ], + "hash": "427b561348d55eed4db451a497176f95", + "id": "3423101", + "profile": { + "bust": "86", + "height": "172", + "hip": "83", + "waist": "59", + "weight": "49" + } + }, + { + "alias_name": "ドルフィンチアー", + "alias_name_display": "ドルフィンチアー", + "event": [ + { + "event_id": 1501, + "event_name": "チーム対抗トークバトルショー" + } + ], + "hash": "2ab8abfbcbada4e1877149d06f200fad", + "id": "3523102", + "profile": { + "bust": "86", + "height": "172", + "hip": "83", + "waist": "59", + "weight": "49" + } + }, + { + "alias_name": "ホットクルージング", + "alias_name_display": "ホットクルージング", + "hash": "c4956742e83de544e7bb1f10bf4362e4", + "id": "3433701", + "profile": { + "bust": "86", + "height": "172", + "hip": "83", + "waist": "59", + "weight": "49" + } + }, + { + "alias_name": "ホットクルージング", + "alias_name_display": "ホットクルージング", + "hash": "d97b128c8dbc9235834e5e045e75339c", + "id": "3533702", + "profile": { + "bust": "86", + "height": "172", + "hip": "83", + "waist": "59", + "weight": "49" + } + }, + { + "alias_name": "グリルドスピリット", + "alias_name_display": "グリルドスピリット", + "event": [ + { + "event_id": 729, + "event_name": "ドリームLIVEフェスティバル ゴールデンウィークSP" + } + ], + "hash": "6f5389395cfeec54633e3bd18ab02bd6", + "id": "3439801", + "profile": { + "bust": "86", + "height": "172", + "hip": "83", + "waist": "59", + "weight": "49" + } + }, + { + "alias_name": "グリルドスピリット", + "alias_name_display": "グリルドスピリット", + "event": [ + { + "event_id": 729, + "event_name": "ドリームLIVEフェスティバル ゴールデンウィークSP" + } + ], + "hash": "dd34bfe74931aeab10c7aaafe2832d86", + "id": "3539802", + "profile": { + "bust": "86", + "height": "172", + "hip": "83", + "waist": "59", + "weight": "49" + } + } + ], + "idol_id": 159, + "idol_name": "西島櫂", + "idol_name_display": "西島櫂", + "units": [ + { + "id": "95", + "name": "スペーススタイル" + }, + { + "id": "122", + "name": "ホットアートジャンピン" + } + ] + }, + { + "aliases": [ + { + "hash": "d95254e127a889746034022f82cb5798", + "id": "3003501", + "profile": { + "bust": "71", + "height": "143", + "hip": "73", + "waist": "58", + "weight": "38" + } + }, + { + "hash": "5fd2939e3e1b4403ed6f3886c48a1d32", + "id": "3103502", + "profile": { + "bust": "71", + "height": "143", + "hip": "73", + "waist": "58", + "weight": "38" + } + }, + { + "alias_name": "ニューイヤースタイル", + "alias_name_display": "ニューイヤースタイル", + "event": [ + { + "event_id": 509, + "event_name": "新春LIVEツアーカーニバル" + } + ], + "hash": "27886dda8120d9992e0bde75d3132487", + "id": "3214901", + "profile": { + "bust": "71", + "height": "143", + "hip": "73", + "waist": "58", + "weight": "38" + } + }, + { + "alias_name": "ニューイヤースタイル", + "alias_name_display": "ニューイヤースタイル", + "event": [ + { + "event_id": 509, + "event_name": "新春LIVEツアーカーニバル" + } + ], + "hash": "d9f8828d3ee7daf7c3287b4414d76aa0", + "id": "3314902", + "profile": { + "bust": "71", + "height": "143", + "hip": "73", + "waist": "58", + "weight": "38" + } + }, + { + "alias_name": "サファリアドベンチャー", + "alias_name_display": "サファリアドベンチャー", + "event": [ + { + "event_id": 414, + "event_name": "どうぶつアドベンチャー オーストラリア編" + } + ], + "hash": "81884ba2df20b5ecab3e6db70413b9c3", + "id": "3219201", + "profile": { + "bust": "71", + "height": "143", + "hip": "73", + "waist": "58", + "weight": "38" + } + }, + { + "alias_name": "サファリアドベンチャー", + "alias_name_display": "サファリアドベンチャー", + "event": [ + { + "event_id": 414, + "event_name": "どうぶつアドベンチャー オーストラリア編" + } + ], + "hash": "01a473d058eccb980f44c6cf2b07b540", + "id": "3319202", + "profile": { + "bust": "71", + "height": "143", + "hip": "73", + "waist": "58", + "weight": "38" + } + }, + { + "alias_name": "サファリアドベンチャー・S", + "alias_name_display": "サファリアドベンチャー・S", + "event": [ + { + "event_id": 414, + "event_name": "どうぶつアドベンチャー オーストラリア編" + } + ], + "hash": "280a9941a00ec7d1954fb70d5c806151", + "id": "3219301", + "profile": { + "bust": "71", + "height": "143", + "hip": "73", + "waist": "58", + "weight": "38" + } + }, + { + "alias_name": "サファリアドベンチャー・S", + "alias_name_display": "サファリアドベンチャー・S", + "event": [ + { + "event_id": 414, + "event_name": "どうぶつアドベンチャー オーストラリア編" + } + ], + "hash": "1b7a0a4e902ae4dcdcc7f2045f241656", + "id": "3319302", + "profile": { + "bust": "71", + "height": "143", + "hip": "73", + "waist": "58", + "weight": "38" + } + }, + { + "alias_name": "乙女武将", + "alias_name_display": "乙女武将", + "event": [ + { + "event_id": 517, + "event_name": "戦国公演 風来剣客伝" + } + ], + "hash": "9378c5e537cb2acc360dd0bdb0dfdd70", + "id": "3221701", + "profile": { + "bust": "71", + "height": "143", + "hip": "73", + "waist": "58", + "weight": "38" + } + }, + { + "alias_name": "乙女武将", + "alias_name_display": "乙女武将", + "event": [ + { + "event_id": 517, + "event_name": "戦国公演 風来剣客伝" + } + ], + "hash": "4c786bf74a7f7bf25daa7b91fe7c7e0a", + "id": "3321702", + "profile": { + "bust": "71", + "height": "143", + "hip": "73", + "waist": "58", + "weight": "38" + } + }, + { + "alias_name": "サンタI.C", + "alias_name_display": "サンタI.C", + "event": [ + { + "event_id": 1208, + "event_name": "目指せサンタクロース アイドルチャレンジ" + } + ], + "hash": "b7b438513131f3e40cd1bad252c38d1a", + "id": "3326902", + "profile": { + "bust": "71", + "height": "143", + "hip": "73", + "waist": "58", + "weight": "38" + } + }, + { + "alias_name": "マーチングバンド", + "alias_name_display": "マーチングバンド", + "hash": "3e9ae5337b2b5222c5270c9561fbf0b8", + "id": "3228301", + "profile": { + "bust": "71", + "height": "143", + "hip": "73", + "waist": "58", + "weight": "38" + } + }, + { + "alias_name": "マーチングバンド", + "alias_name_display": "マーチングバンド", + "hash": "1868d1975710558fe8bdea18220ce69f", + "id": "3328302", + "profile": { + "bust": "71", + "height": "143", + "hip": "73", + "waist": "58", + "weight": "38" + } + }, + { + "alias_name": "セクシーパンサー", + "alias_name_display": "セクシーパンサー", + "hash": "8ad64acb66ae95edb5e955375d51b90b", + "id": "3411801", + "profile": { + "bust": "71", + "height": "143", + "hip": "73", + "waist": "58", + "weight": "38" + } + }, + { + "alias_name": "セクシーパンサー", + "alias_name_display": "セクシーパンサー", + "hash": "5c68f5a84cbeaee1a887b7a1691577b4", + "id": "3511802", + "profile": { + "bust": "71", + "height": "143", + "hip": "73", + "waist": "58", + "weight": "38" + } + }, + { + "alias_name": "スウィートハニーハート", + "alias_name_display": "スウィートハニーハート", + "event": [ + { + "event_id": "017", + "event_name": "第17回プロダクションマッチフェスティバル" + } + ], + "hash": "5ab593bd5d05f2e496f088706687f7da", + "id": "3414901", + "profile": { + "bust": "71", + "height": "143", + "hip": "73", + "waist": "58", + "weight": "38" + } + }, + { + "alias_name": "スウィートハニーハート", + "alias_name_display": "スウィートハニーハート", + "event": [ + { + "event_id": "017", + "event_name": "第17回プロダクションマッチフェスティバル" + } + ], + "hash": "3a71223fc974c44985da17ab245e9401", + "id": "3514902", + "profile": { + "bust": "71", + "height": "143", + "hip": "73", + "waist": "58", + "weight": "38" + } + }, + { + "alias_name": "ファントムレディ", + "alias_name_display": "ファントムレディ", + "event": [ + { + "event_id": 521, + "event_name": "怪盗公演 美しき追跡者" + } + ], + "hash": "23c506cfa1119f316cd9b7e07e30b490", + "id": "3425801", + "profile": { + "bust": "71", + "height": "143", + "hip": "73", + "waist": "58", + "weight": "38" + } + }, + { + "alias_name": "ファントムレディ", + "alias_name_display": "ファントムレディ", + "event": [ + { + "event_id": 521, + "event_name": "怪盗公演 美しき追跡者" + } + ], + "hash": "c94eb2410c0f5c98643fa4cc5dc00a2d", + "id": "3525802", + "profile": { + "bust": "71", + "height": "143", + "hip": "73", + "waist": "58", + "weight": "38" + } + }, + { + "alias_name": "どきどきクリスマス", + "alias_name_display": "どきどきクリスマス", + "event": [ + { + "event_id": 1208, + "event_name": "目指せサンタクロース アイドルチャレンジ" + } + ], + "hash": "258f6b36adac5b6da65d8cf1ebf8a5a8", + "id": "3428601", + "profile": { + "bust": "71", + "height": "143", + "hip": "73", + "waist": "58", + "weight": "38" + } + }, + { + "alias_name": "どきどきクリスマス", + "alias_name_display": "どきどきクリスマス", + "event": [ + { + "event_id": 1208, + "event_name": "目指せサンタクロース アイドルチャレンジ" + } + ], + "hash": "3902966b6611ebad08386b3e8e1665c9", + "id": "3528602", + "profile": { + "bust": "71", + "height": "143", + "hip": "73", + "waist": "58", + "weight": "38" + } + }, + { + "alias_name": "どきどきクリスマス・S", + "alias_name_display": "どきどきクリスマス・S", + "event": [ + { + "event_id": 1208, + "event_name": "目指せサンタクロース アイドルチャレンジ" + } + ], + "hash": "9a8d92a67b66329fb01f13f151d0f9fb", + "id": "3428701", + "profile": { + "bust": "71", + "height": "143", + "hip": "73", + "waist": "58", + "weight": "38" + } + }, + { + "alias_name": "どきどきクリスマス・S", + "alias_name_display": "どきどきクリスマス・S", + "event": [ + { + "event_id": 1208, + "event_name": "目指せサンタクロース アイドルチャレンジ" + } + ], + "hash": "70e4a170e6d8ac1de9f6f103c9c3dfd1", + "id": "3528702", + "profile": { + "bust": "71", + "height": "143", + "hip": "73", + "waist": "58", + "weight": "38" + } + }, + { + "alias_name": "オトメのポリシー", + "alias_name_display": "オトメのポリシー", + "event": [ + { + "event_id": 1409, + "event_name": "第9回ぷちデレラコレクション" + } + ], + "hash": "64698d63ae6f12f30ac46ff5e61550f7", + "id": "3435701", + "profile": { + "bust": "71", + "height": "143", + "hip": "73", + "waist": "58", + "weight": "38" + } + }, + { + "alias_name": "オトメのポリシー", + "alias_name_display": "オトメのポリシー", + "event": [ + { + "event_id": 1409, + "event_name": "第9回ぷちデレラコレクション" + } + ], + "hash": "8311d865f81f1063978d094431e038d4", + "id": "3535702", + "profile": { + "bust": "71", + "height": "143", + "hip": "73", + "waist": "58", + "weight": "38" + } + }, + { + "alias_name": "プラウディスポット", + "alias_name_display": "プラウディスポット", + "hash": "0bfee936f43c4008bb7446d70950d81a", + "id": "3439501", + "profile": { + "bust": "71", + "height": "143", + "hip": "73", + "waist": "58", + "weight": "38" + } + }, + { + "alias_name": "プラウディスポット", + "alias_name_display": "プラウディスポット", + "hash": "076ff2416464383dd10c0895f1118c57", + "id": "3539502", + "profile": { + "bust": "71", + "height": "143", + "hip": "73", + "waist": "58", + "weight": "38" + } + } + ], + "idol_id": 160, + "idol_name": "的場梨沙", + "idol_name_display": "的場梨沙", + "units": [ + { + "id": "45", + "name": "ビートシューター" + }, + { + "id": "98", + "name": "ニューイヤースタイル" + }, + { + "id": "104", + "name": "ももぺあべりー" + }, + { + "id": "177", + "name": "桜舞隊" + }, + { + "id": "214", + "name": "L.M.B.G" + } + ] + }, + { + "aliases": [ + { + "hash": "d1aa3bc716ff2f22ebf41c1fe9b83266", + "id": "3003601", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "55", + "weight": "46" + } + }, + { + "hash": "c0f2d0167e0d5623f5bbc035eb412c26", + "id": "3103602", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "55", + "weight": "46" + } + }, + { + "alias_name": "ロワイヤルスタイルNP", + "alias_name_display": "ロワイヤルスタイルNP", + "event": [ + { + "event_id": 804, + "event_name": "第4回アイドルLIVEロワイヤル" + } + ], + "hash": "15bad0e239396c14ba25c714bfdc9f9e", + "id": "3216201", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "55", + "weight": "46" + } + }, + { + "alias_name": "ロワイヤルスタイルNP", + "alias_name_display": "ロワイヤルスタイルNP", + "event": [ + { + "event_id": 804, + "event_name": "第4回アイドルLIVEロワイヤル" + } + ], + "hash": "a878dde61487baf7b31c28093da0df1b", + "id": "3316202", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "55", + "weight": "46" + } + }, + { + "alias_name": "スクールガール", + "alias_name_display": "スクールガール", + "hash": "e99733454b58967e0160ccf1959de480", + "id": "3219701", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "55", + "weight": "46" + } + }, + { + "alias_name": "スクールガール", + "alias_name_display": "スクールガール", + "hash": "3675545fba8738750a3f60c573dde3a6", + "id": "3319702", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "55", + "weight": "46" + } + }, + { + "alias_name": "レディタイラント", + "alias_name_display": "レディタイラント", + "hash": "5e137bfe353c3f0d1425e32982c8f226", + "id": "3221101", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "55", + "weight": "46" + } + }, + { + "alias_name": "レディタイラント", + "alias_name_display": "レディタイラント", + "hash": "37865a0f7f25d1f9f20b1b0932fd0a15", + "id": "3321102", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "55", + "weight": "46" + } + }, + { + "alias_name": "サマービーチ", + "alias_name_display": "サマービーチ", + "hash": "8b9fcba48ed38f79114879a280024fd9", + "id": "3230001", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "55", + "weight": "46" + } + }, + { + "alias_name": "サマービーチ", + "alias_name_display": "サマービーチ", + "hash": "4ea2df5004456c968bdc36873337f71a", + "id": "3330002", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "55", + "weight": "46" + } + }, + { + "alias_name": "マジェスティックオーダー", + "alias_name_display": "マジェスティックオーダー", + "hash": "62e0388dff948bed0191ad5a3bbdc629", + "id": "3232701", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "55", + "weight": "46" + } + }, + { + "alias_name": "マジェスティックオーダー", + "alias_name_display": "マジェスティックオーダー", + "hash": "3ae8b4914157e90a7e0070f39d0afc10", + "id": "3332702", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "55", + "weight": "46" + } + }, + { + "alias_name": "メディアの女王", + "alias_name_display": "メディアの女王", + "event": [ + { + "event_id": 1102, + "event_name": "第2回プロダクション対抗トークバトルショー" + } + ], + "hash": "79028ffc2d4dc2ab861d09cdaba8ba68", + "id": "3414101", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "55", + "weight": "46" + } + }, + { + "alias_name": "メディアの女王", + "alias_name_display": "メディアの女王", + "event": [ + { + "event_id": 1102, + "event_name": "第2回プロダクション対抗トークバトルショー" + } + ], + "hash": "838a4c6a770f35ab005c376a6e480316", + "id": "3514102", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "55", + "weight": "46" + } + }, + { + "alias_name": "ベルベットクイーン", + "alias_name_display": "ベルベットクイーン", + "hash": "8b0c9ce3e5eb4ae076626729c5476784", + "id": "3423501", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "55", + "weight": "46" + } + }, + { + "alias_name": "ベルベットクイーン", + "alias_name_display": "ベルベットクイーン", + "hash": "d2c90e9e8f108c4d9d7e373ff21da35b", + "id": "3523502", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "55", + "weight": "46" + } + }, + { + "alias_name": "ドミネイトクリスマス", + "alias_name_display": "ドミネイトクリスマス", + "hash": "19df0dce995f785d6347b7905879b11d", + "id": "3428301", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "55", + "weight": "46" + } + }, + { + "alias_name": "ドミネイトクリスマス", + "alias_name_display": "ドミネイトクリスマス", + "hash": "7ade063367ad652bc5d05aa008a75237", + "id": "3528302", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "55", + "weight": "46" + } + } + ], + "idol_id": 161, + "idol_name": "財前時子", + "idol_name_display": "財前時子", + "units": [ + { + "id": "209", + "name": "ロワイヤルスタイルNP" + } + ] + }, + { + "aliases": [ + { + "hash": "ddf7d3e8d751523496c1bb75a1aa2124", + "id": "3003801", + "profile": { + "bust": "73", + "height": "151", + "hip": "73", + "waist": "53", + "weight": "40" + } + }, + { + "hash": "3217691d80f41d408aa0def73b17b549", + "id": "3103802", + "profile": { + "bust": "73", + "height": "151", + "hip": "73", + "waist": "53", + "weight": "40" + } + }, + { + "alias_name": "T.B.チアーズ", + "alias_name_display": "T.B.チアーズ", + "event": [ + { + "event_id": 1104, + "event_name": "プロダクション対抗トークバトルショーinSUMMER" + } + ], + "hash": "351c45b33901b324a5a827d191de82f4", + "id": "3218601", + "profile": { + "bust": "73", + "height": "151", + "hip": "73", + "waist": "53", + "weight": "40" + } + }, + { + "alias_name": "T.B.チアーズ", + "alias_name_display": "T.B.チアーズ", + "event": [ + { + "event_id": 1104, + "event_name": "プロダクション対抗トークバトルショーinSUMMER" + } + ], + "hash": "d7d7bfee2160054f5bd522c3f2d212af", + "id": "3318602", + "profile": { + "bust": "73", + "height": "151", + "hip": "73", + "waist": "53", + "weight": "40" + } + }, + { + "alias_name": "ラブリーメイド", + "alias_name_display": "ラブリーメイド", + "hash": "481689442ba6392b4f7f7c1abf423cb1", + "id": "3224901", + "profile": { + "bust": "73", + "height": "151", + "hip": "73", + "waist": "53", + "weight": "40" + } + }, + { + "alias_name": "ラブリーメイド", + "alias_name_display": "ラブリーメイド", + "hash": "640c775e1aa6d19d4498c15ab3d52875", + "id": "3324902", + "profile": { + "bust": "73", + "height": "151", + "hip": "73", + "waist": "53", + "weight": "40" + } + }, + { + "alias_name": "湯浴みの踊子", + "alias_name_display": "湯浴みの踊子", + "hash": "fbb5477c8bd9c2c96d1ab988bc13176a", + "id": "3418501", + "profile": { + "bust": "73", + "height": "151", + "hip": "73", + "waist": "53", + "weight": "40" + } + }, + { + "alias_name": "湯浴みの踊子", + "alias_name_display": "湯浴みの踊子", + "hash": "4774371e15f23136d1bd20eb453c9c17", + "id": "3518502", + "profile": { + "bust": "73", + "height": "151", + "hip": "73", + "waist": "53", + "weight": "40" + } + }, + { + "alias_name": "詩詠みの赤ずきん", + "alias_name_display": "詩詠みの赤ずきん", + "event": [ + { + "event_id": 518, + "event_name": "御伽公演 ふれあい狼と小さな赤ずきんちゃん" + } + ], + "hash": "959f6f75f20bd4127d4bf753ddbe6190", + "id": "3422801", + "profile": { + "bust": "73", + "height": "151", + "hip": "73", + "waist": "53", + "weight": "40" + } + }, + { + "alias_name": "詩詠みの赤ずきん", + "alias_name_display": "詩詠みの赤ずきん", + "event": [ + { + "event_id": 518, + "event_name": "御伽公演 ふれあい狼と小さな赤ずきんちゃん" + } + ], + "hash": "680348a16a23bd1ab4b7a2bca513b4fb", + "id": "3522802", + "profile": { + "bust": "73", + "height": "151", + "hip": "73", + "waist": "53", + "weight": "40" + } + }, + { + "alias_name": "春光の少女", + "alias_name_display": "春光の少女", + "hash": "3f57a6b17e176fb96686d081f79e3231", + "id": "3429001", + "profile": { + "bust": "73", + "height": "151", + "hip": "73", + "waist": "53", + "weight": "40" + } + }, + { + "alias_name": "春光の少女", + "alias_name_display": "春光の少女", + "hash": "38f60f4a3ee2a8ada8fed10044b64ea4", + "id": "3529002", + "profile": { + "bust": "73", + "height": "151", + "hip": "73", + "waist": "53", + "weight": "40" + } + }, + { + "alias_name": "ひと結び", + "alias_name_display": "ひと結び", + "event": [ + { + "event_id": 720, + "event_name": "第20回ドリームLIVEフェスティバル" + } + ], + "hash": "5bc53e5cbba34aff18f7009d50c17f0e", + "id": "3431501", + "profile": { + "bust": "73", + "height": "151", + "hip": "73", + "waist": "53", + "weight": "40" + } + }, + { + "alias_name": "ひと結び", + "alias_name_display": "ひと結び", + "event": [ + { + "event_id": 720, + "event_name": "第20回ドリームLIVEフェスティバル" + } + ], + "hash": "db65dbfc1d0326aaacab3176a4160e90", + "id": "3531502", + "profile": { + "bust": "73", + "height": "151", + "hip": "73", + "waist": "53", + "weight": "40" + } + }, + { + "alias_name": "黄昏の映し人", + "alias_name_display": "黄昏の映し人", + "hash": "10e4d88969fd0d9e4b366ea9e3fccdb7", + "id": "3435201", + "profile": { + "bust": "73", + "height": "151", + "hip": "73", + "waist": "53", + "weight": "40" + } + }, + { + "alias_name": "黄昏の映し人", + "alias_name_display": "黄昏の映し人", + "hash": "86045c8c5c85b81aa51156dbcdb0e1a5", + "id": "3535202", + "profile": { + "bust": "73", + "height": "151", + "hip": "73", + "waist": "53", + "weight": "40" + } + } + ], + "idol_id": 162, + "idol_name": "依田芳乃", + "idol_name_display": "依田芳乃", + "units": [ + { + "id": "20", + "name": "山紫水明" + }, + { + "id": "179", + "name": "春霞" + } + ] + }, + { + "aliases": [ + { + "hash": "af64f16df0293b28f4bd8fd8e213b98a", + "id": "3200101", + "profile": { + "bust": "81", + "height": "158", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "hash": "4f7f75478ec8088e7b44680ccf69e601", + "id": "3300102", + "profile": { + "bust": "81", + "height": "158", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "フラワーブーケ", + "alias_name_display": "フラワーブーケ", + "hash": "ea1c96b7284f8fbf531f1c7a17565d01", + "id": "3204301", + "profile": { + "bust": "81", + "height": "158", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "フラワーブーケ", + "alias_name_display": "フラワーブーケ", + "hash": "7c983cf4f268272d5ff3fbc72e20477f", + "id": "3304302", + "profile": { + "bust": "81", + "height": "158", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "ガーリースタイルブルー", + "alias_name_display": "ガーリースタイルブルー", + "event": [ + { + "event_id": 107, + "event_name": "秋夜のお月見会" + } + ], + "hash": "91bf66e462541654840ad63b590f7a92", + "id": "3206201", + "profile": { + "bust": "81", + "height": "158", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "ガーリースタイルピンク", + "alias_name_display": "ガーリースタイルピンク", + "event": [ + { + "event_id": 107, + "event_name": "秋夜のお月見会" + } + ], + "hash": "cc13b2455d70284fa028ffbc71109f3c", + "id": "3206202", + "profile": { + "bust": "81", + "height": "158", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "ガーリースタイルグリーン", + "alias_name_display": "ガーリースタイルグリーン", + "event": [ + { + "event_id": 107, + "event_name": "秋夜のお月見会" + } + ], + "hash": "a004ebf66be0062d592367afaa9df9c6", + "id": "3206203", + "profile": { + "bust": "81", + "height": "158", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "ガーリースタイルホワイト", + "alias_name_display": "ガーリースタイルホワイト", + "event": [ + { + "event_id": 107, + "event_name": "秋夜のお月見会" + } + ], + "hash": "e2d746d67b2f486c24276cfdd6c04b91", + "id": "3206204", + "profile": { + "bust": "81", + "height": "158", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "スタイルセレクトヴァイオレット", + "alias_name_display": "スタイルセレクトヴァイオレット", + "event": [ + { + "event_id": 107, + "event_name": "秋夜のお月見会" + } + ], + "hash": "bc13d4418e9a47ce43493ee837c079f7", + "id": "3306205", + "profile": { + "bust": "81", + "height": "158", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "スタイルセレクトピンク", + "alias_name_display": "スタイルセレクトピンク", + "event": [ + { + "event_id": 107, + "event_name": "秋夜のお月見会" + } + ], + "hash": "a145b90c3b7a076a742f1243fc934c36", + "id": "3306206", + "profile": { + "bust": "81", + "height": "158", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "スタイルセレクトグレー", + "alias_name_display": "スタイルセレクトグレー", + "event": [ + { + "event_id": 107, + "event_name": "秋夜のお月見会" + } + ], + "hash": "88d68028d63bd897115d57cb468133a2", + "id": "3306207", + "profile": { + "bust": "81", + "height": "158", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "スタイルセレクトパープル", + "alias_name_display": "スタイルセレクトパープル", + "event": [ + { + "event_id": 107, + "event_name": "秋夜のお月見会" + } + ], + "hash": "b55a300ec52c0ede5b78a0870d2cfe53", + "id": "3306208", + "profile": { + "bust": "81", + "height": "158", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "スタイルセレクトホワイト", + "alias_name_display": "スタイルセレクトホワイト", + "event": [ + { + "event_id": 107, + "event_name": "秋夜のお月見会" + } + ], + "hash": "5de0ef2c7289a92299b5870d38c2e290", + "id": "3306209", + "profile": { + "bust": "81", + "height": "158", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "ニューイヤー", + "alias_name_display": "ニューイヤー", + "event": [ + { + "event_id": 404, + "event_name": "新春アイドルプロデュース" + } + ], + "hash": "6d85e7f52925d9aeb18f207ea86023de", + "id": "3208001", + "profile": { + "bust": "81", + "height": "158", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "ニューイヤー", + "alias_name_display": "ニューイヤー", + "event": [ + { + "event_id": 404, + "event_name": "新春アイドルプロデュース" + } + ], + "hash": "e387585b395a759ba2774b9a49921303", + "id": "3308002", + "profile": { + "bust": "81", + "height": "158", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "ムーンライトフラワー", + "alias_name_display": "ムーンライトフラワー", + "event": [ + { + "event_id": 107, + "event_name": "秋夜のお月見会" + } + ], + "hash": "142f146366609731aa64a5c2c2a1a912", + "id": "3403101", + "profile": { + "bust": "81", + "height": "158", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "ムーンライトフラワー", + "alias_name_display": "ムーンライトフラワー", + "event": [ + { + "event_id": 107, + "event_name": "秋夜のお月見会" + } + ], + "hash": "33f1fa5b1d518cf7c16da1d7d9090aa8", + "id": "3503102", + "profile": { + "bust": "81", + "height": "158", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "真夏のフラワーガール", + "alias_name_display": "真夏のフラワーガール", + "hash": "9e89c636ff5da917444ca1cabe028fc9", + "id": "3408001", + "profile": { + "bust": "81", + "height": "158", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "真夏のフラワーガール", + "alias_name_display": "真夏のフラワーガール", + "hash": "37589decfcf637e2c37feeee7ddc5ad8", + "id": "3508002", + "profile": { + "bust": "81", + "height": "158", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "甘い花束", + "alias_name_display": "甘い花束", + "event": [ + { + "event_id": 411, + "event_name": "アイドルプロデュース チョコレートフォーユー!" + } + ], + "hash": "05977029f17dd39831b673314a817238", + "id": "3411501", + "profile": { + "bust": "81", + "height": "158", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "甘い花束", + "alias_name_display": "甘い花束", + "event": [ + { + "event_id": 411, + "event_name": "アイドルプロデュース チョコレートフォーユー!" + } + ], + "hash": "172930f3ec38def704b5d886c7109aa6", + "id": "3511502", + "profile": { + "bust": "81", + "height": "158", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "花の小悪魔", + "alias_name_display": "花の小悪魔", + "hash": "ab9d06b633142cecac28895ff15b7106", + "id": "3418301", + "profile": { + "bust": "81", + "height": "158", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "花の小悪魔", + "alias_name_display": "花の小悪魔", + "hash": "27dc4499bc995e764ee5277377a7ad11", + "id": "3518302", + "profile": { + "bust": "81", + "height": "158", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "さくらふわり", + "alias_name_display": "さくらふわり", + "hash": "5bc2eb8496976790007a468b9029038b", + "id": "3422601", + "profile": { + "bust": "81", + "height": "158", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "さくらふわり", + "alias_name_display": "さくらふわり", + "hash": "a1a5ad34d1f639456d074faf6cbee8fd", + "id": "3522602", + "profile": { + "bust": "81", + "height": "158", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "ふんわり花乙女", + "alias_name_display": "ふんわり花乙女", + "hash": "e60349af525f22282f0cce54d5ddfc39", + "id": "3425701", + "profile": { + "bust": "81", + "height": "158", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "ふんわり花乙女", + "alias_name_display": "ふんわり花乙女", + "hash": "3b24b0c37eaa7e5b936d38660580ddeb", + "id": "3525702", + "profile": { + "bust": "81", + "height": "158", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "スプリングフラワー", + "alias_name_display": "スプリングフラワー", + "event": [ + { + "event_id": 719, + "event_name": "ドリームLIVEフェスティバル 節分SP" + } + ], + "hash": "ba6e73113054aad2140a54f733256d17", + "id": "3429601", + "profile": { + "bust": "81", + "height": "158", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "スプリングフラワー", + "alias_name_display": "スプリングフラワー", + "event": [ + { + "event_id": 719, + "event_name": "ドリームLIVEフェスティバル 節分SP" + } + ], + "hash": "3ee0da58a0a9b42484666b12293bcc11", + "id": "3529602", + "profile": { + "bust": "81", + "height": "158", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "37c34a83da57161eb7ebe0ad62d4b144", + "id": "3430801", + "profile": { + "bust": "81", + "height": "158", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "1fc18af0c5a0f3b65e228e7d5abfd54e", + "id": "3530802", + "profile": { + "bust": "81", + "height": "158", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "花しずく", + "alias_name_display": "花しずく", + "hash": "1fd2e753404d29ba95066c277f752db7", + "id": "3434801", + "profile": { + "bust": "81", + "height": "158", + "hip": "80", + "waist": "57", + "weight": "42" + } + }, + { + "alias_name": "花しずく", + "alias_name_display": "花しずく", + "hash": "eff3e13dd30475d420b7f95ce86c2bc4", + "id": "3534802", + "profile": { + "bust": "81", + "height": "158", + "hip": "80", + "waist": "57", + "weight": "42" + } + } + ], + "idol_id": 163, + "idol_name": "相葉夕美", + "idol_name_display": "相葉夕美", + "units": [ + { + "id": "51", + "name": "フィオレンティナ" + }, + { + "id": "57", + "name": "ミステリックガーデン" + }, + { + "id": "75", + "name": "Flowery" + }, + { + "id": "189", + "name": "アインフェリア" + }, + { + "id": "202", + "name": "サンフラワー" + } + ] + }, + { + "aliases": [ + { + "hash": "bb90dd3425c2e096e9b48a928e734b8b", + "id": "3200201", + "profile": { + "bust": "84", + "height": "157", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "hash": "91a74c8b18e013ecb8a341d4586aa8f5", + "id": "3300202", + "profile": { + "bust": "84", + "height": "157", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "イタリアンスタイル", + "alias_name_display": "イタリアンスタイル", + "event": [ + { + "event_id": 503, + "event_name": "アイドルLIVEツアーinイタリア" + } + ], + "hash": "a2b68b8474b5286d60a33891113e57df", + "id": "3209201", + "profile": { + "bust": "84", + "height": "157", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "イタリアンスタイル", + "alias_name_display": "イタリアンスタイル", + "event": [ + { + "event_id": 503, + "event_name": "アイドルLIVEツアーinイタリア" + } + ], + "hash": "e1e647efe2dc11ccc84bd244ced05c06", + "id": "3309202", + "profile": { + "bust": "84", + "height": "157", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ロワイヤルスタイル", + "alias_name_display": "ロワイヤルスタイル", + "event": [ + { + "event_id": 801, + "event_name": "アイドルLIVEロワイヤル" + } + ], + "hash": "9305d01a77298c6ccd1dc85c31312ed6", + "id": "3212901", + "profile": { + "bust": "84", + "height": "157", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ロワイヤルスタイル", + "alias_name_display": "ロワイヤルスタイル", + "event": [ + { + "event_id": 801, + "event_name": "アイドルLIVEロワイヤル" + } + ], + "hash": "bf38507a985eb502dc11b0669c035668", + "id": "3312902", + "profile": { + "bust": "84", + "height": "157", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "はっぴーはっぴー", + "alias_name_display": "はっぴーはっぴー", + "hash": "76e96d82a4a7800e7f41379167f70830", + "id": "3215101", + "profile": { + "bust": "84", + "height": "157", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "はっぴーはっぴー", + "alias_name_display": "はっぴーはっぴー", + "hash": "ba7243eb399089267666d8b44f3eb6a2", + "id": "3315102", + "profile": { + "bust": "84", + "height": "157", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "T.B.ハロウィン", + "alias_name_display": "T.B.ハロウィン", + "event": [ + { + "event_id": 1106, + "event_name": "プロダクション対抗トークバトルショー ハロウィンSP" + } + ], + "hash": "2dbac60081ce8d246d03957ff5c8337d", + "id": "3219901", + "profile": { + "bust": "84", + "height": "157", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "T.B.ハロウィン", + "alias_name_display": "T.B.ハロウィン", + "event": [ + { + "event_id": 1106, + "event_name": "プロダクション対抗トークバトルショー ハロウィンSP" + } + ], + "hash": "cd3b73854b58929671aa432ab259417e", + "id": "3319902", + "profile": { + "bust": "84", + "height": "157", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ラブリーメイド", + "alias_name_display": "ラブリーメイド", + "hash": "152e419be9a216a353b9297511456a15", + "id": "3225001", + "profile": { + "bust": "84", + "height": "157", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ラブリーメイド", + "alias_name_display": "ラブリーメイド", + "hash": "ac84d4d34bca1fb65b66233fc5b864b6", + "id": "3325002", + "profile": { + "bust": "84", + "height": "157", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "フライトバラエティ", + "alias_name_display": "フライトバラエティ", + "event": [ + { + "event_id": 1803, + "event_name": "アイドルバラエティ 大空への挑戦 ~Fly me to the Sky~" + } + ], + "hash": "7ef301dfd58f3bb7ce5d82667ade6bf4", + "id": "3329002", + "profile": { + "bust": "84", + "height": "157", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ろでお☆がーる", + "alias_name_display": "ろでお☆がーる", + "event": [ + { + "event_id": 512, + "event_name": "西部公演 ガンスリンガージャーニー" + } + ], + "hash": "5a3f49b98c1c6eed21a5554324df93a4", + "id": "3414701", + "profile": { + "bust": "84", + "height": "157", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ろでお☆がーる", + "alias_name_display": "ろでお☆がーる", + "event": [ + { + "event_id": 512, + "event_name": "西部公演 ガンスリンガージャーニー" + } + ], + "hash": "4549aa1570a45b094e0c93f87e7456a8", + "id": "3514702", + "profile": { + "bust": "84", + "height": "157", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "わいるどしゃうと", + "alias_name_display": "わいるどしゃうと", + "event": [ + { + "event_id": "021", + "event_name": "第21回プロダクションマッチフェスティバル" + } + ], + "hash": "ac00fc26dcf39db7b99b0dbd25fba25d", + "id": "3423001", + "profile": { + "bust": "84", + "height": "157", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "わいるどしゃうと", + "alias_name_display": "わいるどしゃうと", + "event": [ + { + "event_id": "021", + "event_name": "第21回プロダクションマッチフェスティバル" + } + ], + "hash": "9f7bcd2b186da54f58a6c708b6673e2b", + "id": "3523002", + "profile": { + "bust": "84", + "height": "157", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ぷりむすたいる", + "alias_name_display": "ぷりむすたいる", + "event": [ + { + "event_id": 1410, + "event_name": "第10回ぷちデレラコレクション" + } + ], + "hash": "c9ff2aa64967a2cbc5455bb32ebc02ec", + "id": "3437101", + "profile": { + "bust": "84", + "height": "157", + "hip": "85", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ぷりむすたいる", + "alias_name_display": "ぷりむすたいる", + "event": [ + { + "event_id": 1410, + "event_name": "第10回ぷちデレラコレクション" + } + ], + "hash": "3c9777fee6bd72b52c4700f384987b3a", + "id": "3537102", + "profile": { + "bust": "84", + "height": "157", + "hip": "85", + "waist": "57", + "weight": "46" + } + } + ], + "idol_id": 164, + "idol_name": "野々村そら", + "idol_name_display": "野々村そら", + "units": [ + { + "id": "86", + "name": "イタリアンスタイル" + }, + { + "id": "208", + "name": "ロワイヤルスタイル" + } + ] + }, + { + "aliases": [ + { + "hash": "7fa02e42c440b57785448072345ef8e0", + "id": "3200301", + "profile": { + "bust": "92", + "height": "168", + "hip": "85", + "waist": "58", + "weight": "50" + } + }, + { + "hash": "a3ccb7b3c841ae42ca70437699830a6b", + "id": "3300302", + "profile": { + "bust": "92", + "height": "168", + "hip": "85", + "waist": "58", + "weight": "50" + } + }, + { + "alias_name": "浴衣祭り", + "alias_name_display": "浴衣祭り", + "hash": "5041107d9f74a0719ed4c66d7945f270", + "id": "3205301", + "profile": { + "bust": "92", + "height": "168", + "hip": "85", + "waist": "58", + "weight": "50" + } + }, + { + "alias_name": "浴衣祭り", + "alias_name_display": "浴衣祭り", + "hash": "da62089ea524fd4255801e539746c146", + "id": "3305302", + "profile": { + "bust": "92", + "height": "168", + "hip": "85", + "waist": "58", + "weight": "50" + } + }, + { + "alias_name": "エレガントJKT", + "alias_name_display": "エレガントJKT", + "hash": "18303720c0d458d42f75000b7a801f94", + "id": "3213301", + "profile": { + "bust": "92", + "height": "168", + "hip": "85", + "waist": "58", + "weight": "50" + } + }, + { + "alias_name": "エレガントJKT", + "alias_name_display": "エレガントJKT", + "hash": "1c2b58322ae59b405e3147536884ac99", + "id": "3313302", + "profile": { + "bust": "92", + "height": "168", + "hip": "85", + "waist": "58", + "weight": "50" + } + }, + { + "alias_name": "ビーチサイド", + "alias_name_display": "ビーチサイド", + "hash": "fb666de8cb248a5cb534465aad1a1ee6", + "id": "3217801", + "profile": { + "bust": "92", + "height": "168", + "hip": "85", + "waist": "58", + "weight": "50" + } + }, + { + "alias_name": "ビーチサイド", + "alias_name_display": "ビーチサイド", + "hash": "3c1c4486f502c31f1da9502917400d14", + "id": "3317802", + "profile": { + "bust": "92", + "height": "168", + "hip": "85", + "waist": "58", + "weight": "50" + } + }, + { + "alias_name": "ジョッキースタイル", + "alias_name_display": "ジョッキースタイル", + "hash": "a0e1b3d2ecd96234e3477d67e302d240", + "id": "3222501", + "profile": { + "bust": "92", + "height": "168", + "hip": "85", + "waist": "58", + "weight": "50" + } + }, + { + "alias_name": "ジョッキースタイル", + "alias_name_display": "ジョッキースタイル", + "hash": "53b5cd0bd501f09c4c6a209b3b2ef963", + "id": "3322502", + "profile": { + "bust": "92", + "height": "168", + "hip": "85", + "waist": "58", + "weight": "50" + } + }, + { + "alias_name": "クッキングバラエティ", + "alias_name_display": "クッキングバラエティ", + "event": [ + { + "event_id": 1801, + "event_name": "アイドルバラエティ 究極のショートケーキを作ろう!" + } + ], + "hash": "9db33f824b8d4ecb038436a2e7399d57", + "id": "3325302", + "profile": { + "bust": "92", + "height": "168", + "hip": "85", + "waist": "58", + "weight": "50" + } + }, + { + "alias_name": "自信の裏側", + "alias_name_display": "自信の裏側", + "hash": "098b55088316d0bd6eb28bdea008654d", + "id": "3227901", + "profile": { + "bust": "92", + "height": "168", + "hip": "85", + "waist": "58", + "weight": "50" + } + }, + { + "alias_name": "自信の裏側", + "alias_name_display": "自信の裏側", + "hash": "c1f3b08ee2f0a1121be49b71b54bd721", + "id": "3327902", + "profile": { + "bust": "92", + "height": "168", + "hip": "85", + "waist": "58", + "weight": "50" + } + }, + { + "alias_name": "サマーガール", + "alias_name_display": "サマーガール", + "event": [ + { + "event_id": 722, + "event_name": "夏祭りDEドリームLIVEフェスティバル" + } + ], + "hash": "e82a880bb685e3fd108f1720cdc27959", + "id": "3229501", + "profile": { + "bust": "92", + "height": "168", + "hip": "85", + "waist": "58", + "weight": "50" + } + }, + { + "alias_name": "サマーガール", + "alias_name_display": "サマーガール", + "event": [ + { + "event_id": 722, + "event_name": "夏祭りDEドリームLIVEフェスティバル" + } + ], + "hash": "df4914c7a9d1da0c7113ff56dfff3175", + "id": "3329502", + "profile": { + "bust": "92", + "height": "168", + "hip": "85", + "waist": "58", + "weight": "50" + } + }, + { + "alias_name": "ハイカラガンナー", + "alias_name_display": "ハイカラガンナー", + "event": [ + { + "event_id": 1907, + "event_name": "ディアリースタークエスト ~夜桜奇譚~" + } + ], + "hash": "dec1007c6dc06d01e61a7bf2ff65e44b", + "id": "3333802", + "profile": { + "bust": "92", + "height": "168", + "hip": "85", + "waist": "58", + "weight": "50" + } + }, + { + "alias_name": "セクシーディーヴァ", + "alias_name_display": "セクシーディーヴァ", + "event": [ + { + "event_id": 504, + "event_name": "アイドルLIVEツアーinスペイン" + } + ], + "hash": "bd8544d7fee8e557f5b223836d20ff0d", + "id": "3406401", + "profile": { + "bust": "92", + "height": "168", + "hip": "85", + "waist": "58", + "weight": "50" + } + }, + { + "alias_name": "セクシーディーヴァ", + "alias_name_display": "セクシーディーヴァ", + "event": [ + { + "event_id": 504, + "event_name": "アイドルLIVEツアーinスペイン" + } + ], + "hash": "447b6056924998cacf744688697a4f1d", + "id": "3506402", + "profile": { + "bust": "92", + "height": "168", + "hip": "85", + "waist": "58", + "weight": "50" + } + }, + { + "alias_name": "パナシェ・ロワイヤル", + "alias_name_display": "パナシェ・ロワイヤル", + "event": [ + { + "event_id": 807, + "event_name": "第7回アイドルLIVEロワイヤル" + } + ], + "hash": "688413c83d5f09927ee6ab46b0247988", + "id": "3418001", + "profile": { + "bust": "92", + "height": "168", + "hip": "85", + "waist": "58", + "weight": "50" + } + }, + { + "alias_name": "パナシェ・ロワイヤル", + "alias_name_display": "パナシェ・ロワイヤル", + "event": [ + { + "event_id": 807, + "event_name": "第7回アイドルLIVEロワイヤル" + } + ], + "hash": "0ff15c0dd87a8d2bed9916f45007d884", + "id": "3518002", + "profile": { + "bust": "92", + "height": "168", + "hip": "85", + "waist": "58", + "weight": "50" + } + }, + { + "alias_name": "アンルーリィチアー", + "alias_name_display": "アンルーリィチアー", + "event": [ + { + "event_id": 1509, + "event_name": "第9回チーム対抗トークバトルショー" + } + ], + "hash": "e8a3517e4e352e1a355526953320449b", + "id": "3436001", + "profile": { + "bust": "92", + "height": "168", + "hip": "85", + "waist": "58", + "weight": "50" + } + }, + { + "alias_name": "アンルーリィチアー", + "alias_name_display": "アンルーリィチアー", + "event": [ + { + "event_id": 1509, + "event_name": "第9回チーム対抗トークバトルショー" + } + ], + "hash": "aa9f7f62858b8a7afc5bf79a5d8bb989", + "id": "3536002", + "profile": { + "bust": "92", + "height": "168", + "hip": "85", + "waist": "58", + "weight": "50" + } + } + ], + "idol_id": 165, + "idol_name": "浜川愛結奈", + "idol_name_display": "浜川愛結奈", + "units": [ + { + "id": "118", + "name": "ビューティーアリュール" + } + ] + }, + { + "aliases": [ + { + "hash": "bf61ef00c0f50870767799b93134aed8", + "id": "3200401", + "profile": { + "bust": "82", + "height": "156", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "hash": "aeed90627f00bd22dca766f74cba96b7", + "id": "3300402", + "profile": { + "bust": "82", + "height": "156", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "パジャマパーティー", + "alias_name_display": "パジャマパーティー", + "hash": "131c89b09553e3b1adf8211a825bef94", + "id": "3204501", + "profile": { + "bust": "82", + "height": "156", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "パジャマパーティー", + "alias_name_display": "パジャマパーティー", + "hash": "108bc0c3aa328e2ac67782b356672155", + "id": "3304502", + "profile": { + "bust": "82", + "height": "156", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "バレンタインパーティー", + "alias_name_display": "バレンタインパーティー", + "hash": "5804656c2c53a974b9dfd2df368f4309", + "id": "3208501", + "profile": { + "bust": "82", + "height": "156", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "バレンタインパーティー", + "alias_name_display": "バレンタインパーティー", + "hash": "ec7057af8940d714ad8af9f3ae8300ea", + "id": "3308502", + "profile": { + "bust": "82", + "height": "156", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "サマーバケーション", + "alias_name_display": "サマーバケーション", + "event": [ + { + "event_id": 211, + "event_name": "アイドルサバイバルinサマーバケーション" + } + ], + "hash": "f08432b1b1ed5f779e4a05950da2869b", + "id": "3212401", + "profile": { + "bust": "82", + "height": "156", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "サマーバケーション", + "alias_name_display": "サマーバケーション", + "event": [ + { + "event_id": 211, + "event_name": "アイドルサバイバルinサマーバケーション" + } + ], + "hash": "38d77ce3afc38411d2dae8c5fe362cd9", + "id": "3312402", + "profile": { + "bust": "82", + "height": "156", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "青春のありか", + "alias_name_display": "青春のありか", + "event": [ + { + "event_id": 708, + "event_name": "第8回ドリームLIVEフェスティバル" + } + ], + "hash": "ad51b71ac5197e926d54027ee34c5439", + "id": "3218901", + "profile": { + "bust": "82", + "height": "156", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "青春のありか", + "alias_name_display": "青春のありか", + "event": [ + { + "event_id": 708, + "event_name": "第8回ドリームLIVEフェスティバル" + } + ], + "hash": "53ef3721dd9737e2ff8d88136230886b", + "id": "3318902", + "profile": { + "bust": "82", + "height": "156", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ネクサスガール", + "alias_name_display": "ネクサスガール", + "hash": "752bf582313e7183b20823fdcfaf64db", + "id": "3223901", + "profile": { + "bust": "82", + "height": "156", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ネクサスガール", + "alias_name_display": "ネクサスガール", + "hash": "2c4e927cadd73b11da5c722e6b32019a", + "id": "3323902", + "profile": { + "bust": "82", + "height": "156", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "スクールプール", + "alias_name_display": "スクールプール", + "hash": "4fb0aa129a4ecd3a5ae5fb262c77dd5a", + "id": "3229601", + "profile": { + "bust": "82", + "height": "156", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "スクールプール", + "alias_name_display": "スクールプール", + "hash": "22177b0b3d43621ab1f291b07ad87c2f", + "id": "3329602", + "profile": { + "bust": "82", + "height": "156", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ロワイヤルスタイルND", + "alias_name_display": "ロワイヤルスタイルND", + "event": [ + { + "event_id": 821, + "event_name": "第21回アイドルLIVEロワイヤル" + } + ], + "hash": "9c9bd76b06bada99f133ffe795d63d51", + "id": "3232301", + "profile": { + "bust": "82", + "height": "156", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ロワイヤルスタイルND", + "alias_name_display": "ロワイヤルスタイルND", + "event": [ + { + "event_id": 821, + "event_name": "第21回アイドルLIVEロワイヤル" + } + ], + "hash": "95eca02219ea79f8580e430b77051710", + "id": "3332302", + "profile": { + "bust": "82", + "height": "156", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "フレッシュチアガール", + "alias_name_display": "フレッシュチアガール", + "hash": "cdb51d58743eed84230167094b26d0e1", + "id": "3405601", + "profile": { + "bust": "82", + "height": "156", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "フレッシュチアガール", + "alias_name_display": "フレッシュチアガール", + "hash": "00bea124dc35973d55b52fa765ad9668", + "id": "3505602", + "profile": { + "bust": "82", + "height": "156", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ハッピーチアー", + "alias_name_display": "ハッピーチアー", + "event": [ + { + "event_id": 509, + "event_name": "新春LIVEツアーカーニバル" + } + ], + "hash": "83d9e2030ef0d1c4ab0f46e104bebe2d", + "id": "3410701", + "profile": { + "bust": "82", + "height": "156", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "ハッピーチアー", + "alias_name_display": "ハッピーチアー", + "event": [ + { + "event_id": 509, + "event_name": "新春LIVEツアーカーニバル" + } + ], + "hash": "0a37155927a181d59ee7979bf5f98698", + "id": "3510702", + "profile": { + "bust": "82", + "height": "156", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "チアフル・ロワイヤル", + "alias_name_display": "チアフル・ロワイヤル", + "event": [ + { + "event_id": 811, + "event_name": "第11回アイドルLIVEロワイヤル" + } + ], + "hash": "fd801652029b6d929ee53d416b4e8ec0", + "id": "3422401", + "profile": { + "bust": "82", + "height": "156", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "チアフル・ロワイヤル", + "alias_name_display": "チアフル・ロワイヤル", + "event": [ + { + "event_id": 811, + "event_name": "第11回アイドルLIVEロワイヤル" + } + ], + "hash": "d072b96acd476cccdb2b94bd8199a5d8", + "id": "3522402", + "profile": { + "bust": "82", + "height": "156", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "春うらら", + "alias_name_display": "春うらら", + "event": [ + { + "event_id": "026", + "event_name": "第26回プロダクションマッチフェスティバル" + } + ], + "hash": "097f3b60e7f177c70488cb8d993b77fa", + "id": "3430201", + "profile": { + "bust": "82", + "height": "156", + "hip": "83", + "waist": "57", + "weight": "45" + } + }, + { + "alias_name": "春うらら", + "alias_name_display": "春うらら", + "event": [ + { + "event_id": "026", + "event_name": "第26回プロダクションマッチフェスティバル" + } + ], + "hash": "90acff12db7ec8895021c3726ee2ab58", + "id": "3530202", + "profile": { + "bust": "82", + "height": "156", + "hip": "83", + "waist": "57", + "weight": "45" + } + } + ], + "idol_id": 166, + "idol_name": "若林智香", + "idol_name_display": "若林智香", + "units": [ + { + "id": "148", + "name": "チアフルボンバーズ" + }, + { + "id": "150", + "name": "ヒートアップ☆チアーズ" + }, + { + "id": "210", + "name": "ロワイヤルスタイルND" + } + ] + }, + { + "aliases": [ + { + "hash": "73eea87bdec62f29de318e50e84f021d", + "id": "3200501", + "profile": { + "bust": "80", + "height": "162", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "hash": "61a1dfc4c713b5d5a094a19923bacc08", + "id": "3300502", + "profile": { + "bust": "80", + "height": "162", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "ギャルブロッサム", + "alias_name_display": "ギャルブロッサム", + "event": [ + { + "event_id": 712, + "event_name": "花見DEドリームLIVEフェスティバル" + } + ], + "hash": "c407e2e483b9ff36689e486dfbd847e4", + "id": "3222201", + "profile": { + "bust": "80", + "height": "162", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "ギャルブロッサム", + "alias_name_display": "ギャルブロッサム", + "event": [ + { + "event_id": 712, + "event_name": "花見DEドリームLIVEフェスティバル" + } + ], + "hash": "4f4bc793b515a5c802b9ab7e0a9198e8", + "id": "3322202", + "profile": { + "bust": "80", + "height": "162", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "ニューヴォーグ", + "alias_name_display": "ニューヴォーグ", + "hash": "d6fdc4c2a992ea8b249d6015d1186e6c", + "id": "3230401", + "profile": { + "bust": "80", + "height": "162", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "ニューヴォーグ", + "alias_name_display": "ニューヴォーグ", + "hash": "7fe0b25036ad4318f240e85827e4ba96", + "id": "3330402", + "profile": { + "bust": "80", + "height": "162", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "カリスマギャル", + "alias_name_display": "カリスマギャル", + "hash": "30fe4887cbc082bf375169d6f83a1ffa", + "id": "3402201", + "profile": { + "bust": "80", + "height": "162", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "カリスマギャル", + "alias_name_display": "カリスマギャル", + "hash": "6ccf37a6cfdd206dc34434a1be3d56b8", + "id": "3502202", + "profile": { + "bust": "80", + "height": "162", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "7af6cc3d2ca1f5d15230f2366280a444", + "id": "3402701", + "profile": { + "bust": "80", + "height": "162", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "53a89429c64132c4d0058aea4b233fca", + "id": "3502702", + "profile": { + "bust": "80", + "height": "162", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "シークレット★ハート", + "alias_name_display": "シークレット★ハート", + "hash": "f6e5a4e341770463ef088e55921596fa", + "id": "3404701", + "profile": { + "bust": "80", + "height": "162", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "シークレット★ハート", + "alias_name_display": "シークレット★ハート", + "hash": "f9385a42acabcfae3013c79d5466edf4", + "id": "3504702", + "profile": { + "bust": "80", + "height": "162", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "ラブ★クリスマス", + "alias_name_display": "ラブ★クリスマス", + "hash": "c34d79efd9030ebf948a18cbf9df7bf3", + "id": "3410201", + "profile": { + "bust": "80", + "height": "162", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "ラブ★クリスマス", + "alias_name_display": "ラブ★クリスマス", + "hash": "70ca98bb88391ddbaf3841e5912c7367", + "id": "3510202", + "profile": { + "bust": "80", + "height": "162", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "ワンダフルマジック", + "alias_name_display": "ワンダフルマジック", + "hash": "4a3abe4cfb93b694333cddf0c8521f64", + "id": "3412801", + "profile": { + "bust": "80", + "height": "162", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "ワンダフルマジック", + "alias_name_display": "ワンダフルマジック", + "hash": "e204975f21b0e3374a0633d0522f1b19", + "id": "3512802", + "profile": { + "bust": "80", + "height": "162", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "夏のユウワク", + "alias_name_display": "夏のユウワク", + "hash": "76c2eb6eac6f3d975264dfaac44157c7", + "id": "3416301", + "profile": { + "bust": "80", + "height": "162", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "夏のユウワク", + "alias_name_display": "夏のユウワク", + "hash": "eb38818dc3fd59a5cae7f69a4f743f6c", + "id": "3516302", + "profile": { + "bust": "80", + "height": "162", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "3rdアニバーサリー", + "alias_name_display": "3rdアニバーサリー", + "event": [ + { + "event_id": 415, + "event_name": "アイドルプロデュース the 3rd Anniversary" + } + ], + "hash": "21886e4c2903ab6da97230b772c6804f", + "id": "3419401", + "profile": { + "bust": "80", + "height": "162", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "3rdアニバーサリー", + "alias_name_display": "3rdアニバーサリー", + "event": [ + { + "event_id": 415, + "event_name": "アイドルプロデュース the 3rd Anniversary" + } + ], + "hash": "5f0ff7b6385298516aedd9b4e334a018", + "id": "3519402", + "profile": { + "bust": "80", + "height": "162", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "3rdアニバーサリー・S", + "alias_name_display": "3rdアニバーサリー・S", + "event": [ + { + "event_id": 415, + "event_name": "アイドルプロデュース the 3rd Anniversary" + } + ], + "hash": "942ee9cb2a6140de3f7f35122ebe7e00", + "id": "3419501", + "profile": { + "bust": "80", + "height": "162", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "3rdアニバーサリー・S", + "alias_name_display": "3rdアニバーサリー・S", + "event": [ + { + "event_id": 415, + "event_name": "アイドルプロデュース the 3rd Anniversary" + } + ], + "hash": "e6bafa973570753123cd686c18c2b975", + "id": "3519502", + "profile": { + "bust": "80", + "height": "162", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "ラブ★サマーナイト", + "alias_name_display": "ラブ★サマーナイト", + "hash": "3ea30b1c14dafc422ae4b4eb46aaa54e", + "id": "3424801", + "profile": { + "bust": "80", + "height": "162", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "ラブ★サマーナイト", + "alias_name_display": "ラブ★サマーナイト", + "hash": "f84e6d3c1d11b46d7efe8e53e1013eb4", + "id": "3524802", + "profile": { + "bust": "80", + "height": "162", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "G4U!", + "alias_name_display": "G4U!", + "hash": "8d9c26ea00d4d16b952f129ce7c80034", + "id": "3530502", + "profile": { + "bust": "80", + "height": "162", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "ラブ★ドクター", + "alias_name_display": "ラブ★ドクター", + "hash": "7523568f90f1dabbcacf633f6f178729", + "id": "3430601", + "profile": { + "bust": "80", + "height": "162", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "ラブ★ドクター", + "alias_name_display": "ラブ★ドクター", + "hash": "61497838f9a33ff6592fa0e11c4c2c1a", + "id": "3530602", + "profile": { + "bust": "80", + "height": "162", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "ユア★ウォーム", + "alias_name_display": "ユア★ウォーム", + "hash": "4de072a494475aa83d7ee9eca92de2bb", + "id": "3437501", + "profile": { + "bust": "80", + "height": "162", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "ユア★ウォーム", + "alias_name_display": "ユア★ウォーム", + "hash": "cd1aaa15207932e56aaa449c14daa578", + "id": "3537502", + "profile": { + "bust": "80", + "height": "162", + "hip": "82", + "waist": "56", + "weight": "43" + } + }, + { + "alias_name": "たたいてご褒美", + "alias_name_display": "たたいてご褒美", + "hash": "062f663090a8424fca1a20133b774120", + "id": "3538702", + "profile": { + "bust": "80", + "height": "162", + "hip": "82", + "waist": "56", + "weight": "43" + } + } + ], + "idol_id": 167, + "idol_name": "城ヶ崎美嘉", + "idol_name_display": "城ヶ崎美嘉", + "units": [ + { + "id": "50", + "name": "ファミリアツイン" + }, + { + "id": "113", + "name": "セクシーギャルズ" + }, + { + "id": "185", + "name": "LiPPS" + }, + { + "id": "204", + "name": "トロピカル☆スターズ" + }, + { + "id": "212", + "name": "CINDERELLA GIRLS" + } + ] + }, + { + "aliases": [ + { + "hash": "959bc006631151106b824edd21901161", + "id": "3200601", + "profile": { + "bust": "72", + "height": "149", + "hip": "75", + "waist": "54", + "weight": "36" + } + }, + { + "hash": "2e78f311230052d2ccf604dc941ebc8c", + "id": "3300602", + "profile": { + "bust": "72", + "height": "149", + "hip": "75", + "waist": "54", + "weight": "36" + } + }, + { + "alias_name": "夏休み", + "alias_name_display": "夏休み", + "event": [ + { + "event_id": 413, + "event_name": "みんなのなつやすみ" + } + ], + "hash": "d8d930d28b4ce932041240e81f907905", + "id": "3218101", + "profile": { + "bust": "72", + "height": "149", + "hip": "75", + "waist": "54", + "weight": "36" + } + }, + { + "alias_name": "夏休み", + "alias_name_display": "夏休み", + "event": [ + { + "event_id": 413, + "event_name": "みんなのなつやすみ" + } + ], + "hash": "78f52e2a15799e1e06822dfe51d3eaa3", + "id": "3318102", + "profile": { + "bust": "72", + "height": "149", + "hip": "75", + "waist": "54", + "weight": "36" + } + }, + { + "alias_name": "笑顔の夏休み", + "alias_name_display": "笑顔の夏休み", + "event": [ + { + "event_id": 413, + "event_name": "みんなのなつやすみ" + } + ], + "hash": "7adcfc7258831785ce0f855a13f244a6", + "id": "3218201", + "profile": { + "bust": "72", + "height": "149", + "hip": "75", + "waist": "54", + "weight": "36" + } + }, + { + "alias_name": "笑顔の夏休み", + "alias_name_display": "笑顔の夏休み", + "event": [ + { + "event_id": 413, + "event_name": "みんなのなつやすみ" + } + ], + "hash": "a8164aee777ecd0f1802e98e5acaeaef", + "id": "3318202", + "profile": { + "bust": "72", + "height": "149", + "hip": "75", + "waist": "54", + "weight": "36" + } + }, + { + "alias_name": "ハイカラサクラ", + "alias_name_display": "ハイカラサクラ", + "hash": "fb731622d7dbb239f5877d838b883c02", + "id": "3222301", + "profile": { + "bust": "72", + "height": "149", + "hip": "75", + "waist": "54", + "weight": "36" + } + }, + { + "alias_name": "ハイカラサクラ", + "alias_name_display": "ハイカラサクラ", + "hash": "5013bb8c3861ccf38077eb5222cb2282", + "id": "3322302", + "profile": { + "bust": "72", + "height": "149", + "hip": "75", + "waist": "54", + "weight": "36" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "6ea43f0179614b007603260b8bdf8fe1", + "id": "3401401", + "profile": { + "bust": "72", + "height": "149", + "hip": "75", + "waist": "54", + "weight": "36" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "f4a121eb8de314497224aed4155c7291", + "id": "3501402", + "profile": { + "bust": "72", + "height": "149", + "hip": "75", + "waist": "54", + "weight": "36" + } + }, + { + "alias_name": "カリスマちびギャル", + "alias_name_display": "カリスマちびギャル", + "hash": "98998d4de666be93b4e9667965b80808", + "id": "3402301", + "profile": { + "bust": "72", + "height": "149", + "hip": "75", + "waist": "54", + "weight": "36" + } + }, + { + "alias_name": "カリスマちびギャル", + "alias_name_display": "カリスマちびギャル", + "hash": "ae8fb02e54bda306eb45dd2ecf875185", + "id": "3502302", + "profile": { + "bust": "72", + "height": "149", + "hip": "75", + "waist": "54", + "weight": "36" + } + }, + { + "alias_name": "ハッピー☆クリスマス", + "alias_name_display": "ハッピー☆クリスマス", + "hash": "d9b090bc9ba7b6b5cf9004ac1014fde3", + "id": "3404101", + "profile": { + "bust": "72", + "height": "149", + "hip": "75", + "waist": "54", + "weight": "36" + } + }, + { + "alias_name": "ハッピー☆クリスマス", + "alias_name_display": "ハッピー☆クリスマス", + "hash": "59b6132bdb66f678941338690c3eca2f", + "id": "3504102", + "profile": { + "bust": "72", + "height": "149", + "hip": "75", + "waist": "54", + "weight": "36" + } + }, + { + "alias_name": "シークレット☆モード", + "alias_name_display": "シークレット☆モード", + "hash": "5f884308996c7f7369f304379ac028cc", + "id": "3409401", + "profile": { + "bust": "72", + "height": "149", + "hip": "75", + "waist": "54", + "weight": "36" + } + }, + { + "alias_name": "シークレット☆モード", + "alias_name_display": "シークレット☆モード", + "hash": "e3990a65bbb99ede5a0fd7cd3ce57100", + "id": "3509402", + "profile": { + "bust": "72", + "height": "149", + "hip": "75", + "waist": "54", + "weight": "36" + } + }, + { + "alias_name": "ワンダフルマジック", + "alias_name_display": "ワンダフルマジック", + "hash": "4ecd248e0f400d89b150c7d9c6f125ae", + "id": "3412601", + "profile": { + "bust": "72", + "height": "149", + "hip": "75", + "waist": "54", + "weight": "36" + } + }, + { + "alias_name": "ワンダフルマジック", + "alias_name_display": "ワンダフルマジック", + "hash": "45e3224de0e8d9b80d0739e4dbc6e523", + "id": "3512602", + "profile": { + "bust": "72", + "height": "149", + "hip": "75", + "waist": "54", + "weight": "36" + } + }, + { + "alias_name": "ウィンター☆モード", + "alias_name_display": "ウィンター☆モード", + "hash": "5ae975e8058ac9fa8dfe9fdabe6d9249", + "id": "3420001", + "profile": { + "bust": "72", + "height": "149", + "hip": "75", + "waist": "54", + "weight": "36" + } + }, + { + "alias_name": "ウィンター☆モード", + "alias_name_display": "ウィンター☆モード", + "hash": "b67b9f2b0751ff7104544f92e91151b9", + "id": "3520002", + "profile": { + "bust": "72", + "height": "149", + "hip": "75", + "waist": "54", + "weight": "36" + } + }, + { + "alias_name": "DONDOKOリズム", + "alias_name_display": "DONDOKOリズム", + "hash": "c412e6116df1c59a54a022a2e4c0ae2a", + "id": "3521002", + "profile": { + "bust": "72", + "height": "149", + "hip": "75", + "waist": "54", + "weight": "36" + } + }, + { + "alias_name": "凸レーション", + "alias_name_display": "凸レーション", + "hash": "79455fc3b740c160d1c1dc6d652b551a", + "id": "3525502", + "profile": { + "bust": "72", + "height": "149", + "hip": "75", + "waist": "54", + "weight": "36" + } + }, + { + "alias_name": "G4U!", + "alias_name_display": "G4U!", + "hash": "4850054db6e522f5a192e1bbef55e563", + "id": "3526002", + "profile": { + "bust": "72", + "height": "149", + "hip": "75", + "waist": "54", + "weight": "36" + } + }, + { + "alias_name": "ナイト☆バニーギャル", + "alias_name_display": "ナイト☆バニーギャル", + "hash": "1cf8e7776ccc0f5695f30fc7fced834d", + "id": "3426401", + "profile": { + "bust": "72", + "height": "149", + "hip": "75", + "waist": "54", + "weight": "36" + } + }, + { + "alias_name": "ナイト☆バニーギャル", + "alias_name_display": "ナイト☆バニーギャル", + "hash": "e254aad0347bd2ef9680f7313b26dbe9", + "id": "3526402", + "profile": { + "bust": "72", + "height": "149", + "hip": "75", + "waist": "54", + "weight": "36" + } + }, + { + "alias_name": "ちょこっと☆ギャル", + "alias_name_display": "ちょこっと☆ギャル", + "hash": "8bcbc5887f1256838f7ea35c8cd3d351", + "id": "3429801", + "profile": { + "bust": "72", + "height": "149", + "hip": "75", + "waist": "54", + "weight": "36" + } + }, + { + "alias_name": "ちょこっと☆ギャル", + "alias_name_display": "ちょこっと☆ギャル", + "hash": "efc88c60acb3ff739690c459246d436b", + "id": "3529802", + "profile": { + "bust": "72", + "height": "149", + "hip": "75", + "waist": "54", + "weight": "36" + } + }, + { + "alias_name": "シンデレラドリーム", + "alias_name_display": "シンデレラドリーム", + "hash": "71e2444ffa964bc4222f3afcb11af6b7", + "id": "3433301", + "profile": { + "bust": "72", + "height": "149", + "hip": "75", + "waist": "54", + "weight": "36" + } + }, + { + "alias_name": "シンデレラドリーム", + "alias_name_display": "シンデレラドリーム", + "hash": "10b54a98f80b3573f8a64e1f4f1517e8", + "id": "3533302", + "profile": { + "bust": "72", + "height": "149", + "hip": "75", + "waist": "54", + "weight": "36" + } + }, + { + "alias_name": "とびきり☆ニューイヤー", + "alias_name_display": "とびきり☆ニューイヤー", + "event": [ + { + "event_id": 726, + "event_name": "ドリームLIVEフェスティバル新春SP" + } + ], + "hash": "44d249234243ecd62758f1119e59670e", + "id": "3437201", + "profile": { + "bust": "72", + "height": "149", + "hip": "75", + "waist": "54", + "weight": "36" + } + }, + { + "alias_name": "とびきり☆ニューイヤー", + "alias_name_display": "とびきり☆ニューイヤー", + "event": [ + { + "event_id": 726, + "event_name": "ドリームLIVEフェスティバル新春SP" + } + ], + "hash": "2c6f68904c5e8c886b60fcc1c01682df", + "id": "3537202", + "profile": { + "bust": "72", + "height": "149", + "hip": "75", + "waist": "54", + "weight": "36" + } + } + ], + "idol_id": 168, + "idol_name": "城ヶ崎莉嘉", + "idol_name_display": "城ヶ崎莉嘉", + "units": [ + { + "id": "50", + "name": "ファミリアツイン" + }, + { + "id": "107", + "name": "ロッキングガール" + }, + { + "id": "149", + "name": "凸レーション" + }, + { + "id": "158", + "name": "ハイカラサクラ" + }, + { + "id": "186", + "name": "LittlePOPS" + }, + { + "id": "204", + "name": "トロピカル☆スターズ" + }, + { + "id": "213", + "name": "CINDERELLA PROJECT" + } + ] + }, + { + "aliases": [ + { + "hash": "9ffc7c24c1e76bcb922e7b8c1b40fd66", + "id": "3200701", + "profile": { + "bust": "81", + "height": "156", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "hash": "d76f5e3183e18f6bdc72e2c29842942b", + "id": "3300702", + "profile": { + "bust": "81", + "height": "156", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "UKスタイル", + "alias_name_display": "UKスタイル", + "event": [ + { + "event_id": 502, + "event_name": "アイドルLIVEツアーinイギリス" + } + ], + "hash": "95f215e70e1bcf2d255ba093a53fc51a", + "id": "3208401", + "profile": { + "bust": "81", + "height": "156", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "UKスタイル", + "alias_name_display": "UKスタイル", + "event": [ + { + "event_id": 502, + "event_name": "アイドルLIVEツアーinイギリス" + } + ], + "hash": "908dafec84548cbf8c75842184023c91", + "id": "3308402", + "profile": { + "bust": "81", + "height": "156", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "ロワイヤルスタイル", + "alias_name_display": "ロワイヤルスタイル", + "event": [ + { + "event_id": 802, + "event_name": "第2回アイドルLIVEロワイヤル" + } + ], + "hash": "fde23288979f4580f5deedef60cb501a", + "id": "3214501", + "profile": { + "bust": "81", + "height": "156", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "ロワイヤルスタイル", + "alias_name_display": "ロワイヤルスタイル", + "event": [ + { + "event_id": 802, + "event_name": "第2回アイドルLIVEロワイヤル" + } + ], + "hash": "cb50684de885349d4aa14adf1dadd9b4", + "id": "3314502", + "profile": { + "bust": "81", + "height": "156", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "スリーピースパンクス", + "alias_name_display": "スリーピースパンクス", + "hash": "1eb173041b3bf713cef78c219d521b76", + "id": "3217401", + "profile": { + "bust": "81", + "height": "156", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "スリーピースパンクス", + "alias_name_display": "スリーピースパンクス", + "hash": "e3ac8ab38a64054351d2e1299a9c6e3f", + "id": "3317402", + "profile": { + "bust": "81", + "height": "156", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "秋色温泉", + "alias_name_display": "秋色温泉", + "hash": "287daffde22b976c189b75a094c22f5f", + "id": "3220101", + "profile": { + "bust": "81", + "height": "156", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "秋色温泉", + "alias_name_display": "秋色温泉", + "hash": "6a8b35f08771019784ec87e3be87d16f", + "id": "3320102", + "profile": { + "bust": "81", + "height": "156", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "ハウリングダンサー", + "alias_name_display": "ハウリングダンサー", + "event": [ + { + "event_id": "024", + "event_name": "第24回プロダクションマッチフェスティバル" + } + ], + "hash": "5b35d5a564068d9a4eabb7d3e29fd334", + "id": "3325802", + "profile": { + "bust": "81", + "height": "156", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "T.B.オーシャン", + "alias_name_display": "T.B.オーシャン", + "event": [ + { + "event_id": 1508, + "event_name": "チーム対抗トークバトルショー in SUMMER" + } + ], + "hash": "492f86962e67178c2c2faf2915bc2dd9", + "id": "3230201", + "profile": { + "bust": "81", + "height": "156", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "T.B.オーシャン", + "alias_name_display": "T.B.オーシャン", + "event": [ + { + "event_id": 1508, + "event_name": "チーム対抗トークバトルショー in SUMMER" + } + ], + "hash": "4400c05573122de64ed14d39a7bdcbc9", + "id": "3330202", + "profile": { + "bust": "81", + "height": "156", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "ゴーフォーヴィクトリー", + "alias_name_display": "ゴーフォーヴィクトリー", + "hash": "1a488f8bab8e0efae8f777f10b21dc6a", + "id": "3233001", + "profile": { + "bust": "81", + "height": "156", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "ゴーフォーヴィクトリー", + "alias_name_display": "ゴーフォーヴィクトリー", + "hash": "da406e1470dbda90d69b49c622d235fb", + "id": "3333002", + "profile": { + "bust": "81", + "height": "156", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "アッパーテンション", + "alias_name_display": "アッパーテンション", + "event": [ + { + "event_id": 505, + "event_name": "アイドルLIVEツアーinバリ島" + } + ], + "hash": "7f26f3f44be087e5e97f699666dacd54", + "id": "3407601", + "profile": { + "bust": "81", + "height": "156", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "アッパーテンション", + "alias_name_display": "アッパーテンション", + "event": [ + { + "event_id": 505, + "event_name": "アイドルLIVEツアーinバリ島" + } + ], + "hash": "5106e3a24d812aa9ed097708c9166f18", + "id": "3507602", + "profile": { + "bust": "81", + "height": "156", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "パワフル・ロワイヤル", + "alias_name_display": "パワフル・ロワイヤル", + "event": [ + { + "event_id": 812, + "event_name": "第12回アイドルLIVEロワイヤル" + } + ], + "hash": "884598c99e835d4c6306f2dac9e083a5", + "id": "3423701", + "profile": { + "bust": "81", + "height": "156", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "パワフル・ロワイヤル", + "alias_name_display": "パワフル・ロワイヤル", + "event": [ + { + "event_id": 812, + "event_name": "第12回アイドルLIVEロワイヤル" + } + ], + "hash": "35d6ff804d2fa7642da6cf413c94feed", + "id": "3523702", + "profile": { + "bust": "81", + "height": "156", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "クルーエルクロウ", + "alias_name_display": "クルーエルクロウ", + "event": [ + { + "event_id": 1901, + "event_name": "童話公演 気まぐれアリスと不思議の国" + } + ], + "hash": "922f70e6284cac4909124ad587aad82f", + "id": "3431201", + "profile": { + "bust": "81", + "height": "156", + "hip": "81", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "クルーエルクロウ", + "alias_name_display": "クルーエルクロウ", + "event": [ + { + "event_id": 1901, + "event_name": "童話公演 気まぐれアリスと不思議の国" + } + ], + "hash": "1ee716e4411265ade87048be92422d1d", + "id": "3531202", + "profile": { + "bust": "81", + "height": "156", + "hip": "81", + "waist": "55", + "weight": "45" + } + } + ], + "idol_id": 169, + "idol_name": "仙崎恵磨", + "idol_name_display": "仙崎恵磨", + "units": [ + { + "id": "112", + "name": "ギャルズパーティー" + }, + { + "id": "154", + "name": "秋色温泉" + }, + { + "id": "170", + "name": "UKスタイル" + }, + { + "id": "208", + "name": "ロワイヤルスタイル" + } + ] + }, + { + "aliases": [ + { + "hash": "2ba9aa6bf49a8d75a1cf6ae3a131de74", + "id": "3200801", + "profile": { + "bust": "80", + "height": "148", + "hip": "82", + "waist": "60", + "weight": "40" + } + }, + { + "hash": "3d0085be5f6add9c2d1eb2b484a02fbf", + "id": "3300802", + "profile": { + "bust": "80", + "height": "148", + "hip": "82", + "waist": "60", + "weight": "40" + } + }, + { + "alias_name": "湯けむり紀行", + "alias_name_display": "湯けむり紀行", + "hash": "0fea5846d80145b07c4a992b77c85922", + "id": "3231301", + "profile": { + "bust": "80", + "height": "148", + "hip": "82", + "waist": "60", + "weight": "40" + } + }, + { + "alias_name": "湯けむり紀行", + "alias_name_display": "湯けむり紀行", + "hash": "d963e9624da72e02228195db55a89219", + "id": "3331302", + "profile": { + "bust": "80", + "height": "148", + "hip": "82", + "waist": "60", + "weight": "40" + } + }, + { + "alias_name": "全力熱血", + "alias_name_display": "全力熱血", + "hash": "5d7f41615b787cc7d3ab3a1f377fd936", + "id": "3402801", + "profile": { + "bust": "80", + "height": "148", + "hip": "82", + "waist": "60", + "weight": "40" + } + }, + { + "alias_name": "全力熱血", + "alias_name_display": "全力熱血", + "hash": "363a16627a484afd5d6a40db7fc761e8", + "id": "3502802", + "profile": { + "bust": "80", + "height": "148", + "hip": "82", + "waist": "60", + "weight": "40" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "36ba64d4547b90ed4a529998022f112f", + "id": "3406701", + "profile": { + "bust": "80", + "height": "148", + "hip": "82", + "waist": "60", + "weight": "40" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "3c7d9f82c5984e67fc79749cfe3869cc", + "id": "3506702", + "profile": { + "bust": "80", + "height": "148", + "hip": "82", + "waist": "60", + "weight": "40" + } + }, + { + "alias_name": "暴走☆花嫁", + "alias_name_display": "暴走☆花嫁", + "hash": "8f54ab4a77270d5799c31edff371e945", + "id": "3407101", + "profile": { + "bust": "80", + "height": "148", + "hip": "82", + "waist": "60", + "weight": "40" + } + }, + { + "alias_name": "暴走☆花嫁", + "alias_name_display": "暴走☆花嫁", + "hash": "1d1b4eba1b4f97930d41cd9bd6e8c45e", + "id": "3507102", + "profile": { + "bust": "80", + "height": "148", + "hip": "82", + "waist": "60", + "weight": "40" + } + }, + { + "alias_name": "バーニングハート", + "alias_name_display": "バーニングハート", + "hash": "1a41c58580b5f380f9ae1080f1bd01c5", + "id": "3410101", + "profile": { + "bust": "80", + "height": "148", + "hip": "82", + "waist": "60", + "weight": "40" + } + }, + { + "alias_name": "バーニングハート", + "alias_name_display": "バーニングハート", + "hash": "1c048cc1b02c25f972f8147b14c2c19b", + "id": "3510102", + "profile": { + "bust": "80", + "height": "148", + "hip": "82", + "waist": "60", + "weight": "40" + } + }, + { + "alias_name": "プールサイドクイーン", + "alias_name_display": "プールサイドクイーン", + "hash": "0a49238fa8e0451304135adbc957705c", + "id": "3415601", + "profile": { + "bust": "80", + "height": "148", + "hip": "82", + "waist": "60", + "weight": "40" + } + }, + { + "alias_name": "プールサイドクイーン", + "alias_name_display": "プールサイドクイーン", + "hash": "50a3f572c3c17067f6a37ba5b2b58da4", + "id": "3515602", + "profile": { + "bust": "80", + "height": "148", + "hip": "82", + "waist": "60", + "weight": "40" + } + }, + { + "alias_name": "3rdアニバーサリー", + "alias_name_display": "3rdアニバーサリー", + "event": [ + { + "event_id": 415, + "event_name": "アイドルプロデュース the 3rd Anniversary" + } + ], + "hash": "99e843a15f7f2073232bb045f5f59baf", + "id": "3419601", + "profile": { + "bust": "80", + "height": "148", + "hip": "82", + "waist": "60", + "weight": "40" + } + }, + { + "alias_name": "3rdアニバーサリー", + "alias_name_display": "3rdアニバーサリー", + "event": [ + { + "event_id": 415, + "event_name": "アイドルプロデュース the 3rd Anniversary" + } + ], + "hash": "b5432fa0d132d27b02039aea00da87d3", + "id": "3519602", + "profile": { + "bust": "80", + "height": "148", + "hip": "82", + "waist": "60", + "weight": "40" + } + }, + { + "alias_name": "3rdアニバーサリー・S", + "alias_name_display": "3rdアニバーサリー・S", + "event": [ + { + "event_id": 415, + "event_name": "アイドルプロデュース the 3rd Anniversary" + } + ], + "hash": "bd500c4da4d4b7e1ca5e54f813177ed6", + "id": "3419701", + "profile": { + "bust": "80", + "height": "148", + "hip": "82", + "waist": "60", + "weight": "40" + } + }, + { + "alias_name": "3rdアニバーサリー・S", + "alias_name_display": "3rdアニバーサリー・S", + "event": [ + { + "event_id": 415, + "event_name": "アイドルプロデュース the 3rd Anniversary" + } + ], + "hash": "e27d096696fd3ffd8baaf504f526864d", + "id": "3519702", + "profile": { + "bust": "80", + "height": "148", + "hip": "82", + "waist": "60", + "weight": "40" + } + }, + { + "alias_name": "放課後トライ", + "alias_name_display": "放課後トライ", + "event": [ + { + "event_id": "022", + "event_name": "第22回プロダクションマッチフェスティバル" + } + ], + "hash": "bdc9cebae8d2f4aa75cbe2ac77876726", + "id": "3424301", + "profile": { + "bust": "80", + "height": "148", + "hip": "82", + "waist": "60", + "weight": "40" + } + }, + { + "alias_name": "放課後トライ", + "alias_name_display": "放課後トライ", + "event": [ + { + "event_id": "022", + "event_name": "第22回プロダクションマッチフェスティバル" + } + ], + "hash": "40577520ba74911e5233e36f28eac68d", + "id": "3524302", + "profile": { + "bust": "80", + "height": "148", + "hip": "82", + "waist": "60", + "weight": "40" + } + }, + { + "alias_name": "シンデレラドリーム", + "alias_name_display": "シンデレラドリーム", + "hash": "c3eca737aebfe22448304ff91b552b4e", + "id": "3429701", + "profile": { + "bust": "80", + "height": "148", + "hip": "82", + "waist": "60", + "weight": "40" + } + }, + { + "alias_name": "シンデレラドリーム", + "alias_name_display": "シンデレラドリーム", + "hash": "a90865f4f336e89e69fe55f45137c05d", + "id": "3529702", + "profile": { + "bust": "80", + "height": "148", + "hip": "82", + "waist": "60", + "weight": "40" + } + }, + { + "alias_name": "シャイニーブルーム", + "alias_name_display": "シャイニーブルーム", + "hash": "2149410a8b10577676fd93962e65e72d", + "id": "3432401", + "profile": { + "bust": "80", + "height": "148", + "hip": "82", + "waist": "60", + "weight": "40" + } + }, + { + "alias_name": "シャイニーブルーム", + "alias_name_display": "シャイニーブルーム", + "hash": "9c04faffee708181d50dca5884d3fb1e", + "id": "3532402", + "profile": { + "bust": "80", + "height": "148", + "hip": "82", + "waist": "60", + "weight": "40" + } + } + ], + "idol_id": 170, + "idol_name": "日野茜", + "idol_name_display": "日野茜", + "units": [ + { + "id": "15", + "name": "サイキックヒーツ" + }, + { + "id": "148", + "name": "チアフルボンバーズ" + }, + { + "id": "153", + "name": "Positive Passion" + }, + { + "id": "190", + "name": "サマプリ" + }, + { + "id": "203", + "name": "ゼッケンズ" + }, + { + "id": "212", + "name": "CINDERELLA GIRLS" + } + ] + }, + { + "aliases": [ + { + "hash": "e36b10a6274efaa7836e5b54f9a47ffa", + "id": "3200901", + "profile": { + "bust": "91", + "height": "182", + "hip": "86", + "waist": "64", + "weight": "60" + } + }, + { + "hash": "67fb7b5c31807c904c0fac573a185733", + "id": "3300902", + "profile": { + "bust": "91", + "height": "184", + "hip": "87", + "waist": "65", + "weight": "61" + } + }, + { + "alias_name": "京町乙女", + "alias_name_display": "京町乙女", + "event": [ + { + "event_id": 402, + "event_name": "アイドルプロデュース京町編" + } + ], + "hash": "27768e59fb3f6273046deb807ed464d1", + "id": "3206801", + "profile": { + "bust": "92", + "height": "186", + "hip": "87", + "waist": "65", + "weight": "61.5" + } + }, + { + "alias_name": "京町乙女", + "alias_name_display": "京町乙女", + "event": [ + { + "event_id": 402, + "event_name": "アイドルプロデュース京町編" + } + ], + "hash": "d114ead173608ffaaa6d3865c7cf001b", + "id": "3306802", + "profile": { + "bust": "92", + "height": "186.2", + "hip": "87", + "waist": "65", + "weight": "61.5" + } + }, + { + "alias_name": "ナイトパーティー", + "alias_name_display": "ナイトパーティー", + "hash": "bf0808c3848632a3eae9e4f9ac3b2d2d", + "id": "3224001", + "profile": { + "bust": "92", + "height": "186.2", + "hip": "87", + "waist": "65", + "weight": "61.5" + } + }, + { + "alias_name": "ナイトパーティー", + "alias_name_display": "ナイトパーティー", + "hash": "91323eeabe7830ac1134cb7cd640abed", + "id": "3324002", + "profile": { + "bust": "92", + "height": "186.2", + "hip": "87", + "waist": "65", + "weight": "61.5" + } + }, + { + "alias_name": "ラブリープリンセス", + "alias_name_display": "ラブリープリンセス", + "event": [ + { + "event_id": 201, + "event_name": "アイドルサバイバル" + } + ], + "hash": "13d35f865ec01a0b67bd9298ce18fde1", + "id": "3400801", + "profile": { + "bust": "91", + "height": "184.5", + "hip": "86", + "waist": "64", + "weight": "61" + } + }, + { + "alias_name": "ラブリープリンセス", + "alias_name_display": "ラブリープリンセス", + "event": [ + { + "event_id": 201, + "event_name": "アイドルサバイバル" + } + ], + "hash": "8d11496014d025ce5a9d6b29798cbb28", + "id": "3500802", + "profile": { + "bust": "91", + "height": "185", + "hip": "87", + "waist": "65", + "weight": "61.5" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "98e1c97f110919d0776c498088d498a2", + "id": "3402601", + "profile": { + "bust": "91", + "height": "182", + "hip": "86", + "waist": "64", + "weight": "60" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "805521caf23ffffe33935a44a3c3bb9f", + "id": "3502602", + "profile": { + "bust": "91", + "height": "184", + "hip": "87", + "waist": "65", + "weight": "61" + } + }, + { + "alias_name": "キューティーメイド", + "alias_name_display": "キューティーメイド", + "hash": "681565d6931e8942e07aa96914bae78a", + "id": "3403001", + "profile": { + "bust": "92", + "height": "185.5", + "hip": "87", + "waist": "65", + "weight": "61" + } + }, + { + "alias_name": "キューティーメイド", + "alias_name_display": "キューティーメイド", + "hash": "c838c2b59f98bf1c5a788e6f735da0b1", + "id": "3503002", + "profile": { + "bust": "92", + "height": "186", + "hip": "87", + "waist": "65", + "weight": "61.5" + } + }, + { + "alias_name": "ゴシックプリンセス", + "alias_name_display": "ゴシックプリンセス", + "hash": "f4932a6e93017b3dde0189c4b2c765af", + "id": "3405301", + "profile": { + "bust": "92", + "height": "186", + "hip": "87", + "waist": "65", + "weight": "61.5" + } + }, + { + "alias_name": "ゴシックプリンセス", + "alias_name_display": "ゴシックプリンセス", + "hash": "4ce06aedcdc3452d744898d33dacf148", + "id": "3505302", + "profile": { + "bust": "92", + "height": "186.2", + "hip": "87", + "waist": "65", + "weight": "61.5" + } + }, + { + "alias_name": "ニューイヤープリンセス", + "alias_name_display": "ニューイヤープリンセス", + "hash": "a913d3efecf382ac9179ba1073df905c", + "id": "3410801", + "profile": { + "bust": "92", + "height": "186.2", + "hip": "87", + "waist": "65", + "weight": "61.5" + } + }, + { + "alias_name": "ニューイヤープリンセス", + "alias_name_display": "ニューイヤープリンセス", + "hash": "eccdc3e012a96c6c4f69cebfb8774946", + "id": "3510802", + "profile": { + "bust": "92", + "height": "186.2", + "hip": "87", + "waist": "65", + "weight": "61.5" + } + }, + { + "alias_name": "ワンダフルマジック", + "alias_name_display": "ワンダフルマジック", + "hash": "e4cf30032d3151909b22ee89cdc5a16d", + "id": "3412401", + "profile": { + "bust": "92", + "height": "186.2", + "hip": "87", + "waist": "65", + "weight": "61.5" + } + }, + { + "alias_name": "ワンダフルマジック", + "alias_name_display": "ワンダフルマジック", + "hash": "5dda31240aff8ba47ce49dc2b381009e", + "id": "3512402", + "profile": { + "bust": "92", + "height": "186.2", + "hip": "87", + "waist": "65", + "weight": "61.5" + } + }, + { + "alias_name": "びびっど☆モデル", + "alias_name_display": "びびっど☆モデル", + "event": [ + { + "event_id": 1203, + "event_name": "目指せきらきらモデル アイドルチャレンジ" + } + ], + "hash": "3f3e317ba9be747dc17321a725664108", + "id": "3417601", + "profile": { + "bust": "92", + "height": "186.2", + "hip": "87", + "waist": "65", + "weight": "61.5" + } + }, + { + "alias_name": "びびっど☆モデル", + "alias_name_display": "びびっど☆モデル", + "event": [ + { + "event_id": 1203, + "event_name": "目指せきらきらモデル アイドルチャレンジ" + } + ], + "hash": "90977ab9ab78e092fa509d5313e532b4", + "id": "3517602", + "profile": { + "bust": "92", + "height": "186.2", + "hip": "87", + "waist": "65", + "weight": "61.5" + } + }, + { + "alias_name": "はぴはぴデビル", + "alias_name_display": "はぴはぴデビル", + "hash": "db62b848e999ac5f02979ed4a00c2f9e", + "id": "3421201", + "profile": { + "bust": "92", + "height": "186.2", + "hip": "87", + "waist": "65", + "weight": "61.5" + } + }, + { + "alias_name": "はぴはぴデビル", + "alias_name_display": "はぴはぴデビル", + "hash": "c10030d3b38bd695450f91a5177e5eb4", + "id": "3521202", + "profile": { + "bust": "92", + "height": "186.2", + "hip": "87", + "waist": "65", + "weight": "61.5" + } + }, + { + "alias_name": "凸レーション", + "alias_name_display": "凸レーション", + "hash": "a289fc73aa922d84f7917c8eb21428e0", + "id": "3522702", + "profile": { + "bust": "91", + "height": "185", + "hip": "87", + "waist": "65", + "weight": "61.5" + } + }, + { + "alias_name": "ぐれいと博士", + "alias_name_display": "ぐれいと博士", + "event": [ + { + "event_id": 523, + "event_name": "鋼鉄公演 きらりんロボ -襲来!コスメティア帝国-" + } + ], + "hash": "8318239c3aa1500c359147deafe04495", + "id": "3429101", + "profile": { + "bust": "92", + "height": "186.2", + "hip": "87", + "waist": "65", + "weight": "61.5" + } + }, + { + "alias_name": "ぐれいと博士", + "alias_name_display": "ぐれいと博士", + "event": [ + { + "event_id": 523, + "event_name": "鋼鉄公演 きらりんロボ -襲来!コスメティア帝国-" + } + ], + "hash": "2d2bd33c37a21e558eb0c9fab16a8776", + "id": "3529102", + "profile": { + "bust": "92", + "height": "186.2", + "hip": "87", + "waist": "65", + "weight": "61.5" + } + }, + { + "alias_name": "はぴはぴウェディング", + "alias_name_display": "はぴはぴウェディング", + "hash": "885b27d2b03761b4a9dc6fbaa438b094", + "id": "3432901", + "profile": { + "bust": "92", + "height": "186.2", + "hip": "87", + "waist": "65", + "weight": "61.5" + } + }, + { + "alias_name": "はぴはぴウェディング", + "alias_name_display": "はぴはぴウェディング", + "hash": "076806b1ad6aeae0acb06132c6bb6929", + "id": "3532902", + "profile": { + "bust": "92", + "height": "186.2", + "hip": "87", + "waist": "65", + "weight": "61.5" + } + }, + { + "alias_name": "ぷちっと☆スウィート", + "alias_name_display": "ぷちっと☆スウィート", + "hash": "45cb660714f8f59460d315604f53b314", + "id": "3435601", + "profile": { + "bust": "92", + "height": "186.2", + "hip": "87", + "waist": "65", + "weight": "61.5" + } + }, + { + "alias_name": "ぷちっと☆スウィート", + "alias_name_display": "ぷちっと☆スウィート", + "hash": "ded71c9bb18c1052fb0640e53f40ea04", + "id": "3535602", + "profile": { + "bust": "92", + "height": "186.2", + "hip": "87", + "waist": "65", + "weight": "61.5" + } + }, + { + "alias_name": "ろまんすジェット", + "alias_name_display": "ろまんすジェット", + "event": [ + { + "event_id": "034", + "event_name": "第34回プロダクションマッチフェスティバル" + } + ], + "hash": "e34a8cecd07eb4a178c622a6d45f7f50", + "id": "3438801", + "profile": { + "bust": "92", + "height": "186.2", + "hip": "87", + "waist": "65", + "weight": "61.5" + } + }, + { + "alias_name": "ろまんすジェット", + "alias_name_display": "ろまんすジェット", + "event": [ + { + "event_id": "034", + "event_name": "第34回プロダクションマッチフェスティバル" + } + ], + "hash": "d5d01a505a212461f49c618591073cf5", + "id": "3538802", + "profile": { + "bust": "92", + "height": "186.2", + "hip": "87", + "waist": "65", + "weight": "61.5" + } + } + ], + "idol_id": 171, + "idol_name": "諸星きらり", + "idol_name_display": "諸星きらり", + "units": [ + { + "id": "76", + "name": "HappyHappyTwin" + }, + { + "id": "91", + "name": "京町乙女" + }, + { + "id": "149", + "name": "凸レーション" + }, + { + "id": "191", + "name": "Love Yell" + }, + { + "id": "204", + "name": "トロピカル☆スターズ" + }, + { + "id": "213", + "name": "CINDERELLA PROJECT" + } + ] + }, + { + "aliases": [ + { + "hash": "2af54b80c9be9ffde43904089069d877", + "id": "3201001", + "profile": { + "bust": "86", + "height": "161", + "hip": "88", + "waist": "58", + "weight": "46" + } + }, + { + "hash": "7fedbb6c9f01d1ac667ae1978cc2b3f5", + "id": "3301002", + "profile": { + "bust": "86", + "height": "161", + "hip": "88", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "ビーチガール", + "alias_name_display": "ビーチガール", + "event": [ + { + "event_id": 1703, + "event_name": "アイドルプロデュース おいでよ!海の家" + } + ], + "hash": "342e254d0cc96070e10c97f6cb744832", + "id": "3324402", + "profile": { + "bust": "88", + "height": "161", + "hip": "88", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "ビーチガール・S", + "alias_name_display": "ビーチガール・S", + "event": [ + { + "event_id": 1703, + "event_name": "アイドルプロデュース おいでよ!海の家" + } + ], + "hash": "d8a1b40c7f18b184bf206fef877eb34b", + "id": "3324502", + "profile": { + "bust": "88", + "height": "161", + "hip": "88", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "スイートバレンタイン", + "alias_name_display": "スイートバレンタイン", + "event": [ + { + "event_id": 103, + "event_name": "バレンタインパーティー" + } + ], + "hash": "ff99cc10da22220420bd52ef92a8d135", + "id": "3400901", + "profile": { + "bust": "86", + "height": "161", + "hip": "88", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "スイートバレンタイン", + "alias_name_display": "スイートバレンタイン", + "event": [ + { + "event_id": 103, + "event_name": "バレンタインパーティー" + } + ], + "hash": "bab8fa10fde7b5a62fbd398303d36b79", + "id": "3500902", + "profile": { + "bust": "86", + "height": "161", + "hip": "88", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "シンデレラガール", + "alias_name_display": "シンデレラガール", + "hash": "034377942c947a0ecf549e21e8b0c6be", + "id": "3403201", + "profile": { + "bust": "88", + "height": "161", + "hip": "88", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "シンデレラガール", + "alias_name_display": "シンデレラガール", + "hash": "9c90f735aa3431dd6c1d78ed0fd2e4e1", + "id": "3503202", + "profile": { + "bust": "88", + "height": "161", + "hip": "88", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "アニバーサリープリンセス", + "alias_name_display": "アニバーサリープリンセス", + "event": [ + { + "event_id": 403, + "event_name": "アイドルプロデュース the 1st Anniversary" + } + ], + "hash": "11a50ed020b2340a327caced00b51b5c", + "id": "3403901", + "profile": { + "bust": "88", + "height": "161", + "hip": "88", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "アニバーサリープリンセス", + "alias_name_display": "アニバーサリープリンセス", + "event": [ + { + "event_id": 403, + "event_name": "アイドルプロデュース the 1st Anniversary" + } + ], + "hash": "f769e6ce429482fbbdcde602a3c3309f", + "id": "3503902", + "profile": { + "bust": "88", + "height": "161", + "hip": "88", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "25d5b934facd2e7774950f0739677c73", + "id": "3404801", + "profile": { + "bust": "86", + "height": "161", + "hip": "88", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "06aed4cfdfc8300c80e61e7baca31e71", + "id": "3504802", + "profile": { + "bust": "86", + "height": "161", + "hip": "88", + "waist": "58", + "weight": "46" + } + }, + { + "alias_name": "プリンセスバニー", + "alias_name_display": "プリンセスバニー", + "hash": "4d4a2e681beeaef1858015166d1f9f5d", + "id": "3408501", + "profile": { + "bust": "88", + "height": "161", + "hip": "88", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "プリンセスバニー", + "alias_name_display": "プリンセスバニー", + "hash": "7fbb40e99cb6fea16823cf3fc7c50cd1", + "id": "3508502", + "profile": { + "bust": "88", + "height": "161", + "hip": "88", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "ふわふわメイド", + "alias_name_display": "ふわふわメイド", + "hash": "7efecb6b29255582379ee2a4256047e9", + "id": "3412001", + "profile": { + "bust": "88", + "height": "161", + "hip": "88", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "ふわふわメイド", + "alias_name_display": "ふわふわメイド", + "hash": "4aa960584fafb8410e3ed44ae8ca26b2", + "id": "3512002", + "profile": { + "bust": "88", + "height": "161", + "hip": "88", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "シンデレラドリーム", + "alias_name_display": "シンデレラドリーム", + "hash": "d7ca177e2b83a24a67c781c249182925", + "id": "3416701", + "profile": { + "bust": "88", + "height": "161", + "hip": "88", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "シンデレラドリーム", + "alias_name_display": "シンデレラドリーム", + "hash": "faa98701e195ebc5d0d2da415e0e0d73", + "id": "3516702", + "profile": { + "bust": "88", + "height": "161", + "hip": "88", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "スウィートトゥスウィート", + "alias_name_display": "スウィートトゥスウィート", + "hash": "db8c193960aff622a0cec3ce39ee9989", + "id": "3419001", + "profile": { + "bust": "88", + "height": "161", + "hip": "88", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "スウィートトゥスウィート", + "alias_name_display": "スウィートトゥスウィート", + "hash": "1a77b2cd5134093cda454212e9c4847e", + "id": "3519002", + "profile": { + "bust": "88", + "height": "161", + "hip": "88", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "いっしょにえいっ!", + "alias_name_display": "いっしょにえいっ!", + "hash": "2c022714d96cafa06555dd9f20f40835", + "id": "3423201", + "profile": { + "bust": "88", + "height": "161", + "hip": "88", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "いっしょにえいっ!", + "alias_name_display": "いっしょにえいっ!", + "hash": "55ddccc958d486c8347c694072d1d5cc", + "id": "3523202", + "profile": { + "bust": "88", + "height": "161", + "hip": "88", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "夏のお届け", + "alias_name_display": "夏のお届け", + "event": [ + { + "event_id": 1703, + "event_name": "アイドルプロデュース おいでよ!海の家" + } + ], + "hash": "e82f2ce53d0dcc09860e503516407b62", + "id": "3425301", + "profile": { + "bust": "88", + "height": "161", + "hip": "88", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "夏のお届け", + "alias_name_display": "夏のお届け", + "event": [ + { + "event_id": 1703, + "event_name": "アイドルプロデュース おいでよ!海の家" + } + ], + "hash": "7dd0c60d4ab37295a9201125ad8c178c", + "id": "3525302", + "profile": { + "bust": "88", + "height": "161", + "hip": "88", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "スウィートサマーナイト", + "alias_name_display": "スウィートサマーナイト", + "event": [ + { + "event_id": 722, + "event_name": "夏祭りDEドリームLIVEフェスティバル" + } + ], + "hash": "a3ba1315b2d8f4e7feee004b53c16b49", + "id": "3433401", + "profile": { + "bust": "88", + "height": "161", + "hip": "88", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "スウィートサマーナイト", + "alias_name_display": "スウィートサマーナイト", + "event": [ + { + "event_id": 722, + "event_name": "夏祭りDEドリームLIVEフェスティバル" + } + ], + "hash": "8f7c91d9148d3f3651eaa326b49052d9", + "id": "3533402", + "profile": { + "bust": "88", + "height": "161", + "hip": "88", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "ホーリーリゾートナイト", + "alias_name_display": "ホーリーリゾートナイト", + "hash": "eea0e747d0a7d87755a66d81a80348ae", + "id": "3437001", + "profile": { + "bust": "88", + "height": "161", + "hip": "88", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "ホーリーリゾートナイト", + "alias_name_display": "ホーリーリゾートナイト", + "hash": "b188b901992026dee7ba0b274a118a60", + "id": "3537002", + "profile": { + "bust": "88", + "height": "161", + "hip": "88", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "空のおくりもの", + "alias_name_display": "空のおくりもの", + "hash": "0b19c1ca9b7472477bc293eed4ce1cee", + "id": "3440101", + "profile": { + "bust": "88", + "height": "161", + "hip": "88", + "waist": "57", + "weight": "47" + } + }, + { + "alias_name": "空のおくりもの", + "alias_name_display": "空のおくりもの", + "hash": "36516e31833083116be887f5b74985ab", + "id": "3540102", + "profile": { + "bust": "88", + "height": "161", + "hip": "88", + "waist": "57", + "weight": "47" + } + } + ], + "idol_id": 172, + "idol_name": "十時愛梨", + "idol_name_display": "十時愛梨", + "units": [ + { + "id": "25", + "name": "スウィートラヴァーズ" + }, + { + "id": "69", + "name": "Ai's" + }, + { + "id": "188", + "name": "Sweetches" + }, + { + "id": "203", + "name": "ゼッケンズ" + }, + { + "id": "205", + "name": "シンデレラガール" + }, + { + "id": "212", + "name": "CINDERELLA GIRLS" + } + ] + }, + { + "aliases": [ + { + "hash": "f382a774439acb0a89167e8d2923b630", + "id": "3201101", + "profile": { + "bust": "84", + "height": "155", + "hip": "86", + "waist": "55", + "weight": "43" + } + }, + { + "hash": "6099b368b8bf9782cebecb0e44a41232", + "id": "3301102", + "profile": { + "bust": "84", + "height": "155", + "hip": "86", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "聖夜", + "alias_name_display": "聖夜", + "event": [ + { + "event_id": 101, + "event_name": "星降るクリスマス" + } + ], + "hash": "440a03665b455c7bcfd3dc0d98b824ff", + "id": "3202101", + "profile": { + "bust": "84", + "height": "155", + "hip": "86", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "聖夜", + "alias_name_display": "聖夜", + "event": [ + { + "event_id": 101, + "event_name": "星降るクリスマス" + } + ], + "hash": "266144cbb02edc5958e0568f11557c93", + "id": "3302102", + "profile": { + "bust": "84", + "height": "155", + "hip": "86", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "トラベルスタイル ブラウン", + "alias_name_display": "トラベルスタイル ブラウン", + "hash": "efa6d6607cc1a82d8a87acf0a8169655", + "id": "3206901", + "profile": { + "bust": "84", + "height": "155", + "hip": "86", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "トラベルスタイル グリーン", + "alias_name_display": "トラベルスタイル グリーン", + "hash": "4c715aaa8d5e67763d6331346aa91542", + "id": "3206902", + "profile": { + "bust": "84", + "height": "155", + "hip": "86", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "トラベルスタイル ピンク", + "alias_name_display": "トラベルスタイル ピンク", + "hash": "6f18bdce1306af0aee712f91b24e5dab", + "id": "3206903", + "profile": { + "bust": "84", + "height": "155", + "hip": "86", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "トラベルスタイル ブラック", + "alias_name_display": "トラベルスタイル ブラック", + "hash": "b5b11e6049d261c4d9dba48f90a74c4a", + "id": "3206904", + "profile": { + "bust": "84", + "height": "155", + "hip": "86", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "アラビアンドレス グリーン", + "alias_name_display": "アラビアンドレス グリーン", + "hash": "1df9b2a1e81a015409d89ec644398a92", + "id": "3306905", + "profile": { + "bust": "84", + "height": "155", + "hip": "86", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "アラビアンドレス ブルー", + "alias_name_display": "アラビアンドレス ブルー", + "hash": "3272befd917e2a1d74d75acb4a64ce7f", + "id": "3306906", + "profile": { + "bust": "84", + "height": "155", + "hip": "86", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "アラビアンドレス レッド", + "alias_name_display": "アラビアンドレス レッド", + "hash": "16ddd10637f3d70cd0d3b670be191dc3", + "id": "3306907", + "profile": { + "bust": "84", + "height": "155", + "hip": "86", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "アラビアンドレス ブラック", + "alias_name_display": "アラビアンドレス ブラック", + "hash": "7a208c090db9ec7b3dab29117f4346a5", + "id": "3306908", + "profile": { + "bust": "84", + "height": "155", + "hip": "86", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "アラビアンドレス ゴールド", + "alias_name_display": "アラビアンドレス ゴールド", + "hash": "e7643a2c9f27cad76554e8aab9c3bb93", + "id": "3306909", + "profile": { + "bust": "84", + "height": "155", + "hip": "86", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "新春コレクション", + "alias_name_display": "新春コレクション", + "hash": "2021128f14e5bfcadd20a0973ba8258f", + "id": "3214801", + "profile": { + "bust": "84", + "height": "155", + "hip": "86", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "新春コレクション", + "alias_name_display": "新春コレクション", + "hash": "5be5890f3317c441ebc4e2ad70cf75ae", + "id": "3314802", + "profile": { + "bust": "84", + "height": "155", + "hip": "86", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ファーバースタイル", + "alias_name_display": "ファーバースタイル", + "hash": "282db7b7a41863a84f27da47ee75e6ad", + "id": "3227301", + "profile": { + "bust": "84", + "height": "155", + "hip": "86", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ファーバースタイル", + "alias_name_display": "ファーバースタイル", + "hash": "f2b082328617efad27ef7189c8f93e41", + "id": "3327302", + "profile": { + "bust": "84", + "height": "155", + "hip": "86", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ハッピーブライダル", + "alias_name_display": "ハッピーブライダル", + "event": [ + { + "event_id": 105, + "event_name": "きらめくブライダルショー" + } + ], + "hash": "bd67c595320eec896b20adab8246cb8e", + "id": "3401801", + "profile": { + "bust": "84", + "height": "155", + "hip": "86", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ハッピーブライダル", + "alias_name_display": "ハッピーブライダル", + "event": [ + { + "event_id": 105, + "event_name": "きらめくブライダルショー" + } + ], + "hash": "f6e881bd45b483f16c9c307a6f5fa9d5", + "id": "3501802", + "profile": { + "bust": "84", + "height": "155", + "hip": "86", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "千夜一夜舞姫", + "alias_name_display": "千夜一夜舞姫", + "hash": "1724e54c47dc1c5ea2665d24939bf5ae", + "id": "3403510", + "profile": { + "bust": "84", + "height": "155", + "hip": "86", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "千夜一夜舞姫", + "alias_name_display": "千夜一夜舞姫", + "hash": "21fe7b8165a5785bf25cce6710551f3d", + "id": "3503511", + "profile": { + "bust": "84", + "height": "155", + "hip": "86", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "カーニバルスター", + "alias_name_display": "カーニバルスター", + "hash": "b5a925908f8d9e107c00ed5da3053525", + "id": "3407301", + "profile": { + "bust": "84", + "height": "155", + "hip": "86", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "カーニバルスター", + "alias_name_display": "カーニバルスター", + "hash": "22df606bb7b17d4cf58ace3ebcfcc1b2", + "id": "3507302", + "profile": { + "bust": "84", + "height": "155", + "hip": "86", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ヴォヤージュ・プリンセス", + "alias_name_display": "ヴォヤージュ・プリンセス", + "event": [ + { + "event_id": 511, + "event_name": "幻想公演 黒薔薇姫のヴォヤージュ" + } + ], + "hash": "98eb2fe3e133b3729a7da417a389d155", + "id": "3413201", + "profile": { + "bust": "84", + "height": "155", + "hip": "86", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "ヴォヤージュ・プリンセス", + "alias_name_display": "ヴォヤージュ・プリンセス", + "event": [ + { + "event_id": 511, + "event_name": "幻想公演 黒薔薇姫のヴォヤージュ" + } + ], + "hash": "e565c552c27db943ad6db5ba2a7240da", + "id": "3513202", + "profile": { + "bust": "84", + "height": "155", + "hip": "86", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "南国オニむすめ", + "alias_name_display": "南国オニむすめ", + "event": [ + { + "event_id": 711, + "event_name": "福は内DEドリームLIVEフェスティバル" + } + ], + "hash": "186891067486fac1d3dd32ee5d8f60ec", + "id": "3421101", + "profile": { + "bust": "84", + "height": "155", + "hip": "86", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "南国オニむすめ", + "alias_name_display": "南国オニむすめ", + "event": [ + { + "event_id": 711, + "event_name": "福は内DEドリームLIVEフェスティバル" + } + ], + "hash": "e03ea585a3b44cc59e7f35e478f6aad6", + "id": "3521102", + "profile": { + "bust": "84", + "height": "155", + "hip": "86", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "熱情のメイド", + "alias_name_display": "熱情のメイド", + "hash": "641de8e01bf4bcb53165e17e145c394c", + "id": "3426201", + "profile": { + "bust": "84", + "height": "155", + "hip": "86", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "熱情のメイド", + "alias_name_display": "熱情のメイド", + "hash": "930037884bb22ac36fac0509dba6b7c1", + "id": "3526202", + "profile": { + "bust": "84", + "height": "155", + "hip": "86", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "おいしい体験", + "alias_name_display": "おいしい体験", + "event": [ + { + "event_id": 1706, + "event_name": "アイドルプロデュース 北の大地と夜さりの祭" + } + ], + "hash": "6324dade2fc264bb093679995e739ce4", + "id": "3432701", + "profile": { + "bust": "84", + "height": "155", + "hip": "86", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "おいしい体験", + "alias_name_display": "おいしい体験", + "event": [ + { + "event_id": 1706, + "event_name": "アイドルプロデュース 北の大地と夜さりの祭" + } + ], + "hash": "110ecffefb66009043e02b1e6a502ee8", + "id": "3532702", + "profile": { + "bust": "84", + "height": "155", + "hip": "86", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "おいしい笑顔", + "alias_name_display": "おいしい笑顔", + "event": [ + { + "event_id": 1706, + "event_name": "アイドルプロデュース 北の大地と夜さりの祭" + } + ], + "hash": "af2db88bb0e5382e09ddab757998481c", + "id": "3432801", + "profile": { + "bust": "84", + "height": "155", + "hip": "86", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "おいしい笑顔", + "alias_name_display": "おいしい笑顔", + "event": [ + { + "event_id": 1706, + "event_name": "アイドルプロデュース 北の大地と夜さりの祭" + } + ], + "hash": "eb1010945d948fdbdef7deff5dd0f069", + "id": "3532802", + "profile": { + "bust": "84", + "height": "155", + "hip": "86", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "真冬の太陽", + "alias_name_display": "真冬の太陽", + "event": [ + { + "event_id": 1510, + "event_name": "チーム対抗トークバトルショー オールスターSP" + } + ], + "hash": "7c92b21376459ee6864ed24def650fcf", + "id": "3436901", + "profile": { + "bust": "84", + "height": "155", + "hip": "86", + "waist": "55", + "weight": "43" + } + }, + { + "alias_name": "真冬の太陽", + "alias_name_display": "真冬の太陽", + "event": [ + { + "event_id": 1510, + "event_name": "チーム対抗トークバトルショー オールスターSP" + } + ], + "hash": "6dc2df6837dff054aaaf63c93f92256b", + "id": "3536902", + "profile": { + "bust": "84", + "height": "155", + "hip": "86", + "waist": "55", + "weight": "43" + } + } + ], + "idol_id": 173, + "idol_name": "ナターリア", + "idol_name_display": "ナターリア", + "units": [ + { + "id": "31", + "name": "ソル・カマル" + }, + { + "id": "125", + "name": "ユア・フレンズ" + } + ] + }, + { + "aliases": [ + { + "hash": "df8b4a9675f16bdc8379a8e5f59a20ad", + "id": "3201201", + "profile": { + "bust": "83", + "height": "160", + "hip": "89", + "waist": "60", + "weight": "46" + } + }, + { + "hash": "ba2d9fc0c2d88014e875358f245b6e05", + "id": "3301202", + "profile": { + "bust": "83", + "height": "160", + "hip": "89", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "ストイックビューティ", + "alias_name_display": "ストイックビューティ", + "hash": "54f6c52057b1ee155af0f9b3d9675a25", + "id": "3207901", + "profile": { + "bust": "83", + "height": "160", + "hip": "89", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "ストイックビューティ", + "alias_name_display": "ストイックビューティ", + "hash": "f00fcf5ddeafeaa2451d5ba27d270ba8", + "id": "3307902", + "profile": { + "bust": "83", + "height": "160", + "hip": "89", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "バニーガール", + "alias_name_display": "バニーガール", + "hash": "014c596e3f63a4268e1b08f577c7e4aa", + "id": "3212501", + "profile": { + "bust": "83", + "height": "160", + "hip": "89", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "バニーガール", + "alias_name_display": "バニーガール", + "hash": "8693753c14c0e5dbff7021c880c8b4ad", + "id": "3312502", + "profile": { + "bust": "83", + "height": "160", + "hip": "89", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "アダルティフェミニン", + "alias_name_display": "アダルティフェミニン", + "hash": "29afbffb42d6fabb1c7cd796b1bec5db", + "id": "3217501", + "profile": { + "bust": "83", + "height": "160", + "hip": "89", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "アダルティフェミニン", + "alias_name_display": "アダルティフェミニン", + "hash": "f36f9067bd023981ae6ec8081920ac3c", + "id": "3317502", + "profile": { + "bust": "83", + "height": "160", + "hip": "89", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "T.B.チアーズ", + "alias_name_display": "T.B.チアーズ", + "event": [ + { + "event_id": 1504, + "event_name": "第4回チーム対抗トークバトルショー" + } + ], + "hash": "dacd3782cc330619e7b2505008e4527a", + "id": "3225601", + "profile": { + "bust": "83", + "height": "160", + "hip": "89", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "T.B.チアーズ", + "alias_name_display": "T.B.チアーズ", + "event": [ + { + "event_id": 1504, + "event_name": "第4回チーム対抗トークバトルショー" + } + ], + "hash": "cdc01ceb8c597ab043e4a0c4b1d611f5", + "id": "3325602", + "profile": { + "bust": "83", + "height": "160", + "hip": "89", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "ビター&スウィート", + "alias_name_display": "ビター&スウィート", + "hash": "08c8021dd356090cf6e6c67ce364c6c5", + "id": "3227601", + "profile": { + "bust": "83", + "height": "160", + "hip": "89", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "ビター&スウィート", + "alias_name_display": "ビター&スウィート", + "hash": "52f9319275299caf7bea5eeb1617c8fe", + "id": "3327602", + "profile": { + "bust": "83", + "height": "160", + "hip": "89", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "サマービーチ", + "alias_name_display": "サマービーチ", + "hash": "73aafeafe35337515de4a8ea14811e4b", + "id": "3230101", + "profile": { + "bust": "83", + "height": "160", + "hip": "89", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "サマービーチ", + "alias_name_display": "サマービーチ", + "hash": "2dff8b1eb623fe157e9994f11a8c4272", + "id": "3330102", + "profile": { + "bust": "83", + "height": "160", + "hip": "89", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "湯けむり紀行", + "alias_name_display": "湯けむり紀行", + "hash": "5cdaef85b672564c81aae4d446c0d1fe", + "id": "3233301", + "profile": { + "bust": "83", + "height": "160", + "hip": "89", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "湯けむり紀行", + "alias_name_display": "湯けむり紀行", + "hash": "cae2391c1b618fc95dd8b35d508b240e", + "id": "3333302", + "profile": { + "bust": "83", + "height": "160", + "hip": "89", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "明日へのフライト", + "alias_name_display": "明日へのフライト", + "event": [ + { + "event_id": "015", + "event_name": "第15回プロダクションマッチフェスティバル" + } + ], + "hash": "caa77dc7a7f1de14f95233f4f6fab724", + "id": "3411701", + "profile": { + "bust": "83", + "height": "160", + "hip": "89", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "明日へのフライト", + "alias_name_display": "明日へのフライト", + "event": [ + { + "event_id": "015", + "event_name": "第15回プロダクションマッチフェスティバル" + } + ], + "hash": "1b437d9ca380059cc9b380c5f2354511", + "id": "3511702", + "profile": { + "bust": "83", + "height": "160", + "hip": "89", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "紅葉色の風", + "alias_name_display": "紅葉色の風", + "event": [ + { + "event_id": 709, + "event_name": "第9回ドリームLIVEフェスティバル" + } + ], + "hash": "9086936700dd75591e0cfa109819e211", + "id": "3418401", + "profile": { + "bust": "83", + "height": "160", + "hip": "89", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "紅葉色の風", + "alias_name_display": "紅葉色の風", + "event": [ + { + "event_id": 709, + "event_name": "第9回ドリームLIVEフェスティバル" + } + ], + "hash": "497bf3092363f016268cf298c5b99146", + "id": "3518402", + "profile": { + "bust": "83", + "height": "160", + "hip": "89", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "ストイック・ロワイヤル", + "alias_name_display": "ストイック・ロワイヤル", + "event": [ + { + "event_id": 813, + "event_name": "第13回アイドルLIVEロワイヤル" + } + ], + "hash": "f9c3a2a5ede2924c4dc5b9829481e789", + "id": "3425101", + "profile": { + "bust": "83", + "height": "160", + "hip": "89", + "waist": "60", + "weight": "46" + } + }, + { + "alias_name": "ストイック・ロワイヤル", + "alias_name_display": "ストイック・ロワイヤル", + "event": [ + { + "event_id": 813, + "event_name": "第13回アイドルLIVEロワイヤル" + } + ], + "hash": "53c6e0d594d07c777aa0cceeb7e425b8", + "id": "3525102", + "profile": { + "bust": "83", + "height": "160", + "hip": "89", + "waist": "60", + "weight": "46" + } + } + ], + "idol_id": 174, + "idol_name": "相馬夏美", + "idol_name_display": "相馬夏美", + "units": [ + { + "id": "159", + "name": "パステル・カクテル" + }, + { + "id": "167", + "name": "ロマンティックツアーズ" + } + ] + }, + { + "aliases": [ + { + "hash": "631512ff6dcc396969055e90d1430a6d", + "id": "3201301", + "profile": { + "bust": "86", + "height": "162", + "hip": "91", + "waist": "57", + "weight": "46" + } + }, + { + "hash": "569f02751f9ff485931fd93d5c1c81a3", + "id": "3301302", + "profile": { + "bust": "86", + "height": "162", + "hip": "91", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "メイドコレクション", + "alias_name_display": "メイドコレクション", + "hash": "25efbdc5d98716f254d4b615ab27b120", + "id": "3206101", + "profile": { + "bust": "86", + "height": "162", + "hip": "91", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "メイドコレクション", + "alias_name_display": "メイドコレクション", + "hash": "e5c75d9bfc61b4443d47ab881673d791", + "id": "3306102", + "profile": { + "bust": "86", + "height": "162", + "hip": "91", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "バリスタイル", + "alias_name_display": "バリスタイル", + "event": [ + { + "event_id": 505, + "event_name": "アイドルLIVEツアーinバリ島" + } + ], + "hash": "da57276b8114b62e0baf4b45abe791c1", + "id": "3211101", + "profile": { + "bust": "86", + "height": "162", + "hip": "91", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "バリスタイル", + "alias_name_display": "バリスタイル", + "event": [ + { + "event_id": 505, + "event_name": "アイドルLIVEツアーinバリ島" + } + ], + "hash": "d961c9e96664a1780df29863d264ac1f", + "id": "3311102", + "profile": { + "bust": "86", + "height": "162", + "hip": "91", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ティーフレーバーメイド", + "alias_name_display": "ティーフレーバーメイド", + "hash": "a3b8047efc21fd4c75c213c46c6ef4ba", + "id": "3214601", + "profile": { + "bust": "86", + "height": "162", + "hip": "91", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ティーフレーバーメイド", + "alias_name_display": "ティーフレーバーメイド", + "hash": "8c102de57f48bcbcf728f33a178490ab", + "id": "3314602", + "profile": { + "bust": "86", + "height": "162", + "hip": "91", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "クリスマスプレゼント", + "alias_name_display": "クリスマスプレゼント", + "hash": "8d214505b61bc523bb8d2c961f6cc893", + "id": "3220601", + "profile": { + "bust": "86", + "height": "162", + "hip": "91", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "クリスマスプレゼント", + "alias_name_display": "クリスマスプレゼント", + "hash": "c7c70767452bba98330bdfe14af0138b", + "id": "3320602", + "profile": { + "bust": "86", + "height": "162", + "hip": "91", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "フレッシュライフ", + "alias_name_display": "フレッシュライフ", + "hash": "9627ead9b834427fda965a722669ff1f", + "id": "3223601", + "profile": { + "bust": "86", + "height": "162", + "hip": "91", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "フレッシュライフ", + "alias_name_display": "フレッシュライフ", + "hash": "c5f8a13d83c343ba3e671d9d48766c10", + "id": "3323602", + "profile": { + "bust": "86", + "height": "162", + "hip": "91", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "チェンジタイム", + "alias_name_display": "チェンジタイム", + "hash": "70c0319dc14965836d47b43a0eb0231b", + "id": "3228601", + "profile": { + "bust": "86", + "height": "162", + "hip": "91", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "チェンジタイム", + "alias_name_display": "チェンジタイム", + "hash": "219b941411f0d170137aa0dbc575da04", + "id": "3328602", + "profile": { + "bust": "86", + "height": "162", + "hip": "91", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ぷちぷちフレッシュ", + "alias_name_display": "ぷちぷちフレッシュ", + "hash": "d8cdf407e9f473221b46a24aefb9ff5f", + "id": "3234001", + "profile": { + "bust": "86", + "height": "162", + "hip": "91", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "ぷちぷちフレッシュ", + "alias_name_display": "ぷちぷちフレッシュ", + "hash": "b2b089c4cb75471d8e24873800d34d05", + "id": "3334002", + "profile": { + "bust": "86", + "height": "162", + "hip": "91", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "甘いひととき", + "alias_name_display": "甘いひととき", + "event": [ + { + "event_id": 805, + "event_name": "第5回アイドルLIVEロワイヤル" + } + ], + "hash": "46622b85db85b604f09c7761c3c961e9", + "id": "3415101", + "profile": { + "bust": "86", + "height": "162", + "hip": "91", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "甘いひととき", + "alias_name_display": "甘いひととき", + "event": [ + { + "event_id": 805, + "event_name": "第5回アイドルLIVEロワイヤル" + } + ], + "hash": "a109b84c1e6b327f91f5844d4ae07435", + "id": "3515102", + "profile": { + "bust": "86", + "height": "162", + "hip": "91", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "小悪魔ヴァンパイア", + "alias_name_display": "小悪魔ヴァンパイア", + "event": [ + { + "event_id": 522, + "event_name": "魔界公演 幽鬱女王とハロウィンの祝祭" + } + ], + "hash": "28333045bbce33e1dc610922ae42c0b3", + "id": "3427301", + "profile": { + "bust": "86", + "height": "162", + "hip": "91", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "小悪魔ヴァンパイア", + "alias_name_display": "小悪魔ヴァンパイア", + "event": [ + { + "event_id": 522, + "event_name": "魔界公演 幽鬱女王とハロウィンの祝祭" + } + ], + "hash": "c4aec86eca5285bc73297ce6233f9afc", + "id": "3527302", + "profile": { + "bust": "86", + "height": "162", + "hip": "91", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "至福のボリューム", + "alias_name_display": "至福のボリューム", + "hash": "045dd1edac3495d38bb59e44b36b637e", + "id": "3436201", + "profile": { + "bust": "86", + "height": "162", + "hip": "91", + "waist": "57", + "weight": "46" + } + }, + { + "alias_name": "至福のボリューム", + "alias_name_display": "至福のボリューム", + "hash": "fdce336ae18237fdf6e8811aa42d5444", + "id": "3536202", + "profile": { + "bust": "86", + "height": "162", + "hip": "91", + "waist": "57", + "weight": "46" + } + } + ], + "idol_id": 175, + "idol_name": "槙原志保", + "idol_name_display": "槙原志保", + "units": [ + { + "id": "42", + "name": "バリスタイル" + }, + { + "id": "119", + "name": "フランメ・ルージュ" + }, + { + "id": "183", + "name": "メイドコレクション" + } + ] + }, + { + "aliases": [ + { + "hash": "e01a1807c67d2fc57825c3acbb06bb0f", + "id": "3201401", + "profile": { + "bust": "81", + "height": "155", + "hip": "81", + "waist": "56", + "weight": "42" + } + }, + { + "hash": "48bd1e2b725fbcbabf8836f901a797c9", + "id": "3301402", + "profile": { + "bust": "81", + "height": "155", + "hip": "81", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "制服ブルー", + "alias_name_display": "制服ブルー", + "hash": "e6e076765046fdfe473b17ecce87b081", + "id": "3203901", + "profile": { + "bust": "81", + "height": "155", + "hip": "81", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "制服レッド", + "alias_name_display": "制服レッド", + "hash": "a64b6c62e587d382e6b7f13898f731b1", + "id": "3203902", + "profile": { + "bust": "81", + "height": "155", + "hip": "81", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "制服グリーン", + "alias_name_display": "制服グリーン", + "hash": "dd098abcaa327e6d1b3e87f5ae0ca630", + "id": "3203903", + "profile": { + "bust": "81", + "height": "155", + "hip": "81", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "制服ベージュ", + "alias_name_display": "制服ベージュ", + "hash": "f55b11ed9a3bae507601e01b808d7fcd", + "id": "3203904", + "profile": { + "bust": "81", + "height": "155", + "hip": "81", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "ピンクダイヤモンド765", + "alias_name_display": "ピンクダイヤモンド765", + "hash": "14b07aa0c4c86609327f71c9fe3234a7", + "id": "3303905", + "profile": { + "bust": "81", + "height": "155", + "hip": "81", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "パウダースノーホワイティ", + "alias_name_display": "パウダースノーホワイティ", + "hash": "ccbf1bef431de35d49f91b4b33e1c071", + "id": "3303906", + "profile": { + "bust": "81", + "height": "155", + "hip": "81", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "ファイアオパール76ct", + "alias_name_display": "ファイアオパール76ct", + "hash": "67304a52ef511f0a1d867ed94bc34733", + "id": "3303907", + "profile": { + "bust": "81", + "height": "155", + "hip": "81", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "メイデンインブラック", + "alias_name_display": "メイデンインブラック", + "hash": "8a7da5a3b073b6a34f903f467c226483", + "id": "3303908", + "profile": { + "bust": "81", + "height": "155", + "hip": "81", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "ギルデッドマドモアゼル", + "alias_name_display": "ギルデッドマドモアゼル", + "hash": "4361c6d74eb62bd54389b51636065de7", + "id": "3303909", + "profile": { + "bust": "81", + "height": "155", + "hip": "81", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "臆病な天使", + "alias_name_display": "臆病な天使", + "hash": "06dafddc14d8e0d892dd9894823096bb", + "id": "3400201", + "profile": { + "bust": "81", + "height": "155", + "hip": "81", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "臆病な天使", + "alias_name_display": "臆病な天使", + "hash": "f1e541422f10cf882ca4a0193ceafbcb", + "id": "3500202", + "profile": { + "bust": "81", + "height": "155", + "hip": "81", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "癒しの天使", + "alias_name_display": "癒しの天使", + "hash": "cf3f8b4f5eb92c82d7db89d358fbb222", + "id": "3401310", + "profile": { + "bust": "81", + "height": "155", + "hip": "81", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "癒しの天使", + "alias_name_display": "癒しの天使", + "hash": "0621e2c41675c75cc29d0b2a6a3fad12", + "id": "3501311", + "profile": { + "bust": "81", + "height": "155", + "hip": "81", + "waist": "56", + "weight": "42" + } + }, + { + "alias_name": "アニス衣装", + "alias_name_display": "アニス衣装", + "hash": "a627c4d6e7a223402aa99e1d174dd7ce", + "id": "3501902", + "profile": { + "bust": "81", + "height": "155", + "hip": "81", + "waist": "56", + "weight": "42" + } + } + ], + "idol_id": 176, + "idol_name": "萩原雪歩", + "idol_name_display": "萩原雪歩" + }, + { + "aliases": [ + { + "hash": "c161cb226474f58f3393e3d6aabfc9b2", + "id": "3201501", + "profile": { + "bust": "78", + "height": "158", + "hip": "77", + "waist": "55", + "weight": "42" + } + }, + { + "hash": "11db690ef5aec1cd0cd9c9e2aedfb2cd", + "id": "3301502", + "profile": { + "bust": "78", + "height": "158", + "hip": "77", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "パワフル双子妹", + "alias_name_display": "パワフル双子妹", + "hash": "65b0cc4a2afc8a4e9e4c194b4aecd267", + "id": "3401001", + "profile": { + "bust": "78", + "height": "158", + "hip": "77", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "パワフル双子妹", + "alias_name_display": "パワフル双子妹", + "hash": "d604961da03fd554556bf5ec24eae13a", + "id": "3501002", + "profile": { + "bust": "78", + "height": "158", + "hip": "77", + "waist": "55", + "weight": "42" + } + } + ], + "idol_id": 177, + "idol_name": "双海亜美", + "idol_name_display": "双海亜美" + }, + { + "aliases": [ + { + "hash": "421870a18b78ade223c811fe38edf51e", + "id": "3201601", + "profile": { + "bust": "78", + "height": "158", + "hip": "77", + "waist": "55", + "weight": "42" + } + }, + { + "hash": "ee397ecc1f873bb6d986acb05e5b9916", + "id": "3301602", + "profile": { + "bust": "78", + "height": "158", + "hip": "77", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "パワフル双子姉", + "alias_name_display": "パワフル双子姉", + "hash": "cb92615dedf1df3d4b4971b256254d39", + "id": "3401101", + "profile": { + "bust": "78", + "height": "158", + "hip": "77", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "パワフル双子姉", + "alias_name_display": "パワフル双子姉", + "hash": "7174c14b3213a89f45cc5375eb1fff5a", + "id": "3501102", + "profile": { + "bust": "78", + "height": "158", + "hip": "77", + "waist": "55", + "weight": "42" + } + } + ], + "idol_id": 178, + "idol_name": "双海真美", + "idol_name_display": "双海真美" + }, + { + "aliases": [ + { + "hash": "0fd395f1fae53b17c20854465439ca1d", + "id": "3201701", + "profile": { + "bust": "86", + "height": "161", + "hip": "83", + "waist": "55", + "weight": "45" + } + }, + { + "hash": "8370a885b84e453d5dc557005de4fd17", + "id": "3301702", + "profile": { + "bust": "86", + "height": "161", + "hip": "83", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "制服オレンジ", + "alias_name_display": "制服オレンジ", + "hash": "ebb522ecfbd377353069ebd81c91fb16", + "id": "3202801", + "profile": { + "bust": "86", + "height": "161", + "hip": "83", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "制服レッド", + "alias_name_display": "制服レッド", + "hash": "6b3065f0a962d20cff5d955a3dbc4314", + "id": "3202802", + "profile": { + "bust": "86", + "height": "161", + "hip": "83", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "制服ブルー", + "alias_name_display": "制服ブルー", + "hash": "04c878def0b7d2bb8dda5f2f756ab53d", + "id": "3202803", + "profile": { + "bust": "86", + "height": "161", + "hip": "83", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "制服グリーン", + "alias_name_display": "制服グリーン", + "hash": "a79af47eae779e8bea9e4d779616fb2f", + "id": "3202804", + "profile": { + "bust": "86", + "height": "161", + "hip": "83", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "ピンクダイヤモンド765", + "alias_name_display": "ピンクダイヤモンド765", + "hash": "5831bf84cae2c72d1e14475a3d10a4fd", + "id": "3302805", + "profile": { + "bust": "86", + "height": "161", + "hip": "83", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "ギルデッドマドモアゼル", + "alias_name_display": "ギルデッドマドモアゼル", + "hash": "a9ed29a9f57923d25c99a7439136e26d", + "id": "3302806", + "profile": { + "bust": "86", + "height": "161", + "hip": "83", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "メイデンインブラック", + "alias_name_display": "メイデンインブラック", + "hash": "9ba2da0a155f2a20df7aa61826b2883c", + "id": "3302807", + "profile": { + "bust": "86", + "height": "161", + "hip": "83", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "ベイビーブルージャガー", + "alias_name_display": "ベイビーブルージャガー", + "hash": "ff56ed5787d63f5a6a73ab567452cd49", + "id": "3302808", + "profile": { + "bust": "86", + "height": "161", + "hip": "83", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "トワイライトサファリ", + "alias_name_display": "トワイライトサファリ", + "hash": "ff83137129b578d3c62b7fc2a984de58", + "id": "3302809", + "profile": { + "bust": "86", + "height": "161", + "hip": "83", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "才能無限大", + "alias_name_display": "才能無限大", + "hash": "5ee38ca4a88f80c624feb7fb5cec0ba7", + "id": "3400710", + "profile": { + "bust": "86", + "height": "161", + "hip": "83", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "才能無限大", + "alias_name_display": "才能無限大", + "hash": "92102c96222350216184f02f45dc7d84", + "id": "3500711", + "profile": { + "bust": "86", + "height": "161", + "hip": "83", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "眠れる姫君", + "alias_name_display": "眠れる姫君", + "hash": "3c0f40fdeba208d3fc9eee9cd90d8843", + "id": "3401601", + "profile": { + "bust": "86", + "height": "161", + "hip": "83", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "眠れる姫君", + "alias_name_display": "眠れる姫君", + "hash": "d68e4b36d3e506fbbb958c0bf1434867", + "id": "3501602", + "profile": { + "bust": "86", + "height": "161", + "hip": "83", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "1stセレブレイト", + "alias_name_display": "1stセレブレイト", + "hash": "76b1355f3c75a11675d5e5fbd7477c36", + "id": "3504202", + "profile": { + "bust": "86", + "height": "161", + "hip": "83", + "waist": "55", + "weight": "45" + } + }, + { + "alias_name": "ワンフォーオール", + "alias_name_display": "ワンフォーオール", + "hash": "c504c5f878ac85da8d9ccb70ef44fbe4", + "id": "3514302", + "profile": { + "bust": "86", + "height": "161", + "hip": "83", + "waist": "55", + "weight": "45" + } + } + ], + "idol_id": 179, + "idol_name": "星井美希", + "idol_name_display": "星井美希" + }, + { + "aliases": [ + { + "hash": "20f58f004dad13ba670869c921dc32b9", + "id": "3201801", + "profile": { + "bust": "95", + "height": "163", + "hip": "87", + "waist": "60", + "weight": "53" + } + }, + { + "hash": "25ddc32b1b3797057b29bf5fb6de3092", + "id": "3301802", + "profile": { + "bust": "95", + "height": "163", + "hip": "87", + "waist": "58", + "weight": "51" + } + }, + { + "alias_name": "姉御肌", + "alias_name_display": "姉御肌", + "hash": "092c5efbc6e0e566958d7fc507821e0d", + "id": "3204701", + "profile": { + "bust": "95", + "height": "163", + "hip": "87", + "waist": "58", + "weight": "51" + } + }, + { + "alias_name": "姉御肌", + "alias_name_display": "姉御肌", + "hash": "9457d1172204c626ec30cfe67f0bdb32", + "id": "3304702", + "profile": { + "bust": "95", + "height": "163", + "hip": "87", + "waist": "58", + "weight": "51" + } + }, + { + "alias_name": "ビーチパラダイス", + "alias_name_display": "ビーチパラダイス", + "hash": "92248cecce1bf62b838a10634aac23b8", + "id": "3212001", + "profile": { + "bust": "95", + "height": "163", + "hip": "87", + "waist": "58", + "weight": "51" + } + }, + { + "alias_name": "ビーチパラダイス", + "alias_name_display": "ビーチパラダイス", + "hash": "7a94d2b2aa7c63db4e6653313a31546a", + "id": "3312002", + "profile": { + "bust": "95", + "height": "163", + "hip": "87", + "waist": "58", + "weight": "51" + } + }, + { + "alias_name": "硬派乙女", + "alias_name_display": "硬派乙女", + "hash": "0e90856cd6e941b956af90027490d868", + "id": "3403401", + "profile": { + "bust": "95", + "height": "163", + "hip": "87", + "waist": "58", + "weight": "51" + } + }, + { + "alias_name": "硬派乙女", + "alias_name_display": "硬派乙女", + "hash": "f3186c8e8aafb4bc748f8eb08ced1d45", + "id": "3503402", + "profile": { + "bust": "95", + "height": "163", + "hip": "87", + "waist": "58", + "weight": "51" + } + }, + { + "alias_name": "はにかみバレンタイン", + "alias_name_display": "はにかみバレンタイン", + "event": [ + { + "event_id": 405, + "event_name": "アイドルプロデュース バレンタイン編" + } + ], + "hash": "918ea661dcd0221ad5cb7a69c5f3822d", + "id": "3405101", + "profile": { + "bust": "95", + "height": "163", + "hip": "87", + "waist": "58", + "weight": "51" + } + }, + { + "alias_name": "はにかみバレンタイン", + "alias_name_display": "はにかみバレンタイン", + "event": [ + { + "event_id": 405, + "event_name": "アイドルプロデュース バレンタイン編" + } + ], + "hash": "f87ee02a7edd0c6e4ec18b561de3979d", + "id": "3505102", + "profile": { + "bust": "95", + "height": "163", + "hip": "87", + "waist": "58", + "weight": "51" + } + }, + { + "alias_name": "走志走愛", + "alias_name_display": "走志走愛", + "event": [ + { + "event_id": 510, + "event_name": "ひな祭りLIVEツアーカーニバル" + } + ], + "hash": "232fa3d7136a3427103cbcf6e5ba7e2f", + "id": "3411901", + "profile": { + "bust": "95", + "height": "163", + "hip": "87", + "waist": "58", + "weight": "51" + } + }, + { + "alias_name": "走志走愛", + "alias_name_display": "走志走愛", + "event": [ + { + "event_id": 510, + "event_name": "ひな祭りLIVEツアーカーニバル" + } + ], + "hash": "66bd2e19f6654df596306b2b8602b1d2", + "id": "3511902", + "profile": { + "bust": "95", + "height": "163", + "hip": "87", + "waist": "58", + "weight": "51" + } + }, + { + "alias_name": "百獣の女王", + "alias_name_display": "百獣の女王", + "hash": "a017f0aeb84bba360795e5c8ff59bcdd", + "id": "3417001", + "profile": { + "bust": "95", + "height": "163", + "hip": "87", + "waist": "58", + "weight": "51" + } + }, + { + "alias_name": "百獣の女王", + "alias_name_display": "百獣の女王", + "hash": "b9b7cc2cbce8aaf53fe3bda1a44996ff", + "id": "3517002", + "profile": { + "bust": "95", + "height": "163", + "hip": "87", + "waist": "58", + "weight": "51" + } + }, + { + "alias_name": "初日の出変装", + "alias_name_display": "初日の出変装", + "hash": "348d7861a7a71b576d14599b1c55f26c", + "id": "3420601", + "profile": { + "bust": "95", + "height": "163", + "hip": "87", + "waist": "58", + "weight": "51" + } + }, + { + "alias_name": "初日の出変装", + "alias_name_display": "初日の出変装", + "hash": "1ba2870e74e721957e0a2730047f9ce7", + "id": "3520602", + "profile": { + "bust": "95", + "height": "163", + "hip": "87", + "waist": "58", + "weight": "51" + } + }, + { + "alias_name": "炎天の女王", + "alias_name_display": "炎天の女王", + "hash": "c59fb577d23dbfce5a08c9b53e6947c8", + "id": "3425401", + "profile": { + "bust": "95", + "height": "163", + "hip": "87", + "waist": "58", + "weight": "51" + } + }, + { + "alias_name": "炎天の女王", + "alias_name_display": "炎天の女王", + "hash": "f00fb6b6b7eb49b5ebaae24580a0b917", + "id": "3525402", + "profile": { + "bust": "95", + "height": "163", + "hip": "87", + "waist": "58", + "weight": "51" + } + }, + { + "alias_name": "4thアニバーサリー", + "alias_name_display": "4thアニバーサリー", + "event": [ + { + "event_id": 1704, + "event_name": "アイドルプロデュース the 4th Anniversary" + } + ], + "hash": "62558d3fb34d3585e7d45da67c3a796e", + "id": "3428001", + "profile": { + "bust": "95", + "height": "163", + "hip": "87", + "waist": "58", + "weight": "51" + } + }, + { + "alias_name": "4thアニバーサリー", + "alias_name_display": "4thアニバーサリー", + "event": [ + { + "event_id": 1704, + "event_name": "アイドルプロデュース the 4th Anniversary" + } + ], + "hash": "1c907965f5315da790eee90f018e1662", + "id": "3528002", + "profile": { + "bust": "95", + "height": "163", + "hip": "87", + "waist": "58", + "weight": "51" + } + }, + { + "alias_name": "4thアニバーサリー・S", + "alias_name_display": "4thアニバーサリー・S", + "event": [ + { + "event_id": 1704, + "event_name": "アイドルプロデュース the 4th Anniversary" + } + ], + "hash": "b0f137bebf1a85a9e07a83ee645abae2", + "id": "3428101", + "profile": { + "bust": "95", + "height": "163", + "hip": "87", + "waist": "58", + "weight": "51" + } + }, + { + "alias_name": "4thアニバーサリー・S", + "alias_name_display": "4thアニバーサリー・S", + "event": [ + { + "event_id": 1704, + "event_name": "アイドルプロデュース the 4th Anniversary" + } + ], + "hash": "d1cadffd8525c34cf2351c5c99b288a5", + "id": "3528102", + "profile": { + "bust": "95", + "height": "163", + "hip": "87", + "waist": "58", + "weight": "51" + } + }, + { + "alias_name": "ワン・サマー・カーニバル", + "alias_name_display": "ワン・サマー・カーニバル", + "hash": "7315e47ffb4d283653056bb6cf405b6b", + "id": "3434001", + "profile": { + "bust": "95", + "height": "163", + "hip": "87", + "waist": "58", + "weight": "51" + } + }, + { + "alias_name": "ワン・サマー・カーニバル", + "alias_name_display": "ワン・サマー・カーニバル", + "hash": "edecc7f8cfda4fdf6274a9bd2754d2b8", + "id": "3534002", + "profile": { + "bust": "95", + "height": "163", + "hip": "87", + "waist": "58", + "weight": "51" + } + }, + { + "alias_name": "シンデレラドリーム", + "alias_name_display": "シンデレラドリーム", + "hash": "c7083266edd7edc700f07c910f77b6f3", + "id": "3437701", + "profile": { + "bust": "95", + "height": "163", + "hip": "87", + "waist": "58", + "weight": "51" + } + }, + { + "alias_name": "シンデレラドリーム", + "alias_name_display": "シンデレラドリーム", + "hash": "2198eb80f3fc029ca19d09a514a66a30", + "id": "3537702", + "profile": { + "bust": "95", + "height": "163", + "hip": "87", + "waist": "58", + "weight": "51" + } + } + ], + "idol_id": 180, + "idol_name": "向井拓海", + "idol_name_display": "向井拓海", + "units": [ + { + "id": "39", + "name": "ノーティギャルズ" + }, + { + "id": "123", + "name": "マッシブライダース" + }, + { + "id": "176", + "name": "炎陣" + } + ] + }, + { + "aliases": [ + { + "hash": "5d06736b102de0b7c12dc2ff98d00eec", + "id": "3201901", + "profile": { + "bust": "77", + "height": "153", + "hip": "79", + "waist": "54", + "weight": "40" + } + }, + { + "hash": "3ad04e62905e3fac4f2c1a40ec0b80a8", + "id": "3301902", + "profile": { + "bust": "77", + "height": "153", + "hip": "79", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "高飛車お嬢様", + "alias_name_display": "高飛車お嬢様", + "hash": "953571fbea83b361e8d2a0ee086b71bb", + "id": "3400101", + "profile": { + "bust": "77", + "height": "153", + "hip": "79", + "waist": "54", + "weight": "40" + } + }, + { + "alias_name": "高飛車お嬢様", + "alias_name_display": "高飛車お嬢様", + "hash": "933333b6f15c88a6e8564a2dee2f125a", + "id": "3500102", + "profile": { + "bust": "77", + "height": "153", + "hip": "79", + "waist": "54", + "weight": "40" + } + } + ], + "idol_id": 181, + "idol_name": "水瀬伊織", + "idol_name_display": "水瀬伊織" + }, + { + "aliases": [ + { + "event": [ + { + "event_id": 303, + "event_name": "アイドル強化合宿" + } + ], + "hash": "b0fca5a125b526c755eeec59253e3bb3", + "id": "3202001", + "profile": { + "bust": "83", + "height": "163", + "hip": "84", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "聖夜", + "alias_name_display": "聖夜", + "hash": "c7b48696b8c78ad11d3fb0f898b1343b", + "id": "3202201", + "profile": { + "bust": "83", + "height": "163", + "hip": "84", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "新春", + "alias_name_display": "新春", + "hash": "16df3c000e1bd9af11046666963cfdb9", + "id": "3202401", + "profile": { + "bust": "83", + "height": "163", + "hip": "84", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "バレンタイン", + "alias_name_display": "バレンタイン", + "hash": "313b271eddfdc8c9d223cfc16fc55eb9", + "id": "3203301", + "profile": { + "bust": "83", + "height": "163", + "hip": "84", + "waist": "56", + "weight": "45" + } + } + ], + "idol_id": 182, + "idol_name": "ベテラントレーナー", + "idol_name_display": "ベテラントレーナー" + }, + { + "aliases": [ + { + "event": [ + { + "event_id": 102, + "event_name": "アイドルおもちつき大会" + } + ], + "hash": "461c0f642b5623fcd0df84af1de98fc7", + "id": "3202501", + "profile": { + "bust": "61", + "height": "128", + "hip": "67", + "waist": "57", + "weight": "29" + } + }, + { + "event": [ + { + "event_id": 102, + "event_name": "アイドルおもちつき大会" + } + ], + "hash": "101a6b754f02d297fac368dd7644cc16", + "id": "3302502", + "profile": { + "bust": "62", + "height": "129", + "hip": "67", + "waist": "58", + "weight": "30" + } + }, + { + "alias_name": "アニマルパーク", + "alias_name_display": "アニマルパーク", + "event": [ + { + "event_id": 204, + "event_name": "アイドルサバイバルin動物園" + } + ], + "hash": "16c84938d5bc45ce243e3c42a00ca98f", + "id": "3205001", + "profile": { + "bust": "62", + "height": "129", + "hip": "67", + "waist": "58", + "weight": "30" + } + }, + { + "alias_name": "アニマルパーク", + "alias_name_display": "アニマルパーク", + "event": [ + { + "event_id": 204, + "event_name": "アイドルサバイバルin動物園" + } + ], + "hash": "373178c8cac8f998af6b1b10e5b65754", + "id": "3305002", + "profile": { + "bust": "62", + "height": "129", + "hip": "67", + "waist": "58", + "weight": "30" + } + }, + { + "alias_name": "きぐるみもふもふ", + "alias_name_display": "きぐるみもふもふ", + "event": [ + { + "event_id": "007", + "event_name": "第7回プロダクションマッチフェスティバル" + } + ], + "hash": "a6babedb100170e974c49456628b367f", + "id": "3404501", + "profile": { + "bust": "62", + "height": "129", + "hip": "67", + "waist": "58", + "weight": "30" + } + }, + { + "alias_name": "きぐるみもふもふ", + "alias_name_display": "きぐるみもふもふ", + "event": [ + { + "event_id": "007", + "event_name": "第7回プロダクションマッチフェスティバル" + } + ], + "hash": "5482291c15f4a0b26b81eac4702b255b", + "id": "3504502", + "profile": { + "bust": "62", + "height": "129", + "hip": "67", + "waist": "58", + "weight": "30" + } + }, + { + "alias_name": "うみのいきもの", + "alias_name_display": "うみのいきもの", + "event": [ + { + "event_id": 702, + "event_name": "水着DEドリームLIVEフェスティバル" + } + ], + "hash": "c4d48bdb3ffa6f6d408619a0a34fe9f4", + "id": "3408101", + "profile": { + "bust": "62", + "height": "129", + "hip": "67", + "waist": "58", + "weight": "30" + } + }, + { + "alias_name": "うみのいきもの", + "alias_name_display": "うみのいきもの", + "event": [ + { + "event_id": 702, + "event_name": "水着DEドリームLIVEフェスティバル" + } + ], + "hash": "18a4aaa5bcd5dc6fddd2d01ec7e0f526", + "id": "3508102", + "profile": { + "bust": "62", + "height": "129", + "hip": "67", + "waist": "58", + "weight": "30" + } + }, + { + "alias_name": "にゅーきぐるみ", + "alias_name_display": "にゅーきぐるみ", + "event": [ + { + "event_id": "014", + "event_name": "第14回プロダクションマッチフェスティバル" + } + ], + "hash": "7644ffcf30392370091e558404adcc6a", + "id": "3410901", + "profile": { + "bust": "62", + "height": "129", + "hip": "67", + "waist": "58", + "weight": "30" + } + }, + { + "alias_name": "にゅーきぐるみ", + "alias_name_display": "にゅーきぐるみ", + "event": [ + { + "event_id": "014", + "event_name": "第14回プロダクションマッチフェスティバル" + } + ], + "hash": "5c393f00c7cca8fffb369c91099f15d4", + "id": "3510902", + "profile": { + "bust": "62", + "height": "129", + "hip": "67", + "waist": "58", + "weight": "30" + } + }, + { + "alias_name": "きぐるみわーく", + "alias_name_display": "きぐるみわーく", + "hash": "81ce951e49b513921c0fc0aa91889e59", + "id": "3417201", + "profile": { + "bust": "62", + "height": "129", + "hip": "67", + "waist": "58", + "weight": "30" + } + }, + { + "alias_name": "きぐるみわーく", + "alias_name_display": "きぐるみわーく", + "hash": "d8f0b946466ef70a0f705364696a8b09", + "id": "3517202", + "profile": { + "bust": "62", + "height": "129", + "hip": "67", + "waist": "58", + "weight": "30" + } + }, + { + "alias_name": "にゅーいやー", + "alias_name_display": "にゅーいやー", + "hash": "a79bdcc89bd7b9fdcd59f0c3e42caddc", + "id": "3420401", + "profile": { + "bust": "62", + "height": "129", + "hip": "67", + "waist": "58", + "weight": "30" + } + }, + { + "alias_name": "にゅーいやー", + "alias_name_display": "にゅーいやー", + "hash": "9ce5c63b01d63ae3a72544427e599088", + "id": "3520402", + "profile": { + "bust": "62", + "height": "129", + "hip": "67", + "waist": "58", + "weight": "30" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "dfbef98b0d7c10d4053b30906c38c351", + "id": "3421401", + "profile": { + "bust": "61", + "height": "128", + "hip": "67", + "waist": "57", + "weight": "29" + } + }, + { + "alias_name": "CDデビュー", + "alias_name_display": "CDデビュー", + "hash": "6b7b27756e32560ebd97a01021ce4b9d", + "id": "3521402", + "profile": { + "bust": "61", + "height": "128", + "hip": "67", + "waist": "57", + "weight": "29" + } + }, + { + "alias_name": "わくわくきゃんぷ", + "alias_name_display": "わくわくきゃんぷ", + "event": [ + { + "event_id": 1701, + "event_name": "アイドルプロデュース はじめてのキャンプ" + } + ], + "hash": "1676fb40ccf5df3f3ee58a16e2cddae6", + "id": "3423301", + "profile": { + "bust": "62", + "height": "129", + "hip": "67", + "waist": "58", + "weight": "30" + } + }, + { + "alias_name": "わくわくきゃんぷ", + "alias_name_display": "わくわくきゃんぷ", + "event": [ + { + "event_id": 1701, + "event_name": "アイドルプロデュース はじめてのキャンプ" + } + ], + "hash": "320a45ed640a34b288113d3745e88f70", + "id": "3523302", + "profile": { + "bust": "62", + "height": "129", + "hip": "67", + "waist": "58", + "weight": "30" + } + }, + { + "alias_name": "うきうききゃんぷ", + "alias_name_display": "うきうききゃんぷ", + "event": [ + { + "event_id": 1701, + "event_name": "アイドルプロデュース はじめてのキャンプ" + } + ], + "hash": "190125c60157b1943b89c47e92fe6493", + "id": "3423401", + "profile": { + "bust": "62", + "height": "129", + "hip": "67", + "waist": "58", + "weight": "30" + } + }, + { + "alias_name": "うきうききゃんぷ", + "alias_name_display": "うきうききゃんぷ", + "event": [ + { + "event_id": 1701, + "event_name": "アイドルプロデュース はじめてのキャンプ" + } + ], + "hash": "fcad0b83c13c9d2ce611c181a8ac16f8", + "id": "3523402", + "profile": { + "bust": "62", + "height": "129", + "hip": "67", + "waist": "58", + "weight": "30" + } + }, + { + "alias_name": "もふもふうぃんたー", + "alias_name_display": "もふもふうぃんたー", + "hash": "89df1bfca5012ae06d8b214eedba6a73", + "id": "3430101", + "profile": { + "bust": "62", + "height": "129", + "hip": "67", + "waist": "58", + "weight": "30" + } + }, + { + "alias_name": "もふもふうぃんたー", + "alias_name_display": "もふもふうぃんたー", + "hash": "966af1bfc59670c22a6005a9ea61670d", + "id": "3530102", + "profile": { + "bust": "62", + "height": "129", + "hip": "67", + "waist": "58", + "weight": "30" + } + }, + { + "alias_name": "わんつー☆マーチング", + "alias_name_display": "わんつー☆マーチング", + "hash": "18197892c34249d75d985645aec8e49f", + "id": "3434501", + "profile": { + "bust": "62", + "height": "129", + "hip": "67", + "waist": "58", + "weight": "30" + } + }, + { + "alias_name": "わんつー☆マーチング", + "alias_name_display": "わんつー☆マーチング", + "hash": "ea3503c100442dae6d2bd0959a68046e", + "id": "3534502", + "profile": { + "bust": "62", + "height": "129", + "hip": "67", + "waist": "58", + "weight": "30" + } + }, + { + "alias_name": "はるかぜぶんぶん", + "alias_name_display": "はるかぜぶんぶん", + "event": [ + { + "event_id": 728, + "event_name": "ドリームLIVEフェスティバル スプリングSP" + } + ], + "hash": "6b23c2fa9aaa385717a346f4bbb6d6b6", + "id": "3439201", + "profile": { + "bust": "62", + "height": "129", + "hip": "67", + "waist": "58", + "weight": "30" + } + }, + { + "alias_name": "はるかぜぶんぶん", + "alias_name_display": "はるかぜぶんぶん", + "event": [ + { + "event_id": 728, + "event_name": "ドリームLIVEフェスティバル スプリングSP" + } + ], + "hash": "f8e4f10ef977349e598b44f6ca5f0141", + "id": "3539202", + "profile": { + "bust": "62", + "height": "129", + "hip": "67", + "waist": "58", + "weight": "30" + } + } + ], + "idol_id": 183, + "idol_name": "市原仁奈", + "idol_name_display": "市原仁奈", + "units": [ + { + "id": "4", + "name": "イカバラプリンセス" + }, + { + "id": "84", + "name": "アニマルパーク" + }, + { + "id": "202", + "name": "サンフラワー" + }, + { + "id": "214", + "name": "L.M.B.G" + } + ] + }, + { + "aliases": [ + { + "hash": "35ed8cc4e33cec53aea016cb9e2f0f22", + "id": "3202701", + "profile": { + "bust": "78", + "height": "151", + "hip": "78", + "waist": "56", + "weight": "38" + } + }, + { + "hash": "64ba99c6d5b579d020a5a2e8731648d4", + "id": "3302702", + "profile": { + "bust": "78", + "height": "151", + "hip": "78", + "waist": "56", + "weight": "38" + } + }, + { + "alias_name": "花火祭り", + "alias_name_display": "花火祭り", + "event": [ + { + "event_id": 408, + "event_name": "アイドルプロデュース 夜空に咲く花火編" + } + ], + "hash": "d43d25a428dd282462276f7ea893e15c", + "id": "3211601", + "profile": { + "bust": "78", + "height": "151", + "hip": "78", + "waist": "56", + "weight": "38" + } + }, + { + "alias_name": "花火祭り", + "alias_name_display": "花火祭り", + "event": [ + { + "event_id": 408, + "event_name": "アイドルプロデュース 夜空に咲く花火編" + } + ], + "hash": "b1e253723b1b2b4a276636717e943356", + "id": "3311602", + "profile": { + "bust": "78", + "height": "151", + "hip": "78", + "waist": "56", + "weight": "38" + } + }, + { + "alias_name": "花火祭りスマイル", + "alias_name_display": "花火祭りスマイル", + "event": [ + { + "event_id": 408, + "event_name": "アイドルプロデュース 夜空に咲く花火編" + } + ], + "hash": "de01bd005756ddc45569087214ffa088", + "id": "3211701", + "profile": { + "bust": "78", + "height": "151", + "hip": "78", + "waist": "56", + "weight": "38" + } + }, + { + "alias_name": "花火祭りスマイル", + "alias_name_display": "花火祭りスマイル", + "event": [ + { + "event_id": 408, + "event_name": "アイドルプロデュース 夜空に咲く花火編" + } + ], + "hash": "71bf844f9d6bba187861e9a94c4d1a2a", + "id": "3311702", + "profile": { + "bust": "78", + "height": "151", + "hip": "78", + "waist": "56", + "weight": "38" + } + }, + { + "alias_name": "グリッターステージ", + "alias_name_display": "グリッターステージ", + "hash": "283f95982e58cb966d2a07d4fb85ca94", + "id": "3216301", + "profile": { + "bust": "78", + "height": "151", + "hip": "78", + "waist": "56", + "weight": "38" + } + }, + { + "alias_name": "グリッターステージ", + "alias_name_display": "グリッターステージ", + "hash": "0de6cb9fa2f79c444b5a8bc6c80b126b", + "id": "3316302", + "profile": { + "bust": "78", + "height": "151", + "hip": "78", + "waist": "56", + "weight": "38" + } + }, + { + "alias_name": "ドリームペイント", + "alias_name_display": "ドリームペイント", + "hash": "82abdf981278d1ac8db9caf12c77fd3d", + "id": "3219401", + "profile": { + "bust": "78", + "height": "151", + "hip": "78", + "waist": "56", + "weight": "38" + } + }, + { + "alias_name": "ドリームペイント", + "alias_name_display": "ドリームペイント", + "hash": "965f5c538bbd1baa8ba16e8a092d0921", + "id": "3319402", + "profile": { + "bust": "78", + "height": "151", + "hip": "78", + "waist": "56", + "weight": "38" + } + }, + { + "alias_name": "ふらふら☆トリッパー", + "alias_name_display": "ふらふら☆トリッパー", + "hash": "07030bb9c263382fb19cde7b091561a8", + "id": "3232001", + "profile": { + "bust": "78", + "height": "151", + "hip": "78", + "waist": "56", + "weight": "38" + } + }, + { + "alias_name": "ふらふら☆トリッパー", + "alias_name_display": "ふらふら☆トリッパー", + "hash": "c1bb3d0591ba0ff7d0f8c6d3aaf19186", + "id": "3332002", + "profile": { + "bust": "78", + "height": "151", + "hip": "78", + "waist": "56", + "weight": "38" + } + }, + { + "alias_name": "妄想お姫様", + "alias_name_display": "妄想お姫様", + "event": [ + { + "event_id": 203, + "event_name": "アイドルサバイバルinテーマパーク" + } + ], + "hash": "bddbbf700738b76daca74173b181733a", + "id": "3401501", + "profile": { + "bust": "78", + "height": "151", + "hip": "78", + "waist": "56", + "weight": "38" + } + }, + { + "alias_name": "妄想お姫様", + "alias_name_display": "妄想お姫様", + "event": [ + { + "event_id": 203, + "event_name": "アイドルサバイバルinテーマパーク" + } + ], + "hash": "7ff7bf1dca35b8b2572ca73a0caecc49", + "id": "3501502", + "profile": { + "bust": "78", + "height": "151", + "hip": "78", + "waist": "56", + "weight": "38" + } + }, + { + "alias_name": "妄想☆暴走★", + "alias_name_display": "妄想☆暴走★", + "hash": "1a1d4bdd3145e5fec11094585f8d5e25", + "id": "3403701", + "profile": { + "bust": "78", + "height": "151", + "hip": "78", + "waist": "56", + "weight": "38" + } + }, + { + "alias_name": "妄想☆暴走★", + "alias_name_display": "妄想☆暴走★", + "hash": "d02f7c4e0e91862a3732593aede41145", + "id": "3503702", + "profile": { + "bust": "78", + "height": "151", + "hip": "78", + "waist": "56", + "weight": "38" + } + }, + { + "alias_name": "ビューティフルドリーマー", + "alias_name_display": "ビューティフルドリーマー", + "event": [ + { + "event_id": 802, + "event_name": "第2回アイドルLIVEロワイヤル" + } + ], + "hash": "2282ba15a285c7df2a7f85f1bd3365b5", + "id": "3410401", + "profile": { + "bust": "78", + "height": "151", + "hip": "78", + "waist": "56", + "weight": "38" + } + }, + { + "alias_name": "ビューティフルドリーマー", + "alias_name_display": "ビューティフルドリーマー", + "event": [ + { + "event_id": 802, + "event_name": "第2回アイドルLIVEロワイヤル" + } + ], + "hash": "dc63d553aea48ddd20cb3623f8a85308", + "id": "3510402", + "profile": { + "bust": "78", + "height": "151", + "hip": "78", + "waist": "56", + "weight": "38" + } + }, + { + "alias_name": "妄想☆わんだふる", + "alias_name_display": "妄想☆わんだふる", + "event": [ + { + "event_id": 1109, + "event_name": "第9回プロダクション対抗トークバトルショー" + } + ], + "hash": "fec2cb1b8c1742c4551d262e56f2dfd3", + "id": "3422101", + "profile": { + "bust": "78", + "height": "151", + "hip": "78", + "waist": "56", + "weight": "38" + } + }, + { + "alias_name": "妄想☆わんだふる", + "alias_name_display": "妄想☆わんだふる", + "event": [ + { + "event_id": 1109, + "event_name": "第9回プロダクション対抗トークバトルショー" + } + ], + "hash": "8885845534e6d6e29cb32c72d6eb2165", + "id": "3522102", + "profile": { + "bust": "78", + "height": "151", + "hip": "78", + "waist": "56", + "weight": "38" + } + }, + { + "alias_name": "ワンダフルブライド", + "alias_name_display": "ワンダフルブライド", + "hash": "cd55b9e1c5d5063cc373eeaee5edf646", + "id": "3427201", + "profile": { + "bust": "78", + "height": "151", + "hip": "78", + "waist": "56", + "weight": "38" + } + }, + { + "alias_name": "ワンダフルブライド", + "alias_name_display": "ワンダフルブライド", + "hash": "ed70d31790fd506b7a5a966d1f441028", + "id": "3527202", + "profile": { + "bust": "78", + "height": "151", + "hip": "78", + "waist": "56", + "weight": "38" + } + }, + { + "alias_name": "ひらひらふわり", + "alias_name_display": "ひらひらふわり", + "event": [ + { + "event_id": "030", + "event_name": "第30回プロダクションマッチフェスティバル" + } + ], + "hash": "b3b1fa6ac4889d1847f4af965b3fe390", + "id": "3433601", + "profile": { + "bust": "78", + "height": "151", + "hip": "78", + "waist": "56", + "weight": "38" + } + }, + { + "alias_name": "ひらひらふわり", + "alias_name_display": "ひらひらふわり", + "event": [ + { + "event_id": "030", + "event_name": "第30回プロダクションマッチフェスティバル" + } + ], + "hash": "2b84984d9d6c5a8c0520fe96a7ba45d6", + "id": "3533602", + "profile": { + "bust": "78", + "height": "151", + "hip": "78", + "waist": "56", + "weight": "38" + } + } + ], + "idol_id": 184, + "idol_name": "喜多日菜子", + "idol_name_display": "喜多日菜子", + "units": [ + { + "id": "48", + "name": "日菜子と愛海の妄想ワールド" + }, + { + "id": "151", + "name": "ブエナ・スエルテ" + } + ] + }, + { + "aliases": [ + { + "hash": "6edab62ef4c1db15158c13d522310985", + "id": "3202601", + "profile": { + "bust": "88", + "height": "162", + "hip": "86", + "waist": "58", + "weight": "45" + } + }, + { + "hash": "6b619f987d78ad43e4b7a872c7af6f45", + "id": "3302602", + "profile": { + "bust": "88", + "height": "162", + "hip": "86", + "waist": "58", + "weight": "45" + } + }, + { + "alias_name": "メルヘン&ゴシック", + "alias_name_display": "メルヘン&ゴシック", + "hash": "0a9233d5c36f67535bc550c2a37a160b", + "id": "3209101", + "profile": { + "bust": "88", + "height": "162", + "hip": "86", + "waist": "58", + "weight": "45" + } + }, + { + "alias_name": "メルヘン&ゴシック", + "alias_name_display": "メルヘン&ゴシック", + "hash": "3d7ae831c66c150cd8df504d9ec2726c", + "id": "3309102", + "profile": { + "bust": "88", + "height": "162", + "hip": "86", + "waist": "58", + "weight": "45" + } + }, + { + "alias_name": "エキゾチックダンサー", + "alias_name_display": "エキゾチックダンサー", + "hash": "506c7af5dd9e88a07d624b02e8b10477", + "id": "3210901", + "profile": { + "bust": "88", + "height": "162", + "hip": "86", + "waist": "58", + "weight": "45" + } + }, + { + "alias_name": "エキゾチックダンサー", + "alias_name_display": "エキゾチックダンサー", + "hash": "1f24f868254f226ca4d9cb49821353d8", + "id": "3310902", + "profile": { + "bust": "88", + "height": "162", + "hip": "86", + "waist": "58", + "weight": "45" + } + }, + { + "alias_name": "ほのかな甘さ", + "alias_name_display": "ほのかな甘さ", + "hash": "795d079f6a4cae7c0e83302f07753de1", + "id": "3218301", + "profile": { + "bust": "88", + "height": "162", + "hip": "86", + "waist": "58", + "weight": "45" + } + }, + { + "alias_name": "ほのかな甘さ", + "alias_name_display": "ほのかな甘さ", + "hash": "6b44a9f0dd3b99a82ab313a0ae0a6959", + "id": "3318302", + "profile": { + "bust": "88", + "height": "162", + "hip": "86", + "waist": "58", + "weight": "45" + } + }, + { + "alias_name": "エスニックタイガー", + "alias_name_display": "エスニックタイガー", + "event": [ + { + "event_id": 711, + "event_name": "福は内DEドリームLIVEフェスティバル" + } + ], + "hash": "d8ff0d484c0b918e0b7d9c175a50fe7f", + "id": "3221301", + "profile": { + "bust": "88", + "height": "162", + "hip": "86", + "waist": "58", + "weight": "45" + } + }, + { + "alias_name": "エスニックタイガー", + "alias_name_display": "エスニックタイガー", + "event": [ + { + "event_id": 711, + "event_name": "福は内DEドリームLIVEフェスティバル" + } + ], + "hash": "92ec6bdec324e9f28ed76acfdf0b6689", + "id": "3321302", + "profile": { + "bust": "88", + "height": "162", + "hip": "86", + "waist": "58", + "weight": "45" + } + }, + { + "alias_name": "テンダーハート", + "alias_name_display": "テンダーハート", + "event": [ + { + "event_id": "025", + "event_name": "第25回プロダクションマッチフェスティバル" + } + ], + "hash": "14e16ee65ada054132b63a298a16f969", + "id": "3227101", + "profile": { + "bust": "88", + "height": "162", + "hip": "86", + "waist": "58", + "weight": "45" + } + }, + { + "alias_name": "テンダーハート", + "alias_name_display": "テンダーハート", + "event": [ + { + "event_id": "025", + "event_name": "第25回プロダクションマッチフェスティバル" + } + ], + "hash": "b6062625d2b3926c7ff59586fabf9a59", + "id": "3327102", + "profile": { + "bust": "88", + "height": "162", + "hip": "86", + "waist": "58", + "weight": "45" + } + }, + { + "alias_name": "ほっこりゲン担ぎ", + "alias_name_display": "ほっこりゲン担ぎ", + "event": [ + { + "event_id": 726, + "event_name": "ドリームLIVEフェスティバル新春SP" + } + ], + "hash": "daa724181b0eaabdb0703cf6d8511879", + "id": "3232101", + "profile": { + "bust": "88", + "height": "162", + "hip": "86", + "waist": "58", + "weight": "45" + } + }, + { + "alias_name": "ほっこりゲン担ぎ", + "alias_name_display": "ほっこりゲン担ぎ", + "event": [ + { + "event_id": 726, + "event_name": "ドリームLIVEフェスティバル新春SP" + } + ], + "hash": "39c3ae689cbc1723753ab102b3420b34", + "id": "3332102", + "profile": { + "bust": "88", + "height": "162", + "hip": "86", + "waist": "58", + "weight": "45" + } + }, + { + "alias_name": "エキゾチックサーファー", + "alias_name_display": "エキゾチックサーファー", + "event": [ + { + "event_id": 804, + "event_name": "第4回アイドルLIVEロワイヤル" + } + ], + "hash": "55ad3fbb5d19ca6c12a8262cc9596cef", + "id": "3412701", + "profile": { + "bust": "88", + "height": "162", + "hip": "86", + "waist": "58", + "weight": "45" + } + }, + { + "alias_name": "エキゾチックサーファー", + "alias_name_display": "エキゾチックサーファー", + "event": [ + { + "event_id": 804, + "event_name": "第4回アイドルLIVEロワイヤル" + } + ], + "hash": "b82a9987c891d3e29b18d15d90c7d884", + "id": "3512702", + "profile": { + "bust": "88", + "height": "162", + "hip": "86", + "waist": "58", + "weight": "45" + } + }, + { + "alias_name": "夏色情緒", + "alias_name_display": "夏色情緒", + "event": [ + { + "event_id": 714, + "event_name": "夏祭りDEドリームLIVEフェスティバル" + } + ], + "hash": "b15a029083439aac358a12f9e5c48ea5", + "id": "3424601", + "profile": { + "bust": "88", + "height": "162", + "hip": "86", + "waist": "58", + "weight": "45" + } + }, + { + "alias_name": "夏色情緒", + "alias_name_display": "夏色情緒", + "event": [ + { + "event_id": 714, + "event_name": "夏祭りDEドリームLIVEフェスティバル" + } + ], + "hash": "caa08ae235a5cb1fcacdac027f8f9f2a", + "id": "3524602", + "profile": { + "bust": "88", + "height": "162", + "hip": "86", + "waist": "58", + "weight": "45" + } + }, + { + "alias_name": "エキゾチックドレッサー", + "alias_name_display": "エキゾチックドレッサー", + "event": [ + { + "event_id": 1407, + "event_name": "第7回ぷちデレラコレクション" + } + ], + "hash": "ac452a8f4078b9c8a4e2df386eefe0c9", + "id": "3433001", + "profile": { + "bust": "88", + "height": "162", + "hip": "86", + "waist": "58", + "weight": "45" + } + }, + { + "alias_name": "エキゾチックドレッサー", + "alias_name_display": "エキゾチックドレッサー", + "event": [ + { + "event_id": 1407, + "event_name": "第7回ぷちデレラコレクション" + } + ], + "hash": "26a0294ebbd82d18425173f46b4d8860", + "id": "3533002", + "profile": { + "bust": "88", + "height": "162", + "hip": "86", + "waist": "58", + "weight": "45" + } + } + ], + "idol_id": 185, + "idol_name": "杉坂海", + "idol_name_display": "杉坂海", + "units": [ + { + "id": "100", + "name": "ハートウォーマー" + }, + { + "id": "165", + "name": "メルヘンゴシック" + } + ] + }, + { + "aliases": [ + { + "event": [ + { + "event_id": 201, + "event_name": "アイドルサバイバル" + } + ], + "hash": "ded225525d77bc5e164da6ec41d0342e", + "id": "3202901", + "profile": { + "bust": "75", + "height": "158", + "hip": "79", + "waist": "57", + "weight": "43" + } + }, + { + "event": [ + { + "event_id": 201, + "event_name": "アイドルサバイバル" + } + ], + "hash": "f17d6bd4caee1e6ace28eb66c2c0160c", + "id": "3302902", + "profile": { + "bust": "75", + "height": "158", + "hip": "79", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "スポーツ祭", + "alias_name_display": "スポーツ祭", + "hash": "5d9bbfe79fb467cff5efcc33fe949228", + "id": "3204901", + "profile": { + "bust": "75", + "height": "158", + "hip": "79", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "スポーツ祭", + "alias_name_display": "スポーツ祭", + "hash": "a49d2ce44927c252d39b05c3ec553044", + "id": "3304902", + "profile": { + "bust": "75", + "height": "158", + "hip": "79", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "スポーティガール", + "alias_name_display": "スポーティガール", + "hash": "c37466d224d79ec5b4582a2e05865f5c", + "id": "3209301", + "profile": { + "bust": "75", + "height": "158", + "hip": "79", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "スポーティガール", + "alias_name_display": "スポーティガール", + "hash": "f0627779554f7932ca75fba796816000", + "id": "3309302", + "profile": { + "bust": "75", + "height": "158", + "hip": "79", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "ひな祭り", + "alias_name_display": "ひな祭り", + "event": [ + { + "event_id": 510, + "event_name": "ひな祭りLIVEツアーカーニバル" + } + ], + "hash": "53b74090a5ced2280a40b699017e80d2", + "id": "3215901", + "profile": { + "bust": "75", + "height": "158", + "hip": "79", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "ひな祭り", + "alias_name_display": "ひな祭り", + "event": [ + { + "event_id": 510, + "event_name": "ひな祭りLIVEツアーカーニバル" + } + ], + "hash": "c2cee09440f26baf18469aa365b2df73", + "id": "3315902", + "profile": { + "bust": "75", + "height": "158", + "hip": "79", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "メルヘンアニマルズ", + "alias_name_display": "メルヘンアニマルズ", + "hash": "90f843c2f09a7ddc764aacce7fa7074f", + "id": "3219001", + "profile": { + "bust": "75", + "height": "158", + "hip": "79", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "メルヘンアニマルズ", + "alias_name_display": "メルヘンアニマルズ", + "hash": "c4cbadee96999cfe3a34797d3ccff9a1", + "id": "3319002", + "profile": { + "bust": "75", + "height": "158", + "hip": "79", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "ごきげんスターター", + "alias_name_display": "ごきげんスターター", + "hash": "276fb5e876944d35f8f7261be7464d58", + "id": "3229101", + "profile": { + "bust": "75", + "height": "158", + "hip": "79", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "ごきげんスターター", + "alias_name_display": "ごきげんスターター", + "hash": "c700626ff44e2158a1e3917f0c60d934", + "id": "3329102", + "profile": { + "bust": "75", + "height": "158", + "hip": "79", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "ディアンドルガール", + "alias_name_display": "ディアンドルガール", + "event": [ + { + "event_id": 507, + "event_name": "LIVEツアーカーニバルinドイツ" + } + ], + "hash": "3f15212a15a1422e0a5cebff2094ee3a", + "id": "3408401", + "profile": { + "bust": "75", + "height": "158", + "hip": "79", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "ディアンドルガール", + "alias_name_display": "ディアンドルガール", + "event": [ + { + "event_id": 507, + "event_name": "LIVEツアーカーニバルinドイツ" + } + ], + "hash": "7ec7936571af537a32f0c8256789ab73", + "id": "3508402", + "profile": { + "bust": "75", + "height": "158", + "hip": "79", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "ジョイフル・ロワイヤル", + "alias_name_display": "ジョイフル・ロワイヤル", + "event": [ + { + "event_id": 811, + "event_name": "第11回アイドルLIVEロワイヤル" + } + ], + "hash": "178edad79aa9ee2b9cbbd9bdaf003b52", + "id": "3422301", + "profile": { + "bust": "75", + "height": "158", + "hip": "79", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "ジョイフル・ロワイヤル", + "alias_name_display": "ジョイフル・ロワイヤル", + "event": [ + { + "event_id": 811, + "event_name": "第11回アイドルLIVEロワイヤル" + } + ], + "hash": "5a260e4dd152105385c08cf8fc4904ff", + "id": "3522302", + "profile": { + "bust": "75", + "height": "158", + "hip": "79", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "バイタルシャウト", + "alias_name_display": "バイタルシャウト", + "event": [ + { + "event_id": 716, + "event_name": "第16回ドリームLIVEフェスティバル" + } + ], + "hash": "6facfc1c890c01ada655add731f9d797", + "id": "3426901", + "profile": { + "bust": "75", + "height": "158", + "hip": "79", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "バイタルシャウト", + "alias_name_display": "バイタルシャウト", + "event": [ + { + "event_id": 716, + "event_name": "第16回ドリームLIVEフェスティバル" + } + ], + "hash": "bccd086a6baf5aa7c9836b1744b2961b", + "id": "3526902", + "profile": { + "bust": "75", + "height": "158", + "hip": "79", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "ダッシュ・ロワイヤル", + "alias_name_display": "ダッシュ・ロワイヤル", + "event": [ + { + "event_id": 820, + "event_name": "第20回アイドルLIVEロワイヤル" + } + ], + "hash": "caa40a2b61e26c6bc67b7e8e19ef0050", + "id": "3436301", + "profile": { + "bust": "75", + "height": "158", + "hip": "79", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "ダッシュ・ロワイヤル", + "alias_name_display": "ダッシュ・ロワイヤル", + "event": [ + { + "event_id": 820, + "event_name": "第20回アイドルLIVEロワイヤル" + } + ], + "hash": "73510215f3daefbf89a05623b83e3fd8", + "id": "3536302", + "profile": { + "bust": "75", + "height": "158", + "hip": "79", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "ペッピーウォーキン☆", + "alias_name_display": "ペッピーウォーキン☆", + "event": [ + { + "event_id": 1412, + "event_name": "第12回ぷちデレラコレクション" + } + ], + "hash": "152d472f4e2ac23df690fde0685bb3f6", + "id": "3439401", + "profile": { + "bust": "75", + "height": "158", + "hip": "79", + "waist": "57", + "weight": "43" + } + }, + { + "alias_name": "ペッピーウォーキン☆", + "alias_name_display": "ペッピーウォーキン☆", + "event": [ + { + "event_id": 1412, + "event_name": "第12回ぷちデレラコレクション" + } + ], + "hash": "b24f3818f1e1073ea376f64f62004d15", + "id": "3539402", + "profile": { + "bust": "75", + "height": "158", + "hip": "79", + "waist": "57", + "weight": "43" + } + } + ], + "idol_id": 186, + "idol_name": "北川真尋", + "idol_name_display": "北川真尋", + "units": [ + { + "id": "97", + "name": "ドイツスタイル" + }, + { + "id": "166", + "name": "メルヘンアニマルズ" + }, + { + "id": "181", + "name": "フレッシュアスリーテス" + }, + { + "id": "211", + "name": "ワンダー・フル" + } + ] + }, + { + "aliases": [ + { + "alias_name": "水泳大会", + "alias_name_display": "水泳大会", + "event": [ + { + "event_id": 106, + "event_name": "アイドル水泳大会 水着のシンデレラ" + } + ], + "hash": "886e0e6ddf996f029d572480ab02dd81", + "id": "3003001", + "profile": { + "bust": "71", + "height": "152", + "hip": "73", + "waist": "59", + "weight": "41" + } + }, + { + "alias_name": "水泳大会", + "alias_name_display": "水泳大会", + "event": [ + { + "event_id": 106, + "event_name": "アイドル水泳大会 水着のシンデレラ" + } + ], + "hash": "3e0a6ce679f6f028f72df476ee639a2d", + "id": "3103002", + "profile": { + "bust": "71", + "height": "152", + "hip": "73", + "waist": "59", + "weight": "41" + } + }, + { + "hash": "18489764f5cbce4a977c80ee9d7783a1", + "id": "3203001", + "profile": { + "bust": "70", + "height": "150", + "hip": "72", + "waist": "58", + "weight": "40" + } + }, + { + "hash": "65101cc645b1b98eba948fe54046ff6f", + "id": "3303002", + "profile": { + "bust": "71", + "height": "152", + "hip": "73", + "waist": "59", + "weight": "41" + } + }, + { + "alias_name": "湯けむり温泉", + "alias_name_display": "湯けむり温泉", + "hash": "bd4274434813bd239fc7ea3c76f536c5", + "id": "3207101", + "profile": { + "bust": "71", + "height": "152", + "hip": "73", + "waist": "59", + "weight": "41" + } + }, + { + "alias_name": "湯けむり温泉", + "alias_name_display": "湯けむり温泉", + "hash": "e94f806191848660212e2e8d5cf8e788", + "id": "3307102", + "profile": { + "bust": "71", + "height": "152", + "hip": "73", + "waist": "59", + "weight": "41" + } + }, + { + "alias_name": "リトルアクトレス", + "alias_name_display": "リトルアクトレス", + "hash": "d26384fd64b2ba4dd1c1d86cfb67b8a0", + "id": "3211401", + "profile": { + "bust": "71", + "height": "152", + "hip": "73", + "waist": "59", + "weight": "41" + } + }, + { + "alias_name": "リトルアクトレス", + "alias_name_display": "リトルアクトレス", + "hash": "4651350df55caf44e7f2cab5de005a4e", + "id": "3311402", + "profile": { + "bust": "71", + "height": "152", + "hip": "73", + "waist": "59", + "weight": "41" + } + }, + { + "alias_name": "ブライダルセレクション", + "alias_name_display": "ブライダルセレクション", + "hash": "dee7d5cc58fb28e3a1e115ca1c86fd4c", + "id": "3223301", + "profile": { + "bust": "71", + "height": "152", + "hip": "73", + "waist": "59", + "weight": "41" + } + }, + { + "alias_name": "ブライダルセレクション", + "alias_name_display": "ブライダルセレクション", + "hash": "e92cc31ad73eaa57f553a47e360d33cf", + "id": "3323302", + "profile": { + "bust": "71", + "height": "152", + "hip": "73", + "waist": "59", + "weight": "41" + } + }, + { + "alias_name": "レディスタイル", + "alias_name_display": "レディスタイル", + "event": [ + { + "event_id": "029", + "event_name": "第29回プロダクションマッチフェスティバル" + } + ], + "hash": "75e021f7d250349ad9200dc8a41078cc", + "id": "3229401", + "profile": { + "bust": "71", + "height": "152", + "hip": "73", + "waist": "59", + "weight": "41" + } + }, + { + "alias_name": "レディスタイル", + "alias_name_display": "レディスタイル", + "event": [ + { + "event_id": "029", + "event_name": "第29回プロダクションマッチフェスティバル" + } + ], + "hash": "f07ac41e9accff6a007922b58505d2a5", + "id": "3329402", + "profile": { + "bust": "71", + "height": "152", + "hip": "73", + "waist": "59", + "weight": "41" + } + }, + { + "alias_name": "マーチングバンド", + "alias_name_display": "マーチングバンド", + "hash": "bf401761087be840072f8fabc7f3b073", + "id": "3231601", + "profile": { + "bust": "71", + "height": "152", + "hip": "73", + "waist": "59", + "weight": "41" + } + }, + { + "alias_name": "マーチングバンド", + "alias_name_display": "マーチングバンド", + "hash": "f2661e2d6e1a47730b985c6d3346b2bd", + "id": "3331602", + "profile": { + "bust": "71", + "height": "152", + "hip": "73", + "waist": "59", + "weight": "41" + } + }, + { + "alias_name": "おませなリトルガール", + "alias_name_display": "おませなリトルガール", + "event": [ + { + "event_id": 502, + "event_name": "アイドルLIVEツアーinイギリス" + } + ], + "hash": "eabcfd8ee79889adba48d73ad1f69c79", + "id": "3404601", + "profile": { + "bust": "71", + "height": "152", + "hip": "73", + "waist": "59", + "weight": "41" + } + }, + { + "alias_name": "おませなリトルガール", + "alias_name_display": "おませなリトルガール", + "event": [ + { + "event_id": 502, + "event_name": "アイドルLIVEツアーinイギリス" + } + ], + "hash": "3390b977532c2288bfeaf47e57853643", + "id": "3504602", + "profile": { + "bust": "71", + "height": "152", + "hip": "73", + "waist": "59", + "weight": "41" + } + }, + { + "alias_name": "オトメのお勉強", + "alias_name_display": "オトメのお勉強", + "hash": "382b58a89b0ff8b39f719704e4723e44", + "id": "3411201", + "profile": { + "bust": "71", + "height": "152", + "hip": "73", + "waist": "59", + "weight": "41" + } + }, + { + "alias_name": "オトメのお勉強", + "alias_name_display": "オトメのお勉強", + "hash": "92fb772d2d95efadf4b23d64a88d9598", + "id": "3511202", + "profile": { + "bust": "71", + "height": "152", + "hip": "73", + "waist": "59", + "weight": "41" + } + }, + { + "alias_name": "学園の魔女", + "alias_name_display": "学園の魔女", + "event": [ + { + "event_id": 412, + "event_name": "聖靴学園の七不思議" + } + ], + "hash": "dec0c48fb7ff2cea33acedc86d60ed77", + "id": "3413801", + "profile": { + "bust": "71", + "height": "152", + "hip": "73", + "waist": "59", + "weight": "41" + } + }, + { + "alias_name": "学園の魔女", + "alias_name_display": "学園の魔女", + "event": [ + { + "event_id": 412, + "event_name": "聖靴学園の七不思議" + } + ], + "hash": "860470aa8c2a41e31fb01ef84b3ff1fa", + "id": "3513802", + "profile": { + "bust": "71", + "height": "152", + "hip": "73", + "waist": "59", + "weight": "41" + } + }, + { + "alias_name": "学園の魔女・S", + "alias_name_display": "学園の魔女・S", + "event": [ + { + "event_id": 412, + "event_name": "聖靴学園の七不思議" + } + ], + "hash": "81f2b25fee15cd052eb46e500a139a58", + "id": "3413901", + "profile": { + "bust": "71", + "height": "152", + "hip": "73", + "waist": "59", + "weight": "41" + } + }, + { + "alias_name": "学園の魔女・S", + "alias_name_display": "学園の魔女・S", + "event": [ + { + "event_id": 412, + "event_name": "聖靴学園の七不思議" + } + ], + "hash": "1a5a05e3855800ce1bd8a029a381d3ae", + "id": "3513902", + "profile": { + "bust": "71", + "height": "152", + "hip": "73", + "waist": "59", + "weight": "41" + } + }, + { + "alias_name": "碧眼の姫君", + "alias_name_display": "碧眼の姫君", + "hash": "990199c5bd44be16361a787dda7e5ec2", + "id": "3418801", + "profile": { + "bust": "71", + "height": "152", + "hip": "73", + "waist": "59", + "weight": "41" + } + }, + { + "alias_name": "碧眼の姫君", + "alias_name_display": "碧眼の姫君", + "hash": "1cff2e692e16e4a5080e58d376ac647a", + "id": "3518802", + "profile": { + "bust": "71", + "height": "152", + "hip": "73", + "waist": "59", + "weight": "41" + } + }, + { + "alias_name": "スーパーリトルヒーロー", + "alias_name_display": "スーパーリトルヒーロー", + "event": [ + { + "event_id": 523, + "event_name": "鋼鉄公演 きらりんロボ -襲来!コスメティア帝国-" + } + ], + "hash": "21aedb74f5d55532af0ec8d9405eb4d7", + "id": "3429301", + "profile": { + "bust": "71", + "height": "152", + "hip": "73", + "waist": "59", + "weight": "41" + } + }, + { + "alias_name": "スーパーリトルヒーロー", + "alias_name_display": "スーパーリトルヒーロー", + "event": [ + { + "event_id": 523, + "event_name": "鋼鉄公演 きらりんロボ -襲来!コスメティア帝国-" + } + ], + "hash": "f9e2aa124e090e96d8f60f125f9ff172", + "id": "3529302", + "profile": { + "bust": "71", + "height": "152", + "hip": "73", + "waist": "59", + "weight": "41" + } + }, + { + "alias_name": "プリティブロンド", + "alias_name_display": "プリティブロンド", + "event": [ + { + "event_id": 823, + "event_name": "第23回アイドルLIVEロワイヤル" + } + ], + "hash": "571191f721985c5482bbb81971f25b98", + "id": "3440001", + "profile": { + "bust": "71", + "height": "152", + "hip": "73", + "waist": "59", + "weight": "41" + } + }, + { + "alias_name": "プリティブロンド", + "alias_name_display": "プリティブロンド", + "event": [ + { + "event_id": 823, + "event_name": "第23回アイドルLIVEロワイヤル" + } + ], + "hash": "cda5c513974a4e22bdafa7fb7e662c56", + "id": "3540002", + "profile": { + "bust": "71", + "height": "152", + "hip": "73", + "waist": "59", + "weight": "41" + } + } + ], + "idol_id": 187, + "idol_name": "メアリー・コクラン", + "idol_name_display": "メアリー・コクラン", + "units": [ + { + "id": "125", + "name": "ユア・フレンズ" + }, + { + "id": "162", + "name": "ブライダルセレクション" + }, + { + "id": "170", + "name": "UKスタイル" + }, + { + "id": "214", + "name": "L.M.B.G" + } + ] + }, + { + "aliases": [ + { + "hash": "981843c62010419ba465420262c9550f", + "id": "3203101", + "profile": { + "bust": "85", + "height": "165", + "hip": "88", + "waist": "59", + "weight": "48" + } + }, + { + "hash": "f5c48d566baf361906d0951ebfdc9234", + "id": "3303102", + "profile": { + "bust": "85", + "height": "165", + "hip": "88", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "学園祭", + "alias_name_display": "学園祭", + "event": [ + { + "event_id": 206, + "event_name": "アイドルサバイバルin学園祭" + } + ], + "hash": "71acc3f7453e1a9821d89a1d545f5c94", + "id": "3206401", + "profile": { + "bust": "85", + "height": "165", + "hip": "88", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "学園祭", + "alias_name_display": "学園祭", + "event": [ + { + "event_id": 206, + "event_name": "アイドルサバイバルin学園祭" + } + ], + "hash": "d82c7d5601b6218d47b3f619d13bfe55", + "id": "3306402", + "profile": { + "bust": "85", + "height": "165", + "hip": "88", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "ハッピーバレンタイン", + "alias_name_display": "ハッピーバレンタイン", + "event": [ + { + "event_id": 405, + "event_name": "アイドルプロデュース バレンタイン編" + } + ], + "hash": "230c5b5ec92445aaed128c7508cb8356", + "id": "3208701", + "profile": { + "bust": "85", + "height": "165", + "hip": "88", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "ハッピーバレンタイン", + "alias_name_display": "ハッピーバレンタイン", + "event": [ + { + "event_id": 405, + "event_name": "アイドルプロデュース バレンタイン編" + } + ], + "hash": "220f83f980eec9c9351bed10645e0405", + "id": "3308702", + "profile": { + "bust": "85", + "height": "165", + "hip": "88", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "スマイルバレンタイン", + "alias_name_display": "スマイルバレンタイン", + "event": [ + { + "event_id": 405, + "event_name": "アイドルプロデュース バレンタイン編" + } + ], + "hash": "fbbfc8130fff846c3e712282ca7f841b", + "id": "3208801", + "profile": { + "bust": "85", + "height": "165", + "hip": "88", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "スマイルバレンタイン", + "alias_name_display": "スマイルバレンタイン", + "event": [ + { + "event_id": 405, + "event_name": "アイドルプロデュース バレンタイン編" + } + ], + "hash": "66a35e542777658570fd3b0579538e63", + "id": "3308802", + "profile": { + "bust": "85", + "height": "165", + "hip": "88", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "ダンシングブライド", + "alias_name_display": "ダンシングブライド", + "hash": "d8bc3c2d3dc0cff584279852792d7a95", + "id": "3213901", + "profile": { + "bust": "85", + "height": "165", + "hip": "88", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "ダンシングブライド", + "alias_name_display": "ダンシングブライド", + "hash": "3a2aa4fc0fb6337f9451d4efad5b9916", + "id": "3313902", + "profile": { + "bust": "85", + "height": "165", + "hip": "88", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "カジュアル&フリル", + "alias_name_display": "カジュアル&フリル", + "hash": "dfb65b80dbdb7746d7eb0b0037744684", + "id": "3216101", + "profile": { + "bust": "85", + "height": "165", + "hip": "88", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "カジュアル&フリル", + "alias_name_display": "カジュアル&フリル", + "hash": "7dc7df39668d17d3e6aefc45dad172c8", + "id": "3316102", + "profile": { + "bust": "85", + "height": "165", + "hip": "88", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "さわやかスポーツ", + "alias_name_display": "さわやかスポーツ", + "hash": "2ed81a3a0badd66417a9d8dac2380dcd", + "id": "3222901", + "profile": { + "bust": "85", + "height": "165", + "hip": "88", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "さわやかスポーツ", + "alias_name_display": "さわやかスポーツ", + "hash": "2f113b28d941cd9250d02f9491e2425a", + "id": "3322902", + "profile": { + "bust": "85", + "height": "165", + "hip": "88", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "ディライトタイム", + "alias_name_display": "ディライトタイム", + "event": [ + { + "event_id": 717, + "event_name": "第17回ドリームLIVEフェスティバル" + } + ], + "hash": "e026a9a2e9fdd0cb527ab89ce1ac8b62", + "id": "3326102", + "profile": { + "bust": "85", + "height": "165", + "hip": "88", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "サバゲーI.C", + "alias_name_display": "サバゲーI.C", + "event": [ + { + "event_id": 1210, + "event_name": "アイドルチャレンジ サバイバルゲーム編" + } + ], + "hash": "0dbc072b0335f879d112086ca78ad77a", + "id": "3328502", + "profile": { + "bust": "85", + "height": "165", + "hip": "88", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "ストリートスパークル", + "alias_name_display": "ストリートスパークル", + "hash": "94bff0502f041e4baae4b676e3468a23", + "id": "3233501", + "profile": { + "bust": "85", + "height": "165", + "hip": "88", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "ストリートスパークル", + "alias_name_display": "ストリートスパークル", + "hash": "804b115656386639daea4c52420f7105", + "id": "3333502", + "profile": { + "bust": "85", + "height": "165", + "hip": "88", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "トロピカルダンサー", + "alias_name_display": "トロピカルダンサー", + "event": [ + { + "event_id": 505, + "event_name": "アイドルLIVEツアーinバリ島" + } + ], + "hash": "664ca1e6850282545e40668063e9f05d", + "id": "3407401", + "profile": { + "bust": "85", + "height": "165", + "hip": "88", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "トロピカルダンサー", + "alias_name_display": "トロピカルダンサー", + "event": [ + { + "event_id": 505, + "event_name": "アイドルLIVEツアーinバリ島" + } + ], + "hash": "08cd13a051d1962fee067b9e38acd6c4", + "id": "3507402", + "profile": { + "bust": "85", + "height": "165", + "hip": "88", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "フェイバリット☆タイム", + "alias_name_display": "フェイバリット☆タイム", + "hash": "56fb7869be014b15e2daccaf1dc6d4dc", + "id": "3417501", + "profile": { + "bust": "85", + "height": "165", + "hip": "88", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "フェイバリット☆タイム", + "alias_name_display": "フェイバリット☆タイム", + "hash": "1af95abc44fe62d8324257c1f6290018", + "id": "3517502", + "profile": { + "bust": "85", + "height": "165", + "hip": "88", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "フレッシュソルジャー", + "alias_name_display": "フレッシュソルジャー", + "event": [ + { + "event_id": 1210, + "event_name": "アイドルチャレンジ サバイバルゲーム編" + } + ], + "hash": "d23f88fda4981caa35655e6be23fc54c", + "id": "3431901", + "profile": { + "bust": "85", + "height": "165", + "hip": "88", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "フレッシュソルジャー", + "alias_name_display": "フレッシュソルジャー", + "event": [ + { + "event_id": 1210, + "event_name": "アイドルチャレンジ サバイバルゲーム編" + } + ], + "hash": "64765fd2a7760ab7c85ff530a7ee1014", + "id": "3531902", + "profile": { + "bust": "85", + "height": "165", + "hip": "88", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "フレッシュソルジャー・S", + "alias_name_display": "フレッシュソルジャー・S", + "event": [ + { + "event_id": 1210, + "event_name": "アイドルチャレンジ サバイバルゲーム編" + } + ], + "hash": "14b9f5fc5395420c5fba5f8f9b6982ae", + "id": "3432001", + "profile": { + "bust": "85", + "height": "165", + "hip": "88", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "フレッシュソルジャー・S", + "alias_name_display": "フレッシュソルジャー・S", + "event": [ + { + "event_id": 1210, + "event_name": "アイドルチャレンジ サバイバルゲーム編" + } + ], + "hash": "93ff417b98647caf533179ef85083542", + "id": "3532002", + "profile": { + "bust": "85", + "height": "165", + "hip": "88", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "月夜のダンサー", + "alias_name_display": "月夜のダンサー", + "event": [ + { + "event_id": 819, + "event_name": "アイドルLIVEロワイヤル お月見SP" + } + ], + "hash": "c49c6d77d6640d6be62d4f0043739f4f", + "id": "3435001", + "profile": { + "bust": "85", + "height": "165", + "hip": "88", + "waist": "59", + "weight": "48" + } + }, + { + "alias_name": "月夜のダンサー", + "alias_name_display": "月夜のダンサー", + "event": [ + { + "event_id": 819, + "event_name": "アイドルLIVEロワイヤル お月見SP" + } + ], + "hash": "74726c9cfa072e384c992e8d8bde9ff9", + "id": "3535002", + "profile": { + "bust": "85", + "height": "165", + "hip": "88", + "waist": "59", + "weight": "48" + } + } + ], + "idol_id": 188, + "idol_name": "小松伊吹", + "idol_name_display": "小松伊吹", + "units": [ + { + "id": "2", + "name": "アーティスター" + }, + { + "id": "119", + "name": "フランメ・ルージュ" + }, + { + "id": "160", + "name": "ハッピーバレンタイン" + } + ] + }, + { + "aliases": [ + { + "hash": "74a5d336821a3ccbb0e27083910eb4a2", + "id": "3203401", + "profile": { + "bust": "75", + "height": "149", + "hip": "80", + "waist": "56", + "weight": "39" + } + }, + { + "hash": "6975abbc1acbd11dc0761db34100eeff", + "id": "3303402", + "profile": { + "bust": "75", + "height": "149", + "hip": "80", + "waist": "56", + "weight": "39" + } + }, + { + "alias_name": "サマーライブ", + "alias_name_display": "サマーライブ", + "event": [ + { + "event_id": 205, + "event_name": "アイドルサバイバルinサマーライブ" + } + ], + "hash": "a2c76c7c3d6cd4ed9bfae16a519606e3", + "id": "3205501", + "profile": { + "bust": "75", + "height": "149", + "hip": "80", + "waist": "56", + "weight": "39" + } + }, + { + "alias_name": "サマーライブ", + "alias_name_display": "サマーライブ", + "event": [ + { + "event_id": 205, + "event_name": "アイドルサバイバルinサマーライブ" + } + ], + "hash": "55f4201ee5b5f40f49f375d912ca5a48", + "id": "3305502", + "profile": { + "bust": "75", + "height": "149", + "hip": "80", + "waist": "56", + "weight": "39" + } + }, + { + "alias_name": "バレンタインパーティー", + "alias_name_display": "バレンタインパーティー", + "hash": "a912475f262c6610d16fd01a89b67b4f", + "id": "3208601", + "profile": { + "bust": "75", + "height": "149", + "hip": "80", + "waist": "56", + "weight": "39" + } + }, + { + "alias_name": "バレンタインパーティー", + "alias_name_display": "バレンタインパーティー", + "hash": "035f0fe78149312386a6359970285410", + "id": "3308602", + "profile": { + "bust": "75", + "height": "149", + "hip": "80", + "waist": "56", + "weight": "39" + } + }, + { + "alias_name": "ドリームプレイヤー", + "alias_name_display": "ドリームプレイヤー", + "hash": "ec9534560df91355b8d8237b6ac478d2", + "id": "3210401", + "profile": { + "bust": "75", + "height": "149", + "hip": "80", + "waist": "56", + "weight": "39" + } + }, + { + "alias_name": "ドリームプレイヤー", + "alias_name_display": "ドリームプレイヤー", + "hash": "39462197c42755367ed51077cd00d7d0", + "id": "3310402", + "profile": { + "bust": "75", + "height": "149", + "hip": "80", + "waist": "56", + "weight": "39" + } + }, + { + "alias_name": "ロワイヤルスタイル", + "alias_name_display": "ロワイヤルスタイル", + "event": [ + { + "event_id": 803, + "event_name": "第3回アイドルLIVEロワイヤル" + } + ], + "hash": "a16bd6a20aae0e2a289296b10faa0816", + "id": "3215001", + "profile": { + "bust": "75", + "height": "149", + "hip": "80", + "waist": "56", + "weight": "39" + } + }, + { + "alias_name": "ロワイヤルスタイル", + "alias_name_display": "ロワイヤルスタイル", + "event": [ + { + "event_id": 803, + "event_name": "第3回アイドルLIVEロワイヤル" + } + ], + "hash": "7eadf1a32f2acd16c352cc821d3edd11", + "id": "3315002", + "profile": { + "bust": "75", + "height": "149", + "hip": "80", + "waist": "56", + "weight": "39" + } + }, + { + "alias_name": "ビーチサイド", + "alias_name_display": "ビーチサイド", + "hash": "1a49f2b52578fca59c62611f515030ea", + "id": "3217701", + "profile": { + "bust": "75", + "height": "149", + "hip": "80", + "waist": "56", + "weight": "39" + } + }, + { + "alias_name": "ビーチサイド", + "alias_name_display": "ビーチサイド", + "hash": "ebb3ac001f3f27dd4ae4303f9a68bb0d", + "id": "3317702", + "profile": { + "bust": "75", + "height": "149", + "hip": "80", + "waist": "56", + "weight": "39" + } + }, + { + "alias_name": "春キャンプ", + "alias_name_display": "春キャンプ", + "event": [ + { + "event_id": 1701, + "event_name": "アイドルプロデュース はじめてのキャンプ" + } + ], + "hash": "d1603fa7ad370e35126a6d5c7aa76111", + "id": "3222601", + "profile": { + "bust": "75", + "height": "149", + "hip": "80", + "waist": "56", + "weight": "39" + } + }, + { + "alias_name": "春キャンプ", + "alias_name_display": "春キャンプ", + "event": [ + { + "event_id": 1701, + "event_name": "アイドルプロデュース はじめてのキャンプ" + } + ], + "hash": "1ef60a5f56267922ef2c087e52328d28", + "id": "3322602", + "profile": { + "bust": "75", + "height": "149", + "hip": "80", + "waist": "56", + "weight": "39" + } + }, + { + "alias_name": "笑顔でキャンプ", + "alias_name_display": "笑顔でキャンプ", + "event": [ + { + "event_id": 1701, + "event_name": "アイドルプロデュース はじめてのキャンプ" + } + ], + "hash": "5e70ce9f10f6cceae13ad3ab5b62cdff", + "id": "3222701", + "profile": { + "bust": "75", + "height": "149", + "hip": "80", + "waist": "56", + "weight": "39" + } + }, + { + "alias_name": "笑顔でキャンプ", + "alias_name_display": "笑顔でキャンプ", + "event": [ + { + "event_id": 1701, + "event_name": "アイドルプロデュース はじめてのキャンプ" + } + ], + "hash": "bc4fe5771be756b951a3bfe654de6c1a", + "id": "3322702", + "profile": { + "bust": "75", + "height": "149", + "hip": "80", + "waist": "56", + "weight": "39" + } + }, + { + "alias_name": "コレクションスタイル", + "alias_name_display": "コレクションスタイル", + "event": [ + { + "event_id": 1403, + "event_name": "第3回ぷちデレラコレクション" + } + ], + "hash": "3941f572ab28142e287098298b0dc886", + "id": "3324602", + "profile": { + "bust": "75", + "height": "149", + "hip": "80", + "waist": "56", + "weight": "39" + } + }, + { + "alias_name": "秋の学園祭", + "alias_name_display": "秋の学園祭", + "hash": "e491607723ee289413421eb50c7865ad", + "id": "3231001", + "profile": { + "bust": "75", + "height": "149", + "hip": "80", + "waist": "56", + "weight": "39" + } + }, + { + "alias_name": "秋の学園祭", + "alias_name_display": "秋の学園祭", + "hash": "0188bc58f63647f0b7862f81905b8698", + "id": "3331002", + "profile": { + "bust": "75", + "height": "149", + "hip": "80", + "waist": "56", + "weight": "39" + } + }, + { + "alias_name": "ピコピコ☆ゲーマー", + "alias_name_display": "ピコピコ☆ゲーマー", + "hash": "7e318d7290da68dd33c9c312042da379", + "id": "3408301", + "profile": { + "bust": "75", + "height": "149", + "hip": "80", + "waist": "56", + "weight": "39" + } + }, + { + "alias_name": "ピコピコ☆ゲーマー", + "alias_name_display": "ピコピコ☆ゲーマー", + "hash": "4a13052e4c41d9c815300df353359412", + "id": "3508302", + "profile": { + "bust": "75", + "height": "149", + "hip": "80", + "waist": "56", + "weight": "39" + } + }, + { + "alias_name": "ゲームトークナイト", + "alias_name_display": "ゲームトークナイト", + "event": [ + { + "event_id": 1106, + "event_name": "プロダクション対抗トークバトルショー ハロウィンSP" + } + ], + "hash": "8e9bd7c98e4c86491db3a28af15d607b", + "id": "3418201", + "profile": { + "bust": "75", + "height": "149", + "hip": "80", + "waist": "56", + "weight": "39" + } + }, + { + "alias_name": "ゲームトークナイト", + "alias_name_display": "ゲームトークナイト", + "event": [ + { + "event_id": 1106, + "event_name": "プロダクション対抗トークバトルショー ハロウィンSP" + } + ], + "hash": "1b31aa81142324e6e5817be4e32a26a8", + "id": "3518202", + "profile": { + "bust": "75", + "height": "149", + "hip": "80", + "waist": "56", + "weight": "39" + } + }, + { + "alias_name": "ミッション☆コンプリート", + "alias_name_display": "ミッション☆コンプリート", + "event": [ + { + "event_id": 1802, + "event_name": "アイドルバラエティ 手作りライブプロジェクト!" + } + ], + "hash": "008dfb4279896adf547835f3f11a408f", + "id": "3427801", + "profile": { + "bust": "75", + "height": "149", + "hip": "80", + "waist": "56", + "weight": "39" + } + }, + { + "alias_name": "ミッション☆コンプリート", + "alias_name_display": "ミッション☆コンプリート", + "event": [ + { + "event_id": 1802, + "event_name": "アイドルバラエティ 手作りライブプロジェクト!" + } + ], + "hash": "dca3fed6718b0a88528a6c1482136d79", + "id": "3527802", + "profile": { + "bust": "75", + "height": "149", + "hip": "80", + "waist": "56", + "weight": "39" + } + }, + { + "alias_name": "冒険者", + "alias_name_display": "冒険者", + "hash": "12294135f86976c08cd019bd74bb9617", + "id": "3431301", + "profile": { + "bust": "75", + "height": "149", + "hip": "80", + "waist": "56", + "weight": "39" + } + }, + { + "alias_name": "冒険者", + "alias_name_display": "冒険者", + "hash": "5caedbb13727f0afdd234d8e73a40a32", + "id": "3531302", + "profile": { + "bust": "75", + "height": "149", + "hip": "80", + "waist": "56", + "weight": "39" + } + } + ], + "idol_id": 189, + "idol_name": "三好紗南", + "idol_name_display": "三好紗南", + "units": [ + { + "id": "93", + "name": "サマーライブセーラー" + }, + { + "id": "208", + "name": "ロワイヤルスタイル" + } + ] + }, + { + "aliases": [ + { + "hash": "b3484b86731fa47b0a59f2d1fb3af249", + "id": "3203501", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "56", + "weight": "49" + } + }, + { + "hash": "b8843d1031f4438aba54223452579b4d", + "id": "3303502", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "56", + "weight": "49" + } + }, + { + "alias_name": "新春コレクション", + "alias_name_display": "新春コレクション", + "hash": "03e13b764bf732aa5f4f075a2d1e95b2", + "id": "3208101", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "56", + "weight": "49" + } + }, + { + "alias_name": "新春コレクション", + "alias_name_display": "新春コレクション", + "hash": "a687207d5948158046e24f5fb94f6821", + "id": "3308102", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "56", + "weight": "49" + } + }, + { + "alias_name": "フレッシュマンダリン", + "alias_name_display": "フレッシュマンダリン", + "hash": "b625f2e8a25e839e2e5cb9664fb71b7a", + "id": "3210501", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "56", + "weight": "49" + } + }, + { + "alias_name": "フレッシュマンダリン", + "alias_name_display": "フレッシュマンダリン", + "hash": "ab2bb97e46e8102de86579aff4b90518", + "id": "3310502", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "56", + "weight": "49" + } + }, + { + "alias_name": "ガンスリンガー", + "alias_name_display": "ガンスリンガー", + "event": [ + { + "event_id": 512, + "event_name": "西部公演 ガンスリンガージャーニー" + } + ], + "hash": "afe03e20c836f8ff906a253a56ee26b4", + "id": "3217301", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "56", + "weight": "49" + } + }, + { + "alias_name": "ガンスリンガー", + "alias_name_display": "ガンスリンガー", + "event": [ + { + "event_id": 512, + "event_name": "西部公演 ガンスリンガージャーニー" + } + ], + "hash": "b8ebb0a9955fa101aa15e6e1a5783a91", + "id": "3317302", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "56", + "weight": "49" + } + }, + { + "alias_name": "お笑いスタイル", + "alias_name_display": "お笑いスタイル", + "hash": "f5f8259dc3787f4f8b0f206197fcf841", + "id": "3219801", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "56", + "weight": "49" + } + }, + { + "alias_name": "お笑いスタイル", + "alias_name_display": "お笑いスタイル", + "hash": "8f06d715ec61652d3319aa6b5b598985", + "id": "3319802", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "56", + "weight": "49" + } + }, + { + "alias_name": "オータムコレクション", + "alias_name_display": "オータムコレクション", + "hash": "cbfeca48ab63abe8384f4ad14fafb16d", + "id": "3225501", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "56", + "weight": "49" + } + }, + { + "alias_name": "オータムコレクション", + "alias_name_display": "オータムコレクション", + "hash": "d1f3863d47e6b365bfcaa26abc17bfd7", + "id": "3325502", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "56", + "weight": "49" + } + }, + { + "alias_name": "ウェディングセレモニー", + "alias_name_display": "ウェディングセレモニー", + "hash": "05fce5bf386ef6017a6682a7d150b3b2", + "id": "3229201", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "56", + "weight": "49" + } + }, + { + "alias_name": "ウェディングセレモニー", + "alias_name_display": "ウェディングセレモニー", + "hash": "d5499ca5008c269d303d65621dc37893", + "id": "3329202", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "56", + "weight": "49" + } + }, + { + "alias_name": "スクールプール", + "alias_name_display": "スクールプール", + "hash": "99ad862dd87829dfeea90bff61767a6d", + "id": "3231501", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "56", + "weight": "49" + } + }, + { + "alias_name": "スクールプール", + "alias_name_display": "スクールプール", + "hash": "6ba750a1ecbc961392b6751f7a1bf65e", + "id": "3331502", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "56", + "weight": "49" + } + }, + { + "alias_name": "ベーカリーI.C", + "alias_name_display": "ベーカリーI.C", + "hash": "42ca5290aba119f9e690b169d75aedd8", + "id": "3334302", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "56", + "weight": "49" + } + }, + { + "alias_name": "スペーススター", + "alias_name_display": "スペーススター", + "event": [ + { + "event_id": 508, + "event_name": "LIVEツアーカーニバルinスペースワールド" + } + ], + "hash": "2dcce81c8d5ba61f3f882ed5dc1bb7c2", + "id": "3409601", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "56", + "weight": "49" + } + }, + { + "alias_name": "スペーススター", + "alias_name_display": "スペーススター", + "event": [ + { + "event_id": 508, + "event_name": "LIVEツアーカーニバルinスペースワールド" + } + ], + "hash": "273db82fa4d3ec9a7b8065f541094314", + "id": "3509602", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "56", + "weight": "49" + } + }, + { + "alias_name": "お喋りチアー", + "alias_name_display": "お喋りチアー", + "event": [ + { + "event_id": 1108, + "event_name": "第8回プロダクション対抗トークバトルショー" + } + ], + "hash": "63b3d81129e7a3f06f0c2057752eeace", + "id": "3420901", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "56", + "weight": "49" + } + }, + { + "alias_name": "お喋りチアー", + "alias_name_display": "お喋りチアー", + "event": [ + { + "event_id": 1108, + "event_name": "第8回プロダクション対抗トークバトルショー" + } + ], + "hash": "608a40ac8502a9e202ff4a4e94172e1e", + "id": "3520902", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "56", + "weight": "49" + } + }, + { + "alias_name": "ラフ&ガーリー", + "alias_name_display": "ラフ&ガーリー", + "event": [ + { + "event_id": 1405, + "event_name": "第5回ぷちデレラコレクション" + } + ], + "hash": "e1da7a5efed1a5603f126ce01d6b7190", + "id": "3429501", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "56", + "weight": "49" + } + }, + { + "alias_name": "ラフ&ガーリー", + "alias_name_display": "ラフ&ガーリー", + "event": [ + { + "event_id": 1405, + "event_name": "第5回ぷちデレラコレクション" + } + ], + "hash": "afd21d0607cc0a99723267c0a5ca4625", + "id": "3529502", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "56", + "weight": "49" + } + }, + { + "alias_name": "ジョイフルベーカー", + "alias_name_display": "ジョイフルベーカー", + "event": [ + { + "event_id": 1216, + "event_name": "先生と一緒に♪目指せおいしいパン作り アイドルチャレンジ" + } + ], + "hash": "1770ac1f502f862edc4e9d03bc2f26ea", + "id": "3440201", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "56", + "weight": "49" + } + }, + { + "alias_name": "ジョイフルベーカー", + "alias_name_display": "ジョイフルベーカー", + "event": [ + { + "event_id": 1216, + "event_name": "先生と一緒に♪目指せおいしいパン作り アイドルチャレンジ" + } + ], + "hash": "0851d1fa2ae859921bc702b404c67de7", + "id": "3540202", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "56", + "weight": "49" + } + }, + { + "alias_name": "にっこりベーカー", + "alias_name_display": "にっこりベーカー", + "hash": "786235d566b59592b81ca34c53c5668b", + "id": "3440301", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "56", + "weight": "49" + } + }, + { + "alias_name": "にっこりベーカー", + "alias_name_display": "にっこりベーカー", + "hash": "7257d04c6b64058492bc0279c5b1da20", + "id": "3540302", + "profile": { + "bust": "83", + "height": "168", + "hip": "85", + "waist": "56", + "weight": "49" + } + } + ], + "idol_id": 190, + "idol_name": "キャシー・グラハム", + "idol_name_display": "キャシー・グラハム", + "units": [ + { + "id": "73", + "name": "ERICATHY" + } + ] + }, + { + "aliases": [ + { + "hash": "462788ef215a343a2f7ea3cdf5a79fd3", + "id": "3203701", + "profile": { + "bust": "82", + "height": "158", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "hash": "0c755957e7a21af1c343c8976620b90e", + "id": "3303702", + "profile": { + "bust": "82", + "height": "158", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ハロウィンパーティー", + "alias_name_display": "ハロウィンパーティー", + "hash": "0802e6c069e5eb587b99f54a91c3b35f", + "id": "3206601", + "profile": { + "bust": "82", + "height": "158", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ハロウィンパーティー", + "alias_name_display": "ハロウィンパーティー", + "hash": "91d84bb565062b321b0656140a64229e", + "id": "3306602", + "profile": { + "bust": "82", + "height": "158", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "メデタイガール", + "alias_name_display": "メデタイガール", + "hash": "f4520ebc0eb2a8f9c7604e6dd5d1ff2c", + "id": "3214701", + "profile": { + "bust": "82", + "height": "158", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "メデタイガール", + "alias_name_display": "メデタイガール", + "hash": "2c534b1284f41395baad36dfe778d53f", + "id": "3314702", + "profile": { + "bust": "82", + "height": "158", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ロワイヤルスタイルNP", + "alias_name_display": "ロワイヤルスタイルNP", + "event": [ + { + "event_id": 808, + "event_name": "第8回アイドルLIVEロワイヤル" + } + ], + "hash": "407561052d14f76e674387a9bf26ae21", + "id": "3220401", + "profile": { + "bust": "82", + "height": "158", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "ロワイヤルスタイルNP", + "alias_name_display": "ロワイヤルスタイルNP", + "event": [ + { + "event_id": 808, + "event_name": "第8回アイドルLIVEロワイヤル" + } + ], + "hash": "14fe0cc1973b33542f4cd53504468157", + "id": "3320402", + "profile": { + "bust": "82", + "height": "158", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "サマーバケーション", + "alias_name_display": "サマーバケーション", + "hash": "fb3a18ab728bd89b803f635d1dcbe2ee", + "id": "3224301", + "profile": { + "bust": "82", + "height": "158", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "サマーバケーション", + "alias_name_display": "サマーバケーション", + "hash": "2248a6d3a1dc713c0369a1d7341e6086", + "id": "3324302", + "profile": { + "bust": "82", + "height": "158", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "コレクションスタイル", + "alias_name_display": "コレクションスタイル", + "event": [ + { + "event_id": 1404, + "event_name": "第4回ぷちデレラコレクション" + } + ], + "hash": "7c668cd224c4b1481a50265b2fad07ba", + "id": "3326302", + "profile": { + "bust": "82", + "height": "158", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "湯けむり紀行", + "alias_name_display": "湯けむり紀行", + "hash": "0b90d9ced62058b2ebd6346f901ee365", + "id": "3231401", + "profile": { + "bust": "82", + "height": "158", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "湯けむり紀行", + "alias_name_display": "湯けむり紀行", + "hash": "aebaafab9c096221c76d6f101a84bcab", + "id": "3331402", + "profile": { + "bust": "82", + "height": "158", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "浪速の派手娘", + "alias_name_display": "浪速の派手娘", + "event": [ + { + "event_id": 701, + "event_name": "ドリームLIVEフェスティバル" + } + ], + "hash": "201ebec439117f0f54102f5846e86c12", + "id": "3407201", + "profile": { + "bust": "82", + "height": "158", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "浪速の派手娘", + "alias_name_display": "浪速の派手娘", + "event": [ + { + "event_id": 701, + "event_name": "ドリームLIVEフェスティバル" + } + ], + "hash": "06ab397c7df69732c1952897a4b3a7f8", + "id": "3507202", + "profile": { + "bust": "82", + "height": "158", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "お笑い☆伝道師", + "alias_name_display": "お笑い☆伝道師", + "hash": "0811dd9530eb29e539e0eaec1b603a30", + "id": "3414601", + "profile": { + "bust": "82", + "height": "158", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "お笑い☆伝道師", + "alias_name_display": "お笑い☆伝道師", + "hash": "52c8883ccd2ca956eaa81d9b55b4c04b", + "id": "3514602", + "profile": { + "bust": "82", + "height": "158", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "爆笑チアー", + "alias_name_display": "爆笑チアー", + "event": [ + { + "event_id": 1505, + "event_name": "チーム対抗トークバトルショー ウィンターSP" + } + ], + "hash": "2d77fd6c9641905d6751667510c2b70e", + "id": "3429401", + "profile": { + "bust": "82", + "height": "158", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "爆笑チアー", + "alias_name_display": "爆笑チアー", + "event": [ + { + "event_id": 1505, + "event_name": "チーム対抗トークバトルショー ウィンターSP" + } + ], + "hash": "7ca0bf3dd109857d28f794f7772d3729", + "id": "3529402", + "profile": { + "bust": "82", + "height": "158", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "花盛り☆乙女", + "alias_name_display": "花盛り☆乙女", + "event": [ + { + "event_id": 817, + "event_name": "アイドルLIVEロワイヤル お花見SP" + } + ], + "hash": "00f30f05193ace2cf45ee2e131248543", + "id": "3431701", + "profile": { + "bust": "82", + "height": "158", + "hip": "80", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "花盛り☆乙女", + "alias_name_display": "花盛り☆乙女", + "event": [ + { + "event_id": 817, + "event_name": "アイドルLIVEロワイヤル お花見SP" + } + ], + "hash": "557803a0324c4d494b78d83b42174e61", + "id": "3531702", + "profile": { + "bust": "82", + "height": "158", + "hip": "80", + "waist": "56", + "weight": "45" + } + } + ], + "idol_id": 191, + "idol_name": "難波笑美", + "idol_name_display": "難波笑美", + "units": [ + { + "id": "6", + "name": "笑美と鈴帆の爆笑エブリデイ" + }, + { + "id": "128", + "name": "ラビュー☆アイス☆マウンテン" + }, + { + "id": "152", + "name": "B.B.ロワイヤル" + }, + { + "id": "180", + "name": "ハロウィンパーティー" + }, + { + "id": "190", + "name": "サマプリ" + }, + { + "id": "209", + "name": "ロワイヤルスタイルNP" + } + ] + }, + { + "aliases": [ + { + "hash": "ca56d3f1c3dfddc86c3e2d5c12c12747", + "id": "3204201", + "profile": { + "bust": "78", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "42" + } + }, + { + "hash": "792bcdf081da623dd1fdbac58b9e4399", + "id": "3304202", + "profile": { + "bust": "78", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "くのいち忍ドル", + "alias_name_display": "くのいち忍ドル", + "event": [ + { + "event_id": "006", + "event_name": "第6回プロダクションマッチフェスティバル" + } + ], + "hash": "9f221e53168c21925ff336e2c2331eff", + "id": "3207201", + "profile": { + "bust": "78", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "くのいち忍ドル", + "alias_name_display": "くのいち忍ドル", + "event": [ + { + "event_id": "006", + "event_name": "第6回プロダクションマッチフェスティバル" + } + ], + "hash": "159060b683d4e8bea49d2c90753f61c7", + "id": "3307202", + "profile": { + "bust": "78", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "制服コレクション", + "alias_name_display": "制服コレクション", + "hash": "66004323a3b953d2e44968f078de54ab", + "id": "3209601", + "profile": { + "bust": "78", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "制服コレクション", + "alias_name_display": "制服コレクション", + "hash": "7b0a05b33bd4ab2cff635918cdf66049", + "id": "3309602", + "profile": { + "bust": "78", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "リゾート忍ドル", + "alias_name_display": "リゾート忍ドル", + "hash": "16912bf56b6bdeb5720986c2865f0c9d", + "id": "3221201", + "profile": { + "bust": "78", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "リゾート忍ドル", + "alias_name_display": "リゾート忍ドル", + "hash": "0f1161d9c1966cb505756ca600be8d8e", + "id": "3321202", + "profile": { + "bust": "78", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "春風スポーツ", + "alias_name_display": "春風スポーツ", + "hash": "aeae61e9c8eadfbaa9a18d4d1957f02c", + "id": "3228401", + "profile": { + "bust": "78", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "春風スポーツ", + "alias_name_display": "春風スポーツ", + "hash": "8bb4775d1c95510634789152546fb595", + "id": "3328402", + "profile": { + "bust": "78", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "ロコガール", + "alias_name_display": "ロコガール", + "event": [ + { + "event_id": 1707, + "event_name": "アイドルプロデュース アロハ!常夏の楽園" + } + ], + "hash": "aba42cf3647de7baed67ea72dfafe288", + "id": "3230501", + "profile": { + "bust": "78", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "ロコガール", + "alias_name_display": "ロコガール", + "event": [ + { + "event_id": 1707, + "event_name": "アイドルプロデュース アロハ!常夏の楽園" + } + ], + "hash": "cdfbd3cc796f86bd72bfbc59ddb0d37a", + "id": "3330502", + "profile": { + "bust": "78", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "オリ・ロコガール", + "alias_name_display": "オリ・ロコガール", + "event": [ + { + "event_id": 1707, + "event_name": "アイドルプロデュース アロハ!常夏の楽園" + } + ], + "hash": "346bf79369d960b64b2687a91743526d", + "id": "3230601", + "profile": { + "bust": "78", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "オリ・ロコガール", + "alias_name_display": "オリ・ロコガール", + "event": [ + { + "event_id": 1707, + "event_name": "アイドルプロデュース アロハ!常夏の楽園" + } + ], + "hash": "b2f583b8ab6e0e38ff6b5eac684b30fc", + "id": "3330602", + "profile": { + "bust": "78", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "華麗なくのいち", + "alias_name_display": "華麗なくのいち", + "hash": "006b31b74f05473ef9f96d9da18aad5b", + "id": "3407701", + "profile": { + "bust": "78", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "華麗なくのいち", + "alias_name_display": "華麗なくのいち", + "hash": "71558cd2e1d7a1664f22956ce2b3a358", + "id": "3507702", + "profile": { + "bust": "78", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "筆術くのいち", + "alias_name_display": "筆術くのいち", + "event": [ + { + "event_id": "013", + "event_name": "第13回プロダクションマッチフェスティバル" + } + ], + "hash": "b0fed18f01b130a35af0a63a73c34e5f", + "id": "3409801", + "profile": { + "bust": "78", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "筆術くのいち", + "alias_name_display": "筆術くのいち", + "event": [ + { + "event_id": "013", + "event_name": "第13回プロダクションマッチフェスティバル" + } + ], + "hash": "8479a11885622091deeb77207c85c369", + "id": "3509802", + "profile": { + "bust": "78", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "助太刀☆チアー", + "alias_name_display": "助太刀☆チアー", + "event": [ + { + "event_id": 1101, + "event_name": "プロダクション対抗トークバトルショー" + } + ], + "hash": "bb55ef853d7164b8b6d29a4b28be3c3e", + "id": "3412301", + "profile": { + "bust": "78", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "助太刀☆チアー", + "alias_name_display": "助太刀☆チアー", + "event": [ + { + "event_id": 1101, + "event_name": "プロダクション対抗トークバトルショー" + } + ], + "hash": "889a7a96129faba04a608bf55171c80c", + "id": "3512302", + "profile": { + "bust": "78", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "海風の使者", + "alias_name_display": "海風の使者", + "hash": "56297f6f253dada7215cdc52fa5ecbe5", + "id": "3415801", + "profile": { + "bust": "78", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "海風の使者", + "alias_name_display": "海風の使者", + "hash": "eae651188d4cdbac6e4773e9587cdd77", + "id": "3515802", + "profile": { + "bust": "78", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "秘伝☆くのいち", + "alias_name_display": "秘伝☆くのいち", + "event": [ + { + "event_id": 713, + "event_name": "第13回ドリームLIVEフェスティバル" + } + ], + "hash": "0c892e7b0943a2914287dfa8bb44bc9b", + "id": "3423901", + "profile": { + "bust": "78", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "秘伝☆くのいち", + "alias_name_display": "秘伝☆くのいち", + "event": [ + { + "event_id": 713, + "event_name": "第13回ドリームLIVEフェスティバル" + } + ], + "hash": "bafd37229535e91c6103b32b90bbd970", + "id": "3523902", + "profile": { + "bust": "78", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "純真☆変化", + "alias_name_display": "純真☆変化", + "hash": "6ce3af540ca2b7a1c77c6fc26794a4cc", + "id": "3426801", + "profile": { + "bust": "78", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "純真☆変化", + "alias_name_display": "純真☆変化", + "hash": "ac99882834472fa2caf60e75690f8aca", + "id": "3526802", + "profile": { + "bust": "78", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "月影の刺客", + "alias_name_display": "月影の刺客", + "event": [ + { + "event_id": 1214, + "event_name": "目指せくのいち アイドルチャレンジ" + } + ], + "hash": "1d71db748957b5c2a6d9e01a4757a7f9", + "id": "3437401", + "profile": { + "bust": "78", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "42" + } + }, + { + "alias_name": "月影の刺客", + "alias_name_display": "月影の刺客", + "event": [ + { + "event_id": 1214, + "event_name": "目指せくのいち アイドルチャレンジ" + } + ], + "hash": "fc4b0d7524dab986a0d4a97f5eab93ff", + "id": "3537402", + "profile": { + "bust": "78", + "height": "154", + "hip": "80", + "waist": "55", + "weight": "42" + } + } + ], + "idol_id": 192, + "idol_name": "浜口あやめ", + "idol_name_display": "浜口あやめ", + "units": [ + { + "id": "0", + "name": "くノ一あやめ忍法帖" + }, + { + "id": "19", + "name": "さつきの頃" + }, + { + "id": "30", + "name": "センゴク☆ランブ" + }, + { + "id": "38", + "name": "忍武☆繚乱" + }, + { + "id": "156", + "name": "センゴク☆華☆ランブ" + }, + { + "id": "179", + "name": "春霞" + } + ] + }, + { + "aliases": [ + { + "hash": "52a9739a10a91ce69139bb28d742e99e", + "id": "3205101", + "profile": { + "bust": "74", + "height": "146", + "hip": "76", + "waist": "53", + "weight": "37" + } + }, + { + "hash": "e104bb799ff765c82e1be6be6fba6291", + "id": "3305102", + "profile": { + "bust": "74", + "height": "146", + "hip": "76", + "waist": "53", + "weight": "37" + } + }, + { + "alias_name": "緋桜お嬢", + "alias_name_display": "緋桜お嬢", + "event": [ + { + "event_id": "005", + "event_name": "第5回プロダクションマッチフェスティバル" + } + ], + "hash": "9229fa2ac5d27d5ff9cb61c3edd49baa", + "id": "3206701", + "profile": { + "bust": "74", + "height": "146", + "hip": "76", + "waist": "53", + "weight": "37" + } + }, + { + "alias_name": "緋桜お嬢", + "alias_name_display": "緋桜お嬢", + "event": [ + { + "event_id": "005", + "event_name": "第5回プロダクションマッチフェスティバル" + } + ], + "hash": "324a9f368dfba1870822807887b3ba7f", + "id": "3306702", + "profile": { + "bust": "74", + "height": "146", + "hip": "76", + "waist": "53", + "weight": "37" + } + }, + { + "alias_name": "クリスマスパーティー", + "alias_name_display": "クリスマスパーティー", + "hash": "063ffec0aa97792c72174763408ba1fb", + "id": "3214401", + "profile": { + "bust": "74", + "height": "146", + "hip": "76", + "waist": "53", + "weight": "37" + } + }, + { + "alias_name": "クリスマスパーティー", + "alias_name_display": "クリスマスパーティー", + "hash": "1b8738bbc354106b60524b170c267ff3", + "id": "3314402", + "profile": { + "bust": "74", + "height": "146", + "hip": "76", + "waist": "53", + "weight": "37" + } + }, + { + "alias_name": "セレクトメイド", + "alias_name_display": "セレクトメイド", + "hash": "c6dac2259d77a69bee5cdc6948f96642", + "id": "3218701", + "profile": { + "bust": "74", + "height": "146", + "hip": "76", + "waist": "53", + "weight": "37" + } + }, + { + "alias_name": "セレクトメイド", + "alias_name_display": "セレクトメイド", + "hash": "ca6c5513c5e2fa0020de3baca8b6a0ef", + "id": "3318702", + "profile": { + "bust": "74", + "height": "146", + "hip": "76", + "waist": "53", + "weight": "37" + } + }, + { + "alias_name": "クライムI.C", + "alias_name_display": "クライムI.C", + "event": [ + { + "event_id": 1211, + "event_name": "目指せ山頂! アイドルチャレンジ" + } + ], + "hash": "9322735592db663dcc49f60e49f3183f", + "id": "3329802", + "profile": { + "bust": "74", + "height": "146", + "hip": "76", + "waist": "53", + "weight": "37" + } + }, + { + "alias_name": "新春花道", + "alias_name_display": "新春花道", + "hash": "7c46a92d5aed4d00fadb147482537d7b", + "id": "3404401", + "profile": { + "bust": "74", + "height": "146", + "hip": "76", + "waist": "53", + "weight": "37" + } + }, + { + "alias_name": "新春花道", + "alias_name_display": "新春花道", + "hash": "a357bf9e03b66e27cbfe061765e9d1cc", + "id": "3504402", + "profile": { + "bust": "74", + "height": "146", + "hip": "76", + "waist": "53", + "weight": "37" + } + }, + { + "alias_name": "緋色のプリンセス", + "alias_name_display": "緋色のプリンセス", + "event": [ + { + "event_id": 506, + "event_name": "アイドルLIVEツアーinハワイ" + } + ], + "hash": "0f82f32aefe18696235be44d706de892", + "id": "3407901", + "profile": { + "bust": "74", + "height": "146", + "hip": "76", + "waist": "53", + "weight": "37" + } + }, + { + "alias_name": "緋色のプリンセス", + "alias_name_display": "緋色のプリンセス", + "event": [ + { + "event_id": 506, + "event_name": "アイドルLIVEツアーinハワイ" + } + ], + "hash": "b1fedfbdbeb47a1cd00a555204dc42bc", + "id": "3507902", + "profile": { + "bust": "74", + "height": "146", + "hip": "76", + "waist": "53", + "weight": "37" + } + }, + { + "alias_name": "緋色の一皿", + "alias_name_display": "緋色の一皿", + "event": [ + { + "event_id": 706, + "event_name": "第6回ドリームLIVEフェスティバル" + } + ], + "hash": "9ea724a88193776de79ef5f2dc68deed", + "id": "3412901", + "profile": { + "bust": "74", + "height": "146", + "hip": "76", + "waist": "53", + "weight": "37" + } + }, + { + "alias_name": "緋色の一皿", + "alias_name_display": "緋色の一皿", + "event": [ + { + "event_id": 706, + "event_name": "第6回ドリームLIVEフェスティバル" + } + ], + "hash": "204d94633810b7fc3d886f04802acadd", + "id": "3512902", + "profile": { + "bust": "74", + "height": "146", + "hip": "76", + "waist": "53", + "weight": "37" + } + }, + { + "alias_name": "紅の一指し", + "alias_name_display": "紅の一指し", + "hash": "bede574c4a9a90ab62205799fd9139ef", + "id": "3419201", + "profile": { + "bust": "74", + "height": "146", + "hip": "76", + "waist": "53", + "weight": "37" + } + }, + { + "alias_name": "紅の一指し", + "alias_name_display": "紅の一指し", + "hash": "4bea26175c846e829776dea3b708ea5e", + "id": "3519202", + "profile": { + "bust": "74", + "height": "146", + "hip": "76", + "waist": "53", + "weight": "37" + } + }, + { + "alias_name": "緋桜宵一刻", + "alias_name_display": "緋桜宵一刻", + "event": [ + { + "event_id": 712, + "event_name": "花見DEドリームLIVEフェスティバル" + } + ], + "hash": "1bbf65958a8b15249f7b3ded9686ba8a", + "id": "3422501", + "profile": { + "bust": "74", + "height": "146", + "hip": "76", + "waist": "53", + "weight": "37" + } + }, + { + "alias_name": "緋桜宵一刻", + "alias_name_display": "緋桜宵一刻", + "event": [ + { + "event_id": 712, + "event_name": "花見DEドリームLIVEフェスティバル" + } + ], + "hash": "08507b1415aac3425a832f673c3de275", + "id": "3522502", + "profile": { + "bust": "74", + "height": "146", + "hip": "76", + "waist": "53", + "weight": "37" + } + }, + { + "alias_name": "紅染まる情景", + "alias_name_display": "紅染まる情景", + "event": [ + { + "event_id": 717, + "event_name": "第17回ドリームLIVEフェスティバル" + } + ], + "hash": "f61ce6f523670d1df4811683c3d88932", + "id": "3427401", + "profile": { + "bust": "74", + "height": "146", + "hip": "76", + "waist": "53", + "weight": "37" + } + }, + { + "alias_name": "紅染まる情景", + "alias_name_display": "紅染まる情景", + "event": [ + { + "event_id": 717, + "event_name": "第17回ドリームLIVEフェスティバル" + } + ], + "hash": "9ed607c190b8f31085a90adb4b333564", + "id": "3527402", + "profile": { + "bust": "74", + "height": "146", + "hip": "76", + "waist": "53", + "weight": "37" + } + }, + { + "alias_name": "情熱クライマー", + "alias_name_display": "情熱クライマー", + "event": [ + { + "event_id": 1211, + "event_name": "目指せ山頂! アイドルチャレンジ" + } + ], + "hash": "0274b29c98fd5fb1b83903f2b6a184d6", + "id": "3433801", + "profile": { + "bust": "74", + "height": "146", + "hip": "76", + "waist": "53", + "weight": "37" + } + }, + { + "alias_name": "情熱クライマー", + "alias_name_display": "情熱クライマー", + "event": [ + { + "event_id": 1211, + "event_name": "目指せ山頂! アイドルチャレンジ" + } + ], + "hash": "9f856d31ab13638093c2bae804bda29d", + "id": "3533802", + "profile": { + "bust": "74", + "height": "146", + "hip": "76", + "waist": "53", + "weight": "37" + } + }, + { + "alias_name": "笑顔でクライマー", + "alias_name_display": "笑顔でクライマー", + "event": [ + { + "event_id": 1211, + "event_name": "目指せ山頂! アイドルチャレンジ" + } + ], + "hash": "56d28fdbe680efdacbfee5769b324d16", + "id": "3433901", + "profile": { + "bust": "74", + "height": "146", + "hip": "76", + "waist": "53", + "weight": "37" + } + }, + { + "alias_name": "笑顔でクライマー", + "alias_name_display": "笑顔でクライマー", + "event": [ + { + "event_id": 1211, + "event_name": "目指せ山頂! アイドルチャレンジ" + } + ], + "hash": "83b53b4dceb9b7022e17587ced38dc4e", + "id": "3533902", + "profile": { + "bust": "74", + "height": "146", + "hip": "76", + "waist": "53", + "weight": "37" + } + }, + { + "alias_name": "義理と愛情", + "alias_name_display": "義理と愛情", + "hash": "d663200d41b0a9411ce984ffa964cfc5", + "id": "3437901", + "profile": { + "bust": "74", + "height": "146", + "hip": "76", + "waist": "53", + "weight": "37" + } + }, + { + "alias_name": "義理と愛情", + "alias_name_display": "義理と愛情", + "hash": "1c6ff2bbe0458219764965de70302d56", + "id": "3537902", + "profile": { + "bust": "74", + "height": "146", + "hip": "76", + "waist": "53", + "weight": "37" + } + } + ], + "idol_id": 193, + "idol_name": "村上巴", + "idol_name_display": "村上巴", + "units": [ + { + "id": "52", + "name": "フォーリンシーサイド" + }, + { + "id": "66", + "name": "レッドベリィズ" + }, + { + "id": "152", + "name": "B.B.ロワイヤル" + }, + { + "id": "177", + "name": "桜舞隊" + } + ] + }, + { + "aliases": [ + { + "alias_name": "ニューウェーブ", + "alias_name_display": "ニューウェーブ", + "event": [ + { + "event_id": 401, + "event_name": "新人アイドルプロデュース" + } + ], + "hash": "84775bd2804d19b99d77eddeaa86a02c", + "id": "3205901", + "profile": { + "bust": "85", + "height": "156", + "hip": "83", + "waist": "54", + "weight": "42" + } + }, + { + "alias_name": "ニューウェーブ", + "alias_name_display": "ニューウェーブ", + "event": [ + { + "event_id": 401, + "event_name": "新人アイドルプロデュース" + } + ], + "hash": "2e4405c20b2ef8458796c8efe0e0a592", + "id": "3305902", + "profile": { + "bust": "85", + "height": "156", + "hip": "83", + "waist": "54", + "weight": "42" + } + }, + { + "alias_name": "アメリカンスタイル", + "alias_name_display": "アメリカンスタイル", + "event": [ + { + "event_id": 501, + "event_name": "アイドルLIVEツアーinUSA" + } + ], + "hash": "b22058d3eb900c919dc0c48711d34618", + "id": "3207301", + "profile": { + "bust": "85", + "height": "156", + "hip": "83", + "waist": "54", + "weight": "42" + } + }, + { + "alias_name": "アメリカンスタイル", + "alias_name_display": "アメリカンスタイル", + "event": [ + { + "event_id": 501, + "event_name": "アイドルLIVEツアーinUSA" + } + ], + "hash": "07288a321d758444cb8b4d80bcb77948", + "id": "3307302", + "profile": { + "bust": "85", + "height": "156", + "hip": "83", + "waist": "54", + "weight": "42" + } + }, + { + "alias_name": "ジューンブライド", + "alias_name_display": "ジューンブライド", + "hash": "a37cd388993bc752c3145e815649c566", + "id": "3210801", + "profile": { + "bust": "85", + "height": "156", + "hip": "83", + "waist": "54", + "weight": "42" + } + }, + { + "alias_name": "ジューンブライド", + "alias_name_display": "ジューンブライド", + "hash": "2c344452271d9b3ace6f5f815025a7a7", + "id": "3310802", + "profile": { + "bust": "85", + "height": "156", + "hip": "83", + "waist": "54", + "weight": "42" + } + }, + { + "alias_name": "サルファーブライト", + "alias_name_display": "サルファーブライト", + "hash": "90653f94871586fd61fb3c1f3a6363ef", + "id": "3215801", + "profile": { + "bust": "85", + "height": "156", + "hip": "83", + "waist": "54", + "weight": "42" + } + }, + { + "alias_name": "サルファーブライト", + "alias_name_display": "サルファーブライト", + "hash": "80452b67b1eed6240a01c5b71b98f539", + "id": "3315802", + "profile": { + "bust": "85", + "height": "156", + "hip": "83", + "waist": "54", + "weight": "42" + } + }, + { + "alias_name": "振袖まつり", + "alias_name_display": "振袖まつり", + "hash": "2d1449e0672588d77f37bd725f5cd491", + "id": "3221001", + "profile": { + "bust": "85", + "height": "156", + "hip": "83", + "waist": "54", + "weight": "42" + } + }, + { + "alias_name": "振袖まつり", + "alias_name_display": "振袖まつり", + "hash": "94d5a2817b51f852833622f3c84f06b0", + "id": "3321002", + "profile": { + "bust": "85", + "height": "156", + "hip": "83", + "waist": "54", + "weight": "42" + } + }, + { + "alias_name": "LIVEバラエティ", + "alias_name_display": "LIVEバラエティ", + "event": [ + { + "event_id": 1802, + "event_name": "アイドルバラエティ 手作りライブプロジェクト!" + } + ], + "hash": "474d81de241426873715c3d2e2a7d006", + "id": "3326402", + "profile": { + "bust": "85", + "height": "156", + "hip": "83", + "waist": "54", + "weight": "42" + } + }, + { + "alias_name": "ファンサーキット", + "alias_name_display": "ファンサーキット", + "hash": "ccf090e74a63bbd02c4adbcc61062c0c", + "id": "3228701", + "profile": { + "bust": "85", + "height": "156", + "hip": "83", + "waist": "54", + "weight": "42" + } + }, + { + "alias_name": "ファンサーキット", + "alias_name_display": "ファンサーキット", + "hash": "6bd4684e21d43d1bd95105c7501ea253", + "id": "3328702", + "profile": { + "bust": "85", + "height": "156", + "hip": "83", + "waist": "54", + "weight": "42" + } + }, + { + "alias_name": "サルファージョリー", + "alias_name_display": "サルファージョリー", + "event": [ + { + "event_id": 728, + "event_name": "ドリームLIVEフェスティバル スプリングSP" + } + ], + "hash": "8d0283221223adb708f446581e51ca4d", + "id": "3233601", + "profile": { + "bust": "85", + "height": "156", + "hip": "83", + "waist": "54", + "weight": "42" + } + }, + { + "alias_name": "サルファージョリー", + "alias_name_display": "サルファージョリー", + "event": [ + { + "event_id": 728, + "event_name": "ドリームLIVEフェスティバル スプリングSP" + } + ], + "hash": "ba8adbf8b689ab078caddbc7cba45fd6", + "id": "3333602", + "profile": { + "bust": "85", + "height": "156", + "hip": "83", + "waist": "54", + "weight": "42" + } + }, + { + "alias_name": "サルファーウェーブ", + "alias_name_display": "サルファーウェーブ", + "event": [ + { + "event_id": 801, + "event_name": "アイドルLIVEロワイヤル" + } + ], + "hash": "cc587b5c006d330d28dd586f5aa01ab5", + "id": "3409101", + "profile": { + "bust": "85", + "height": "156", + "hip": "83", + "waist": "54", + "weight": "42" + } + }, + { + "alias_name": "サルファーウェーブ", + "alias_name_display": "サルファーウェーブ", + "event": [ + { + "event_id": 801, + "event_name": "アイドルLIVEロワイヤル" + } + ], + "hash": "40b0bf0485405d6fe0253371c92c0932", + "id": "3509102", + "profile": { + "bust": "85", + "height": "156", + "hip": "83", + "waist": "54", + "weight": "42" + } + }, + { + "alias_name": "黄金の好運", + "alias_name_display": "黄金の好運", + "hash": "67e21e4b8d91d5a75e1810c40a58f2d2", + "id": "3415301", + "profile": { + "bust": "85", + "height": "156", + "hip": "83", + "waist": "54", + "weight": "42" + } + }, + { + "alias_name": "黄金の好運", + "alias_name_display": "黄金の好運", + "hash": "dea4197fb41bc0d916debf2f4263c8a5", + "id": "3515302", + "profile": { + "bust": "85", + "height": "156", + "hip": "83", + "waist": "54", + "weight": "42" + } + }, + { + "alias_name": "シャイニーチアー", + "alias_name_display": "シャイニーチアー", + "event": [ + { + "event_id": 1502, + "event_name": "チーム対抗雨の日トークバトルショー" + } + ], + "hash": "d0511dd81329bcff9ae0bd87dd0f7daf", + "id": "3424501", + "profile": { + "bust": "85", + "height": "156", + "hip": "83", + "waist": "54", + "weight": "42" + } + }, + { + "alias_name": "シャイニーチアー", + "alias_name_display": "シャイニーチアー", + "event": [ + { + "event_id": 1502, + "event_name": "チーム対抗雨の日トークバトルショー" + } + ], + "hash": "17a8da8f1b09741e0cad2f3f5ccd323e", + "id": "3524502", + "profile": { + "bust": "85", + "height": "156", + "hip": "83", + "waist": "54", + "weight": "42" + } + }, + { + "alias_name": "魔科学ドクトル", + "alias_name_display": "魔科学ドクトル", + "event": [ + { + "event_id": 1904, + "event_name": "魔界公演 妖艶魔女と消えたハロウィン" + } + ], + "hash": "9b8c49c88c689859176c103c9624c131", + "id": "3435301", + "profile": { + "bust": "85", + "height": "156", + "hip": "83", + "waist": "54", + "weight": "42" + } + }, + { + "alias_name": "魔科学ドクトル", + "alias_name_display": "魔科学ドクトル", + "event": [ + { + "event_id": 1904, + "event_name": "魔界公演 妖艶魔女と消えたハロウィン" + } + ], + "hash": "bd055ba043dc7166491f48b3587b1984", + "id": "3535302", + "profile": { + "bust": "85", + "height": "156", + "hip": "83", + "waist": "54", + "weight": "42" + } + } + ], + "idol_id": 194, + "idol_name": "土屋亜子", + "idol_name_display": "土屋亜子", + "units": [ + { + "id": "99", + "name": "ニューウェーブ" + }, + { + "id": "151", + "name": "ブエナ・スエルテ" + } + ] + }, + { + "aliases": [ + { + "hash": "43868973b8854862d7c02d14e3c03740", + "id": "3206301", + "profile": { + "bust": "73", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "hash": "cf3952309d0a044864fe64891a138a49", + "id": "3306302", + "profile": { + "bust": "73", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "ひな祭り", + "alias_name_display": "ひな祭り", + "event": [ + { + "event_id": 209, + "event_name": "アイドルサバイバルひな祭り2013" + } + ], + "hash": "029c39ffd4a7437d563d418abb957075", + "id": "3209001", + "profile": { + "bust": "73", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "ひな祭り", + "alias_name_display": "ひな祭り", + "event": [ + { + "event_id": 209, + "event_name": "アイドルサバイバルひな祭り2013" + } + ], + "hash": "d453b8b6edc12b7d723e1a1a2969d007", + "id": "3309002", + "profile": { + "bust": "73", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "はいから料理娘", + "alias_name_display": "はいから料理娘", + "hash": "a428515798abc1514df83ae3066cb0c6", + "id": "3211001", + "profile": { + "bust": "73", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "はいから料理娘", + "alias_name_display": "はいから料理娘", + "hash": "f8f9d86199c34e4684ba54d055d9bcfd", + "id": "3311002", + "profile": { + "bust": "73", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "グリッターステージ", + "alias_name_display": "グリッターステージ", + "hash": "6f89d22c276f688ac37de02735b6e0a9", + "id": "3216401", + "profile": { + "bust": "73", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "グリッターステージ", + "alias_name_display": "グリッターステージ", + "hash": "d52d6627d5a0add014631032375ae337", + "id": "3316402", + "profile": { + "bust": "73", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "新春I.C", + "alias_name_display": "新春I.C", + "event": [ + { + "event_id": 1204, + "event_name": "新年かくし芸SP アイドルチャレンジ" + } + ], + "hash": "8079dc0e0dea63c3571ae36597c62b20", + "id": "3320902", + "profile": { + "bust": "73", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "パワフルメイト", + "alias_name_display": "パワフルメイト", + "event": [ + { + "event_id": 520, + "event_name": "青春公演 シング・ア・ソング" + } + ], + "hash": "a788612caf23b550865996cab821698f", + "id": "3323802", + "profile": { + "bust": "73", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "まごころ若女将", + "alias_name_display": "まごころ若女将", + "event": [ + { + "event_id": 703, + "event_name": "第3回ドリームLIVEフェスティバル" + } + ], + "hash": "740d796bdc3fe5bc331f25df386164e4", + "id": "3409201", + "profile": { + "bust": "73", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "まごころ若女将", + "alias_name_display": "まごころ若女将", + "event": [ + { + "event_id": 703, + "event_name": "第3回ドリームLIVEフェスティバル" + } + ], + "hash": "62fbdf5d61178972214ab660b8b71541", + "id": "3509202", + "profile": { + "bust": "73", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "手鞠の芸達者", + "alias_name_display": "手鞠の芸達者", + "event": [ + { + "event_id": 1204, + "event_name": "新年かくし芸SP アイドルチャレンジ" + } + ], + "hash": "f359083d4dd5ab80912ac670b4fcfa2a", + "id": "3420201", + "profile": { + "bust": "73", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "手鞠の芸達者", + "alias_name_display": "手鞠の芸達者", + "event": [ + { + "event_id": 1204, + "event_name": "新年かくし芸SP アイドルチャレンジ" + } + ], + "hash": "914aa8f542329e1039dd149af2501faa", + "id": "3520202", + "profile": { + "bust": "73", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "手鞠の芸達者・S", + "alias_name_display": "手鞠の芸達者・S", + "event": [ + { + "event_id": 1204, + "event_name": "新年かくし芸SP アイドルチャレンジ" + } + ], + "hash": "67e86f423d1bd82990e21e6e99d88425", + "id": "3420301", + "profile": { + "bust": "73", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "手鞠の芸達者・S", + "alias_name_display": "手鞠の芸達者・S", + "event": [ + { + "event_id": 1204, + "event_name": "新年かくし芸SP アイドルチャレンジ" + } + ], + "hash": "702c4529eb6c6a90f7800123193d10eb", + "id": "3520302", + "profile": { + "bust": "73", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "チャーミー・ロワイヤル", + "alias_name_display": "チャーミー・ロワイヤル", + "event": [ + { + "event_id": 815, + "event_name": "アイドルLIVEロワイヤル クリスマスSP" + } + ], + "hash": "b91dddc951d13df4f5901c66b653a248", + "id": "3428401", + "profile": { + "bust": "73", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "チャーミー・ロワイヤル", + "alias_name_display": "チャーミー・ロワイヤル", + "event": [ + { + "event_id": 815, + "event_name": "アイドルLIVEロワイヤル クリスマスSP" + } + ], + "hash": "f7457ada3cc849fac7b99099be1206b6", + "id": "3528402", + "profile": { + "bust": "73", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "サマージャンピン", + "alias_name_display": "サマージャンピン", + "event": [ + { + "event_id": 723, + "event_name": "水着DEドリームLIVEフェスティバル" + } + ], + "hash": "4a8c3fded5624bb3fd188663949c599f", + "id": "3434101", + "profile": { + "bust": "73", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "サマージャンピン", + "alias_name_display": "サマージャンピン", + "event": [ + { + "event_id": 723, + "event_name": "水着DEドリームLIVEフェスティバル" + } + ], + "hash": "a288f6905fe80b48ac93124a6ed086e2", + "id": "3534102", + "profile": { + "bust": "73", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "チャキチャキ☆晴れ娘", + "alias_name_display": "チャキチャキ☆晴れ娘", + "hash": "eea58dceca065bf2321c38cb03194094", + "id": "3438901", + "profile": { + "bust": "73", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + }, + { + "alias_name": "チャキチャキ☆晴れ娘", + "alias_name_display": "チャキチャキ☆晴れ娘", + "hash": "b55c0b1bb4d08a833d7ae0fbbd248731", + "id": "3538902", + "profile": { + "bust": "73", + "height": "145", + "hip": "75", + "waist": "53", + "weight": "39" + } + } + ], + "idol_id": 195, + "idol_name": "首藤葵", + "idol_name_display": "首藤葵", + "units": [ + { + "id": "102", + "name": "パワフルヒーラーズ" + }, + { + "id": "156", + "name": "センゴク☆華☆ランブ" + } + ] + }, + { + "aliases": [ + { + "hash": "697e19df704f2ef4b9aca8fb57aa39d2", + "id": "3211501", + "profile": { + "bust": "76", + "height": "153", + "hip": "78", + "waist": "58", + "weight": "43" + } + }, + { + "hash": "a795675b428cf7cc384eedde31c6258a", + "id": "3311502", + "profile": { + "bust": "76", + "height": "153", + "hip": "78", + "waist": "58", + "weight": "43" + } + }, + { + "alias_name": "湯けむり月夜", + "alias_name_display": "湯けむり月夜", + "hash": "0b195865a262327e4732c68aeff5456c", + "id": "3213601", + "profile": { + "bust": "76", + "height": "153", + "hip": "78", + "waist": "58", + "weight": "43" + } + }, + { + "alias_name": "湯けむり月夜", + "alias_name_display": "湯けむり月夜", + "hash": "748d86d7610287f202ac26a1d4195269", + "id": "3313602", + "profile": { + "bust": "76", + "height": "153", + "hip": "78", + "waist": "58", + "weight": "43" + } + }, + { + "alias_name": "ショコラフレーバー", + "alias_name_display": "ショコラフレーバー", + "event": [ + { + "event_id": 411, + "event_name": "アイドルプロデュース チョコレートフォーユー!" + } + ], + "hash": "096e063d60b4b7702c871871d66b4519", + "id": "3215301", + "profile": { + "bust": "76", + "height": "153", + "hip": "78", + "waist": "58", + "weight": "43" + } + }, + { + "alias_name": "ショコラフレーバー", + "alias_name_display": "ショコラフレーバー", + "event": [ + { + "event_id": 411, + "event_name": "アイドルプロデュース チョコレートフォーユー!" + } + ], + "hash": "60aac231822dea54e7042584603fc4d8", + "id": "3315302", + "profile": { + "bust": "76", + "height": "153", + "hip": "78", + "waist": "58", + "weight": "43" + } + }, + { + "alias_name": "ショコラフレーバー・S", + "alias_name_display": "ショコラフレーバー・S", + "event": [ + { + "event_id": 411, + "event_name": "アイドルプロデュース チョコレートフォーユー!" + } + ], + "hash": "e96c0d9f1bc2c591042ff10001a3e28e", + "id": "3215401", + "profile": { + "bust": "76", + "height": "153", + "hip": "78", + "waist": "58", + "weight": "43" + } + }, + { + "alias_name": "ショコラフレーバー・S", + "alias_name_display": "ショコラフレーバー・S", + "event": [ + { + "event_id": 411, + "event_name": "アイドルプロデュース チョコレートフォーユー!" + } + ], + "hash": "7a3d5393fa60cfe4bf872cbcde7bd740", + "id": "3315402", + "profile": { + "bust": "76", + "height": "153", + "hip": "78", + "waist": "58", + "weight": "43" + } + }, + { + "alias_name": "ロックI.C", + "alias_name_display": "ロックI.C", + "event": [ + { + "event_id": 1202, + "event_name": "目指せロックスター アイドルチャレンジ" + } + ], + "hash": "1d8fc0d491ca864c126ce13cff71e55b", + "id": "3318402", + "profile": { + "bust": "76", + "height": "153", + "hip": "78", + "waist": "58", + "weight": "43" + } + }, + { + "alias_name": "アイドル取締係", + "alias_name_display": "アイドル取締係", + "hash": "8917cbf796fc48c5a8e55d383339eba5", + "id": "3223101", + "profile": { + "bust": "76", + "height": "153", + "hip": "78", + "waist": "58", + "weight": "43" + } + }, + { + "alias_name": "アイドル取締係", + "alias_name_display": "アイドル取締係", + "hash": "39802652866ea5548a61d257a6d787c3", + "id": "3323102", + "profile": { + "bust": "76", + "height": "153", + "hip": "78", + "waist": "58", + "weight": "43" + } + }, + { + "alias_name": "タラン・アナリーズ", + "alias_name_display": "タラン・アナリーズ", + "hash": "94c08885da41d1fc80e33b8e7e23ea6b", + "id": "3230701", + "profile": { + "bust": "76", + "height": "153", + "hip": "78", + "waist": "58", + "weight": "43" + } + }, + { + "alias_name": "タラン・アナリーズ", + "alias_name_display": "タラン・アナリーズ", + "hash": "f9adb6b00e178dc8dbddd07a8c9d3629", + "id": "3330702", + "profile": { + "bust": "76", + "height": "153", + "hip": "78", + "waist": "58", + "weight": "43" + } + }, + { + "alias_name": "学園の超☆新星", + "alias_name_display": "学園の超☆新星", + "hash": "8dd85e79dbfde7f5888c4aabd5805d4b", + "id": "3413501", + "profile": { + "bust": "76", + "height": "153", + "hip": "78", + "waist": "58", + "weight": "43" + } + }, + { + "alias_name": "学園の超☆新星", + "alias_name_display": "学園の超☆新星", + "hash": "789218d49debfd49fe6ea42ed26e7839", + "id": "3513502", + "profile": { + "bust": "76", + "height": "153", + "hip": "78", + "waist": "58", + "weight": "43" + } + }, + { + "alias_name": "ガールズロッカー", + "alias_name_display": "ガールズロッカー", + "event": [ + { + "event_id": 1202, + "event_name": "目指せロックスター アイドルチャレンジ" + } + ], + "hash": "65358f57a96b392c90e1b573723939e1", + "id": "3416101", + "profile": { + "bust": "76", + "height": "153", + "hip": "78", + "waist": "58", + "weight": "43" + } + }, + { + "alias_name": "ガールズロッカー", + "alias_name_display": "ガールズロッカー", + "event": [ + { + "event_id": 1202, + "event_name": "目指せロックスター アイドルチャレンジ" + } + ], + "hash": "db755eae0641bef500fb12fda1026268", + "id": "3516102", + "profile": { + "bust": "76", + "height": "153", + "hip": "78", + "waist": "58", + "weight": "43" + } + }, + { + "alias_name": "ガールズロッカー・S", + "alias_name_display": "ガールズロッカー・S", + "event": [ + { + "event_id": 1202, + "event_name": "目指せロックスター アイドルチャレンジ" + } + ], + "hash": "b5912188c743433a82f5866f9e473ff9", + "id": "3416201", + "profile": { + "bust": "76", + "height": "153", + "hip": "78", + "waist": "58", + "weight": "43" + } + }, + { + "alias_name": "ガールズロッカー・S", + "alias_name_display": "ガールズロッカー・S", + "event": [ + { + "event_id": 1202, + "event_name": "目指せロックスター アイドルチャレンジ" + } + ], + "hash": "f913a86dcbf8a9c3d60cc4c3beac9944", + "id": "3516202", + "profile": { + "bust": "76", + "height": "153", + "hip": "78", + "waist": "58", + "weight": "43" + } + }, + { + "alias_name": "ベリーメリーチアー", + "alias_name_display": "ベリーメリーチアー", + "event": [ + { + "event_id": 1107, + "event_name": "プロダクション対抗トークバトルショー クリスマスSP" + } + ], + "hash": "07e0aefc7c9c5fbb79cca7355977460e", + "id": "3420101", + "profile": { + "bust": "76", + "height": "153", + "hip": "78", + "waist": "58", + "weight": "43" + } + }, + { + "alias_name": "ベリーメリーチアー", + "alias_name_display": "ベリーメリーチアー", + "event": [ + { + "event_id": 1107, + "event_name": "プロダクション対抗トークバトルショー クリスマスSP" + } + ], + "hash": "8e832b807804f4f50dc1bba42ef61426", + "id": "3520102", + "profile": { + "bust": "76", + "height": "153", + "hip": "78", + "waist": "58", + "weight": "43" + } + }, + { + "alias_name": "超☆スーパーモデル", + "alias_name_display": "超☆スーパーモデル", + "event": [ + { + "event_id": 1406, + "event_name": "第6回ぷちデレラコレクション" + } + ], + "hash": "2b63b7e0ec092dfd36a67f809c36a5a9", + "id": "3431101", + "profile": { + "bust": "76", + "height": "153", + "hip": "78", + "waist": "58", + "weight": "43" + } + }, + { + "alias_name": "超☆スーパーモデル", + "alias_name_display": "超☆スーパーモデル", + "event": [ + { + "event_id": 1406, + "event_name": "第6回ぷちデレラコレクション" + } + ], + "hash": "795be75c072fbeca019121e5a065f41b", + "id": "3531102", + "profile": { + "bust": "76", + "height": "153", + "hip": "78", + "waist": "58", + "weight": "43" + } + }, + { + "alias_name": "超☆風紀・ロワイヤル", + "alias_name_display": "超☆風紀・ロワイヤル", + "event": [ + { + "event_id": 822, + "event_name": "第22回アイドルLIVEロワイヤル" + } + ], + "hash": "ed713f3796903b39b2859de02333692e", + "id": "3438601", + "profile": { + "bust": "76", + "height": "153", + "hip": "78", + "waist": "58", + "weight": "43" + } + }, + { + "alias_name": "超☆風紀・ロワイヤル", + "alias_name_display": "超☆風紀・ロワイヤル", + "event": [ + { + "event_id": 822, + "event_name": "第22回アイドルLIVEロワイヤル" + } + ], + "hash": "d6be32a4312ef65e6697fbd4da5b3926", + "id": "3538602", + "profile": { + "bust": "76", + "height": "153", + "hip": "78", + "waist": "58", + "weight": "43" + } + } + ], + "idol_id": 196, + "idol_name": "冴島清美", + "idol_name_display": "冴島清美", + "units": [ + { + "id": "169", + "name": "FOUR PIECE" + }, + { + "id": "211", + "name": "ワンダー・フル" + } + ] + }, + { + "aliases": [ + { + "hash": "d9a0ec5b2f49514b8f6fdbc2b3771f44", + "id": "3215601", + "profile": { + "bust": "ぼんっ", + "height": "166", + "hip": "ぼんっ♪", + "waist": "きゅっ", + "weight": "ダイエットちゅう" + } + }, + { + "hash": "340ab00d64a6d94dfc46bdc4ceb2cc5f", + "id": "3315602", + "profile": { + "bust": "ぼんっ", + "height": "166", + "hip": "ぼんっ♪", + "waist": "きゅっ", + "weight": "ダイエットちゅう" + } + }, + { + "alias_name": "T.B.スウィーティー", + "alias_name_display": "T.B.スウィーティー", + "event": [ + { + "event_id": 1103, + "event_name": "第3回プロダクション対抗トークバトルショー" + } + ], + "hash": "c9e9b869be6e4d8b500f800793636dce", + "id": "3217601", + "profile": { + "bust": "ぼんっ", + "height": "166", + "hip": "ぼんっ♪", + "waist": "きゅっ", + "weight": "ダイエットちゅう" + } + }, + { + "alias_name": "T.B.スウィーティー", + "alias_name_display": "T.B.スウィーティー", + "event": [ + { + "event_id": 1103, + "event_name": "第3回プロダクション対抗トークバトルショー" + } + ], + "hash": "97f9fb8f9bf728f75d26d1c22f49477c", + "id": "3317602", + "profile": { + "bust": "ぼんっ", + "height": "166", + "hip": "ぼんっ♪", + "waist": "きゅっ", + "weight": "ダイエットちゅう" + } + }, + { + "alias_name": "ネクストスターI.C", + "alias_name_display": "ネクストスターI.C", + "event": [ + { + "event_id": 1203, + "event_name": "目指せきらきらモデル アイドルチャレンジ" + } + ], + "hash": "2d067cd983148c41ec37a279bfa8486d", + "id": "3319602", + "profile": { + "bust": "ぼんっ", + "height": "166", + "hip": "ぼんっ♪", + "waist": "きゅっ", + "weight": "ダイエットちゅう" + } + }, + { + "alias_name": "ワーキング・スウィーティー", + "alias_name_display": "ワーキング・スウィーティー", + "hash": "6385fb5d76d87acc8a5ba8595a7acf6d", + "id": "3228201", + "profile": { + "bust": "ぼんっ", + "height": "166", + "hip": "ぼんっ♪", + "waist": "きゅっ", + "weight": "ダイエットちゅう" + } + }, + { + "alias_name": "ワーキング・スウィーティー", + "alias_name_display": "ワーキング・スウィーティー", + "hash": "e1488e5ae3ac05066a970d9944e8a3a9", + "id": "3328202", + "profile": { + "bust": "ぼんっ", + "height": "166", + "hip": "ぼんっ♪", + "waist": "きゅっ", + "weight": "ダイエットちゅう" + } + }, + { + "alias_name": "チクッとスウィーティー", + "alias_name_display": "チクッとスウィーティー", + "hash": "7fce9acadfec04fbcaeffd38ee89a37c", + "id": "3232401", + "profile": { + "bust": "ぼんっ", + "height": "166", + "hip": "ぼんっ♪", + "waist": "きゅっ", + "weight": "ダイエットちゅう" + } + }, + { + "alias_name": "チクッとスウィーティー", + "alias_name_display": "チクッとスウィーティー", + "hash": "b4f0b6752da23051ae62d105fd8e635a", + "id": "3332402", + "profile": { + "bust": "ぼんっ", + "height": "166", + "hip": "ぼんっ♪", + "waist": "きゅっ", + "weight": "ダイエットちゅう" + } + }, + { + "alias_name": "ハート・モデル", + "alias_name_display": "ハート・モデル", + "event": [ + { + "event_id": 1203, + "event_name": "目指せきらきらモデル アイドルチャレンジ" + } + ], + "hash": "694a57d1825e26a2132b02becd9912ed", + "id": "3417701", + "profile": { + "bust": "ぼんっ", + "height": "166", + "hip": "ぼんっ♪", + "waist": "きゅっ", + "weight": "ダイエットちゅう" + } + }, + { + "alias_name": "ハート・モデル", + "alias_name_display": "ハート・モデル", + "event": [ + { + "event_id": 1203, + "event_name": "目指せきらきらモデル アイドルチャレンジ" + } + ], + "hash": "44f999f95a88e0041b321292f5db456c", + "id": "3517702", + "profile": { + "bust": "ぼんっ", + "height": "166", + "hip": "ぼんっ♪", + "waist": "きゅっ", + "weight": "ダイエットちゅう" + } + }, + { + "alias_name": "ハート・モデル・S", + "alias_name_display": "ハート・モデル・S", + "event": [ + { + "event_id": 1203, + "event_name": "目指せきらきらモデル アイドルチャレンジ" + } + ], + "hash": "e35da96f170e1b96f8e95725f0134d1a", + "id": "3417801", + "profile": { + "bust": "ぼんっ", + "height": "166", + "hip": "ぼんっ♪", + "waist": "きゅっ", + "weight": "ダイエットちゅう" + } + }, + { + "alias_name": "ハート・モデル・S", + "alias_name_display": "ハート・モデル・S", + "event": [ + { + "event_id": 1203, + "event_name": "目指せきらきらモデル アイドルチャレンジ" + } + ], + "hash": "fdf75acee757844ae1c7ec62cc122b95", + "id": "3517802", + "profile": { + "bust": "ぼんっ", + "height": "166", + "hip": "ぼんっ♪", + "waist": "きゅっ", + "weight": "ダイエットちゅう" + } + }, + { + "alias_name": "えんじぇるはぁと", + "alias_name_display": "えんじぇるはぁと", + "hash": "e4312ec25c1a71e1e6a6f813ee481471", + "id": "3420801", + "profile": { + "bust": "ぼんっ", + "height": "166", + "hip": "ぼんっ♪", + "waist": "きゅっ", + "weight": "ダイエットちゅう" + } + }, + { + "alias_name": "えんじぇるはぁと", + "alias_name_display": "えんじぇるはぁと", + "hash": "789f1a503d40faaf26a0035c6cc3c407", + "id": "3520802", + "profile": { + "bust": "ぼんっ", + "height": "166", + "hip": "ぼんっ♪", + "waist": "きゅっ", + "weight": "ダイエットちゅう" + } + }, + { + "alias_name": "はぁとの嫁入り", + "alias_name_display": "はぁとの嫁入り", + "hash": "70d4fbc5a0fdde7d00431fcebd27ef00", + "id": "3424001", + "profile": { + "bust": "ぼんっ", + "height": "166", + "hip": "ぼんっ♪", + "waist": "きゅっ", + "weight": "ダイエットちゅう" + } + }, + { + "alias_name": "はぁとの嫁入り", + "alias_name_display": "はぁとの嫁入り", + "hash": "f5507a6ede55324eade6917c61cf9d95", + "id": "3524002", + "profile": { + "bust": "ぼんっ", + "height": "166", + "hip": "ぼんっ♪", + "waist": "きゅっ", + "weight": "ダイエットちゅう" + } + }, + { + "alias_name": "スウィーティー・ロワイヤル", + "alias_name_display": "スウィーティー・ロワイヤル", + "event": [ + { + "event_id": 814, + "event_name": "第14回アイドルLIVEロワイヤル" + } + ], + "hash": "494edfe064b8fb4d35d104020969742d", + "id": "3427601", + "profile": { + "bust": "ぼんっ", + "height": "166", + "hip": "ぼんっ♪", + "waist": "きゅっ", + "weight": "ダイエットちゅう" + } + }, + { + "alias_name": "スウィーティー・ロワイヤル", + "alias_name_display": "スウィーティー・ロワイヤル", + "event": [ + { + "event_id": 814, + "event_name": "第14回アイドルLIVEロワイヤル" + } + ], + "hash": "6c4b16f4c3351cd74d4f757ba7e67a5e", + "id": "3527602", + "profile": { + "bust": "ぼんっ", + "height": "166", + "hip": "ぼんっ♪", + "waist": "きゅっ", + "weight": "ダイエットちゅう" + } + }, + { + "alias_name": "常夏パラダイス", + "alias_name_display": "常夏パラダイス", + "hash": "bdcb6defb92cad18920c35ced7e4d272", + "id": "3434201", + "profile": { + "bust": "ぼんっ", + "height": "166", + "hip": "ぼんっ♪", + "waist": "きゅっ", + "weight": "ダイエットちゅう" + } + }, + { + "alias_name": "常夏パラダイス", + "alias_name_display": "常夏パラダイス", + "hash": "00a73075d65a7d0c56ceef9dd11c7a06", + "id": "3534202", + "profile": { + "bust": "ぼんっ", + "height": "166", + "hip": "ぼんっ♪", + "waist": "きゅっ", + "weight": "ダイエットちゅう" + } + } + ], + "idol_id": 197, + "idol_name": "佐藤心", + "idol_name_display": "佐藤心", + "units": [ + { + "id": "7", + "name": "エターナルレディエイト" + }, + { + "id": "13", + "name": "カワスウィーティーなボクはぁと(仮)" + }, + { + "id": "23", + "name": "しゅがしゅが☆み~ん" + }, + { + "id": "184", + "name": "宵乙女" + }, + { + "id": "207", + "name": "ムーランルージュ" + } + ] + }, + { + "aliases": [ + { + "alias_name": "等身大の素顔", + "alias_name_display": "等身大の素顔", + "hash": "8e9bb5d91c1612e5a4962aed94f45a78", + "id": "3213001", + "profile": { + "bust": "79", + "height": "140", + "hip": "80", + "waist": "58", + "weight": "41" + } + }, + { + "alias_name": "等身大の素顔", + "alias_name_display": "等身大の素顔", + "hash": "3c3c58aa3056c75b8139189c71d2afa5", + "id": "3313002", + "profile": { + "bust": "79", + "height": "140", + "hip": "80", + "waist": "58", + "weight": "41" + } + }, + { + "alias_name": "レジェンドシーフ", + "alias_name_display": "レジェンドシーフ", + "event": [ + { + "event_id": 521, + "event_name": "怪盗公演 美しき追跡者" + } + ], + "hash": "c59d82869331715bcd9d9f0a8b9a1c06", + "id": "3324702", + "profile": { + "bust": "79", + "height": "140", + "hip": "80", + "waist": "58", + "weight": "41" + } + }, + { + "alias_name": "マーチングバンド", + "alias_name_display": "マーチングバンド", + "hash": "ab06c2777617f9bcff312f943cc6f866", + "id": "3226501", + "profile": { + "bust": "79", + "height": "140", + "hip": "80", + "waist": "58", + "weight": "41" + } + }, + { + "alias_name": "マーチングバンド", + "alias_name_display": "マーチングバンド", + "hash": "469b6a4ccbd38b20234c7709cfa14637", + "id": "3326502", + "profile": { + "bust": "79", + "height": "140", + "hip": "80", + "waist": "58", + "weight": "41" + } + }, + { + "alias_name": "まごころメイド", + "alias_name_display": "まごころメイド", + "hash": "5c67bd0d15b98bd30c121d41d898805d", + "id": "3234201", + "profile": { + "bust": "79", + "height": "140", + "hip": "80", + "waist": "58", + "weight": "41" + } + }, + { + "alias_name": "まごころメイド", + "alias_name_display": "まごころメイド", + "hash": "a2a18aad6f03d8eff6eb539a3f7d1b63", + "id": "3334202", + "profile": { + "bust": "79", + "height": "140", + "hip": "80", + "waist": "58", + "weight": "41" + } + }, + { + "alias_name": "小さな英雄", + "alias_name_display": "小さな英雄", + "hash": "abbbabfa5e9a819053742de3ca99ba21", + "id": "3400401", + "profile": { + "bust": "79", + "height": "140", + "hip": "80", + "waist": "58", + "weight": "41" + } + }, + { + "alias_name": "小さな英雄", + "alias_name_display": "小さな英雄", + "hash": "91439894ec4fdaed270c83fc0e6d6dfb", + "id": "3500402", + "profile": { + "bust": "79", + "height": "140", + "hip": "80", + "waist": "58", + "weight": "41" + } + }, + { + "alias_name": "ミンナノミカタ", + "alias_name_display": "ミンナノミカタ", + "event": [ + { + "event_id": 1103, + "event_name": "第3回プロダクション対抗トークバトルショー" + } + ], + "hash": "c9de774c074706e3b00f4c57bcaf19fb", + "id": "3415201", + "profile": { + "bust": "79", + "height": "140", + "hip": "80", + "waist": "58", + "weight": "41" + } + }, + { + "alias_name": "ミンナノミカタ", + "alias_name_display": "ミンナノミカタ", + "event": [ + { + "event_id": 1103, + "event_name": "第3回プロダクション対抗トークバトルショー" + } + ], + "hash": "bbcc7d08ecafb83fa87d6eb23346d512", + "id": "3515202", + "profile": { + "bust": "79", + "height": "140", + "hip": "80", + "waist": "58", + "weight": "41" + } + }, + { + "alias_name": "無限大の夢", + "alias_name_display": "無限大の夢", + "hash": "90704fe71aac46fb8a34b98a0d4dd7f4", + "id": "3430301", + "profile": { + "bust": "79", + "height": "140", + "hip": "80", + "waist": "58", + "weight": "41" + } + }, + { + "alias_name": "無限大の夢", + "alias_name_display": "無限大の夢", + "hash": "a3697dced0815fc5f72fdbabdcc000ff", + "id": "3530302", + "profile": { + "bust": "79", + "height": "140", + "hip": "80", + "waist": "58", + "weight": "41" + } + }, + { + "alias_name": "ジャスティスブレイズ", + "alias_name_display": "ジャスティスブレイズ", + "event": [ + { + "event_id": "032", + "event_name": "第32回プロダクションマッチフェスティバル" + } + ], + "hash": "afc890c6cbb5ba31bd2c0b60baa3fb15", + "id": "3436101", + "profile": { + "bust": "79", + "height": "140", + "hip": "80", + "waist": "58", + "weight": "41" + } + }, + { + "alias_name": "ジャスティスブレイズ", + "alias_name_display": "ジャスティスブレイズ", + "event": [ + { + "event_id": "032", + "event_name": "第32回プロダクションマッチフェスティバル" + } + ], + "hash": "6cdda5b7a8549133166ba9eb9be99096", + "id": "3536102", + "profile": { + "bust": "79", + "height": "140", + "hip": "80", + "waist": "58", + "weight": "41" + } + } + ], + "idol_id": 198, + "idol_name": "南条光", + "idol_name_display": "南条光", + "units": [ + { + "id": "46", + "name": "ヒーローヴァーサス" + }, + { + "id": "64", + "name": "リトルヒーロー" + }, + { + "id": "214", + "name": "L.M.B.G" + } + ] + }, + { + "aliases": [ + { + "hash": "24d5423d9fe8deb825e29b8a516d39de", + "id": "3400501", + "profile": { + "bust": "82", + "height": "166", + "hip": "83", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "スペシャルテクニック", + "alias_name_display": "スペシャルテクニック", + "event": [ + { + "event_id": 303, + "event_name": "アイドル強化合宿" + } + ], + "hash": "e9c8869f89f20e106098b24f222d9769", + "id": "3402401", + "profile": { + "bust": "82", + "height": "166", + "hip": "83", + "waist": "56", + "weight": "45" + } + }, + { + "alias_name": "地獄の特訓", + "alias_name_display": "地獄の特訓", + "hash": "6681d3a0c30f354a44317608a1d68971", + "id": "3412201", + "profile": { + "bust": "82", + "height": "166", + "hip": "83", + "waist": "56", + "weight": "45" + } + } + ], + "idol_id": 199, + "idol_name": "マスタートレーナー", + "idol_name_display": "マスタートレーナー" + }, + { + "aliases": [ + { + "alias_name": "ホーリーガール", + "alias_name_display": "ホーリーガール", + "hash": "f8c5c2664ca76f4aa84b267300290d54", + "id": "3229901", + "profile": { + "bust": "81", + "height": "165", + "hip": "80", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "ホーリーガール", + "alias_name_display": "ホーリーガール", + "hash": "b886108b5b598273662056ff15dc76cb", + "id": "3329902", + "profile": { + "bust": "81", + "height": "165", + "hip": "80", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "聖夜の使者", + "alias_name_display": "聖夜の使者", + "event": [ + { + "event_id": 101, + "event_name": "星降るクリスマス" + } + ], + "hash": "49f6fd4549adcb500dcc21d87297e5bb", + "id": "3400601", + "profile": { + "bust": "81", + "height": "165", + "hip": "80", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "聖夜の使者", + "alias_name_display": "聖夜の使者", + "event": [ + { + "event_id": 101, + "event_name": "星降るクリスマス" + } + ], + "hash": "106db7ae8a02839fbaac3658a11cf2b9", + "id": "3500602", + "profile": { + "bust": "81", + "height": "165", + "hip": "80", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "渚のマーメイド", + "alias_name_display": "渚のマーメイド", + "hash": "4aecdc034fc76ca31243603d3fdfbca8", + "id": "3402501", + "profile": { + "bust": "81", + "height": "165", + "hip": "80", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "渚のマーメイド", + "alias_name_display": "渚のマーメイド", + "hash": "c9d1b3f76a38a9e4b8897028c4430754", + "id": "3502502", + "profile": { + "bust": "81", + "height": "165", + "hip": "80", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "温泉郷の救世主", + "alias_name_display": "温泉郷の救世主", + "hash": "657a35f18d07f00a1dc67170ef05ca36", + "id": "3406001", + "profile": { + "bust": "81", + "height": "165", + "hip": "80", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "温泉郷の救世主", + "alias_name_display": "温泉郷の救世主", + "hash": "266483313283264643bb92cfdb9b520f", + "id": "3506002", + "profile": { + "bust": "81", + "height": "165", + "hip": "80", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "ハッピーホーリーナイト", + "alias_name_display": "ハッピーホーリーナイト", + "event": [ + { + "event_id": 1001, + "event_name": "プロダクション対抗ドリームLIVEフェスティバル" + } + ], + "hash": "ead06a92514b67ede47e8b0ff2d7ec36", + "id": "3410501", + "profile": { + "bust": "81", + "height": "165", + "hip": "80", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "ハッピーホーリーナイト", + "alias_name_display": "ハッピーホーリーナイト", + "event": [ + { + "event_id": 1001, + "event_name": "プロダクション対抗ドリームLIVEフェスティバル" + } + ], + "hash": "9aa5c47cb237eca12686c8310a9a1617", + "id": "3510502", + "profile": { + "bust": "81", + "height": "165", + "hip": "80", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "ふわふわホーリーナイト", + "alias_name_display": "ふわふわホーリーナイト", + "event": [ + { + "event_id": 710, + "event_name": "サンタDEドリームLIVEフェスティバル" + } + ], + "hash": "13cd8e91ab44bed6a0eb3ad73ac98d55", + "id": "3419901", + "profile": { + "bust": "81", + "height": "165", + "hip": "80", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "ふわふわホーリーナイト", + "alias_name_display": "ふわふわホーリーナイト", + "event": [ + { + "event_id": 710, + "event_name": "サンタDEドリームLIVEフェスティバル" + } + ], + "hash": "86e560efafce2bd5b91d2da5fa9a9649", + "id": "3519902", + "profile": { + "bust": "81", + "height": "165", + "hip": "80", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "マジカルホーリーナイト", + "alias_name_display": "マジカルホーリーナイト", + "event": [ + { + "event_id": 1208, + "event_name": "目指せサンタクロース アイドルチャレンジ" + } + ], + "hash": "8700eb37ea90c08296384294dcba8f0b", + "id": "3428501", + "profile": { + "bust": "81", + "height": "165", + "hip": "80", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "マジカルホーリーナイト", + "alias_name_display": "マジカルホーリーナイト", + "event": [ + { + "event_id": 1208, + "event_name": "目指せサンタクロース アイドルチャレンジ" + } + ], + "hash": "b4157ceea09c89490bcefdf47e81f2c8", + "id": "3528502", + "profile": { + "bust": "81", + "height": "165", + "hip": "80", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "幸せのお届け人", + "alias_name_display": "幸せのお届け人", + "hash": "7b4c4efa720fb207fccb3a7161c73360", + "id": "3436601", + "profile": { + "bust": "81", + "height": "165", + "hip": "80", + "waist": "56", + "weight": "44" + } + }, + { + "alias_name": "幸せのお届け人", + "alias_name_display": "幸せのお届け人", + "hash": "876fb43ce5ef639022ddf7ce233a859a", + "id": "3536602", + "profile": { + "bust": "81", + "height": "165", + "hip": "80", + "waist": "56", + "weight": "44" + } + } + ], + "idol_id": 200, + "idol_name": "イヴ・サンタクロース", + "idol_name_display": "イヴ・サンタクロース" + }, + { + "aliases": [ + { + "alias_name": "ラブキュンバレンタイン", + "alias_name_display": "ラブキュンバレンタイン", + "event": [ + { + "event_id": 1906, + "event_name": "ディアリースターハート ~ラブキュンバレンタイン~" + } + ], + "hash": "5b85ccd2e62127d71edeb18ca68a43b6", + "id": "1232001", + "profile": { + "bust": "78", + "height": "149", + "hip": "79", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "ラブキュンバレンタイン", + "alias_name_display": "ラブキュンバレンタイン", + "event": [ + { + "event_id": 1906, + "event_name": "ディアリースターハート ~ラブキュンバレンタイン~" + } + ], + "hash": "caa9df35d41ce022727122458d34a5b3", + "id": "1332002", + "profile": { + "bust": "78", + "height": "149", + "hip": "79", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "夜桜奇譚", + "alias_name_display": "夜桜奇譚", + "event": [ + { + "event_id": 1907, + "event_name": "ディアリースタークエスト ~夜桜奇譚~" + } + ], + "hash": "c3dc039dbb8e4e3b2ea2ce70dcc0279a", + "id": "1232701", + "profile": { + "bust": "78", + "height": "149", + "hip": "79", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "夜桜奇譚", + "alias_name_display": "夜桜奇譚", + "event": [ + { + "event_id": 1907, + "event_name": "ディアリースタークエスト ~夜桜奇譚~" + } + ], + "hash": "acb21dca7cfc523e0a041f32c92f0c8e", + "id": "1332702", + "profile": { + "bust": "78", + "height": "149", + "hip": "79", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "聖夜のキセキ", + "alias_name_display": "聖夜のキセキ", + "event": [ + { + "event_id": 1905, + "event_name": "ディアリースターナイト ~聖夜のキセキ~" + } + ], + "hash": "4270223bf3b0fa1fe9ad07050b397f65", + "id": "1437201", + "profile": { + "bust": "78", + "height": "149", + "hip": "79", + "waist": "55", + "weight": "40" + } + }, + { + "alias_name": "聖夜のキセキ", + "alias_name_display": "聖夜のキセキ", + "event": [ + { + "event_id": 1905, + "event_name": "ディアリースターナイト ~聖夜のキセキ~" + } + ], + "hash": "e39015d925db23fa7c4a5fbfeaf09534", + "id": "1537202", + "profile": { + "bust": "78", + "height": "149", + "hip": "79", + "waist": "55", + "weight": "40" + } + } + ], + "idol_id": 201, + "idol_name": "日高愛", + "idol_name_display": "日高愛" + }, + { + "aliases": [ + { + "alias_name": "聖夜のキセキ", + "alias_name_display": "聖夜のキセキ", + "event": [ + { + "event_id": 1905, + "event_name": "ディアリースターナイト ~聖夜のキセキ~" + } + ], + "hash": "addeb97fac43f59ea040b91102e7a6fd", + "id": "2229601", + "profile": { + "bust": "82", + "height": "152", + "hip": "76", + "waist": "53", + "weight": "36" + } + }, + { + "alias_name": "聖夜のキセキ", + "alias_name_display": "聖夜のキセキ", + "event": [ + { + "event_id": 1905, + "event_name": "ディアリースターナイト ~聖夜のキセキ~" + } + ], + "hash": "4ff1e97c188a31e681f47940481fd2e4", + "id": "2329602", + "profile": { + "bust": "82", + "height": "152", + "hip": "76", + "waist": "53", + "weight": "36" + } + }, + { + "alias_name": "ラブキュンバレンタイン", + "alias_name_display": "ラブキュンバレンタイン", + "event": [ + { + "event_id": 1906, + "event_name": "ディアリースターハート ~ラブキュンバレンタイン~" + } + ], + "hash": "e9e3e22a50cb40f14e8af378610d8827", + "id": "2230501", + "profile": { + "bust": "82", + "height": "152", + "hip": "76", + "waist": "53", + "weight": "36" + } + }, + { + "alias_name": "ラブキュンバレンタイン", + "alias_name_display": "ラブキュンバレンタイン", + "event": [ + { + "event_id": 1906, + "event_name": "ディアリースターハート ~ラブキュンバレンタイン~" + } + ], + "hash": "70927bba624b93645c5e3d510c8efa69", + "id": "2330502", + "profile": { + "bust": "82", + "height": "152", + "hip": "76", + "waist": "53", + "weight": "36" + } + }, + { + "alias_name": "夜桜奇譚", + "alias_name_display": "夜桜奇譚", + "event": [ + { + "event_id": 1907, + "event_name": "ディアリースタークエスト ~夜桜奇譚~" + } + ], + "hash": "7ad6bd146fe2c0a9d7f4d1d70e85339a", + "id": "2439301", + "profile": { + "bust": "82", + "height": "152", + "hip": "76", + "waist": "53", + "weight": "36" + } + }, + { + "alias_name": "夜桜奇譚", + "alias_name_display": "夜桜奇譚", + "event": [ + { + "event_id": 1907, + "event_name": "ディアリースタークエスト ~夜桜奇譚~" + } + ], + "hash": "2c578bcb320f60bfd692e097bff03291", + "id": "2539302", + "profile": { + "bust": "82", + "height": "152", + "hip": "76", + "waist": "53", + "weight": "36" + } + } + ], + "idol_id": 202, + "idol_name": "水谷絵理", + "idol_name_display": "水谷絵理" + }, + { + "aliases": [ + { + "alias_name": "聖夜のキセキ", + "alias_name_display": "聖夜のキセキ", + "event": [ + { + "event_id": 1905, + "event_name": "ディアリースターナイト ~聖夜のキセキ~" + } + ], + "hash": "74bfb36578411126f56d04baeb48212d", + "id": "3231901", + "profile": { + "bust": "80", + "height": "162", + "hip": "80", + "waist": "59", + "weight": "54" + } + }, + { + "alias_name": "聖夜のキセキ", + "alias_name_display": "聖夜のキセキ", + "event": [ + { + "event_id": 1905, + "event_name": "ディアリースターナイト ~聖夜のキセキ~" + } + ], + "hash": "c79b5a90e44cbca6c6b31c566e8b0878", + "id": "3331902", + "profile": { + "bust": "80", + "height": "162", + "hip": "80", + "waist": "59", + "weight": "54" + } + }, + { + "alias_name": "夜桜奇譚", + "alias_name_display": "夜桜奇譚", + "event": [ + { + "event_id": 1907, + "event_name": "ディアリースタークエスト ~夜桜奇譚~" + } + ], + "hash": "8528eab7689a81e088cc8b537a7308b3", + "id": "3233901", + "profile": { + "bust": "80", + "height": "162", + "hip": "80", + "waist": "59", + "weight": "54" + } + }, + { + "alias_name": "夜桜奇譚", + "alias_name_display": "夜桜奇譚", + "event": [ + { + "event_id": 1907, + "event_name": "ディアリースタークエスト ~夜桜奇譚~" + } + ], + "hash": "9ec1db535f6c5277ab50ffd22d33953c", + "id": "3333902", + "profile": { + "bust": "80", + "height": "162", + "hip": "80", + "waist": "59", + "weight": "54" + } + }, + { + "alias_name": "ラブキュンバレンタイン", + "alias_name_display": "ラブキュンバレンタイン", + "event": [ + { + "event_id": 1906, + "event_name": "ディアリースターハート ~ラブキュンバレンタイン~" + } + ], + "hash": "3b618f0273fecf8b47e9c4b5fd9366a4", + "id": "3438101", + "profile": { + "bust": "80", + "height": "162", + "hip": "80", + "waist": "59", + "weight": "54" + } + }, + { + "alias_name": "ラブキュンバレンタイン", + "alias_name_display": "ラブキュンバレンタイン", + "event": [ + { + "event_id": 1906, + "event_name": "ディアリースターハート ~ラブキュンバレンタイン~" + } + ], + "hash": "cb10db1e0bcf18c7ae8b49edee29eea2", + "id": "3538102", + "profile": { + "bust": "80", + "height": "162", + "hip": "80", + "waist": "59", + "weight": "54" + } + } + ], + "idol_id": 203, + "idol_name": "秋月涼", + "idol_name_display": "秋月涼" + } +] \ No newline at end of file diff --git a/resource/db/master/core/unit_list-export.json b/resource/db/master/core/unit_list-export.json index ff403e2..bca2dc4 100644 --- a/resource/db/master/core/unit_list-export.json +++ b/resource/db/master/core/unit_list-export.json @@ -1,865 +1,2012 @@ -[ { - "id" : "0", - "member" : [ "浜口あやめ" ], - "name" : "くノ一あやめ忍法帖" -}, { - "id" : "1", - "member" : [ "神崎蘭子" ], - "name" : "Rosenburg Engel" -}, { - "id" : "2", - "member" : [ "吉岡沙紀", "小松伊吹" ], - "name" : "アーティスター" -}, { - "id" : "3", - "member" : [ "アナスタシア", "前川みく" ], - "name" : "あーにゃんみくにゃん" -}, { - "id" : "4", - "member" : [ "櫻井桃華", "市原仁奈" ], - "name" : "イカバラプリンセス" -}, { - "id" : "5", - "member" : [ "高森藍子", "道明寺歌鈴" ], - "name" : "インディゴ・ベル" -}, { - "id" : "6", - "member" : [ "難波笑美", "上田鈴帆" ], - "name" : "笑美と鈴帆の爆笑エブリデイ" -}, { - "id" : "7", - "member" : [ "佐藤心", "沢田麻理菜" ], - "name" : "エターナルレディエイト" -}, { - "id" : "8", - "member" : [ "江上椿", "片桐早苗" ], - "name" : "越後小町" -}, { - "id" : "9", - "member" : [ "白坂小梅", "松永涼" ], - "name" : "エルドリッチ・ロアテラー" -}, { - "id" : "10", - "member" : [ "和久井留美", "東郷あい" ], - "name" : "エレガントインモラリスト" -}, { - "id" : "11", - "member" : [ "今井加奈", "三村かな子" ], - "name" : "かな☆かな☆ふぁんしー" -}, { - "id" : "12", - "member" : [ "大西由里子", "荒木比奈" ], - "name" : "壁サーの花" -}, { - "id" : "13", - "member" : [ "輿水幸子", "佐藤心" ], - "name" : "カワスウィーティーなボクはぁと(仮)" -}, { - "id" : "14", - "member" : [ "藤原肇", "鷺沢文香" ], - "name" : "月下氷姫" -}, { - "id" : "15", - "member" : [ "日野茜", "堀裕子" ], - "name" : "サイキックヒーツ" -}, { - "id" : "16", - "member" : [ "上条春菜", "荒木比奈" ], - "name" : "サイバーグラス" -}, { - "id" : "17", - "member" : [ "森久保乃々", "星輝子" ], - "name" : "サイレントスクリーマー" -}, { - "id" : "18", - "member" : [ "大槻唯", "相川千夏" ], - "name" : "サクラブロッサム" -}, { - "id" : "19", - "member" : [ "浜口あやめ", "片桐早苗" ], - "name" : "さつきの頃" -}, { - "id" : "20", - "member" : [ "藤原肇", "依田芳乃" ], - "name" : "山紫水明" -}, { - "id" : "21", - "member" : [ "島村卯月", "本田未央" ], - "name" : "ジェネレーションオブサマー" -}, { - "id" : "22", - "member" : [ "三船美優", "安部菜々" ], - "name" : "シャイニー・アーリーデイズ" -}, { - "id" : "23", - "member" : [ "佐藤心", "安部菜々" ], - "name" : "しゅがしゅが☆み~ん" -}, { - "id" : "24", - "member" : [ "有浦柑奈", "梅木音葉" ], - "name" : "シンフォニック・ワールド" -}, { - "id" : "25", - "member" : [ "十時愛梨", "三村かな子" ], - "name" : "スウィートラヴァーズ" -}, { - "id" : "26", - "member" : [ "矢口美羽", "楊菲菲" ], - "name" : "スクールガールフレンズ" -}, { - "id" : "27", - "member" : [ "中野有香", "水本ゆかり" ], - "name" : "ストレートフルート" -}, { - "id" : "28", - "member" : [ "堀裕子", "氏家むつみ" ], - "name" : "スパニッシュスタイル" -}, { - "id" : "29", - "member" : [ "水木聖來", "松本沙理奈" ], - "name" : "セーラーマリナー" -}, { - "id" : "30", - "member" : [ "丹羽仁美", "浜口あやめ" ], - "name" : "センゴク☆ランブ" -}, { - "id" : "31", - "member" : [ "ナターリア", "ライラ" ], - "name" : "ソル・カマル" -}, { - "id" : "32", - "member" : [ "二宮飛鳥", "神崎蘭子" ], - "name" : "ダークイルミネイト" -}, { - "id" : "33", - "member" : [ "椎名法子", "大原みちる" ], - "name" : "チーム・フラワー" -}, { - "id" : "34", - "member" : [ "速水奏", "新田美波" ], - "name" : "デア・アウローラ" -}, { - "id" : "35", - "member" : [ "安斎都", "古澤頼子" ], - "name" : "ディテクティブヴァーサス" -}, { - "id" : "36", - "member" : [ "塩見周子", "宮本フレデリカ" ], - "name" : "テンプテーション・アイズ" -}, { - "id" : "37", - "member" : [ "伊集院惠", "ケイト" ], - "name" : "ナイトブルーレザー" -}, { - "id" : "38", - "member" : [ "浜口あやめ", "脇山珠美" ], - "name" : "忍武☆繚乱" -}, { - "id" : "39", - "member" : [ "向井拓海", "藤本里奈" ], - "name" : "ノーティギャルズ" -}, { - "id" : "40", - "member" : [ "五十嵐響子", "吉岡沙紀" ], - "name" : "ハートハーモナイズ" -}, { - "id" : "41", - "member" : [ "小早川紗枝", "塩見周子" ], - "name" : "羽衣小町" -}, { - "id" : "42", - "member" : [ "桐野アヤ", "槙原志保" ], - "name" : "バリスタイル" -}, { - "id" : "43", - "member" : [ "小早川紗枝", "小日向美穂" ], - "name" : "春色姫君" -}, { - "id" : "44", - "member" : [ "棟方愛海", "矢口美羽" ], - "name" : "ハワイアンツイン" -}, { - "id" : "45", - "member" : [ "結城晴", "的場梨沙" ], - "name" : "ビートシューター" -}, { - "id" : "46", - "member" : [ "小関麗奈", "南条光" ], - "name" : "ヒーローヴァーサス" -}, { - "id" : "47", - "member" : [ "古賀小春", "結城晴" ], - "name" : "ひつじさんとうさぎさん" -}, { - "id" : "48", - "member" : [ "棟方愛海", "喜多日菜子" ], - "name" : "日菜子と愛海の妄想ワールド" -}, { - "id" : "49", - "member" : [ "浅野風香", "奥山沙織" ], - "name" : "ピュアリーツイン" -}, { - "id" : "50", - "member" : [ "城ヶ崎美嘉", "城ヶ崎莉嘉" ], - "name" : "ファミリアツイン" -}, { - "id" : "51", - "member" : [ "相葉夕美", "西園寺琴歌" ], - "name" : "フィオレンティナ" -}, { - "id" : "52", - "member" : [ "川島瑞樹", "村上巴" ], - "name" : "フォーリンシーサイド" -}, { - "id" : "53", - "member" : [ "黒川千秋", "水野翠" ], - "name" : "ブリヤント・ノワール" -}, { - "id" : "54", - "member" : [ "姫川友紀", "結城晴" ], - "name" : "ボール・フレンズ" -}, { - "id" : "55", - "member" : [ "速水奏", "高垣楓" ], - "name" : "ミステリアスアイズ" -}, { - "id" : "56", - "member" : [ "藤居朋", "堀裕子" ], - "name" : "ミステリアスガールズ" -}, { - "id" : "57", - "member" : [ "二宮飛鳥", "相葉夕美" ], - "name" : "ミステリックガーデン" -}, { - "id" : "58", - "member" : [ "白菊ほたる", "鷹富士茄子" ], - "name" : "ミス・フォーチュン" -}, { - "id" : "59", - "member" : [ "古賀小春", "小関麗奈" ], - "name" : "ムシバレイナと小春ちゃん" -}, { - "id" : "60", - "member" : [ "速水奏", "北条加蓮" ], - "name" : "モノクロームリリィ" -}, { - "id" : "61", - "member" : [ "櫻井桃華", "橘ありす" ], - "name" : "ももべりー" -}, { - "id" : "62", - "member" : [ "桐野アヤ", "遊佐こずえ" ], - "name" : "ようせいさんとおねえさん" -}, { - "id" : "63", - "member" : [ "高垣楓", "並木芽衣子" ], - "name" : "ラブリーダイナーズ" -}, { - "id" : "64", - "member" : [ "南条光", "横山千佳" ], - "name" : "リトルヒーロー" -}, { - "id" : "65", - "member" : [ "宮本フレデリカ", "一ノ瀬志希" ], - "name" : "レイジー・レイジー" -}, { - "id" : "66", - "member" : [ "橘ありす", "村上巴" ], - "name" : "レッドベリィズ" -}, { - "id" : "67", - "member" : [ "高橋礼子", "木場真奈美" ], - "name" : "レディビースト" -}, { - "id" : "68", - "member" : [ "池袋晶葉", "ライラ" ], - "name" : "ロボフレンズ" -}, { - "id" : "69", - "member" : [ "高森藍子", "十時愛梨" ], - "name" : "Ai's" -}, { - "id" : "70", - "member" : [ "前川みく", "多田李衣菜" ], - "name" : "*(Asterisk)" -}, { - "id" : "71", - "member" : [ "及川雫", "大沼くるみ" ], - "name" : "B.B" -}, { - "id" : "72", - "member" : [ "一ノ瀬志希", "二宮飛鳥" ], - "name" : "Dimension-3" -}, { - "id" : "73", - "member" : [ "赤西瑛梨華", "キャシー・グラハム" ], - "name" : "ERICATHY" -}, { - "id" : "74", - "member" : [ "宮本フレデリカ", "速水奏" ], - "name" : "FrenchKisS" -}, { - "id" : "75", - "member" : [ "高森藍子", "相葉夕美" ], - "name" : "Flowery" -}, { - "id" : "76", - "member" : [ "双葉杏", "諸星きらり" ], - "name" : "HappyHappyTwin" -}, { - "id" : "77", - "member" : [ "赤城みりあ", "白坂小梅" ], - "name" : "Jumpin'Joker" -}, { - "id" : "78", - "member" : [ "新田美波", "アナスタシア" ], - "name" : "LOVE LAIKA" -}, { - "id" : "79", - "member" : [ "星輝子", "白坂小梅" ], - "name" : "NiGHT ENCOUNTER" -}, { - "id" : "80", - "member" : [ "堀裕子", "安部菜々" ], - "name" : "P・U" -}, { - "id" : "81", - "member" : [ "多田李衣菜", "木村夏樹" ], - "name" : "Rock the Beat" -}, { - "id" : "82", - "member" : [ "白坂小梅", "神崎蘭子" ], - "name" : "Rosenburg Alptraum" -}, { - "id" : "83", - "member" : [ "藤本里奈", "早坂美玲" ], - "name" : "Shock'in Pink!" -}, { - "id" : "84", - "member" : [ "日下部若葉", "三船美優", "市原仁奈" ], - "name" : "アニマルパーク" -}, { - "id" : "85", - "member" : [ "森久保乃々", "星輝子", "佐久間まゆ" ], - "name" : "アンダーザデスク" -}, { - "id" : "86", - "member" : [ "榊原里美", "ヘレン", "野々村そら" ], - "name" : "イタリアンスタイル" -}, { - "id" : "87", - "member" : [ "原田美世", "鷹富士茄子", "姫川友紀" ], - "name" : "ウィンター・F・ドライバーズ" -}, { - "id" : "88", - "member" : [ "桃井あずき", "東郷あい", "片桐早苗" ], - "name" : "桜花小町" -}, { - "id" : "89", - "member" : [ "月宮雅", "岸部彩華", "衛藤美紗希" ], - "name" : "ガールズ・パワー" -}, { - "id" : "90", - "member" : [ "輿水幸子", "白坂小梅", "星輝子" ], - "name" : "カワイイボクと142's" -}, { - "id" : "91", - "member" : [ "緒方智絵里", "神谷奈緒", "諸星きらり" ], - "name" : "京町乙女" -}, { - "id" : "92", - "member" : [ "龍崎薫", "有浦柑奈", "藤居朋" ], - "name" : "ゴスペルシスターズ" -}, { - "id" : "93", - "member" : [ "栗原ネネ", "新田美波", "三好紗南" ], - "name" : "サマーライブセーラー" -}, { - "id" : "94", - "member" : [ "星輝子", "神谷奈緒", "緒方智絵里" ], - "name" : "シャイニングゴッドチェリー" -}, { - "id" : "95", - "member" : [ "遊佐こずえ", "吉岡沙紀", "西島櫂" ], - "name" : "スペーススタイル" -}, { - "id" : "96", - "member" : [ "西園寺琴歌", "橘ありす", "姫川友紀" ], - "name" : "チャレンジクッキング" -}, { - "id" : "97", - "member" : [ "大原みちる", "伊集院惠", "北川真尋" ], - "name" : "ドイツスタイル" -}, { - "id" : "98", - "member" : [ "池袋晶葉", "ライラ", "的場梨沙" ], - "name" : "ニューイヤースタイル" -}, { - "id" : "99", - "member" : [ "村松さくら", "大石泉", "土屋亜子" ], - "name" : "ニューウェーブ" -}, { - "id" : "100", - "member" : [ "井村雪菜", "藤居朋", "杉坂海" ], - "name" : "ハートウォーマー" -}, { - "id" : "101", - "member" : [ "関裕美", "木場真奈美", "喜多見柚" ], - "name" : "ハロウィンヴァンパイア" -}, { - "id" : "102", - "member" : [ "池袋晶葉", "首藤葵", "岡崎泰葉" ], - "name" : "パワフルヒーラーズ" -}, { - "id" : "103", - "member" : [ "今井加奈", "藤原肇", "高森藍子" ], - "name" : "ビビッドカラーエイジ" -}, { - "id" : "104", - "member" : [ "櫻井桃華", "的場梨沙", "橘ありす" ], - "name" : "ももぺあべりー" -}, { - "id" : "105", - "member" : [ "岡崎泰葉", "櫻井桃華", "龍崎薫" ], - "name" : "リトルチェリーブロッサム" -}, { - "id" : "106", - "member" : [ "原田美世", "脇山珠美", "大槻唯" ], - "name" : "レインドロップ" -}, { - "id" : "107", - "member" : [ "多田李衣菜", "三村かな子", "城ヶ崎莉嘉" ], - "name" : "ロッキングガール" -}, { - "id" : "108", - "member" : [ "森久保乃々", "星輝子", "早坂美玲" ], - "name" : "individuals" -}, { - "id" : "109", - "member" : [ "島村卯月", "渋谷凛", "本田未央" ], - "name" : "new generations" -}, { - "id" : "110", - "member" : [ "水木聖來", "松本沙理奈", "太田優" ], - "name" : "アップトゥデイト" -}, { - "id" : "111", - "member" : [ "木場真奈美", "星輝子", "水木聖來" ], - "name" : "アンチェイン・シグナル" -}, { - "id" : "112", - "member" : [ "仙崎恵磨", "藤本里奈", "大槻唯" ], - "name" : "ギャルズパーティー" -}, { - "id" : "113", - "member" : [ "大槻唯", "城ヶ崎美嘉", "藤本里奈" ], - "name" : "セクシーギャルズ" -}, { - "id" : "114", - "member" : [ "成宮由愛", "望月聖", "古賀小春" ], - "name" : "ドリームホープスプリング" -}, { - "id" : "115", - "member" : [ "神谷奈緒", "荒木比奈", "安部菜々" ], - "name" : "虹色ドリーマー" -}, { - "id" : "116", - "member" : [ "前川みく", "高峯のあ", "アナスタシア" ], - "name" : "にゃん・にゃん・にゃん" -}, { - "id" : "117", - "member" : [ "木場真奈美", "吉岡沙紀", "木村夏樹" ], - "name" : "ハードメテオライツ" -}, { - "id" : "118", - "member" : [ "小室千奈美", "松山久美子", "浜川愛結奈" ], - "name" : "ビューティーアリュール" -}, { - "id" : "119", - "member" : [ "桐野アヤ", "小松伊吹", "槙原志保" ], - "name" : "フランメ・ルージュ" -}, { - "id" : "120", - "member" : [ "氏家むつみ", "成宮由愛", "古賀小春" ], - "name" : "ブルームジャーニー" -}, { - "id" : "121", - "member" : [ "大和亜季", "栗原ネネ", "涼宮星花" ], - "name" : "ヘルシーサバイブ" -}, { - "id" : "122", - "member" : [ "西島櫂", "愛野渚", "吉岡沙紀" ], - "name" : "ホットアートジャンピン" -}, { - "id" : "123", - "member" : [ "木村夏樹", "向井拓海", "藤本里奈" ], - "name" : "マッシブライダース" -}, { - "id" : "124", - "member" : [ "高垣楓", "片桐早苗", "川島瑞樹" ], - "name" : "女神たちの夏宴" -}, { - "id" : "125", - "member" : [ "ナターリア", "ケイト", "メアリー・コクラン" ], - "name" : "ユア・フレンズ" -}, { - "id" : "126", - "member" : [ "一ノ瀬志希", "宮本フレデリカ", "塩見周子" ], - "name" : "誘惑イビル" -}, { - "id" : "127", - "member" : [ "佐久間まゆ", "白坂小梅", "北条加蓮" ], - "name" : "落花流水" -}, { - "id" : "128", - "member" : [ "榊原里美", "棟方愛海", "難波笑美" ], - "name" : "ラビュー☆アイス☆マウンテン" -}, { - "id" : "129", - "member" : [ "関裕美", "白菊ほたる", "森久保乃々" ], - "name" : "ワンステップス" -}, { - "id" : "130", - "member" : [ "関裕美", "白菊ほたる", "松尾千鶴" ], - "name" : "GIRLS BE" -}, { - "id" : "131", - "member" : [ "輿水幸子", "小早川紗枝", "姫川友紀" ], - "name" : "KBYD" -}, { - "id" : "132", - "member" : [ "有浦柑奈", "二宮飛鳥", "瀬名詩織" ], - "name" : "thinE/Dasein" -}, { - "id" : "133", - "member" : [ "村松さくら", "大原みちる", "今井加奈" ], - "name" : "スケルツォ・プリマヴェーラ" -}, { - "id" : "134", - "member" : [ "水本ゆかり", "涼宮星花", "西園寺琴歌" ], - "name" : "ノーブルセレブリティ" -}, { - "id" : "135", - "member" : [ "島村卯月", "小日向美穂", "緒方智絵里" ], - "name" : "ピンキーキュート" -}, { - "id" : "136", - "member" : [ "中野有香", "水本ゆかり", "椎名法子" ], - "name" : "メロウ・イエロー" -}, { - "id" : "137", - "member" : [ "三村かな子", "双葉杏", "緒方智絵里" ], - "name" : "CANDY ISLAND" -}, { - "id" : "138", - "member" : [ "島村卯月", "小日向美穂", "五十嵐響子" ], - "name" : "ピンクチェックスクール" -}, { - "id" : "139", - "member" : [ "前川みく", "安部菜々", "緒方智絵里" ], - "name" : "397cherry" -}, { - "id" : "140", - "member" : [ "東郷あい", "川島瑞樹", "吉岡沙紀" ], - "name" : "アイドルミズキ with AS" -}, { - "id" : "141", - "member" : [ "アナスタシア", "鷺沢文香", "高垣楓" ], - "name" : "トランクィル・ウィスパー" -}, { - "id" : "142", - "member" : [ "和久井留美", "服部瞳子", "三船美優" ], - "name" : "バレンタイン反省会" -}, { - "id" : "143", - "member" : [ "大石泉", "浅利七海", "八神マキノ" ], - "name" : "ファタ・モルガーナ" -}, { - "id" : "144", - "member" : [ "渋谷凛", "神谷奈緒", "北条加蓮" ], - "name" : "Triad Primus" -}, { - "id" : "145", - "member" : [ "新田美波", "アナスタシア", "神崎蘭子" ], - "name" : "LOVE LAIKA with Rosenburg Engel" -}, { - "id" : "146", - "member" : [ "本田未央", "矢口美羽", "松山久美子" ], - "name" : "サンセットノスタルジー" -}, { - "id" : "147", - "member" : [ "及川雫", "片桐早苗", "堀裕子" ], - "name" : "セクシーギルティ" -}, { - "id" : "148", - "member" : [ "日野茜", "姫川友紀", "若林智香" ], - "name" : "チアフルボンバーズ" -}, { - "id" : "149", - "member" : [ "諸星きらり", "城ヶ崎莉嘉", "赤城みりあ" ], - "name" : "凸レーション" -}, { - "id" : "150", - "member" : [ "若林智香", "斉藤洋子", "真鍋いつき" ], - "name" : "ヒートアップ☆チアーズ" -}, { - "id" : "151", - "member" : [ "土屋亜子", "矢口美羽", "喜多日菜子" ], - "name" : "ブエナ・スエルテ" -}, { - "id" : "152", - "member" : [ "姫川友紀", "難波笑美", "村上巴" ], - "name" : "B.B.ロワイヤル" -}, { - "id" : "153", - "member" : [ "本田未央", "日野茜", "高森藍子" ], - "name" : "Positive Passion" -}, { - "id" : "154", - "member" : [ "江上椿", "八神マキノ", "小関麗奈", "仙崎恵磨" ], - "name" : "秋色温泉" -}, { - "id" : "155", - "member" : [ "速水奏", "大槻唯", "アナスタシア", "宮本フレデリカ" ], - "name" : "セレクテッド" -}, { - "id" : "156", - "member" : [ "丹羽仁美", "脇山珠美", "浜口あやめ", "首藤葵" ], - "name" : "センゴク☆華☆ランブ" -}, { - "id" : "157", - "member" : [ "柳清良", "棟方愛海", "佐々木千枝", "海老原菜帆" ], - "name" : "デビリッシュゴシック" -}, { - "id" : "158", - "member" : [ "双葉杏", "前川みく", "新田美波", "城ヶ崎莉嘉" ], - "name" : "ハイカラサクラ" -}, { - "id" : "159", - "member" : [ "黒川千秋", "沢田麻理菜", "相馬夏美", "間中美里" ], - "name" : "パステル・カクテル" -}, { - "id" : "160", - "member" : [ "椎名法子", "速水奏", "小松伊吹", "中野有香" ], - "name" : "ハッピーバレンタイン" -}, { - "id" : "161", - "member" : [ "丹羽仁美", "篠原礼", "森久保乃々", "上田鈴帆" ], - "name" : "ハロウィンナイト" -}, { - "id" : "162", - "member" : [ "白菊ほたる", "小室千奈美", "結城晴", "メアリー・コクラン" ], - "name" : "ブライダルセレクション" -}, { - "id" : "163", - "member" : [ "工藤忍", "綾瀬穂乃香", "喜多見柚", "桃井あずき" ], - "name" : "フリルドスクエア" -}, { - "id" : "164", - "member" : [ "横山千佳", "福山舞", "成宮由愛", "小関麗奈" ], - "name" : "マジカルテット" -}, { - "id" : "165", - "member" : [ "櫻井桃華", "大西由里子", "森久保乃々", "杉坂海" ], - "name" : "メルヘンゴシック" -}, { - "id" : "166", - "member" : [ "乙倉悠貴", "相川千夏", "岡崎泰葉", "北川真尋" ], - "name" : "メルヘンアニマルズ" -}, { - "id" : "167", - "member" : [ "伊集院惠", "相馬夏美", "並木芽衣子", "江上椿" ], - "name" : "ロマンティックツアーズ" -}, { - "id" : "168", - "member" : [ "前川みく", "多田李衣菜", "木村夏樹", "安部菜々" ], - "name" : "*(Asterisk) with なつなな" -}, { - "id" : "169", - "member" : [ "多田李衣菜", "ライラ", "冴島清美", "涼宮星花" ], - "name" : "FOUR PIECE" -}, { - "id" : "170", - "member" : [ "涼宮星花", "ケイト", "仙崎恵磨", "メアリー・コクラン" ], - "name" : "UKスタイル" -}, { - "id" : "171", - "member" : [ "東郷あい", "浅野風香", "櫻井桃華", "瀬名詩織" ], - "name" : "Black/White-Roses" -}, { - "id" : "172", - "member" : [ "関裕美", "白菊ほたる", "松尾千鶴", "岡崎泰葉" ], - "name" : "GIRLS BE NEXT STEP" -}, { - "id" : "173", - "member" : [ "三村かな子", "持田亜里沙", "緒方智絵里", "柳瀬美由紀" ], - "name" : "ピンクドットバルーン" -}, { - "id" : "174", - "member" : [ "大槻唯", "姫川友紀", "愛野渚", "龍崎薫" ], - "name" : "カナリアサマー" -}, { - "id" : "175", - "member" : [ "木村夏樹", "沢田麻理菜", "斉藤洋子", "真鍋いつき" ], - "name" : "ライトグリーンセーフ" -}, { - "id" : "176", - "member" : [ "向井拓海", "藤本里奈", "松永涼", "大和亜季", "木村夏樹" ], - "name" : "炎陣" -}, { - "id" : "177", - "member" : [ "古賀小春", "福山舞", "的場梨沙", "村上巴", "結城晴" ], - "name" : "桜舞隊" -}, { - "id" : "178", - "member" : [ "海老原菜帆", "柳瀬美由紀", "脇山珠美", "楊菲菲", "長富蓮実" ], - "name" : "からぱれ" -}, { - "id" : "179", - "member" : [ "道明寺歌鈴", "浜口あやめ", "脇山珠美", "小早川紗枝", "依田芳乃" ], - "name" : "春霞" -}, { - "id" : "180", - "member" : [ "佐久間まゆ", "松永涼", "梅木音葉", "上田鈴帆", "難波笑美" ], - "name" : "ハロウィンパーティー" -}, { - "id" : "181", - "member" : [ "今井加奈", "桐野アヤ", "小室千奈美", "沢田麻理菜", "北川真尋" ], - "name" : "フレッシュアスリーテス" -}, { - "id" : "182", - "member" : [ "横山千佳", "五十嵐響子", "水木聖來", "瀬名詩織", "及川雫" ], - "name" : "マーメイドパラダイス" -}, { - "id" : "183", - "member" : [ "クラリス", "東郷あい", "白坂小梅", "並木芽衣子", "槙原志保" ], - "name" : "メイドコレクション" -}, { - "id" : "184", - "member" : [ "高垣楓", "佐藤心", "安部菜々", "三船美優", "片桐早苗" ], - "name" : "宵乙女" -}, { - "id" : "185", - "member" : [ "速水奏", "塩見周子", "宮本フレデリカ", "一ノ瀬志希", "城ヶ崎美嘉" ], - "name" : "LiPPS" -}, { - "id" : "186", - "member" : [ "双葉杏", "城ヶ崎莉嘉", "二宮飛鳥", "早坂美玲", "白坂小梅" ], - "name" : "LittlePOPS" -}, { - "id" : "187", - "member" : [ "アナスタシア", "神谷奈緒", "中野有香", "前川みく", "星輝子" ], - "name" : "NEX-US" -}, { - "id" : "188", - "member" : [ "三村かな子", "椎名法子", "十時愛梨", "及川雫", "森久保乃々" ], - "name" : "Sweetches" -}, { - "id" : "189", - "member" : [ "新田美波", "鷺沢文香", "橘ありす", "高森藍子", "相葉夕美" ], - "name" : "アインフェリア" -}, { - "id" : "190", - "member" : [ "川島瑞樹", "日野茜", "堀裕子", "上田鈴帆", "難波笑美" ], - "name" : "サマプリ" -}, { - "id" : "191", - "member" : [ "五十嵐響子", "姫川友紀", "水本ゆかり", "諸星きらり", "乙倉悠貴" ], - "name" : "Love Yell" -}, { - "id" : "192", - "member" : [ "佐久間まゆ", "北条加蓮", "小日向美穂", "多田李衣菜", "緒方智絵里" ], - "name" : "Masque:Rade" -}, { - "id" : "193", - "member" : [ "間中美里", "中野有香", "椎名法子", "水本ゆかり", "今井加奈" ], - "name" : "イエローリリー" -}, { - "id" : "194", - "member" : [ "三村かな子", "緒方智絵里", "輿水幸子", "佐久間まゆ", "小早川紗枝" ], - "name" : "サクヤヒメ" -}, { - "id" : "195", - "member" : [ "安部菜々", "島村卯月", "小日向美穂", "双葉杏", "前川みく" ], - "name" : "C5" -}, { - "id" : "196", - "member" : [ "宮本フレデリカ", "一ノ瀬志希", "櫻井桃華", "中野有香", "五十嵐響子" ], - "name" : "la Roseraie" -}, { - "id" : "197", - "member" : [ "渋谷凛", "高垣楓", "神崎蘭子", "多田李衣菜", "新田美波" ], - "name" : "アズール・ムジカ" -}, { - "id" : "198", - "member" : [ "佐々木千枝", "荒木比奈", "川島瑞樹", "上条春菜", "松本沙理奈" ], - "name" : "ブルーナポレオン" -}, { - "id" : "199", - "member" : [ "東郷あい", "桐野アヤ", "相川千夏", "高橋礼子", "黒川千秋" ], - "name" : "レッドバラード" -}, { - "id" : "200", - "member" : [ "鷺沢文香", "速水奏", "橘ありす", "塩見周子", "二宮飛鳥" ], - "name" : "CAERULA" -}, { - "id" : "201", - "member" : [ "アナスタシア", "川島瑞樹", "白坂小梅", "神谷奈緒", "北条加蓮" ], - "name" : "Caskets" -}, { - "id" : "202", - "member" : [ "姫川友紀", "市原仁奈", "片桐早苗", "大槻唯", "相葉夕美" ], - "name" : "サンフラワー" -}, { - "id" : "203", - "member" : [ "十時愛梨", "日野茜", "高森藍子", "星輝子", "堀裕子" ], - "name" : "ゼッケンズ" -}, { - "id" : "204", - "member" : [ "城ヶ崎莉嘉", "諸星きらり", "城ヶ崎美嘉", "本田未央", "赤城みりあ" ], - "name" : "トロピカル☆スターズ" -}, { - "id" : "205", - "member" : [ "十時愛梨", "神崎蘭子", "渋谷凛", "塩見周子", "島村卯月" ], - "name" : "シンデレラガール" -}, { - "id" : "206", - "member" : [ "松本沙理奈", "海老原菜帆", "間中美里", "篠原礼", "兵藤レナ", "西川保奈美" ], - "name" : "セクシーボンデージ" -}, { - "id" : "207", - "member" : [ "柳清良", "佐藤心", "柊志乃", "斉藤洋子", "水野翠", "高橋礼子", "間中美里" ], - "name" : "ムーランルージュ" -}, { - "id" : "208", - "member" : [ "相川千夏", "兵藤レナ", "野々村そら", "仙崎恵磨", "古賀小春", "三好紗南", "大和亜季" ], - "name" : "ロワイヤルスタイル" -}, { - "id" : "209", - "member" : [ "椎名法子", "結城晴", "財前時子", "大原みちる", "吉岡沙紀", "難波笑美", "黒川千秋", "長富蓮実", "桐野アヤ", "藤原肇", "間中美里" ], - "name" : "ロワイヤルスタイルNP" -}, { - "id" : "210", - "member" : [ "クラリス", "服部瞳子", "栗原ネネ", "丹羽仁美", "松本沙理奈", "八神マキノ", "篠原礼", "柳瀬美由紀", "若林智香", "古澤頼子", "福山舞", "衛藤美紗希" ], - "name" : "ロワイヤルスタイルND" -}, { - "id" : "211", - "member" : [ "上田鈴帆", "村松さくら", "北川真尋", "佐城雪美", "冴島清美", "浅野風香" ], - "name" : "ワンダー・フル" -}, { - "id" : "212", - "member" : [ "小日向美穂", "佐久間まゆ", "輿水幸子", "川島瑞樹", "高垣楓", "白坂小梅", "十時愛梨", "城ヶ崎美嘉", "日野茜" ], - "name" : "CINDERELLA GIRLS" -}, { - "id" : "213", - "member" : [ "島村卯月", "渋谷凛", "本田未央", "赤城みりあ", "アナスタシア", "緒方智絵里", "神崎蘭子", "城ヶ崎莉嘉", "多田李衣菜", "新田美波", "双葉杏", "前川みく", "三村かな子", "諸星きらり" ], - "name" : "CINDERELLA PROJECT" -}, { - "id" : "214", - "member" : [ "佐々木千枝", "横山千佳", "福山舞", "龍崎薫", "古賀小春", "橘ありす", "成宮由愛", "日下部若葉", "佐城雪美", "小関麗奈", "柳瀬美由紀", "南条光", "大沼くるみ", "的場梨沙", "市原仁奈", "赤城みりあ", "櫻井桃華", "メアリー・コクラン" ], - "name" : "L.M.B.G" -}, { - "id" : "215", - "member" : [ "速水奏", "塩見周子", "宮本フレデリカ", "鷺沢文香", "大槻唯", "橘ありす", "アナスタシア", "渋谷凛", "神谷奈緒", "北条加蓮" ], - "name" : "Project:Krone" -} ] +[ + { + "id": "0", + "member": [ + "浜口あやめ" + ], + "name": "くノ一あやめ忍法帖" + }, + { + "id": "1", + "member": [ + "神崎蘭子" + ], + "name": "Rosenburg Engel" + }, + { + "id": "2", + "member": [ + "吉岡沙紀", + "小松伊吹" + ], + "name": "アーティスター" + }, + { + "id": "3", + "member": [ + "アナスタシア", + "前川みく" + ], + "name": "あーにゃんみくにゃん" + }, + { + "id": "4", + "member": [ + "櫻井桃華", + "市原仁奈" + ], + "name": "イカバラプリンセス" + }, + { + "id": "5", + "member": [ + "高森藍子", + "道明寺歌鈴" + ], + "name": "インディゴ・ベル" + }, + { + "id": "6", + "member": [ + "難波笑美", + "上田鈴帆" + ], + "name": "笑美と鈴帆の爆笑エブリデイ" + }, + { + "id": "7", + "member": [ + "佐藤心", + "沢田麻理菜" + ], + "name": "エターナルレディエイト" + }, + { + "id": "8", + "member": [ + "江上椿", + "片桐早苗" + ], + "name": "越後小町" + }, + { + "id": "9", + "member": [ + "白坂小梅", + "松永涼" + ], + "name": "エルドリッチ・ロアテラー" + }, + { + "id": "10", + "member": [ + "和久井留美", + "東郷あい" + ], + "name": "エレガントインモラリスト" + }, + { + "id": "11", + "member": [ + "今井加奈", + "三村かな子" + ], + "name": "かな☆かな☆ふぁんしー" + }, + { + "id": "12", + "member": [ + "大西由里子", + "荒木比奈" + ], + "name": "壁サーの花" + }, + { + "id": "13", + "member": [ + "輿水幸子", + "佐藤心" + ], + "name": "カワスウィーティーなボクはぁと(仮)" + }, + { + "id": "14", + "member": [ + "藤原肇", + "鷺沢文香" + ], + "name": "月下氷姫" + }, + { + "id": "15", + "member": [ + "日野茜", + "堀裕子" + ], + "name": "サイキックヒーツ" + }, + { + "id": "16", + "member": [ + "上条春菜", + "荒木比奈" + ], + "name": "サイバーグラス" + }, + { + "id": "17", + "member": [ + "森久保乃々", + "星輝子" + ], + "name": "サイレントスクリーマー" + }, + { + "id": "18", + "member": [ + "大槻唯", + "相川千夏" + ], + "name": "サクラブロッサム" + }, + { + "id": "19", + "member": [ + "浜口あやめ", + "片桐早苗" + ], + "name": "さつきの頃" + }, + { + "id": "20", + "member": [ + "藤原肇", + "依田芳乃" + ], + "name": "山紫水明" + }, + { + "id": "21", + "member": [ + "島村卯月", + "本田未央" + ], + "name": "ジェネレーションオブサマー" + }, + { + "id": "22", + "member": [ + "三船美優", + "安部菜々" + ], + "name": "シャイニー・アーリーデイズ" + }, + { + "id": "23", + "member": [ + "佐藤心", + "安部菜々" + ], + "name": "しゅがしゅが☆み~ん" + }, + { + "id": "24", + "member": [ + "有浦柑奈", + "梅木音葉" + ], + "name": "シンフォニック・ワールド" + }, + { + "id": "25", + "member": [ + "十時愛梨", + "三村かな子" + ], + "name": "スウィートラヴァーズ" + }, + { + "id": "26", + "member": [ + "矢口美羽", + "楊菲菲" + ], + "name": "スクールガールフレンズ" + }, + { + "id": "27", + "member": [ + "中野有香", + "水本ゆかり" + ], + "name": "ストレートフルート" + }, + { + "id": "28", + "member": [ + "堀裕子", + "氏家むつみ" + ], + "name": "スパニッシュスタイル" + }, + { + "id": "29", + "member": [ + "水木聖來", + "松本沙理奈" + ], + "name": "セーラーマリナー" + }, + { + "id": "30", + "member": [ + "丹羽仁美", + "浜口あやめ" + ], + "name": "センゴク☆ランブ" + }, + { + "id": "31", + "member": [ + "ナターリア", + "ライラ" + ], + "name": "ソル・カマル" + }, + { + "id": "32", + "member": [ + "二宮飛鳥", + "神崎蘭子" + ], + "name": "ダークイルミネイト" + }, + { + "id": "33", + "member": [ + "椎名法子", + "大原みちる" + ], + "name": "チーム・フラワー" + }, + { + "id": "34", + "member": [ + "速水奏", + "新田美波" + ], + "name": "デア・アウローラ" + }, + { + "id": "35", + "member": [ + "安斎都", + "古澤頼子" + ], + "name": "ディテクティブヴァーサス" + }, + { + "id": "36", + "member": [ + "塩見周子", + "宮本フレデリカ" + ], + "name": "テンプテーション・アイズ" + }, + { + "id": "37", + "member": [ + "伊集院惠", + "ケイト" + ], + "name": "ナイトブルーレザー" + }, + { + "id": "38", + "member": [ + "浜口あやめ", + "脇山珠美" + ], + "name": "忍武☆繚乱" + }, + { + "id": "39", + "member": [ + "向井拓海", + "藤本里奈" + ], + "name": "ノーティギャルズ" + }, + { + "id": "40", + "member": [ + "五十嵐響子", + "吉岡沙紀" + ], + "name": "ハートハーモナイズ" + }, + { + "id": "41", + "member": [ + "小早川紗枝", + "塩見周子" + ], + "name": "羽衣小町" + }, + { + "id": "42", + "member": [ + "桐野アヤ", + "槙原志保" + ], + "name": "バリスタイル" + }, + { + "id": "43", + "member": [ + "小早川紗枝", + "小日向美穂" + ], + "name": "春色姫君" + }, + { + "id": "44", + "member": [ + "棟方愛海", + "矢口美羽" + ], + "name": "ハワイアンツイン" + }, + { + "id": "45", + "member": [ + "結城晴", + "的場梨沙" + ], + "name": "ビートシューター" + }, + { + "id": "46", + "member": [ + "小関麗奈", + "南条光" + ], + "name": "ヒーローヴァーサス" + }, + { + "id": "47", + "member": [ + "古賀小春", + "結城晴" + ], + "name": "ひつじさんとうさぎさん" + }, + { + "id": "48", + "member": [ + "棟方愛海", + "喜多日菜子" + ], + "name": "日菜子と愛海の妄想ワールド" + }, + { + "id": "49", + "member": [ + "浅野風香", + "奥山沙織" + ], + "name": "ピュアリーツイン" + }, + { + "id": "50", + "member": [ + "城ヶ崎美嘉", + "城ヶ崎莉嘉" + ], + "name": "ファミリアツイン" + }, + { + "id": "51", + "member": [ + "相葉夕美", + "西園寺琴歌" + ], + "name": "フィオレンティナ" + }, + { + "id": "52", + "member": [ + "川島瑞樹", + "村上巴" + ], + "name": "フォーリンシーサイド" + }, + { + "id": "53", + "member": [ + "黒川千秋", + "水野翠" + ], + "name": "ブリヤント・ノワール" + }, + { + "id": "54", + "member": [ + "姫川友紀", + "結城晴" + ], + "name": "ボール・フレンズ" + }, + { + "id": "55", + "member": [ + "速水奏", + "高垣楓" + ], + "name": "ミステリアスアイズ" + }, + { + "id": "56", + "member": [ + "藤居朋", + "堀裕子" + ], + "name": "ミステリアスガールズ" + }, + { + "id": "57", + "member": [ + "二宮飛鳥", + "相葉夕美" + ], + "name": "ミステリックガーデン" + }, + { + "id": "58", + "member": [ + "白菊ほたる", + "鷹富士茄子" + ], + "name": "ミス・フォーチュン" + }, + { + "id": "59", + "member": [ + "古賀小春", + "小関麗奈" + ], + "name": "ムシバレイナと小春ちゃん" + }, + { + "id": "60", + "member": [ + "速水奏", + "北条加蓮" + ], + "name": "モノクロームリリィ" + }, + { + "id": "61", + "member": [ + "櫻井桃華", + "橘ありす" + ], + "name": "ももべりー" + }, + { + "id": "62", + "member": [ + "桐野アヤ", + "遊佐こずえ" + ], + "name": "ようせいさんとおねえさん" + }, + { + "id": "63", + "member": [ + "高垣楓", + "並木芽衣子" + ], + "name": "ラブリーダイナーズ" + }, + { + "id": "64", + "member": [ + "南条光", + "横山千佳" + ], + "name": "リトルヒーロー" + }, + { + "id": "65", + "member": [ + "宮本フレデリカ", + "一ノ瀬志希" + ], + "name": "レイジー・レイジー" + }, + { + "id": "66", + "member": [ + "橘ありす", + "村上巴" + ], + "name": "レッドベリィズ" + }, + { + "id": "67", + "member": [ + "高橋礼子", + "木場真奈美" + ], + "name": "レディビースト" + }, + { + "id": "68", + "member": [ + "池袋晶葉", + "ライラ" + ], + "name": "ロボフレンズ" + }, + { + "id": "69", + "member": [ + "高森藍子", + "十時愛梨" + ], + "name": "Ai's" + }, + { + "id": "70", + "member": [ + "前川みく", + "多田李衣菜" + ], + "name": "*(Asterisk)" + }, + { + "id": "71", + "member": [ + "及川雫", + "大沼くるみ" + ], + "name": "B.B" + }, + { + "id": "72", + "member": [ + "一ノ瀬志希", + "二宮飛鳥" + ], + "name": "Dimension-3" + }, + { + "id": "73", + "member": [ + "赤西瑛梨華", + "キャシー・グラハム" + ], + "name": "ERICATHY" + }, + { + "id": "74", + "member": [ + "宮本フレデリカ", + "速水奏" + ], + "name": "FrenchKisS" + }, + { + "id": "75", + "member": [ + "高森藍子", + "相葉夕美" + ], + "name": "Flowery" + }, + { + "id": "76", + "member": [ + "双葉杏", + "諸星きらり" + ], + "name": "HappyHappyTwin" + }, + { + "id": "77", + "member": [ + "赤城みりあ", + "白坂小梅" + ], + "name": "Jumpin'Joker" + }, + { + "id": "78", + "member": [ + "新田美波", + "アナスタシア" + ], + "name": "LOVE LAIKA" + }, + { + "id": "79", + "member": [ + "星輝子", + "白坂小梅" + ], + "name": "NiGHT ENCOUNTER" + }, + { + "id": "80", + "member": [ + "堀裕子", + "安部菜々" + ], + "name": "P・U" + }, + { + "id": "81", + "member": [ + "多田李衣菜", + "木村夏樹" + ], + "name": "Rock the Beat" + }, + { + "id": "82", + "member": [ + "白坂小梅", + "神崎蘭子" + ], + "name": "Rosenburg Alptraum" + }, + { + "id": "83", + "member": [ + "藤本里奈", + "早坂美玲" + ], + "name": "Shock'in Pink!" + }, + { + "id": "84", + "member": [ + "日下部若葉", + "三船美優", + "市原仁奈" + ], + "name": "アニマルパーク" + }, + { + "id": "85", + "member": [ + "森久保乃々", + "星輝子", + "佐久間まゆ" + ], + "name": "アンダーザデスク" + }, + { + "id": "86", + "member": [ + "榊原里美", + "ヘレン", + "野々村そら" + ], + "name": "イタリアンスタイル" + }, + { + "id": "87", + "member": [ + "原田美世", + "鷹富士茄子", + "姫川友紀" + ], + "name": "ウィンター・F・ドライバーズ" + }, + { + "id": "88", + "member": [ + "桃井あずき", + "東郷あい", + "片桐早苗" + ], + "name": "桜花小町" + }, + { + "id": "89", + "member": [ + "月宮雅", + "岸部彩華", + "衛藤美紗希" + ], + "name": "ガールズ・パワー" + }, + { + "id": "90", + "member": [ + "輿水幸子", + "白坂小梅", + "星輝子" + ], + "name": "カワイイボクと142's" + }, + { + "id": "91", + "member": [ + "緒方智絵里", + "神谷奈緒", + "諸星きらり" + ], + "name": "京町乙女" + }, + { + "id": "92", + "member": [ + "龍崎薫", + "有浦柑奈", + "藤居朋" + ], + "name": "ゴスペルシスターズ" + }, + { + "id": "93", + "member": [ + "栗原ネネ", + "新田美波", + "三好紗南" + ], + "name": "サマーライブセーラー" + }, + { + "id": "94", + "member": [ + "星輝子", + "神谷奈緒", + "緒方智絵里" + ], + "name": "シャイニングゴッドチェリー" + }, + { + "id": "95", + "member": [ + "遊佐こずえ", + "吉岡沙紀", + "西島櫂" + ], + "name": "スペーススタイル" + }, + { + "id": "96", + "member": [ + "西園寺琴歌", + "橘ありす", + "姫川友紀" + ], + "name": "チャレンジクッキング" + }, + { + "id": "97", + "member": [ + "大原みちる", + "伊集院惠", + "北川真尋" + ], + "name": "ドイツスタイル" + }, + { + "id": "98", + "member": [ + "池袋晶葉", + "ライラ", + "的場梨沙" + ], + "name": "ニューイヤースタイル" + }, + { + "id": "99", + "member": [ + "村松さくら", + "大石泉", + "土屋亜子" + ], + "name": "ニューウェーブ" + }, + { + "id": "100", + "member": [ + "井村雪菜", + "藤居朋", + "杉坂海" + ], + "name": "ハートウォーマー" + }, + { + "id": "101", + "member": [ + "関裕美", + "木場真奈美", + "喜多見柚" + ], + "name": "ハロウィンヴァンパイア" + }, + { + "id": "102", + "member": [ + "池袋晶葉", + "首藤葵", + "岡崎泰葉" + ], + "name": "パワフルヒーラーズ" + }, + { + "id": "103", + "member": [ + "今井加奈", + "藤原肇", + "高森藍子" + ], + "name": "ビビッドカラーエイジ" + }, + { + "id": "104", + "member": [ + "櫻井桃華", + "的場梨沙", + "橘ありす" + ], + "name": "ももぺあべりー" + }, + { + "id": "105", + "member": [ + "岡崎泰葉", + "櫻井桃華", + "龍崎薫" + ], + "name": "リトルチェリーブロッサム" + }, + { + "id": "106", + "member": [ + "原田美世", + "脇山珠美", + "大槻唯" + ], + "name": "レインドロップ" + }, + { + "id": "107", + "member": [ + "多田李衣菜", + "三村かな子", + "城ヶ崎莉嘉" + ], + "name": "ロッキングガール" + }, + { + "id": "108", + "member": [ + "森久保乃々", + "星輝子", + "早坂美玲" + ], + "name": "individuals" + }, + { + "id": "109", + "member": [ + "島村卯月", + "渋谷凛", + "本田未央" + ], + "name": "new generations" + }, + { + "id": "110", + "member": [ + "水木聖來", + "松本沙理奈", + "太田優" + ], + "name": "アップトゥデイト" + }, + { + "id": "111", + "member": [ + "木場真奈美", + "星輝子", + "水木聖來" + ], + "name": "アンチェイン・シグナル" + }, + { + "id": "112", + "member": [ + "仙崎恵磨", + "藤本里奈", + "大槻唯" + ], + "name": "ギャルズパーティー" + }, + { + "id": "113", + "member": [ + "大槻唯", + "城ヶ崎美嘉", + "藤本里奈" + ], + "name": "セクシーギャルズ" + }, + { + "id": "114", + "member": [ + "成宮由愛", + "望月聖", + "古賀小春" + ], + "name": "ドリームホープスプリング" + }, + { + "id": "115", + "member": [ + "神谷奈緒", + "荒木比奈", + "安部菜々" + ], + "name": "虹色ドリーマー" + }, + { + "id": "116", + "member": [ + "前川みく", + "高峯のあ", + "アナスタシア" + ], + "name": "にゃん・にゃん・にゃん" + }, + { + "id": "117", + "member": [ + "木場真奈美", + "吉岡沙紀", + "木村夏樹" + ], + "name": "ハードメテオライツ" + }, + { + "id": "118", + "member": [ + "小室千奈美", + "松山久美子", + "浜川愛結奈" + ], + "name": "ビューティーアリュール" + }, + { + "id": "119", + "member": [ + "桐野アヤ", + "小松伊吹", + "槙原志保" + ], + "name": "フランメ・ルージュ" + }, + { + "id": "120", + "member": [ + "氏家むつみ", + "成宮由愛", + "古賀小春" + ], + "name": "ブルームジャーニー" + }, + { + "id": "121", + "member": [ + "大和亜季", + "栗原ネネ", + "涼宮星花" + ], + "name": "ヘルシーサバイブ" + }, + { + "id": "122", + "member": [ + "西島櫂", + "愛野渚", + "吉岡沙紀" + ], + "name": "ホットアートジャンピン" + }, + { + "id": "123", + "member": [ + "木村夏樹", + "向井拓海", + "藤本里奈" + ], + "name": "マッシブライダース" + }, + { + "id": "124", + "member": [ + "高垣楓", + "片桐早苗", + "川島瑞樹" + ], + "name": "女神たちの夏宴" + }, + { + "id": "125", + "member": [ + "ナターリア", + "ケイト", + "メアリー・コクラン" + ], + "name": "ユア・フレンズ" + }, + { + "id": "126", + "member": [ + "一ノ瀬志希", + "宮本フレデリカ", + "塩見周子" + ], + "name": "誘惑イビル" + }, + { + "id": "127", + "member": [ + "佐久間まゆ", + "白坂小梅", + "北条加蓮" + ], + "name": "落花流水" + }, + { + "id": "128", + "member": [ + "榊原里美", + "棟方愛海", + "難波笑美" + ], + "name": "ラビュー☆アイス☆マウンテン" + }, + { + "id": "129", + "member": [ + "関裕美", + "白菊ほたる", + "森久保乃々" + ], + "name": "ワンステップス" + }, + { + "id": "130", + "member": [ + "関裕美", + "白菊ほたる", + "松尾千鶴" + ], + "name": "GIRLS BE" + }, + { + "id": "131", + "member": [ + "輿水幸子", + "小早川紗枝", + "姫川友紀" + ], + "name": "KBYD" + }, + { + "id": "132", + "member": [ + "有浦柑奈", + "二宮飛鳥", + "瀬名詩織" + ], + "name": "thinE/Dasein" + }, + { + "id": "133", + "member": [ + "村松さくら", + "大原みちる", + "今井加奈" + ], + "name": "スケルツォ・プリマヴェーラ" + }, + { + "id": "134", + "member": [ + "水本ゆかり", + "涼宮星花", + "西園寺琴歌" + ], + "name": "ノーブルセレブリティ" + }, + { + "id": "135", + "member": [ + "島村卯月", + "小日向美穂", + "緒方智絵里" + ], + "name": "ピンキーキュート" + }, + { + "id": "136", + "member": [ + "中野有香", + "水本ゆかり", + "椎名法子" + ], + "name": "メロウ・イエロー" + }, + { + "id": "137", + "member": [ + "三村かな子", + "双葉杏", + "緒方智絵里" + ], + "name": "CANDY ISLAND" + }, + { + "id": "138", + "member": [ + "島村卯月", + "小日向美穂", + "五十嵐響子" + ], + "name": "ピンクチェックスクール" + }, + { + "id": "139", + "member": [ + "前川みく", + "安部菜々", + "緒方智絵里" + ], + "name": "397cherry" + }, + { + "id": "140", + "member": [ + "東郷あい", + "川島瑞樹", + "吉岡沙紀" + ], + "name": "アイドルミズキ with AS" + }, + { + "id": "141", + "member": [ + "アナスタシア", + "鷺沢文香", + "高垣楓" + ], + "name": "トランクィル・ウィスパー" + }, + { + "id": "142", + "member": [ + "和久井留美", + "服部瞳子", + "三船美優" + ], + "name": "バレンタイン反省会" + }, + { + "id": "143", + "member": [ + "大石泉", + "浅利七海", + "八神マキノ" + ], + "name": "ファタ・モルガーナ" + }, + { + "id": "144", + "member": [ + "渋谷凛", + "神谷奈緒", + "北条加蓮" + ], + "name": "Triad Primus" + }, + { + "id": "145", + "member": [ + "新田美波", + "アナスタシア", + "神崎蘭子" + ], + "name": "LOVE LAIKA with Rosenburg Engel" + }, + { + "id": "146", + "member": [ + "本田未央", + "矢口美羽", + "松山久美子" + ], + "name": "サンセットノスタルジー" + }, + { + "id": "147", + "member": [ + "及川雫", + "片桐早苗", + "堀裕子" + ], + "name": "セクシーギルティ" + }, + { + "id": "148", + "member": [ + "日野茜", + "姫川友紀", + "若林智香" + ], + "name": "チアフルボンバーズ" + }, + { + "id": "149", + "member": [ + "諸星きらり", + "城ヶ崎莉嘉", + "赤城みりあ" + ], + "name": "凸レーション" + }, + { + "id": "150", + "member": [ + "若林智香", + "斉藤洋子", + "真鍋いつき" + ], + "name": "ヒートアップ☆チアーズ" + }, + { + "id": "151", + "member": [ + "土屋亜子", + "矢口美羽", + "喜多日菜子" + ], + "name": "ブエナ・スエルテ" + }, + { + "id": "152", + "member": [ + "姫川友紀", + "難波笑美", + "村上巴" + ], + "name": "B.B.ロワイヤル" + }, + { + "id": "153", + "member": [ + "本田未央", + "日野茜", + "高森藍子" + ], + "name": "Positive Passion" + }, + { + "id": "154", + "member": [ + "江上椿", + "八神マキノ", + "小関麗奈", + "仙崎恵磨" + ], + "name": "秋色温泉" + }, + { + "id": "155", + "member": [ + "速水奏", + "大槻唯", + "アナスタシア", + "宮本フレデリカ" + ], + "name": "セレクテッド" + }, + { + "id": "156", + "member": [ + "丹羽仁美", + "脇山珠美", + "浜口あやめ", + "首藤葵" + ], + "name": "センゴク☆華☆ランブ" + }, + { + "id": "157", + "member": [ + "柳清良", + "棟方愛海", + "佐々木千枝", + "海老原菜帆" + ], + "name": "デビリッシュゴシック" + }, + { + "id": "158", + "member": [ + "双葉杏", + "前川みく", + "新田美波", + "城ヶ崎莉嘉" + ], + "name": "ハイカラサクラ" + }, + { + "id": "159", + "member": [ + "黒川千秋", + "沢田麻理菜", + "相馬夏美", + "間中美里" + ], + "name": "パステル・カクテル" + }, + { + "id": "160", + "member": [ + "椎名法子", + "速水奏", + "小松伊吹", + "中野有香" + ], + "name": "ハッピーバレンタイン" + }, + { + "id": "161", + "member": [ + "丹羽仁美", + "篠原礼", + "森久保乃々", + "上田鈴帆" + ], + "name": "ハロウィンナイト" + }, + { + "id": "162", + "member": [ + "白菊ほたる", + "小室千奈美", + "結城晴", + "メアリー・コクラン" + ], + "name": "ブライダルセレクション" + }, + { + "id": "163", + "member": [ + "工藤忍", + "綾瀬穂乃香", + "喜多見柚", + "桃井あずき" + ], + "name": "フリルドスクエア" + }, + { + "id": "164", + "member": [ + "横山千佳", + "福山舞", + "成宮由愛", + "小関麗奈" + ], + "name": "マジカルテット" + }, + { + "id": "165", + "member": [ + "櫻井桃華", + "大西由里子", + "森久保乃々", + "杉坂海" + ], + "name": "メルヘンゴシック" + }, + { + "id": "166", + "member": [ + "乙倉悠貴", + "相川千夏", + "岡崎泰葉", + "北川真尋" + ], + "name": "メルヘンアニマルズ" + }, + { + "id": "167", + "member": [ + "伊集院惠", + "相馬夏美", + "並木芽衣子", + "江上椿" + ], + "name": "ロマンティックツアーズ" + }, + { + "id": "168", + "member": [ + "前川みく", + "多田李衣菜", + "木村夏樹", + "安部菜々" + ], + "name": "*(Asterisk) with なつなな" + }, + { + "id": "169", + "member": [ + "多田李衣菜", + "ライラ", + "冴島清美", + "涼宮星花" + ], + "name": "FOUR PIECE" + }, + { + "id": "170", + "member": [ + "涼宮星花", + "ケイト", + "仙崎恵磨", + "メアリー・コクラン" + ], + "name": "UKスタイル" + }, + { + "id": "171", + "member": [ + "東郷あい", + "浅野風香", + "櫻井桃華", + "瀬名詩織" + ], + "name": "Black/White-Roses" + }, + { + "id": "172", + "member": [ + "関裕美", + "白菊ほたる", + "松尾千鶴", + "岡崎泰葉" + ], + "name": "GIRLS BE NEXT STEP" + }, + { + "id": "173", + "member": [ + "三村かな子", + "持田亜里沙", + "緒方智絵里", + "柳瀬美由紀" + ], + "name": "ピンクドットバルーン" + }, + { + "id": "174", + "member": [ + "大槻唯", + "姫川友紀", + "愛野渚", + "龍崎薫" + ], + "name": "カナリアサマー" + }, + { + "id": "175", + "member": [ + "木村夏樹", + "沢田麻理菜", + "斉藤洋子", + "真鍋いつき" + ], + "name": "ライトグリーンセーフ" + }, + { + "id": "176", + "member": [ + "向井拓海", + "藤本里奈", + "松永涼", + "大和亜季", + "木村夏樹" + ], + "name": "炎陣" + }, + { + "id": "177", + "member": [ + "古賀小春", + "福山舞", + "的場梨沙", + "村上巴", + "結城晴" + ], + "name": "桜舞隊" + }, + { + "id": "178", + "member": [ + "海老原菜帆", + "柳瀬美由紀", + "脇山珠美", + "楊菲菲", + "長富蓮実" + ], + "name": "からぱれ" + }, + { + "id": "179", + "member": [ + "道明寺歌鈴", + "浜口あやめ", + "脇山珠美", + "小早川紗枝", + "依田芳乃" + ], + "name": "春霞" + }, + { + "id": "180", + "member": [ + "佐久間まゆ", + "松永涼", + "梅木音葉", + "上田鈴帆", + "難波笑美" + ], + "name": "ハロウィンパーティー" + }, + { + "id": "181", + "member": [ + "今井加奈", + "桐野アヤ", + "小室千奈美", + "沢田麻理菜", + "北川真尋" + ], + "name": "フレッシュアスリーテス" + }, + { + "id": "182", + "member": [ + "横山千佳", + "五十嵐響子", + "水木聖來", + "瀬名詩織", + "及川雫" + ], + "name": "マーメイドパラダイス" + }, + { + "id": "183", + "member": [ + "クラリス", + "東郷あい", + "白坂小梅", + "並木芽衣子", + "槙原志保" + ], + "name": "メイドコレクション" + }, + { + "id": "184", + "member": [ + "高垣楓", + "佐藤心", + "安部菜々", + "三船美優", + "片桐早苗" + ], + "name": "宵乙女" + }, + { + "id": "185", + "member": [ + "速水奏", + "塩見周子", + "宮本フレデリカ", + "一ノ瀬志希", + "城ヶ崎美嘉" + ], + "name": "LiPPS" + }, + { + "id": "186", + "member": [ + "双葉杏", + "城ヶ崎莉嘉", + "二宮飛鳥", + "早坂美玲", + "白坂小梅" + ], + "name": "LittlePOPS" + }, + { + "id": "187", + "member": [ + "アナスタシア", + "神谷奈緒", + "中野有香", + "前川みく", + "星輝子" + ], + "name": "NEX-US" + }, + { + "id": "188", + "member": [ + "三村かな子", + "椎名法子", + "十時愛梨", + "及川雫", + "森久保乃々" + ], + "name": "Sweetches" + }, + { + "id": "189", + "member": [ + "新田美波", + "鷺沢文香", + "橘ありす", + "高森藍子", + "相葉夕美" + ], + "name": "アインフェリア" + }, + { + "id": "190", + "member": [ + "川島瑞樹", + "日野茜", + "堀裕子", + "上田鈴帆", + "難波笑美" + ], + "name": "サマプリ" + }, + { + "id": "191", + "member": [ + "五十嵐響子", + "姫川友紀", + "水本ゆかり", + "諸星きらり", + "乙倉悠貴" + ], + "name": "Love Yell" + }, + { + "id": "192", + "member": [ + "佐久間まゆ", + "北条加蓮", + "小日向美穂", + "多田李衣菜", + "緒方智絵里" + ], + "name": "Masque:Rade" + }, + { + "id": "193", + "member": [ + "間中美里", + "中野有香", + "椎名法子", + "水本ゆかり", + "今井加奈" + ], + "name": "イエローリリー" + }, + { + "id": "194", + "member": [ + "三村かな子", + "緒方智絵里", + "輿水幸子", + "佐久間まゆ", + "小早川紗枝" + ], + "name": "サクヤヒメ" + }, + { + "id": "195", + "member": [ + "安部菜々", + "島村卯月", + "小日向美穂", + "双葉杏", + "前川みく" + ], + "name": "C5" + }, + { + "id": "196", + "member": [ + "宮本フレデリカ", + "一ノ瀬志希", + "櫻井桃華", + "中野有香", + "五十嵐響子" + ], + "name": "la Roseraie" + }, + { + "id": "197", + "member": [ + "渋谷凛", + "高垣楓", + "神崎蘭子", + "多田李衣菜", + "新田美波" + ], + "name": "アズール・ムジカ" + }, + { + "id": "198", + "member": [ + "佐々木千枝", + "荒木比奈", + "川島瑞樹", + "上条春菜", + "松本沙理奈" + ], + "name": "ブルーナポレオン" + }, + { + "id": "199", + "member": [ + "東郷あい", + "桐野アヤ", + "相川千夏", + "高橋礼子", + "黒川千秋" + ], + "name": "レッドバラード" + }, + { + "id": "200", + "member": [ + "鷺沢文香", + "速水奏", + "橘ありす", + "塩見周子", + "二宮飛鳥" + ], + "name": "CAERULA" + }, + { + "id": "201", + "member": [ + "アナスタシア", + "川島瑞樹", + "白坂小梅", + "神谷奈緒", + "北条加蓮" + ], + "name": "Caskets" + }, + { + "id": "202", + "member": [ + "姫川友紀", + "市原仁奈", + "片桐早苗", + "大槻唯", + "相葉夕美" + ], + "name": "サンフラワー" + }, + { + "id": "203", + "member": [ + "十時愛梨", + "日野茜", + "高森藍子", + "星輝子", + "堀裕子" + ], + "name": "ゼッケンズ" + }, + { + "id": "204", + "member": [ + "城ヶ崎莉嘉", + "諸星きらり", + "城ヶ崎美嘉", + "本田未央", + "赤城みりあ" + ], + "name": "トロピカル☆スターズ" + }, + { + "id": "205", + "member": [ + "十時愛梨", + "神崎蘭子", + "渋谷凛", + "塩見周子", + "島村卯月" + ], + "name": "シンデレラガール" + }, + { + "id": "206", + "member": [ + "松本沙理奈", + "海老原菜帆", + "間中美里", + "篠原礼", + "兵藤レナ", + "西川保奈美" + ], + "name": "セクシーボンデージ" + }, + { + "id": "207", + "member": [ + "柳清良", + "佐藤心", + "柊志乃", + "斉藤洋子", + "水野翠", + "高橋礼子", + "間中美里" + ], + "name": "ムーランルージュ" + }, + { + "id": "208", + "member": [ + "相川千夏", + "兵藤レナ", + "野々村そら", + "仙崎恵磨", + "古賀小春", + "三好紗南", + "大和亜季" + ], + "name": "ロワイヤルスタイル" + }, + { + "id": "209", + "member": [ + "椎名法子", + "結城晴", + "財前時子", + "大原みちる", + "吉岡沙紀", + "難波笑美", + "黒川千秋", + "長富蓮実", + "桐野アヤ", + "藤原肇", + "間中美里" + ], + "name": "ロワイヤルスタイルNP" + }, + { + "id": "210", + "member": [ + "クラリス", + "服部瞳子", + "栗原ネネ", + "丹羽仁美", + "松本沙理奈", + "八神マキノ", + "篠原礼", + "柳瀬美由紀", + "若林智香", + "古澤頼子", + "福山舞", + "衛藤美紗希" + ], + "name": "ロワイヤルスタイルND" + }, + { + "id": "211", + "member": [ + "上田鈴帆", + "村松さくら", + "北川真尋", + "佐城雪美", + "冴島清美", + "浅野風香" + ], + "name": "ワンダー・フル" + }, + { + "id": "212", + "member": [ + "小日向美穂", + "佐久間まゆ", + "輿水幸子", + "川島瑞樹", + "高垣楓", + "白坂小梅", + "十時愛梨", + "城ヶ崎美嘉", + "日野茜" + ], + "name": "CINDERELLA GIRLS" + }, + { + "id": "213", + "member": [ + "島村卯月", + "渋谷凛", + "本田未央", + "赤城みりあ", + "アナスタシア", + "緒方智絵里", + "神崎蘭子", + "城ヶ崎莉嘉", + "多田李衣菜", + "新田美波", + "双葉杏", + "前川みく", + "三村かな子", + "諸星きらり" + ], + "name": "CINDERELLA PROJECT" + }, + { + "id": "214", + "member": [ + "佐々木千枝", + "横山千佳", + "福山舞", + "龍崎薫", + "古賀小春", + "橘ありす", + "成宮由愛", + "日下部若葉", + "佐城雪美", + "小関麗奈", + "柳瀬美由紀", + "南条光", + "大沼くるみ", + "的場梨沙", + "市原仁奈", + "赤城みりあ", + "櫻井桃華", + "メアリー・コクラン" + ], + "name": "L.M.B.G" + }, + { + "id": "215", + "member": [ + "速水奏", + "塩見周子", + "宮本フレデリカ", + "鷺沢文香", + "大槻唯", + "橘ありす", + "アナスタシア", + "渋谷凛", + "神谷奈緒", + "北条加蓮" + ], + "name": "Project:Krone" + } +] \ No newline at end of file From 2691a7c315760679b7458259875ea2ee2793e075 Mon Sep 17 00:00:00 2001 From: ne-peer Date: Tue, 5 Dec 2017 15:42:36 +0900 Subject: [PATCH 14/19] [update] overview new property cards --- src/app/models/dere/overview.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/models/dere/overview.ts b/src/app/models/dere/overview.ts index e29deff..3f68b8d 100644 --- a/src/app/models/dere/overview.ts +++ b/src/app/models/dere/overview.ts @@ -4,7 +4,8 @@ export class Overview { public id: string, public name: string, public kana: string, - public latest_hash: string + public latest_hash: string, + public cards: number[] ) { } } From ff85b784e4debff2cc33c524dc96df13e0516060 Mon Sep 17 00:00:00 2001 From: ne-peer Date: Tue, 5 Dec 2017 15:43:00 +0900 Subject: [PATCH 15/19] [update] once to list of sldb card fetch --- .../services/api/starlightdb/card.service.ts | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/src/app/services/api/starlightdb/card.service.ts b/src/app/services/api/starlightdb/card.service.ts index c0744fe..1926e7f 100644 --- a/src/app/services/api/starlightdb/card.service.ts +++ b/src/app/services/api/starlightdb/card.service.ts @@ -7,7 +7,7 @@ import { Card } from '../../../models/api/starlightdb/card/card'; @Injectable() export class CardService { - public card: Card; + public cards: Card[]; constructor(private http: Http) { } @@ -18,7 +18,7 @@ export class CardService { * @param string incProfile * @return void */ - public findCard(cardNo: number): void { + public findCard(cardNo: string): void { // request url const requestUrl = Hosts.API_HOST_STARLIGHTDB + '/api/v1/card_t/' + cardNo; @@ -29,15 +29,16 @@ export class CardService { return ''; } - const res = data.json()['result'][0]; + // json to object + const res = data.json()['result']; const ignoreFields = ['rarity', 'chara', 'skill', 'leadSkill', 'valist']; - /** - * キャラクター情報をシリアライズ - */ - const card = new Card(); - card.fillFromJSON(res, true, ignoreFields); - this.card = card; + for (const oneCard of res) { + const card = new Card(); + card.fillFromJSON(oneCard, true, ignoreFields); + + this.cards.push(card); + } }); } From a5bff8ba35fb4215628f2223d29ac05dd826126e Mon Sep 17 00:00:00 2001 From: ne-peer Date: Tue, 5 Dec 2017 16:01:10 +0900 Subject: [PATCH 16/19] =?UTF-8?q?[update]=20dere-detail=E3=81=A7starlightd?= =?UTF-8?q?b.card=5Ft=E3=82=92=E5=8F=96=E5=BE=97=E3=81=99=E3=82=8B?= =?UTF-8?q?=E5=87=A6=E7=90=86=E3=82=92=E5=AE=9F=E8=A3=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dere-detail/dere-detail.component.html | 4 +-- .../dere-detail/dere-detail.component.ts | 34 +++++++++++++++---- src/app/models/dere/overview.ts | 2 +- .../services/api/starlightdb/card.service.ts | 5 ++- 4 files changed, 34 insertions(+), 11 deletions(-) diff --git a/src/app/components/manage/dere-detail/dere-detail.component.html b/src/app/components/manage/dere-detail/dere-detail.component.html index f2c4944..d43ffcb 100644 --- a/src/app/components/manage/dere-detail/dere-detail.component.html +++ b/src/app/components/manage/dere-detail/dere-detail.component.html @@ -5,8 +5,8 @@
-
diff --git a/src/app/components/manage/dere-detail/dere-detail.component.ts b/src/app/components/manage/dere-detail/dere-detail.component.ts index 0bd8e81..2a03846 100644 --- a/src/app/components/manage/dere-detail/dere-detail.component.ts +++ b/src/app/components/manage/dere-detail/dere-detail.component.ts @@ -5,15 +5,15 @@ import { MatSnackBar } from '@angular/material'; import { Overview } from '../../../models/dere/overview'; import { Idol } from '../../../models/dere/idol'; -import { UnitUtilService } from '../../../services/manage/unit-util.service'; import { ImasdbService } from '../../../services/api/imasdb.service'; import { GoToComponent } from '../../action/snack/go-to/go-to.component'; +import { CardService } from '../../../services/api/starlightdb/card.service'; @Component({ selector: 'app-dere-detail', templateUrl: './dere-detail.component.html', styleUrls: ['./dere-detail.component.css'], - providers: [UnitUtilService, ImasdbService], + providers: [ImasdbService, CardService], entryComponents: [GoToComponent] }) export class DereDetailComponent { @@ -30,20 +30,40 @@ export class DereDetailComponent { * コンストラクタ */ constructor(private activatedRoute: ActivatedRoute, private db: AngularFireDatabase, - private unitUtil: UnitUtilService, private imasdb: ImasdbService, public snackBar: MatSnackBar) { + private imasdb: ImasdbService, private sldbCard: CardService, public snackBar: MatSnackBar) { this.db.list('/core/dere_overview').valueChanges().subscribe(ov => this.overviews = ov); this.db.list('/core/dere_list').valueChanges().subscribe(idols => this.idols = idols); + // StarlightAPIからCardsを取得する処理 + const cardsFetch = (cards: number[]) => { + const commaCards: string = cards.join(); + this.sldbCard.findCard(commaCards); + }; + // Sulg取得&idolのdetail取得 this.activatedRoute.params.subscribe((params: Params) => { const requestName: string = params['name']; - this.db.object(`/core/dere_overview/${requestName}`).valueChanges().subscribe(ov => { - this.overview = ov; - this.db.object(`/core/dere_list/${ov.id}`).valueChanges().subscribe(idol => this.idol = idol); + const fetchFirebasePromise = () => { + return new Promise(resolve => { + // fetch firebase + this.db.object(`/core/dere_overview/${requestName}`).valueChanges().subscribe(ov => { + this.overview = ov; + this.db.object(`/core/dere_list/${ov.id}`).valueChanges().subscribe(idol => this.idol = idol); + + resolve(ov); + }); + }); + }; + + fetchFirebasePromise().then((ov: Overview) => { + // fetch starlightdb api + console.log(ov); + cardsFetch(ov.sldb_cards); }); + // fetch imasdb api this.imasdb.findCharInfo(requestName, true); }); } @@ -85,6 +105,6 @@ export class DereDetailComponent { } // かいはつよう - get diagnostic() { return JSON.stringify(this.imasdb.char); } + get diagnostic() { return JSON.stringify(this.sldbCard.cards); } } diff --git a/src/app/models/dere/overview.ts b/src/app/models/dere/overview.ts index 3f68b8d..079584c 100644 --- a/src/app/models/dere/overview.ts +++ b/src/app/models/dere/overview.ts @@ -5,7 +5,7 @@ export class Overview { public name: string, public kana: string, public latest_hash: string, - public cards: number[] + public sldb_cards: number[] ) { } } diff --git a/src/app/services/api/starlightdb/card.service.ts b/src/app/services/api/starlightdb/card.service.ts index 1926e7f..40f2047 100644 --- a/src/app/services/api/starlightdb/card.service.ts +++ b/src/app/services/api/starlightdb/card.service.ts @@ -33,12 +33,15 @@ export class CardService { const res = data.json()['result']; const ignoreFields = ['rarity', 'chara', 'skill', 'leadSkill', 'valist']; + const fetchedCards: Card[] = []; for (const oneCard of res) { const card = new Card(); card.fillFromJSON(oneCard, true, ignoreFields); - this.cards.push(card); + fetchedCards.push(card); } + + this.cards = fetchedCards; }); } From 7693d7ae61e9a8ffe46149d9c7255fa47b66b44b Mon Sep 17 00:00:00 2001 From: ne-peer Date: Tue, 5 Dec 2017 16:06:55 +0900 Subject: [PATCH 17/19] [fix] delete debug code --- src/app/components/manage/dere-detail/dere-detail.component.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app/components/manage/dere-detail/dere-detail.component.ts b/src/app/components/manage/dere-detail/dere-detail.component.ts index 2a03846..bc598c2 100644 --- a/src/app/components/manage/dere-detail/dere-detail.component.ts +++ b/src/app/components/manage/dere-detail/dere-detail.component.ts @@ -59,7 +59,6 @@ export class DereDetailComponent { fetchFirebasePromise().then((ov: Overview) => { // fetch starlightdb api - console.log(ov); cardsFetch(ov.sldb_cards); }); From de9009f2674e8b91139af3f15b8d6ea12f15a963 Mon Sep 17 00:00:00 2001 From: ne-peer Date: Tue, 5 Dec 2017 16:21:41 +0900 Subject: [PATCH 18/19] [update] cgss card image displayed to dere-detail --- .../manage/dere-detail/dere-detail.component.html | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/app/components/manage/dere-detail/dere-detail.component.html b/src/app/components/manage/dere-detail/dere-detail.component.html index d43ffcb..5c8034c 100644 --- a/src/app/components/manage/dere-detail/dere-detail.component.html +++ b/src/app/components/manage/dere-detail/dere-detail.component.html @@ -163,6 +163,19 @@

+ + + + +

{{card.title}}

+
+
+ + + + + +
From 6b076e70bc334811c3533f1d3990532917a0f134 Mon Sep 17 00:00:00 2001 From: ne-peer Date: Tue, 5 Dec 2017 17:29:24 +0900 Subject: [PATCH 19/19] [update] detail.profile style fixed --- .../dere-detail/dere-detail.component.css | 12 +++ .../dere-detail/dere-detail.component.html | 99 ++++++++++--------- 2 files changed, 64 insertions(+), 47 deletions(-) diff --git a/src/app/components/manage/dere-detail/dere-detail.component.css b/src/app/components/manage/dere-detail/dere-detail.component.css index 0ee5ee3..4dafebf 100644 --- a/src/app/components/manage/dere-detail/dere-detail.component.css +++ b/src/app/components/manage/dere-detail/dere-detail.component.css @@ -13,3 +13,15 @@ mat-grid-tile div { padding-left: 20px; padding-right: 80px; } + +.profile .list-content div { + width: 100%; +} + +.profile mat-icon { + margin-right: 16px; +} + +.profile p { + padding-top: 6px; +} diff --git a/src/app/components/manage/dere-detail/dere-detail.component.html b/src/app/components/manage/dere-detail/dere-detail.component.html index 5c8034c..5f40066 100644 --- a/src/app/components/manage/dere-detail/dere-detail.component.html +++ b/src/app/components/manage/dere-detail/dere-detail.component.html @@ -5,7 +5,7 @@
-
@@ -37,52 +37,57 @@

- +

プロフィール

- - -
年齢
-
- -
{{imasdb.prof?.age}} 歳
-
- -
身長
-
- -
{{imasdb.prof?.height}} cm
-
- -
体重
-
- -
{{imasdb.prof?.weight}} kg
-
- -
Proportion
-
- -
{{imasdb.prof?.bust}} / {{imasdb.prof?.waist}} / {{imasdb.prof?.hip}}
-
- -
血液型
-
- -
{{imasdb.prof?.bloodType}}
-
- -
趣味
-
- -
{{imasdb.prof?.hobby}}
-
- -
誕生日
-
- -
{{imasdb.char?.birthMonth}}月 {{imasdb.char?.birthDay}}日
-
-
+ +
+ assessment +

年齢

+

{{imasdb.prof?.age}} 歳

+
+
+ +
+ assessment +

身長

+

{{imasdb.prof?.height}} cm

+
+
+ +
+ assessment +

体重

+

{{imasdb.prof?.weight}} kg

+
+
+ +
+ assessment +

Proportion

+

{{imasdb.prof?.bust}} / {{imasdb.prof?.waist}} / {{imasdb.prof?.hip}}

+
+
+ +
+ assessment +

血液型

+

{{imasdb.prof?.bloodType}}

+
+
+ +
+ assessment +

趣味

+

{{imasdb.prof?.hobby}}

+
+
+ +
+ assessment +

誕生日

+

{{imasdb.char?.birthMonth}}月 {{imasdb.char?.birthDay}}日

+
+
@@ -163,7 +168,7 @@

- +